diff --git a/.circleci/config.yml b/.circleci/config.yml index 2fdff98f..838dd64b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,78 +2,71 @@ # # Check https://circleci.com/docs/2.0/language-java/ for more details # -version: 2 +version: 2.1 jobs: clean: docker: # specify the version you desire here - - image: circleci/openjdk:9.0.4 - - # Specify service dependencies here if necessary - # CircleCI maintains a library of pre-built images - # documented at https://circleci.com/docs/2.0/circleci-images/ - # - image: circleci/postgres:9.4 + - image: cimg/openjdk:21.0.2 working_directory: ~/repo environment: # Customize the JVM maximum heap limit MAVEN_OPTS: -Xmx3200m - + steps: - checkout # run clean! - - run: mvn clean + - run: + name: Cleaning workspace + command: mvn clean + # The resource_class feature allows configuring CPU and RAM resources for each job. Different resource classes are available for different executors. https://circleci.com/docs/2.0/configuration-reference/#resourceclass + resource_class: large deployment: docker: # specify the version you desire here - - image: circleci/openjdk:9.0.4 - - # Specify service dependencies here if necessary - # CircleCI maintains a library of pre-built images - # documented at https://circleci.com/docs/2.0/circleci-images/ - # - image: circleci/postgres:9.4 + - image: cimg/openjdk:21.0.2 working_directory: ~/repo environment: # Customize the JVM maximum heap limit MAVEN_OPTS: -Xmx3200m - + steps: - checkout - + # run deployment! - - run: mvn deploy -Dmaven.test.skip -DcreateDocs=true -s settings.xml + - run: + name: Deploying snapshot + command: mvn deploy -Dmaven.test.skip -DcreateDocs=true -s settings.xml build: docker: # specify the version you desire here - - image: circleci/openjdk:9.0.4 - - # Specify service dependencies here if necessary - # CircleCI maintains a library of pre-built images - # documented at https://circleci.com/docs/2.0/circleci-images/ - # - image: circleci/postgres:9.4 + - image: cimg/openjdk:21.0.2 working_directory: ~/repo environment: # Customize the JVM maximum heap limit MAVEN_OPTS: -Xmx3200m - + steps: - - checkout - - # run tests! - # - run: mvn integration-test - - # share coverage - - run: mvn test jacoco:report coveralls:report -DsourceEncoding=UTF-8 - + - checkout: + method: full + + # run tests! + - run: + name: Running tests + command: mvn test jacoco:report coveralls:report -DsourceEncoding=UTF-8 + # run code analysis using sonarqube - - run: mvn -Psonar sonar:sonar -DsourceEncoding=UTF-8 - + - run: + name: Running code analysis + command: mvn -Psonar org.sonarsource.scanner.maven:sonar-maven-plugin:sonar + workflows: version: 2 clean_build_deploy: diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 00000000..5134bcb0 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: keilw +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/.gitignore b/.gitignore index 3e552e9f..13e39ee0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +# Java Files # *.class # Package Files # @@ -13,6 +14,7 @@ /.project /.settings /bin/ +/site/ # IntelliJ # .idea/ diff --git a/LICENSE b/LICENSE index 5d86caad..15bea9fc 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ ==== Units of Measurement API - Copyright (c) 2014-2018, Jean-Marie Dautelle, Werner Keil, Otavio Santana. + Copyright (c) 2014-2020, Jean-Marie Dautelle, Werner Keil, Otavio Santana. All rights reserved. diff --git a/README.md b/README.md index ac199c87..0a644ea7 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,16 @@ unit-api ======== -[![Maven metadata URI](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/javax/measure/unit-api/maven-metadata.xml.svg)](https://search.maven.org/search?q=a:unit-api) -[![Javadocs](https://www.javadoc.io/badge/javax.measure/unit-api.svg)](https://www.javadoc.io/doc/javax.measure/unit-api) +![Maven Central Version](https://img.shields.io/maven-central/v/javax.measure/unit-api) +[![javadoc](https://javadoc.io/badge2/javax.measure/unit-api/javadoc.svg)](https://javadoc.io/doc/javax.measure/unit-api) [![CircleCI](https://circleci.com/gh/unitsofmeasurement/unit-api/tree/master.svg?style=svg)](https://circleci.com/gh/unitsofmeasurement/unit-api/tree/master) -[![Codacy Badge](https://api.codacy.com/project/badge/Grade/84af6bb532464d4ba65e17625ecdd0d6)](https://www.codacy.com/app/unitsofmeasurement/unit-api?utm_source=github.com&utm_medium=referral&utm_content=unitsofmeasurement/unit-api&utm_campaign=badger) +[![Codacy Badge](https://app.codacy.com/project/badge/Grade/598a357e2a584ce5bb36eebf23f28e23)](https://www.codacy.com/gh/unitsofmeasurement/unit-api/dashboard?utm_source=github.com&utm_medium=referral&utm_content=unitsofmeasurement/unit-api&utm_campaign=Badge_Grade) [![Coverage Status](https://coveralls.io/repos/github/unitsofmeasurement/unit-api/badge.svg)](https://coveralls.io/github/unitsofmeasurement/unit-api) -[![Stability: Active](https://masterminds.github.io/stability/active.svg)](https://masterminds.github.io/stability/active.html) +![stability-frozen](https://img.shields.io/badge/stability-frozen-brightgreen.svg) [![License](http://img.shields.io/badge/license-BSD3-blue.svg?style=flat-square)](http://opensource.org/licenses/BSD-3-Clause) [![Stack Overflow](http://img.shields.io/badge/stack%20overflow-uom-4183C4.svg)](http://stackoverflow.com/questions/tagged/units-of-measurement) [![Join the chat at https://gitter.im/unitsofmeasurement/unit-api](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/unitsofmeasurement/unit-api?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) -JSR 385 - Units of Measurement API 2.0 +JSR 385 - Units of Measurement API 2.2 The Unit of Measurement API provides a set of Java language programming interfaces for handling units and quantities. The interfaces provide a layer which separates client code, that would call the API, from library code, which implements the API. @@ -37,4 +37,4 @@ The interfaces provide a layer which separates client code, that would call the [![P2](https://img.shields.io/github/issues/unitsofmeasurement/unit-api/prio:2.svg?style=flat )](https://github.com/unitsofmeasurement/unit-api/labels/prio%3A2) [![P3](https://img.shields.io/github/issues/unitsofmeasurement/unit-api/prio:3.svg?style=flat -)](https://github.com/unitsofmeasurement/unit-api/labels/prio%3A3) +)](https://github.com/unitsofmeasurement/unit-api/labels/prio%3A3) \ No newline at end of file diff --git a/docs/apidocs/allclasses-index.html b/docs/apidocs/allclasses-index.html new file mode 100644 index 00000000..9bfd2c8b --- /dev/null +++ b/docs/apidocs/allclasses-index.html @@ -0,0 +1,294 @@ + + + + +All Classes and Interfaces (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

All Classes and Interfaces

+
+
+
+
+
+
Class
+
Description
+ +
+
Rate of change of velocity with respect to time.
+
+ +
+
Number of elementary entities (molecules, for example) of a substance.
+
+ +
+
Figure formed by two lines diverging from a common point.
+
+ +
+
Extent of a planar region or of the surface of a solid measured in square units.
+
+ +
+
Provides support for common binary prefixes to be used by units.
+
+ +
+
Catalytic activity.
+
+ +
+
Represents the dimension of a unit.
+
+ +
+
Dimensionless quantity.
+
+ +
+
Electric capacitance.
+
+ +
+
Electric charge.
+
+ +
+
Electric conductance.
+
+ +
+
Amount of electric charge flowing past a specified circuit point per unit time.
+
+ +
+
Electric inductance.
+
+ +
+
Electric potential or electromotive force.
+
+ +
+
Electric resistance.
+
+ +
+
Capacity of a physical system to do work.
+
+ +
+
Quantity that tends to produce an acceleration of a body in the direction of its application.
+
+ +
+
This interface represents the service to obtain instances of UnitFormat and QuantityFormat.
+
+ +
+
The type of format, either a UnitFormat or QuantityFormat
+
+ +
+
Number of times a specified phenomenon occurs within a specified interval.
+
+ +
+
Illuminance.
+
+ +
+
Signals that a problem of some sort has occurred due to incommensurable of some quantities/units.
+
+ +
+
Extent of something along its greatest dimension or the extent of space between two objects or places.
+
+ +
+
Luminous flux.
+
+ +
+
Luminous flux density per solid angle as measured in a given direction relative to the emitting source.
+
+ +
+
Magnetic flux.
+
+ +
+
Magnetic flux density.
+
+ +
+
Measure of the quantity of matter that a body or an object contains.
+
+ +
+
This error is used to indicate serious problems with creating, retrieving and manipulating units of measurement objects.
+
+ +
+
Exception used to indicate a problem while dealing with units of measurement.
+
+ +
+
Signals that an error has been reached unexpectedly while parsing.
+
+ +
+
Provides support for the 24 prefixes used in the metric system (decimal multiples and submultiples of units).
+
+ +
+
Rate at which work is done.
+
+ +
+
A unit prefix is a specifier or mnemonic that is prepended to units of measurement to indicate multiples or fractions of the units.
+
+ +
+
Force applied uniformly over a surface.
+
+
Quantity<Q extends Quantity<Q>>
+
+
Represents a quantitative property of a phenomenon, body, or substance, that + can be quantified by measurement.
+
+ +
+
The scale of a Quantity, either ABSOLUTE or RELATIVE.
+
+ +
+
Represents a factory that accepts Number and Unit arguments to create Quantity results.
+
+ +
+
Formats instances of Quantity.
+
+ +
+
Amount of energy deposited per unit of mass.
+
+ +
+
Effective (or "equivalent") dose of radiation received by a human or some other living organism.
+
+ +
+
Radioactive activity.
+
+ +
+
Service Provider for Units of Measurement services.
+
+ +
+
Angle formed by three or more planes intersecting at a common point.
+
+ +
+
Distance traveled divided by the time of travel.
+
+ +
+
A system of units grouped together for historical or cultural reasons.
+ Common system of units are "SI" (System International), "Imperial" (British), "US" (US Customary).
+
+ +
+
This interface represents the service to obtain a system + of units.
+
+ +
+
Degree of hotness or coldness of a body or an environment.
+
+ +
+
Period of existence or persistence.
+
+ +
+
Signals that a problem of some sort has occurred due to the impossibility of constructing a converter between two units.
+
+
Unit<Q extends Quantity<Q>>
+
+
Represents a determinate quantity (as of length, time, heat, or value) adopted as a standard of measurement.
+
+ +
+
A converter of numeric values between different units.
+
+ +
+
Formats instances of Unit to a String or Appendable and parses a CharSequence to a Unit.
+
+ +
+
Amount of space occupied by a three-dimensional object or region of space.
+
+
+
+
+
+ +
+
+ + diff --git a/docs/apidocs/allpackages-index.html b/docs/apidocs/allpackages-index.html new file mode 100644 index 00000000..d9ec95a1 --- /dev/null +++ b/docs/apidocs/allpackages-index.html @@ -0,0 +1,85 @@ + + + + +All Packages (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

All Packages

+
+
Package Summary
+
+
Package
+
Description
+ +
+
Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
+
+ +
+
[OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
+
+ +
+
[OPTIONAL] Provides quantitative properties or attributes of thing such as + mass, time, distance, heat, and angular separation.
+
+ +
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+
+ +
+
+ + diff --git a/docs/apidocs/element-list b/docs/apidocs/element-list new file mode 100644 index 00000000..c485a373 --- /dev/null +++ b/docs/apidocs/element-list @@ -0,0 +1,4 @@ +javax.measure +javax.measure.format +javax.measure.quantity +javax.measure.spi diff --git a/docs/apidocs/help-doc.html b/docs/apidocs/help-doc.html new file mode 100644 index 00000000..e9aeaab8 --- /dev/null +++ b/docs/apidocs/help-doc.html @@ -0,0 +1,191 @@ + + + + +API Help (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+

JavaDoc Help

+ +
+
+

Navigation

+Starting from the Overview page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The Index and Search box allow you to navigate to specific declarations and summary pages, including: All Packages, All Classes and Interfaces + +
+
+
+

Kinds of Pages

+The following sections describe the different kinds of pages in this collection. +
+

Overview

+

The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

+
+
+

Package

+

Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain the following categories:

+
    +
  • Interfaces
  • +
  • Classes
  • +
  • Enums
  • +
  • Exceptions
  • +
  • Errors
  • +
  • Annotation Types
  • +
+
+
+

Class or Interface

+

Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.

+
    +
  • Class Inheritance Diagram
  • +
  • Direct Subclasses
  • +
  • All Known Subinterfaces
  • +
  • All Known Implementing Classes
  • +
  • Class or Interface Declaration
  • +
  • Class or Interface Description
  • +
+
+
    +
  • Nested Class Summary
  • +
  • Enum Constant Summary
  • +
  • Field Summary
  • +
  • Property Summary
  • +
  • Constructor Summary
  • +
  • Method Summary
  • +
  • Required Element Summary
  • +
  • Optional Element Summary
  • +
+
+
    +
  • Enum Constant Details
  • +
  • Field Details
  • +
  • Property Details
  • +
  • Constructor Details
  • +
  • Method Details
  • +
  • Element Details
  • +
+

Note: Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.

+

The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

+
+
+

Other Files

+

Packages and modules may contain pages with additional information related to the declarations nearby.

+
+
+

Use

+

Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the USE link in the navigation bar.

+
+
+

Tree (Class Hierarchy)

+

There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object. Interfaces do not inherit from java.lang.Object.

+
    +
  • When viewing the Overview page, clicking on TREE displays the hierarchy for all packages.
  • +
  • When viewing a particular package, class or interface page, clicking on TREE displays the hierarchy for only that package.
  • +
+
+
+

Serialized Form

+

Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to those who implement rather than use the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See Also" section of the class description.

+
+
+

All Packages

+

The All Packages page contains an alphabetic index of all packages contained in the documentation.

+
+
+

All Classes and Interfaces

+

The All Classes and Interfaces page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.

+
+
+

Index

+

The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as All Packages, All Classes and Interfaces.

+
+
+
+This help file applies to API documentation generated by the standard doclet.
+ +
+
+ + diff --git a/docs/apidocs/index-all.html b/docs/apidocs/index-all.html new file mode 100644 index 00000000..3e356192 --- /dev/null +++ b/docs/apidocs/index-all.html @@ -0,0 +1,1187 @@ + + + + +Index (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Index

+
+A B C D E F G H I J K L M N O P Q R S T U V Y Z 
All Classes and Interfaces|All Packages|Serialized Form +

A

+
+
ABSOLUTE - Enum constant in enum javax.measure.Quantity.Scale
+
+
Absolute scale
+
+
Acceleration - Interface in javax.measure.quantity
+
+
Rate of change of velocity with respect to time.
+
+
add(Quantity<Q>) - Method in interface javax.measure.Quantity
+
+
Returns the sum of this Quantity with the one specified.
+
+
alternate(String) - Method in interface javax.measure.Unit
+
+
Returns a system unit equivalent to this unscaled standard unit but used in expressions to distinguish between quantities of a different nature + but of the same dimensions.
+
+
AmountOfSubstance - Interface in javax.measure.quantity
+
+
Number of elementary entities (molecules, for example) of a substance.
+
+
Angle - Interface in javax.measure.quantity
+
+
Figure formed by two lines diverging from a common point.
+
+
Area - Interface in javax.measure.quantity
+
+
Extent of a planar region or of the surface of a solid measured in square units.
+
+
asType(Class<T>) - Method in interface javax.measure.Quantity
+
+
Casts this quantity to a parameterized unit of specified nature or throw a + ClassCastException if the dimension of the specified quantity + and this measure unit's dimension do not match.
+
+
asType(Class<T>) - Method in interface javax.measure.Unit
+
+
Casts this unit to a parameterized unit of specified nature or throw a ClassCastException if the dimension of the specified quantity and + this unit's dimension do not match.
+
+
ATTO - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 10-18.
+
+
ATTO(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 10-18
+
+
available() - Static method in class javax.measure.spi.ServiceProvider
+
+
Returns the list of all service providers available for the current thread's context class loader.
+
+
+

B

+
+
BinaryPrefix - Enum in javax.measure
+
+
Provides support for common binary prefixes to be used by units.
+
+
+

C

+
+
CatalyticActivity - Interface in javax.measure.quantity
+
+
Catalytic activity.
+
+
CENTI - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 10-2.
+
+
CENTI(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 10-2
+
+
concatenate(UnitConverter) - Method in interface javax.measure.UnitConverter
+
+
Concatenates this converter with another converter.
+
+
convert(double) - Method in interface javax.measure.UnitConverter
+
+
Converts a double value.
+
+
convert(Number) - Method in interface javax.measure.UnitConverter
+
+
Converts a Number value.
+
+
create(Number, Unit<Q>) - Method in interface javax.measure.spi.QuantityFactory
+
+
Returns the quantity for the specified number stated in the specified unit.
+
+
create(Number, Unit<Q>, Quantity.Scale) - Method in interface javax.measure.spi.QuantityFactory
+
+
Returns the quantity for the specified number stated in the specified unit and scale.
+
+
current() - Static method in class javax.measure.spi.ServiceProvider
+
+
Returns the current ServiceProvider.
+
+
+

D

+
+
DECA - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 101.
+
+
DECA(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 101
+
+
DECI - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 10-1.
+
+
DECI(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 10-1
+
+
DEKA(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
US alias for DECA.
+
+
Dimension - Interface in javax.measure
+
+
Represents the dimension of a unit.
+
+
Dimensionless - Interface in javax.measure.quantity
+
+
Dimensionless quantity.
+
+
divide(double) - Method in interface javax.measure.Unit
+
+
Returns the result of dividing this unit by an approximate divisor.
+
+
divide(Number) - Method in interface javax.measure.Quantity
+
+
Returns the quotient of this Quantity divided by the Number + specified.
+
+
divide(Number) - Method in interface javax.measure.Unit
+
+
Returns the result of dividing this unit by a divisor.
+
+
divide(Dimension) - Method in interface javax.measure.Dimension
+
+
Returns the quotient of this dimension with the one specified.
+
+
divide(Quantity<?>) - Method in interface javax.measure.Quantity
+
+
Returns the quotient of this Quantity divided by the Quantity + specified.
+
+
divide(Unit<?>) - Method in interface javax.measure.Unit
+
+
Returns the quotient of this unit with the one specified.
+
+
+

E

+
+
ElectricCapacitance - Interface in javax.measure.quantity
+
+
Electric capacitance.
+
+
ElectricCharge - Interface in javax.measure.quantity
+
+
Electric charge.
+
+
ElectricConductance - Interface in javax.measure.quantity
+
+
Electric conductance.
+
+
ElectricCurrent - Interface in javax.measure.quantity
+
+
Amount of electric charge flowing past a specified circuit point per unit time.
+
+
ElectricInductance - Interface in javax.measure.quantity
+
+
Electric inductance.
+
+
ElectricPotential - Interface in javax.measure.quantity
+
+
Electric potential or electromotive force.
+
+
ElectricResistance - Interface in javax.measure.quantity
+
+
Electric resistance.
+
+
Energy - Interface in javax.measure.quantity
+
+
Capacity of a physical system to do work.
+
+
EXA - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 1018.
+
+
EXA(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 1018
+
+
EXBI - Enum constant in enum javax.measure.BinaryPrefix
+
+
Prefix for 10246.
+
+
EXBI(Unit<Q>) - Static method in enum javax.measure.BinaryPrefix
+
+
Returns the specified unit multiplied by the factor 10246 (binary prefix).
+
+
+

F

+
+
FEMTO - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 10-15.
+
+
FEMTO(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 10-15
+
+
Force - Interface in javax.measure.quantity
+
+
Quantity that tends to produce an acceleration of a body in the direction of its application.
+
+
format(Quantity<?>) - Method in interface javax.measure.format.QuantityFormat
+
+
Formats the specified Quantity.
+
+
format(Quantity<?>, Appendable) - Method in interface javax.measure.format.QuantityFormat
+
+
Formats the specified quantity into an Appendable.
+
+
format(Unit<?>) - Method in interface javax.measure.format.UnitFormat
+
+
Formats the specified Unit.
+
+
format(Unit<?>, Appendable) - Method in interface javax.measure.format.UnitFormat
+
+
Formats the specified Unit.
+
+
FormatService - Interface in javax.measure.spi
+
+
This interface represents the service to obtain instances of UnitFormat and QuantityFormat.
+
+
FormatService.FormatType - Enum in javax.measure.spi
+
+
The type of format, either a UnitFormat or QuantityFormat
+
+
Frequency - Interface in javax.measure.quantity
+
+
Number of times a specified phenomenon occurs within a specified interval.
+
+
+

G

+
+
getAvailableFormatNames(FormatService.FormatType) - Method in interface javax.measure.spi.FormatService
+
+
Gets a list with available format names of a given type for this format service.
+
+
getAvailableSystemsOfUnits() - Method in interface javax.measure.spi.SystemOfUnitsService
+
+
Gets a list with available systems for this SystemOfUnitsService.
+
+
getBaseDimensions() - Method in interface javax.measure.Dimension
+
+
Returns the (fundamental) base dimensions and their exponent whose product is this dimension, or null if this dimension is a base + dimension.
+
+
getBaseUnits() - Method in interface javax.measure.Unit
+
+
Returns the base units and their exponent whose product is this unit, or null if this unit is a base unit (not a product of existing + units).
+
+
getConversionSteps() - Method in interface javax.measure.UnitConverter
+
+
+ Returns the steps of fundamental converters making up this converter or this if the converter is a fundamental converter.
+
+
getConverterTo(Unit<Q>) - Method in interface javax.measure.Unit
+
+
Returns a converter of numeric values from this unit to another unit of same type.
+
+
getConverterToAny(Unit<?>) - Method in interface javax.measure.Unit
+
+
Returns a converter from this unit to the specified unit of type unknown.
+
+
getDimension() - Method in interface javax.measure.Unit
+
+
Returns the dimension of this unit.
+
+
getExponent() - Method in enum javax.measure.BinaryPrefix
+
+
Exponent part of the associated factor in base^exponent representation.
+
+
getExponent() - Method in enum javax.measure.MetricPrefix
+
+
Exponent part of the associated factor in base^exponent representation.
+
+
getExponent() - Method in interface javax.measure.Prefix
+
+
Exponent part of the associated factor in base^exponent representation.
+
+
getFormatService() - Method in class javax.measure.spi.ServiceProvider
+
+
Returns the service to obtain UnitFormat and QuantityFormat or null if none.
+
+
getName() - Method in enum javax.measure.BinaryPrefix
+
+
Returns the name of this prefix.
+
+
getName() - Method in enum javax.measure.MetricPrefix
+
+
Returns the name of this prefix.
+
+
getName() - Method in interface javax.measure.Prefix
+
+
Returns the name of this prefix.
+
+
getName() - Method in interface javax.measure.spi.SystemOfUnits
+
 
+
getName() - Method in interface javax.measure.Unit
+
+
Returns the name (if any) of this unit.
+
+
getParsedString() - Method in exception javax.measure.format.MeasurementParseException
+
+
Returns the string that was being parsed.
+
+
getPosition() - Method in exception javax.measure.format.MeasurementParseException
+
+
Returns the position where the error was found.
+
+
getPrefixes(Class<P>) - Method in interface javax.measure.spi.SystemOfUnitsService
+
+
Returns a Set containing the values of a particular Prefix + type.
+
+
getPriority() - Method in class javax.measure.spi.ServiceProvider
+
+
Allows to define a priority for a registered ServiceProvider instance.
+
+
getQuantityFactory(Class<Q>) - Method in class javax.measure.spi.ServiceProvider
+
+
Returns a factory for the given Quantity type.
+
+
getQuantityFormat() - Method in interface javax.measure.spi.FormatService
+
+
Returns the default quantity format.
+
+
getQuantityFormat(String) - Method in interface javax.measure.spi.FormatService
+
+
Returns the quantity format having the specified name or null if none.
+
+
getScale() - Method in interface javax.measure.Quantity
+
+
Returns the Scale of this Quantity, if it's absolute or relative.
+
+
getSymbol() - Method in enum javax.measure.BinaryPrefix
+
+
Returns the symbol of this prefix.
+
+
getSymbol() - Method in enum javax.measure.MetricPrefix
+
+
Returns the symbol of this prefix.
+
+
getSymbol() - Method in interface javax.measure.Prefix
+
+
Returns the symbol of this prefix.
+
+
getSymbol() - Method in interface javax.measure.Unit
+
+
Returns the symbol (if any) of this unit.
+
+
getSystemOfUnits() - Method in interface javax.measure.spi.SystemOfUnitsService
+
+
Returns the default system of units.
+
+
getSystemOfUnits(String) - Method in interface javax.measure.spi.SystemOfUnitsService
+
+
Returns the system of units having the specified name or null if + none is found.
+
+
getSystemOfUnitsService() - Method in class javax.measure.spi.ServiceProvider
+
+
Returns the service to obtain a SystemOfUnits, or null if none.
+
+
getSystemUnit() - Method in interface javax.measure.spi.QuantityFactory
+
+
Returns the system unit for quantities produced by this factory or null if unknown.
+
+
getSystemUnit() - Method in interface javax.measure.Unit
+
+
Returns the unscaled system unit from which this unit is derived.
+
+
getUnit() - Method in interface javax.measure.Quantity
+
+
Returns the unit of this Quantity.
+
+
getUnit(Class<Q>) - Method in interface javax.measure.spi.SystemOfUnits
+
+
Returns the default unit for the specified quantity or null if none is defined for the given quantity in this unit system.
+
+
getUnit(String) - Method in interface javax.measure.spi.SystemOfUnits
+
+
Returns a unit with the given string representation or null if none is found in this unit system.
+
+
getUnitFormat() - Method in interface javax.measure.spi.FormatService
+
+
Returns the default unit format.
+
+
getUnitFormat(String) - Method in interface javax.measure.spi.FormatService
+
+
Returns the unit format having the specified name or null if none.
+
+
getUnitFormat(String, String) - Method in interface javax.measure.spi.FormatService
+
+
Returns the unit format having the specified name or null if none.
+
+
getUnits() - Method in interface javax.measure.spi.SystemOfUnits
+
+
Returns a read only view over the units explicitly defined by this system.
+
+
getUnits(Dimension) - Method in interface javax.measure.spi.SystemOfUnits
+
+
Returns the units defined in this system having the specified dimension (convenience method).
+
+
getValue() - Method in enum javax.measure.BinaryPrefix
+
+
Base part of the associated factor in base^exponent representation.
+
+
getValue() - Method in enum javax.measure.MetricPrefix
+
+
Base part of the associated factor in base^exponent representation.
+
+
getValue() - Method in interface javax.measure.Prefix
+
+
Returns the value of this prefix.
+
+
getValue() - Method in interface javax.measure.Quantity
+
+
Returns the value of this Quantity.
+
+
GIBI - Enum constant in enum javax.measure.BinaryPrefix
+
+
Prefix for 10243.
+
+
GIBI(Unit<Q>) - Static method in enum javax.measure.BinaryPrefix
+
+
Returns the specified unit multiplied by the factor 10243 (binary prefix).
+
+
GIGA - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 109.
+
+
GIGA(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 109
+
+
+

H

+
+
HECTO - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 102.
+
+
HECTO(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 102
+
+
+

I

+
+
Illuminance - Interface in javax.measure.quantity
+
+
Illuminance.
+
+
IncommensurableException - Exception in javax.measure
+
+
Signals that a problem of some sort has occurred due to incommensurable of some quantities/units.
+
+
IncommensurableException(String) - Constructor for exception javax.measure.IncommensurableException
+
+
Constructs a IncommensurableException with the given message.
+
+
IncommensurableException(String, Throwable) - Constructor for exception javax.measure.IncommensurableException
+
+
Constructs a IncommensurableException with the given message and cause.
+
+
IncommensurableException(Throwable) - Constructor for exception javax.measure.IncommensurableException
+
+
Constructs a IncommensurableException with the given cause.
+
+
inverse() - Method in interface javax.measure.Quantity
+
+
Returns a Quantity that is the multiplicative inverse of this + Quantity, having reciprocal value and reciprocal unit as given by + this.getUnit().inverse().
+
+
inverse() - Method in interface javax.measure.Unit
+
+
Returns the reciprocal (multiplicative inverse) of this unit.
+
+
inverse() - Method in interface javax.measure.UnitConverter
+
+
Returns the inverse of this converter.
+
+
isCompatible(Unit<?>) - Method in interface javax.measure.Unit
+
+
Indicates if this unit is compatible with the unit specified.
+
+
isEquivalentTo(Quantity<Q>) - Method in interface javax.measure.Quantity
+
+
Compares two instances of Quantity <Q>, performing the conversion of units if necessary.
+
+
isEquivalentTo(Unit<Q>) - Method in interface javax.measure.Unit
+
+
Indicates if this unit represents the same quantity than the given unit, ignoring name and symbols.
+
+
isIdentity() - Method in interface javax.measure.UnitConverter
+
+
Indicates if this converter is an identity converter.
+
+
isLinear() - Method in interface javax.measure.UnitConverter
+
+
Indicates whether this converter represents a (one-dimensional) linear transformation, that is + a linear map (wikipedia) from a one-dimensional + vector space (a scalar) to a one-dimensional vector space.
+
+
isLocaleSensitive() - Method in interface javax.measure.format.QuantityFormat
+
+
Returns true if this QuantityFormat depends on a Locale to perform its tasks.
+
+
isLocaleSensitive() - Method in interface javax.measure.format.UnitFormat
+
+
Returns true if this UnitFormat depends on a Locale to perform its tasks.
+
+
+

J

+
+
javax.measure - package javax.measure
+
+
Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
+
+
javax.measure.format - package javax.measure.format
+
+
[OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
+
+
javax.measure.quantity - package javax.measure.quantity
+
+
[OPTIONAL] Provides quantitative properties or attributes of thing such as + mass, time, distance, heat, and angular separation.
+
+
javax.measure.spi - package javax.measure.spi
+
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+

K

+
+
KIBI - Enum constant in enum javax.measure.BinaryPrefix
+
+
Prefix for 1024.
+
+
KIBI(Unit<Q>) - Static method in enum javax.measure.BinaryPrefix
+
+
Returns the specified unit multiplied by the factor 1024 (binary prefix).
+
+
KILO - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 103.
+
+
KILO(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 103
+
+
+

L

+
+
label(Unit<?>, String) - Method in interface javax.measure.format.UnitFormat
+
+
Attaches a system-wide label to the specified Unit.
+
+
Length - Interface in javax.measure.quantity
+
+
Extent of something along its greatest dimension or the extent of space between two objects or places.
+
+
LuminousFlux - Interface in javax.measure.quantity
+
+
Luminous flux.
+
+
LuminousIntensity - Interface in javax.measure.quantity
+
+
Luminous flux density per solid angle as measured in a given direction relative to the emitting source.
+
+
+

M

+
+
MagneticFlux - Interface in javax.measure.quantity
+
+
Magnetic flux.
+
+
MagneticFluxDensity - Interface in javax.measure.quantity
+
+
Magnetic flux density.
+
+
Mass - Interface in javax.measure.quantity
+
+
Measure of the quantity of matter that a body or an object contains.
+
+
MeasurementError - Error in javax.measure
+
+
This error is used to indicate serious problems with creating, retrieving and manipulating units of measurement objects.
+
+
MeasurementError() - Constructor for error javax.measure.MeasurementError
+
+
Constructs a MeasurementError with no detail message.
+
+
MeasurementError(String) - Constructor for error javax.measure.MeasurementError
+
+
Constructs a MeasurementError with the specified detail message.
+
+
MeasurementError(String, Throwable) - Constructor for error javax.measure.MeasurementError
+
+
Constructs a MeasurementError with the specified detail message and cause.
+
+
MeasurementError(Throwable) - Constructor for error javax.measure.MeasurementError
+
+
Constructs a MeasurementError with the given cause.
+
+
MeasurementException - Exception in javax.measure
+
+
Exception used to indicate a problem while dealing with units of measurement.
+
+
MeasurementException() - Constructor for exception javax.measure.MeasurementException
+
+
Constructs a MeasurementException with no given message.
+
+
MeasurementException(String) - Constructor for exception javax.measure.MeasurementException
+
+
Constructs a MeasurementException with the given message.
+
+
MeasurementException(String, Throwable) - Constructor for exception javax.measure.MeasurementException
+
+
Constructs a MeasurementException with the given message and cause.
+
+
MeasurementException(Throwable) - Constructor for exception javax.measure.MeasurementException
+
+
Constructs a MeasurementException with the given cause.
+
+
MeasurementParseException - Exception in javax.measure.format
+
+
Signals that an error has been reached unexpectedly while parsing.
+
+
MeasurementParseException(CharSequence, int) - Constructor for exception javax.measure.format.MeasurementParseException
+
+
Constructs a MeasurementParseException with the parsed text and offset.
+
+
MeasurementParseException(String) - Constructor for exception javax.measure.format.MeasurementParseException
+
+
Constructs a MeasurementParseException with the specified detail message.
+
+
MeasurementParseException(String, CharSequence, int) - Constructor for exception javax.measure.format.MeasurementParseException
+
+
Constructs a MeasurementParseException with the specified detail message, parsed text and index.
+
+
MeasurementParseException(Throwable) - Constructor for exception javax.measure.format.MeasurementParseException
+
+
Constructs a MeasurementParseException with the specified cause.
+
+
MEBI - Enum constant in enum javax.measure.BinaryPrefix
+
+
Prefix for 10242.
+
+
MEBI(Unit<Q>) - Static method in enum javax.measure.BinaryPrefix
+
+
Returns the specified unit multiplied by the factor 10242 (binary prefix).
+
+
MEGA - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 106.
+
+
MEGA(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 106
+
+
MetricPrefix - Enum in javax.measure
+
+
Provides support for the 24 prefixes used in the metric system (decimal multiples and submultiples of units).
+
+
MICRO - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 10-6.
+
+
MICRO(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 10-6
+
+
MILLI - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 10-3.
+
+
MILLI(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 10-3
+
+
multiply(double) - Method in interface javax.measure.Unit
+
+
Returns the result of multiplying this unit by the specified factor.
+
+
multiply(Number) - Method in interface javax.measure.Quantity
+
+
Returns the product of this Quantity with the Number value + specified.
+
+
multiply(Number) - Method in interface javax.measure.Unit
+
+
Returns the result of multiplying this unit by the specified factor.
+
+
multiply(Dimension) - Method in interface javax.measure.Dimension
+
+
Returns the product of this dimension with the one specified.
+
+
multiply(Quantity<?>) - Method in interface javax.measure.Quantity
+
+
Returns the product of this Quantity with the one specified.
+
+
multiply(Unit<?>) - Method in interface javax.measure.Unit
+
+
Returns the product of this unit with the one specified.
+
+
+

N

+
+
NANO - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 10-9.
+
+
NANO(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 10-9
+
+
negate() - Method in interface javax.measure.Quantity
+
+
Returns a Quantity whose value is (-this.getValue()).
+
+
+

O

+
+
of(String) - Static method in class javax.measure.spi.ServiceProvider
+
+
Returns the ServiceProvider with the specified name.
+
+
+

P

+
+
parse(CharSequence) - Method in interface javax.measure.format.QuantityFormat
+
+
Parses the specified CharSequence to produce a Quantity.
+
+
parse(CharSequence) - Method in interface javax.measure.format.UnitFormat
+
+
Parses the text into an instance of Unit.
+
+
parse(CharSequence, ParsePosition) - Method in interface javax.measure.format.QuantityFormat
+
+
Parses a portion of the specified CharSequence from the specified position to produce a Quantity.
+
+
parse(CharSequence, ParsePosition) - Method in interface javax.measure.format.UnitFormat
+
+
Parses a portion of the specified CharSequence from the specified position to produce a Unit.
+
+
PEBI - Enum constant in enum javax.measure.BinaryPrefix
+
+
Prefix for 10245.
+
+
PEBI(Unit<Q>) - Static method in enum javax.measure.BinaryPrefix
+
+
Returns the specified unit multiplied by the factor 10245 (binary prefix).
+
+
PETA - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 1015.
+
+
PETA(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 1015
+
+
PICO - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 10-12.
+
+
PICO(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 10-12
+
+
pow(int) - Method in interface javax.measure.Dimension
+
+
Returns this dimension raised to an exponent.
+
+
pow(int) - Method in interface javax.measure.Unit
+
+
Returns an unit raised to the n-th (integer) power of this unit.
+
+
Power - Interface in javax.measure.quantity
+
+
Rate at which work is done.
+
+
prefix(Prefix) - Method in interface javax.measure.Unit
+
+
Returns a new unit equal to this unit prefixed by the specified prefix.
+
+
Prefix - Interface in javax.measure
+
+
A unit prefix is a specifier or mnemonic that is prepended to units of measurement to indicate multiples or fractions of the units.
+
+
Pressure - Interface in javax.measure.quantity
+
+
Force applied uniformly over a surface.
+
+
+

Q

+
+
Quantity<Q extends Quantity<Q>> - Interface in javax.measure
+
+
Represents a quantitative property of a phenomenon, body, or substance, that + can be quantified by measurement.
+
+
QUANTITY_FORMAT - Enum constant in enum javax.measure.spi.FormatService.FormatType
+
+
Format of type QuantityFormat
+
+
Quantity.Scale - Enum in javax.measure
+
+
The scale of a Quantity, either ABSOLUTE or RELATIVE.
+
+
QuantityFactory<Q extends Quantity<Q>> - Interface in javax.measure.spi
+
+
Represents a factory that accepts Number and Unit arguments to create Quantity results.
+
+
QuantityFormat - Interface in javax.measure.format
+
+
Formats instances of Quantity.
+
+
QUECTO - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 10-30.
+
+
QUECTO(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 10-30
+
+
QUETTA - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 1030.
+
+
QUETTA(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 1030
+
+
+

R

+
+
RadiationDoseAbsorbed - Interface in javax.measure.quantity
+
+
Amount of energy deposited per unit of mass.
+
+
RadiationDoseEffective - Interface in javax.measure.quantity
+
+
Effective (or "equivalent") dose of radiation received by a human or some other living organism.
+
+
Radioactivity - Interface in javax.measure.quantity
+
+
Radioactive activity.
+
+
RELATIVE - Enum constant in enum javax.measure.Quantity.Scale
+
+
Relative scale
+
+
RONNA - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 1027.
+
+
RONNA(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 1027
+
+
RONTO - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 10-27.
+
+
RONTO(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 10-27
+
+
root(int) - Method in interface javax.measure.Dimension
+
+
Returns the given root of this dimension.
+
+
root(int) - Method in interface javax.measure.Unit
+
+
Returns an unit that is the n-th (integer) root of this unit.
+
+
+

S

+
+
ServiceProvider - Class in javax.measure.spi
+
+
Service Provider for Units of Measurement services.
+
+
ServiceProvider() - Constructor for class javax.measure.spi.ServiceProvider
+
+
Creates a new service provider.
+
+
setCurrent(ServiceProvider) - Static method in class javax.measure.spi.ServiceProvider
+
+
Replaces the current ServiceProvider.
+
+
shift(double) - Method in interface javax.measure.Unit
+
+
Returns the result of setting the origin of the scale of measurement to the given value.
+
+
shift(Number) - Method in interface javax.measure.Unit
+
+
Returns the result of setting the origin of the scale of measurement to the given value.
+
+
SolidAngle - Interface in javax.measure.quantity
+
+
Angle formed by three or more planes intersecting at a common point.
+
+
Speed - Interface in javax.measure.quantity
+
+
Distance traveled divided by the time of travel.
+
+
subtract(Quantity<Q>) - Method in interface javax.measure.Quantity
+
+
Returns the difference between this Quantity and the one specified.
+
+
SystemOfUnits - Interface in javax.measure.spi
+
+
A system of units grouped together for historical or cultural reasons.
+ Common system of units are "SI" (System International), "Imperial" (British), "US" (US Customary).
+
+
SystemOfUnitsService - Interface in javax.measure.spi
+
+
This interface represents the service to obtain a system + of units.
+
+
+

T

+
+
TEBI - Enum constant in enum javax.measure.BinaryPrefix
+
+
Prefix for 10244.
+
+
TEBI(Unit<Q>) - Static method in enum javax.measure.BinaryPrefix
+
+
Returns the specified unit multiplied by the factor 10244 (binary prefix).
+
+
Temperature - Interface in javax.measure.quantity
+
+
Degree of hotness or coldness of a body or an environment.
+
+
TERA - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 1012.
+
+
TERA(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 1012
+
+
Time - Interface in javax.measure.quantity
+
+
Period of existence or persistence.
+
+
to(Unit<Q>) - Method in interface javax.measure.Quantity
+
+
Returns this Quantity converted into another (compatible) + Unit.
+
+
toString() - Method in interface javax.measure.Unit
+
+
Returns a string representation of this unit.
+
+
toSystemUnit() - Method in interface javax.measure.Quantity
+
+
Convenient method equivalent to to(getUnit().toSystemUnit()).
+
+
transform(UnitConverter) - Method in interface javax.measure.Unit
+
+
Returns the unit derived from this unit using the specified converter.
+
+
+

U

+
+
UnconvertibleException - Exception in javax.measure
+
+
Signals that a problem of some sort has occurred due to the impossibility of constructing a converter between two units.
+
+
UnconvertibleException(String) - Constructor for exception javax.measure.UnconvertibleException
+
+
Constructs a UnconvertibleException with the given message.
+
+
UnconvertibleException(String, Throwable) - Constructor for exception javax.measure.UnconvertibleException
+
+
Constructs a UnconvertibleException with the given message and cause.
+
+
UnconvertibleException(Throwable) - Constructor for exception javax.measure.UnconvertibleException
+
+
Constructs a UnconvertibleException with the given cause.
+
+
Unit<Q extends Quantity<Q>> - Interface in javax.measure
+
+
Represents a determinate quantity (as of length, time, heat, or value) adopted as a standard of measurement.
+
+
UNIT_FORMAT - Enum constant in enum javax.measure.spi.FormatService.FormatType
+
+
Format of type UnitFormat
+
+
UnitConverter - Interface in javax.measure
+
+
A converter of numeric values between different units.
+
+
UnitFormat - Interface in javax.measure.format
+
+
Formats instances of Unit to a String or Appendable and parses a CharSequence to a Unit.
+
+
+

V

+
+
valueOf(String) - Static method in enum javax.measure.BinaryPrefix
+
+
Returns the enum constant of this type with the specified name.
+
+
valueOf(String) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the enum constant of this type with the specified name.
+
+
valueOf(String) - Static method in enum javax.measure.Quantity.Scale
+
+
Returns the enum constant of this type with the specified name.
+
+
valueOf(String) - Static method in enum javax.measure.spi.FormatService.FormatType
+
+
Returns the enum constant of this type with the specified name.
+
+
values() - Static method in enum javax.measure.BinaryPrefix
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
values() - Static method in enum javax.measure.MetricPrefix
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
values() - Static method in enum javax.measure.Quantity.Scale
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
values() - Static method in enum javax.measure.spi.FormatService.FormatType
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
Volume - Interface in javax.measure.quantity
+
+
Amount of space occupied by a three-dimensional object or region of space.
+
+
+

Y

+
+
YOBI - Enum constant in enum javax.measure.BinaryPrefix
+
+
Prefix for 10248.
+
+
YOBI(Unit<Q>) - Static method in enum javax.measure.BinaryPrefix
+
+
Returns the specified unit multiplied by the factor 10248 (binary prefix).
+
+
YOCTO - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 10-24.
+
+
YOCTO(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 10-24
+
+
YOTTA - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 1024.
+
+
YOTTA(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 1024
+
+
+

Z

+
+
ZEBI - Enum constant in enum javax.measure.BinaryPrefix
+
+
Prefix for 10247.
+
+
ZEBI(Unit<Q>) - Static method in enum javax.measure.BinaryPrefix
+
+
Returns the specified unit multiplied by the factor 10247 (binary prefix).
+
+
ZEPTO - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 10-21.
+
+
ZEPTO(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 10-21
+
+
ZETTA - Enum constant in enum javax.measure.MetricPrefix
+
+
Prefix for 1021.
+
+
ZETTA(Unit<Q>) - Static method in enum javax.measure.MetricPrefix
+
+
Returns the specified unit multiplied by the factor 1021
+
+
+A B C D E F G H I J K L M N O P Q R S T U V Y Z 
All Classes and Interfaces|All Packages|Serialized Form
+ +
+
+ + diff --git a/docs/apidocs/index.html b/docs/apidocs/index.html new file mode 100644 index 00000000..ba74e69c --- /dev/null +++ b/docs/apidocs/index.html @@ -0,0 +1,88 @@ + + + + +Overview (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+
+

Units of Measurement API 2.2 API

+
+
+
Packages
+
+
Package
+
Description
+ +
+
Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
+
+ +
+
[OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
+
+ +
+
[OPTIONAL] Provides quantitative properties or attributes of thing such as + mass, time, distance, heat, and angular separation.
+
+ +
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/BinaryPrefix.html b/docs/apidocs/javax/measure/BinaryPrefix.html new file mode 100644 index 00000000..8ba09852 --- /dev/null +++ b/docs/apidocs/javax/measure/BinaryPrefix.html @@ -0,0 +1,580 @@ + + + + +BinaryPrefix (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package javax.measure
+

Enum BinaryPrefix

+
+
java.lang.Object +
java.lang.Enum<BinaryPrefix> +
javax.measure.BinaryPrefix
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<BinaryPrefix>, java.lang.constant.Constable, Prefix
+
+
+
public enum BinaryPrefix +extends Enum<BinaryPrefix> +implements Prefix
+
Provides support for common binary prefixes to be used by units. For example: +
+ import static systems.uom.unicode.CLDR.*;  // Static import (from Unicode System).
+ import static javax.measure.BinaryPrefix.*; // Static import.
+ import javax.measure.*;
+ import systems.uom.quantity.Information; // (from Systems Quantities)
+ ...
+ Unit<Information> MEBIT  = MEBI(BIT);
+ Unit<Information> GIBYTE = GIBI(BYTE); 
+ 
+ You could also apply Unit.prefix: +
+ ...
+ Unit<Information> MEBIT  = BIT.prefix(MEBI);
+ Unit<Information> GIBYTE = BYTE.prefix(GIBI);
+ 
+ +

+ Do not use ordinal() to obtain the numeric representation of BinaryPrefix. Use getValue() and getExponent() instead. +

+ +
+
Implementation Requirements
This is an immutable and thread-safe enum.
+
+
+
Since:
+
2.0
+
Version:
+
2.2, May 20, 2023
+
Author:
+
Werner Keil
+
See Also:
+
+ +
+
+
+
+
    + +
  • +
    +

    Nested Class Summary

    +
    +

    Nested classes/interfaces inherited from class java.lang.Enum

    +Enum.EnumDesc<E extends Enum<E>>
    +
    +
  • + +
  • +
    +

    Enum Constant Summary

    +
    Enum Constants
    +
    +
    Enum Constant
    +
    Description
    + +
    +
    Prefix for 10246.
    +
    + +
    +
    Prefix for 10243.
    +
    + +
    +
    Prefix for 1024.
    +
    + +
    +
    Prefix for 10242.
    +
    + +
    +
    Prefix for 10245.
    +
    + +
    +
    Prefix for 10244.
    +
    + +
    +
    Prefix for 10248.
    +
    + +
    +
    Prefix for 10247.
    +
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    EXBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10246 (binary prefix).
    +
    +
    int
    + +
    +
    Exponent part of the associated factor in base^exponent representation.
    +
    + + +
    +
    Returns the name of this prefix.
    +
    + + +
    +
    Returns the symbol of this prefix.
    +
    + + +
    +
    Base part of the associated factor in base^exponent representation.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    GIBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10243 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    KIBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1024 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MEBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10242 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    PEBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10245 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    TEBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10244 (binary prefix).
    +
    + + +
    +
    Returns the enum constant of this type with the specified name.
    +
    +
    static BinaryPrefix[]
    + +
    +
    Returns an array containing the constants of this enum type, in +the order they are declared.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    YOBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10248 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    ZEBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10247 (binary prefix).
    +
    +
    +
    +
    + +
    +

    Methods inherited from class java.lang.Object

    +getClass, notify, notifyAll, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Enum Constant Details

    + +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      values

      +
      public static BinaryPrefix[] values()
      +
      Returns an array containing the constants of this enum type, in +the order they are declared.
      +
      +
      Returns:
      +
      an array containing the constants of this enum type, in the order they are declared
      +
      +
      +
    • +
    • +
      +

      valueOf

      +
      public static BinaryPrefix valueOf(String name)
      +
      Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
      +
      +
      Parameters:
      +
      name - the name of the enum constant to be returned.
      +
      Returns:
      +
      the enum constant with the specified name
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      +
      +
      +
    • +
    • +
      +

      KIBI

      +
      public static <Q extends Quantity<Q>> Unit<Q> KIBI(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 1024 (binary prefix).
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.multiply(1024).
      +
      +
      +
    • +
    • +
      +

      MEBI

      +
      public static <Q extends Quantity<Q>> Unit<Q> MEBI(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10242 (binary prefix).
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.multiply(1048576).
      +
      +
      +
    • +
    • +
      +

      GIBI

      +
      public static <Q extends Quantity<Q>> Unit<Q> GIBI(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10243 (binary prefix).
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.multiply(1073741824).
      +
      +
      +
    • +
    • +
      +

      TEBI

      +
      public static <Q extends Quantity<Q>> Unit<Q> TEBI(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10244 (binary prefix).
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.multiply(1099511627776L).
      +
      +
      +
    • +
    • +
      +

      PEBI

      +
      public static <Q extends Quantity<Q>> Unit<Q> PEBI(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10245 (binary prefix).
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.multiply(1125899906842624L).
      +
      +
      +
    • +
    • +
      +

      EXBI

      +
      public static <Q extends Quantity<Q>> Unit<Q> EXBI(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10246 (binary prefix).
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.multiply(1152921504606846976L).
      +
      +
      +
    • +
    • +
      +

      ZEBI

      +
      public static <Q extends Quantity<Q>> Unit<Q> ZEBI(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10247 (binary prefix).
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.multiply(1152921504606846976d).
      +
      +
      +
    • +
    • +
      +

      YOBI

      +
      public static <Q extends Quantity<Q>> Unit<Q> YOBI(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10248 (binary prefix).
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.multiply(1208925819614629174706176d).
      +
      +
      +
    • +
    • +
      +

      getSymbol

      +
      public String getSymbol()
      +
      Returns the symbol of this prefix.
      +
      +
      Specified by:
      +
      getSymbol in interface Prefix
      +
      Returns:
      +
      this prefix symbol, not null.
      +
      +
      +
    • +
    • +
      +

      getValue

      +
      public Integer getValue()
      +
      Base part of the associated factor in base^exponent representation. For binary prefix, this is always 1024.
      +
      +
      Specified by:
      +
      getValue in interface Prefix
      +
      Returns:
      +
      The prefix value.
      +
      +
      +
    • +
    • +
      +

      getExponent

      +
      public int getExponent()
      +
      Exponent part of the associated factor in base^exponent representation.
      +
      +
      Specified by:
      +
      getExponent in interface Prefix
      +
      Returns:
      +
      the exponent part of this prefix.
      +
      +
      +
    • +
    • +
      +

      getName

      +
      public String getName()
      +
      Returns the name of this prefix.
      +
      +
      Specified by:
      +
      getName in interface Prefix
      +
      Returns:
      +
      this prefix name, not null.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/Dimension.html b/docs/apidocs/javax/measure/Dimension.html new file mode 100644 index 00000000..f15a605d --- /dev/null +++ b/docs/apidocs/javax/measure/Dimension.html @@ -0,0 +1,243 @@ + + + + +Dimension (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package javax.measure
+

Interface Dimension

+
+
+
+
public interface Dimension
+
Represents the dimension of a unit. + +

+ Concrete dimensions are obtained through the Unit.getDimension() method. +

+ +

+ Two units u1 and u2 are compatible if and only if + u1.getDimension().equals(u2.getDimension()). +

+
+
Since:
+
1.0
+
Version:
+
1.0, August 8, 2016
+
Author:
+
Jean-Marie Dautelle, Werner Keil
+
See Also:
+
+ +
+
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + +
    divide(Dimension divisor)
    +
    +
    Returns the quotient of this dimension with the one specified.
    +
    +
    Map<? extends Dimension,Integer>
    + +
    +
    Returns the (fundamental) base dimensions and their exponent whose product is this dimension, or null if this dimension is a base + dimension.
    +
    + +
    multiply(Dimension multiplicand)
    +
    +
    Returns the product of this dimension with the one specified.
    +
    + +
    pow(int n)
    +
    +
    Returns this dimension raised to an exponent.
    +
    + +
    root(int n)
    +
    +
    Returns the given root of this dimension.
    +
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      multiply

      +
      Dimension multiply(Dimension multiplicand)
      +
      Returns the product of this dimension with the one specified.
      +
      +
      Parameters:
      +
      multiplicand - the dimension multiplicand.
      +
      Returns:
      +
      this * multiplicand
      +
      +
      +
    • +
    • +
      +

      divide

      + +
      Returns the quotient of this dimension with the one specified.
      +
      +
      Parameters:
      +
      divisor - the dimension divisor.
      +
      Returns:
      +
      this / divisor
      +
      +
      +
    • +
    • +
      +

      pow

      +
      Dimension pow(int n)
      +
      Returns this dimension raised to an exponent. (thisn)
      +
      +
      Parameters:
      +
      n - power to raise this Dimension to.
      +
      Returns:
      +
      thisn
      +
      +
      +
    • +
    • +
      +

      root

      +
      Dimension root(int n)
      +
      Returns the given root of this dimension.
      +
      +
      Parameters:
      +
      n - the root's order.
      +
      Returns:
      +
      the result of taking the given root of this dimension.
      +
      Throws:
      +
      ArithmeticException - if n == 0.
      +
      +
      +
    • +
    • +
      +

      getBaseDimensions

      + +
      Returns the (fundamental) base dimensions and their exponent whose product is this dimension, or null if this dimension is a base + dimension.
      +
      +
      Returns:
      +
      the mapping between the fundamental dimensions and their exponent.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/IncommensurableException.html b/docs/apidocs/javax/measure/IncommensurableException.html new file mode 100644 index 00000000..1cb0f695 --- /dev/null +++ b/docs/apidocs/javax/measure/IncommensurableException.html @@ -0,0 +1,205 @@ + + + + +IncommensurableException (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package javax.measure
+

Class IncommensurableException

+
+
java.lang.Object +
java.lang.Throwable +
java.lang.Exception +
javax.measure.IncommensurableException
+
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class IncommensurableException +extends Exception
+
Signals that a problem of some sort has occurred due to incommensurable of some quantities/units. Only commensurable quantity (quantities with the + same dimensions) may be compared, equated, added, or subtracted. Also, one unit can be converted to another unit only if both units are + commensurable. +

+ This is a checked exception, so it deliberately doesn't inherit from MeasurementException like most other exceptions. +

+
+
Since:
+
1.0
+
Version:
+
1.0, August 8, 2016
+
Author:
+
Jean-Marie Dautelle, Werner Keil
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      IncommensurableException

      + +
      Constructs a IncommensurableException with the given message.
      +
      +
      Parameters:
      +
      message - the detail message, or null if none.
      +
      +
      +
    • +
    • +
      +

      IncommensurableException

      + +
      Constructs a IncommensurableException with the given cause.
      +
      +
      Parameters:
      +
      cause - the cause of this exception, or null if none.
      +
      +
      +
    • +
    • +
      +

      IncommensurableException

      +
      public IncommensurableException(String message, + Throwable cause)
      +
      Constructs a IncommensurableException with the given message and cause.
      +
      +
      Parameters:
      +
      message - the detail message, or null if none.
      +
      cause - the cause of this exception, or null if none.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/MeasurementError.html b/docs/apidocs/javax/measure/MeasurementError.html new file mode 100644 index 00000000..187c9286 --- /dev/null +++ b/docs/apidocs/javax/measure/MeasurementError.html @@ -0,0 +1,215 @@ + + + + +MeasurementError (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package javax.measure
+

Class MeasurementError

+
+
java.lang.Object +
java.lang.Throwable +
java.lang.Error +
javax.measure.MeasurementError
+
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class MeasurementError +extends Error
+
This error is used to indicate serious problems with creating, retrieving and manipulating units of measurement objects. + +
+
Implementation Requirements:
+
This class is intended for use in a single thread. Exception thrown when errors occur during Units of Measurement operations.
+
+
+
Since:
+
2.1
+
Version:
+
2.2, Feb 3, 2021
+
Author:
+
Werner Keil
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      MeasurementError

      + +
      Constructs a MeasurementError with no detail message.
      +
      +
    • +
    • +
      +

      MeasurementError

      +
      public MeasurementError(String message)
      +
      Constructs a MeasurementError with the specified detail message.
      +
      +
      Parameters:
      +
      message - the detail message.
      +
      +
      +
    • +
    • +
      +

      MeasurementError

      +
      public MeasurementError(Throwable cause)
      +
      Constructs a MeasurementError with the given cause.
      +
      +
      Parameters:
      +
      cause - the cause of this exception, or null if none.
      +
      +
      +
    • +
    • +
      +

      MeasurementError

      +
      public MeasurementError(String message, + Throwable cause)
      +
      Constructs a MeasurementError with the specified detail message and cause.
      +
      +
      Parameters:
      +
      message - the detail message.
      +
      cause - the cause, may be null
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/MeasurementException.html b/docs/apidocs/javax/measure/MeasurementException.html new file mode 100644 index 00000000..8b7529ca --- /dev/null +++ b/docs/apidocs/javax/measure/MeasurementException.html @@ -0,0 +1,229 @@ + + + + +MeasurementException (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package javax.measure
+

Class MeasurementException

+
+ +
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
Direct Known Subclasses:
+
MeasurementParseException, UnconvertibleException
+
+
+ +
Exception used to indicate a problem while dealing with units of measurement. +

+ This exception is used to indicate problems with creating, retrieving and manipulating units of measurement objects. +

+ +
+
Implementation Requirements:
+
This class is intended for use in a single thread. Exception thrown when errors occur during Units of Measurement operations.
+
+
+
Since:
+
1.0
+
Version:
+
2.0, Jul 4, 2020
+
Author:
+
Werner Keil
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      MeasurementException

      +
      public MeasurementException(String message)
      +
      Constructs a MeasurementException with the given message.
      +
      +
      Parameters:
      +
      message - the detail message, or null if none.
      +
      +
      +
    • +
    • +
      +

      MeasurementException

      + +
      Constructs a MeasurementException with the given cause.
      +
      +
      Parameters:
      +
      cause - the cause of this exception, or null if none.
      +
      +
      +
    • +
    • +
      +

      MeasurementException

      +
      public MeasurementException(String message, + Throwable cause)
      +
      Constructs a MeasurementException with the given message and cause.
      +
      +
      Parameters:
      +
      message - the detail message, or null if none.
      +
      cause - the cause of this exception, or null if none.
      +
      +
      +
    • +
    • +
      +

      MeasurementException

      + +
      Constructs a MeasurementException with no given message.
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/MetricPrefix.html b/docs/apidocs/javax/measure/MetricPrefix.html new file mode 100644 index 00000000..122151ec --- /dev/null +++ b/docs/apidocs/javax/measure/MetricPrefix.html @@ -0,0 +1,1339 @@ + + + + +MetricPrefix (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package javax.measure
+

Enum MetricPrefix

+
+
java.lang.Object +
java.lang.Enum<MetricPrefix> +
javax.measure.MetricPrefix
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<MetricPrefix>, java.lang.constant.Constable, Prefix
+
+
+
public enum MetricPrefix +extends Enum<MetricPrefix> +implements Prefix
+
Provides support for the 24 prefixes used in the metric system (decimal multiples and submultiples of units). For example: + +
+ import static tech.units.indriya.unit.Units.*;  // Static import (from the RI).
+ import static javax.measure.MetricPrefix.*; // Static import.
+ import javax.measure.*;
+ import javax.measure.quantity.*;
+ ...
+ Unit<Pressure> HECTOPASCAL = HECTO(PASCAL);
+ Unit<Length> KILOMETRE = KILO(METRE); 
+ 
+ You could also apply Unit.prefix: +
+ ...
+ Unit<Pressure> HECTOPASCAL = PASCAL.prefix(HECTO);
+ Unit<Length> KILOMETRE = METRE.prefix(KILO);
+ 
+ +

+ Do not use ordinal() to obtain the numeric representation of MetricPrefix. Use getValue() and getExponent() instead. +

+ +
+
Implementation Requirements
This is an immutable and thread-safe enum.
+
+
+
Since:
+
2.0
+
Version:
+
2.3, May 20, 2023
+
Author:
+
Jean-Marie Dautelle, Werner Keil
+
See Also:
+
+ +
+
+
+
+
    + +
  • +
    +

    Nested Class Summary

    +
    +

    Nested classes/interfaces inherited from class java.lang.Enum

    +Enum.EnumDesc<E extends Enum<E>>
    +
    +
  • + +
  • +
    +

    Enum Constant Summary

    +
    Enum Constants
    +
    +
    Enum Constant
    +
    Description
    + +
    +
    Prefix for 10-18.
    +
    + +
    +
    Prefix for 10-2.
    +
    + +
    +
    Prefix for 101.
    +
    + +
    +
    Prefix for 10-1.
    +
    + +
    +
    Prefix for 1018.
    +
    + +
    +
    Prefix for 10-15.
    +
    + +
    +
    Prefix for 109.
    +
    + +
    +
    Prefix for 102.
    +
    + +
    +
    Prefix for 103.
    +
    + +
    +
    Prefix for 106.
    +
    + +
    +
    Prefix for 10-6.
    +
    + +
    +
    Prefix for 10-3.
    +
    + +
    +
    Prefix for 10-9.
    +
    + +
    +
    Prefix for 1015.
    +
    + +
    +
    Prefix for 10-12.
    +
    + +
    +
    Prefix for 10-30.
    +
    + +
    +
    Prefix for 1030.
    +
    + +
    +
    Prefix for 1027.
    +
    + +
    +
    Prefix for 10-27.
    +
    + +
    +
    Prefix for 1012.
    +
    + +
    +
    Prefix for 10-24.
    +
    + +
    +
    Prefix for 1024.
    +
    + +
    +
    Prefix for 10-21.
    +
    + +
    +
    Prefix for 1021.
    +
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    ATTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-18
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    CENTI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-2
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    DECA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 101
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    DECI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-1
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    DEKA(Unit<Q> unit)
    +
    +
    US alias for DECA.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    EXA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1018
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    FEMTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-15
    +
    +
    int
    + +
    +
    Exponent part of the associated factor in base^exponent representation.
    +
    + + +
    +
    Returns the name of this prefix.
    +
    + + +
    +
    Returns the symbol of this prefix.
    +
    + + +
    +
    Base part of the associated factor in base^exponent representation.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    GIGA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 109
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    HECTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 102
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    KILO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 103
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MEGA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 106
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MICRO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-6
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MILLI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-3
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    NANO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-9
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    PETA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1015
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    PICO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-12
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    QUECTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-30
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    QUETTA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1030
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    RONNA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1027
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    RONTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-27
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    TERA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1012
    +
    + + +
    +
    Returns the enum constant of this type with the specified name.
    +
    +
    static MetricPrefix[]
    + +
    +
    Returns an array containing the constants of this enum type, in +the order they are declared.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    YOCTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-24
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    YOTTA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1024
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    ZEPTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-21
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    ZETTA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1021
    +
    +
    +
    +
    + +
    +

    Methods inherited from class java.lang.Object

    +getClass, notify, notifyAll, wait, wait, wait
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Enum Constant Details

    + +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      values

      +
      public static MetricPrefix[] values()
      +
      Returns an array containing the constants of this enum type, in +the order they are declared.
      +
      +
      Returns:
      +
      an array containing the constants of this enum type, in the order they are declared
      +
      +
      +
    • +
    • +
      +

      valueOf

      +
      public static MetricPrefix valueOf(String name)
      +
      Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
      +
      +
      Parameters:
      +
      name - the name of the enum constant to be returned.
      +
      Returns:
      +
      the enum constant with the specified name
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      +
      +
      +
    • +
    • +
      +

      QUETTA

      +
      public static <Q extends Quantity<Q>> Unit<Q> QUETTA(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 1030
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e30).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      RONNA

      +
      public static <Q extends Quantity<Q>> Unit<Q> RONNA(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 1027
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e27).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      YOTTA

      +
      public static <Q extends Quantity<Q>> Unit<Q> YOTTA(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 1024
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e24).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      ZETTA

      +
      public static <Q extends Quantity<Q>> Unit<Q> ZETTA(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 1021
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e21).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      EXA

      +
      public static <Q extends Quantity<Q>> Unit<Q> EXA(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 1018
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e18).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      PETA

      +
      public static <Q extends Quantity<Q>> Unit<Q> PETA(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 1015
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e15).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      TERA

      +
      public static <Q extends Quantity<Q>> Unit<Q> TERA(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 1012
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e12).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      GIGA

      +
      public static <Q extends Quantity<Q>> Unit<Q> GIGA(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 109
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e9).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      MEGA

      +
      public static <Q extends Quantity<Q>> Unit<Q> MEGA(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 106
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e6).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      KILO

      +
      public static <Q extends Quantity<Q>> Unit<Q> KILO(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 103
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e3).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      HECTO

      +
      public static <Q extends Quantity<Q>> Unit<Q> HECTO(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 102
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e2).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      DECA

      +
      public static <Q extends Quantity<Q>> Unit<Q> DECA(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 101
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e1).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      DEKA

      +
      public static <Q extends Quantity<Q>> Unit<Q> DEKA(Unit<Q> unit)
      +
      US alias for DECA.
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e1).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      DECI

      +
      public static <Q extends Quantity<Q>> Unit<Q> DECI(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10-1
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e-1).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      CENTI

      +
      public static <Q extends Quantity<Q>> Unit<Q> CENTI(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10-2
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e-2).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      MILLI

      +
      public static <Q extends Quantity<Q>> Unit<Q> MILLI(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10-3
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e-3).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      MICRO

      +
      public static <Q extends Quantity<Q>> Unit<Q> MICRO(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10-6
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e-6).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      NANO

      +
      public static <Q extends Quantity<Q>> Unit<Q> NANO(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10-9
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e-9).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      PICO

      +
      public static <Q extends Quantity<Q>> Unit<Q> PICO(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10-12
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e-12).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      FEMTO

      +
      public static <Q extends Quantity<Q>> Unit<Q> FEMTO(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10-15
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e-15).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      ATTO

      +
      public static <Q extends Quantity<Q>> Unit<Q> ATTO(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10-18
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e-18).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      ZEPTO

      +
      public static <Q extends Quantity<Q>> Unit<Q> ZEPTO(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10-21
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e-21). + #see ZEPTO
      +
      +
      +
    • +
    • +
      +

      YOCTO

      +
      public static <Q extends Quantity<Q>> Unit<Q> YOCTO(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10-24
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e-24).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      RONTO

      +
      public static <Q extends Quantity<Q>> Unit<Q> RONTO(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10-27
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e-27).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      QUECTO

      +
      public static <Q extends Quantity<Q>> Unit<Q> QUECTO(Unit<Q> unit)
      +
      Returns the specified unit multiplied by the factor 10-30
      +
      +
      Type Parameters:
      +
      Q - type of the quantity measured by the unit.
      +
      Parameters:
      +
      unit - any unit.
      +
      Returns:
      +
      unit.times(1e-30).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      getSymbol

      +
      public String getSymbol()
      +
      Returns the symbol of this prefix.
      +
      +
      Specified by:
      +
      getSymbol in interface Prefix
      +
      Returns:
      +
      this prefix symbol, not null.
      +
      +
      +
    • +
    • +
      +

      getValue

      +
      public Integer getValue()
      +
      Base part of the associated factor in base^exponent representation. For metric prefix, this is always 10.
      +
      +
      Specified by:
      +
      getValue in interface Prefix
      +
      Returns:
      +
      The prefix value.
      +
      +
      +
    • +
    • +
      +

      getExponent

      +
      public int getExponent()
      +
      Exponent part of the associated factor in base^exponent representation.
      +
      +
      Specified by:
      +
      getExponent in interface Prefix
      +
      Returns:
      +
      the exponent part of this prefix.
      +
      +
      +
    • +
    • +
      +

      getName

      +
      public String getName()
      +
      Returns the name of this prefix.
      +
      +
      Specified by:
      +
      getName in interface Prefix
      +
      Returns:
      +
      this prefix name, not null.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/Prefix.html b/docs/apidocs/javax/measure/Prefix.html new file mode 100644 index 00000000..12fcfefe --- /dev/null +++ b/docs/apidocs/javax/measure/Prefix.html @@ -0,0 +1,210 @@ + + + + +Prefix (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package javax.measure
+

Interface Prefix

+
+
+
+
All Known Implementing Classes:
+
BinaryPrefix, MetricPrefix
+
+
+
public interface Prefix
+
A unit prefix is a specifier or mnemonic that is prepended to units of measurement to indicate multiples or fractions of the units.
+
+
Since:
+
2.0
+
Version:
+
1.4, April 3, 2023
+
Author:
+
Werner Keil
+
See Also:
+
+ +
+
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    int
    + +
    +
    Exponent part of the associated factor in base^exponent representation.
    +
    + + +
    +
    Returns the name of this prefix.
    +
    + + +
    +
    Returns the symbol of this prefix.
    +
    + + +
    +
    Returns the value of this prefix.
    +
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getName

      + +
      Returns the name of this prefix.
      +
      +
      Returns:
      +
      this prefix name, not null.
      +
      +
      +
    • +
    • +
      +

      getSymbol

      + +
      Returns the symbol of this prefix.
      +
      +
      Returns:
      +
      this prefix symbol, not null.
      +
      +
      +
    • +
    • +
      +

      getValue

      + +
      Returns the value of this prefix. If the exponent is different from 1, this value is the base part of the associated + factor in base^exponent representation.
      +
      +
      Returns:
      +
      The prefix value.
      +
      +
      +
    • +
    • +
      +

      getExponent

      + +
      Exponent part of the associated factor in base^exponent representation. For different factors, e.g. rational numbers like 1/4 + the exponent is always 1.
      +
      +
      Returns:
      +
      the exponent part of this prefix.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/Quantity.Scale.html b/docs/apidocs/javax/measure/Quantity.Scale.html new file mode 100644 index 00000000..ea46451f --- /dev/null +++ b/docs/apidocs/javax/measure/Quantity.Scale.html @@ -0,0 +1,254 @@ + + + + +Quantity.Scale (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package javax.measure
+

Enum Quantity.Scale

+
+
java.lang.Object +
java.lang.Enum<Quantity.Scale> +
javax.measure.Quantity.Scale
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<Quantity.Scale>, java.lang.constant.Constable
+
+
+
Enclosing interface:
+
Quantity<Q extends Quantity<Q>>
+
+
+
public static enum Quantity.Scale +extends Enum<Quantity.Scale>
+
The scale of a Quantity, either ABSOLUTE or RELATIVE.
+
+
Since:
+
2.0
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Enum Constant Details

    + +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      values

      +
      public static Quantity.Scale[] values()
      +
      Returns an array containing the constants of this enum type, in +the order they are declared.
      +
      +
      Returns:
      +
      an array containing the constants of this enum type, in the order they are declared
      +
      +
      +
    • +
    • +
      +

      valueOf

      +
      public static Quantity.Scale valueOf(String name)
      +
      Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
      +
      +
      Parameters:
      +
      name - the name of the enum constant to be returned.
      +
      Returns:
      +
      the enum constant with the specified name
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/Quantity.html b/docs/apidocs/javax/measure/Quantity.html new file mode 100644 index 00000000..d8fe64a6 --- /dev/null +++ b/docs/apidocs/javax/measure/Quantity.html @@ -0,0 +1,582 @@ + + + + +Quantity (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package javax.measure
+

Interface Quantity<Q extends Quantity<Q>>

+
+
+
+
Type Parameters:
+
Q - The type of the quantity.
+
+
+
All Known Subinterfaces:
+
Acceleration, AmountOfSubstance, Angle, Area, CatalyticActivity, Dimensionless, ElectricCapacitance, ElectricCharge, ElectricConductance, ElectricCurrent, ElectricInductance, ElectricPotential, ElectricResistance, Energy, Force, Frequency, Illuminance, Length, LuminousFlux, LuminousIntensity, MagneticFlux, MagneticFluxDensity, Mass, Power, Pressure, RadiationDoseAbsorbed, RadiationDoseEffective, Radioactivity, SolidAngle, Speed, Temperature, Time, Volume
+
+
+
public interface Quantity<Q extends Quantity<Q>>
+
Represents a quantitative property of a phenomenon, body, or substance, that + can be quantified by measurement. Mass, + time, distance, heat, and angular separation are among the familiar examples + of quantitative properties. +

+ Unit<Mass> pound = ... Quantity<Length> size = ... Sensor<Temperature>
+ thermometer = ... Vector3D<Speed> aircraftSpeed = ...
+

+ +
+
Arithmetic operations
+
+ This interface defines some arithmetic operations between Quantity + instances. All implementations shall produce equivalent results for + the same operation applied on equivalent quantities. Two quantities are + equivalent if, after conversion to the same unit of measurement, they have + the same numerical value (ignoring rounding errors). For example 2000 metres + is equivalent to 2 km, but 2°C is not equivalent to 2 K; it is equivalent to + 275.15 K instead. Above requirement applied to addition means that 2°C + 2 K + shall be equivalent to 275.15 K + 2 K. + +

All operations shall preserve the + basic laws + of algebra, in particular commutativity of addition and + multiplication (A + B = B + A) + and associativity of addition and multiplication (A + + B) + C = A + (B + C). + In order to preserve those algebra laws, this specification requires all + arithmetic operations to execute as is all operands were converted + to system unit before the operation is + carried out, and the result converted back to any compatible unit at + implementation choice. For example 4 cm + 1 inch shall produce any result + equivalent to 0.04 m + 0.0254 m.

+ +

Implementations are allowed to avoid conversion to system unit if the + result is guaranteed to be equivalent. This is often the case when the + conversion between quantity unit and system unit is only a + scale factor. However this is not + the case for conversions applying an offset or more complex formula. + For example 2°C + 1°C = 274.15°C, not 3°C. This counter-intuitive result + is essential for preserving algebra laws like associativity, and is also + the expected result from a thermodynamic point of view.

+ +
+
API Note:
This interface places no restrictions on the mutability of + implementations, however immutability is strongly recommended. All + implementations must be Comparable.
+
+
+
Since:
+
1.0
+
Version:
+
2.5, May 20, 2023
+
Author:
+
Jean-Marie Dautelle, Martin + Desruisseaux, Werner Keil, Otavio Santana
+
See Also:
+
+ +
+
+
+
+
    + +
  • +
    +

    Nested Class Summary

    +
    Nested Classes
    +
    +
    Modifier and Type
    +
    Interface
    +
    Description
    +
    static enum 
    + +
    +
    The scale of a Quantity, either ABSOLUTE or RELATIVE.
    +
    +
    +
    +
  • + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + +
    add(Quantity<Q> addend)
    +
    +
    Returns the sum of this Quantity with the one specified.
    +
    +
    <T extends Quantity<T>>
    Quantity<T>
    +
    asType(Class<T> type)
    +
    +
    Casts this quantity to a parameterized unit of specified nature or throw a + ClassCastException if the dimension of the specified quantity + and this measure unit's dimension do not match.
    +
    + +
    divide(Number divisor)
    +
    +
    Returns the quotient of this Quantity divided by the Number + specified.
    +
    + +
    divide(Quantity<?> divisor)
    +
    +
    Returns the quotient of this Quantity divided by the Quantity + specified.
    +
    + + +
    +
    Returns the Scale of this Quantity, if it's absolute or relative.
    +
    + + +
    +
    Returns the unit of this Quantity.
    +
    + + +
    +
    Returns the value of this Quantity.
    +
    + + +
    +
    Returns a Quantity that is the multiplicative inverse of this + Quantity, having reciprocal value and reciprocal unit as given by + this.getUnit().inverse().
    +
    +
    boolean
    + +
    +
    Compares two instances of Quantity <Q>, performing the conversion of units if necessary.
    +
    + +
    multiply(Number multiplicand)
    +
    +
    Returns the product of this Quantity with the Number value + specified.
    +
    + +
    multiply(Quantity<?> multiplicand)
    +
    +
    Returns the product of this Quantity with the one specified.
    +
    + + +
    +
    Returns a Quantity whose value is (-this.getValue()).
    +
    + +
    subtract(Quantity<Q> subtrahend)
    +
    +
    Returns the difference between this Quantity and the one specified.
    +
    + +
    to(Unit<Q> unit)
    +
    +
    Returns this Quantity converted into another (compatible) + Unit.
    +
    +
    default Quantity<Q>
    + +
    +
    Convenient method equivalent to to(getUnit().toSystemUnit()).
    +
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      add

      +
      Quantity<Q> add(Quantity<Q> addend)
      +
      Returns the sum of this Quantity with the one specified. + The result shall be as if this quantity and the given addend were + converted to system unit before + to be added, and the result converted back to the unit of this + quantity or any other compatible unit at implementation choice.
      +
      +
      Parameters:
      +
      addend - the Quantity to be added.
      +
      Returns:
      +
      this + addend.
      +
      +
      +
    • +
    • +
      +

      subtract

      +
      Quantity<Q> subtract(Quantity<Q> subtrahend)
      +
      Returns the difference between this Quantity and the one specified. + The result shall be as if this quantity and the given subtrahend were + converted to system unit before + to be subtracted, and the result converted back to the unit of this + quantity or any other compatible unit at implementation choice.
      +
      +
      Parameters:
      +
      subtrahend - the Quantity to be subtracted.
      +
      Returns:
      +
      this - subtrahend.
      +
      +
      +
    • +
    • +
      +

      divide

      +
      Quantity<?> divide(Quantity<?> divisor)
      +
      Returns the quotient of this Quantity divided by the Quantity + specified. + The result shall be as if this quantity and the given divisor were + converted to system unit before + to be divided, and the result converted back to the unit of this + quantity or any other compatible unit at implementation choice.
      +
      +
      Parameters:
      +
      divisor - the Quantity divisor.
      +
      Returns:
      +
      this / divisor.
      +
      Throws:
      +
      ClassCastException - if the type of an element in the specified operation is + incompatible with this quantity
      +
      +
      +
    • +
    • +
      +

      divide

      +
      Quantity<Q> divide(Number divisor)
      +
      Returns the quotient of this Quantity divided by the Number + specified. + The result shall be as if this quantity was converted to + system unit before to be divided, + and the result converted back to the unit of this quantity or any + other compatible unit at implementation choice.
      +
      +
      Parameters:
      +
      divisor - the Number divisor.
      +
      Returns:
      +
      this / divisor.
      +
      +
      +
    • +
    • +
      +

      multiply

      +
      Quantity<?> multiply(Quantity<?> multiplicand)
      +
      Returns the product of this Quantity with the one specified. + The result shall be as if this quantity and the given multiplicand were + converted to system unit before + to be multiplied, and the result converted back to the unit of this + quantity or any other compatible unit at implementation choice.
      +
      +
      Parameters:
      +
      multiplicand - the Quantity multiplicand.
      +
      Returns:
      +
      this * multiplicand.
      +
      Throws:
      +
      ClassCastException - if the type of an element in the specified operation is + incompatible with this quantity
      +
      +
      +
    • +
    • +
      +

      multiply

      +
      Quantity<Q> multiply(Number multiplicand)
      +
      Returns the product of this Quantity with the Number value + specified. + The result shall be as if this quantity was converted to + system unit before to be multiplied, + and the result converted back to the unit of this quantity or any + other compatible unit at implementation choice.
      +
      +
      Parameters:
      +
      multiplicand - the Number multiplicand.
      +
      Returns:
      +
      this * multiplicand.
      +
      +
      +
    • +
    • +
      +

      to

      +
      Quantity<Q> to(Unit<Q> unit)
      +
      Returns this Quantity converted into another (compatible) + Unit.
      +
      +
      Parameters:
      +
      unit - the Unit unit in which the returned quantity is stated.
      +
      Returns:
      +
      this quantity or a new quantity equivalent to this quantity stated in the specified unit.
      +
      Throws:
      +
      ArithmeticException - if the result is inexact and the quotient has a non-terminating decimal expansion.
      +
      +
      +
    • +
    • +
      +

      inverse

      + +
      Returns a Quantity that is the multiplicative inverse of this + Quantity, having reciprocal value and reciprocal unit as given by + this.getUnit().inverse().
      +
      +
      Returns:
      +
      reciprocal Quantity
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      negate

      + +
      Returns a Quantity whose value is (-this.getValue()).
      +
      +
      Returns:
      +
      -this.
      +
      +
      +
    • +
    • +
      +

      asType

      +
      <T extends Quantity<T>> Quantity<T> asType(Class<T> type) + throws ClassCastException
      +
      Casts this quantity to a parameterized unit of specified nature or throw a + ClassCastException if the dimension of the specified quantity + and this measure unit's dimension do not match. For example: +

      + + Quantity<Length> length = Quantities.getQuantity("2 km").asType(Length.class); + or + Quantity<Speed> C = length.multiply(299792458).divide(second).asType(Speed.class); + +

      +
      +
      Type Parameters:
      +
      T - The type of the quantity.
      +
      Parameters:
      +
      type - the quantity class identifying the nature of the quantity.
      +
      Returns:
      +
      this quantity parameterized with the specified type.
      +
      Throws:
      +
      ClassCastException - if the dimension of this unit is different from the specified + quantity dimension.
      +
      UnsupportedOperationException - if the specified quantity class does not have a SI unit for the + quantity.
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      getValue

      + +
      Returns the value of this Quantity.
      +
      +
      Returns:
      +
      a value.
      +
      +
      +
    • +
    • +
      +

      getUnit

      + +
      Returns the unit of this Quantity.
      +
      +
      Returns:
      +
      the unit (shall not be null).
      +
      +
      +
    • +
    • +
      +

      toSystemUnit

      +
      default Quantity<Q> toSystemUnit()
      +
      Convenient method equivalent to to(getUnit().toSystemUnit()).
      +
      +
      Returns:
      +
      this quantity or a new quantity equivalent to this quantity stated in + SI units.
      +
      Throws:
      +
      ArithmeticException - if the result is inexact and the quotient has a non-terminating + decimal expansion.
      +
      +
      +
    • +
    • +
      +

      getScale

      + +
      Returns the Scale of this Quantity, if it's absolute or relative.
      +
      +
      Returns:
      +
      the scale, if it's an absolute or relative quantity.
      +
      Since:
      +
      2.0
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      isEquivalentTo

      +
      boolean isEquivalentTo(Quantity<Q> that)
      +
      Compares two instances of Quantity <Q>, performing the conversion of units if necessary.
      +
      +
      Parameters:
      +
      that - the quantity<Q> to be compared with this instance.
      +
      Returns:
      +
      true if that ≡ this.
      +
      Throws:
      +
      NullPointerException - if the quantity is null
      +
      Since:
      +
      2.1
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/UnconvertibleException.html b/docs/apidocs/javax/measure/UnconvertibleException.html new file mode 100644 index 00000000..49fbaa2c --- /dev/null +++ b/docs/apidocs/javax/measure/UnconvertibleException.html @@ -0,0 +1,202 @@ + + + + +UnconvertibleException (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package javax.measure
+

Class UnconvertibleException

+
+ +
+
+
All Implemented Interfaces:
+
Serializable
+
+
+ +
Signals that a problem of some sort has occurred due to the impossibility of constructing a converter between two units. For example, the + multiplication of offset units are usually units not convertible to their system unit.
+
+
Version:
+
1.0, Aug 8, 2016
+
Author:
+
Jean-Marie Dautelle, Werner Keil
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      UnconvertibleException

      +
      public UnconvertibleException(String message)
      +
      Constructs a UnconvertibleException with the given message.
      +
      +
      Parameters:
      +
      message - the detail message, or null if none.
      +
      +
      +
    • +
    • +
      +

      UnconvertibleException

      + +
      Constructs a UnconvertibleException with the given cause.
      +
      +
      Parameters:
      +
      cause - the cause of this exception, or null if none.
      +
      +
      +
    • +
    • +
      +

      UnconvertibleException

      +
      public UnconvertibleException(String message, + Throwable cause)
      +
      Constructs a UnconvertibleException with the given message and cause.
      +
      +
      Parameters:
      +
      message - the detail message, or null if none.
      +
      cause - the cause of this exception, or null if none.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/Unit.html b/docs/apidocs/javax/measure/Unit.html new file mode 100644 index 00000000..3ba042cd --- /dev/null +++ b/docs/apidocs/javax/measure/Unit.html @@ -0,0 +1,805 @@ + + + + +Unit (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package javax.measure
+

Interface Unit<Q extends Quantity<Q>>

+
+
+
+
Type Parameters:
+
Q - The type of the quantity measured by this unit.
+
+
+
public interface Unit<Q extends Quantity<Q>>
+
Represents a determinate quantity (as of length, time, heat, or value) adopted as a standard of measurement. + +

+ It is helpful to think of instances of this class as recording the history by which they are created. Thus, for example, the string "g/kg" + (which is a dimensionless unit) would result from invoking the method toString() on a unit that was created by dividing a gram unit by a + kilogram unit. +

+ +

+ This interface supports the multiplication of offsets units. The result is usually a unit not convertible to its system unit. Such units may appear in derivative quantities. For example Celsius per meter is an unit of gradient, which is common in atmospheric + and oceanographic research. +

+ +

+ Units raised at non-integral powers are not supported. For example, LITRE.root(2) raises an ArithmeticException, but + HECTARE.root(2) returns HECTOMETRE (100 metres). +

+ +

+ Unit instances shall be immutable. +

+
+
Since:
+
1.0
+
Version:
+
2.4, November 11, 2020
+
Author:
+
Jean-Marie Dautelle, Steve Emmerson, Martin Desruisseaux, Werner Keil
+
See Also:
+
+ +
+
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + +
    alternate(String symbol)
    +
    +
    Returns a system unit equivalent to this unscaled standard unit but used in expressions to distinguish between quantities of a different nature + but of the same dimensions.
    +
    +
    <T extends Quantity<T>>
    Unit<T>
    +
    asType(Class<T> type)
    +
    +
    Casts this unit to a parameterized unit of specified nature or throw a ClassCastException if the dimension of the specified quantity and + this unit's dimension do not match.
    +
    + +
    divide(double divisor)
    +
    +
    Returns the result of dividing this unit by an approximate divisor.
    +
    + +
    divide(Number divisor)
    +
    +
    Returns the result of dividing this unit by a divisor.
    +
    +
    Unit<?>
    +
    divide(Unit<?> divisor)
    +
    +
    Returns the quotient of this unit with the one specified.
    +
    +
    Map<? extends Unit<?>,Integer>
    + +
    +
    Returns the base units and their exponent whose product is this unit, or null if this unit is a base unit (not a product of existing + units).
    +
    + + +
    +
    Returns a converter of numeric values from this unit to another unit of same type.
    +
    + + +
    +
    Returns a converter from this unit to the specified unit of type unknown.
    +
    + + +
    +
    Returns the dimension of this unit.
    +
    + + +
    +
    Returns the name (if any) of this unit.
    +
    + + +
    +
    Returns the symbol (if any) of this unit.
    +
    + + +
    +
    Returns the unscaled system unit from which this unit is derived.
    +
    +
    Unit<?>
    + +
    +
    Returns the reciprocal (multiplicative inverse) of this unit.
    +
    +
    boolean
    +
    isCompatible(Unit<?> that)
    +
    +
    Indicates if this unit is compatible with the unit specified.
    +
    +
    boolean
    + +
    +
    Indicates if this unit represents the same quantity than the given unit, ignoring name and symbols.
    +
    + +
    multiply(double multiplier)
    +
    +
    Returns the result of multiplying this unit by the specified factor.
    +
    + +
    multiply(Number multiplier)
    +
    +
    Returns the result of multiplying this unit by the specified factor.
    +
    +
    Unit<?>
    +
    multiply(Unit<?> multiplier)
    +
    +
    Returns the product of this unit with the one specified.
    +
    +
    Unit<?>
    +
    pow(int n)
    +
    +
    Returns an unit raised to the n-th (integer) power of this unit.
    +
    + +
    prefix(Prefix prefix)
    +
    +
    Returns a new unit equal to this unit prefixed by the specified prefix.
    +
    +
    Unit<?>
    +
    root(int n)
    +
    +
    Returns an unit that is the n-th (integer) root of this unit.
    +
    + +
    shift(double offset)
    +
    +
    Returns the result of setting the origin of the scale of measurement to the given value.
    +
    + +
    shift(Number offset)
    +
    +
    Returns the result of setting the origin of the scale of measurement to the given value.
    +
    + + +
    +
    Returns a string representation of this unit.
    +
    + + +
    +
    Returns the unit derived from this unit using the specified converter.
    +
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getSymbol

      + +
      Returns the symbol (if any) of this unit. This method returns null if this unit has no specific symbol associated with.
      +
      +
      Returns:
      +
      this unit symbol, or null if this unit has not specific symbol associated with (e.g. product of units).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      getName

      + +
      Returns the name (if any) of this unit. This method returns null if this unit has no specific name associated with.
      +
      +
      Returns:
      +
      this unit name, or null if this unit has not specific name associated with (e.g. product of units).
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      getDimension

      + +
      Returns the dimension of this unit. Two units u1 and u2 are compatible if and only if + u1.getDimension().equals(u2.getDimension()).
      +
      +
      Returns:
      +
      the dimension of this unit.
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      getSystemUnit

      + +
      Returns the unscaled system unit from which this unit is derived. System units are either base units, alternate + units or product of rational powers of system units. + +

      + Because the system unit is unique by quantity type, it can be be used to identify the quantity given the unit. For example: +

      + + static boolean isAngularSpeed(Unit<?> unit) {
      +    return unit.getSystemUnit().equals(RADIAN.divide(SECOND));
      + }
      + assert isAngularSpeed(REVOLUTION.divide(MINUTE)); // Returns true.

      +
      +
      +
      Returns:
      +
      the system unit this unit is derived from, or this if this unit is a system unit.
      +
      +
      +
    • +
    • +
      +

      getBaseUnits

      +
      Map<? extends Unit<?>,Integer> getBaseUnits()
      +
      Returns the base units and their exponent whose product is this unit, or null if this unit is a base unit (not a product of existing + units).
      +
      +
      Returns:
      +
      the base units and their exponent making up this unit.
      +
      +
      +
    • +
    • +
      +

      isCompatible

      +
      boolean isCompatible(Unit<?> that)
      +
      Indicates if this unit is compatible with the unit specified. Units don't need to be equal to be compatible. For example (assuming ONE + is a dimensionless unit):
      + + + RADIAN.equals(ONE) == false
      + RADIAN.isCompatible(ONE) == true
      + RADIAN.isEquivalentTo(ONE) doesn't compile
      +
      +
      +
      Parameters:
      +
      that - the other unit to compare for compatibility.
      +
      Returns:
      +
      this.getDimension().equals(that.getDimension())
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      isEquivalentTo

      +
      boolean isEquivalentTo(Unit<Q> that)
      +
      Indicates if this unit represents the same quantity than the given unit, ignoring name and symbols. + Two units are equivalent if the conversion between them is identity. + +

      + Unlike isCompatible(Unit) an equivalence check requires both units to be strictly type-compatible, + because it makes no sense to compare e.g. gram and mm for equivalence. + By contrast, the compatibility check can works across different quantity types. +

      +
      +
      Parameters:
      +
      that - the Unit<Q> to be compared with this instance.
      +
      Returns:
      +
      true if that ≡ this.
      +
      Throws:
      +
      NullPointerException - if the unit is null
      +
      Since:
      +
      2.1
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      asType

      +
      <T extends Quantity<T>> Unit<T> asType(Class<T> type) + throws ClassCastException
      +
      Casts this unit to a parameterized unit of specified nature or throw a ClassCastException if the dimension of the specified quantity and + this unit's dimension do not match. For example:
      + + + Unit<Speed> C = METRE.multiply(299792458).divide(SECOND).asType(Speed.class); +
      +
      +
      Type Parameters:
      +
      T - The type of the quantity measured by the unit.
      +
      Parameters:
      +
      type - the quantity class identifying the nature of the unit.
      +
      Returns:
      +
      this unit parameterized with the specified type.
      +
      Throws:
      +
      ClassCastException - if the dimension of this unit is different from the specified quantity dimension.
      +
      +
      +
    • +
    • +
      +

      getConverterTo

      + +
      Returns a converter of numeric values from this unit to another unit of same type. This method performs the same work as + getConverterToAny(Unit) without raising checked exception.
      +
      +
      Parameters:
      +
      that - the unit of same type to which to convert the numeric values.
      +
      Returns:
      +
      the converter from this unit to that unit.
      +
      Throws:
      +
      UnconvertibleException - if a converter cannot be constructed.
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      getConverterToAny

      + +
      Returns a converter from this unit to the specified unit of type unknown. This method can be used when the quantity type of the specified unit is + unknown at compile-time or when dimensional analysis allows for conversion between units of different type. + +

      + To convert to a unit having the same parameterized type, getConverterTo(Unit) is preferred (no checked exception raised). +

      +
      +
      Parameters:
      +
      that - the unit to which to convert the numeric values.
      +
      Returns:
      +
      the converter from this unit to that unit.
      +
      Throws:
      +
      IncommensurableException - if this unit is not compatible with that unit.
      +
      UnconvertibleException - if a converter cannot be constructed.
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      alternate

      +
      Unit<Q> alternate(String symbol)
      +
      Returns a system unit equivalent to this unscaled standard unit but used in expressions to distinguish between quantities of a different nature + but of the same dimensions. + +

      + Examples of alternate units: +

      + + + Unit<Angle> RADIAN = ONE.alternate("rad").asType(Angle.class);
      + Unit<Force> NEWTON = METRE.multiply(KILOGRAM).divide(SECOND.pow(2)).alternate("N").asType(Force.class);
      + Unit<Pressure> PASCAL = NEWTON.divide(METRE.pow(2)).alternate("Pa").asType(Pressure.class);
      +
      +
      +
      Parameters:
      +
      symbol - the new symbol for the alternate unit.
      +
      Returns:
      +
      the alternate unit.
      +
      Throws:
      +
      IllegalArgumentException - if this unit is not an unscaled standard unit.
      +
      MeasurementException - if the specified symbol is not valid or is already associated to a different unit.
      +
      +
      +
    • +
    • +
      +

      shift

      +
      Unit<Q> shift(Number offset)
      +
      Returns the result of setting the origin of the scale of measurement to the given value. The returned unit is convertible with all units that are + convertible with this unit. For example the following code:
      + + + CELSIUS = KELVIN.shift(273.15); + + + creates a new unit where 0°C (the origin of the new unit) is equals to 273.15 K. Converting from the old unit to the new one is equivalent to + subtracting the offset to the value in the old unit.
      +
      +
      Parameters:
      +
      offset - the offset added (expressed in this unit).
      +
      Returns:
      +
      this unit offset by the specified value.
      +
      Since:
      +
      2.0
      +
      +
      +
    • +
    • +
      +

      shift

      +
      Unit<Q> shift(double offset)
      +
      Returns the result of setting the origin of the scale of measurement to the given value. The returned unit is convertible with all units that are + convertible with this unit. For example the following code:
      + + + CELSIUS = KELVIN.shift(273.15); + + + creates a new unit where 0°C (the origin of the new unit) is equals to 273.15 K. Converting from the old unit to the new one is equivalent to + subtracting the offset to the value in the old unit.
      +
      +
      Parameters:
      +
      offset - the offset added (expressed in this unit).
      +
      Returns:
      +
      this unit offset by the specified value.
      +
      +
      +
    • +
    • +
      +

      multiply

      +
      Unit<Q> multiply(Number multiplier)
      +
      Returns the result of multiplying this unit by the specified factor. If the factor is an integer value, the multiplication is exact + (recommended). For example:
      + + + FOOT = METRE.multiply(3048).divide(10000); // Exact definition.
      + ELECTRON_MASS = KILOGRAM.multiply(9.10938188e-31); // Approximation. +
      +
      +
      Parameters:
      +
      multiplier - the multiplier
      +
      Returns:
      +
      this unit scaled by the specified multiplier.
      +
      Since:
      +
      2.0
      +
      +
      +
    • +
    • +
      +

      multiply

      +
      Unit<Q> multiply(double multiplier)
      +
      Returns the result of multiplying this unit by the specified factor. For example:
      + + + FOOT = METRE.multiply(3048).divide(10000); // Exact definition.
      + ELECTRON_MASS = KILOGRAM.multiply(9.10938188e-31); // Approximation. +
      +
      +
      Parameters:
      +
      multiplier - the multiplier
      +
      Returns:
      +
      this unit scaled by the specified multiplier.
      +
      +
      +
    • +
    • +
      +

      multiply

      +
      Unit<?> multiply(Unit<?> multiplier)
      +
      Returns the product of this unit with the one specified.
      +
      +
      Parameters:
      +
      multiplier - the unit multiplier.
      +
      Returns:
      +
      this * multiplier
      +
      +
      +
    • +
    • +
      +

      inverse

      + +
      Returns the reciprocal (multiplicative inverse) of this unit.
      +
      +
      Returns:
      +
      1 / this
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      divide

      +
      Unit<Q> divide(Number divisor)
      +
      Returns the result of dividing this unit by a divisor. If the factor is an integer value, the division is exact. For example:
      + + + GRAM = KILOGRAM.divide(1000); // Exact definition. +
      +
      +
      Parameters:
      +
      divisor - the divisor value.
      +
      Returns:
      +
      this unit divided by the specified divisor.
      +
      Since:
      +
      2.0
      +
      +
      +
    • +
    • +
      +

      divide

      +
      Unit<Q> divide(double divisor)
      +
      Returns the result of dividing this unit by an approximate divisor. For example:
      + + + GRAM = KILOGRAM.divide(1000d); +
      +
      +
      Parameters:
      +
      divisor - the divisor value.
      +
      Returns:
      +
      this unit divided by the specified divisor.
      +
      +
      +
    • +
    • +
      +

      divide

      +
      Unit<?> divide(Unit<?> divisor)
      +
      Returns the quotient of this unit with the one specified.
      +
      +
      Parameters:
      +
      divisor - the unit divisor.
      +
      Returns:
      +
      this / divisor
      +
      +
      +
    • +
    • +
      +

      root

      +
      Unit<?> root(int n)
      +
      Returns an unit that is the n-th (integer) root of this unit. Equivalent to the mathematical expression unit^(1/n).
      +
      +
      Parameters:
      +
      n - an integer giving the root's order as in 'n-th root'
      +
      Returns:
      +
      the n-th root of this unit.
      +
      Throws:
      +
      ArithmeticException - if n == 0 or if this operation would result in an unit with a fractional exponent.
      +
      +
      +
    • +
    • +
      +

      pow

      +
      Unit<?> pow(int n)
      +
      Returns an unit raised to the n-th (integer) power of this unit. Equivalent to the mathematical expression unit^n.
      +
      +
      Parameters:
      +
      n - the exponent.
      +
      Returns:
      +
      the result of raising this unit to the exponent.
      +
      +
      +
    • +
    • +
      +

      transform

      + +
      Returns the unit derived from this unit using the specified converter. The converter does not need to be linear. For example:
      + +
      +     Unit<Dimensionless> DECIBEL = Unit.ONE.transform(
      +         new LogConverter(10).inverse().concatenate(
      +             new RationalConverter(1, 10)));
      + 
      +
      +
      Parameters:
      +
      operation - the converter from the transformed unit to this unit.
      +
      Returns:
      +
      the unit after the specified transformation.
      +
      +
      +
    • +
    • +
      +

      toString

      + +
      Returns a string representation of this unit. The string representation may be the unit symbol, or may be some + representation of product units, multiplication factor and offset if any. + +

      + The string may be localized at implementation choice by the means of a particular device and platform. +

      +
      +
      Overrides:
      +
      toString in class Object
      +
      Returns:
      +
      the string representation of this unit.
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      prefix

      +
      Unit<Q> prefix(Prefix prefix)
      +
      Returns a new unit equal to this unit prefixed by the specified prefix.
      +
      +
      Parameters:
      +
      prefix - the prefix to apply on this unit.
      +
      Returns:
      +
      the unit with the given prefix applied.
      +
      Since:
      +
      2.0
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/UnitConverter.html b/docs/apidocs/javax/measure/UnitConverter.html new file mode 100644 index 00000000..e25df599 --- /dev/null +++ b/docs/apidocs/javax/measure/UnitConverter.html @@ -0,0 +1,309 @@ + + + + +UnitConverter (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package javax.measure
+

Interface UnitConverter

+
+
+
+
public interface UnitConverter
+
A converter of numeric values between different units. + +

+ Instances of this class are usually obtained through the Unit.getConverterTo(Unit) method. +

+
+
Since:
+
1.0
+
Version:
+
1.4, May 12, 2019
+
Author:
+
Jean-Marie Dautelle, Werner Keil, Martin + Desruisseaux, Thodoris Bais, Andi Huber
+
See Also:
+
+ +
+
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + + +
    +
    Concatenates this converter with another converter.
    +
    +
    double
    +
    convert(double value)
    +
    +
    Converts a double value.
    +
    + +
    convert(Number value)
    +
    +
    Converts a Number value.
    +
    +
    List<? extends UnitConverter>
    + +
    +
    + Returns the steps of fundamental converters making up this converter or this if the converter is a fundamental converter.
    +
    + + +
    +
    Returns the inverse of this converter.
    +
    +
    boolean
    + +
    +
    Indicates if this converter is an identity converter.
    +
    +
    boolean
    + +
    +
    Indicates whether this converter represents a (one-dimensional) linear transformation, that is + a linear map (wikipedia) from a one-dimensional + vector space (a scalar) to a one-dimensional vector space.
    +
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      isIdentity

      +
      boolean isIdentity()
      +
      Indicates if this converter is an identity converter. The identity converter returns its input argument (convert(x) == x). +

      + Note: Identity converters are also always 'linear', see isLinear(). +

      +
      +
      Returns:
      +
      true if this converter is an identity converter.
      +
      +
      +
    • +
    • +
      +

      isLinear

      +
      boolean isLinear()
      +
      Indicates whether this converter represents a (one-dimensional) linear transformation, that is + a linear map (wikipedia) from a one-dimensional + vector space (a scalar) to a one-dimensional vector space. Typically from 'R' to 'R', with 'R' the + real numbers. + +

      + Given such a 'linear' converter 'A', let 'u', 'v' and 'r' be arbitrary numbers, then the following + must hold by definition: + +

        +
      • A(u + v) == A(u) + A(v)
      • +
      • A(r * u) == r * A(u)
      • +
      + +

      + Given a second 'linear' converter 'B', commutativity of composition follows by above definition: + +

        +
      • (A o B) (u) == (B o A) (u)
      • +
      + + In other words, two 'linear' converters do have the property that A(B(u)) == B(A(u)), meaning + for 'A' and 'B' the order of their composition does not matter. Expressed as Java code: + +

      +A.concatenate(B).convert(u) == B.concatenate(A).convert(u) +

      + + Note: For composing UnitConverters see also concatenate(UnitConverter).
      +
      +
      Returns:
      +
      true if this converter represents a linear transformation; + false otherwise.
      +
      +
      +
    • +
    • +
      +

      inverse

      + +
      Returns the inverse of this converter. If x is a valid value, then x == inverse().convert(convert(x)) to within the accuracy of + computer arithmetic.
      +
      +
      Returns:
      +
      the inverse of this converter.
      +
      +
      +
    • +
    • +
      +

      convert

      + +
      Converts a Number value.
      +
      +
      Parameters:
      +
      value - the Number value to convert.
      +
      Returns:
      +
      the Number value after conversion.
      +
      +
      +
    • +
    • +
      +

      convert

      +
      double convert(double value)
      +
      Converts a double value.
      +
      +
      Parameters:
      +
      value - the numeric value to convert.
      +
      Returns:
      +
      the double value after conversion.
      +
      +
      +
    • +
    • +
      +

      concatenate

      + +
      Concatenates this converter with another converter. The resulting converter is equivalent to first converting by the specified converter (right + converter), and then converting by this converter (left converter).
      +
      +
      Parameters:
      +
      converter - the other converter to concatenate with this converter.
      +
      Returns:
      +
      the concatenation of this converter with the other converter.
      +
      +
      +
    • +
    • +
      +

      getConversionSteps

      + +

      + Returns the steps of fundamental converters making up this converter or this if the converter is a fundamental converter. +

      +

      + For example, converter1.getConversionSteps() returns converter1 while + converter1.concatenate(converter2).getConversionSteps() returns converter1, converter2. +

      +
      +
      Returns:
      +
      the list of fundamental converters which concatenated make up this converter.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/class-use/BinaryPrefix.html b/docs/apidocs/javax/measure/class-use/BinaryPrefix.html new file mode 100644 index 00000000..ff0a1c89 --- /dev/null +++ b/docs/apidocs/javax/measure/class-use/BinaryPrefix.html @@ -0,0 +1,98 @@ + + + + +Uses of Enum javax.measure.BinaryPrefix (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Enum
javax.measure.BinaryPrefix

+
+
Packages that use BinaryPrefix
+
+
Package
+
Description
+ +
+
Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/class-use/Dimension.html b/docs/apidocs/javax/measure/class-use/Dimension.html new file mode 100644 index 00000000..ea74b12c --- /dev/null +++ b/docs/apidocs/javax/measure/class-use/Dimension.html @@ -0,0 +1,160 @@ + + + + +Uses of Interface javax.measure.Dimension (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.Dimension

+
+
Packages that use Dimension
+
+
Package
+
Description
+ +
+
Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
+
+ +
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/class-use/IncommensurableException.html b/docs/apidocs/javax/measure/class-use/IncommensurableException.html new file mode 100644 index 00000000..ebc172db --- /dev/null +++ b/docs/apidocs/javax/measure/class-use/IncommensurableException.html @@ -0,0 +1,92 @@ + + + + +Uses of Class javax.measure.IncommensurableException (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
javax.measure.IncommensurableException

+
+
Packages that use IncommensurableException
+
+
Package
+
Description
+ +
+
Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/class-use/MeasurementError.html b/docs/apidocs/javax/measure/class-use/MeasurementError.html new file mode 100644 index 00000000..2ab44af3 --- /dev/null +++ b/docs/apidocs/javax/measure/class-use/MeasurementError.html @@ -0,0 +1,62 @@ + + + + +Uses of Class javax.measure.MeasurementError (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
javax.measure.MeasurementError

+
+No usage of javax.measure.MeasurementError
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/class-use/MeasurementException.html b/docs/apidocs/javax/measure/class-use/MeasurementException.html new file mode 100644 index 00000000..e107c393 --- /dev/null +++ b/docs/apidocs/javax/measure/class-use/MeasurementException.html @@ -0,0 +1,112 @@ + + + + +Uses of Class javax.measure.MeasurementException (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
javax.measure.MeasurementException

+
+
Packages that use MeasurementException
+
+
Package
+
Description
+ +
+
Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
+
+ +
+
[OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/class-use/MetricPrefix.html b/docs/apidocs/javax/measure/class-use/MetricPrefix.html new file mode 100644 index 00000000..7ee2e241 --- /dev/null +++ b/docs/apidocs/javax/measure/class-use/MetricPrefix.html @@ -0,0 +1,98 @@ + + + + +Uses of Enum javax.measure.MetricPrefix (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Enum
javax.measure.MetricPrefix

+
+
Packages that use MetricPrefix
+
+
Package
+
Description
+ +
+
Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/class-use/Prefix.html b/docs/apidocs/javax/measure/class-use/Prefix.html new file mode 100644 index 00000000..0f28827a --- /dev/null +++ b/docs/apidocs/javax/measure/class-use/Prefix.html @@ -0,0 +1,129 @@ + + + + +Uses of Interface javax.measure.Prefix (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.Prefix

+
+
Packages that use Prefix
+
+
Package
+
Description
+ +
+
Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
+
+ +
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+
+
    +
  • +
    +

    Uses of Prefix in javax.measure

    +
    Classes in javax.measure that implement Prefix
    +
    +
    Modifier and Type
    +
    Class
    +
    Description
    +
    enum 
    + +
    +
    Provides support for common binary prefixes to be used by units.
    +
    +
    enum 
    + +
    +
    Provides support for the 24 prefixes used in the metric system (decimal multiples and submultiples of units).
    +
    +
    +
    Methods in javax.measure with parameters of type Prefix
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + +
    Unit.prefix(Prefix prefix)
    +
    +
    Returns a new unit equal to this unit prefixed by the specified prefix.
    +
    +
    +
    +
  • +
  • +
    +

    Uses of Prefix in javax.measure.spi

    +
    Methods in javax.measure.spi with type parameters of type Prefix
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    default <P extends Prefix>
    Set<P>
    +
    SystemOfUnitsService.getPrefixes(Class<P> prefixType)
    +
    +
    Returns a Set containing the values of a particular Prefix + type.
    +
    +
    +
    +
  • +
+
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/class-use/Quantity.Scale.html b/docs/apidocs/javax/measure/class-use/Quantity.Scale.html new file mode 100644 index 00000000..e8258c16 --- /dev/null +++ b/docs/apidocs/javax/measure/class-use/Quantity.Scale.html @@ -0,0 +1,125 @@ + + + + +Uses of Enum javax.measure.Quantity.Scale (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Enum
javax.measure.Quantity.Scale

+
+
Packages that use Quantity.Scale
+
+
Package
+
Description
+ +
+
Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
+
+ +
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/class-use/Quantity.html b/docs/apidocs/javax/measure/class-use/Quantity.html new file mode 100644 index 00000000..e3b8ea7c --- /dev/null +++ b/docs/apidocs/javax/measure/class-use/Quantity.html @@ -0,0 +1,662 @@ + + + + +Uses of Interface javax.measure.Quantity (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.Quantity

+
+
Packages that use Quantity
+
+
Package
+
Description
+ +
+
Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
+
+ +
+
[OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
+
+ +
+
[OPTIONAL] Provides quantitative properties or attributes of thing such as + mass, time, distance, heat, and angular separation.
+
+ +
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+
+
    +
  • +
    +

    Uses of Quantity in javax.measure

    +
    Classes in javax.measure with type parameters of type Quantity
    +
    +
    Modifier and Type
    +
    Interface
    +
    Description
    +
    interface 
    +
    Quantity<Q extends Quantity<Q>>
    +
    +
    Represents a quantitative property of a phenomenon, body, or substance, that + can be quantified by measurement.
    +
    +
    interface 
    +
    Unit<Q extends Quantity<Q>>
    +
    +
    Represents a determinate quantity (as of length, time, heat, or value) adopted as a standard of measurement.
    +
    +
    +
    Methods in javax.measure with type parameters of type Quantity
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    <T extends Quantity<T>>
    Quantity<T>
    +
    Quantity.asType(Class<T> type)
    +
    +
    Casts this quantity to a parameterized unit of specified nature or throw a + ClassCastException if the dimension of the specified quantity + and this measure unit's dimension do not match.
    +
    +
    <T extends Quantity<T>>
    Unit<T>
    +
    Unit.asType(Class<T> type)
    +
    +
    Casts this unit to a parameterized unit of specified nature or throw a ClassCastException if the dimension of the specified quantity and + this unit's dimension do not match.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.ATTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-18
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.CENTI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-2
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.DECA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 101
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.DECI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-1
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.DEKA(Unit<Q> unit)
    +
    +
    US alias for DECA.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.EXA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1018
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.EXBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10246 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.FEMTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-15
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.GIBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10243 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.GIGA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 109
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.HECTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 102
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.KIBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1024 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.KILO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 103
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.MEBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10242 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.MEGA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 106
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.MICRO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-6
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.MILLI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-3
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.NANO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-9
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.PEBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10245 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.PETA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1015
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.PICO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-12
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.QUECTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-30
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.QUETTA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1030
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.RONNA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1027
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.RONTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-27
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.TEBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10244 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.TERA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1012
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.YOBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10248 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.YOCTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-24
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.YOTTA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1024
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.ZEBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10247 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.ZEPTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-21
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.ZETTA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1021
    +
    +
    +
    Methods in javax.measure that return Quantity
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + +
    Quantity.add(Quantity<Q> addend)
    +
    +
    Returns the sum of this Quantity with the one specified.
    +
    +
    <T extends Quantity<T>>
    Quantity<T>
    +
    Quantity.asType(Class<T> type)
    +
    +
    Casts this quantity to a parameterized unit of specified nature or throw a + ClassCastException if the dimension of the specified quantity + and this measure unit's dimension do not match.
    +
    + +
    Quantity.divide(Number divisor)
    +
    +
    Returns the quotient of this Quantity divided by the Number + specified.
    +
    + +
    Quantity.divide(Quantity<?> divisor)
    +
    +
    Returns the quotient of this Quantity divided by the Quantity + specified.
    +
    + +
    Quantity.inverse()
    +
    +
    Returns a Quantity that is the multiplicative inverse of this + Quantity, having reciprocal value and reciprocal unit as given by + this.getUnit().inverse().
    +
    + +
    Quantity.multiply(Number multiplicand)
    +
    +
    Returns the product of this Quantity with the Number value + specified.
    +
    + +
    Quantity.multiply(Quantity<?> multiplicand)
    +
    +
    Returns the product of this Quantity with the one specified.
    +
    + +
    Quantity.negate()
    +
    +
    Returns a Quantity whose value is (-this.getValue()).
    +
    + +
    Quantity.subtract(Quantity<Q> subtrahend)
    +
    +
    Returns the difference between this Quantity and the one specified.
    +
    + +
    Quantity.to(Unit<Q> unit)
    +
    +
    Returns this Quantity converted into another (compatible) + Unit.
    +
    +
    default Quantity<Q>
    +
    Quantity.toSystemUnit()
    +
    +
    Convenient method equivalent to to(getUnit().toSystemUnit()).
    +
    +
    +
    Methods in javax.measure with parameters of type Quantity
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + +
    Quantity.add(Quantity<Q> addend)
    +
    +
    Returns the sum of this Quantity with the one specified.
    +
    + +
    Quantity.divide(Quantity<?> divisor)
    +
    +
    Returns the quotient of this Quantity divided by the Quantity + specified.
    +
    +
    boolean
    +
    Quantity.isEquivalentTo(Quantity<Q> that)
    +
    +
    Compares two instances of Quantity <Q>, performing the conversion of units if necessary.
    +
    + +
    Quantity.multiply(Quantity<?> multiplicand)
    +
    +
    Returns the product of this Quantity with the one specified.
    +
    + +
    Quantity.subtract(Quantity<Q> subtrahend)
    +
    +
    Returns the difference between this Quantity and the one specified.
    +
    +
    +
    +
  • +
  • +
    +

    Uses of Quantity in javax.measure.format

    +
    Methods in javax.measure.format that return Quantity
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + +
    QuantityFormat.parse(CharSequence csq)
    +
    +
    Parses the specified CharSequence to produce a Quantity.
    +
    + +
    QuantityFormat.parse(CharSequence csq, + ParsePosition pos)
    +
    +
    Parses a portion of the specified CharSequence from the specified position to produce a Quantity.
    +
    +
    +
    Methods in javax.measure.format with parameters of type Quantity
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + +
    QuantityFormat.format(Quantity<?> quantity)
    +
    +
    Formats the specified Quantity.
    +
    + +
    QuantityFormat.format(Quantity<?> quantity, + Appendable destination)
    +
    +
    Formats the specified quantity into an Appendable.
    +
    +
    +
    +
  • +
  • +
    +

    Uses of Quantity in javax.measure.quantity

    +
    Subinterfaces of Quantity in javax.measure.quantity
    +
    +
    Modifier and Type
    +
    Interface
    +
    Description
    +
    interface 
    + +
    +
    Rate of change of velocity with respect to time.
    +
    +
    interface 
    + +
    +
    Number of elementary entities (molecules, for example) of a substance.
    +
    +
    interface 
    + +
    +
    Figure formed by two lines diverging from a common point.
    +
    +
    interface 
    + +
    +
    Extent of a planar region or of the surface of a solid measured in square units.
    +
    +
    interface 
    + +
    +
    Catalytic activity.
    +
    +
    interface 
    + +
    +
    Dimensionless quantity.
    +
    +
    interface 
    + +
    +
    Electric capacitance.
    +
    +
    interface 
    + +
    +
    Electric charge.
    +
    +
    interface 
    + +
    +
    Electric conductance.
    +
    +
    interface 
    + +
    +
    Amount of electric charge flowing past a specified circuit point per unit time.
    +
    +
    interface 
    + +
    +
    Electric inductance.
    +
    +
    interface 
    + +
    +
    Electric potential or electromotive force.
    +
    +
    interface 
    + +
    +
    Electric resistance.
    +
    +
    interface 
    + +
    +
    Capacity of a physical system to do work.
    +
    +
    interface 
    + +
    +
    Quantity that tends to produce an acceleration of a body in the direction of its application.
    +
    +
    interface 
    + +
    +
    Number of times a specified phenomenon occurs within a specified interval.
    +
    +
    interface 
    + +
    +
    Illuminance.
    +
    +
    interface 
    + +
    +
    Extent of something along its greatest dimension or the extent of space between two objects or places.
    +
    +
    interface 
    + +
    +
    Luminous flux.
    +
    +
    interface 
    + +
    +
    Luminous flux density per solid angle as measured in a given direction relative to the emitting source.
    +
    +
    interface 
    + +
    +
    Magnetic flux.
    +
    +
    interface 
    + +
    +
    Magnetic flux density.
    +
    +
    interface 
    + +
    +
    Measure of the quantity of matter that a body or an object contains.
    +
    +
    interface 
    + +
    +
    Rate at which work is done.
    +
    +
    interface 
    + +
    +
    Force applied uniformly over a surface.
    +
    +
    interface 
    + +
    +
    Amount of energy deposited per unit of mass.
    +
    +
    interface 
    + +
    +
    Effective (or "equivalent") dose of radiation received by a human or some other living organism.
    +
    +
    interface 
    + +
    +
    Radioactive activity.
    +
    +
    interface 
    + +
    +
    Angle formed by three or more planes intersecting at a common point.
    +
    +
    interface 
    + +
    +
    Distance traveled divided by the time of travel.
    +
    +
    interface 
    + +
    +
    Degree of hotness or coldness of a body or an environment.
    +
    +
    interface 
    + +
    +
    Period of existence or persistence.
    +
    +
    interface 
    + +
    +
    Amount of space occupied by a three-dimensional object or region of space.
    +
    +
    +
    +
  • +
  • +
    +

    Uses of Quantity in javax.measure.spi

    +
    Classes in javax.measure.spi with type parameters of type Quantity
    +
    +
    Modifier and Type
    +
    Interface
    +
    Description
    +
    interface 
    + +
    +
    Represents a factory that accepts Number and Unit arguments to create Quantity results.
    +
    +
    +
    Methods in javax.measure.spi with type parameters of type Quantity
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    abstract <Q extends Quantity<Q>>
    QuantityFactory<Q>
    +
    ServiceProvider.getQuantityFactory(Class<Q> quantity)
    +
    +
    Returns a factory for the given Quantity type.
    +
    +
    <Q extends Quantity<Q>>
    Unit<Q>
    +
    SystemOfUnits.getUnit(Class<Q> quantityType)
    +
    +
    Returns the default unit for the specified quantity or null if none is defined for the given quantity in this unit system.
    +
    +
    +
    Methods in javax.measure.spi that return Quantity
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + +
    QuantityFactory.create(Number value, + Unit<Q> unit)
    +
    +
    Returns the quantity for the specified number stated in the specified unit.
    +
    + +
    QuantityFactory.create(Number value, + Unit<Q> unit, + Quantity.Scale scale)
    +
    +
    Returns the quantity for the specified number stated in the specified unit and scale.
    +
    +
    +
    +
  • +
+
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/class-use/UnconvertibleException.html b/docs/apidocs/javax/measure/class-use/UnconvertibleException.html new file mode 100644 index 00000000..9b9452bb --- /dev/null +++ b/docs/apidocs/javax/measure/class-use/UnconvertibleException.html @@ -0,0 +1,97 @@ + + + + +Uses of Class javax.measure.UnconvertibleException (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
javax.measure.UnconvertibleException

+
+
Packages that use UnconvertibleException
+
+
Package
+
Description
+ +
+
Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/class-use/Unit.html b/docs/apidocs/javax/measure/class-use/Unit.html new file mode 100644 index 00000000..327b1717 --- /dev/null +++ b/docs/apidocs/javax/measure/class-use/Unit.html @@ -0,0 +1,672 @@ + + + + +Uses of Interface javax.measure.Unit (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.Unit

+
+
Packages that use Unit
+
+
Package
+
Description
+ +
+
Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
+
+ +
+
[OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
+
+ +
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+
+
    +
  • +
    +

    Uses of Unit in javax.measure

    +
    Methods in javax.measure that return Unit
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + +
    Unit.alternate(String symbol)
    +
    +
    Returns a system unit equivalent to this unscaled standard unit but used in expressions to distinguish between quantities of a different nature + but of the same dimensions.
    +
    +
    <T extends Quantity<T>>
    Unit<T>
    +
    Unit.asType(Class<T> type)
    +
    +
    Casts this unit to a parameterized unit of specified nature or throw a ClassCastException if the dimension of the specified quantity and + this unit's dimension do not match.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.ATTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-18
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.CENTI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-2
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.DECA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 101
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.DECI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-1
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.DEKA(Unit<Q> unit)
    +
    +
    US alias for DECA.
    +
    + +
    Unit.divide(double divisor)
    +
    +
    Returns the result of dividing this unit by an approximate divisor.
    +
    + +
    Unit.divide(Number divisor)
    +
    +
    Returns the result of dividing this unit by a divisor.
    +
    +
    Unit<?>
    +
    Unit.divide(Unit<?> divisor)
    +
    +
    Returns the quotient of this unit with the one specified.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.EXA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1018
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.EXBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10246 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.FEMTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-15
    +
    + + +
    +
    Returns the unscaled system unit from which this unit is derived.
    +
    + +
    Quantity.getUnit()
    +
    +
    Returns the unit of this Quantity.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.GIBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10243 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.GIGA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 109
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.HECTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 102
    +
    +
    Unit<?>
    +
    Unit.inverse()
    +
    +
    Returns the reciprocal (multiplicative inverse) of this unit.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.KIBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1024 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.KILO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 103
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.MEBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10242 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.MEGA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 106
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.MICRO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-6
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.MILLI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-3
    +
    + +
    Unit.multiply(double multiplier)
    +
    +
    Returns the result of multiplying this unit by the specified factor.
    +
    + +
    Unit.multiply(Number multiplier)
    +
    +
    Returns the result of multiplying this unit by the specified factor.
    +
    +
    Unit<?>
    +
    Unit.multiply(Unit<?> multiplier)
    +
    +
    Returns the product of this unit with the one specified.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.NANO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-9
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.PEBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10245 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.PETA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1015
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.PICO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-12
    +
    +
    Unit<?>
    +
    Unit.pow(int n)
    +
    +
    Returns an unit raised to the n-th (integer) power of this unit.
    +
    + +
    Unit.prefix(Prefix prefix)
    +
    +
    Returns a new unit equal to this unit prefixed by the specified prefix.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.QUECTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-30
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.QUETTA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1030
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.RONNA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1027
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.RONTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-27
    +
    +
    Unit<?>
    +
    Unit.root(int n)
    +
    +
    Returns an unit that is the n-th (integer) root of this unit.
    +
    + +
    Unit.shift(double offset)
    +
    +
    Returns the result of setting the origin of the scale of measurement to the given value.
    +
    + +
    Unit.shift(Number offset)
    +
    +
    Returns the result of setting the origin of the scale of measurement to the given value.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.TEBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10244 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.TERA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1012
    +
    + +
    Unit.transform(UnitConverter operation)
    +
    +
    Returns the unit derived from this unit using the specified converter.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.YOBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10248 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.YOCTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-24
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.YOTTA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1024
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.ZEBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10247 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.ZEPTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-21
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.ZETTA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1021
    +
    +
    +
    Methods in javax.measure that return types with arguments of type Unit
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    Map<? extends Unit<?>,Integer>
    + +
    +
    Returns the base units and their exponent whose product is this unit, or null if this unit is a base unit (not a product of existing + units).
    +
    +
    +
    Methods in javax.measure with parameters of type Unit
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.ATTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-18
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.CENTI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-2
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.DECA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 101
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.DECI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-1
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.DEKA(Unit<Q> unit)
    +
    +
    US alias for DECA.
    +
    +
    Unit<?>
    +
    Unit.divide(Unit<?> divisor)
    +
    +
    Returns the quotient of this unit with the one specified.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.EXA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1018
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.EXBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10246 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.FEMTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-15
    +
    + +
    Unit.getConverterTo(Unit<Q> that)
    +
    +
    Returns a converter of numeric values from this unit to another unit of same type.
    +
    + +
    Unit.getConverterToAny(Unit<?> that)
    +
    +
    Returns a converter from this unit to the specified unit of type unknown.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.GIBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10243 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.GIGA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 109
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.HECTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 102
    +
    +
    boolean
    +
    Unit.isCompatible(Unit<?> that)
    +
    +
    Indicates if this unit is compatible with the unit specified.
    +
    +
    boolean
    +
    Unit.isEquivalentTo(Unit<Q> that)
    +
    +
    Indicates if this unit represents the same quantity than the given unit, ignoring name and symbols.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.KIBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1024 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.KILO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 103
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.MEBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10242 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.MEGA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 106
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.MICRO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-6
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.MILLI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-3
    +
    +
    Unit<?>
    +
    Unit.multiply(Unit<?> multiplier)
    +
    +
    Returns the product of this unit with the one specified.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.NANO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-9
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.PEBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10245 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.PETA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1015
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.PICO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-12
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.QUECTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-30
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.QUETTA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1030
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.RONNA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1027
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.RONTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-27
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.TEBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10244 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.TERA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1012
    +
    + +
    Quantity.to(Unit<Q> unit)
    +
    +
    Returns this Quantity converted into another (compatible) + Unit.
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.YOBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10248 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.YOCTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-24
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.YOTTA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1024
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    BinaryPrefix.ZEBI(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10247 (binary prefix).
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.ZEPTO(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 10-21
    +
    +
    static <Q extends Quantity<Q>>
    Unit<Q>
    +
    MetricPrefix.ZETTA(Unit<Q> unit)
    +
    +
    Returns the specified unit multiplied by the factor 1021
    +
    +
    +
    +
  • +
  • +
    +

    Uses of Unit in javax.measure.format

    +
    Methods in javax.measure.format that return Unit
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    Unit<?>
    +
    UnitFormat.parse(CharSequence csq)
    +
    +
    Parses the text into an instance of Unit.
    +
    +
    Unit<?>
    +
    UnitFormat.parse(CharSequence csq, + ParsePosition pos)
    +
    +
    Parses a portion of the specified CharSequence from the specified position to produce a Unit.
    +
    +
    +
    Methods in javax.measure.format with parameters of type Unit
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + +
    UnitFormat.format(Unit<?> unit)
    +
    +
    Formats the specified Unit.
    +
    + +
    UnitFormat.format(Unit<?> unit, + Appendable appendable)
    +
    +
    Formats the specified Unit.
    +
    +
    void
    +
    UnitFormat.label(Unit<?> unit, + String label)
    +
    +
    Attaches a system-wide label to the specified Unit.
    +
    +
    +
    +
  • +
  • +
    +

    Uses of Unit in javax.measure.spi

    +
    Methods in javax.measure.spi that return Unit
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + +
    QuantityFactory.getSystemUnit()
    +
    +
    Returns the system unit for quantities produced by this factory or null if unknown.
    +
    +
    <Q extends Quantity<Q>>
    Unit<Q>
    +
    SystemOfUnits.getUnit(Class<Q> quantityType)
    +
    +
    Returns the default unit for the specified quantity or null if none is defined for the given quantity in this unit system.
    +
    +
    Unit<?>
    +
    SystemOfUnits.getUnit(String string)
    +
    +
    Returns a unit with the given string representation or null if none is found in this unit system.
    +
    +
    +
    Methods in javax.measure.spi that return types with arguments of type Unit
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    Set<? extends Unit<?>>
    +
    SystemOfUnits.getUnits()
    +
    +
    Returns a read only view over the units explicitly defined by this system.
    +
    +
    Set<? extends Unit<?>>
    +
    SystemOfUnits.getUnits(Dimension dimension)
    +
    +
    Returns the units defined in this system having the specified dimension (convenience method).
    +
    +
    +
    Methods in javax.measure.spi with parameters of type Unit
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + +
    QuantityFactory.create(Number value, + Unit<Q> unit)
    +
    +
    Returns the quantity for the specified number stated in the specified unit.
    +
    + +
    QuantityFactory.create(Number value, + Unit<Q> unit, + Quantity.Scale scale)
    +
    +
    Returns the quantity for the specified number stated in the specified unit and scale.
    +
    +
    +
    +
  • +
+
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/class-use/UnitConverter.html b/docs/apidocs/javax/measure/class-use/UnitConverter.html new file mode 100644 index 00000000..91afed68 --- /dev/null +++ b/docs/apidocs/javax/measure/class-use/UnitConverter.html @@ -0,0 +1,135 @@ + + + + +Uses of Interface javax.measure.UnitConverter (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.UnitConverter

+
+
Packages that use UnitConverter
+
+
Package
+
Description
+ +
+
Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/format/MeasurementParseException.html b/docs/apidocs/javax/measure/format/MeasurementParseException.html new file mode 100644 index 00000000..bf44e305 --- /dev/null +++ b/docs/apidocs/javax/measure/format/MeasurementParseException.html @@ -0,0 +1,281 @@ + + + + +MeasurementParseException (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class MeasurementParseException

+
+ +
+
+
All Implemented Interfaces:
+
Serializable
+
+
+ +
Signals that an error has been reached unexpectedly while parsing.
+
+
Since:
+
2.0
+
Version:
+
1.1, March 27, 2018
+
Author:
+
Werner Keil
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      MeasurementParseException

      +
      public MeasurementParseException(String message, + CharSequence parsedData, + int position)
      +
      Constructs a MeasurementParseException with the specified detail message, parsed text and index. A detail message is a String that describes + this particular exception.
      +
      +
      Parameters:
      +
      message - the detail message
      +
      parsedData - the parsed text, should not be null
      +
      position - the position where the error was found while parsing.
      +
      +
      +
    • +
    • +
      +

      MeasurementParseException

      +
      public MeasurementParseException(CharSequence parsedData, + int position)
      +
      Constructs a MeasurementParseException with the parsed text and offset. A detail message is a String that describes this particular exception.
      +
      +
      Parameters:
      +
      parsedData - the parsed text, should not be null
      +
      position - the position where the error is found while parsing.
      +
      +
      +
    • +
    • +
      +

      MeasurementParseException

      + +
      Constructs a MeasurementParseException with the specified cause.
      +
      +
      Parameters:
      +
      cause - the root cause
      +
      +
      +
    • +
    • +
      +

      MeasurementParseException

      + +
      Constructs a MeasurementParseException with the specified detail message.
      +
      +
      Parameters:
      +
      message - the detail message
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getPosition

      +
      public int getPosition()
      +
      Returns the position where the error was found.
      +
      +
      Returns:
      +
      the position of the error
      +
      +
      +
    • +
    • +
      +

      getParsedString

      + +
      Returns the string that was being parsed.
      +
      +
      Returns:
      +
      the parsed string, or null, if null was passed as input.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/format/QuantityFormat.html b/docs/apidocs/javax/measure/format/QuantityFormat.html new file mode 100644 index 00000000..72d24d8e --- /dev/null +++ b/docs/apidocs/javax/measure/format/QuantityFormat.html @@ -0,0 +1,256 @@ + + + + +QuantityFormat (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface QuantityFormat

+
+
+
+
public interface QuantityFormat
+
Formats instances of Quantity. + +
+
Synchronization
+
+ Instances of this class are not required to be thread-safe. It is recommended to use separate format instances for each thread. If multiple threads + access a format concurrently, it must be synchronized externally.
+
+
Since:
+
2.0
+
Version:
+
1.1, 20 May, 2023
+
Author:
+
Werner Keil, Thodoris Bais
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      format

      +
      Appendable format(Quantity<?> quantity, + Appendable destination) + throws IOException
      +
      Formats the specified quantity into an Appendable.
      +
      +
      Parameters:
      +
      quantity - the quantity to format.
      +
      destination - the appendable destination.
      +
      Returns:
      +
      the specified Appendable.
      +
      Throws:
      +
      IOException - if an I/O exception occurs.
      +
      +
      +
    • +
    • +
      +

      format

      +
      String format(Quantity<?> quantity)
      +
      Formats the specified Quantity.
      +
      +
      Parameters:
      +
      quantity - the Quantity to format, not null
      +
      Returns:
      +
      the string representation using the settings of this QuantityFormat.
      +
      +
      +
    • +
    • +
      +

      parse

      + +
      Parses a portion of the specified CharSequence from the specified position to produce a Quantity. + If parsing succeeds, then the index of the pos argument is updated to the index after the last character used.
      +
      +
      Parameters:
      +
      csq - the CharSequence to parse.
      +
      pos - a ParsePosition object holding the current parsing index and error parsing index information as described above.
      +
      Returns:
      +
      the quantity parsed from the specified character sub-sequence.
      +
      Throws:
      +
      MeasurementParseException - if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
      +
      +
      +
    • +
    • +
      +

      parse

      + +
      Parses the specified CharSequence to produce a Quantity. +

      + The parse must complete normally and parse the entire text. If the parse completes without reading the entire length of the text, an exception + is thrown. If any other problem occurs during parsing, an exception is thrown. +

      +
      +
      Parameters:
      +
      csq - the CharSequence to parse.
      +
      Returns:
      +
      the quantity parsed from the specified character sub-sequence.
      +
      Throws:
      +
      MeasurementParseException - if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
      +
      +
      +
    • +
    • +
      +

      isLocaleSensitive

      +
      default boolean isLocaleSensitive()
      +
      Returns true if this QuantityFormat depends on a Locale to perform its tasks. +

      + In environments that do not support a Locale, e.g. Java ME, this usually returns false. +

      +
      +
      Returns:
      +
      whether this format depends on the locale.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/format/UnitFormat.html b/docs/apidocs/javax/measure/format/UnitFormat.html new file mode 100644 index 00000000..89fb2949 --- /dev/null +++ b/docs/apidocs/javax/measure/format/UnitFormat.html @@ -0,0 +1,299 @@ + + + + +UnitFormat (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface UnitFormat

+
+
+
+
public interface UnitFormat
+
Formats instances of Unit to a String or Appendable and parses a CharSequence to a Unit. + +
+
Synchronization
+
+

+ Instances of this class are not required to be thread-safe. It is recommended to use separate format instances for each thread. If multiple threads + access a format concurrently, it must be synchronized externally. +

+
+
Since:
+
1.0
+
Version:
+
2.2, May 20, 2023
+
Author:
+
Jean-Marie Dautelle, Werner Keil
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      format

      +
      Appendable format(Unit<?> unit, + Appendable appendable) + throws IOException
      +
      Formats the specified Unit.
      +
      +
      Parameters:
      +
      unit - the Unit to format, not null
      +
      appendable - the appendable destination.
      +
      Returns:
      +
      the appendable destination passed in with formatted text appended.
      +
      Throws:
      +
      IOException - if an error occurs while writing to the destination.
      +
      +
      +
    • +
    • +
      +

      format

      +
      String format(Unit<?> unit)
      +
      Formats the specified Unit.
      +
      +
      Parameters:
      +
      unit - the Unit to format, not null
      +
      Returns:
      +
      the string representation using the settings of this UnitFormat.
      +
      +
      +
    • +
    • +
      +

      label

      +
      void label(Unit<?> unit, + String label)
      +
      Attaches a system-wide label to the specified Unit. +

      + This method overrides the previous unit's label (e.g. label from unit database or unit system) as units may only have one label. Depending on the + UnitFormat implementation, this call may be ignored if the particular unit already has a label. +

      + If a UnitFormat implementation is explicitly immutable, similar to e.g. the result of Collections.unmodifiableList(), + then an UnsupportedOperationException may be thrown upon this call. +

      + Since UnitFormat implementations often apply the Singleton pattern, system-wide means, the label applies to every instance of + UnitFormatA implementing UnitFormat in this case, but not every instance of UnitFormatB or UnitFormatC both + also implementing UnitFormat. If a UnitFormat #isLocaleSensitive() it is up to the implementation, whether the label is + ignored, applied in a local-neutral manner (in addition to its local-sensitive information) or locale-specific. +

      +
      +
      Parameters:
      +
      unit - the unit being labeled.
      +
      label - the new label for this unit.
      +
      Throws:
      +
      IllegalArgumentException - if the label is not a valid identifier. This may include characters not supported by a particular UnitFormat implementation + (e.g. only ASCII characters for certain devices)
      +
      UnsupportedOperationException - if the label operation is not supported by this UnitFormat
      +
      +
      +
    • +
    • +
      +

      isLocaleSensitive

      +
      default boolean isLocaleSensitive()
      +
      Returns true if this UnitFormat depends on a Locale to perform its tasks. +

      + In environments that do not support a Locale, e.g. Java ME, this usually returns false. +

      +
      +
      Returns:
      +
      Whether this format depends on a locale.
      +
      +
      +
    • +
    • +
      +

      parse

      + +
      Parses a portion of the specified CharSequence from the specified position to produce a Unit. + If parsing succeeds, then the index of the pos argument is updated to the index after the last character used.
      +
      +
      Parameters:
      +
      csq - the CharSequence to parse.
      +
      pos - a ParsePosition object holding the current parsing index and error parsing index information as described above.
      +
      Returns:
      +
      the unit parsed from the specified character sub-sequence.
      +
      Throws:
      +
      MeasurementParseException - if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
      +
      Since:
      +
      2.0
      +
      +
      +
    • +
    • +
      +

      parse

      + +
      Parses the text into an instance of Unit. +

      + The parse must complete normally and parse the entire text. If the parse completes without reading the entire length of the text, an exception + is thrown. If any other problem occurs during parsing, an exception is thrown. +

      +
      +
      Parameters:
      +
      csq - the CharSequence to parse.
      +
      Returns:
      +
      the unit parsed from the specified character sequence.
      +
      Throws:
      +
      MeasurementParseException - if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
      +
      UnsupportedOperationException - if the UnitFormat is unable to parse.
      +
      Since:
      +
      2.0
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/format/class-use/MeasurementParseException.html b/docs/apidocs/javax/measure/format/class-use/MeasurementParseException.html new file mode 100644 index 00000000..8c4e6cbe --- /dev/null +++ b/docs/apidocs/javax/measure/format/class-use/MeasurementParseException.html @@ -0,0 +1,108 @@ + + + + +Uses of Class javax.measure.format.MeasurementParseException (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
javax.measure.format.MeasurementParseException

+
+
Packages that use MeasurementParseException
+
+
Package
+
Description
+ +
+
[OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/format/class-use/QuantityFormat.html b/docs/apidocs/javax/measure/format/class-use/QuantityFormat.html new file mode 100644 index 00000000..4593b3c5 --- /dev/null +++ b/docs/apidocs/javax/measure/format/class-use/QuantityFormat.html @@ -0,0 +1,96 @@ + + + + +Uses of Interface javax.measure.format.QuantityFormat (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.format.QuantityFormat

+
+
Packages that use QuantityFormat
+
+
Package
+
Description
+ +
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/format/class-use/UnitFormat.html b/docs/apidocs/javax/measure/format/class-use/UnitFormat.html new file mode 100644 index 00000000..38d99607 --- /dev/null +++ b/docs/apidocs/javax/measure/format/class-use/UnitFormat.html @@ -0,0 +1,102 @@ + + + + +Uses of Interface javax.measure.format.UnitFormat (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.format.UnitFormat

+
+
Packages that use UnitFormat
+
+
Package
+
Description
+ +
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/format/package-summary.html b/docs/apidocs/javax/measure/format/package-summary.html new file mode 100644 index 00000000..7312cace --- /dev/null +++ b/docs/apidocs/javax/measure/format/package-summary.html @@ -0,0 +1,138 @@ + + + + +javax.measure.format (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+
+

Package javax.measure.format

+
+
+
package javax.measure.format
+
+
[OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
+
+
Since:
+
1.0
+
Version:
+
2.0, July 7, 2019
+
Author:
+
Werner Keil
+
+
+
+
    +
  • + +
  • +
  • +
    +
    +
    +
    +
    Class
    +
    Description
    + +
    +
    Signals that an error has been reached unexpectedly while parsing.
    +
    + +
    +
    Formats instances of Quantity.
    +
    + +
    +
    Formats instances of Unit to a String or Appendable and parses a CharSequence to a Unit.
    +
    +
    +
    +
    +
  • +
+
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/format/package-tree.html b/docs/apidocs/javax/measure/format/package-tree.html new file mode 100644 index 00000000..1c61b96b --- /dev/null +++ b/docs/apidocs/javax/measure/format/package-tree.html @@ -0,0 +1,99 @@ + + + + +javax.measure.format Class Hierarchy (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package javax.measure.format

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/format/package-use.html b/docs/apidocs/javax/measure/format/package-use.html new file mode 100644 index 00000000..98b743bb --- /dev/null +++ b/docs/apidocs/javax/measure/format/package-use.html @@ -0,0 +1,109 @@ + + + + +Uses of Package javax.measure.format (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
javax.measure.format

+
+
Packages that use javax.measure.format
+
+
Package
+
Description
+ +
+
[OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
+
+ +
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/package-summary.html b/docs/apidocs/javax/measure/package-summary.html new file mode 100644 index 00000000..0790a747 --- /dev/null +++ b/docs/apidocs/javax/measure/package-summary.html @@ -0,0 +1,178 @@ + + + + +javax.measure (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+
+

Package javax.measure

+
+
+
package javax.measure
+
+
Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units. + +

The core interfaces of this package are Dimension, Prefix, Quantity and Unit.

+

The package also contains the most common Prefix implementations MetricPrefix and BinaryPrefix.

+
+
Since:
+
1.0
+
Version:
+
1.7, February 4, 2019
+
Author:
+
Jean-Marie Dautelle, Werner Keil, Otávio Gonçalves de Santana
+
+
+
+
    +
  • + +
  • +
  • +
    +
    +
    +
    +
    Class
    +
    Description
    + +
    +
    Provides support for common binary prefixes to be used by units.
    +
    + +
    +
    Represents the dimension of a unit.
    +
    + +
    +
    Signals that a problem of some sort has occurred due to incommensurable of some quantities/units.
    +
    + +
    +
    This error is used to indicate serious problems with creating, retrieving and manipulating units of measurement objects.
    +
    + +
    +
    Exception used to indicate a problem while dealing with units of measurement.
    +
    + +
    +
    Provides support for the 24 prefixes used in the metric system (decimal multiples and submultiples of units).
    +
    + +
    +
    A unit prefix is a specifier or mnemonic that is prepended to units of measurement to indicate multiples or fractions of the units.
    +
    +
    Quantity<Q extends Quantity<Q>>
    +
    +
    Represents a quantitative property of a phenomenon, body, or substance, that + can be quantified by measurement.
    +
    + +
    +
    The scale of a Quantity, either ABSOLUTE or RELATIVE.
    +
    + +
    +
    Signals that a problem of some sort has occurred due to the impossibility of constructing a converter between two units.
    +
    +
    Unit<Q extends Quantity<Q>>
    +
    +
    Represents a determinate quantity (as of length, time, heat, or value) adopted as a standard of measurement.
    +
    + +
    +
    A converter of numeric values between different units.
    +
    +
    +
    +
    +
  • +
+
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/package-tree.html b/docs/apidocs/javax/measure/package-tree.html new file mode 100644 index 00000000..97f0e14d --- /dev/null +++ b/docs/apidocs/javax/measure/package-tree.html @@ -0,0 +1,124 @@ + + + + +javax.measure Class Hierarchy (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package javax.measure

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+

Enum Hierarchy

+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/package-use.html b/docs/apidocs/javax/measure/package-use.html new file mode 100644 index 00000000..a9f7675a --- /dev/null +++ b/docs/apidocs/javax/measure/package-use.html @@ -0,0 +1,209 @@ + + + + +Uses of Package javax.measure (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
javax.measure

+
+
Packages that use javax.measure
+
+
Package
+
Description
+ +
+
Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
+
+ +
+
[OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
+
+ +
+
[OPTIONAL] Provides quantitative properties or attributes of thing such as + mass, time, distance, heat, and angular separation.
+
+ +
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+
+
    +
  • +
    +
    Classes in javax.measure used by javax.measure
    +
    +
    Class
    +
    Description
    + +
    +
    Provides support for common binary prefixes to be used by units.
    +
    + +
    +
    Represents the dimension of a unit.
    +
    + +
    +
    Signals that a problem of some sort has occurred due to incommensurable of some quantities/units.
    +
    + +
    +
    Exception used to indicate a problem while dealing with units of measurement.
    +
    + +
    +
    Provides support for the 24 prefixes used in the metric system (decimal multiples and submultiples of units).
    +
    + +
    +
    A unit prefix is a specifier or mnemonic that is prepended to units of measurement to indicate multiples or fractions of the units.
    +
    + +
    +
    Represents a quantitative property of a phenomenon, body, or substance, that + can be quantified by measurement.
    +
    + +
    +
    The scale of a Quantity, either ABSOLUTE or RELATIVE.
    +
    + +
    +
    Signals that a problem of some sort has occurred due to the impossibility of constructing a converter between two units.
    +
    + +
    +
    Represents a determinate quantity (as of length, time, heat, or value) adopted as a standard of measurement.
    +
    + +
    +
    A converter of numeric values between different units.
    +
    +
    +
    +
  • +
  • +
    + +
    +
    Class
    +
    Description
    + +
    +
    Exception used to indicate a problem while dealing with units of measurement.
    +
    + +
    +
    Represents a quantitative property of a phenomenon, body, or substance, that + can be quantified by measurement.
    +
    + +
    +
    Represents a determinate quantity (as of length, time, heat, or value) adopted as a standard of measurement.
    +
    +
    +
    +
  • +
  • +
    + +
    +
    Class
    +
    Description
    + +
    +
    Represents a quantitative property of a phenomenon, body, or substance, that + can be quantified by measurement.
    +
    +
    +
    +
  • +
  • +
    +
    Classes in javax.measure used by javax.measure.spi
    +
    +
    Class
    +
    Description
    + +
    +
    Represents the dimension of a unit.
    +
    + +
    +
    A unit prefix is a specifier or mnemonic that is prepended to units of measurement to indicate multiples or fractions of the units.
    +
    + +
    +
    Represents a quantitative property of a phenomenon, body, or substance, that + can be quantified by measurement.
    +
    + +
    +
    The scale of a Quantity, either ABSOLUTE or RELATIVE.
    +
    + +
    +
    Represents a determinate quantity (as of length, time, heat, or value) adopted as a standard of measurement.
    +
    +
    +
    +
  • +
+
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/Acceleration.html b/docs/apidocs/javax/measure/quantity/Acceleration.html new file mode 100644 index 00000000..9c722c39 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/Acceleration.html @@ -0,0 +1,130 @@ + + + + +Acceleration (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface Acceleration

+
+
+
+
All Superinterfaces:
+
Quantity<Acceleration>
+
+
+
public interface Acceleration +extends Quantity<Acceleration>
+
Rate of change of velocity with respect to time. The metric system unit for this quantity is "m/s²" (metre per square second).
+
+
Since:
+
1.0
+
Version:
+
1.2
+
Author:
+
Jean-Marie Dautelle, Werner Keil
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/AmountOfSubstance.html b/docs/apidocs/javax/measure/quantity/AmountOfSubstance.html new file mode 100644 index 00000000..5da1ebd2 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/AmountOfSubstance.html @@ -0,0 +1,145 @@ + + + + +AmountOfSubstance (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface AmountOfSubstance

+
+
+
+
All Superinterfaces:
+
Quantity<AmountOfSubstance>
+
+
+
public interface AmountOfSubstance +extends Quantity<AmountOfSubstance>
+
Number of elementary entities (molecules, for example) of a substance. The metric system unit for this quantity is "mol" (mole). + + The mole, symbol mol, is the SI unit of amount of substance. One mole contains + exactly 6.022 140 76 × 10²³ elementary entities. This number is the fixed numerical + value of the Avogadro constant, NA, when expressed in the unit mol⁻¹ and is called + the Avogadro number. + + The amount of substance, symbol n, of a system is a measure of the number of + specified elementary entities. An elementary entity may be an atom, a molecule, an + ion, an electron, any other particle or specified group of particles. + This definition implies the exact relation Nₐ = 6.022 140 76 × 10²³ mol⁻¹. + + Inverting this relation gives an exact expression for the mole in terms of the defining constant NA: + + 1 mol = 6.02214076 × 10²³ / Nₐ +
+
+
API Note:
SI Base Unit
+
+
+
Since:
+
1.0
+
Version:
+
2.1
+
Author:
+
Jean-Marie Dautelle, Werner Keil, Thodoris Bais
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/Angle.html b/docs/apidocs/javax/measure/quantity/Angle.html new file mode 100644 index 00000000..35b2f67a --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/Angle.html @@ -0,0 +1,133 @@ + + + + +Angle (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface Angle

+
+
+
+
All Superinterfaces:
+
Quantity<Angle>
+
+
+
public interface Angle +extends Quantity<Angle>
+
Figure formed by two lines diverging from a common point. The metric system unit for this quantity is "rad" (radian). +
+
+
API Note:
SI Derived Unit with special name and symbol
+
+
+
Since:
+
1.0
+
Version:
+
2.0
+
Author:
+
Jean-Marie Dautelle, Werner Keil
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/Area.html b/docs/apidocs/javax/measure/quantity/Area.html new file mode 100644 index 00000000..c5eefb25 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/Area.html @@ -0,0 +1,133 @@ + + + + +Area (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface Area

+
+
+
+
All Superinterfaces:
+
Quantity<Area>
+
+
+
public interface Area +extends Quantity<Area>
+
Extent of a planar region or of the surface of a solid measured in square units. The metric system unit for this quantity is "m²" (square metre). +
+
+
API Note:
SI Derived Unit
+
+
+
Since:
+
1.0
+
Version:
+
2.0
+
Author:
+
Jean-Marie Dautelle, Werner Keil
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/CatalyticActivity.html b/docs/apidocs/javax/measure/quantity/CatalyticActivity.html new file mode 100644 index 00000000..81e0e229 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/CatalyticActivity.html @@ -0,0 +1,121 @@ + + + + +CatalyticActivity (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface CatalyticActivity

+
+
+
+
All Superinterfaces:
+
Quantity<CatalyticActivity>
+
+
+
public interface CatalyticActivity +extends Quantity<CatalyticActivity>
+
Catalytic activity. The metric system unit for this quantity is "kat" (katal).
+
+
Since:
+
1.0
+
Version:
+
1.0
+
Author:
+
Jean-Marie Dautelle
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/Dimensionless.html b/docs/apidocs/javax/measure/quantity/Dimensionless.html new file mode 100644 index 00000000..efccc0e4 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/Dimensionless.html @@ -0,0 +1,121 @@ + + + + +Dimensionless (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface Dimensionless

+
+
+
+
All Superinterfaces:
+
Quantity<Dimensionless>
+
+
+
public interface Dimensionless +extends Quantity<Dimensionless>
+
Dimensionless quantity.
+
+
Since:
+
1.0
+
Version:
+
1.0
+
Author:
+
Jean-Marie Dautelle
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/ElectricCapacitance.html b/docs/apidocs/javax/measure/quantity/ElectricCapacitance.html new file mode 100644 index 00000000..cc08e22d --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/ElectricCapacitance.html @@ -0,0 +1,121 @@ + + + + +ElectricCapacitance (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface ElectricCapacitance

+
+
+
+
All Superinterfaces:
+
Quantity<ElectricCapacitance>
+
+
+ +
Electric capacitance. The metric system unit for this quantity is "F" (Farad).
+
+
Since:
+
1.0
+
Version:
+
1.0
+
Author:
+
Jean-Marie Dautelle
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/ElectricCharge.html b/docs/apidocs/javax/measure/quantity/ElectricCharge.html new file mode 100644 index 00000000..9c3400d4 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/ElectricCharge.html @@ -0,0 +1,127 @@ + + + + +ElectricCharge (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface ElectricCharge

+
+
+
+
All Superinterfaces:
+
Quantity<ElectricCharge>
+
+
+
public interface ElectricCharge +extends Quantity<ElectricCharge>
+
Electric charge. The metric system unit for this quantity is "C" (Coulomb).
+
+
Since:
+
1.0
+
Version:
+
1.0
+
Author:
+
Jean-Marie Dautelle
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/ElectricConductance.html b/docs/apidocs/javax/measure/quantity/ElectricConductance.html new file mode 100644 index 00000000..26709aec --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/ElectricConductance.html @@ -0,0 +1,121 @@ + + + + +ElectricConductance (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface ElectricConductance

+
+
+
+
All Superinterfaces:
+
Quantity<ElectricConductance>
+
+
+ +
Electric conductance. The metric system unit for this quantity "S" (Siemens).
+
+
Since:
+
1.0
+
Version:
+
1.0
+
Author:
+
Jean-Marie Dautelle
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/ElectricCurrent.html b/docs/apidocs/javax/measure/quantity/ElectricCurrent.html new file mode 100644 index 00000000..c5c17e90 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/ElectricCurrent.html @@ -0,0 +1,144 @@ + + + + +ElectricCurrent (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface ElectricCurrent

+
+
+
+
All Superinterfaces:
+
Quantity<ElectricCurrent>
+
+
+
public interface ElectricCurrent +extends Quantity<ElectricCurrent>
+
Amount of electric charge flowing past a specified circuit point per unit time. The metric system unit for this quantity is "A" (Ampere). + + The ampere, symbol A, is the SI unit of electric current. It is defined by taking the + fixed numerical value of the elementary charge e to be 1.602 176 634 × 10⁻¹⁹ when + expressed in the unit C, which is equal to A s, where the second is defined in terms + of ∆νCs. + + This definition implies the exact relation e = 1.602 176 634 × 10⁻¹⁹ A s. Inverting this + relation gives an exact expression for the unit ampere in terms of the defining constants e + and ∆νCs: + + 1 A = (e / 1.602 176 634 × 10⁻¹⁹) s⁻¹ +
+
+
API Note:
SI Base Unit
+
+
+
Since:
+
1.0
+
Version:
+
2.1
+
Author:
+
Jean-Marie Dautelle, Werner Keil, Thodoris Bais
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/ElectricInductance.html b/docs/apidocs/javax/measure/quantity/ElectricInductance.html new file mode 100644 index 00000000..12bac058 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/ElectricInductance.html @@ -0,0 +1,121 @@ + + + + +ElectricInductance (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface ElectricInductance

+
+
+
+
All Superinterfaces:
+
Quantity<ElectricInductance>
+
+
+ +
Electric inductance. The metric system unit for this quantity is "H" (Henry).
+
+
Since:
+
1.0
+
Version:
+
1.0
+
Author:
+
Jean-Marie Dautelle
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/ElectricPotential.html b/docs/apidocs/javax/measure/quantity/ElectricPotential.html new file mode 100644 index 00000000..601e5386 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/ElectricPotential.html @@ -0,0 +1,121 @@ + + + + +ElectricPotential (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface ElectricPotential

+
+
+
+
All Superinterfaces:
+
Quantity<ElectricPotential>
+
+
+
public interface ElectricPotential +extends Quantity<ElectricPotential>
+
Electric potential or electromotive force. The metric system unit for this quantity is "V" (Volt).
+
+
Since:
+
1.0
+
Version:
+
1.0
+
Author:
+
Jean-Marie Dautelle
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/ElectricResistance.html b/docs/apidocs/javax/measure/quantity/ElectricResistance.html new file mode 100644 index 00000000..1cf3ab7c --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/ElectricResistance.html @@ -0,0 +1,121 @@ + + + + +ElectricResistance (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface ElectricResistance

+
+
+
+
All Superinterfaces:
+
Quantity<ElectricResistance>
+
+
+ +
Electric resistance. The metric system unit for this quantity is "Ohm" (Ω).
+
+
Since:
+
1.0
+
Version:
+
1.0
+
Author:
+
Jean-Marie Dautelle
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/Energy.html b/docs/apidocs/javax/measure/quantity/Energy.html new file mode 100644 index 00000000..d41d8d40 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/Energy.html @@ -0,0 +1,129 @@ + + + + +Energy (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface Energy

+
+
+
+
All Superinterfaces:
+
Quantity<Energy>
+
+
+
public interface Energy +extends Quantity<Energy>
+
Capacity of a physical system to do work. The metric system unit for this quantity "J" (Joule).
+
+
Since:
+
1.0
+
Version:
+
1.0
+
Author:
+
Jean-Marie Dautelle
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/Force.html b/docs/apidocs/javax/measure/quantity/Force.html new file mode 100644 index 00000000..69beb126 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/Force.html @@ -0,0 +1,129 @@ + + + + +Force (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface Force

+
+
+
+
All Superinterfaces:
+
Quantity<Force>
+
+
+
public interface Force +extends Quantity<Force>
+
Quantity that tends to produce an acceleration of a body in the direction of its application. The metric system unit for this quantity is "N" + (Newton).
+
+
Since:
+
1.0
+
Version:
+
1.1
+
Author:
+
Jean-Marie Dautelle
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/Frequency.html b/docs/apidocs/javax/measure/quantity/Frequency.html new file mode 100644 index 00000000..9545334c --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/Frequency.html @@ -0,0 +1,127 @@ + + + + +Frequency (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface Frequency

+
+
+
+
All Superinterfaces:
+
Quantity<Frequency>
+
+
+
public interface Frequency +extends Quantity<Frequency>
+
Number of times a specified phenomenon occurs within a specified interval. The metric system unit for this quantity is "Hz" (Hertz).
+
+
Since:
+
1.0
+
Version:
+
1.0
+
Author:
+
Jean-Marie Dautelle
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/Illuminance.html b/docs/apidocs/javax/measure/quantity/Illuminance.html new file mode 100644 index 00000000..79e09650 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/Illuminance.html @@ -0,0 +1,121 @@ + + + + +Illuminance (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface Illuminance

+
+
+
+
All Superinterfaces:
+
Quantity<Illuminance>
+
+
+
public interface Illuminance +extends Quantity<Illuminance>
+
Illuminance. The metric system unit for this quantity is "lx" (lux).
+
+
Since:
+
1.0
+
Version:
+
1.0
+
Author:
+
Jean-Marie Dautelle
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/Length.html b/docs/apidocs/javax/measure/quantity/Length.html new file mode 100644 index 00000000..51e22482 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/Length.html @@ -0,0 +1,147 @@ + + + + +Length (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface Length

+
+
+
+
All Superinterfaces:
+
Quantity<Length>
+
+
+
public interface Length +extends Quantity<Length>
+
Extent of something along its greatest dimension or the extent of space between two objects or places. + The metric system unit for this quantity is "m" (metre). + + The metre, symbol m, is the SI unit of length. It is defined by taking the fixed + numerical value of the speed of light in vacuum c to be 299 792 458 when expressed + in the unit m s⁻¹, where the second is defined in terms of the caesium frequency + ∆νCs. + + This definition implies the exact relation c = 299 792 458 m s⁻¹. Inverting this relation + gives an exact expression for the metre in terms of the defining constants c and ∆νCs: + + 1 m = (c / 299 792 458)s = 9 192 631 770 c / 299 792 458 ∆νCs ≈ 30.663 319 c / ∆νCs +
+
+
API Note:
SI Base Unit
+
+
+
Since:
+
1.0
+
Version:
+
2.1
+
Author:
+
Jean-Marie Dautelle, Werner Keil, Thodoris Bais
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/LuminousFlux.html b/docs/apidocs/javax/measure/quantity/LuminousFlux.html new file mode 100644 index 00000000..f5e4dae8 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/LuminousFlux.html @@ -0,0 +1,121 @@ + + + + +LuminousFlux (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface LuminousFlux

+
+
+
+
All Superinterfaces:
+
Quantity<LuminousFlux>
+
+
+
public interface LuminousFlux +extends Quantity<LuminousFlux>
+
Luminous flux. The metric system unit for this quantity is "lm" (lumen).
+
+
Since:
+
1.0
+
Version:
+
1.1
+
Author:
+
Jean-Marie Dautelle
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/LuminousIntensity.html b/docs/apidocs/javax/measure/quantity/LuminousIntensity.html new file mode 100644 index 00000000..5b5dce9a --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/LuminousIntensity.html @@ -0,0 +1,144 @@ + + + + +LuminousIntensity (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface LuminousIntensity

+
+
+
+
All Superinterfaces:
+
Quantity<LuminousIntensity>
+
+
+
public interface LuminousIntensity +extends Quantity<LuminousIntensity>
+
Luminous flux density per solid angle as measured in a given direction relative to the emitting source. + The metric system unit for this quantity is "cd" (candela). + + The candela, symbol cd, is the SI unit of luminous intensity in a given direction. It is + defined by taking the fixed numerical value of the luminous efficacy of + monochromatic radiation of frequency 540 × 10¹² Hz, Kcd, to be 683 when expressed + in the unit lm W−1, which is equal to cd sr W⁻¹, or cd sr kg⁻¹ m⁻² s³, where the kilogram, + metre and second are defined in terms of h, c and ∆νCs. + + This definition implies the exact relation Kcd = 683 cd sr kg⁻¹ m⁻² s³ for monochromatic + radiation of frequency ν = 540 × 10¹² Hz. Inverting this relation gives an exact expression + for the candela in terms of the defining constants Kcd, h and ∆νCs: + + 1 cd = (Kcd / 683) kg m² s⁻³ sr⁻¹ +
+
+
API Note:
SI Base Unit
+
+
+
Since:
+
1.0
+
Version:
+
2.1
+
Author:
+
Jean-Marie Dautelle, Werner Keil, Thodoris Bais
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/MagneticFlux.html b/docs/apidocs/javax/measure/quantity/MagneticFlux.html new file mode 100644 index 00000000..06e10973 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/MagneticFlux.html @@ -0,0 +1,121 @@ + + + + +MagneticFlux (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface MagneticFlux

+
+
+
+
All Superinterfaces:
+
Quantity<MagneticFlux>
+
+
+
public interface MagneticFlux +extends Quantity<MagneticFlux>
+
Magnetic flux. The metric system unit for this quantity is "Wb" (Weber).
+
+
Since:
+
1.0
+
Version:
+
1.0
+
Author:
+
Jean-Marie Dautelle
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/MagneticFluxDensity.html b/docs/apidocs/javax/measure/quantity/MagneticFluxDensity.html new file mode 100644 index 00000000..1ad47d8a --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/MagneticFluxDensity.html @@ -0,0 +1,121 @@ + + + + +MagneticFluxDensity (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface MagneticFluxDensity

+
+
+
+
All Superinterfaces:
+
Quantity<MagneticFluxDensity>
+
+
+ +
Magnetic flux density. The metric system unit for this quantity is "T" (Tesla).
+
+
Since:
+
1.0
+
Version:
+
1.0
+
Author:
+
Jean-Marie Dautelle
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/Mass.html b/docs/apidocs/javax/measure/quantity/Mass.html new file mode 100644 index 00000000..8f19f9da --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/Mass.html @@ -0,0 +1,144 @@ + + + + +Mass (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface Mass

+
+
+
+
All Superinterfaces:
+
Quantity<Mass>
+
+
+
public interface Mass +extends Quantity<Mass>
+
Measure of the quantity of matter that a body or an object contains. The mass of the body is not dependent on gravity and therefore is different + from but proportional to its weight. The metric system unit for this quantity is "kg" (kilogram). + + The kilogram, symbol kg, is the SI unit of mass. It is defined by taking the fixed + numerical value of the Planck constant h to be 6.626 070 15 × 10⁻³⁴ when expressed + in the unit J s, which is equal to kg m² s−1, where the metre and the second are + defined in terms of c and ∆νCs. + + This definition implies the exact relation h = 6.626 070 15 × 10−34 kg m² s⁻¹. Inverting this + relation gives an exact expression for the kilogram in terms of the three defining constants + h, ∆νCs and c: + + 1 kg = (h / 6.626 070 15 × 10⁻³⁴) m⁻² s +
+
+
API Note:
SI Base Unit
+
+
+
Since:
+
1.0
+
Version:
+
2.0
+
Author:
+
Jean-Marie Dautelle, Werner Keil, Thodoris Bais
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/Power.html b/docs/apidocs/javax/measure/quantity/Power.html new file mode 100644 index 00000000..f3efc98b --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/Power.html @@ -0,0 +1,128 @@ + + + + +Power (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface Power

+
+
+
+
All Superinterfaces:
+
Quantity<Power>
+
+
+
public interface Power +extends Quantity<Power>
+
Rate at which work is done. The metric system unit for this quantity is "W" (Watt).
+
+
Since:
+
1.0
+
Version:
+
1.0
+
Author:
+
Jean-Marie Dautelle
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/Pressure.html b/docs/apidocs/javax/measure/quantity/Pressure.html new file mode 100644 index 00000000..e04e6308 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/Pressure.html @@ -0,0 +1,128 @@ + + + + +Pressure (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface Pressure

+
+
+
+
All Superinterfaces:
+
Quantity<Pressure>
+
+
+
public interface Pressure +extends Quantity<Pressure>
+
Force applied uniformly over a surface. The metric system unit for this quantity is "Pa" (Pascal).
+
+
Since:
+
1.0
+
Version:
+
1.0
+
Author:
+
Jean-Marie Dautelle
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/RadiationDoseAbsorbed.html b/docs/apidocs/javax/measure/quantity/RadiationDoseAbsorbed.html new file mode 100644 index 00000000..72f30b82 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/RadiationDoseAbsorbed.html @@ -0,0 +1,127 @@ + + + + +RadiationDoseAbsorbed (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface RadiationDoseAbsorbed

+
+
+
+
All Superinterfaces:
+
Quantity<RadiationDoseAbsorbed>
+
+
+ +
Amount of energy deposited per unit of mass. The system unit for this quantity is "Gy" (Gray).
+
+
Since:
+
1.0
+
Version:
+
1.1
+
Author:
+
Jean-Marie Dautelle
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/RadiationDoseEffective.html b/docs/apidocs/javax/measure/quantity/RadiationDoseEffective.html new file mode 100644 index 00000000..3c19d274 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/RadiationDoseEffective.html @@ -0,0 +1,122 @@ + + + + +RadiationDoseEffective (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface RadiationDoseEffective

+
+
+
+
All Superinterfaces:
+
Quantity<RadiationDoseEffective>
+
+
+ +
Effective (or "equivalent") dose of radiation received by a human or some other living organism. The metric system unit for this quantity is "Sv" + (Sievert).
+
+
Since:
+
1.0
+
Version:
+
1.0
+
Author:
+
Jean-Marie Dautelle
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/Radioactivity.html b/docs/apidocs/javax/measure/quantity/Radioactivity.html new file mode 100644 index 00000000..0e203247 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/Radioactivity.html @@ -0,0 +1,121 @@ + + + + +Radioactivity (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface Radioactivity

+
+
+
+
All Superinterfaces:
+
Quantity<Radioactivity>
+
+
+
public interface Radioactivity +extends Quantity<Radioactivity>
+
Radioactive activity. The metric system unit for this quantity is "Bq" (Becquerel).
+
+
Since:
+
1.0
+
Version:
+
1.2
+
Author:
+
Jean-Marie Dautelle, Werner Keil, Martin Desruisseaux
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/SolidAngle.html b/docs/apidocs/javax/measure/quantity/SolidAngle.html new file mode 100644 index 00000000..4bfa38ff --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/SolidAngle.html @@ -0,0 +1,127 @@ + + + + +SolidAngle (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface SolidAngle

+
+
+
+
All Superinterfaces:
+
Quantity<SolidAngle>
+
+
+
public interface SolidAngle +extends Quantity<SolidAngle>
+
Angle formed by three or more planes intersecting at a common point. The metric system unit for this quantity is "sr" (steradian).
+
+
Since:
+
1.0
+
Version:
+
1.3
+
Author:
+
Jean-Marie Dautelle, Werner Keil
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/Speed.html b/docs/apidocs/javax/measure/quantity/Speed.html new file mode 100644 index 00000000..05737d49 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/Speed.html @@ -0,0 +1,135 @@ + + + + +Speed (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface Speed

+
+
+
+
All Superinterfaces:
+
Quantity<Speed>
+
+
+
public interface Speed +extends Quantity<Speed>
+
Distance traveled divided by the time of travel. The metric system unit for this quantity is "m/s" (metre per second). + +

+ Speed is a scalar value, while velocity is a vector. Speed is the magnitude of the velocity vector, or the components of + the velocity vector. +

+
+
Since:
+
1.0
+
Version:
+
1.2
+
Author:
+
Jean-Marie Dautelle, Werner Keil
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/Temperature.html b/docs/apidocs/javax/measure/quantity/Temperature.html new file mode 100644 index 00000000..b1fa540e --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/Temperature.html @@ -0,0 +1,142 @@ + + + + +Temperature (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface Temperature

+
+
+
+
All Superinterfaces:
+
Quantity<Temperature>
+
+
+
public interface Temperature +extends Quantity<Temperature>
+
Degree of hotness or coldness of a body or an environment. The metric system unit for this quantity is "K" (Kelvin). + + The kelvin, symbol K, is the SI unit of thermodynamic temperature. It is defined by + taking the fixed numerical value of the Boltzmann constant k to be 1.380 649 × 10−²³ + when expressed in the unit J K⁻¹, which is equal to kg m² s⁻² K⁻¹, where the + kilogram, metre and second are defined in terms of h, c and ∆νCs. + + This definition implies the exact relation k = 1.380 649 × 10⁻²³ kg m² s⁻² K⁻¹. Inverting this + relation gives an exact expression for the kelvin in terms of the defining constants k, h and + ∆νCs: + + 1 K = (1.380 649 / k) × 10⁻²³ kg m² s⁻² +
+
+
API Note:
SI Base Unit
+
+
+
Since:
+
1.0
+
Version:
+
2.1
+
Author:
+
Jean-Marie Dautelle, Werner Keil, Thodoris Bais
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/Time.html b/docs/apidocs/javax/measure/quantity/Time.html new file mode 100644 index 00000000..19310805 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/Time.html @@ -0,0 +1,146 @@ + + + + +Time (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface Time

+
+
+
+
All Superinterfaces:
+
Quantity<Time>
+
+
+
public interface Time +extends Quantity<Time>
+
Period of existence or persistence. The metric system unit for this quantity is "s" (second). + + The second, symbol s, is the SI unit of time. It is defined by taking the fixed + numerical value of the caesium frequency ∆νCs, the unperturbed ground-state + hyperfine transition frequency of the caesium 133 atom, to be 9 192 631 770 when + expressed in the unit Hz, which is equal to s⁻¹. + + This definition implies the exact relation ∆νCs = 9 192 631 770 Hz. Inverting this relation + gives an expression for the unit second in terms of the defining constant ∆νCs: + + 1 Hz = ∆νCs / 9 192 631 770 or 1 s = 9 192 631 770 / ∆νCs +
+
+
API Note:
SI Base Unit
+
+
+
Since:
+
1.0
+
Version:
+
2.1
+
Author:
+
Werner Keil, Thodoris Bais
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/Volume.html b/docs/apidocs/javax/measure/quantity/Volume.html new file mode 100644 index 00000000..a5cdfead --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/Volume.html @@ -0,0 +1,128 @@ + + + + +Volume (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface Volume

+
+
+
+
All Superinterfaces:
+
Quantity<Volume>
+
+
+
public interface Volume +extends Quantity<Volume>
+
Amount of space occupied by a three-dimensional object or region of space. The metric system unit for this quantity is "m³" (cubic metre).
+
+
Since:
+
1.0
+
Version:
+
1.3
+
Author:
+
Jean-Marie Dautelle, Werner Keil
+
See Also:
+
+ +
+
+
+
+ +
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/Acceleration.html b/docs/apidocs/javax/measure/quantity/class-use/Acceleration.html new file mode 100644 index 00000000..b5879b9f --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/Acceleration.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Acceleration (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.Acceleration

+
+No usage of javax.measure.quantity.Acceleration
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/AmountOfSubstance.html b/docs/apidocs/javax/measure/quantity/class-use/AmountOfSubstance.html new file mode 100644 index 00000000..b7bab992 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/AmountOfSubstance.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.AmountOfSubstance (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.AmountOfSubstance

+
+No usage of javax.measure.quantity.AmountOfSubstance
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/Angle.html b/docs/apidocs/javax/measure/quantity/class-use/Angle.html new file mode 100644 index 00000000..8d862358 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/Angle.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Angle (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.Angle

+
+No usage of javax.measure.quantity.Angle
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/Area.html b/docs/apidocs/javax/measure/quantity/class-use/Area.html new file mode 100644 index 00000000..2231809b --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/Area.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Area (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.Area

+
+No usage of javax.measure.quantity.Area
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/CatalyticActivity.html b/docs/apidocs/javax/measure/quantity/class-use/CatalyticActivity.html new file mode 100644 index 00000000..accc4b4d --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/CatalyticActivity.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.CatalyticActivity (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.CatalyticActivity

+
+No usage of javax.measure.quantity.CatalyticActivity
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/Dimensionless.html b/docs/apidocs/javax/measure/quantity/class-use/Dimensionless.html new file mode 100644 index 00000000..cbf63607 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/Dimensionless.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Dimensionless (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.Dimensionless

+
+No usage of javax.measure.quantity.Dimensionless
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/ElectricCapacitance.html b/docs/apidocs/javax/measure/quantity/class-use/ElectricCapacitance.html new file mode 100644 index 00000000..fef2a91e --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/ElectricCapacitance.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.ElectricCapacitance (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.ElectricCapacitance

+
+No usage of javax.measure.quantity.ElectricCapacitance
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/ElectricCharge.html b/docs/apidocs/javax/measure/quantity/class-use/ElectricCharge.html new file mode 100644 index 00000000..216672fe --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/ElectricCharge.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.ElectricCharge (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.ElectricCharge

+
+No usage of javax.measure.quantity.ElectricCharge
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/ElectricConductance.html b/docs/apidocs/javax/measure/quantity/class-use/ElectricConductance.html new file mode 100644 index 00000000..8de36dc9 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/ElectricConductance.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.ElectricConductance (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.ElectricConductance

+
+No usage of javax.measure.quantity.ElectricConductance
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/ElectricCurrent.html b/docs/apidocs/javax/measure/quantity/class-use/ElectricCurrent.html new file mode 100644 index 00000000..8559157a --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/ElectricCurrent.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.ElectricCurrent (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.ElectricCurrent

+
+No usage of javax.measure.quantity.ElectricCurrent
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/ElectricInductance.html b/docs/apidocs/javax/measure/quantity/class-use/ElectricInductance.html new file mode 100644 index 00000000..683cf6ab --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/ElectricInductance.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.ElectricInductance (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.ElectricInductance

+
+No usage of javax.measure.quantity.ElectricInductance
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/ElectricPotential.html b/docs/apidocs/javax/measure/quantity/class-use/ElectricPotential.html new file mode 100644 index 00000000..57b5bf8e --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/ElectricPotential.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.ElectricPotential (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.ElectricPotential

+
+No usage of javax.measure.quantity.ElectricPotential
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/ElectricResistance.html b/docs/apidocs/javax/measure/quantity/class-use/ElectricResistance.html new file mode 100644 index 00000000..23839848 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/ElectricResistance.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.ElectricResistance (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.ElectricResistance

+
+No usage of javax.measure.quantity.ElectricResistance
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/Energy.html b/docs/apidocs/javax/measure/quantity/class-use/Energy.html new file mode 100644 index 00000000..fce50881 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/Energy.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Energy (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.Energy

+
+No usage of javax.measure.quantity.Energy
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/Force.html b/docs/apidocs/javax/measure/quantity/class-use/Force.html new file mode 100644 index 00000000..c62ac908 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/Force.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Force (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.Force

+
+No usage of javax.measure.quantity.Force
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/Frequency.html b/docs/apidocs/javax/measure/quantity/class-use/Frequency.html new file mode 100644 index 00000000..6194dc4a --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/Frequency.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Frequency (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.Frequency

+
+No usage of javax.measure.quantity.Frequency
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/Illuminance.html b/docs/apidocs/javax/measure/quantity/class-use/Illuminance.html new file mode 100644 index 00000000..74d52438 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/Illuminance.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Illuminance (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.Illuminance

+
+No usage of javax.measure.quantity.Illuminance
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/Length.html b/docs/apidocs/javax/measure/quantity/class-use/Length.html new file mode 100644 index 00000000..77dd6d04 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/Length.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Length (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.Length

+
+No usage of javax.measure.quantity.Length
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/LuminousFlux.html b/docs/apidocs/javax/measure/quantity/class-use/LuminousFlux.html new file mode 100644 index 00000000..60de7426 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/LuminousFlux.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.LuminousFlux (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.LuminousFlux

+
+No usage of javax.measure.quantity.LuminousFlux
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/LuminousIntensity.html b/docs/apidocs/javax/measure/quantity/class-use/LuminousIntensity.html new file mode 100644 index 00000000..d0a2dcfe --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/LuminousIntensity.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.LuminousIntensity (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.LuminousIntensity

+
+No usage of javax.measure.quantity.LuminousIntensity
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/MagneticFlux.html b/docs/apidocs/javax/measure/quantity/class-use/MagneticFlux.html new file mode 100644 index 00000000..38836610 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/MagneticFlux.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.MagneticFlux (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.MagneticFlux

+
+No usage of javax.measure.quantity.MagneticFlux
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/MagneticFluxDensity.html b/docs/apidocs/javax/measure/quantity/class-use/MagneticFluxDensity.html new file mode 100644 index 00000000..3abe4a9a --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/MagneticFluxDensity.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.MagneticFluxDensity (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.MagneticFluxDensity

+
+No usage of javax.measure.quantity.MagneticFluxDensity
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/Mass.html b/docs/apidocs/javax/measure/quantity/class-use/Mass.html new file mode 100644 index 00000000..cfc2beac --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/Mass.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Mass (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.Mass

+
+No usage of javax.measure.quantity.Mass
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/Power.html b/docs/apidocs/javax/measure/quantity/class-use/Power.html new file mode 100644 index 00000000..ca2a3a32 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/Power.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Power (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.Power

+
+No usage of javax.measure.quantity.Power
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/Pressure.html b/docs/apidocs/javax/measure/quantity/class-use/Pressure.html new file mode 100644 index 00000000..ae51da97 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/Pressure.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Pressure (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.Pressure

+
+No usage of javax.measure.quantity.Pressure
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/RadiationDoseAbsorbed.html b/docs/apidocs/javax/measure/quantity/class-use/RadiationDoseAbsorbed.html new file mode 100644 index 00000000..c1a652ba --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/RadiationDoseAbsorbed.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.RadiationDoseAbsorbed (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.RadiationDoseAbsorbed

+
+No usage of javax.measure.quantity.RadiationDoseAbsorbed
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/RadiationDoseEffective.html b/docs/apidocs/javax/measure/quantity/class-use/RadiationDoseEffective.html new file mode 100644 index 00000000..50f28450 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/RadiationDoseEffective.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.RadiationDoseEffective (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.RadiationDoseEffective

+
+No usage of javax.measure.quantity.RadiationDoseEffective
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/Radioactivity.html b/docs/apidocs/javax/measure/quantity/class-use/Radioactivity.html new file mode 100644 index 00000000..024c7a69 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/Radioactivity.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Radioactivity (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.Radioactivity

+
+No usage of javax.measure.quantity.Radioactivity
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/SolidAngle.html b/docs/apidocs/javax/measure/quantity/class-use/SolidAngle.html new file mode 100644 index 00000000..d394e84c --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/SolidAngle.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.SolidAngle (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.SolidAngle

+
+No usage of javax.measure.quantity.SolidAngle
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/Speed.html b/docs/apidocs/javax/measure/quantity/class-use/Speed.html new file mode 100644 index 00000000..46f298db --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/Speed.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Speed (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.Speed

+
+No usage of javax.measure.quantity.Speed
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/Temperature.html b/docs/apidocs/javax/measure/quantity/class-use/Temperature.html new file mode 100644 index 00000000..759b2f7c --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/Temperature.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Temperature (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.Temperature

+
+No usage of javax.measure.quantity.Temperature
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/Time.html b/docs/apidocs/javax/measure/quantity/class-use/Time.html new file mode 100644 index 00000000..af757783 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/Time.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Time (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.Time

+
+No usage of javax.measure.quantity.Time
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/class-use/Volume.html b/docs/apidocs/javax/measure/quantity/class-use/Volume.html new file mode 100644 index 00000000..c29abaf6 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/class-use/Volume.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Volume (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.quantity.Volume

+
+No usage of javax.measure.quantity.Volume
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/package-summary.html b/docs/apidocs/javax/measure/quantity/package-summary.html new file mode 100644 index 00000000..048a07c6 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/package-summary.html @@ -0,0 +1,291 @@ + + + + +javax.measure.quantity (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+
+

Package javax.measure.quantity

+
+
+
package javax.measure.quantity
+
+
[OPTIONAL] Provides quantitative properties or attributes of thing such as + mass, time, distance, heat, and angular separation. + Quantities of different kinds are represented by sub-types of the + Quantity interface. + +

Only quantities defined in the BIPM - SI Brochure + are provided here. Users can create their own quantity types by extending the + Quantity interface.

+ +

This package supports measurable quantities, which can be expressed + as (Number, Unit) tuples. + Those tuples are not necessarily used directly in numerically intensive code. + They are more useful as meta-data converted to the application internal representation + (for example double primitive type with the requirement to provide values in meters) + before computation begins.

+ +

Quantity sub-types are also used as parameterized type to characterize + generic classes and provide additional compile time check. This technique is + used extensively by the Unit interface, + but users can apply the same approach to their own classes. In the example + below, Sensor, MyQuantity and Vector3D are user-defined + classes:

+ + + // A general-purpose Sensor class used for temperature measurements:
+ Sensor<Temperature> sensor ...;
+ Temperature temp = sensor.getValue();

+ + // A vector of velocity in a three-dimensional space.
+ Unit<Speed> = metrePerSecond = METRE.divide(SECOND);
+ Vector3D<Speed> aircraftSpeed = new Vector3D(200.0, 50.0, -0.5, metrePerSecond); +
+ +

This package holds only the quantities required by the metric system.

+
+
Since:
+
1.0
+
Version:
+
2.8
+
Author:
+
Jean-Marie Dautelle, Werner Keil
+
See Also:
+
+ +
+
+
+
+
    +
  • + +
  • +
  • +
    +
    Interfaces
    +
    +
    Class
    +
    Description
    + +
    +
    Rate of change of velocity with respect to time.
    +
    + +
    +
    Number of elementary entities (molecules, for example) of a substance.
    +
    + +
    +
    Figure formed by two lines diverging from a common point.
    +
    + +
    +
    Extent of a planar region or of the surface of a solid measured in square units.
    +
    + +
    +
    Catalytic activity.
    +
    + +
    +
    Dimensionless quantity.
    +
    + +
    +
    Electric capacitance.
    +
    + +
    +
    Electric charge.
    +
    + +
    +
    Electric conductance.
    +
    + +
    +
    Amount of electric charge flowing past a specified circuit point per unit time.
    +
    + +
    +
    Electric inductance.
    +
    + +
    +
    Electric potential or electromotive force.
    +
    + +
    +
    Electric resistance.
    +
    + +
    +
    Capacity of a physical system to do work.
    +
    + +
    +
    Quantity that tends to produce an acceleration of a body in the direction of its application.
    +
    + +
    +
    Number of times a specified phenomenon occurs within a specified interval.
    +
    + +
    +
    Illuminance.
    +
    + +
    +
    Extent of something along its greatest dimension or the extent of space between two objects or places.
    +
    + +
    +
    Luminous flux.
    +
    + +
    +
    Luminous flux density per solid angle as measured in a given direction relative to the emitting source.
    +
    + +
    +
    Magnetic flux.
    +
    + +
    +
    Magnetic flux density.
    +
    + +
    +
    Measure of the quantity of matter that a body or an object contains.
    +
    + +
    +
    Rate at which work is done.
    +
    + +
    +
    Force applied uniformly over a surface.
    +
    + +
    +
    Amount of energy deposited per unit of mass.
    +
    + +
    +
    Effective (or "equivalent") dose of radiation received by a human or some other living organism.
    +
    + +
    +
    Radioactive activity.
    +
    + +
    +
    Angle formed by three or more planes intersecting at a common point.
    +
    + +
    +
    Distance traveled divided by the time of travel.
    +
    + +
    +
    Degree of hotness or coldness of a body or an environment.
    +
    + +
    +
    Period of existence or persistence.
    +
    + +
    +
    Amount of space occupied by a three-dimensional object or region of space.
    +
    +
    +
    +
  • +
+
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/package-tree.html b/docs/apidocs/javax/measure/quantity/package-tree.html new file mode 100644 index 00000000..8d36f905 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/package-tree.html @@ -0,0 +1,108 @@ + + + + +javax.measure.quantity Class Hierarchy (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package javax.measure.quantity

+Package Hierarchies: + +
+
+

Interface Hierarchy

+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/quantity/package-use.html b/docs/apidocs/javax/measure/quantity/package-use.html new file mode 100644 index 00000000..bca41e45 --- /dev/null +++ b/docs/apidocs/javax/measure/quantity/package-use.html @@ -0,0 +1,62 @@ + + + + +Uses of Package javax.measure.quantity (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
javax.measure.quantity

+
+No usage of javax.measure.quantity
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/spi/FormatService.FormatType.html b/docs/apidocs/javax/measure/spi/FormatService.FormatType.html new file mode 100644 index 00000000..c74b4fe9 --- /dev/null +++ b/docs/apidocs/javax/measure/spi/FormatService.FormatType.html @@ -0,0 +1,236 @@ + + + + +FormatService.FormatType (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Enum FormatService.FormatType

+
+
java.lang.Object +
java.lang.Enum<FormatService.FormatType> +
javax.measure.spi.FormatService.FormatType
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<FormatService.FormatType>, java.lang.constant.Constable
+
+
+
Enclosing interface:
+
FormatService
+
+
+ +
The type of format, either a UnitFormat or QuantityFormat
+
+
+ +
+
+
    + +
  • +
    +

    Enum Constant Details

    + +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      values

      +
      public static FormatService.FormatType[] values()
      +
      Returns an array containing the constants of this enum type, in +the order they are declared.
      +
      +
      Returns:
      +
      an array containing the constants of this enum type, in the order they are declared
      +
      +
      +
    • +
    • +
      +

      valueOf

      +
      public static FormatService.FormatType valueOf(String name)
      +
      Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
      +
      +
      Parameters:
      +
      name - the name of the enum constant to be returned.
      +
      Returns:
      +
      the enum constant with the specified name
      +
      Throws:
      +
      IllegalArgumentException - if this enum type has no constant with the specified name
      +
      NullPointerException - if the argument is null
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/spi/FormatService.html b/docs/apidocs/javax/measure/spi/FormatService.html new file mode 100644 index 00000000..8990a6ed --- /dev/null +++ b/docs/apidocs/javax/measure/spi/FormatService.html @@ -0,0 +1,273 @@ + + + + +FormatService (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface FormatService

+
+
+
+
public interface FormatService
+
This interface represents the service to obtain instances of UnitFormat and QuantityFormat.
+
+
Since:
+
2.0
+
Version:
+
2.3, May 20, 2023
+
Author:
+
Werner Keil
+
+
+
+ +
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getQuantityFormat

      + +
      Returns the default quantity format. + + It is up to implementations what to consider a suitable default. For some (locale-sensitive) implementations it may be a quantity format based on + Locale.current() while others may return getQuantityFormat("Simple") or getQuantityFormat("ISO").
      +
      +
      Returns:
      +
      the default QuantityFormat implementation.
      +
      +
      +
    • +
    • +
      +

      getQuantityFormat

      + +
      Returns the quantity format having the specified name or null if none. + + For example (@code getQuantityFormat("Simple")} to return the simple QuantityFormat implementation.
      +
      +
      Parameters:
      +
      name - the name of the format.
      +
      Returns:
      +
      the corresponding quantity format.
      +
      +
      +
    • +
    • +
      +

      getUnitFormat

      + +
      Returns the default unit format. + + It is up to implementations what to consider a suitable default. For some (locale-sensitive) implementations it may be a unit format based on + Locale.current() while others may return getUnitFormat("Simple") or getUnitFormat("ISO").
      +
      +
      Returns:
      +
      the default UnitFormat implementation.
      +
      +
      +
    • +
    • +
      +

      getUnitFormat

      + +
      Returns the unit format having the specified name or null if none. + + For example getUnitFormat("Simple") to return a simple UnitFormat implementation.
      +
      +
      Parameters:
      +
      name - the name of the format.
      +
      Returns:
      +
      the corresponding unit format.
      +
      +
      +
    • +
    • +
      +

      getUnitFormat

      + +
      Returns the unit format having the specified name or null if none. + + For example getUnitFormat("Simple") to return a simple UnitFormat implementation.
      + The variant is an arbitrary value to allow a variation of a UnitFormat, + for example UTF vs. ASCII encoding of the simple UnitFormat + or case sensitive vs. case insensitive UCUM format. +

      If no variant is applicable, the UnitFormat matching the name only is returned.

      +
      +
      Parameters:
      +
      name - the name of the format.
      +
      variant - any arbitrary value used to indicate a variation of a UnitFormat.
      +
      Returns:
      +
      the corresponding unit format.
      +
      +
      +
    • +
    • +
      +

      getAvailableFormatNames

      + +
      Gets a list with available format names of a given type for this format service.
      +
      +
      Parameters:
      +
      type - the FormatService.FormatType
      +
      Returns:
      +
      list of available formats, never null.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/spi/QuantityFactory.html b/docs/apidocs/javax/measure/spi/QuantityFactory.html new file mode 100644 index 00000000..4abe3cf1 --- /dev/null +++ b/docs/apidocs/javax/measure/spi/QuantityFactory.html @@ -0,0 +1,224 @@ + + + + +QuantityFactory (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface QuantityFactory<Q extends Quantity<Q>>

+
+
+
+
Type Parameters:
+
Q - the type of the Quantity result
+
+
+
public interface QuantityFactory<Q extends Quantity<Q>>
+
Represents a factory that accepts Number and Unit arguments to create Quantity results.
+
+
Since:
+
1.0
+
Version:
+
1.4, December 18, 2018
+
Author:
+
Werner Keil, Otavio Santana
+
See Also:
+
+ +
+
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + +
    create(Number value, + Unit<Q> unit)
    +
    +
    Returns the quantity for the specified number stated in the specified unit.
    +
    + +
    create(Number value, + Unit<Q> unit, + Quantity.Scale scale)
    +
    +
    Returns the quantity for the specified number stated in the specified unit and scale.
    +
    + + +
    +
    Returns the system unit for quantities produced by this factory or null if unknown.
    +
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      create

      +
      Quantity<Q> create(Number value, + Unit<Q> unit, + Quantity.Scale scale)
      +
      Returns the quantity for the specified number stated in the specified unit and scale.
      +
      +
      Parameters:
      +
      value - the numeric value stated in the specified unit
      +
      unit - the unit
      +
      scale - The ABSOLUTE / RELATIVE scale of this quantity
      +
      Returns:
      +
      the corresponding quantity
      +
      Since:
      +
      2.0
      +
      +
      +
    • +
    • +
      +

      create

      +
      Quantity<Q> create(Number value, + Unit<Q> unit)
      +
      Returns the quantity for the specified number stated in the specified unit.
      +
      +
      Parameters:
      +
      value - the numeric value stated in the specified unit
      +
      unit - the unit
      +
      Returns:
      +
      the corresponding quantity
      +
      +
      +
    • +
    • +
      +

      getSystemUnit

      + +
      Returns the system unit for quantities produced by this factory or null if unknown. + +

      + Because the system unit is unique by quantity type, it can be be used to identify the quantity given the unit. For example: +

      + +
      +     static boolean isAngularSpeed(Unit<?> unit) {
      +         return unit.getSystemUnit().equals(RADIAN.divide(SECOND));
      +     }
      +     assert isAngularSpeed(REVOLUTION.divide(MINUTE)); // Returns true.
      + 
      +
      +
      Returns:
      +
      the system unit for this factory.
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/spi/ServiceProvider.html b/docs/apidocs/javax/measure/spi/ServiceProvider.html new file mode 100644 index 00000000..cc7c75f3 --- /dev/null +++ b/docs/apidocs/javax/measure/spi/ServiceProvider.html @@ -0,0 +1,363 @@ + + + + +ServiceProvider (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ServiceProvider

+
+
java.lang.Object +
javax.measure.spi.ServiceProvider
+
+
+
+
public abstract class ServiceProvider +extends Object
+
Service Provider for Units of Measurement services. +

+ All the methods in this class are safe to use by multiple concurrent threads. +

+
+
Since:
+
1.0
+
Version:
+
2.3, May 19, 2023
+
Author:
+
Werner Keil, Martin Desruisseaux
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ServiceProvider

      +
      protected ServiceProvider()
      +
      Creates a new service provider. Only to be used by subclasses.
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getPriority

      +
      public int getPriority()
      +
      Allows to define a priority for a registered ServiceProvider instance. + When multiple providers are registered in the system, the provider with the highest priority value is taken. + +

      If the "jakarta.annotation.Priority" annotation (from Jakarta Annotations) + or "javax.annotation.Priority" annotation (from JSR-250) is present on the ServiceProvider + implementation class, then that annotation (first if both were present) is taken and this getPriority() method is ignored. + Otherwise – if a Priority annotation is absent – this method is used as a fallback.

      +
      +
      Returns:
      +
      the provider's priority (default is 0).
      +
      +
      +
    • +
    • +
      +

      getSystemOfUnitsService

      + +
      Returns the service to obtain a SystemOfUnits, or null if none.
      +
      +
      Returns:
      +
      the service to obtain a SystemOfUnits, or null.
      +
      +
      +
    • +
    • +
      +

      getFormatService

      +
      public abstract FormatService getFormatService()
      +
      Returns the service to obtain UnitFormat and QuantityFormat or null if none.
      +
      +
      Returns:
      +
      the service to obtain a UnitFormat and QuantityFormat, or null.
      +
      Since:
      +
      2.0
      +
      +
      +
    • +
    • +
      +

      getQuantityFactory

      +
      public abstract <Q extends Quantity<Q>> +QuantityFactory<Q> getQuantityFactory(Class<Q> quantity)
      +
      Returns a factory for the given Quantity type.
      +
      +
      Type Parameters:
      +
      Q - the type of the Quantity instances created by the factory
      +
      Parameters:
      +
      quantity - the quantity type
      +
      Returns:
      +
      the QuantityFactory for the given type
      +
      +
      +
    • +
    • +
      +

      available

      +
      public static final List<ServiceProvider> available()
      +
      Returns the list of all service providers available for the current thread's context class loader. + The current service provider is always the first item in the returned list. + Other service providers after the first item may depend on the caller thread + (see service loader API note).
      +
      +
      Returns:
      +
      all service providers available for the current thread's context class loader.
      +
      +
      +
    • +
    • +
      +

      of

      +
      public static ServiceProvider of(String name)
      +
      Returns the ServiceProvider with the specified name. + The given name must match the name of at least one service provider available in the current thread's + context class loader. + The service provider names are the values of "jakarta.inject.Named" (from Jakarta Annotations) or + "javax.inject.Named" (from JSR-330) annotations when present (first if both were present), + or the value of Object.toString() method for providers without Named annotation. + +

      Implementors are encouraged to provide an Named annotation or to override Object.toString() + and use a unique enough name, e.g. the class name or other distinct attributes. + Should multiple service providers nevertheless use the same name, the one with the highest + priority wins.

      +
      +
      Parameters:
      +
      name - the name of the service provider to return
      +
      Returns:
      +
      the ServiceProvider with the specified name
      +
      Throws:
      +
      IllegalArgumentException - if available service providers do not contain a provider with the specified name
      +
      NullPointerException - if name is null
      +
      Since:
      +
      2.0
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      current

      +
      public static final ServiceProvider current()
      +
      Returns the current ServiceProvider. If necessary the ServiceProvider will be lazily loaded. +

      + If there are no providers available, an IllegalStateException is thrown. + Otherwise the provider with the highest priority is used + or the one explicitly designated via setCurrent(ServiceProvider). +

      +
      +
      Returns:
      +
      the ServiceProvider used.
      +
      Throws:
      +
      IllegalStateException - if no ServiceProvider has been found.
      +
      See Also:
      +
      + +
      +
      +
      +
    • +
    • +
      +

      setCurrent

      +
      public static final ServiceProvider setCurrent(ServiceProvider provider)
      +
      Replaces the current ServiceProvider.
      +
      +
      Parameters:
      +
      provider - the new ServiceProvider
      +
      Returns:
      +
      the replaced provider, or null.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/spi/SystemOfUnits.html b/docs/apidocs/javax/measure/spi/SystemOfUnits.html new file mode 100644 index 00000000..badf75da --- /dev/null +++ b/docs/apidocs/javax/measure/spi/SystemOfUnits.html @@ -0,0 +1,231 @@ + + + + +SystemOfUnits (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface SystemOfUnits

+
+
+
+
public interface SystemOfUnits
+
A system of units grouped together for historical or cultural reasons.
+ Common system of units are "SI" (System International), "Imperial" (British), "US" (US Customary). Nothing prevents a unit from belonging to + several systems of units at the same time (for example an Imperial system would have many of the units held by the US Customary + system).
+
+
Since:
+
1.0
+
Version:
+
1.1, June 21, 2018
+
Author:
+
Jean-Marie Dautelle, Werner Keil
+
See Also:
+
+ +
+
+
+
+
    + +
  • +
    +

    Method Summary

    +
    +
    +
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    + + +
     
    +
    <Q extends Quantity<Q>>
    Unit<Q>
    +
    getUnit(Class<Q> quantityType)
    +
    +
    Returns the default unit for the specified quantity or null if none is defined for the given quantity in this unit system.
    +
    +
    Unit<?>
    +
    getUnit(String string)
    +
    +
    Returns a unit with the given string representation or null if none is found in this unit system.
    +
    +
    Set<? extends Unit<?>>
    + +
    +
    Returns a read only view over the units explicitly defined by this system.
    +
    +
    Set<? extends Unit<?>>
    +
    getUnits(Dimension dimension)
    +
    +
    Returns the units defined in this system having the specified dimension (convenience method).
    +
    +
    +
    +
    +
    +
  • +
+
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getName

      + +
      +
      Returns:
      +
      a name
      +
      +
      +
    • +
    • +
      +

      getUnit

      +
      <Q extends Quantity<Q>> Unit<Q> getUnit(Class<Q> quantityType)
      +
      Returns the default unit for the specified quantity or null if none is defined for the given quantity in this unit system.
      +
      +
      Type Parameters:
      +
      Q - the compile-time quantity type.
      +
      Parameters:
      +
      quantityType - the quantity type.
      +
      Returns:
      +
      the unit for the specified quantity.
      +
      +
      +
    • +
    • +
      +

      getUnit

      +
      Unit<?> getUnit(String string)
      +
      Returns a unit with the given string representation or null if none is found in this unit system.
      +
      +
      Parameters:
      +
      string - the string representation of a unit, not null.
      +
      Returns:
      +
      the unit with the given string representation.
      +
      Since:
      +
      2.0
      +
      +
      +
    • +
    • +
      +

      getUnits

      +
      Set<? extends Unit<?>> getUnits()
      +
      Returns a read only view over the units explicitly defined by this system. This include the base and derived units which are assigned a special + name and symbol. This set does not include new units created by arithmetic or other operations.
      +
      +
      Returns:
      +
      the defined collection of units.
      +
      +
      +
    • +
    • +
      +

      getUnits

      +
      Set<? extends Unit<?>> getUnits(Dimension dimension)
      +
      Returns the units defined in this system having the specified dimension (convenience method).
      +
      +
      Parameters:
      +
      dimension - the dimension of the units to be returned.
      +
      Returns:
      +
      the collection of units of specified dimension.
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/spi/SystemOfUnitsService.html b/docs/apidocs/javax/measure/spi/SystemOfUnitsService.html new file mode 100644 index 00000000..61ffe161 --- /dev/null +++ b/docs/apidocs/javax/measure/spi/SystemOfUnitsService.html @@ -0,0 +1,242 @@ + + + + +SystemOfUnitsService (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Interface SystemOfUnitsService

+
+
+
+
public interface SystemOfUnitsService
+
This interface represents the service to obtain a system + of units. + +

+ Common systems of units are "SI" (System International) or Metric system, + "Imperial" (British), or "US" (US Customary). +

+
+
Since:
+
1.0
+
Version:
+
1.8, April 3, 2023
+
Author:
+
Jean-Marie Dautelle, Werner Keil, Martin + Desruisseaux
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getSystemOfUnits

      + +
      Returns the default system of units. Depending on the + implementation this may be the International + System of Units or another default system.
      +
      +
      Returns:
      +
      the default system of units.
      +
      +
      +
    • +
    • +
      +

      getSystemOfUnits

      + +
      Returns the system of units having the specified name or null if + none is found.
      +
      +
      Parameters:
      +
      name - the system of unit name.
      +
      Returns:
      +
      the system of units for the given name.
      +
      +
      +
    • +
    • +
      +

      getAvailableSystemsOfUnits

      + +
      Gets a list with available systems for this SystemOfUnitsService.
      +
      +
      Returns:
      +
      list of available systems of units, never null.
      +
      +
      +
    • +
    • +
      +

      getPrefixes

      +
      default <P extends Prefix> Set<P> getPrefixes(Class<P> prefixType)
      +
      Returns a Set containing the values of a particular Prefix + type. + +

      + This method may be used to iterate over certain prefixes as follows: +

      +
      
      +    for(MetricPrefix mp : service.getPrefixes(MetricPrefix.class))
      +        System.out.println(p);
      + 
      + + The default implementation assumes that prefixes of the given type are implemented as an enumeration. + This is the case of the two default prefix implementations provided in JSR 385, + namely MetricPrefix and BinaryPrefix. + Implementors shall override this method if they provide prefixes implemented in a different way.
      +
      +
      Type Parameters:
      +
      P - compile-time value of the prefixType argument
      +
      Parameters:
      +
      prefixType - the Prefix type
      +
      Returns:
      +
      a set containing the constant values of this Prefix type, in the + order they're declared
      +
      Throws:
      +
      ClassCastException - if the class is not compatible with the desired + Prefix implementation or does not implement Prefix at all.
      +
      Since:
      +
      2.0
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/spi/class-use/FormatService.FormatType.html b/docs/apidocs/javax/measure/spi/class-use/FormatService.FormatType.html new file mode 100644 index 00000000..b749036f --- /dev/null +++ b/docs/apidocs/javax/measure/spi/class-use/FormatService.FormatType.html @@ -0,0 +1,108 @@ + + + + +Uses of Enum javax.measure.spi.FormatService.FormatType (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Enum
javax.measure.spi.FormatService.FormatType

+
+
Packages that use FormatService.FormatType
+
+
Package
+
Description
+ +
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/spi/class-use/FormatService.html b/docs/apidocs/javax/measure/spi/class-use/FormatService.html new file mode 100644 index 00000000..72ece6e8 --- /dev/null +++ b/docs/apidocs/javax/measure/spi/class-use/FormatService.html @@ -0,0 +1,91 @@ + + + + +Uses of Interface javax.measure.spi.FormatService (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.spi.FormatService

+
+
Packages that use FormatService
+
+
Package
+
Description
+ +
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/spi/class-use/QuantityFactory.html b/docs/apidocs/javax/measure/spi/class-use/QuantityFactory.html new file mode 100644 index 00000000..7211017a --- /dev/null +++ b/docs/apidocs/javax/measure/spi/class-use/QuantityFactory.html @@ -0,0 +1,91 @@ + + + + +Uses of Interface javax.measure.spi.QuantityFactory (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.spi.QuantityFactory

+
+
Packages that use QuantityFactory
+
+
Package
+
Description
+ +
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/spi/class-use/ServiceProvider.html b/docs/apidocs/javax/measure/spi/class-use/ServiceProvider.html new file mode 100644 index 00000000..741355e7 --- /dev/null +++ b/docs/apidocs/javax/measure/spi/class-use/ServiceProvider.html @@ -0,0 +1,123 @@ + + + + +Uses of Class javax.measure.spi.ServiceProvider (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
javax.measure.spi.ServiceProvider

+
+
Packages that use ServiceProvider
+
+
Package
+
Description
+ +
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/spi/class-use/SystemOfUnits.html b/docs/apidocs/javax/measure/spi/class-use/SystemOfUnits.html new file mode 100644 index 00000000..45eb7474 --- /dev/null +++ b/docs/apidocs/javax/measure/spi/class-use/SystemOfUnits.html @@ -0,0 +1,108 @@ + + + + +Uses of Interface javax.measure.spi.SystemOfUnits (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.spi.SystemOfUnits

+
+
Packages that use SystemOfUnits
+
+
Package
+
Description
+ +
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/spi/class-use/SystemOfUnitsService.html b/docs/apidocs/javax/measure/spi/class-use/SystemOfUnitsService.html new file mode 100644 index 00000000..b0e34381 --- /dev/null +++ b/docs/apidocs/javax/measure/spi/class-use/SystemOfUnitsService.html @@ -0,0 +1,91 @@ + + + + +Uses of Interface javax.measure.spi.SystemOfUnitsService (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Interface
javax.measure.spi.SystemOfUnitsService

+
+
Packages that use SystemOfUnitsService
+
+
Package
+
Description
+ +
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/spi/package-summary.html b/docs/apidocs/javax/measure/spi/package-summary.html new file mode 100644 index 00000000..a9217460 --- /dev/null +++ b/docs/apidocs/javax/measure/spi/package-summary.html @@ -0,0 +1,152 @@ + + + + +javax.measure.spi (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + + +
+ +
+
+
+

Package javax.measure.spi

+
+
+
package javax.measure.spi
+
+
[OPTIONAL] The Units of Measurement SPI. Provides services for units, quantities, unit systems and formatters/parsers.
+
+
Since:
+
1.0
+
Version:
+
2.0, July 7, 2019
+
Author:
+
Jean-Marie Dautelle, Werner Keil, Martin Desruisseaux
+
+
+
+
    +
  • + +
  • +
  • +
    +
    +
    +
    +
    Class
    +
    Description
    + +
    +
    This interface represents the service to obtain instances of UnitFormat and QuantityFormat.
    +
    + +
    +
    The type of format, either a UnitFormat or QuantityFormat
    +
    + +
    +
    Represents a factory that accepts Number and Unit arguments to create Quantity results.
    +
    + +
    +
    Service Provider for Units of Measurement services.
    +
    + +
    +
    A system of units grouped together for historical or cultural reasons.
    + Common system of units are "SI" (System International), "Imperial" (British), "US" (US Customary).
    +
    + +
    +
    This interface represents the service to obtain a system + of units.
    +
    +
    +
    +
    +
  • +
+
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/spi/package-tree.html b/docs/apidocs/javax/measure/spi/package-tree.html new file mode 100644 index 00000000..de3d648a --- /dev/null +++ b/docs/apidocs/javax/measure/spi/package-tree.html @@ -0,0 +1,99 @@ + + + + +javax.measure.spi Class Hierarchy (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package javax.measure.spi

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+

Enum Hierarchy

+ +
+
+ +
+
+ + diff --git a/docs/apidocs/javax/measure/spi/package-use.html b/docs/apidocs/javax/measure/spi/package-use.html new file mode 100644 index 00000000..4420398d --- /dev/null +++ b/docs/apidocs/javax/measure/spi/package-use.html @@ -0,0 +1,110 @@ + + + + +Uses of Package javax.measure.spi (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
javax.measure.spi

+
+
Packages that use javax.measure.spi
+
+
Package
+
Description
+ +
+
[OPTIONAL] The Units of Measurement SPI.
+
+
+
+ +
+
+ +
+
+ + diff --git a/docs/apidocs/jquery-ui.overrides.css b/docs/apidocs/jquery-ui.overrides.css new file mode 100644 index 00000000..facf852c --- /dev/null +++ b/docs/apidocs/jquery-ui.overrides.css @@ -0,0 +1,35 @@ +/* + * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +.ui-state-active, +.ui-widget-content .ui-state-active, +.ui-widget-header .ui-state-active, +a.ui-button:active, +.ui-button:active, +.ui-button.ui-state-active:hover { + /* Overrides the color of selection used in jQuery UI */ + background: #F8981D; + border: 1px solid #F8981D; +} diff --git a/docs/apidocs/legal/ADDITIONAL_LICENSE_INFO b/docs/apidocs/legal/ADDITIONAL_LICENSE_INFO new file mode 100644 index 00000000..b62cc3ef --- /dev/null +++ b/docs/apidocs/legal/ADDITIONAL_LICENSE_INFO @@ -0,0 +1 @@ +Please see ..\java.base\ADDITIONAL_LICENSE_INFO diff --git a/docs/apidocs/legal/ASSEMBLY_EXCEPTION b/docs/apidocs/legal/ASSEMBLY_EXCEPTION new file mode 100644 index 00000000..0d4cfb40 --- /dev/null +++ b/docs/apidocs/legal/ASSEMBLY_EXCEPTION @@ -0,0 +1 @@ +Please see ..\java.base\ASSEMBLY_EXCEPTION diff --git a/docs/apidocs/legal/LICENSE b/docs/apidocs/legal/LICENSE new file mode 100644 index 00000000..4ad9fe40 --- /dev/null +++ b/docs/apidocs/legal/LICENSE @@ -0,0 +1 @@ +Please see ..\java.base\LICENSE diff --git a/docs/apidocs/legal/jquery.md b/docs/apidocs/legal/jquery.md new file mode 100644 index 00000000..f7b72e3f --- /dev/null +++ b/docs/apidocs/legal/jquery.md @@ -0,0 +1,72 @@ +## jQuery v3.6.0 + +### jQuery License +``` +jQuery v 3.6.0 +Copyright OpenJS Foundation and other contributors, https://openjsf.org/ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +****************************************** + +The jQuery JavaScript Library v3.6.0 also includes Sizzle.js + +Sizzle.js includes the following license: + +Copyright JS Foundation and other contributors, https://js.foundation/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/sizzle + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +********************* + +``` diff --git a/docs/apidocs/legal/jqueryUI.md b/docs/apidocs/legal/jqueryUI.md new file mode 100644 index 00000000..8031bdb5 --- /dev/null +++ b/docs/apidocs/legal/jqueryUI.md @@ -0,0 +1,49 @@ +## jQuery UI v1.12.1 + +### jQuery UI License +``` +Copyright jQuery Foundation and other contributors, https://jquery.org/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/jquery-ui + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +Copyright and related rights for sample code are waived via CC0. Sample +code is defined as all source code contained within the demos directory. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. + +``` diff --git a/docs/apidocs/member-search-index.js b/docs/apidocs/member-search-index.js new file mode 100644 index 00000000..d54a2821 --- /dev/null +++ b/docs/apidocs/member-search-index.js @@ -0,0 +1 @@ +memberSearchIndex = [{"p":"javax.measure","c":"Quantity.Scale","l":"ABSOLUTE"},{"p":"javax.measure","c":"Quantity","l":"add(Quantity)","u":"add(javax.measure.Quantity)"},{"p":"javax.measure","c":"Unit","l":"alternate(String)","u":"alternate(java.lang.String)"},{"p":"javax.measure","c":"Quantity","l":"asType(Class)","u":"asType(java.lang.Class)"},{"p":"javax.measure","c":"Unit","l":"asType(Class)","u":"asType(java.lang.Class)"},{"p":"javax.measure","c":"MetricPrefix","l":"ATTO"},{"p":"javax.measure","c":"MetricPrefix","l":"ATTO(Unit)","u":"ATTO(javax.measure.Unit)"},{"p":"javax.measure.spi","c":"ServiceProvider","l":"available()"},{"p":"javax.measure","c":"MetricPrefix","l":"CENTI"},{"p":"javax.measure","c":"MetricPrefix","l":"CENTI(Unit)","u":"CENTI(javax.measure.Unit)"},{"p":"javax.measure","c":"UnitConverter","l":"concatenate(UnitConverter)","u":"concatenate(javax.measure.UnitConverter)"},{"p":"javax.measure","c":"UnitConverter","l":"convert(double)"},{"p":"javax.measure","c":"UnitConverter","l":"convert(Number)","u":"convert(java.lang.Number)"},{"p":"javax.measure.spi","c":"QuantityFactory","l":"create(Number, Unit)","u":"create(java.lang.Number,javax.measure.Unit)"},{"p":"javax.measure.spi","c":"QuantityFactory","l":"create(Number, Unit, Quantity.Scale)","u":"create(java.lang.Number,javax.measure.Unit,javax.measure.Quantity.Scale)"},{"p":"javax.measure.spi","c":"ServiceProvider","l":"current()"},{"p":"javax.measure","c":"MetricPrefix","l":"DECA"},{"p":"javax.measure","c":"MetricPrefix","l":"DECA(Unit)","u":"DECA(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"DECI"},{"p":"javax.measure","c":"MetricPrefix","l":"DECI(Unit)","u":"DECI(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"DEKA(Unit)","u":"DEKA(javax.measure.Unit)"},{"p":"javax.measure","c":"Dimension","l":"divide(Dimension)","u":"divide(javax.measure.Dimension)"},{"p":"javax.measure","c":"Unit","l":"divide(double)"},{"p":"javax.measure","c":"Quantity","l":"divide(Number)","u":"divide(java.lang.Number)"},{"p":"javax.measure","c":"Unit","l":"divide(Number)","u":"divide(java.lang.Number)"},{"p":"javax.measure","c":"Quantity","l":"divide(Quantity)","u":"divide(javax.measure.Quantity)"},{"p":"javax.measure","c":"Unit","l":"divide(Unit)","u":"divide(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"EXA"},{"p":"javax.measure","c":"MetricPrefix","l":"EXA(Unit)","u":"EXA(javax.measure.Unit)"},{"p":"javax.measure","c":"BinaryPrefix","l":"EXBI"},{"p":"javax.measure","c":"BinaryPrefix","l":"EXBI(Unit)","u":"EXBI(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"FEMTO"},{"p":"javax.measure","c":"MetricPrefix","l":"FEMTO(Unit)","u":"FEMTO(javax.measure.Unit)"},{"p":"javax.measure.format","c":"QuantityFormat","l":"format(Quantity)","u":"format(javax.measure.Quantity)"},{"p":"javax.measure.format","c":"QuantityFormat","l":"format(Quantity, Appendable)","u":"format(javax.measure.Quantity,java.lang.Appendable)"},{"p":"javax.measure.format","c":"UnitFormat","l":"format(Unit)","u":"format(javax.measure.Unit)"},{"p":"javax.measure.format","c":"UnitFormat","l":"format(Unit, Appendable)","u":"format(javax.measure.Unit,java.lang.Appendable)"},{"p":"javax.measure.spi","c":"FormatService","l":"getAvailableFormatNames(FormatService.FormatType)","u":"getAvailableFormatNames(javax.measure.spi.FormatService.FormatType)"},{"p":"javax.measure.spi","c":"SystemOfUnitsService","l":"getAvailableSystemsOfUnits()"},{"p":"javax.measure","c":"Dimension","l":"getBaseDimensions()"},{"p":"javax.measure","c":"Unit","l":"getBaseUnits()"},{"p":"javax.measure","c":"UnitConverter","l":"getConversionSteps()"},{"p":"javax.measure","c":"Unit","l":"getConverterTo(Unit)","u":"getConverterTo(javax.measure.Unit)"},{"p":"javax.measure","c":"Unit","l":"getConverterToAny(Unit)","u":"getConverterToAny(javax.measure.Unit)"},{"p":"javax.measure","c":"Unit","l":"getDimension()"},{"p":"javax.measure","c":"BinaryPrefix","l":"getExponent()"},{"p":"javax.measure","c":"MetricPrefix","l":"getExponent()"},{"p":"javax.measure","c":"Prefix","l":"getExponent()"},{"p":"javax.measure.spi","c":"ServiceProvider","l":"getFormatService()"},{"p":"javax.measure","c":"BinaryPrefix","l":"getName()"},{"p":"javax.measure","c":"MetricPrefix","l":"getName()"},{"p":"javax.measure","c":"Prefix","l":"getName()"},{"p":"javax.measure.spi","c":"SystemOfUnits","l":"getName()"},{"p":"javax.measure","c":"Unit","l":"getName()"},{"p":"javax.measure.format","c":"MeasurementParseException","l":"getParsedString()"},{"p":"javax.measure.format","c":"MeasurementParseException","l":"getPosition()"},{"p":"javax.measure.spi","c":"SystemOfUnitsService","l":"getPrefixes(Class

)","u":"getPrefixes(java.lang.Class)"},{"p":"javax.measure.spi","c":"ServiceProvider","l":"getPriority()"},{"p":"javax.measure.spi","c":"ServiceProvider","l":"getQuantityFactory(Class)","u":"getQuantityFactory(java.lang.Class)"},{"p":"javax.measure.spi","c":"FormatService","l":"getQuantityFormat()"},{"p":"javax.measure.spi","c":"FormatService","l":"getQuantityFormat(String)","u":"getQuantityFormat(java.lang.String)"},{"p":"javax.measure","c":"Quantity","l":"getScale()"},{"p":"javax.measure","c":"BinaryPrefix","l":"getSymbol()"},{"p":"javax.measure","c":"MetricPrefix","l":"getSymbol()"},{"p":"javax.measure","c":"Prefix","l":"getSymbol()"},{"p":"javax.measure","c":"Unit","l":"getSymbol()"},{"p":"javax.measure.spi","c":"SystemOfUnitsService","l":"getSystemOfUnits()"},{"p":"javax.measure.spi","c":"SystemOfUnitsService","l":"getSystemOfUnits(String)","u":"getSystemOfUnits(java.lang.String)"},{"p":"javax.measure.spi","c":"ServiceProvider","l":"getSystemOfUnitsService()"},{"p":"javax.measure.spi","c":"QuantityFactory","l":"getSystemUnit()"},{"p":"javax.measure","c":"Unit","l":"getSystemUnit()"},{"p":"javax.measure","c":"Quantity","l":"getUnit()"},{"p":"javax.measure.spi","c":"SystemOfUnits","l":"getUnit(Class)","u":"getUnit(java.lang.Class)"},{"p":"javax.measure.spi","c":"SystemOfUnits","l":"getUnit(String)","u":"getUnit(java.lang.String)"},{"p":"javax.measure.spi","c":"FormatService","l":"getUnitFormat()"},{"p":"javax.measure.spi","c":"FormatService","l":"getUnitFormat(String)","u":"getUnitFormat(java.lang.String)"},{"p":"javax.measure.spi","c":"FormatService","l":"getUnitFormat(String, String)","u":"getUnitFormat(java.lang.String,java.lang.String)"},{"p":"javax.measure.spi","c":"SystemOfUnits","l":"getUnits()"},{"p":"javax.measure.spi","c":"SystemOfUnits","l":"getUnits(Dimension)","u":"getUnits(javax.measure.Dimension)"},{"p":"javax.measure","c":"BinaryPrefix","l":"getValue()"},{"p":"javax.measure","c":"MetricPrefix","l":"getValue()"},{"p":"javax.measure","c":"Prefix","l":"getValue()"},{"p":"javax.measure","c":"Quantity","l":"getValue()"},{"p":"javax.measure","c":"BinaryPrefix","l":"GIBI"},{"p":"javax.measure","c":"BinaryPrefix","l":"GIBI(Unit)","u":"GIBI(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"GIGA"},{"p":"javax.measure","c":"MetricPrefix","l":"GIGA(Unit)","u":"GIGA(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"HECTO"},{"p":"javax.measure","c":"MetricPrefix","l":"HECTO(Unit)","u":"HECTO(javax.measure.Unit)"},{"p":"javax.measure","c":"IncommensurableException","l":"IncommensurableException(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"javax.measure","c":"IncommensurableException","l":"IncommensurableException(String, Throwable)","u":"%3Cinit%3E(java.lang.String,java.lang.Throwable)"},{"p":"javax.measure","c":"IncommensurableException","l":"IncommensurableException(Throwable)","u":"%3Cinit%3E(java.lang.Throwable)"},{"p":"javax.measure","c":"Quantity","l":"inverse()"},{"p":"javax.measure","c":"Unit","l":"inverse()"},{"p":"javax.measure","c":"UnitConverter","l":"inverse()"},{"p":"javax.measure","c":"Unit","l":"isCompatible(Unit)","u":"isCompatible(javax.measure.Unit)"},{"p":"javax.measure","c":"Quantity","l":"isEquivalentTo(Quantity)","u":"isEquivalentTo(javax.measure.Quantity)"},{"p":"javax.measure","c":"Unit","l":"isEquivalentTo(Unit)","u":"isEquivalentTo(javax.measure.Unit)"},{"p":"javax.measure","c":"UnitConverter","l":"isIdentity()"},{"p":"javax.measure","c":"UnitConverter","l":"isLinear()"},{"p":"javax.measure.format","c":"QuantityFormat","l":"isLocaleSensitive()"},{"p":"javax.measure.format","c":"UnitFormat","l":"isLocaleSensitive()"},{"p":"javax.measure","c":"BinaryPrefix","l":"KIBI"},{"p":"javax.measure","c":"BinaryPrefix","l":"KIBI(Unit)","u":"KIBI(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"KILO"},{"p":"javax.measure","c":"MetricPrefix","l":"KILO(Unit)","u":"KILO(javax.measure.Unit)"},{"p":"javax.measure.format","c":"UnitFormat","l":"label(Unit, String)","u":"label(javax.measure.Unit,java.lang.String)"},{"p":"javax.measure","c":"MeasurementError","l":"MeasurementError()","u":"%3Cinit%3E()"},{"p":"javax.measure","c":"MeasurementError","l":"MeasurementError(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"javax.measure","c":"MeasurementError","l":"MeasurementError(String, Throwable)","u":"%3Cinit%3E(java.lang.String,java.lang.Throwable)"},{"p":"javax.measure","c":"MeasurementError","l":"MeasurementError(Throwable)","u":"%3Cinit%3E(java.lang.Throwable)"},{"p":"javax.measure","c":"MeasurementException","l":"MeasurementException()","u":"%3Cinit%3E()"},{"p":"javax.measure","c":"MeasurementException","l":"MeasurementException(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"javax.measure","c":"MeasurementException","l":"MeasurementException(String, Throwable)","u":"%3Cinit%3E(java.lang.String,java.lang.Throwable)"},{"p":"javax.measure","c":"MeasurementException","l":"MeasurementException(Throwable)","u":"%3Cinit%3E(java.lang.Throwable)"},{"p":"javax.measure.format","c":"MeasurementParseException","l":"MeasurementParseException(CharSequence, int)","u":"%3Cinit%3E(java.lang.CharSequence,int)"},{"p":"javax.measure.format","c":"MeasurementParseException","l":"MeasurementParseException(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"javax.measure.format","c":"MeasurementParseException","l":"MeasurementParseException(String, CharSequence, int)","u":"%3Cinit%3E(java.lang.String,java.lang.CharSequence,int)"},{"p":"javax.measure.format","c":"MeasurementParseException","l":"MeasurementParseException(Throwable)","u":"%3Cinit%3E(java.lang.Throwable)"},{"p":"javax.measure","c":"BinaryPrefix","l":"MEBI"},{"p":"javax.measure","c":"BinaryPrefix","l":"MEBI(Unit)","u":"MEBI(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"MEGA"},{"p":"javax.measure","c":"MetricPrefix","l":"MEGA(Unit)","u":"MEGA(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"MICRO"},{"p":"javax.measure","c":"MetricPrefix","l":"MICRO(Unit)","u":"MICRO(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"MILLI"},{"p":"javax.measure","c":"MetricPrefix","l":"MILLI(Unit)","u":"MILLI(javax.measure.Unit)"},{"p":"javax.measure","c":"Dimension","l":"multiply(Dimension)","u":"multiply(javax.measure.Dimension)"},{"p":"javax.measure","c":"Unit","l":"multiply(double)"},{"p":"javax.measure","c":"Quantity","l":"multiply(Number)","u":"multiply(java.lang.Number)"},{"p":"javax.measure","c":"Unit","l":"multiply(Number)","u":"multiply(java.lang.Number)"},{"p":"javax.measure","c":"Quantity","l":"multiply(Quantity)","u":"multiply(javax.measure.Quantity)"},{"p":"javax.measure","c":"Unit","l":"multiply(Unit)","u":"multiply(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"NANO"},{"p":"javax.measure","c":"MetricPrefix","l":"NANO(Unit)","u":"NANO(javax.measure.Unit)"},{"p":"javax.measure","c":"Quantity","l":"negate()"},{"p":"javax.measure.spi","c":"ServiceProvider","l":"of(String)","u":"of(java.lang.String)"},{"p":"javax.measure.format","c":"QuantityFormat","l":"parse(CharSequence)","u":"parse(java.lang.CharSequence)"},{"p":"javax.measure.format","c":"UnitFormat","l":"parse(CharSequence)","u":"parse(java.lang.CharSequence)"},{"p":"javax.measure.format","c":"QuantityFormat","l":"parse(CharSequence, ParsePosition)","u":"parse(java.lang.CharSequence,java.text.ParsePosition)"},{"p":"javax.measure.format","c":"UnitFormat","l":"parse(CharSequence, ParsePosition)","u":"parse(java.lang.CharSequence,java.text.ParsePosition)"},{"p":"javax.measure","c":"BinaryPrefix","l":"PEBI"},{"p":"javax.measure","c":"BinaryPrefix","l":"PEBI(Unit)","u":"PEBI(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"PETA"},{"p":"javax.measure","c":"MetricPrefix","l":"PETA(Unit)","u":"PETA(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"PICO"},{"p":"javax.measure","c":"MetricPrefix","l":"PICO(Unit)","u":"PICO(javax.measure.Unit)"},{"p":"javax.measure","c":"Dimension","l":"pow(int)"},{"p":"javax.measure","c":"Unit","l":"pow(int)"},{"p":"javax.measure","c":"Unit","l":"prefix(Prefix)","u":"prefix(javax.measure.Prefix)"},{"p":"javax.measure.spi","c":"FormatService.FormatType","l":"QUANTITY_FORMAT"},{"p":"javax.measure","c":"MetricPrefix","l":"QUECTO"},{"p":"javax.measure","c":"MetricPrefix","l":"QUECTO(Unit)","u":"QUECTO(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"QUETTA"},{"p":"javax.measure","c":"MetricPrefix","l":"QUETTA(Unit)","u":"QUETTA(javax.measure.Unit)"},{"p":"javax.measure","c":"Quantity.Scale","l":"RELATIVE"},{"p":"javax.measure","c":"MetricPrefix","l":"RONNA"},{"p":"javax.measure","c":"MetricPrefix","l":"RONNA(Unit)","u":"RONNA(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"RONTO"},{"p":"javax.measure","c":"MetricPrefix","l":"RONTO(Unit)","u":"RONTO(javax.measure.Unit)"},{"p":"javax.measure","c":"Dimension","l":"root(int)"},{"p":"javax.measure","c":"Unit","l":"root(int)"},{"p":"javax.measure.spi","c":"ServiceProvider","l":"ServiceProvider()","u":"%3Cinit%3E()"},{"p":"javax.measure.spi","c":"ServiceProvider","l":"setCurrent(ServiceProvider)","u":"setCurrent(javax.measure.spi.ServiceProvider)"},{"p":"javax.measure","c":"Unit","l":"shift(double)"},{"p":"javax.measure","c":"Unit","l":"shift(Number)","u":"shift(java.lang.Number)"},{"p":"javax.measure","c":"Quantity","l":"subtract(Quantity)","u":"subtract(javax.measure.Quantity)"},{"p":"javax.measure","c":"BinaryPrefix","l":"TEBI"},{"p":"javax.measure","c":"BinaryPrefix","l":"TEBI(Unit)","u":"TEBI(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"TERA"},{"p":"javax.measure","c":"MetricPrefix","l":"TERA(Unit)","u":"TERA(javax.measure.Unit)"},{"p":"javax.measure","c":"Quantity","l":"to(Unit)","u":"to(javax.measure.Unit)"},{"p":"javax.measure","c":"Unit","l":"toString()"},{"p":"javax.measure","c":"Quantity","l":"toSystemUnit()"},{"p":"javax.measure","c":"Unit","l":"transform(UnitConverter)","u":"transform(javax.measure.UnitConverter)"},{"p":"javax.measure","c":"UnconvertibleException","l":"UnconvertibleException(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"javax.measure","c":"UnconvertibleException","l":"UnconvertibleException(String, Throwable)","u":"%3Cinit%3E(java.lang.String,java.lang.Throwable)"},{"p":"javax.measure","c":"UnconvertibleException","l":"UnconvertibleException(Throwable)","u":"%3Cinit%3E(java.lang.Throwable)"},{"p":"javax.measure.spi","c":"FormatService.FormatType","l":"UNIT_FORMAT"},{"p":"javax.measure","c":"BinaryPrefix","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"javax.measure","c":"MetricPrefix","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"javax.measure","c":"Quantity.Scale","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"javax.measure.spi","c":"FormatService.FormatType","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"javax.measure","c":"BinaryPrefix","l":"values()"},{"p":"javax.measure","c":"MetricPrefix","l":"values()"},{"p":"javax.measure","c":"Quantity.Scale","l":"values()"},{"p":"javax.measure.spi","c":"FormatService.FormatType","l":"values()"},{"p":"javax.measure","c":"BinaryPrefix","l":"YOBI"},{"p":"javax.measure","c":"BinaryPrefix","l":"YOBI(Unit)","u":"YOBI(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"YOCTO"},{"p":"javax.measure","c":"MetricPrefix","l":"YOCTO(Unit)","u":"YOCTO(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"YOTTA"},{"p":"javax.measure","c":"MetricPrefix","l":"YOTTA(Unit)","u":"YOTTA(javax.measure.Unit)"},{"p":"javax.measure","c":"BinaryPrefix","l":"ZEBI"},{"p":"javax.measure","c":"BinaryPrefix","l":"ZEBI(Unit)","u":"ZEBI(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"ZEPTO"},{"p":"javax.measure","c":"MetricPrefix","l":"ZEPTO(Unit)","u":"ZEPTO(javax.measure.Unit)"},{"p":"javax.measure","c":"MetricPrefix","l":"ZETTA"},{"p":"javax.measure","c":"MetricPrefix","l":"ZETTA(Unit)","u":"ZETTA(javax.measure.Unit)"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/apidocs/module-search-index.js b/docs/apidocs/module-search-index.js new file mode 100644 index 00000000..0d59754f --- /dev/null +++ b/docs/apidocs/module-search-index.js @@ -0,0 +1 @@ +moduleSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/docs/apidocs/overview-summary.html b/docs/apidocs/overview-summary.html new file mode 100644 index 00000000..da395c8e --- /dev/null +++ b/docs/apidocs/overview-summary.html @@ -0,0 +1,26 @@ + + + + +Units of Measurement API 2.2 API + + + + + + + + + + + +

+ +

index.html

+
+ + diff --git a/docs/apidocs/overview-tree.html b/docs/apidocs/overview-tree.html new file mode 100644 index 00000000..11bb28f7 --- /dev/null +++ b/docs/apidocs/overview-tree.html @@ -0,0 +1,172 @@ + + + + +Class Hierarchy (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+

Enum Hierarchy

+ +
+
+ +
+
+ + diff --git a/docs/apidocs/package-search-index.js b/docs/apidocs/package-search-index.js new file mode 100644 index 00000000..450d183f --- /dev/null +++ b/docs/apidocs/package-search-index.js @@ -0,0 +1 @@ +packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"javax.measure"},{"l":"javax.measure.format"},{"l":"javax.measure.quantity"},{"l":"javax.measure.spi"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/apidocs/resources/glass.png b/docs/apidocs/resources/glass.png new file mode 100644 index 00000000..a7f591f4 Binary files /dev/null and b/docs/apidocs/resources/glass.png differ diff --git a/docs/apidocs/resources/x.png b/docs/apidocs/resources/x.png new file mode 100644 index 00000000..30548a75 Binary files /dev/null and b/docs/apidocs/resources/x.png differ diff --git a/docs/apidocs/script-dir/jquery-3.6.0.min.js b/docs/apidocs/script-dir/jquery-3.6.0.min.js new file mode 100644 index 00000000..c4c6022f --- /dev/null +++ b/docs/apidocs/script-dir/jquery-3.6.0.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="
",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=x(e||this.defaultElement||this)[0],this.element=x(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=x(),this.hoverable=x(),this.focusable=x(),this.classesElementLookup={},e!==this&&(x.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=x(e.style?e.ownerDocument:e.document||e),this.window=x(this.document[0].defaultView||this.document[0].parentWindow)),this.options=x.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:x.noop,_create:x.noop,_init:x.noop,destroy:function(){var i=this;this._destroy(),x.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:x.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return x.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=x.widget.extend({},this.options[t]),n=0;n
"),i=e.children()[0];return x("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthC(E(s),E(n))?o.important="horizontal":o.important="vertical",c.using.call(this,t,o)}),l.offset(x.extend(u,{using:t}))})},x.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,l=s-o,a=o+e.collisionWidth-n-s;e.collisionWidth>n?0n?0",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=x(t.target),i=x(x.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){x.contains(this.element[0],x.ui.safeActiveElement(this.document[0]))||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=x(t.target).closest(".ui-menu-item"),i=x(t.currentTarget),e[0]===i[0]&&(i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=x(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case x.ui.keyCode.PAGE_UP:this.previousPage(t);break;case x.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case x.ui.keyCode.HOME:this._move("first","first",t);break;case x.ui.keyCode.END:this._move("last","last",t);break;case x.ui.keyCode.UP:this.previous(t);break;case x.ui.keyCode.DOWN:this.next(t);break;case x.ui.keyCode.LEFT:this.collapse(t);break;case x.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case x.ui.keyCode.ENTER:case x.ui.keyCode.SPACE:this._activate(t);break;case x.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),e=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=x(this),e=t.prev(),i=x("").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(e,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=x(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),i=(e=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(e,"ui-menu-item")._addClass(i,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!x.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(i=parseFloat(x.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(x.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-i-s,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&this._isContentEditable(this.element),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)return i=!1,void(this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault());if(!s){var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){if(n)return n=!1,void t.preventDefault();this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=x("
    ").appendTo(this._appendTo()).menu({role:null}).hide().attr({unselectable:"on"}).menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault()},menufocus:function(t,e){var i,s;if(this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent&&/^mouse/.test(t.originalEvent.type)))return this.menu.blur(),void this.document.one("mousemove",function(){x(t.target).trigger(t.originalEvent)});s=e.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:s})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(s.value),(i=e.item.attr("aria-label")||s.value)&&String.prototype.trim.call(i).length&&(clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(x("
    ").text(i))},100))},menuselect:function(t,e){var i=e.item.data("ui-autocomplete-item"),s=this.previous;this.element[0]!==x.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s,this.selectedItem=i})),!1!==this._trigger("select",t,{item:i})&&this._value(i.value),this.term=this._value(),this.close(t),this.selectedItem=i}}),this.liveRegion=x("
    ",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(t){var e=this.menu.element[0];return t.target===this.element[0]||t.target===e||x.contains(e,t.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?x(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_initSource:function(){var i,s,n=this;Array.isArray(this.options.source)?(i=this.options.source,this.source=function(t,e){e(x.ui.autocomplete.filter(i,t.term))}):"string"==typeof this.options.source?(s=this.options.source,this.source=function(t,e){n.xhr&&n.xhr.abort(),n.xhr=x.ajax({url:s,data:t,dataType:"json",success:function(t){e(t)},error:function(){e([])}})}):this.source=this.options.source},_searchTimeout:function(s){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),e=this.menu.element.is(":visible"),i=s.altKey||s.ctrlKey||s.metaKey||s.shiftKey;t&&(e||i)||(this.selectedItem=null,this.search(null,s))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length").append(x("
    ").text(e.label)).appendTo(t)},_move:function(t,e){if(this.menu.element.is(":visible"))return this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),void this.menu.blur()):void this.menu[t](e);this.search(null,e)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){this.isMultiLine&&!this.menu.element.is(":visible")||(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),x.extend(x.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,e){var i=new RegExp(x.ui.autocomplete.escapeRegex(e),"i");return x.grep(t,function(t){return i.test(t.label||t.value||t)})}}),x.widget("ui.autocomplete",x.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(1").text(e))},100))}});x.ui.autocomplete}); \ No newline at end of file diff --git a/docs/apidocs/script.js b/docs/apidocs/script.js new file mode 100644 index 00000000..864989cf --- /dev/null +++ b/docs/apidocs/script.js @@ -0,0 +1,132 @@ +/* + * Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +var moduleSearchIndex; +var packageSearchIndex; +var typeSearchIndex; +var memberSearchIndex; +var tagSearchIndex; +function loadScripts(doc, tag) { + createElem(doc, tag, 'search.js'); + + createElem(doc, tag, 'module-search-index.js'); + createElem(doc, tag, 'package-search-index.js'); + createElem(doc, tag, 'type-search-index.js'); + createElem(doc, tag, 'member-search-index.js'); + createElem(doc, tag, 'tag-search-index.js'); +} + +function createElem(doc, tag, path) { + var script = doc.createElement(tag); + var scriptElement = doc.getElementsByTagName(tag)[0]; + script.src = pathtoroot + path; + scriptElement.parentNode.insertBefore(script, scriptElement); +} + +function show(tableId, selected, columns) { + if (tableId !== selected) { + document.querySelectorAll('div.' + tableId + ':not(.' + selected + ')') + .forEach(function(elem) { + elem.style.display = 'none'; + }); + } + document.querySelectorAll('div.' + selected) + .forEach(function(elem, index) { + elem.style.display = ''; + var isEvenRow = index % (columns * 2) < columns; + elem.classList.remove(isEvenRow ? oddRowColor : evenRowColor); + elem.classList.add(isEvenRow ? evenRowColor : oddRowColor); + }); + updateTabs(tableId, selected); +} + +function updateTabs(tableId, selected) { + document.querySelector('div#' + tableId +' .summary-table') + .setAttribute('aria-labelledby', selected); + document.querySelectorAll('button[id^="' + tableId + '"]') + .forEach(function(tab, index) { + if (selected === tab.id || (tableId === selected && index === 0)) { + tab.className = activeTableTab; + tab.setAttribute('aria-selected', true); + tab.setAttribute('tabindex',0); + } else { + tab.className = tableTab; + tab.setAttribute('aria-selected', false); + tab.setAttribute('tabindex',-1); + } + }); +} + +function switchTab(e) { + var selected = document.querySelector('[aria-selected=true]'); + if (selected) { + if ((e.keyCode === 37 || e.keyCode === 38) && selected.previousSibling) { + // left or up arrow key pressed: move focus to previous tab + selected.previousSibling.click(); + selected.previousSibling.focus(); + e.preventDefault(); + } else if ((e.keyCode === 39 || e.keyCode === 40) && selected.nextSibling) { + // right or down arrow key pressed: move focus to next tab + selected.nextSibling.click(); + selected.nextSibling.focus(); + e.preventDefault(); + } + } +} + +var updateSearchResults = function() {}; + +function indexFilesLoaded() { + return moduleSearchIndex + && packageSearchIndex + && typeSearchIndex + && memberSearchIndex + && tagSearchIndex; +} + +// Workaround for scroll position not being included in browser history (8249133) +document.addEventListener("DOMContentLoaded", function(e) { + var contentDiv = document.querySelector("div.flex-content"); + window.addEventListener("popstate", function(e) { + if (e.state !== null) { + contentDiv.scrollTop = e.state; + } + }); + window.addEventListener("hashchange", function(e) { + history.replaceState(contentDiv.scrollTop, document.title); + }); + contentDiv.addEventListener("scroll", function(e) { + var timeoutID; + if (!timeoutID) { + timeoutID = setTimeout(function() { + history.replaceState(contentDiv.scrollTop, document.title); + timeoutID = null; + }, 100); + } + }); + if (!location.hash) { + history.replaceState(contentDiv.scrollTop, document.title); + } +}); diff --git a/docs/apidocs/search.js b/docs/apidocs/search.js new file mode 100644 index 00000000..2246cdd0 --- /dev/null +++ b/docs/apidocs/search.js @@ -0,0 +1,354 @@ +/* + * Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +var noResult = {l: "No results found"}; +var loading = {l: "Loading search index..."}; +var catModules = "Modules"; +var catPackages = "Packages"; +var catTypes = "Types"; +var catMembers = "Members"; +var catSearchTags = "Search Tags"; +var highlight = "$&"; +var searchPattern = ""; +var fallbackPattern = ""; +var RANKING_THRESHOLD = 2; +var NO_MATCH = 0xffff; +var MIN_RESULTS = 3; +var MAX_RESULTS = 500; +var UNNAMED = ""; +function escapeHtml(str) { + return str.replace(//g, ">"); +} +function getHighlightedText(item, matcher, fallbackMatcher) { + var escapedItem = escapeHtml(item); + var highlighted = escapedItem.replace(matcher, highlight); + if (highlighted === escapedItem) { + highlighted = escapedItem.replace(fallbackMatcher, highlight) + } + return highlighted; +} +function getURLPrefix(ui) { + var urlPrefix=""; + var slash = "/"; + if (ui.item.category === catModules) { + return ui.item.l + slash; + } else if (ui.item.category === catPackages && ui.item.m) { + return ui.item.m + slash; + } else if (ui.item.category === catTypes || ui.item.category === catMembers) { + if (ui.item.m) { + urlPrefix = ui.item.m + slash; + } else { + $.each(packageSearchIndex, function(index, item) { + if (item.m && ui.item.p === item.l) { + urlPrefix = item.m + slash; + } + }); + } + } + return urlPrefix; +} +function createSearchPattern(term) { + var pattern = ""; + var isWordToken = false; + term.replace(/,\s*/g, ", ").trim().split(/\s+/).forEach(function(w, index) { + if (index > 0) { + // whitespace between identifiers is significant + pattern += (isWordToken && /^\w/.test(w)) ? "\\s+" : "\\s*"; + } + var tokens = w.split(/(?=[A-Z,.()<>[\/])/); + for (var i = 0; i < tokens.length; i++) { + var s = tokens[i]; + if (s === "") { + continue; + } + pattern += $.ui.autocomplete.escapeRegex(s); + isWordToken = /\w$/.test(s); + if (isWordToken) { + pattern += "([a-z0-9_$<>\\[\\]]*?)"; + } + } + }); + return pattern; +} +function createMatcher(pattern, flags) { + var isCamelCase = /[A-Z]/.test(pattern); + return new RegExp(pattern, flags + (isCamelCase ? "" : "i")); +} +var watermark = 'Search'; +$(function() { + var search = $("#search-input"); + var reset = $("#reset-button"); + search.val(''); + search.prop("disabled", false); + reset.prop("disabled", false); + search.val(watermark).addClass('watermark'); + search.blur(function() { + if ($(this).val().length === 0) { + $(this).val(watermark).addClass('watermark'); + } + }); + search.on('click keydown paste', function() { + if ($(this).val() === watermark) { + $(this).val('').removeClass('watermark'); + } + }); + reset.click(function() { + search.val('').focus(); + }); + search.focus()[0].setSelectionRange(0, 0); +}); +$.widget("custom.catcomplete", $.ui.autocomplete, { + _create: function() { + this._super(); + this.widget().menu("option", "items", "> :not(.ui-autocomplete-category)"); + }, + _renderMenu: function(ul, items) { + var rMenu = this; + var currentCategory = ""; + rMenu.menu.bindings = $(); + $.each(items, function(index, item) { + var li; + if (item.category && item.category !== currentCategory) { + ul.append("
  • " + item.category + "
  • "); + currentCategory = item.category; + } + li = rMenu._renderItemData(ul, item); + if (item.category) { + li.attr("aria-label", item.category + " : " + item.l); + li.attr("class", "result-item"); + } else { + li.attr("aria-label", item.l); + li.attr("class", "result-item"); + } + }); + }, + _renderItem: function(ul, item) { + var label = ""; + var matcher = createMatcher(escapeHtml(searchPattern), "g"); + var fallbackMatcher = new RegExp(fallbackPattern, "gi") + if (item.category === catModules) { + label = getHighlightedText(item.l, matcher, fallbackMatcher); + } else if (item.category === catPackages) { + label = getHighlightedText(item.l, matcher, fallbackMatcher); + } else if (item.category === catTypes) { + label = (item.p && item.p !== UNNAMED) + ? getHighlightedText(item.p + "." + item.l, matcher, fallbackMatcher) + : getHighlightedText(item.l, matcher, fallbackMatcher); + } else if (item.category === catMembers) { + label = (item.p && item.p !== UNNAMED) + ? getHighlightedText(item.p + "." + item.c + "." + item.l, matcher, fallbackMatcher) + : getHighlightedText(item.c + "." + item.l, matcher, fallbackMatcher); + } else if (item.category === catSearchTags) { + label = getHighlightedText(item.l, matcher, fallbackMatcher); + } else { + label = item.l; + } + var li = $("
  • ").appendTo(ul); + var div = $("
    ").appendTo(li); + if (item.category === catSearchTags && item.h) { + if (item.d) { + div.html(label + " (" + item.h + ")
    " + + item.d + "
    "); + } else { + div.html(label + " (" + item.h + ")"); + } + } else { + if (item.m) { + div.html(item.m + "/" + label); + } else { + div.html(label); + } + } + return li; + } +}); +function rankMatch(match, category) { + if (!match) { + return NO_MATCH; + } + var index = match.index; + var input = match.input; + var leftBoundaryMatch = 2; + var periferalMatch = 0; + // make sure match is anchored on a left word boundary + if (index === 0 || /\W/.test(input[index - 1]) || "_" === input[index]) { + leftBoundaryMatch = 0; + } else if ("_" === input[index - 1] || (input[index] === input[index].toUpperCase() && !/^[A-Z0-9_$]+$/.test(input))) { + leftBoundaryMatch = 1; + } + var matchEnd = index + match[0].length; + var leftParen = input.indexOf("("); + var endOfName = leftParen > -1 ? leftParen : input.length; + // exclude peripheral matches + if (category !== catModules && category !== catSearchTags) { + var delim = category === catPackages ? "/" : "."; + if (leftParen > -1 && leftParen < index) { + periferalMatch += 2; + } else if (input.lastIndexOf(delim, endOfName) >= matchEnd) { + periferalMatch += 2; + } + } + var delta = match[0].length === endOfName ? 0 : 1; // rank full match higher than partial match + for (var i = 1; i < match.length; i++) { + // lower ranking if parts of the name are missing + if (match[i]) + delta += match[i].length; + } + if (category === catTypes) { + // lower ranking if a type name contains unmatched camel-case parts + if (/[A-Z]/.test(input.substring(matchEnd))) + delta += 5; + if (/[A-Z]/.test(input.substring(0, index))) + delta += 5; + } + return leftBoundaryMatch + periferalMatch + (delta / 200); + +} +function doSearch(request, response) { + var result = []; + searchPattern = createSearchPattern(request.term); + fallbackPattern = createSearchPattern(request.term.toLowerCase()); + if (searchPattern === "") { + return this.close(); + } + var camelCaseMatcher = createMatcher(searchPattern, ""); + var fallbackMatcher = new RegExp(fallbackPattern, "i"); + + function searchIndexWithMatcher(indexArray, matcher, category, nameFunc) { + if (indexArray) { + var newResults = []; + $.each(indexArray, function (i, item) { + item.category = category; + var ranking = rankMatch(matcher.exec(nameFunc(item)), category); + if (ranking < RANKING_THRESHOLD) { + newResults.push({ranking: ranking, item: item}); + } + return newResults.length <= MAX_RESULTS; + }); + return newResults.sort(function(e1, e2) { + return e1.ranking - e2.ranking; + }).map(function(e) { + return e.item; + }); + } + return []; + } + function searchIndex(indexArray, category, nameFunc) { + var primaryResults = searchIndexWithMatcher(indexArray, camelCaseMatcher, category, nameFunc); + result = result.concat(primaryResults); + if (primaryResults.length <= MIN_RESULTS && !camelCaseMatcher.ignoreCase) { + var secondaryResults = searchIndexWithMatcher(indexArray, fallbackMatcher, category, nameFunc); + result = result.concat(secondaryResults.filter(function (item) { + return primaryResults.indexOf(item) === -1; + })); + } + } + + searchIndex(moduleSearchIndex, catModules, function(item) { return item.l; }); + searchIndex(packageSearchIndex, catPackages, function(item) { + return (item.m && request.term.indexOf("/") > -1) + ? (item.m + "/" + item.l) : item.l; + }); + searchIndex(typeSearchIndex, catTypes, function(item) { + return request.term.indexOf(".") > -1 ? item.p + "." + item.l : item.l; + }); + searchIndex(memberSearchIndex, catMembers, function(item) { + return request.term.indexOf(".") > -1 + ? item.p + "." + item.c + "." + item.l : item.l; + }); + searchIndex(tagSearchIndex, catSearchTags, function(item) { return item.l; }); + + if (!indexFilesLoaded()) { + updateSearchResults = function() { + doSearch(request, response); + } + result.unshift(loading); + } else { + updateSearchResults = function() {}; + } + response(result); +} +$(function() { + $("#search-input").catcomplete({ + minLength: 1, + delay: 300, + source: doSearch, + response: function(event, ui) { + if (!ui.content.length) { + ui.content.push(noResult); + } else { + $("#search-input").empty(); + } + }, + autoFocus: true, + focus: function(event, ui) { + return false; + }, + position: { + collision: "flip" + }, + select: function(event, ui) { + if (ui.item.category) { + var url = getURLPrefix(ui); + if (ui.item.category === catModules) { + url += "module-summary.html"; + } else if (ui.item.category === catPackages) { + if (ui.item.u) { + url = ui.item.u; + } else { + url += ui.item.l.replace(/\./g, '/') + "/package-summary.html"; + } + } else if (ui.item.category === catTypes) { + if (ui.item.u) { + url = ui.item.u; + } else if (ui.item.p === UNNAMED) { + url += ui.item.l + ".html"; + } else { + url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.l + ".html"; + } + } else if (ui.item.category === catMembers) { + if (ui.item.p === UNNAMED) { + url += ui.item.c + ".html" + "#"; + } else { + url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.c + ".html" + "#"; + } + if (ui.item.u) { + url += ui.item.u; + } else { + url += ui.item.l; + } + } else if (ui.item.category === catSearchTags) { + url += ui.item.u; + } + if (top !== window) { + parent.classFrame.location = pathtoroot + url; + } else { + window.location.href = pathtoroot + url; + } + $("#search-input").focus(); + } + } + }); +}); diff --git a/docs/apidocs/serialized-form.html b/docs/apidocs/serialized-form.html new file mode 100644 index 00000000..e85226c7 --- /dev/null +++ b/docs/apidocs/serialized-form.html @@ -0,0 +1,147 @@ + + + + +Serialized Form (Units of Measurement API 2.2 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Serialized Form

    +
    + +
    + +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/BinaryPrefix.html b/docs/apidocs/src-html/javax/measure/BinaryPrefix.html new file mode 100644 index 00000000..25d46b07 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/BinaryPrefix.html @@ -0,0 +1,324 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032/**
    +033 * Provides support for common binary prefixes to be used by units. For example:
    +034 * <pre>
    +035 * {@code import static systems.uom.unicode.CLDR.*;  // Static import (from Unicode System).
    +036 * import static javax.measure.BinaryPrefix.*; // Static import.
    +037 * import javax.measure.*;
    +038 * import systems.uom.quantity.Information; // (from Systems Quantities)
    +039 * ...
    +040 * Unit<Information> MEBIT  = MEBI(BIT);
    +041 * Unit<Information> GIBYTE = GIBI(BYTE);} 
    +042 * </pre>
    +043 * You could also apply <code>Unit.prefix</code>:
    +044 * <pre>
    +045 * {@code ...
    +046 * Unit<Information> MEBIT  = BIT.prefix(MEBI);
    +047 * Unit<Information> GIBYTE = BYTE.prefix(GIBI);}
    +048 * </pre>
    +049 * 
    +050 * <p>
    +051 * <b>Do not use ordinal() to obtain the numeric representation of BinaryPrefix. Use getValue() and getExponent() instead.</b>
    +052 * </p>
    +053 * 
    +054 * <dl>
    +055 * <dt><span class="strong">Implementation Requirements</span></dt><dd>This is an immutable and thread-safe enum.</dd>
    +056 * </dl> 
    +057 *
    +058 * @author <a href="mailto:werner@units.tech">Werner Keil</a>
    +059 * @version 2.2, May 20, 2023
    +060 * @see <a href="https://en.wikipedia.org/wiki/Binary_prefix">Wikipedia: Binary Prefix</a>
    +061 * @since 2.0
    +062 */
    +063public enum BinaryPrefix implements Prefix {
    +064    /** Prefix for 1024. */
    +065    KIBI("Ki", 1),
    +066    /** Prefix for 1024<sup>2</sup>. */
    +067    MEBI("Mi", 2),
    +068    /** Prefix for 1024<sup>3</sup>. */
    +069    GIBI("Gi", 3),
    +070    /** Prefix for 1024<sup>4</sup>. */
    +071    TEBI("Ti", 4),
    +072    /** Prefix for 1024<sup>5</sup>. */
    +073    PEBI("Pi", 5),
    +074    /** Prefix for 1024<sup>6</sup>. */
    +075    EXBI("Ei", 6),
    +076    /** Prefix for 1024<sup>7</sup>. */
    +077    ZEBI("Zi", 7),
    +078    /** Prefix for 1024<sup>8</sup>. */
    +079    YOBI("Yi", 8);
    +080
    +081    /**
    +082     * The symbol of this prefix, as returned by {@link #getSymbol}.
    +083     *
    +084     * @serial
    +085     * @see #getSymbol()
    +086     */
    +087    private final String symbol;
    +088
    +089    /**
    +090     * Exponent part of the associated factor in base^exponent representation.
    +091     */
    +092    private final int exponent;
    +093
    +094    /**
    +095     * Creates a new prefix.
    +096     *
    +097     * @param symbol
    +098     *          the symbol of this prefix.
    +099     * @param exponent
    +100     *          part of the associated factor in base^exponent representation.
    +101     */
    +102    private BinaryPrefix(String symbol, int exponent) {
    +103        this.symbol = symbol;
    +104        this.exponent = exponent;
    +105    }
    +106
    +107    /**
    +108     * Returns the specified unit multiplied by the factor <code>1024</code> (binary prefix).
    +109     *
    +110     * @param <Q>
    +111     *          type of the quantity measured by the unit.
    +112     * @param unit
    +113     *          any unit.
    +114     * @return <code>unit.multiply(1024)</code>.
    +115     */
    +116    public static <Q extends Quantity<Q>> Unit<Q> KIBI(Unit<Q> unit) {
    +117        return unit.prefix(KIBI);
    +118    }
    +119
    +120    /**
    +121     * Returns the specified unit multiplied by the factor <code>1024<sup>2</sup></code> (binary prefix).
    +122     *
    +123     * @param <Q>
    +124     *          type of the quantity measured by the unit.
    +125     * @param unit
    +126     *          any unit.
    +127     * @return <code>unit.multiply(1048576)</code>.
    +128     */
    +129    public static <Q extends Quantity<Q>> Unit<Q> MEBI(Unit<Q> unit) {
    +130        return unit.prefix(MEBI);
    +131    }
    +132
    +133    /**
    +134     * Returns the specified unit multiplied by the factor <code>1024<sup>3</sup></code> (binary prefix).
    +135     *
    +136     * @param <Q>
    +137     *          type of the quantity measured by the unit.
    +138     * @param unit
    +139     *          any unit.
    +140     * @return <code>unit.multiply(1073741824)</code>.
    +141     */
    +142    public static <Q extends Quantity<Q>> Unit<Q> GIBI(Unit<Q> unit) {
    +143        return unit.prefix(GIBI);
    +144    }
    +145
    +146    /**
    +147     * Returns the specified unit multiplied by the factor <code>1024<sup>4</sup></code> (binary prefix).
    +148     *
    +149     * @param <Q>
    +150     *          type of the quantity measured by the unit.
    +151     * @param unit
    +152     *          any unit.
    +153     * @return <code>unit.multiply(1099511627776L)</code>.
    +154     */
    +155    public static <Q extends Quantity<Q>> Unit<Q> TEBI(Unit<Q> unit) {
    +156        return unit.prefix(TEBI);
    +157    }
    +158
    +159    /**
    +160     * Returns the specified unit multiplied by the factor <code>1024<sup>5</sup></code> (binary prefix).
    +161     *
    +162     * @param <Q>
    +163     *          type of the quantity measured by the unit.
    +164     * @param unit
    +165     *          any unit.
    +166     * @return <code>unit.multiply(1125899906842624L)</code>.
    +167     */
    +168    public static <Q extends Quantity<Q>> Unit<Q> PEBI(Unit<Q> unit) {
    +169        return unit.prefix(PEBI);
    +170    }
    +171
    +172    /**
    +173     * Returns the specified unit multiplied by the factor <code>1024<sup>6</sup></code> (binary prefix).
    +174     *
    +175     * @param <Q>
    +176     *          type of the quantity measured by the unit.
    +177     * @param unit
    +178     *          any unit.
    +179     * @return <code>unit.multiply(1152921504606846976L)</code>.
    +180     */
    +181    public static <Q extends Quantity<Q>> Unit<Q> EXBI(Unit<Q> unit) {
    +182        return unit.prefix(EXBI);
    +183    }
    +184
    +185    /**
    +186     * Returns the specified unit multiplied by the factor <code>1024<sup>7</sup></code> (binary prefix).
    +187     *
    +188     * @param <Q>
    +189     *          type of the quantity measured by the unit.
    +190     * @param unit
    +191     *          any unit.
    +192     * @return <code>unit.multiply(1152921504606846976d)</code>.
    +193     */
    +194    public static <Q extends Quantity<Q>> Unit<Q> ZEBI(Unit<Q> unit) {
    +195        return unit.prefix(ZEBI);
    +196    }
    +197
    +198    /**
    +199     * Returns the specified unit multiplied by the factor <code>1024<sup>8</sup></code> (binary prefix).
    +200     *
    +201     * @param <Q>
    +202     *          type of the quantity measured by the unit.
    +203     * @param unit
    +204     *          any unit.
    +205     * @return <code>unit.multiply(1208925819614629174706176d)</code>.
    +206     */
    +207    public static <Q extends Quantity<Q>> Unit<Q> YOBI(Unit<Q> unit) {
    +208        return unit.prefix(YOBI);
    +209    }
    +210
    +211    /**
    +212     * Returns the symbol of this prefix.
    +213     *
    +214     * @return this prefix symbol, not {@code null}.
    +215     */
    +216    @Override
    +217    public String getSymbol() {
    +218        return symbol;
    +219    }
    +220
    +221    /**
    +222     * Base part of the associated factor in {@code base^exponent} representation. For binary prefix, this is always 1024.
    +223     */
    +224    @Override
    +225    public Integer getValue() {
    +226        return 1024;
    +227    }
    +228
    +229    /**
    +230     * Exponent part of the associated factor in {@code base^exponent} representation.
    +231     */
    +232    @Override
    +233    public int getExponent() {
    +234        return exponent;
    +235    }
    +236
    +237    /**
    +238     * Returns the name of this prefix.
    +239     *
    +240     * @return this prefix name, not {@code null}.
    +241     */
    +242    @Override
    +243    public String getName() {
    +244        return name();
    +245    }
    +246}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/Dimension.html b/docs/apidocs/src-html/javax/measure/Dimension.html new file mode 100644 index 00000000..c4201f0e --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/Dimension.html @@ -0,0 +1,177 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032import java.util.Map;
    +033
    +034/**
    +035 * Represents the dimension of a unit.
    +036 *
    +037 * <p>
    +038 * Concrete dimensions are obtained through the {@link Unit#getDimension()} method.
    +039 * </p>
    +040 *
    +041 * <p>
    +042 * Two units {@code u1} and {@code u2} are {@linkplain Unit#isCompatible(Unit) compatible} if and only if
    +043 * {@code u1.getDimension().equals(u2.getDimension())}.
    +044 * </p>
    +045 *
    +046 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +047 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +048 * @version 1.0, August 8, 2016
    +049 * @since 1.0
    +050 * @see Unit
    +051 * @see <a href="http://en.wikipedia.org/wiki/Dimensional_analysis">Wikipedia: Dimensional Analysis</a>
    +052 */
    +053public interface Dimension {
    +054    /**
    +055     * Returns the product of this dimension with the one specified.
    +056     *
    +057     * @param multiplicand
    +058     *          the dimension multiplicand.
    +059     * @return {@code this * multiplicand}
    +060     */
    +061    Dimension multiply(Dimension multiplicand);
    +062
    +063    /**
    +064     * Returns the quotient of this dimension with the one specified.
    +065     *
    +066     * @param divisor
    +067     *          the dimension divisor.
    +068     * @return {@code this / divisor}
    +069     */
    +070    Dimension divide(Dimension divisor);
    +071
    +072    /**
    +073     * Returns this dimension raised to an exponent. <code>(this<sup>n</sup>)</code>
    +074     *
    +075     * @param n
    +076     *          power to raise this {@code Dimension} to.
    +077     * @return <code>this<sup>n</sup></code>
    +078     */
    +079    Dimension pow(int n);
    +080
    +081    /**
    +082     * Returns the given root of this dimension.
    +083     *
    +084     * @param n
    +085     *          the root's order.
    +086     * @return the result of taking the given root of this dimension.
    +087     * @throws ArithmeticException
    +088     *           if {@code n == 0}.
    +089     */
    +090    Dimension root(int n);
    +091
    +092    /**
    +093     * Returns the (fundamental) base dimensions and their exponent whose product is this dimension, or {@code null} if this dimension is a base
    +094     * dimension.
    +095     *
    +096     * @return the mapping between the fundamental dimensions and their exponent.
    +097     */
    +098    Map<? extends Dimension, Integer> getBaseDimensions();
    +099}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/IncommensurableException.html b/docs/apidocs/src-html/javax/measure/IncommensurableException.html new file mode 100644 index 00000000..01b82d84 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/IncommensurableException.html @@ -0,0 +1,164 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032/**
    +033 * Signals that a problem of some sort has occurred due to incommensurable of some quantities/units. Only commensurable quantity (quantities with the
    +034 * same dimensions) may be compared, equated, added, or subtracted. Also, one unit can be converted to another unit only if both units are
    +035 * commensurable.
    +036 * <p>
    +037 * This is a <strong>checked</strong> exception, so it deliberately doesn't inherit from <code>MeasurementException</code> like most other exceptions.
    +038 * </p>
    +039 *
    +040 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +041 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +042 * @version 1.0, August 8, 2016
    +043 * @since 1.0
    +044 *
    +045 * @see <a href="http://en.wikipedia.org/wiki/Unit_commensurability#Commensurability">Wikipedia: Unit Commensurability</a>
    +046 */
    +047public class IncommensurableException extends Exception {
    +048    /**
    +049     * For cross-version compatibility.
    +050     */
    +051    private static final long serialVersionUID = -3676414292638136515L;
    +052
    +053    /**
    +054     * Constructs a {@code IncommensurableException} with the given message.
    +055     *
    +056     * @param message
    +057     *            the detail message, or {@code null} if none.
    +058     */
    +059    public IncommensurableException(final String message) {
    +060        super(message);
    +061    }
    +062
    +063    /**
    +064     * Constructs a {@code IncommensurableException} with the given cause.
    +065     *
    +066     * @param cause
    +067     *            the cause of this exception, or {@code null} if none.
    +068     *
    +069     */
    +070    public IncommensurableException(final Throwable cause) {
    +071        super(cause);
    +072    }
    +073
    +074    /**
    +075     * Constructs a {@code IncommensurableException} with the given message and cause.
    +076     *
    +077     * @param message
    +078     *            the detail message, or {@code null} if none.
    +079     * @param cause
    +080     *            the cause of this exception, or {@code null} if none.
    +081     *
    +082     */
    +083    public IncommensurableException(final String message, final Throwable cause) {
    +084        super(message, cause);
    +085    }
    +086}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/MeasurementError.html b/docs/apidocs/src-html/javax/measure/MeasurementError.html new file mode 100644 index 00000000..24d97882 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/MeasurementError.html @@ -0,0 +1,167 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032/**
    +033 * This error is used to indicate serious problems with creating, retrieving and manipulating units of measurement objects.
    +034 *
    +035 * <dl>
    +036 * <dt><span class="strong">Implementation Requirements:</span></dt>
    +037 * <dd>This class is intended for use in a single thread. Exception thrown when errors occur during Units of Measurement operations.</dd>
    +038 * </dl>
    +039 * 
    +040 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +041 * @version 2.2, Feb 3, 2021
    +042 * @since 2.1
    +043 */
    +044public class MeasurementError extends Error {
    +045
    +046    /**
    +047         * 
    +048         */
    +049    private static final long serialVersionUID = -412360965273525777L;
    +050
    +051    /**
    +052     * Constructs a {@code MeasurementError} with no detail message.
    +053     */
    +054    public MeasurementError() {
    +055        super();
    +056    }
    +057
    +058    /**
    +059     * Constructs a {@code MeasurementError} with the specified detail message.
    +060     *
    +061     * @param message
    +062     *            the detail message.
    +063     */
    +064    public MeasurementError(final String message) {
    +065        super(message);
    +066    }
    +067
    +068    /**
    +069     * Constructs a {@code MeasurementError} with the given cause.
    +070     *
    +071     * @param cause
    +072     *            the cause of this exception, or {@code null} if none.
    +073     */
    +074    public MeasurementError(final Throwable cause) {
    +075        super(cause);
    +076    }
    +077
    +078    /**
    +079     * Constructs a {@code MeasurementError} with the specified detail message and cause.
    +080     *
    +081     * @param message
    +082     *            the detail message.
    +083     * @param cause
    +084     *            the cause, may be {@code null}
    +085     */
    +086    public MeasurementError(final String message, final Throwable cause) {
    +087        super(message, cause);
    +088    }
    +089}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/MeasurementException.html b/docs/apidocs/src-html/javax/measure/MeasurementException.html new file mode 100644 index 00000000..2b5524f4 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/MeasurementException.html @@ -0,0 +1,177 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030//
    +031// This source code implements specifications defined by the Java
    +032// Community Process. In order to remain compliant with the specification
    +033// DO NOT add / change / or delete method signatures!
    +034//
    +035package javax.measure;
    +036
    +037/**
    +038 * Exception used to indicate a problem while dealing with units of measurement.
    +039 * <p>
    +040 * This exception is used to indicate problems with creating, retrieving and manipulating units of measurement objects.
    +041 * </p>
    +042 *
    +043 * <dl>
    +044 * <dt><span class="strong">Implementation Requirements:</span></dt>
    +045 * <dd>This class is intended for use in a single thread. Exception thrown when errors occur during Units of Measurement operations.</dd>
    +046 * </dl>
    +047 *
    +048 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +049 * @version 2.0, Jul 4, 2020
    +050 * @since 1.0
    +051 */
    +052public class MeasurementException extends RuntimeException {
    +053
    +054    /**
    +055     * For cross-version compatibility.
    +056     */
    +057    private static final long serialVersionUID = 8959937033300443361L;
    +058
    +059    /**
    +060     * Constructs a {@code MeasurementException} with the given message.
    +061     *
    +062     * @param message
    +063     *            the detail message, or {@code null} if none.
    +064     */
    +065    public MeasurementException(final String message) {
    +066        super(message);
    +067    }
    +068
    +069    /**
    +070     * Constructs a {@code MeasurementException} with the given cause.
    +071     *
    +072     * @param cause
    +073     *            the cause of this exception, or {@code null} if none.
    +074     */
    +075    public MeasurementException(final Throwable cause) {
    +076        super(cause);
    +077    }
    +078
    +079    /**
    +080     * Constructs a {@code MeasurementException} with the given message and cause.
    +081     *
    +082     * @param message
    +083     *            the detail message, or {@code null} if none.
    +084     * @param cause
    +085     *            the cause of this exception, or {@code null} if none.
    +086     *
    +087     */
    +088    public MeasurementException(final String message, final Throwable cause) {
    +089        super(message, cause);
    +090    }
    +091
    +092    /**
    +093     * Constructs a {@code MeasurementException} with no given message.
    +094     *
    +095     */
    +096    protected MeasurementException() {
    +097        super();
    +098    }
    +099}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/MetricPrefix.html b/docs/apidocs/src-html/javax/measure/MetricPrefix.html new file mode 100644 index 00000000..a2f8680f --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/MetricPrefix.html @@ -0,0 +1,616 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032/**
    +033 * Provides support for the 24 prefixes used in the metric system (decimal multiples and submultiples of units). For example:
    +034 *
    +035 * <pre>
    +036 * {@code import static tech.units.indriya.unit.Units.*;  // Static import (from the RI).
    +037 * import static javax.measure.MetricPrefix.*; // Static import.
    +038 * import javax.measure.*;
    +039 * import javax.measure.quantity.*;
    +040 * ...
    +041 * Unit<Pressure> HECTOPASCAL = HECTO(PASCAL);
    +042 * Unit<Length> KILOMETRE = KILO(METRE);} 
    +043 * </pre>
    +044 * You could also apply <code>Unit.prefix</code>:
    +045 * <pre>
    +046 * {@code ...
    +047 * Unit<Pressure> HECTOPASCAL = PASCAL.prefix(HECTO);
    +048 * Unit<Length> KILOMETRE = METRE.prefix(KILO);}
    +049 * </pre>
    +050 * 
    +051 * <p>
    +052 * <b>Do not use ordinal() to obtain the numeric representation of MetricPrefix. Use getValue() and getExponent() instead.</b>
    +053 * </p>
    +054 * 
    +055 * <dl>
    +056 * <dt><span class="strong">Implementation Requirements</span></dt><dd>This is an immutable and thread-safe enum.</dd>
    +057 * </dl>
    +058 * 
    +059 * @see <a href="https://en.wikipedia.org/wiki/Metric_prefix">Wikipedia: Metric Prefix</a>
    +060 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +061 * @author <a href="mailto:werner@units.tech">Werner Keil</a>
    +062 * @version 2.3, May 20, 2023
    +063 * @since 2.0
    +064 */
    +065public enum MetricPrefix implements Prefix {
    +066        /** Prefix for 10<sup>30</sup>. */
    +067    QUETTA("Q", 30),
    +068        /** Prefix for 10<sup>27</sup>. */
    +069    RONNA("R", 27),
    +070        /** Prefix for 10<sup>24</sup>. */
    +071    YOTTA("Y", 24),
    +072    /** Prefix for 10<sup>21</sup>. */
    +073    ZETTA("Z", 21),
    +074    /** Prefix for 10<sup>18</sup>. */
    +075    EXA("E", 18),
    +076    /** Prefix for 10<sup>15</sup>. */
    +077    PETA("P", 15),
    +078    /** Prefix for 10<sup>12</sup>. */
    +079    TERA("T", 12),
    +080    /** Prefix for 10<sup>9</sup>.
    +081     * @see <a href="https://en.wikipedia.org/wiki/Giga-">Wikipedia: Giga</a>  
    +082     */
    +083    GIGA("G", 9),
    +084    /** Prefix for 10<sup>6</sup>. 
    +085     * @see <a href="https://en.wikipedia.org/wiki/Mega-">Wikipedia: Mega</a> */
    +086    MEGA("M", 6),
    +087    /** Prefix for 10<sup>3</sup>.
    +088     * @see <a href="https://en.wikipedia.org/wiki/Kilo-">Wikipedia: Kilo</a> 
    +089     */
    +090    KILO("k", 3),
    +091    /** Prefix for 10<sup>2</sup>. 
    +092     * @see <a href="https://en.wikipedia.org/wiki/Hecto-">Wikipedia: Hecto</a> */
    +093    HECTO("h", 2),
    +094    /** Prefix for 10<sup>1</sup>. 
    +095     * @see <a href="https://en.wikipedia.org/wiki/Deca-">Wikipedia: Deca</a> */
    +096    DECA("da", 1),
    +097    /** Prefix for 10<sup>-1</sup>. 
    +098     * @see <a href="https://en.wikipedia.org/wiki/Deci-">Wikipedia: Deci</a> */
    +099    DECI("d", -1),
    +100    /** Prefix for 10<sup>-2</sup>.
    +101     * @see <a href="https://en.wikipedia.org/wiki/Centi-">Wikipedia: Centi</a> */     
    +102    CENTI("c", -2),
    +103    /** Prefix for 10<sup>-3</sup>.
    +104     * @see <a href="https://en.wikipedia.org/wiki/Milli-">Wikipedia: Milli</a> */
    +105    MILLI("m", -3),
    +106    /** Prefix for 10<sup>-6</sup>.
    +107     * @see <a href="https://en.wikipedia.org/wiki/Micro-">Wikipedia: Micro</a> */
    +108    MICRO("\u00b5", -6),
    +109    /** Prefix for 10<sup>-9</sup>.
    +110     * @see <a href="https://en.wikipedia.org/wiki/Nano-">Wikipedia: Nano</a> */
    +111    NANO("n", -9),
    +112    /** Prefix for 10<sup>-12</sup>. */
    +113    PICO("p", -12),
    +114    /** Prefix for 10<sup>-15</sup>. */
    +115    FEMTO("f", -15),
    +116    /** Prefix for 10<sup>-18</sup>. */
    +117    ATTO("a", -18),
    +118    /** Prefix for 10<sup>-21</sup>. */
    +119    ZEPTO("z", -21),
    +120    /** Prefix for 10<sup>-24</sup>. */
    +121    YOCTO("y", -24),
    +122        /** Prefix for 10<sup>-27</sup>. */
    +123    RONTO("r", -27),
    +124    /** Prefix for 10<sup>-30</sup>. */
    +125    QUECTO("q", -30);
    +126
    +127    /**
    +128     * The symbol of this prefix, as returned by {@link #getSymbol}.
    +129     *
    +130     * @serial
    +131     * @see #getSymbol()
    +132     */
    +133    private final String symbol;
    +134
    +135    /**
    +136     * Exponent part of the associated factor in base^exponent representation.
    +137     */
    +138    private final int exponent;
    +139
    +140    /**
    +141     * Creates a new prefix.
    +142     *
    +143     * @param symbol
    +144     *          the symbol of this prefix.
    +145     * @param exponent
    +146     *          part of the associated factor in base^exponent representation.
    +147     */
    +148    private MetricPrefix(String symbol, int exponent) {
    +149        this.symbol = symbol;
    +150        this.exponent = exponent;
    +151    }
    +152    
    +153    /**
    +154     * Returns the specified unit multiplied by the factor <code>10<sup>30</sup></code>
    +155     *
    +156     * @param <Q>
    +157     *          type of the quantity measured by the unit.
    +158     * @param unit
    +159     *          any unit.
    +160     * @return <code>unit.times(1e30)</code>.
    +161     * @see #QUETTA
    +162     */
    +163    public static <Q extends Quantity<Q>> Unit<Q> QUETTA(Unit<Q> unit) {
    +164        return unit.prefix(QUETTA);
    +165    }
    +166    
    +167    /**
    +168     * Returns the specified unit multiplied by the factor <code>10<sup>27</sup></code>
    +169     *
    +170     * @param <Q>
    +171     *          type of the quantity measured by the unit.
    +172     * @param unit
    +173     *          any unit.
    +174     * @return <code>unit.times(1e27)</code>.
    +175     * @see #RONNA
    +176     */
    +177    public static <Q extends Quantity<Q>> Unit<Q> RONNA(Unit<Q> unit) {
    +178        return unit.prefix(RONNA);
    +179    }
    +180
    +181    /**
    +182     * Returns the specified unit multiplied by the factor <code>10<sup>24</sup></code>
    +183     *
    +184     * @param <Q>
    +185     *          type of the quantity measured by the unit.
    +186     * @param unit
    +187     *          any unit.
    +188     * @return <code>unit.times(1e24)</code>.
    +189     * @see #YOTTA
    +190     */
    +191    public static <Q extends Quantity<Q>> Unit<Q> YOTTA(Unit<Q> unit) {
    +192        return unit.prefix(YOTTA);
    +193    }
    +194
    +195    /**
    +196     * Returns the specified unit multiplied by the factor <code>10<sup>21</sup></code>
    +197     *
    +198     * @param <Q>
    +199     *          type of the quantity measured by the unit.
    +200     * @param unit
    +201     *          any unit.
    +202     * @return <code>unit.times(1e21)</code>.
    +203     * @see #ZETTA
    +204     */
    +205    public static <Q extends Quantity<Q>> Unit<Q> ZETTA(Unit<Q> unit) {
    +206        return unit.prefix(ZETTA);
    +207    }
    +208
    +209    /**
    +210     * Returns the specified unit multiplied by the factor <code>10<sup>18</sup></code>
    +211     *
    +212     * @param <Q>
    +213     *          type of the quantity measured by the unit.
    +214     * @param unit
    +215     *          any unit.
    +216     * @return <code>unit.times(1e18)</code>.
    +217     * @see #EXA
    +218     */
    +219    public static <Q extends Quantity<Q>> Unit<Q> EXA(Unit<Q> unit) {
    +220        return unit.prefix(EXA);
    +221    }
    +222
    +223    /**
    +224     * Returns the specified unit multiplied by the factor <code>10<sup>15</sup></code>
    +225     *
    +226     * @param <Q>
    +227     *          type of the quantity measured by the unit.
    +228     * @param unit
    +229     *          any unit.
    +230     * @return <code>unit.times(1e15)</code>.
    +231     * @see #PETA
    +232     */
    +233    public static <Q extends Quantity<Q>> Unit<Q> PETA(Unit<Q> unit) {
    +234        return unit.prefix(PETA);
    +235    }
    +236
    +237    /**
    +238     * Returns the specified unit multiplied by the factor <code>10<sup>12</sup></code>
    +239     *
    +240     * @param <Q>
    +241     *          type of the quantity measured by the unit.
    +242     * @param unit
    +243     *          any unit.
    +244     * @return <code>unit.times(1e12)</code>.
    +245     * @see #TERA
    +246     */
    +247    public static <Q extends Quantity<Q>> Unit<Q> TERA(Unit<Q> unit) {
    +248        return unit.prefix(TERA);
    +249    }
    +250
    +251    /**
    +252     * Returns the specified unit multiplied by the factor <code>10<sup>9</sup></code>
    +253     *
    +254     * @param <Q>
    +255     *          type of the quantity measured by the unit.
    +256     * @param unit
    +257     *          any unit.
    +258     * @return <code>unit.times(1e9)</code>.
    +259     * @see #GIGA
    +260     */
    +261    public static <Q extends Quantity<Q>> Unit<Q> GIGA(Unit<Q> unit) {
    +262        return unit.prefix(GIGA);
    +263    }
    +264
    +265    /**
    +266     * Returns the specified unit multiplied by the factor <code>10<sup>6</sup></code>
    +267     *
    +268     * @param <Q>
    +269     *          type of the quantity measured by the unit.
    +270     * @param unit
    +271     *          any unit.
    +272     * @return <code>unit.times(1e6)</code>.
    +273     * @see #MEGA
    +274     */
    +275    public static <Q extends Quantity<Q>> Unit<Q> MEGA(Unit<Q> unit) {
    +276        return unit.prefix(MEGA);
    +277    }
    +278
    +279    /**
    +280     * Returns the specified unit multiplied by the factor <code>10<sup>3</sup></code>
    +281     *
    +282     * @param <Q>
    +283     *          type of the quantity measured by the unit.
    +284     * @param unit
    +285     *          any unit.
    +286     * @return <code>unit.times(1e3)</code>.
    +287     * @see #KILO
    +288     */
    +289    public static <Q extends Quantity<Q>> Unit<Q> KILO(Unit<Q> unit) {
    +290        return unit.prefix(KILO);
    +291    }
    +292
    +293    /**
    +294     * Returns the specified unit multiplied by the factor <code>10<sup>2</sup></code>
    +295     *
    +296     * @param <Q>
    +297     *          type of the quantity measured by the unit.
    +298     * @param unit
    +299     *          any unit.
    +300     * @return <code>unit.times(1e2)</code>.
    +301     * @see #HECTO
    +302     */
    +303    public static <Q extends Quantity<Q>> Unit<Q> HECTO(Unit<Q> unit) {
    +304        return unit.prefix(HECTO);
    +305    }
    +306
    +307    /**
    +308     * Returns the specified unit multiplied by the factor <code>10<sup>1</sup></code>
    +309     *
    +310     * @param <Q>
    +311     *          type of the quantity measured by the unit.
    +312     * @param unit
    +313     *          any unit.
    +314     * @return <code>unit.times(1e1)</code>.
    +315     * @see #DECA
    +316     */
    +317    public static <Q extends Quantity<Q>> Unit<Q> DECA(Unit<Q> unit) {
    +318        return unit.prefix(DECA);
    +319    }
    +320    
    +321    /**
    +322     * US alias for <code>DECA</code>.
    +323     *
    +324     * @param <Q>
    +325     *          type of the quantity measured by the unit.
    +326     * @param unit
    +327     *          any unit.
    +328     * @return <code>unit.times(1e1)</code>.
    +329     * @see #DECA
    +330     */
    +331    public static <Q extends Quantity<Q>> Unit<Q> DEKA(Unit<Q> unit) {
    +332        return unit.prefix(DECA);
    +333    }
    +334
    +335    /**
    +336     * Returns the specified unit multiplied by the factor <code>10<sup>-1</sup></code>
    +337     *
    +338     * @param <Q>
    +339     *          type of the quantity measured by the unit.
    +340     * @param unit
    +341     *          any unit.
    +342     * @return <code>unit.times(1e-1)</code>.
    +343     * @see #DECI 
    +344     */
    +345    public static <Q extends Quantity<Q>> Unit<Q> DECI(Unit<Q> unit) {
    +346        return unit.prefix(DECI);
    +347    }
    +348
    +349    /**
    +350     * Returns the specified unit multiplied by the factor <code>10<sup>-2</sup></code>
    +351     *
    +352     * @param <Q>
    +353     *          type of the quantity measured by the unit.
    +354     * @param unit
    +355     *          any unit.
    +356     * @return <code>unit.times(1e-2)</code>.
    +357     * @see #CENTI
    +358     */
    +359    public static <Q extends Quantity<Q>> Unit<Q> CENTI(Unit<Q> unit) {
    +360        return unit.prefix(CENTI);
    +361    }
    +362
    +363    /**
    +364     * Returns the specified unit multiplied by the factor <code>10<sup>-3</sup></code>
    +365     *
    +366     * @param <Q>
    +367     *          type of the quantity measured by the unit.
    +368     * @param unit
    +369     *          any unit.
    +370     * @return <code>unit.times(1e-3)</code>.
    +371     * @see #MILLI
    +372     */
    +373    public static <Q extends Quantity<Q>> Unit<Q> MILLI(Unit<Q> unit) {
    +374        return unit.prefix(MILLI);
    +375    }
    +376
    +377    /**
    +378     * Returns the specified unit multiplied by the factor <code>10<sup>-6</sup></code>
    +379     *
    +380     * @param <Q>
    +381     *          type of the quantity measured by the unit.
    +382     * @param unit
    +383     *          any unit.
    +384     * @return <code>unit.times(1e-6)</code>.
    +385     * @see #MICRO 
    +386     */
    +387    public static <Q extends Quantity<Q>> Unit<Q> MICRO(Unit<Q> unit) {
    +388        return unit.prefix(MICRO);
    +389    }
    +390
    +391    /**
    +392     * Returns the specified unit multiplied by the factor <code>10<sup>-9</sup></code>
    +393     *
    +394     * @param <Q>
    +395     *          type of the quantity measured by the unit.
    +396     * @param unit
    +397     *          any unit.
    +398     * @return <code>unit.times(1e-9)</code>.
    +399     * @see #NANO 
    +400     */
    +401    public static <Q extends Quantity<Q>> Unit<Q> NANO(Unit<Q> unit) {
    +402        return unit.prefix(NANO);
    +403    }
    +404
    +405    /**
    +406     * Returns the specified unit multiplied by the factor <code>10<sup>-12</sup></code>
    +407     *
    +408     * @param <Q>
    +409     *          type of the quantity measured by the unit.
    +410     * @param unit
    +411     *          any unit.
    +412     * @return <code>unit.times(1e-12)</code>.
    +413     * @see #PICO
    +414     */
    +415    public static <Q extends Quantity<Q>> Unit<Q> PICO(Unit<Q> unit) {
    +416        return unit.prefix(PICO);
    +417    }
    +418
    +419    /**
    +420     * Returns the specified unit multiplied by the factor <code>10<sup>-15</sup></code>
    +421     *
    +422     * @param <Q>
    +423     *          type of the quantity measured by the unit.
    +424     * @param unit
    +425     *          any unit.
    +426     * @return <code>unit.times(1e-15)</code>.
    +427     * @see #FEMTO
    +428     */
    +429    public static <Q extends Quantity<Q>> Unit<Q> FEMTO(Unit<Q> unit) {
    +430        return unit.prefix(FEMTO);
    +431    }
    +432
    +433    /**
    +434     * Returns the specified unit multiplied by the factor <code>10<sup>-18</sup></code>
    +435     *
    +436     * @param <Q>
    +437     *          type of the quantity measured by the unit.
    +438     * @param unit
    +439     *          any unit.
    +440     * @return <code>unit.times(1e-18)</code>.
    +441     * @see #ATTO 
    +442     */
    +443    public static <Q extends Quantity<Q>> Unit<Q> ATTO(Unit<Q> unit) {
    +444        return unit.prefix(ATTO);
    +445    }
    +446
    +447    /**
    +448     * Returns the specified unit multiplied by the factor <code>10<sup>-21</sup></code>
    +449     *
    +450     * @param <Q>
    +451     *          type of the quantity measured by the unit.
    +452     * @param unit
    +453     *          any unit.
    +454     * @return <code>unit.times(1e-21)</code>.
    +455     * #see ZEPTO
    +456     */
    +457    public static <Q extends Quantity<Q>> Unit<Q> ZEPTO(Unit<Q> unit) {
    +458        return unit.prefix(ZEPTO);
    +459    }
    +460
    +461    /**
    +462     * Returns the specified unit multiplied by the factor <code>10<sup>-24</sup></code>
    +463     *
    +464     * @param <Q>
    +465     *          type of the quantity measured by the unit.
    +466     * @param unit
    +467     *          any unit.
    +468     * @return <code>unit.times(1e-24)</code>.
    +469     * @see #YOCTO
    +470     */
    +471    public static <Q extends Quantity<Q>> Unit<Q> YOCTO(Unit<Q> unit) {
    +472        return unit.prefix(YOCTO);
    +473    }
    +474    
    +475    /**
    +476     * Returns the specified unit multiplied by the factor <code>10<sup>-27</sup></code>
    +477     *
    +478     * @param <Q>
    +479     *          type of the quantity measured by the unit.
    +480     * @param unit
    +481     *          any unit.
    +482     * @return <code>unit.times(1e-27)</code>.
    +483     * @see #RONTO
    +484     */
    +485    public static <Q extends Quantity<Q>> Unit<Q> RONTO(Unit<Q> unit) {
    +486        return unit.prefix(RONTO);
    +487    }
    +488
    +489    /**
    +490     * Returns the specified unit multiplied by the factor <code>10<sup>-30</sup></code>
    +491     *
    +492     * @param <Q>
    +493     *          type of the quantity measured by the unit.
    +494     * @param unit
    +495     *          any unit.
    +496     * @return <code>unit.times(1e-30)</code>.
    +497     * @see #QUECTO
    +498     */
    +499    public static <Q extends Quantity<Q>> Unit<Q> QUECTO(Unit<Q> unit) {
    +500        return unit.prefix(QUECTO);
    +501    }
    +502    
    +503    /**
    +504     * Returns the symbol of this prefix.
    +505     *
    +506     * @return this prefix symbol, not {@code null}.
    +507     */
    +508    @Override
    +509    public String getSymbol() {
    +510        return symbol;
    +511    }
    +512
    +513    /**
    +514     * Base part of the associated factor in {@code base^exponent} representation. For metric prefix, this is always 10.
    +515     */
    +516    @Override
    +517    public Integer getValue() {
    +518        return 10;
    +519    }
    +520
    +521    /**
    +522     * Exponent part of the associated factor in {@code base^exponent} representation.
    +523     */
    +524    @Override
    +525    public int getExponent() {
    +526        return exponent;
    +527    }
    +528
    +529    /**
    +530     * Returns the name of this prefix.
    +531     *
    +532     * @return this prefix name, not {@code null}.
    +533     */
    +534    @Override
    +535    public String getName() {
    +536        return name();
    +537    }
    +538}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/Prefix.html b/docs/apidocs/src-html/javax/measure/Prefix.html new file mode 100644 index 00000000..ce79e29a --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/Prefix.html @@ -0,0 +1,148 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032/**
    +033 * A unit prefix is a specifier or mnemonic that is prepended to units of measurement to indicate multiples or fractions of the units.
    +034 *
    +035 * @see <a href="https://en.wikipedia.org/wiki/Unit_prefix">Wikipedia: Unit Prefix</a>
    +036 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +037 * @version 1.4, April 3, 2023
    +038 * @since 2.0
    +039 */
    +040public interface Prefix {
    +041    /**
    +042     * Returns the name of this prefix.
    +043     *
    +044     * @return this prefix name, not {@code null}.
    +045     */
    +046    String getName();
    +047
    +048    /**
    +049     * Returns the symbol of this prefix.
    +050     *
    +051     * @return this prefix symbol, not {@code null}.
    +052     */
    +053    public String getSymbol();
    +054
    +055    /**
    +056     * Returns the value of this prefix. If the {@code exponent} is different from {@code 1}, this value is the {@code base} part of the associated
    +057     * factor in {@code base^exponent} representation.
    +058     * 
    +059     * @return The prefix value.
    +060     */
    +061    Number getValue();
    +062
    +063    /**
    +064     * Exponent part of the associated factor in {@code base^exponent} representation. For different factors, e.g. rational numbers like {@code 1/4}
    +065     * the exponent is always {@code 1}.
    +066     *
    +067     * @return the exponent part of this prefix.
    +068     */
    +069    int getExponent();
    +070}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/Quantity.Scale.html b/docs/apidocs/src-html/javax/measure/Quantity.Scale.html new file mode 100644 index 00000000..e6e94aaa --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/Quantity.Scale.html @@ -0,0 +1,394 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032/**
    +033 * Represents a quantitative property of a phenomenon, body, or substance, that
    +034 * can be quantified by measurement. {@link javax.measure.quantity.Mass Mass},
    +035 * time, distance, heat, and angular separation are among the familiar examples
    +036 * of quantitative properties.
    +037 * <p>
    +038 * <code> {@literal Unit<Mass>} pound = ... {@literal Quantity<Length>} size = ... {@literal Sensor<Temperature>}<br>
    +039 * thermometer = ... {@literal Vector3D<Speed>} aircraftSpeed = ... </code>
    +040 * </p>
    +041 *
    +042 * <dl>
    +043 * <dt><span class="strong">Arithmetic operations</span></dt>
    +044 * </dl> 
    +045 * This interface defines some arithmetic operations between {@code Quantity}
    +046 * instances. All implementations shall produce <em>equivalent</em> results for
    +047 * the same operation applied on equivalent quantities. Two quantities are
    +048 * equivalent if, after conversion to the same unit of measurement, they have
    +049 * the same numerical value (ignoring rounding errors). For example 2000 metres
    +050 * is equivalent to 2 km, but 2°C is not equivalent to 2 K; it is equivalent to
    +051 * 275.15 K instead. Above requirement applied to addition means that 2°C + 2 K
    +052 * shall be equivalent to 275.15 K + 2 K.
    +053 *
    +054 * <p>All operations shall preserve the
    +055 * <a href="https://en.wikiversity.org/wiki/Basic_Laws_of_Algebra">basic laws
    +056 * of algebra</a>, in particular <b>commutativity</b> of addition and
    +057 * multiplication (<var>A</var> + <var>B</var> = <var>B</var> + <var>A</var>)
    +058 * and <b>associativity</b> of addition and multiplication (<var>A</var> +
    +059 * <var>B</var>) + <var>C</var> = <var>A</var> + (<var>B</var> + <var>C</var>).
    +060 * In order to preserve those algebra laws, this specification requires all
    +061 * arithmetic operations to execute <em>as is</em> all operands were converted
    +062 * to {@linkplain Unit#getSystemUnit() system unit} before the operation is
    +063 * carried out, and the result converted back to any compatible unit at
    +064 * implementation choice. For example 4 cm + 1 inch shall produce any result
    +065 * <em>equivalent</em> to 0.04 m + 0.0254 m.</p>
    +066 *
    +067 * <p>Implementations are allowed to avoid conversion to system unit if the
    +068 * result is guaranteed to be equivalent. This is often the case when the
    +069 * conversion between quantity unit and system unit is only a
    +070 * {@linkplain UnitConverter#isLinear() scale factor}. However this is not
    +071 * the case for conversions applying an offset or more complex formula.
    +072 * For example 2°C + 1°C = 274.15°C, not 3°C. This counter-intuitive result
    +073 * is essential for preserving algebra laws like associativity, and is also
    +074 * the expected result from a thermodynamic point of view.</p>
    +075 *
    +076 * <dl>
    +077 * <dt><span class="strong">API Note:</span></dt><dd>This interface places no restrictions on the mutability of
    +078 *          implementations, however immutability is strongly recommended. All
    +079 *          implementations must be {@link Comparable}.</dd>
    +080 * </dl>
    +081 *
    +082 * @param <Q>
    +083 *            The type of the quantity.
    +084 *
    +085 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +086 * @author <a href="mailto:martin.desruisseaux@geomatys.com">Martin
    +087 *         Desruisseaux</a>
    +088 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +089 * @author <a href="mailto:otaviopolianasantana@gmail.com">Otavio Santana</a>
    +090 * @see Unit
    +091 * @see <a href="http://en.wikipedia.org/wiki/Quantity">Wikipedia: Quantity</a>
    +092 * @see <a href="http://martinfowler.com/eaaDev/quantity.html">Martin Fowler -
    +093 *      Quantity</a>
    +094 * @version 2.5, May 20, 2023
    +095 * @since 1.0
    +096 */
    +097public interface Quantity<Q extends Quantity<Q>> {
    +098    
    +099   /**
    +100    * The scale of a {@link Quantity}, either {@code ABSOLUTE} or {@code RELATIVE}.
    +101    *
    +102    * @since 2.0
    +103    * @see <a href="https://en.wikipedia.org/wiki/Absolute_scale">Wikipedia: Absolute scale</a>
    +104    */
    +105    public static enum Scale {
    +106        /** 
    +107         * Absolute scale
    +108         * @see <a href="https://en.wikipedia.org/wiki/Absolute_scale">Wikipedia: Absolute scale</a> 
    +109         */
    +110        ABSOLUTE, 
    +111        /** 
    +112         * Relative scale 
    +113         */
    +114        RELATIVE
    +115    }
    +116       
    +117    /**
    +118     * Returns the sum of this {@code Quantity} with the one specified.
    +119     * The result shall be as if this quantity and the given addend were
    +120     * converted to {@linkplain Unit#getSystemUnit() system unit} before
    +121     * to be added, and the result converted back to the unit of this
    +122     * quantity or any other compatible unit at implementation choice.
    +123     *
    +124     * @param addend
    +125     *            the {@code Quantity} to be added.
    +126     * @return {@code this + addend}.
    +127     */
    +128    Quantity<Q> add(Quantity<Q> addend);
    +129
    +130    /**
    +131     * Returns the difference between this {@code Quantity} and the one specified.
    +132     * The result shall be as if this quantity and the given subtrahend were
    +133     * converted to {@linkplain Unit#getSystemUnit() system unit} before
    +134     * to be subtracted, and the result converted back to the unit of this
    +135     * quantity or any other compatible unit at implementation choice.
    +136     *
    +137     * @param subtrahend
    +138     *            the {@code Quantity} to be subtracted.
    +139     * @return <code>this - subtrahend</code>.
    +140     */
    +141    Quantity<Q> subtract(Quantity<Q> subtrahend);
    +142
    +143    /**
    +144     * Returns the quotient of this {@code Quantity} divided by the {@code Quantity}
    +145     * specified.
    +146     * The result shall be as if this quantity and the given divisor were
    +147     * converted to {@linkplain Unit#getSystemUnit() system unit} before
    +148     * to be divided, and the result converted back to the unit of this
    +149     * quantity or any other compatible unit at implementation choice.
    +150     *
    +151     * @throws ClassCastException
    +152     *             if the type of an element in the specified operation is
    +153     *             incompatible with this quantity
    +154     *
    +155     * @param divisor
    +156     *            the {@code Quantity} divisor.
    +157     * @return <code>this / divisor</code>.
    +158     */
    +159    Quantity<?> divide(Quantity<?> divisor);
    +160
    +161    /**
    +162     * Returns the quotient of this {@code Quantity} divided by the {@code Number}
    +163     * specified.
    +164     * The result shall be as if this quantity was converted to
    +165     * {@linkplain Unit#getSystemUnit() system unit} before to be divided,
    +166     * and the result converted back to the unit of this quantity or any
    +167     * other compatible unit at implementation choice.
    +168     *
    +169     * @param divisor
    +170     *            the {@code Number} divisor.
    +171     * @return <code>this / divisor</code>.
    +172     */
    +173    Quantity<Q> divide(Number divisor);
    +174
    +175    /**
    +176     * Returns the product of this {@code Quantity} with the one specified.
    +177     * The result shall be as if this quantity and the given multiplicand were
    +178     * converted to {@linkplain Unit#getSystemUnit() system unit} before
    +179     * to be multiplied, and the result converted back to the unit of this
    +180     * quantity or any other compatible unit at implementation choice.
    +181     *
    +182     * @throws ClassCastException
    +183     *             if the type of an element in the specified operation is
    +184     *             incompatible with this quantity
    +185     *
    +186     * @param multiplicand
    +187     *            the {@code Quantity} multiplicand.
    +188     * @return <code>this * multiplicand</code>.
    +189     */
    +190    Quantity<?> multiply(Quantity<?> multiplicand);
    +191
    +192    /**
    +193     * Returns the product of this {@code Quantity} with the {@code Number} value
    +194     * specified.
    +195     * The result shall be as if this quantity was converted to
    +196     * {@linkplain Unit#getSystemUnit() system unit} before to be multiplied,
    +197     * and the result converted back to the unit of this quantity or any
    +198     * other compatible unit at implementation choice.
    +199     *
    +200     * @param multiplicand
    +201     *            the {@code Number} multiplicand.
    +202     * @return <code>this * multiplicand</code>.
    +203     */
    +204    Quantity<Q> multiply(Number multiplicand);
    +205
    +206    /**
    +207     * Returns this {@code Quantity} converted into another (compatible)
    +208     * {@code Unit}.
    +209     *
    +210     * @param unit
    +211     *            the {@code Unit unit} in which the returned quantity is stated.
    +212     * @return this quantity or a new quantity equivalent to this quantity stated in the specified unit.
    +213     * @throws ArithmeticException
    +214     *             if the result is inexact and the quotient has a non-terminating decimal expansion.
    +215     */
    +216    Quantity<Q> to(Unit<Q> unit);
    +217
    +218    /**
    +219     * Returns a {@code Quantity} that is the multiplicative inverse of this
    +220     * {@code Quantity}, having reciprocal value and reciprocal unit as given by
    +221     * {@code this.getUnit().inverse()}.
    +222     *
    +223     * @return reciprocal {@code Quantity}
    +224     * @see <a href=
    +225     *      "https://en.wikipedia.org/wiki/Multiplicative_inverse">Wikipedia:
    +226     *      Multiplicative inverse</a>
    +227     */
    +228    Quantity<?> inverse();
    +229
    +230    /**
    +231     * Returns a {@code Quantity} whose value is {@code (-this.getValue())}.
    +232     *
    +233     * @return {@code -this}.
    +234     */
    +235    Quantity<Q> negate();
    +236
    +237    /**
    +238     * Casts this quantity to a parameterized unit of specified nature or throw a
    +239     * <code>ClassCastException</code> if the dimension of the specified quantity
    +240     * and this measure unit's dimension do not match. For example:
    +241     * <p>
    +242     * <code>
    +243     *     {@literal Quantity<Length>} length = Quantities.getQuantity("2 km").asType(Length.class);
    +244     * </code> or <code>
    +245     *     {@literal Quantity<Speed>} C = length.multiply(299792458).divide(second).asType(Speed.class);
    +246     * </code>
    +247     * </p>
    +248     *
    +249     * @param <T>
    +250     *            The type of the quantity.
    +251     * @param type
    +252     *            the quantity class identifying the nature of the quantity.
    +253     * @return this quantity parameterized with the specified type.
    +254     * @throws ClassCastException
    +255     *             if the dimension of this unit is different from the specified
    +256     *             quantity dimension.
    +257     * @throws UnsupportedOperationException
    +258     *             if the specified quantity class does not have a SI unit for the
    +259     *             quantity.
    +260     * @see Unit#asType(Class)
    +261     */
    +262    <T extends Quantity<T>> Quantity<T> asType(Class<T> type) throws ClassCastException;
    +263
    +264    /**
    +265     * Returns the value of this {@code Quantity}.
    +266     *
    +267     * @return a value.
    +268     */
    +269    Number getValue();
    +270
    +271    /**
    +272     * Returns the unit of this {@code Quantity}.
    +273     *
    +274     * @return the unit (shall not be {@code null}).
    +275     */
    +276    Unit<Q> getUnit();
    +277    
    +278    /**
    +279     * Convenient method equivalent to {@link #to(javax.measure.Unit)
    +280     * to(getUnit().toSystemUnit())}.
    +281     *
    +282     * @return this quantity or a new quantity equivalent to this quantity stated in
    +283     *         SI units.
    +284     * @throws ArithmeticException
    +285     *             if the result is inexact and the quotient has a non-terminating
    +286     *             decimal expansion.
    +287     */
    +288    default Quantity<Q> toSystemUnit() {
    +289        return to(getUnit().getSystemUnit());
    +290    }
    +291      
    +292    /**
    +293     * Returns the {@code Scale} of this {@code Quantity}, if it's absolute or relative.
    +294     *
    +295     * @return the scale, if it's an absolute or relative quantity.
    +296     * @since 2.0
    +297     
    +298     * @see <a href="https://en.wikipedia.org/wiki/Absolute_scale">Wikipedia: Absolute scale</a>
    +299     */
    +300    Scale getScale();
    +301    
    +302    /**
    +303     * Compares two instances of {@code Quantity <Q>}, performing the conversion of units if necessary.
    +304     *
    +305     * @param that
    +306     *          the {@code quantity<Q>} to be compared with this instance.
    +307     * @return {@code true} if {@code that \u2261 this}.
    +308     * @throws NullPointerException
    +309     *           if the quantity is null
    +310     *           
    +311     * @see <a href= "https://dictionary.cambridge.org/dictionary/english/equivalent">Cambridge Dictionary: equivalent</a>
    +312     * @see <a href= "https://www.lexico.com/en/definition/equivalent">LEXICO: equivalent</a>
    +313     * @since 2.1       
    +314     */
    +315    boolean isEquivalentTo(Quantity<Q> that);
    +316}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/Quantity.html b/docs/apidocs/src-html/javax/measure/Quantity.html new file mode 100644 index 00000000..08639a40 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/Quantity.html @@ -0,0 +1,394 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032/**
    +033 * Represents a quantitative property of a phenomenon, body, or substance, that
    +034 * can be quantified by measurement. {@link javax.measure.quantity.Mass Mass},
    +035 * time, distance, heat, and angular separation are among the familiar examples
    +036 * of quantitative properties.
    +037 * <p>
    +038 * <code> {@literal Unit<Mass>} pound = ... {@literal Quantity<Length>} size = ... {@literal Sensor<Temperature>}<br>
    +039 * thermometer = ... {@literal Vector3D<Speed>} aircraftSpeed = ... </code>
    +040 * </p>
    +041 *
    +042 * <dl>
    +043 * <dt><span class="strong">Arithmetic operations</span></dt>
    +044 * </dl> 
    +045 * This interface defines some arithmetic operations between {@code Quantity}
    +046 * instances. All implementations shall produce <em>equivalent</em> results for
    +047 * the same operation applied on equivalent quantities. Two quantities are
    +048 * equivalent if, after conversion to the same unit of measurement, they have
    +049 * the same numerical value (ignoring rounding errors). For example 2000 metres
    +050 * is equivalent to 2 km, but 2°C is not equivalent to 2 K; it is equivalent to
    +051 * 275.15 K instead. Above requirement applied to addition means that 2°C + 2 K
    +052 * shall be equivalent to 275.15 K + 2 K.
    +053 *
    +054 * <p>All operations shall preserve the
    +055 * <a href="https://en.wikiversity.org/wiki/Basic_Laws_of_Algebra">basic laws
    +056 * of algebra</a>, in particular <b>commutativity</b> of addition and
    +057 * multiplication (<var>A</var> + <var>B</var> = <var>B</var> + <var>A</var>)
    +058 * and <b>associativity</b> of addition and multiplication (<var>A</var> +
    +059 * <var>B</var>) + <var>C</var> = <var>A</var> + (<var>B</var> + <var>C</var>).
    +060 * In order to preserve those algebra laws, this specification requires all
    +061 * arithmetic operations to execute <em>as is</em> all operands were converted
    +062 * to {@linkplain Unit#getSystemUnit() system unit} before the operation is
    +063 * carried out, and the result converted back to any compatible unit at
    +064 * implementation choice. For example 4 cm + 1 inch shall produce any result
    +065 * <em>equivalent</em> to 0.04 m + 0.0254 m.</p>
    +066 *
    +067 * <p>Implementations are allowed to avoid conversion to system unit if the
    +068 * result is guaranteed to be equivalent. This is often the case when the
    +069 * conversion between quantity unit and system unit is only a
    +070 * {@linkplain UnitConverter#isLinear() scale factor}. However this is not
    +071 * the case for conversions applying an offset or more complex formula.
    +072 * For example 2°C + 1°C = 274.15°C, not 3°C. This counter-intuitive result
    +073 * is essential for preserving algebra laws like associativity, and is also
    +074 * the expected result from a thermodynamic point of view.</p>
    +075 *
    +076 * <dl>
    +077 * <dt><span class="strong">API Note:</span></dt><dd>This interface places no restrictions on the mutability of
    +078 *          implementations, however immutability is strongly recommended. All
    +079 *          implementations must be {@link Comparable}.</dd>
    +080 * </dl>
    +081 *
    +082 * @param <Q>
    +083 *            The type of the quantity.
    +084 *
    +085 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +086 * @author <a href="mailto:martin.desruisseaux@geomatys.com">Martin
    +087 *         Desruisseaux</a>
    +088 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +089 * @author <a href="mailto:otaviopolianasantana@gmail.com">Otavio Santana</a>
    +090 * @see Unit
    +091 * @see <a href="http://en.wikipedia.org/wiki/Quantity">Wikipedia: Quantity</a>
    +092 * @see <a href="http://martinfowler.com/eaaDev/quantity.html">Martin Fowler -
    +093 *      Quantity</a>
    +094 * @version 2.5, May 20, 2023
    +095 * @since 1.0
    +096 */
    +097public interface Quantity<Q extends Quantity<Q>> {
    +098    
    +099   /**
    +100    * The scale of a {@link Quantity}, either {@code ABSOLUTE} or {@code RELATIVE}.
    +101    *
    +102    * @since 2.0
    +103    * @see <a href="https://en.wikipedia.org/wiki/Absolute_scale">Wikipedia: Absolute scale</a>
    +104    */
    +105    public static enum Scale {
    +106        /** 
    +107         * Absolute scale
    +108         * @see <a href="https://en.wikipedia.org/wiki/Absolute_scale">Wikipedia: Absolute scale</a> 
    +109         */
    +110        ABSOLUTE, 
    +111        /** 
    +112         * Relative scale 
    +113         */
    +114        RELATIVE
    +115    }
    +116       
    +117    /**
    +118     * Returns the sum of this {@code Quantity} with the one specified.
    +119     * The result shall be as if this quantity and the given addend were
    +120     * converted to {@linkplain Unit#getSystemUnit() system unit} before
    +121     * to be added, and the result converted back to the unit of this
    +122     * quantity or any other compatible unit at implementation choice.
    +123     *
    +124     * @param addend
    +125     *            the {@code Quantity} to be added.
    +126     * @return {@code this + addend}.
    +127     */
    +128    Quantity<Q> add(Quantity<Q> addend);
    +129
    +130    /**
    +131     * Returns the difference between this {@code Quantity} and the one specified.
    +132     * The result shall be as if this quantity and the given subtrahend were
    +133     * converted to {@linkplain Unit#getSystemUnit() system unit} before
    +134     * to be subtracted, and the result converted back to the unit of this
    +135     * quantity or any other compatible unit at implementation choice.
    +136     *
    +137     * @param subtrahend
    +138     *            the {@code Quantity} to be subtracted.
    +139     * @return <code>this - subtrahend</code>.
    +140     */
    +141    Quantity<Q> subtract(Quantity<Q> subtrahend);
    +142
    +143    /**
    +144     * Returns the quotient of this {@code Quantity} divided by the {@code Quantity}
    +145     * specified.
    +146     * The result shall be as if this quantity and the given divisor were
    +147     * converted to {@linkplain Unit#getSystemUnit() system unit} before
    +148     * to be divided, and the result converted back to the unit of this
    +149     * quantity or any other compatible unit at implementation choice.
    +150     *
    +151     * @throws ClassCastException
    +152     *             if the type of an element in the specified operation is
    +153     *             incompatible with this quantity
    +154     *
    +155     * @param divisor
    +156     *            the {@code Quantity} divisor.
    +157     * @return <code>this / divisor</code>.
    +158     */
    +159    Quantity<?> divide(Quantity<?> divisor);
    +160
    +161    /**
    +162     * Returns the quotient of this {@code Quantity} divided by the {@code Number}
    +163     * specified.
    +164     * The result shall be as if this quantity was converted to
    +165     * {@linkplain Unit#getSystemUnit() system unit} before to be divided,
    +166     * and the result converted back to the unit of this quantity or any
    +167     * other compatible unit at implementation choice.
    +168     *
    +169     * @param divisor
    +170     *            the {@code Number} divisor.
    +171     * @return <code>this / divisor</code>.
    +172     */
    +173    Quantity<Q> divide(Number divisor);
    +174
    +175    /**
    +176     * Returns the product of this {@code Quantity} with the one specified.
    +177     * The result shall be as if this quantity and the given multiplicand were
    +178     * converted to {@linkplain Unit#getSystemUnit() system unit} before
    +179     * to be multiplied, and the result converted back to the unit of this
    +180     * quantity or any other compatible unit at implementation choice.
    +181     *
    +182     * @throws ClassCastException
    +183     *             if the type of an element in the specified operation is
    +184     *             incompatible with this quantity
    +185     *
    +186     * @param multiplicand
    +187     *            the {@code Quantity} multiplicand.
    +188     * @return <code>this * multiplicand</code>.
    +189     */
    +190    Quantity<?> multiply(Quantity<?> multiplicand);
    +191
    +192    /**
    +193     * Returns the product of this {@code Quantity} with the {@code Number} value
    +194     * specified.
    +195     * The result shall be as if this quantity was converted to
    +196     * {@linkplain Unit#getSystemUnit() system unit} before to be multiplied,
    +197     * and the result converted back to the unit of this quantity or any
    +198     * other compatible unit at implementation choice.
    +199     *
    +200     * @param multiplicand
    +201     *            the {@code Number} multiplicand.
    +202     * @return <code>this * multiplicand</code>.
    +203     */
    +204    Quantity<Q> multiply(Number multiplicand);
    +205
    +206    /**
    +207     * Returns this {@code Quantity} converted into another (compatible)
    +208     * {@code Unit}.
    +209     *
    +210     * @param unit
    +211     *            the {@code Unit unit} in which the returned quantity is stated.
    +212     * @return this quantity or a new quantity equivalent to this quantity stated in the specified unit.
    +213     * @throws ArithmeticException
    +214     *             if the result is inexact and the quotient has a non-terminating decimal expansion.
    +215     */
    +216    Quantity<Q> to(Unit<Q> unit);
    +217
    +218    /**
    +219     * Returns a {@code Quantity} that is the multiplicative inverse of this
    +220     * {@code Quantity}, having reciprocal value and reciprocal unit as given by
    +221     * {@code this.getUnit().inverse()}.
    +222     *
    +223     * @return reciprocal {@code Quantity}
    +224     * @see <a href=
    +225     *      "https://en.wikipedia.org/wiki/Multiplicative_inverse">Wikipedia:
    +226     *      Multiplicative inverse</a>
    +227     */
    +228    Quantity<?> inverse();
    +229
    +230    /**
    +231     * Returns a {@code Quantity} whose value is {@code (-this.getValue())}.
    +232     *
    +233     * @return {@code -this}.
    +234     */
    +235    Quantity<Q> negate();
    +236
    +237    /**
    +238     * Casts this quantity to a parameterized unit of specified nature or throw a
    +239     * <code>ClassCastException</code> if the dimension of the specified quantity
    +240     * and this measure unit's dimension do not match. For example:
    +241     * <p>
    +242     * <code>
    +243     *     {@literal Quantity<Length>} length = Quantities.getQuantity("2 km").asType(Length.class);
    +244     * </code> or <code>
    +245     *     {@literal Quantity<Speed>} C = length.multiply(299792458).divide(second).asType(Speed.class);
    +246     * </code>
    +247     * </p>
    +248     *
    +249     * @param <T>
    +250     *            The type of the quantity.
    +251     * @param type
    +252     *            the quantity class identifying the nature of the quantity.
    +253     * @return this quantity parameterized with the specified type.
    +254     * @throws ClassCastException
    +255     *             if the dimension of this unit is different from the specified
    +256     *             quantity dimension.
    +257     * @throws UnsupportedOperationException
    +258     *             if the specified quantity class does not have a SI unit for the
    +259     *             quantity.
    +260     * @see Unit#asType(Class)
    +261     */
    +262    <T extends Quantity<T>> Quantity<T> asType(Class<T> type) throws ClassCastException;
    +263
    +264    /**
    +265     * Returns the value of this {@code Quantity}.
    +266     *
    +267     * @return a value.
    +268     */
    +269    Number getValue();
    +270
    +271    /**
    +272     * Returns the unit of this {@code Quantity}.
    +273     *
    +274     * @return the unit (shall not be {@code null}).
    +275     */
    +276    Unit<Q> getUnit();
    +277    
    +278    /**
    +279     * Convenient method equivalent to {@link #to(javax.measure.Unit)
    +280     * to(getUnit().toSystemUnit())}.
    +281     *
    +282     * @return this quantity or a new quantity equivalent to this quantity stated in
    +283     *         SI units.
    +284     * @throws ArithmeticException
    +285     *             if the result is inexact and the quotient has a non-terminating
    +286     *             decimal expansion.
    +287     */
    +288    default Quantity<Q> toSystemUnit() {
    +289        return to(getUnit().getSystemUnit());
    +290    }
    +291      
    +292    /**
    +293     * Returns the {@code Scale} of this {@code Quantity}, if it's absolute or relative.
    +294     *
    +295     * @return the scale, if it's an absolute or relative quantity.
    +296     * @since 2.0
    +297     
    +298     * @see <a href="https://en.wikipedia.org/wiki/Absolute_scale">Wikipedia: Absolute scale</a>
    +299     */
    +300    Scale getScale();
    +301    
    +302    /**
    +303     * Compares two instances of {@code Quantity <Q>}, performing the conversion of units if necessary.
    +304     *
    +305     * @param that
    +306     *          the {@code quantity<Q>} to be compared with this instance.
    +307     * @return {@code true} if {@code that \u2261 this}.
    +308     * @throws NullPointerException
    +309     *           if the quantity is null
    +310     *           
    +311     * @see <a href= "https://dictionary.cambridge.org/dictionary/english/equivalent">Cambridge Dictionary: equivalent</a>
    +312     * @see <a href= "https://www.lexico.com/en/definition/equivalent">LEXICO: equivalent</a>
    +313     * @since 2.1       
    +314     */
    +315    boolean isEquivalentTo(Quantity<Q> that);
    +316}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/UnconvertibleException.html b/docs/apidocs/src-html/javax/measure/UnconvertibleException.html new file mode 100644 index 00000000..96300500 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/UnconvertibleException.html @@ -0,0 +1,157 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032/**
    +033 * Signals that a problem of some sort has occurred due to the impossibility of constructing a converter between two units. For example, the
    +034 * multiplication of offset units are usually units not convertible to their {@linkplain Unit#getSystemUnit() system unit}.
    +035 *
    +036 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +037 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +038 * @version 1.0, Aug 8, 2016
    +039 *
    +040 */
    +041public class UnconvertibleException extends MeasurementException {
    +042    /**
    +043     * For cross-version compatibility.
    +044     */
    +045    private static final long serialVersionUID = -4623551240019830166L;
    +046
    +047    /**
    +048     * Constructs a {@code UnconvertibleException} with the given message.
    +049     *
    +050     * @param message
    +051     *            the detail message, or {@code null} if none.
    +052     */
    +053    public UnconvertibleException(final String message) {
    +054        super(message);
    +055    }
    +056
    +057    /**
    +058     * Constructs a {@code UnconvertibleException} with the given cause.
    +059     *
    +060     * @param cause
    +061     *            the cause of this exception, or {@code null} if none.
    +062     */
    +063    public UnconvertibleException(final Throwable cause) {
    +064        super(cause);
    +065    }
    +066
    +067    /**
    +068     * Constructs a {@code UnconvertibleException} with the given message and cause.
    +069     *
    +070     * @param message
    +071     *            the detail message, or {@code null} if none.
    +072     * @param cause
    +073     *            the cause of this exception, or {@code null} if none.
    +074     *
    +075     */
    +076    public UnconvertibleException(final String message, final Throwable cause) {
    +077        super(message, cause);
    +078    }
    +079}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/Unit.html b/docs/apidocs/src-html/javax/measure/Unit.html new file mode 100644 index 00000000..53cfc9ff --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/Unit.html @@ -0,0 +1,512 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030//
    +031// This source code implements specifications defined by the Java
    +032// Community Process. In order to remain compliant with the specification
    +033// DO NOT add / change / or delete method signatures!
    +034//
    +035package javax.measure;
    +036
    +037import java.util.Map;
    +038
    +039/**
    +040 * Represents a determinate {@linkplain Quantity quantity} (as of length, time, heat, or value) adopted as a standard of measurement.
    +041 *
    +042 * <p>
    +043 * It is helpful to think of instances of this class as recording the history by which they are created. Thus, for example, the string {@code "g/kg"}
    +044 * (which is a dimensionless unit) would result from invoking the method {@link #toString()} on a unit that was created by dividing a gram unit by a
    +045 * kilogram unit.
    +046 * </p>
    +047 *
    +048 * <p>
    +049 * This interface supports the multiplication of offsets units. The result is usually a unit not convertible to its {@linkplain #getSystemUnit()
    +050 * system unit}. Such units may appear in derivative quantities. For example Celsius per meter is an unit of gradient, which is common in atmospheric
    +051 * and oceanographic research.
    +052 * </p>
    +053 *
    +054 * <p>
    +055 * Units raised at non-integral powers are not supported. For example, {@code LITRE.root(2)} raises an {@code ArithmeticException}, but
    +056 * {@code HECTARE.root(2)} returns {@code HECTOMETRE} (100 metres).
    +057 * </p>
    +058 *
    +059 * <p>
    +060 * Unit instances shall be immutable.
    +061 * </p>
    +062 *
    +063 * @param <Q>
    +064 *          The type of the quantity measured by this unit.
    +065 *
    +066 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +067 * @author <a href="mailto:steve@unidata.ucar.edu">Steve Emmerson</a>
    +068 * @author <a href="mailto:martin.desruisseaux@geomatys.com">Martin Desruisseaux</a>
    +069 * @author <a href="mailto:werner@units.tech">Werner Keil</a>
    +070 * @version 2.4, November 11, 2020
    +071 * @since 1.0
    +072 *
    +073 * @see <a href="http://en.wikipedia.org/wiki/Units_of_measurement">Wikipedia: Units of measurement</a>
    +074 */
    +075public interface Unit<Q extends Quantity<Q>> {
    +076
    +077    /*******************/
    +078    /** Units Queries **/
    +079    /*******************/
    +080
    +081    /**
    +082     * Returns the symbol (if any) of this unit. This method returns {@code null} if this unit has no specific symbol associated with.
    +083     *
    +084     * @return this unit symbol, or {@code null} if this unit has not specific symbol associated with (e.g. product of units).
    +085     *
    +086     * @see #toString()
    +087     * @see javax.measure.format.UnitFormat
    +088     */
    +089    String getSymbol();
    +090
    +091    /**
    +092     * Returns the name (if any) of this unit. This method returns {@code null} if this unit has no specific name associated with.
    +093     *
    +094     * @return this unit name, or {@code null} if this unit has not specific name associated with (e.g. product of units).
    +095     *
    +096     * @see #toString()
    +097     * @see javax.measure.format.UnitFormat
    +098     */
    +099    String getName();
    +100
    +101    /**
    +102     * Returns the dimension of this unit. Two units {@code u1} and {@code u2} are {@linkplain #isCompatible(Unit) compatible} if and only if
    +103     * {@code u1.getDimension().equals(u2.getDimension())}.
    +104     *
    +105     * @return the dimension of this unit.
    +106     *
    +107     * @see #isCompatible(Unit)
    +108     */
    +109    Dimension getDimension();
    +110
    +111    /**
    +112     * Returns the unscaled system unit from which this unit is derived. System units are either base units, {@linkplain #alternate(String) alternate}
    +113     * units or product of rational powers of system units.
    +114     *
    +115     * <p>
    +116     * Because the system unit is unique by quantity type, it can be be used to identify the quantity given the unit. For example:
    +117     * </p>
    +118     * <code>
    +119     *     static boolean isAngularSpeed(Unit&lt;?&gt; unit) {<br>
    +120     *     &nbsp;&nbsp;    return unit.getSystemUnit().equals(RADIAN.divide(SECOND));<br>
    +121     *     }<br>
    +122     *     assert isAngularSpeed(REVOLUTION.divide(MINUTE)); // Returns true.<br><br>
    +123     * </code>
    +124     *
    +125     * @return the system unit this unit is derived from, or {@code this} if this unit is a system unit.
    +126     */
    +127    Unit<Q> getSystemUnit();
    +128
    +129    /**
    +130     * Returns the base units and their exponent whose product is this unit, or {@code null} if this unit is a base unit (not a product of existing
    +131     * units).
    +132     *
    +133     * @return the base units and their exponent making up this unit.
    +134     */
    +135    Map<? extends Unit<?>, Integer> getBaseUnits();
    +136
    +137    /**
    +138     * Indicates if this unit is compatible with the unit specified. Units don't need to be equal to be compatible. For example (assuming {@code ONE}
    +139     * is a dimensionless unit):<br>
    +140     *
    +141     * <code>
    +142     *     RADIAN.equals(ONE) == false<br>
    +143     *     RADIAN.isCompatible(ONE) == true<br>
    +144     *     RADIAN.isEquivalentTo(ONE) <b>doesn't compile</b><br>
    +145     * </code>
    +146     *
    +147     * @param that
    +148     *          the other unit to compare for compatibility.
    +149     * @return {@code this.getDimension().equals(that.getDimension())}
    +150     *
    +151     * @see #getDimension()
    +152     */
    +153    boolean isCompatible(Unit<?> that);
    +154
    +155    /**
    +156     * Indicates if this unit represents the same quantity than the given unit, ignoring name and symbols.
    +157     * Two units are equivalent if the {@linkplain #getConverterTo(Unit) conversion} between them is identity.
    +158     *
    +159     * <p>
    +160     * Unlike {@link #isCompatible(Unit)} an equivalence check requires both units to be strictly type-compatible,
    +161     * because it makes no sense to compare e.g. {@code gram} and {@code mm} for equivalence.
    +162     * By contrast, the compatibility check can works across different quantity types.
    +163     * </p>
    +164     *
    +165     * @param that the {@code Unit<Q>} to be compared with this instance.
    +166     * @return {@code true} if {@code that \u2261 this}.
    +167     * @throws NullPointerException if the unit is null
    +168     *
    +169     * @see <a href= "https://dictionary.cambridge.org/dictionary/english/equivalent">Cambridge Dictionary: equivalent</a>
    +170     * @see <a href= "https://www.lexico.com/en/definition/equivalent">LEXICO: equivalent</a>
    +171     * @since 2.1
    +172     */
    +173    boolean isEquivalentTo(Unit<Q> that);
    +174
    +175    /**
    +176     * Casts this unit to a parameterized unit of specified nature or throw a {@code ClassCastException} if the dimension of the specified quantity and
    +177     * this unit's dimension do not match. For example:<br>
    +178     *
    +179     * <code>
    +180     *      {@literal Unit<Speed>} C = METRE.multiply(299792458).divide(SECOND).asType(Speed.class);
    +181     * </code>
    +182     *
    +183     * @param <T>
    +184     *          The type of the quantity measured by the unit.
    +185     * @param type
    +186     *          the quantity class identifying the nature of the unit.
    +187     * @return this unit parameterized with the specified type.
    +188     * @throws ClassCastException
    +189     *           if the dimension of this unit is different from the specified quantity dimension.
    +190     */
    +191    <T extends Quantity<T>> Unit<T> asType(Class<T> type) throws ClassCastException;
    +192
    +193    /**
    +194     * Returns a converter of numeric values from this unit to another unit of same type. This method performs the same work as
    +195     * {@link #getConverterToAny(Unit)} without raising checked exception.
    +196     *
    +197     * @param that
    +198     *          the unit of same type to which to convert the numeric values.
    +199     * @return the converter from this unit to {@code that} unit.
    +200     * @throws UnconvertibleException
    +201     *           if a converter cannot be constructed.
    +202     *
    +203     * @see #getConverterToAny(Unit)
    +204     */
    +205    UnitConverter getConverterTo(Unit<Q> that) throws UnconvertibleException;
    +206
    +207    /**
    +208     * Returns a converter from this unit to the specified unit of type unknown. This method can be used when the quantity type of the specified unit is
    +209     * unknown at compile-time or when dimensional analysis allows for conversion between units of different type.
    +210     *
    +211     * <p>
    +212     * To convert to a unit having the same parameterized type, {@link #getConverterTo(Unit)} is preferred (no checked exception raised).
    +213     * </p>
    +214     *
    +215     * @param that
    +216     *          the unit to which to convert the numeric values.
    +217     * @return the converter from this unit to {@code that} unit.
    +218     * @throws IncommensurableException
    +219     *           if this unit is not {@linkplain #isCompatible(Unit) compatible} with {@code that} unit.
    +220     * @throws UnconvertibleException
    +221     *           if a converter cannot be constructed.
    +222     *
    +223     * @see #getConverterTo(Unit)
    +224     * @see #isCompatible(Unit)
    +225     */
    +226    UnitConverter getConverterToAny(Unit<?> that) throws IncommensurableException, UnconvertibleException;
    +227
    +228    /**********************/
    +229    /** Units Operations **/
    +230    /**********************/
    +231
    +232    /**
    +233     * Returns a system unit equivalent to this unscaled standard unit but used in expressions to distinguish between quantities of a different nature
    +234     * but of the same dimensions.
    +235     *
    +236     * <p>
    +237     * Examples of alternate units:
    +238     * </p>
    +239     *
    +240     * <code>
    +241     *     {@literal Unit<Angle>} RADIAN = ONE.alternate("rad").asType(Angle.class);<br>
    +242     *     {@literal Unit<Force>} NEWTON = METRE.multiply(KILOGRAM).divide(SECOND.pow(2)).alternate("N").asType(Force.class);<br>
    +243     *     {@literal Unit<Pressure>} PASCAL = NEWTON.divide(METRE.pow(2)).alternate("Pa").asType(Pressure.class);<br>
    +244     * </code>
    +245     *
    +246     * @param symbol
    +247     *          the new symbol for the alternate unit.
    +248     * @return the alternate unit.
    +249     * @throws IllegalArgumentException
    +250     *           if this unit is not an unscaled standard unit.
    +251     * @throws MeasurementException
    +252     *           if the specified symbol is not valid or is already associated to a different unit.
    +253     */
    +254    Unit<Q> alternate(String symbol);
    +255
    +256    /**
    +257     * Returns the result of setting the origin of the scale of measurement to the given value. The returned unit is convertible with all units that are
    +258     * convertible with this unit. For example the following code:<br>
    +259     *
    +260     * <code>
    +261     *    CELSIUS = KELVIN.shift(273.15);
    +262     * </code>
    +263     *
    +264     * creates a new unit where 0°C (the origin of the new unit) is equals to 273.15 K. Converting from the old unit to the new one is equivalent to
    +265     * <em>subtracting</em> the offset to the value in the old unit.
    +266     *
    +267     * @param offset
    +268     *          the offset added (expressed in this unit).
    +269     * @return this unit offset by the specified value.
    +270     * @since 2.0
    +271     */
    +272    Unit<Q> shift(Number offset);
    +273
    +274    /**
    +275     * Returns the result of setting the origin of the scale of measurement to the given value. The returned unit is convertible with all units that are
    +276     * convertible with this unit. For example the following code:<br>
    +277     *
    +278     * <code>
    +279     *    CELSIUS = KELVIN.shift(273.15);
    +280     * </code>
    +281     *
    +282     * creates a new unit where 0°C (the origin of the new unit) is equals to 273.15 K. Converting from the old unit to the new one is equivalent to
    +283     * <em>subtracting</em> the offset to the value in the old unit.
    +284     *
    +285     * @param offset
    +286     *          the offset added (expressed in this unit).
    +287     * @return this unit offset by the specified value.
    +288     */
    +289    Unit<Q> shift(double offset);
    +290
    +291    /**
    +292     * Returns the result of multiplying this unit by the specified factor. If the factor is an integer value, the multiplication is exact
    +293     * (recommended). For example:<br>
    +294     *
    +295     * <code>
    +296     *    FOOT = METRE.multiply(3048).divide(10000); // Exact definition.<br>
    +297     *    ELECTRON_MASS = KILOGRAM.multiply(9.10938188e-31); // Approximation.
    +298     * </code>
    +299     *
    +300     * @param multiplier
    +301     *          the multiplier
    +302     * @return this unit scaled by the specified multiplier.
    +303     * @since 2.0
    +304     */
    +305    Unit<Q> multiply(Number multiplier);
    +306
    +307    /**
    +308     * Returns the result of multiplying this unit by the specified factor. For example:<br>
    +309     *
    +310     * <code>
    +311     *    FOOT = METRE.multiply(3048).divide(10000); // Exact definition.<br>
    +312     *    ELECTRON_MASS = KILOGRAM.multiply(9.10938188e-31); // Approximation.
    +313     * </code>
    +314     *
    +315     * @param multiplier
    +316     *          the multiplier
    +317     * @return this unit scaled by the specified multiplier.
    +318     */
    +319    Unit<Q> multiply(double multiplier);
    +320
    +321    /**
    +322     * Returns the product of this unit with the one specified.
    +323     *
    +324     * @param multiplier
    +325     *          the unit multiplier.
    +326     * @return {@code this * multiplier}
    +327     */
    +328    Unit<?> multiply(Unit<?> multiplier);
    +329
    +330    /**
    +331     * Returns the reciprocal (multiplicative inverse) of this unit.
    +332     *
    +333     * @return {@code 1 / this}
    +334     * @see <a href="https://en.wikipedia.org/wiki/Multiplicative_inverse">Wikipedia: Multiplicative inverse</a>
    +335     */
    +336    Unit<?> inverse();
    +337
    +338    /**
    +339     * Returns the result of dividing this unit by a divisor. If the factor is an integer value, the division is exact. For example:<br>
    +340     *
    +341     * <code>
    +342     *    GRAM = KILOGRAM.divide(1000); // Exact definition.
    +343     * </code>
    +344     *
    +345     * @param divisor
    +346     *          the divisor value.
    +347     * @return this unit divided by the specified divisor.
    +348     * @since 2.0
    +349     */
    +350    Unit<Q> divide(Number divisor);
    +351
    +352    /**
    +353     * Returns the result of dividing this unit by an approximate divisor. For example:<br>
    +354     *
    +355     * <code>
    +356     *    GRAM = KILOGRAM.divide(1000d);
    +357     * </code>
    +358     *
    +359     * @param divisor
    +360     *          the divisor value.
    +361     * @return this unit divided by the specified divisor.
    +362     */
    +363    Unit<Q> divide(double divisor);
    +364
    +365    /**
    +366     * Returns the quotient of this unit with the one specified.
    +367     *
    +368     * @param divisor
    +369     *          the unit divisor.
    +370     * @return {@code this / divisor}
    +371     */
    +372    Unit<?> divide(Unit<?> divisor);
    +373
    +374    /**
    +375     * Returns an unit that is the n-th (integer) root of this unit. Equivalent to the mathematical expression {@code unit^(1/n)}.
    +376     *
    +377     * @param n
    +378     *          an integer giving the root's order as in 'n-th root'
    +379     * @return the n-th root of this unit.
    +380     * @throws ArithmeticException
    +381     *           if {@code n == 0} or if this operation would result in an unit with a fractional exponent.
    +382     */
    +383    Unit<?> root(int n);
    +384
    +385    /**
    +386     * Returns an unit raised to the n-th (integer) power of this unit. Equivalent to the mathematical expression {@code unit^n}.
    +387     *
    +388     * @param n
    +389     *          the exponent.
    +390     * @return the result of raising this unit to the exponent.
    +391     */
    +392    Unit<?> pow(int n);
    +393
    +394    /**
    +395     * Returns the unit derived from this unit using the specified converter. The converter does not need to be linear. For example:<br>
    +396     *
    +397     * <pre>
    +398     *     {@literal Unit<Dimensionless>} DECIBEL = Unit.ONE.transform(
    +399     *         new LogConverter(10).inverse().concatenate(
    +400     *             new RationalConverter(1, 10)));
    +401     * </pre>
    +402     *
    +403     * @param operation
    +404     *          the converter from the transformed unit to this unit.
    +405     * @return the unit after the specified transformation.
    +406     */
    +407    Unit<Q> transform(UnitConverter operation);
    +408
    +409    /**
    +410     * Returns a string representation of this unit. The string representation may be the unit {@linkplain #getSymbol() symbol}, or may be some
    +411     * representation of {@linkplain #getBaseUnits() product units}, multiplication factor and offset if any.
    +412     *
    +413     * <p>
    +414     * The string may be localized at implementation choice by the means of a particular device and platform.
    +415     * </p>
    +416     *
    +417     * @return the string representation of this unit.
    +418     *
    +419     * @see #getSymbol()
    +420     * @see javax.measure.format.UnitFormat
    +421     */
    +422    @Override
    +423    String toString();
    +424
    +425    /**
    +426     * Returns a new unit equal to this unit prefixed by the specified {@code prefix}.
    +427     *
    +428     * @param prefix
    +429     *          the prefix to apply on this unit.
    +430     * @return the unit with the given prefix applied.
    +431     * @since 2.0
    +432     */
    +433    Unit<Q> prefix(Prefix prefix);
    +434}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/UnitConverter.html b/docs/apidocs/src-html/javax/measure/UnitConverter.html new file mode 100644 index 00000000..239318bb --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/UnitConverter.html @@ -0,0 +1,228 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032import java.util.List;
    +033
    +034/**
    +035 * A converter of numeric values between different units.
    +036 *
    +037 * <p>
    +038 * Instances of this class are usually obtained through the {@link Unit#getConverterTo(Unit)} method.
    +039 * </p>
    +040 *
    +041 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +042 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +043 * @author <a href="mailto:martin.desruisseaux@geomatys.com">Martin
    +044 *         Desruisseaux</a>
    +045 * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
    +046 * @author <a href="mailto:ahuber@apache.org">Andi Huber</a>
    +047 * @version 1.4, May 12, 2019
    +048 * @since 1.0
    +049 *
    +050 * @see Unit
    +051 * @see <a href="http://en.wikipedia.org/wiki/Conversion_of_units"> Wikipedia: Conversion of units</a>
    +052 */
    +053public interface UnitConverter {
    +054
    +055    /**
    +056     * Indicates if this converter is an identity converter. The identity converter returns its input argument ({@code convert(x) == x}).
    +057     * <p>
    +058     * Note: Identity converters are also always 'linear', see {@link UnitConverter#isLinear()}.
    +059     * </p>
    +060     *
    +061     * @return {@code true} if this converter is an identity converter.
    +062     */
    +063    boolean isIdentity();
    +064
    +065    /**
    +066     * Indicates whether this converter represents a (one-dimensional) linear transformation, that is
    +067     * a <a href="https://en.wikipedia.org/wiki/Linear_map">linear map (wikipedia)</a> from a one-dimensional 
    +068     * vector space (a scalar) to a one-dimensional vector space. Typically from 'R' to 'R', with 'R' the 
    +069     * real numbers.  
    +070     *
    +071     * <p>
    +072     * Given such a 'linear' converter 'A', let 'u', 'v' and 'r' be arbitrary numbers, then the following 
    +073     * must hold by definition: 
    +074     *
    +075     * <ul>
    +076     * <li>{@code A(u + v) == A(u) + A(v)}</li>
    +077     * <li>{@code A(r * u) == r * A(u)}</li>
    +078     * </ul>
    +079     *
    +080     * <p>
    +081     * Given a second 'linear' converter 'B', commutativity of composition follows by above definition:
    +082     *
    +083     * <ul>
    +084     * <li>{@code (A o B) (u) == (B o A) (u)}</li>
    +085     * </ul>
    +086     * 
    +087     * In other words, two 'linear' converters do have the property that {@code A(B(u)) == B(A(u))}, meaning 
    +088     * for 'A' and 'B' the order of their composition does not matter. Expressed as Java code:
    +089     *
    +090     * <p>
    +091     *{@code A.concatenate(B).convert(u) == B.concatenate(A).convert(u)}
    +092     * </p>
    +093     * 
    +094     * Note: For composing UnitConverters see also {@link UnitConverter#concatenate(UnitConverter)}.
    +095     *
    +096     * @return {@code true} if this converter represents a linear transformation; 
    +097     * {@code false} otherwise.
    +098     * 
    +099     */
    +100    boolean isLinear();
    +101
    +102    /**
    +103     * Returns the inverse of this converter. If {@code x} is a valid value, then {@code x == inverse().convert(convert(x))} to within the accuracy of
    +104     * computer arithmetic.
    +105     *
    +106     * @return the inverse of this converter.
    +107     */
    +108    UnitConverter inverse();
    +109
    +110    /**
    +111     * Converts a {@code Number} value.
    +112     *
    +113     * @param value
    +114     *          the {@code Number} value to convert.
    +115     * @return the {@code Number} value after conversion.
    +116     */
    +117    Number convert(Number value);
    +118
    +119    /**
    +120     * Converts a {@code double} value.
    +121     *
    +122     * @param value
    +123     *          the numeric value to convert.
    +124     * @return the {@code double} value after conversion.
    +125     */
    +126    double convert(double value);
    +127
    +128    /**
    +129     * Concatenates this converter with another converter. The resulting converter is equivalent to first converting by the specified converter (right
    +130     * converter), and then converting by this converter (left converter).
    +131     *
    +132     * @param converter
    +133     *          the other converter to concatenate with this converter.
    +134     * @return the concatenation of this converter with the other converter.
    +135     */
    +136    UnitConverter concatenate(UnitConverter converter);
    +137
    +138    /**
    +139     * <p>
    +140     * Returns the steps of fundamental converters making up this converter or {@code this} if the converter is a fundamental converter.
    +141     * </p>
    +142     * <p>
    +143     * For example, {@code converter1.getConversionSteps()} returns {@code converter1} while
    +144     * {@code converter1.concatenate(converter2).getConversionSteps()} returns {@code converter1, converter2}.
    +145     * </p>
    +146     *
    +147     * @return the list of fundamental converters which concatenated make up this converter.
    +148     */
    +149    List<? extends UnitConverter> getConversionSteps();
    +150}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/format/MeasurementParseException.html b/docs/apidocs/src-html/javax/measure/format/MeasurementParseException.html new file mode 100644 index 00000000..7a16447a --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/format/MeasurementParseException.html @@ -0,0 +1,205 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.format;
    +031
    +032import javax.measure.MeasurementException;
    +033
    +034/**
    +035 * Signals that an error has been reached unexpectedly while parsing.
    +036 *
    +037 * @author Werner Keil
    +038 * @version 1.1, March 27, 2018
    +039 * @since 2.0
    +040 */
    +041public class MeasurementParseException extends MeasurementException {
    +042
    +043    /**
    +044     * For cross-version compatibility.
    +045     */
    +046    private static final long serialVersionUID = 2727457045794254852L;
    +047
    +048    /**
    +049     * The zero-based character position in the string being parsed at which the error was found while parsing.
    +050     *
    +051     * @serial
    +052     */
    +053    private int position;
    +054
    +055    /** The original input data. */
    +056    private CharSequence data;
    +057
    +058    /**
    +059     * Constructs a MeasurementParseException with the specified detail message, parsed text and index. A detail message is a String that describes
    +060     * this particular exception.
    +061     *
    +062     * @param message
    +063     *            the detail message
    +064     * @param parsedData
    +065     *            the parsed text, should not be null
    +066     * @param position
    +067     *            the position where the error was found while parsing.
    +068     */
    +069    public MeasurementParseException(String message, CharSequence parsedData, int position) {
    +070        super(message);
    +071        this.data = parsedData;
    +072        this.position = position;
    +073    }
    +074
    +075    /**
    +076     * Constructs a MeasurementParseException with the parsed text and offset. A detail message is a String that describes this particular exception.
    +077     *
    +078     * @param parsedData
    +079     *            the parsed text, should not be null
    +080     * @param position
    +081     *            the position where the error is found while parsing.
    +082     */
    +083    public MeasurementParseException(CharSequence parsedData, int position) {
    +084        this("Parse Error", parsedData, position);
    +085    }
    +086
    +087    /**
    +088     * Constructs a MeasurementParseException with the specified cause.
    +089     *
    +090     * @param cause
    +091     *            the root cause
    +092     */
    +093    public MeasurementParseException(Throwable cause) {
    +094        super(cause);
    +095    }
    +096
    +097    /**
    +098     * Constructs a MeasurementParseException with the specified detail message.
    +099     *
    +100     * @param message
    +101     *            the detail message
    +102     */
    +103    public MeasurementParseException(String message) {
    +104        super(message);
    +105    }
    +106
    +107    /**
    +108     * Returns the position where the error was found.
    +109     *
    +110     * @return the position of the error
    +111     */
    +112    public int getPosition() {
    +113        return position;
    +114    }
    +115
    +116    /**
    +117     * Returns the string that was being parsed.
    +118     *
    +119     * @return the parsed string, or {@code null}, if {@code null} was passed as input.
    +120     */
    +121    public String getParsedString() {
    +122        if (data == null) {
    +123            return null;
    +124        }
    +125        return data.toString();
    +126    }
    +127}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/format/QuantityFormat.html b/docs/apidocs/src-html/javax/measure/format/QuantityFormat.html new file mode 100644 index 00000000..4490e559 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/format/QuantityFormat.html @@ -0,0 +1,196 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.format;
    +031
    +032import java.io.IOException;
    +033import java.text.ParsePosition;
    +034
    +035import javax.measure.Quantity;
    +036
    +037/**
    +038 * Formats instances of {@link Quantity}.
    +039 *
    +040 * <dl>
    +041 * <dt><span class="strong"><a id="synchronization">Synchronization</a></span></dt>
    +042 * </dl>
    +043 * Instances of this class are not required to be thread-safe. It is recommended to use separate format instances for each thread. If multiple threads
    +044 * access a format concurrently, it must be synchronized externally.
    +045 *
    +046 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +047 * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
    +048 *
    +049 * @version 1.1, 20 May, 2023
    +050 * @since 2.0
    +051 *
    +052 * @see Quantity
    +053 */
    +054public interface QuantityFormat {
    +055
    +056    /**
    +057     * Formats the specified quantity into an {@code Appendable}.
    +058     *
    +059     * @param quantity
    +060     *          the quantity to format.
    +061     * @param destination
    +062     *          the appendable destination.
    +063     * @return the specified {@code Appendable}.
    +064     * @throws IOException
    +065     *           if an I/O exception occurs.
    +066     */
    +067    public Appendable format(Quantity<?> quantity, Appendable destination) throws IOException;
    +068
    +069    /**
    +070     * Formats the specified {@link Quantity}.
    +071     *
    +072     * @param quantity
    +073     *            the {@link Quantity} to format, not {@code null}
    +074     * @return the string representation using the settings of this {@link QuantityFormat}.
    +075     */
    +076    String format(Quantity<?> quantity);
    +077
    +078    /**
    +079     * Parses a portion of the specified {@code CharSequence} from the specified position to produce a {@link Quantity}.
    +080     * If parsing succeeds, then the index of the {@code pos} argument is updated to the index after the last character used.
    +081     *
    +082     * @param csq
    +083     *          the {@code CharSequence} to parse.
    +084     * @param pos
    +085     *          a ParsePosition object holding the current parsing index and error parsing index information as described above.
    +086     * @return the quantity parsed from the specified character sub-sequence.
    +087     * @throws MeasurementParseException
    +088     *           if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
    +089     */
    +090    public Quantity<?> parse(CharSequence csq, ParsePosition pos) throws MeasurementParseException;
    +091
    +092    /**
    +093     * Parses the specified {@code CharSequence} to produce a {@link Quantity}.
    +094     * <p>
    +095     * The parse must complete normally and parse the entire text. If the parse completes without reading the entire length of the text, an exception
    +096     * is thrown. If any other problem occurs during parsing, an exception is thrown.
    +097     * </p>
    +098     *
    +099     * @param csq
    +100     *          the {@code CharSequence} to parse.
    +101     * @return the quantity parsed from the specified character sub-sequence.
    +102     * @throws MeasurementParseException
    +103     *           if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
    +104     */
    +105    public Quantity<?> parse(CharSequence csq) throws MeasurementParseException;
    +106
    +107    /**
    +108     * Returns {@code true} if this {@link QuantityFormat} depends on a {@code Locale} to perform its tasks.
    +109     * <p>
    +110     * In environments that do not support a {@code Locale}, e.g. Java ME, this usually returns {@code false}.
    +111     * </p>
    +112     *
    +113     * @return whether this format depends on the locale.
    +114     */
    +115    default boolean isLocaleSensitive() {
    +116        return false;
    +117    }
    +118}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/format/UnitFormat.html b/docs/apidocs/src-html/javax/measure/format/UnitFormat.html new file mode 100644 index 00000000..e38a287b --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/format/UnitFormat.html @@ -0,0 +1,228 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.format;
    +031
    +032import java.io.IOException;
    +033import java.text.ParsePosition;
    +034
    +035import javax.measure.Unit;
    +036
    +037/**
    +038 * Formats instances of {@link Unit} to a {@link String} or {@link Appendable} and parses a {@link CharSequence} to a {@link Unit}.
    +039 *
    +040 * <dl>
    +041 * <dt><span class="strong"><a id="synchronization">Synchronization</a></span></dt>
    +042 * </dl>
    +043 * <p>
    +044 * Instances of this class are not required to be thread-safe. It is recommended to use separate format instances for each thread. If multiple threads
    +045 * access a format concurrently, it must be synchronized externally.
    +046 * </p>
    +047 *
    +048 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +049 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +050 *
    +051 * @version 2.2, May 20, 2023
    +052 * @since 1.0
    +053 *
    +054 * @see Unit
    +055 */
    +056public interface UnitFormat {
    +057    /**
    +058     * Formats the specified {@link Unit}.
    +059     *
    +060     * @param unit
    +061     *            the {@link Unit} to format, not {@code null}
    +062     * @param appendable
    +063     *            the appendable destination.
    +064     * @return the appendable destination passed in with formatted text appended.
    +065     * @throws IOException
    +066     *             if an error occurs while writing to the destination.
    +067     */
    +068    Appendable format(Unit<?> unit, Appendable appendable) throws IOException;
    +069
    +070    /**
    +071     * Formats the specified {@link Unit}.
    +072     *
    +073     * @param unit
    +074     *            the {@link Unit} to format, not {@code null}
    +075     * @return the string representation using the settings of this {@link UnitFormat}.
    +076     */
    +077    String format(Unit<?> unit);
    +078
    +079    /**
    +080     * Attaches a system-wide label to the specified {@link Unit}.
    +081     * <p>
    +082     * This method overrides the previous unit's label (e.g. label from unit database or unit system) as units may only have one label. Depending on the
    +083     * {@link UnitFormat} implementation, this call may be ignored if the particular unit already has a label.
    +084     * </p>
    +085     * If a {@link UnitFormat} implementation is explicitly <b>immutable</b>, similar to e.g. the result of <code>Collections.unmodifiableList()</code>,
    +086     * then an {@linkplain UnsupportedOperationException} may be thrown upon this call.
    +087     * <p>
    +088     * Since <code>UnitFormat</code> implementations often apply the Singleton pattern, <b>system-wide</b> means, the label applies to every instance of
    +089     * <code>UnitFormatA</code> implementing <code>UnitFormat</code> in this case, but not every instance of <code>UnitFormatB</code> or <code>UnitFormatC</code> both
    +090     * also implementing <code>UnitFormat</code>. If a <code>UnitFormat</code> #isLocaleSensitive() it is up to the implementation, whether the label is
    +091     * ignored, applied in a local-neutral manner (in addition to its local-sensitive information) or locale-specific.
    +092     * </p>
    +093     *
    +094     * @param unit
    +095     *            the unit being labeled.
    +096     * @param label
    +097     *            the new label for this unit.
    +098     * @throws IllegalArgumentException
    +099     *             if the label is not a valid identifier. This may include characters not supported by a particular {@link UnitFormat} implementation
    +100     *             (e.g. only <b>ASCII</b> characters for certain devices)
    +101     * @throws UnsupportedOperationException
    +102     *             if the <code>label</code> operation is not supported by this {@link UnitFormat}
    +103     */
    +104    void label(Unit<?> unit, String label);
    +105
    +106    /**
    +107     * Returns <code>true</code> if this {@link UnitFormat} depends on a <code>Locale</code> to perform its tasks.
    +108     * <p>
    +109     * In environments that do not support a <code>Locale</code>, e.g. Java ME, this usually returns <code>false</code>.
    +110     * </p>
    +111     *
    +112     * @return Whether this format depends on a locale.
    +113     */
    +114    default boolean isLocaleSensitive() {
    +115        return false;
    +116    }
    +117
    +118    /**
    +119     * Parses a portion of the specified <code>CharSequence</code> from the specified position to produce a {@link Unit}.
    +120     * If parsing succeeds, then the index of the <code>pos</code> argument is updated to the index after the last character used.
    +121     *
    +122     * @param csq
    +123     *            the <code>CharSequence</code> to parse.
    +124     * @param pos
    +125     *            a ParsePosition object holding the current parsing index and error parsing index information as described above.
    +126     * @return the unit parsed from the specified character sub-sequence.
    +127     * @throws MeasurementParseException
    +128     *             if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
    +129     * @since 2.0
    +130     */
    +131    Unit<?> parse(CharSequence csq, ParsePosition pos) throws MeasurementParseException;
    +132
    +133    /**
    +134     * Parses the text into an instance of {@link Unit}.
    +135     * <p>
    +136     * The parse must complete normally and parse the entire text. If the parse completes without reading the entire length of the text, an exception
    +137     * is thrown. If any other problem occurs during parsing, an exception is thrown.
    +138     * </p>
    +139     *
    +140     * @param csq
    +141     *            the {@code CharSequence} to parse.
    +142     * @return the unit parsed from the specified character sequence.
    +143     * @throws MeasurementParseException
    +144     *             if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
    +145     * @throws UnsupportedOperationException
    +146     *             if the {@link UnitFormat} is unable to parse.
    +147     * @since 2.0
    +148     */
    +149    Unit<?> parse(CharSequence csq) throws MeasurementParseException;
    +150}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/Acceleration.html b/docs/apidocs/src-html/javax/measure/quantity/Acceleration.html new file mode 100644 index 00000000..d4ce1bf5 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/Acceleration.html @@ -0,0 +1,126 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Rate of change of velocity with respect to time. The metric system unit for this quantity is "m/s²" (metre per square second).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +039 * @version 1.2
    +040 * @since 1.0
    +041 * @see <a href="https://en.wikipedia.org/wiki/Acceleration">Wikipedia: Acceleration</a>
    +042 *
    +043 * @see Length
    +044 * @see Speed
    +045 * @see Time
    +046 */
    +047public interface Acceleration extends Quantity<Acceleration> {
    +048}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/AmountOfSubstance.html b/docs/apidocs/src-html/javax/measure/quantity/AmountOfSubstance.html new file mode 100644 index 00000000..943bf14a --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/AmountOfSubstance.html @@ -0,0 +1,142 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Number of elementary entities (molecules, for example) of a substance. The metric system unit for this quantity is "mol" (mole).
    +036 *
    +037 * The mole, symbol mol, is the SI unit of amount of substance. One mole contains
    +038 * exactly 6.022 140 76 × 10²³ elementary entities. This number is the fixed numerical
    +039 * value of the Avogadro constant, NA, when expressed in the unit mol⁻¹ and is called
    +040 * the Avogadro number.
    +041 *
    +042 * The amount of substance, symbol n, of a system is a measure of the number of
    +043 * specified elementary entities. An elementary entity may be an atom, a molecule, an
    +044 * ion, an electron, any other particle or specified group of particles.
    +045 * This definition implies the exact relation Nₐ = 6.022 140 76 × 10²³ mol⁻¹.
    +046 *
    +047 * Inverting this relation gives an exact expression for the mole in terms of the defining constant NA:
    +048 *
    +049 * 1 mol = 6.02214076 × 10²³ / Nₐ
    +050 * <br>
    +051 * <dl>
    +052 * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
    +053 * </dl>
    +054 * 
    +055 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +056 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +057 * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
    +058 * @version 2.1
    +059 * @since 1.0
    +060 *
    +061 * @see <a href="http://en.wikipedia.org/wiki/Amount_of_substance">Wikipedia: Amount of Substance</a>
    +062 */
    +063public interface AmountOfSubstance extends Quantity<AmountOfSubstance> {
    +064}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/Angle.html b/docs/apidocs/src-html/javax/measure/quantity/Angle.html new file mode 100644 index 00000000..97db0cff --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/Angle.html @@ -0,0 +1,130 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Figure formed by two lines diverging from a common point. The metric system unit for this quantity is "rad" (radian).
    +036 * <br>
    +037 * <dl>
    +038 * <dt><span class="strong">API Note:</span></dt><dd>SI Derived Unit with special name and symbol</dd>
    +039 * </dl>
    +040 * 
    +041 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +042 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +043 * @version 2.0
    +044 * @since 1.0
    +045 *
    +046 * @see <a href="http://en.wikipedia.org/wiki/Angle">Wikipedia: Angle</a>
    +047 *
    +048 * @see SolidAngle
    +049 * @see Length
    +050 */
    +051public interface Angle extends Quantity<Angle> {
    +052}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/Area.html b/docs/apidocs/src-html/javax/measure/quantity/Area.html new file mode 100644 index 00000000..86804c03 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/Area.html @@ -0,0 +1,129 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Extent of a planar region or of the surface of a solid measured in square units. The metric system unit for this quantity is "m²" (square metre).
    +036 * <br>
    +037 * <dl>
    +038 * <dt><span class="strong">API Note:</span></dt><dd>SI Derived Unit</dd>
    +039 * </dl>
    +040 * 
    +041 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +042 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +043 * @version 2.0
    +044 * @since 1.0
    +045 *
    +046 * @see Length
    +047 * @see Volume
    +048 * @see Pressure
    +049 */
    +050public interface Area extends Quantity<Area> {
    +051}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/CatalyticActivity.html b/docs/apidocs/src-html/javax/measure/quantity/CatalyticActivity.html new file mode 100644 index 00000000..4bf5f52f --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/CatalyticActivity.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Catalytic activity. The metric system unit for this quantity is "kat" (katal).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface CatalyticActivity extends Quantity<CatalyticActivity> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/Dimensionless.html b/docs/apidocs/src-html/javax/measure/quantity/Dimensionless.html new file mode 100644 index 00000000..c80135aa --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/Dimensionless.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Dimensionless quantity.
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface Dimensionless extends Quantity<Dimensionless> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/ElectricCapacitance.html b/docs/apidocs/src-html/javax/measure/quantity/ElectricCapacitance.html new file mode 100644 index 00000000..c46a0ff6 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/ElectricCapacitance.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Electric capacitance. The metric system unit for this quantity is "F" (Farad).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface ElectricCapacitance extends Quantity<ElectricCapacitance> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/ElectricCharge.html b/docs/apidocs/src-html/javax/measure/quantity/ElectricCharge.html new file mode 100644 index 00000000..133ab279 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/ElectricCharge.html @@ -0,0 +1,122 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Electric charge. The metric system unit for this quantity is "C" (Coulomb).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 *
    +041 * @see ElectricCurrent
    +042 */
    +043public interface ElectricCharge extends Quantity<ElectricCharge> {
    +044}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/ElectricConductance.html b/docs/apidocs/src-html/javax/measure/quantity/ElectricConductance.html new file mode 100644 index 00000000..a756c090 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/ElectricConductance.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Electric conductance. The metric system unit for this quantity "S" (Siemens).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface ElectricConductance extends Quantity<ElectricConductance> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/ElectricCurrent.html b/docs/apidocs/src-html/javax/measure/quantity/ElectricCurrent.html new file mode 100644 index 00000000..8e2c9c22 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/ElectricCurrent.html @@ -0,0 +1,140 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Amount of electric charge flowing past a specified circuit point per unit time. The metric system unit for this quantity is "A" (Ampere).
    +036 *
    +037 * The ampere, symbol A, is the SI unit of electric current. It is defined by taking the
    +038 * fixed numerical value of the elementary charge e to be 1.602 176 634 × 10⁻¹⁹ when
    +039 * expressed in the unit C, which is equal to A s, where the second is defined in terms
    +040 * of ∆νCs.
    +041 *
    +042 * This definition implies the exact relation e = 1.602 176 634 × 10⁻¹⁹ A s. Inverting this
    +043 * relation gives an exact expression for the unit ampere in terms of the defining constants e
    +044 * and ∆νCs:
    +045 *
    +046 * 1 A = (e / 1.602 176 634 × 10⁻¹⁹) s⁻¹
    +047 * <br>
    +048 * <dl>
    +049 * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
    +050 * </dl>
    +051 * 
    +052 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +053 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +054 * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
    +055 * @version 2.1
    +056 * @since 1.0
    +057 * @see <a href="https://en.wikipedia.org/wiki/Electric_current">Wikipedia: Electric Current</a>
    +058 * @see ElectricCharge
    +059 * @see Time
    +060 */
    +061public interface ElectricCurrent extends Quantity<ElectricCurrent> {
    +062}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/ElectricInductance.html b/docs/apidocs/src-html/javax/measure/quantity/ElectricInductance.html new file mode 100644 index 00000000..67c6f339 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/ElectricInductance.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Electric inductance. The metric system unit for this quantity is "H" (Henry).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface ElectricInductance extends Quantity<ElectricInductance> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/ElectricPotential.html b/docs/apidocs/src-html/javax/measure/quantity/ElectricPotential.html new file mode 100644 index 00000000..0c2a2601 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/ElectricPotential.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Electric potential or electromotive force. The metric system unit for this quantity is "V" (Volt).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface ElectricPotential extends Quantity<ElectricPotential> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/ElectricResistance.html b/docs/apidocs/src-html/javax/measure/quantity/ElectricResistance.html new file mode 100644 index 00000000..19bf0b3a --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/ElectricResistance.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Electric resistance. The metric system unit for this quantity is "Ohm" (Ω).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface ElectricResistance extends Quantity<ElectricResistance> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/Energy.html b/docs/apidocs/src-html/javax/measure/quantity/Energy.html new file mode 100644 index 00000000..ac85104a --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/Energy.html @@ -0,0 +1,124 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Capacity of a physical system to do work. The metric system unit for this quantity "J" (Joule).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 *
    +041 * @see Force
    +042 * @see Power
    +043 * @see Time
    +044 */
    +045public interface Energy extends Quantity<Energy> {
    +046}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/Force.html b/docs/apidocs/src-html/javax/measure/quantity/Force.html new file mode 100644 index 00000000..a3781145 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/Force.html @@ -0,0 +1,124 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Quantity that tends to produce an acceleration of a body in the direction of its application. The metric system unit for this quantity is "N"
    +036 * (Newton).
    +037 *
    +038 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +039 * @version 1.1
    +040 * @since 1.0
    +041 *
    +042 * @see Energy
    +043 * @see Pressure
    +044 */
    +045public interface Force extends Quantity<Force> {
    +046}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/Frequency.html b/docs/apidocs/src-html/javax/measure/quantity/Frequency.html new file mode 100644 index 00000000..4cf38c64 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/Frequency.html @@ -0,0 +1,122 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Number of times a specified phenomenon occurs within a specified interval. The metric system unit for this quantity is "Hz" (Hertz).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 *
    +041 * @see Time
    +042 */
    +043public interface Frequency extends Quantity<Frequency> {
    +044}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/Illuminance.html b/docs/apidocs/src-html/javax/measure/quantity/Illuminance.html new file mode 100644 index 00000000..65aef88a --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/Illuminance.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Illuminance. The metric system unit for this quantity is "lx" (lux).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface Illuminance extends Quantity<Illuminance> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/Length.html b/docs/apidocs/src-html/javax/measure/quantity/Length.html new file mode 100644 index 00000000..2dd5b51c --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/Length.html @@ -0,0 +1,144 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Extent of something along its greatest dimension or the extent of space between two objects or places.
    +036 * The metric system unit for this quantity is "m" (metre).
    +037 *
    +038 * The metre, symbol m, is the SI unit of length. It is defined by taking the fixed
    +039 * numerical value of the speed of light in vacuum c to be 299 792 458 when expressed
    +040 * in the unit m s⁻¹, where the second is defined in terms of the caesium frequency
    +041 * ∆νCs.
    +042 *
    +043 * This definition implies the exact relation c = 299 792 458 m s⁻¹. Inverting this relation
    +044 * gives an exact expression for the metre in terms of the defining constants c and ∆νCs:
    +045 *
    +046 * 1 m = (c / 299 792 458)s = 9 192 631 770 c / 299 792 458 ∆νCs ≈ 30.663 319 c / ∆νCs
    +047 * <br>
    +048 * <dl>
    +049 * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
    +050 * </dl>
    +051 * 
    +052 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +053 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +054 * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
    +055 * @version 2.1
    +056 * @since 1.0
    +057 * 
    +058 * @see <a href="https://en.wikipedia.org/wiki/Length">Wikipedia: Length</a>
    +059 * @see Area
    +060 * @see Volume
    +061 * @see Angle
    +062 * @see SolidAngle
    +063 * @see Speed
    +064 */
    +065public interface Length extends Quantity<Length> {
    +066}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/LuminousFlux.html b/docs/apidocs/src-html/javax/measure/quantity/LuminousFlux.html new file mode 100644 index 00000000..6367cf11 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/LuminousFlux.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Luminous flux. The metric system unit for this quantity is "lm" (lumen).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.1
    +039 * @since 1.0
    +040 */
    +041public interface LuminousFlux extends Quantity<LuminousFlux> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/LuminousIntensity.html b/docs/apidocs/src-html/javax/measure/quantity/LuminousIntensity.html new file mode 100644 index 00000000..f659acb1 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/LuminousIntensity.html @@ -0,0 +1,141 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Luminous flux density per solid angle as measured in a given direction relative to the emitting source.
    +036 * The metric system unit for this quantity is "cd" (candela).
    +037 *
    +038 * The candela, symbol cd, is the SI unit of luminous intensity in a given direction. It is
    +039 * defined by taking the fixed numerical value of the luminous efficacy of
    +040 * monochromatic radiation of frequency 540 × 10¹² Hz, Kcd, to be 683 when expressed
    +041 * in the unit lm W−1, which is equal to cd sr W⁻¹, or cd sr kg⁻¹ m⁻² s³, where the kilogram,
    +042 * metre and second are defined in terms of h, c and ∆νCs.
    +043 *
    +044 * This definition implies the exact relation Kcd = 683 cd sr kg⁻¹ m⁻² s³ for monochromatic
    +045 * radiation of frequency ν = 540 × 10¹² Hz. Inverting this relation gives an exact expression
    +046 * for the candela in terms of the defining constants Kcd, h and ∆νCs:
    +047 *
    +048 * 1 cd = (Kcd / 683) kg m² s⁻³ sr⁻¹
    +049 * <br>
    +050 * <dl>
    +051 * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
    +052 * </dl>
    +053 * 
    +054 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +055 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +056 * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
    +057 * @version 2.1
    +058 * @since 1.0
    +059 * 
    +060 * @see <a href="https://en.wikipedia.org/wiki/Luminous_intensity">Wikipedia: Luminous intensity</a>
    +061 */
    +062public interface LuminousIntensity extends Quantity<LuminousIntensity> {
    +063}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/MagneticFlux.html b/docs/apidocs/src-html/javax/measure/quantity/MagneticFlux.html new file mode 100644 index 00000000..e53b888e --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/MagneticFlux.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Magnetic flux. The metric system unit for this quantity is "Wb" (Weber).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface MagneticFlux extends Quantity<MagneticFlux> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/MagneticFluxDensity.html b/docs/apidocs/src-html/javax/measure/quantity/MagneticFluxDensity.html new file mode 100644 index 00000000..f546a747 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/MagneticFluxDensity.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Magnetic flux density. The metric system unit for this quantity is "T" (Tesla).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface MagneticFluxDensity extends Quantity<MagneticFluxDensity> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/Mass.html b/docs/apidocs/src-html/javax/measure/quantity/Mass.html new file mode 100644 index 00000000..333763f7 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/Mass.html @@ -0,0 +1,141 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Measure of the quantity of matter that a body or an object contains. The mass of the body is not dependent on gravity and therefore is different
    +036 * from but proportional to its weight. The metric system unit for this quantity is "kg" (kilogram).
    +037 *
    +038 * The kilogram, symbol kg, is the SI unit of mass. It is defined by taking the fixed
    +039 * numerical value of the Planck constant h to be 6.626 070 15 × 10⁻³⁴ when expressed
    +040 * in the unit J s, which is equal to kg m² s−1, where the metre and the second are
    +041 * defined in terms of c and ∆νCs.
    +042 *
    +043 * This definition implies the exact relation h = 6.626 070 15 × 10−34 kg m² s⁻¹. Inverting this
    +044 * relation gives an exact expression for the kilogram in terms of the three defining constants
    +045 * h, ∆νCs and c:
    +046 *
    +047 * 1 kg = (h / 6.626 070 15 × 10⁻³⁴) m⁻² s
    +048 * <br>
    +049 * <dl>
    +050 * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
    +051 * </dl>
    +052 *
    +053 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +054 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +055 * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
    +056 * @version 2.0
    +057 * @since 1.0
    +058 *
    +059 * @see <a href="https://en.wikipedia.org/wiki/Mass">Wikipedia: Mass</a>
    +060 * @see RadiationDoseAbsorbed
    +061 */
    +062public interface Mass extends Quantity<Mass> {
    +063}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/Power.html b/docs/apidocs/src-html/javax/measure/quantity/Power.html new file mode 100644 index 00000000..543d4d8b --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/Power.html @@ -0,0 +1,123 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Rate at which work is done. The metric system unit for this quantity is "W" (Watt).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 *
    +041 * @see Energy
    +042 * @see Time
    +043 */
    +044public interface Power extends Quantity<Power> {
    +045}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/Pressure.html b/docs/apidocs/src-html/javax/measure/quantity/Pressure.html new file mode 100644 index 00000000..5b7a6b19 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/Pressure.html @@ -0,0 +1,123 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Force applied uniformly over a surface. The metric system unit for this quantity is "Pa" (Pascal).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 *
    +041 * @see Force
    +042 * @see Area
    +043 */
    +044public interface Pressure extends Quantity<Pressure> {
    +045}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/RadiationDoseAbsorbed.html b/docs/apidocs/src-html/javax/measure/quantity/RadiationDoseAbsorbed.html new file mode 100644 index 00000000..53db1a7d --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/RadiationDoseAbsorbed.html @@ -0,0 +1,122 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Amount of energy deposited per unit of mass. The system unit for this quantity is "Gy" (Gray).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.1
    +039 * @since 1.0
    +040 *
    +041 * @see Mass
    +042 */
    +043public interface RadiationDoseAbsorbed extends Quantity<RadiationDoseAbsorbed> {
    +044}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/RadiationDoseEffective.html b/docs/apidocs/src-html/javax/measure/quantity/RadiationDoseEffective.html new file mode 100644 index 00000000..3e2f0d90 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/RadiationDoseEffective.html @@ -0,0 +1,121 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Effective (or "equivalent") dose of radiation received by a human or some other living organism. The metric system unit for this quantity is "Sv"
    +036 * (Sievert).
    +037 *
    +038 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +039 * @version 1.0
    +040 * @since 1.0
    +041 */
    +042public interface RadiationDoseEffective extends Quantity<RadiationDoseEffective> {
    +043}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/Radioactivity.html b/docs/apidocs/src-html/javax/measure/quantity/Radioactivity.html new file mode 100644 index 00000000..1ace5c8d --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/Radioactivity.html @@ -0,0 +1,122 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Radioactive activity. The metric system unit for this quantity is "Bq" (Becquerel).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +039 * @author Martin Desruisseaux
    +040 * @version 1.2
    +041 * @since 1.0
    +042 */
    +043public interface Radioactivity extends Quantity<Radioactivity> {
    +044}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/SolidAngle.html b/docs/apidocs/src-html/javax/measure/quantity/SolidAngle.html new file mode 100644 index 00000000..30381906 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/SolidAngle.html @@ -0,0 +1,123 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Angle formed by three or more planes intersecting at a common point. The metric system unit for this quantity is "sr" (steradian).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +039 * @version 1.3
    +040 * @since 1.0
    +041 *
    +042 * @see Angle
    +043 */
    +044public interface SolidAngle extends Quantity<SolidAngle> {
    +045}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/Speed.html b/docs/apidocs/src-html/javax/measure/quantity/Speed.html new file mode 100644 index 00000000..95492469 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/Speed.html @@ -0,0 +1,131 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Distance traveled divided by the time of travel. The metric system unit for this quantity is "m/s" (metre per second).
    +036 *
    +037 * <p>
    +038 * <cite>Speed</cite> is a scalar value, while <cite>velocity</cite> is a vector. Speed is the magnitude of the velocity vector, or the components of
    +039 * the velocity vector.
    +040 * </p>
    +041 *
    +042 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +043 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +044 * @version 1.2
    +045 * @since 1.0
    +046 *
    +047 * @see Length
    +048 * @see Time
    +049 * @see Acceleration
    +050 * @see <a href="http://en.wikipedia.org/wiki/Speed">Wikipedia: Speed</a>
    +051 */
    +052public interface Speed extends Quantity<Speed> {
    +053}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/Temperature.html b/docs/apidocs/src-html/javax/measure/quantity/Temperature.html new file mode 100644 index 00000000..841d61b6 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/Temperature.html @@ -0,0 +1,139 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Degree of hotness or coldness of a body or an environment. The metric system unit for this quantity is "K" (Kelvin).
    +036 *
    +037 * The kelvin, symbol K, is the SI unit of thermodynamic temperature. It is defined by
    +038 * taking the fixed numerical value of the Boltzmann constant k to be 1.380 649 × 10−²³
    +039 * when expressed in the unit J K⁻¹, which is equal to kg m² s⁻² K⁻¹, where the
    +040 * kilogram, metre and second are defined in terms of h, c and ∆νCs.
    +041 *
    +042 * This definition implies the exact relation k = 1.380 649 × 10⁻²³ kg m² s⁻² K⁻¹. Inverting this
    +043 * relation gives an exact expression for the kelvin in terms of the defining constants k, h and
    +044 * ∆νCs:
    +045 *
    +046 * 1 K = (1.380 649 / k) × 10⁻²³ kg m² s⁻²
    +047 * <br>
    +048 * <dl>
    +049 * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
    +050 * </dl>
    +051 * 
    +052 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +053 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +054 * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
    +055 * @version 2.1
    +056 * @since 1.0
    +057 *
    +058 * @see <a href="https://en.wikipedia.org/wiki/Temperature">Wikipedia: Temperature</a>
    +059 */
    +060public interface Temperature extends Quantity<Temperature> {
    +061}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/Time.html b/docs/apidocs/src-html/javax/measure/quantity/Time.html new file mode 100644 index 00000000..169c6f8f --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/Time.html @@ -0,0 +1,142 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Period of existence or persistence. The metric system unit for this quantity is "s" (second).
    +036 *
    +037 * The second, symbol s, is the SI unit of time. It is defined by taking the fixed
    +038 * numerical value of the caesium frequency ∆νCs, the unperturbed ground-state
    +039 * hyperfine transition frequency of the caesium 133 atom, to be 9 192 631 770 when
    +040 * expressed in the unit Hz, which is equal to s⁻¹.
    +041 *
    +042 * This definition implies the exact relation ∆νCs = 9 192 631 770 Hz. Inverting this relation
    +043 * gives an expression for the unit second in terms of the defining constant ∆νCs:
    +044 *
    +045 * 1 Hz = ∆νCs / 9 192 631 770  or  1 s = 9 192 631 770 / ∆νCs
    +046 * <br>
    +047 * <dl>
    +048 * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
    +049 * </dl>
    +050 * 
    +051 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +052 * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
    +053 * @version 2.1
    +054 * @since 1.0
    +055 *
    +056 * @see Frequency
    +057 * @see Speed
    +058 * @see Acceleration
    +059 * @see ElectricCurrent
    +060 * @see Power
    +061 * @see <a href="https://en.wikipedia.org/wiki/Unit_of_time">Wikipedia: Unit of time</a>
    +062 */
    +063public interface Time extends Quantity<Time> {
    +064}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/quantity/Volume.html b/docs/apidocs/src-html/javax/measure/quantity/Volume.html new file mode 100644 index 00000000..8eb4a148 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/quantity/Volume.html @@ -0,0 +1,124 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Amount of space occupied by a three-dimensional object or region of space. The metric system unit for this quantity is "m³" (cubic metre).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +039 * @version 1.3
    +040 * @since 1.0
    +041 *
    +042 * @see Length
    +043 * @see Area
    +044 */
    +045public interface Volume extends Quantity<Volume> {
    +046}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/spi/FormatService.FormatType.html b/docs/apidocs/src-html/javax/measure/spi/FormatService.FormatType.html new file mode 100644 index 00000000..aa0e1ad3 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/spi/FormatService.FormatType.html @@ -0,0 +1,197 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.spi;
    +031
    +032import java.util.Set;
    +033
    +034import javax.measure.format.QuantityFormat;
    +035import javax.measure.format.UnitFormat;
    +036
    +037/**
    +038 * This interface represents the service to obtain instances of {@link UnitFormat} and {@link QuantityFormat}.
    +039 *
    +040 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +041 * @version 2.3, May 20, 2023
    +042 * @since 2.0
    +043 */
    +044public interface FormatService {
    +045
    +046        /** The type of format, either a {@link UnitFormat} or {@link QuantityFormat} */
    +047    public static enum FormatType {
    +048        /** Format of type {@link UnitFormat} */
    +049        UNIT_FORMAT, 
    +050        /** Format of type {@link QuantityFormat} */
    +051        QUANTITY_FORMAT
    +052    }
    +053
    +054    /**
    +055     * Returns the default quantity format.
    +056     *
    +057     * It is up to implementations what to consider a suitable default. For some (locale-sensitive) implementations it may be a quantity format based on
    +058     * {@code Locale.current()} while others may return {@code getQuantityFormat("Simple")} or {@code getQuantityFormat("ISO")}.
    +059     *
    +060     * @return the default {@link QuantityFormat} implementation.
    +061     */
    +062    QuantityFormat getQuantityFormat();
    +063
    +064    /**
    +065     * Returns the quantity format having the specified name or {@code null} if none.
    +066     *
    +067     * For example (@code getQuantityFormat("Simple")} to return the simple {@link QuantityFormat} implementation.
    +068     *
    +069     * @param name
    +070     *          the name of the format.
    +071     * @return the corresponding quantity format.
    +072     */
    +073    QuantityFormat getQuantityFormat(String name);
    +074
    +075    /**
    +076     * Returns the default unit format.
    +077     *
    +078     * It is up to implementations what to consider a suitable default. For some (locale-sensitive) implementations it may be a unit format based on
    +079     * {@code Locale.current()} while others may return {@code getUnitFormat("Simple")} or {@code getUnitFormat("ISO")}.
    +080     *
    +081     * @return the default {@link UnitFormat} implementation.
    +082     */
    +083    UnitFormat getUnitFormat();
    +084
    +085    /**
    +086     * Returns the unit format having the specified name or {@code null} if none.
    +087     *
    +088     * For example {@code getUnitFormat("Simple")} to return a simple {@link UnitFormat} implementation.
    +089     *
    +090     * @param name
    +091     *          the name of the format.
    +092     * @return the corresponding unit format.
    +093     */
    +094    UnitFormat getUnitFormat(String name);
    +095    
    +096    /**
    +097     * Returns the unit format having the specified name or {@code null} if none.
    +098     *
    +099     * For example {@code getUnitFormat("Simple")} to return a simple {@link UnitFormat} implementation.<br>
    +100     * The variant is an arbitrary value to allow a variation of a {@link UnitFormat}, 
    +101     * for example <code>UTF</code> vs. <code>ASCII</code> encoding of the simple <code>UnitFormat</code> 
    +102     * or <code>case sensitive</code> vs. <code>case insensitive</code> <a href="https://ucum.org/ucum.html">UCUM</a> format.
    +103     * <p>If no variant is applicable, the <code>UnitFormat</code> matching the name only is returned.</p> 
    +104     * @param name
    +105     *          the name of the format.
    +106     * @param variant any arbitrary value used to indicate a variation of a <code>UnitFormat</code>.
    +107     * @return the corresponding unit format.
    +108     */
    +109    UnitFormat getUnitFormat(String name, String variant);
    +110    
    +111    /**
    +112     * Gets a list with available format names of a given type for this format service.
    +113     *
    +114     * @param type
    +115     *          the {@link FormatType}
    +116     * @return list of available formats, never null.
    +117     */
    +118    Set<String> getAvailableFormatNames(FormatType type);
    +119}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/spi/FormatService.html b/docs/apidocs/src-html/javax/measure/spi/FormatService.html new file mode 100644 index 00000000..a5464138 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/spi/FormatService.html @@ -0,0 +1,197 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.spi;
    +031
    +032import java.util.Set;
    +033
    +034import javax.measure.format.QuantityFormat;
    +035import javax.measure.format.UnitFormat;
    +036
    +037/**
    +038 * This interface represents the service to obtain instances of {@link UnitFormat} and {@link QuantityFormat}.
    +039 *
    +040 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +041 * @version 2.3, May 20, 2023
    +042 * @since 2.0
    +043 */
    +044public interface FormatService {
    +045
    +046        /** The type of format, either a {@link UnitFormat} or {@link QuantityFormat} */
    +047    public static enum FormatType {
    +048        /** Format of type {@link UnitFormat} */
    +049        UNIT_FORMAT, 
    +050        /** Format of type {@link QuantityFormat} */
    +051        QUANTITY_FORMAT
    +052    }
    +053
    +054    /**
    +055     * Returns the default quantity format.
    +056     *
    +057     * It is up to implementations what to consider a suitable default. For some (locale-sensitive) implementations it may be a quantity format based on
    +058     * {@code Locale.current()} while others may return {@code getQuantityFormat("Simple")} or {@code getQuantityFormat("ISO")}.
    +059     *
    +060     * @return the default {@link QuantityFormat} implementation.
    +061     */
    +062    QuantityFormat getQuantityFormat();
    +063
    +064    /**
    +065     * Returns the quantity format having the specified name or {@code null} if none.
    +066     *
    +067     * For example (@code getQuantityFormat("Simple")} to return the simple {@link QuantityFormat} implementation.
    +068     *
    +069     * @param name
    +070     *          the name of the format.
    +071     * @return the corresponding quantity format.
    +072     */
    +073    QuantityFormat getQuantityFormat(String name);
    +074
    +075    /**
    +076     * Returns the default unit format.
    +077     *
    +078     * It is up to implementations what to consider a suitable default. For some (locale-sensitive) implementations it may be a unit format based on
    +079     * {@code Locale.current()} while others may return {@code getUnitFormat("Simple")} or {@code getUnitFormat("ISO")}.
    +080     *
    +081     * @return the default {@link UnitFormat} implementation.
    +082     */
    +083    UnitFormat getUnitFormat();
    +084
    +085    /**
    +086     * Returns the unit format having the specified name or {@code null} if none.
    +087     *
    +088     * For example {@code getUnitFormat("Simple")} to return a simple {@link UnitFormat} implementation.
    +089     *
    +090     * @param name
    +091     *          the name of the format.
    +092     * @return the corresponding unit format.
    +093     */
    +094    UnitFormat getUnitFormat(String name);
    +095    
    +096    /**
    +097     * Returns the unit format having the specified name or {@code null} if none.
    +098     *
    +099     * For example {@code getUnitFormat("Simple")} to return a simple {@link UnitFormat} implementation.<br>
    +100     * The variant is an arbitrary value to allow a variation of a {@link UnitFormat}, 
    +101     * for example <code>UTF</code> vs. <code>ASCII</code> encoding of the simple <code>UnitFormat</code> 
    +102     * or <code>case sensitive</code> vs. <code>case insensitive</code> <a href="https://ucum.org/ucum.html">UCUM</a> format.
    +103     * <p>If no variant is applicable, the <code>UnitFormat</code> matching the name only is returned.</p> 
    +104     * @param name
    +105     *          the name of the format.
    +106     * @param variant any arbitrary value used to indicate a variation of a <code>UnitFormat</code>.
    +107     * @return the corresponding unit format.
    +108     */
    +109    UnitFormat getUnitFormat(String name, String variant);
    +110    
    +111    /**
    +112     * Gets a list with available format names of a given type for this format service.
    +113     *
    +114     * @param type
    +115     *          the {@link FormatType}
    +116     * @return list of available formats, never null.
    +117     */
    +118    Set<String> getAvailableFormatNames(FormatType type);
    +119}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/spi/QuantityFactory.html b/docs/apidocs/src-html/javax/measure/spi/QuantityFactory.html new file mode 100644 index 00000000..f87686a8 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/spi/QuantityFactory.html @@ -0,0 +1,174 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.spi;
    +031
    +032import javax.measure.Quantity;
    +033import javax.measure.Quantity.Scale;
    +034import javax.measure.Unit;
    +035
    +036/**
    +037 * Represents a factory that accepts {@link Number} and {@link Unit} arguments to create {@link Quantity} results.
    +038 *
    +039 * @param <Q>
    +040 *          the type of the {@link Quantity} result
    +041 *
    +042 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +043 * @author <a href="mailto:otaviopolianasantana@gmail.com">Otavio Santana</a>
    +044 * @version 1.4, December 18, 2018
    +045 * @since 1.0
    +046 *
    +047 * @see <a href="https://en.wikipedia.org/wiki/Factory_method_pattern"> Wikipedia: Factory method pattern</a>
    +048 * @see Quantity
    +049 * @see Unit
    +050 */
    +051public interface QuantityFactory<Q extends Quantity<Q>> {
    +052
    +053    /**
    +054     * Returns the quantity for the specified number stated in the specified unit and scale.
    +055     *
    +056     * @param value
    +057     *          the numeric value stated in the specified unit
    +058     * @param unit
    +059     *          the unit
    +060     * @param scale
    +061     *          The {@code ABSOLUTE} / {@code RELATIVE} {@code scale} of this quantity
    +062     * @return the corresponding quantity
    +063     * @since 2.0
    +064     */
    +065    Quantity<Q> create(Number value, Unit<Q> unit, Scale scale);
    +066    
    +067    /**
    +068     * Returns the quantity for the specified number stated in the specified unit.
    +069     *
    +070     * @param value
    +071     *          the numeric value stated in the specified unit
    +072     * @param unit
    +073     *          the unit
    +074     * @return the corresponding quantity
    +075     */
    +076    Quantity<Q> create(Number value, Unit<Q> unit);
    +077
    +078    /**
    +079     * Returns the system unit for quantities produced by this factory or {@code null} if unknown.
    +080     *
    +081     * <p>
    +082     * Because the system unit is unique by quantity type, it can be be used to identify the quantity given the unit. For example:
    +083     * </p>
    +084     *
    +085     * <pre>
    +086     *     static boolean isAngularSpeed({@literal Unit<?>} unit) {
    +087     *         return unit.getSystemUnit().equals(RADIAN.divide(SECOND));
    +088     *     }
    +089     *     assert isAngularSpeed(REVOLUTION.divide(MINUTE)); // Returns true.
    +090     * </pre>
    +091     *
    +092     * @return the system unit for this factory.
    +093     * @see Unit#getSystemUnit()
    +094     */
    +095    Unit<Q> getSystemUnit();
    +096}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/spi/ServiceProvider.html b/docs/apidocs/src-html/javax/measure/spi/ServiceProvider.html new file mode 100644 index 00000000..5add70d6 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/spi/ServiceProvider.html @@ -0,0 +1,491 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.spi;
    +031
    +032import java.lang.annotation.Annotation;
    +033import java.lang.reflect.InvocationTargetException;
    +034import java.lang.reflect.Method;
    +035import java.util.ArrayList;
    +036import java.util.Comparator;
    +037import java.util.List;
    +038import java.util.Objects;
    +039import java.util.Optional;
    +040import java.util.ServiceConfigurationError;
    +041import java.util.ServiceLoader;
    +042import java.util.concurrent.atomic.AtomicReference;
    +043import java.util.function.Predicate;
    +044import java.util.logging.Level;
    +045import java.util.logging.Logger;
    +046import java.util.stream.Collectors;
    +047import java.util.stream.Stream;
    +048import java.util.stream.StreamSupport;
    +049import javax.measure.Quantity;
    +050import javax.measure.format.QuantityFormat;
    +051import javax.measure.format.UnitFormat;
    +052
    +053/**
    +054 * Service Provider for Units of Measurement services.
    +055 * <p>
    +056 * All the methods in this class are safe to use by multiple concurrent threads.
    +057 * </p>
    +058 *
    +059 * @version 2.3, May 19, 2023
    +060 * @author Werner Keil
    +061 * @author Martin Desruisseaux
    +062 * @since 1.0
    +063 */
    +064public abstract class ServiceProvider {
    +065    /**
    +066     * Class name of JSR-330 annotation for naming a service provider.
    +067     * We use reflection for keeping JSR-330 an optional dependency.
    +068     */
    +069    private static final String LEGACY_NAMED_ANNOTATION = "javax.inject.Named";
    +070
    +071    /**
    +072     * Class name of JSR-250 annotation for assigning a priority level to a service provider.
    +073     * We use reflection for keeping JSR-250 an optional dependency.
    +074     */
    +075    private static final String LEGACY_PRIORITY_ANNOTATION = "javax.annotation.Priority";
    +076
    +077    /**
    +078     * Class name of Jakarta Dependency Injection annotation for naming a service provider.
    +079     * We use reflection for keeping Jakata Injection an optional dependency.
    +080     */
    +081    private static final String NAMED_ANNOTATION = "jakarta.inject.Named";
    +082
    +083    /**
    +084     * Class name of Jakarta Common Annotation for assigning a priority level to a service provider.
    +085     * We use reflection for keeping Jakarta Annotations an optional dependency.
    +086     */
    +087    private static final String PRIORITY_ANNOTATION = "jakarta.annotation.Priority";
    +088
    +089    /**
    +090     * The current service provider, or {@code null} if not yet determined.
    +091     *
    +092     * <p>Implementation Note: We do not cache a list of all service providers because that list depends
    +093     * indirectly on the thread invoking the {@link #available()} method. More specifically, it depends
    +094     * on the context class loader. Furthermore caching the {@code ServiceProvider}s can be a source of
    +095     * memory leaks. See {@link ServiceLoader#load(Class)} API note for reference.</p>
    +096     */
    +097    private static final AtomicReference<ServiceProvider> current = new AtomicReference<>();
    +098
    +099    /**
    +100     * Creates a new service provider. Only to be used by subclasses.
    +101     */
    +102    protected ServiceProvider() {
    +103    }
    +104
    +105    /**
    +106     * Allows to define a priority for a registered {@code ServiceProvider} instance.
    +107     * When multiple providers are registered in the system, the provider with the highest priority value is taken.
    +108     *
    +109     * <p>If the {@value #PRIORITY_ANNOTATION} annotation (from Jakarta Annotations)
    +110     * or {@value #LEGACY_PRIORITY_ANNOTATION} annotation (from JSR-250) is present on the {@code ServiceProvider}
    +111     * implementation class, then that annotation (first if both were present) is taken and this {@code getPriority()} method is ignored.
    +112     * Otherwise – if a {@code Priority} annotation is absent – this method is used as a fallback.</p>
    +113     *
    +114     * @return the provider's priority (default is 0).
    +115     */
    +116    public int getPriority() {
    +117        return 0;
    +118    }
    +119
    +120    /**
    +121     * Returns the service to obtain a {@link SystemOfUnits}, or {@code null} if none.
    +122     *
    +123     * @return the service to obtain a {@link SystemOfUnits}, or {@code null}.
    +124     */
    +125    public abstract SystemOfUnitsService getSystemOfUnitsService();
    +126
    +127    /**
    +128     * Returns the service to obtain {@link UnitFormat} and {@link QuantityFormat} or {@code null} if none.
    +129     *
    +130     * @return the service to obtain a {@link UnitFormat} and {@link QuantityFormat}, or {@code null}.
    +131     * @since 2.0
    +132     */
    +133    public abstract FormatService getFormatService();
    +134
    +135    /**
    +136     * Returns a factory for the given {@link Quantity} type.
    +137     *
    +138     * @param <Q>
    +139     *            the type of the {@link Quantity} instances created by the factory
    +140     * @param quantity
    +141     *            the quantity type
    +142     * @return the {@link QuantityFactory} for the given type
    +143     */
    +144    public abstract <Q extends Quantity<Q>> QuantityFactory<Q> getQuantityFactory(Class<Q> quantity);
    +145
    +146    /**
    +147     * A filter and a comparator for processing the stream of service providers.
    +148     * The two tasks (filtering and sorting) are implemented by the same class,
    +149     * but the filter task shall be used only if the name to search is non-null.
    +150     * The comparator is used in all cases, for sorting providers with higher priority first.
    +151     */
    +152    private static final class Selector implements Predicate<ServiceProvider>, Comparator<ServiceProvider> {
    +153        /**
    +154         * The name of the provider to search, or {@code null} if no filtering by name is applied.
    +155         */
    +156        private final String toSearch;
    +157
    +158        /**
    +159         * The {@code value()} method in the {@value #NAMED_ANNOTATION} annotation,
    +160         * or {@code null} if that class is not on the classpath.
    +161         */
    +162        private final Method nameGetter;
    +163
    +164        /**
    +165         * The {@code value()} method in the {@value #PRIORITY_ANNOTATION} annotation,
    +166         * or {@code null} if that class is not on the classpath.
    +167         */
    +168        private final Method priorityGetter;
    +169
    +170        /**
    +171         * The {@code value()} method in the {@value #LEGACY_NAMED_ANNOTATION} annotation,
    +172         * or {@code null} if that class is not on the classpath.
    +173         */
    +174        private final Method legacyNameGetter;
    +175
    +176        /**
    +177         * The {@code value()} method in the {@value #LEGACY_PRIORITY_ANNOTATION} annotation,
    +178         * or {@code null} if that class is not on the classpath.
    +179         */
    +180        private final Method legacyPriorityGetter;
    +181
    +182        /**
    +183         * Creates a new filter and comparator for a stream of service providers.
    +184         *
    +185         * @param name  name of the desired service provider, or {@code null} if no filtering by name is applied.
    +186         */
    +187        Selector(String name) {
    +188            toSearch = name;
    +189            try {
    +190                if (name != null) {
    +191                    nameGetter       = getValueMethod(NAMED_ANNOTATION);
    +192                    legacyNameGetter = getValueMethod(LEGACY_NAMED_ANNOTATION);
    +193                } else {
    +194                    nameGetter       = null;
    +195                    legacyNameGetter = null;
    +196                }
    +197                priorityGetter       = getValueMethod(PRIORITY_ANNOTATION);
    +198                legacyPriorityGetter = getValueMethod(LEGACY_PRIORITY_ANNOTATION);
    +199            } catch (NoSuchMethodException e) {
    +200                // Should never happen since value() is a standard public method of those annotations.
    +201                throw new ServiceConfigurationError("Cannot get annotation value", e);
    +202            }
    +203        }
    +204
    +205        /**
    +206         * Returns the {@code value()} method in the given annotation class.
    +207         *
    +208         * @param  classname  name of the class from which to get the {@code value()} method.
    +209         * @return the {@code value()} method, or {@code null} if the annotation class was not found.
    +210         */
    +211        private static Method getValueMethod(final String classname) throws NoSuchMethodException {
    +212            try {
    +213                return Class.forName(classname).getMethod("value", (Class[]) null);
    +214            } catch (ClassNotFoundException e) {
    +215                // Ignore because JSR-330, JSR-250 and Jakarta are optional dependencies.
    +216                return null;
    +217            }
    +218        }
    +219
    +220        /**
    +221         * Invokes the {@code value()} method on the annotation of the given class.
    +222         * The annotation on which to invoke the method is given by {@link Method#getDeclaringClass()}.
    +223         *
    +224         * @param  provider   class of the provider on which to invoke annotation {@code value()}.
    +225         * @param  getter     the preferred  {@code value()} method to invoke, or {@code null}.
    +226         * @param  fallback   an alternative {@code value()} method to invoke, or {@code null}.
    +227         * @return the value, or {@code null} if none.
    +228         */
    +229        private static Object getValue(final Class<?> provider, Method getter, Method fallback) {
    +230            if (getter == null) {
    +231                getter = fallback;
    +232                fallback = null;
    +233            }
    +234            while (getter != null) {
    +235                final Annotation a = provider.getAnnotation(getter.getDeclaringClass().asSubclass(Annotation.class));
    +236                if (a != null) try {
    +237                    return getter.invoke(a, (Object[]) null);
    +238                } catch (IllegalAccessException | InvocationTargetException e) {
    +239                    // Should never happen since value() is a public method and should not throw exception.
    +240                    throw new ServiceConfigurationError("Cannot get annotation value", e);
    +241                }
    +242                getter = fallback;
    +243                fallback = null;
    +244            }
    +245            return null;
    +246        }
    +247
    +248        /**
    +249         * Returns {@code true} if the given service provider has the name we are looking for.
    +250         * This method shall be invoked only if a non-null name has been specified to the constructor.
    +251         * This method looks for the {@value #NAMED_ANNOTATION} and {@value #LEGACY_NAMED_ANNOTATION}
    +252         * annotations in that order, and if none are found fallbacks on {@link ServiceProvider#toString()}.
    +253         */
    +254        @Override
    +255        public boolean test(final ServiceProvider provider) {
    +256            Object value = getValue(provider.getClass(), nameGetter, legacyNameGetter);
    +257            if (value == null) {
    +258                value = provider.toString();
    +259            }
    +260            return toSearch.equals(value);
    +261        }
    +262
    +263        /**
    +264         * Returns the priority of the given service provider.
    +265         * This method looks for the {@value #PRIORITY_ANNOTATION} and {@value #LEGACY_PRIORITY_ANNOTATION}
    +266         * annotations in that order, and if none are found falls back on {@link ServiceProvider#getPriority()}.
    +267         */
    +268        private int priority(final ServiceProvider provider) {
    +269            Object value = getValue(provider.getClass(), priorityGetter, legacyPriorityGetter);
    +270            if (value != null) {
    +271                return (Integer) value;
    +272            }
    +273            return provider.getPriority();
    +274        }
    +275
    +276        /**
    +277         * Compares the given service providers for order based on their priority.
    +278         * The priority of each provider is determined as documented by {@link ServiceProvider#getPriority()}.
    +279         */
    +280        @Override
    +281        public int compare(final ServiceProvider p1, final ServiceProvider p2) {
    +282            return Integer.compare(priority(p2), priority(p1)); // reverse order, higher number first.
    +283        }
    +284
    +285        /**
    +286         * Gets all {@link ServiceProvider}s sorted by priority and optionally filtered by the name in this selector.
    +287         * The list of service providers is <strong>not</strong> cached because it depends on the context class loader,
    +288         * which itself depends on which thread is invoking this method.
    +289         */
    +290        private Stream<ServiceProvider> stream() {
    +291            Stream<ServiceProvider> stream = StreamSupport.stream(ServiceLoader.load(ServiceProvider.class).spliterator(), false);
    +292            if (toSearch != null) {
    +293                stream = stream.filter(this);
    +294            }
    +295            return stream.sorted(this);
    +296        }
    +297    }
    +298
    +299    /**
    +300     * Returns the list of all service providers available for the current thread's context class loader.
    +301     * The {@linkplain #current() current} service provider is always the first item in the returned list.
    +302     * Other service providers after the first item may depend on the caller thread
    +303     * (see {@linkplain ServiceLoader#load(Class) service loader API note}).
    +304     *
    +305     * @return all service providers available for the current thread's context class loader.
    +306     */
    +307    public static final List<ServiceProvider> available() {
    +308        ArrayList<ServiceProvider> providers = new Selector(null).stream().collect(Collectors.toCollection(ArrayList::new));
    +309        final ServiceProvider first = current.get();
    +310        /*
    +311         * Make sure that 'first' is the first item in the 'providers' list. If that item appears
    +312         * somewhere else, we have to remove the second occurrence for avoiding duplicated elements.
    +313         * We compare the classes, not the instances, because new instances may be created each time
    +314         * this method is invoked and we have no guaranteed that implementors overrode 'equals'.
    +315         */
    +316setcur: if (first != null) {
    +317            final Class<?> cf = first.getClass();
    +318            final int size = providers.size();
    +319            for (int i=0; i<size; i++) {
    +320                if (cf.equals(providers.get(i).getClass())) {
    +321                    if (i == 0) break setcur;       // No change needed (note: labeled breaks on if statements are legal).
    +322                    providers.remove(i);
    +323                    break;
    +324                }
    +325            }
    +326            providers.add(0, first);
    +327        }
    +328        return providers;
    +329    }
    +330
    +331    /**
    +332     * Returns the {@link ServiceProvider} with the specified name.
    +333     * The given name must match the name of at least one service provider available in the current thread's
    +334     * context class loader.
    +335     * The service provider names are the values of {@value #NAMED_ANNOTATION} (from Jakarta Annotations) or
    +336     * {@value #LEGACY_NAMED_ANNOTATION} (from JSR-330) annotations when present (first if both were present),
    +337     * or the value of {@link #toString()} method for providers without {@code Named} annotation.
    +338     *
    +339     * <p>Implementors are encouraged to provide an {@code Named} annotation or to override {@link #toString()}
    +340     * and use a unique enough name, e.g. the class name or other distinct attributes.
    +341     * Should multiple service providers nevertheless use the same name, the one with the highest
    +342     * {@linkplain #getPriority() priority} wins.</p>
    +343     *
    +344     * @param name
    +345     *            the name of the service provider to return
    +346     * @return the {@link ServiceProvider} with the specified name
    +347     * @throws IllegalArgumentException
    +348     *             if available service providers do not contain a provider with the specified name
    +349     * @throws NullPointerException
    +350     *             if {@code name} is null
    +351     * @see #toString()
    +352     * @since 2.0
    +353     */
    +354    public static ServiceProvider of(String name) {
    +355        Objects.requireNonNull(name);
    +356        Selector select = new Selector(name);
    +357        ServiceProvider p = current.get();
    +358        if (p != null && select.test(p)) {
    +359            return p;
    +360        }
    +361        Optional<ServiceProvider> first = select.stream().findFirst();
    +362        if (first.isPresent()) {
    +363            return first.get();
    +364        } else {
    +365            throw new IllegalArgumentException("No Measurement ServiceProvider " + name + " found .");
    +366        }
    +367    }
    +368
    +369    /**
    +370     * Returns the current {@link ServiceProvider}. If necessary the {@link ServiceProvider} will be lazily loaded.
    +371     * <p>
    +372     * If there are no providers available, an {@linkplain IllegalStateException} is thrown.
    +373     * Otherwise the provider with the highest priority is used
    +374     * or the one explicitly designated via {@link #setCurrent(ServiceProvider)}.
    +375     * </p>
    +376     *
    +377     * @return the {@link ServiceProvider} used.
    +378     * @throws IllegalStateException
    +379     *             if no {@link ServiceProvider} has been found.
    +380     * @see #getPriority()
    +381     * @see #setCurrent(ServiceProvider)
    +382     */
    +383    public static final ServiceProvider current() {
    +384        ServiceProvider p = current.get();
    +385        if (p == null) {
    +386            Optional<ServiceProvider> first = new Selector(null).stream().findFirst();
    +387            if (first.isPresent()) {
    +388                p = first.get();
    +389            } else {
    +390                throw new IllegalStateException("No Measurement ServiceProvider found.");
    +391            }
    +392        }
    +393        return p;
    +394    }
    +395
    +396    /**
    +397     * Replaces the current {@link ServiceProvider}.
    +398     *
    +399     * @param provider
    +400     *            the new {@link ServiceProvider}
    +401     * @return the replaced provider, or null.
    +402     */
    +403    public static final ServiceProvider setCurrent(ServiceProvider provider) {
    +404        Objects.requireNonNull(provider);
    +405        ServiceProvider old = current.getAndSet(provider);
    +406        if (old != provider) {
    +407            Logger.getLogger("javax.measure.spi").log(Level.CONFIG,
    +408                    "Measurement ServiceProvider {1,choice,0#set to|1#replaced by} {0}.",
    +409                    new Object[] {provider.getClass().getName(), (old == null) ? 0 : 1});
    +410        }
    +411        return old;
    +412    }
    +413}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/spi/SystemOfUnits.html b/docs/apidocs/src-html/javax/measure/spi/SystemOfUnits.html new file mode 100644 index 00000000..fd837f03 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/spi/SystemOfUnits.html @@ -0,0 +1,174 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.spi;
    +031
    +032import java.util.Set;
    +033
    +034import javax.measure.Dimension;
    +035import javax.measure.Quantity;
    +036import javax.measure.Unit;
    +037
    +038/**
    +039 * A system of units grouped together for historical or cultural reasons.<br>
    +040 * Common system of units are "SI" (System International), "Imperial" (British), "US" (US Customary). Nothing prevents a unit from belonging to
    +041 * several systems of units at the same time (for example an {@code Imperial} system would have many of the units held by the {@code US} Customary
    +042 * system).
    +043 *
    +044 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +045 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +046 * @version 1.1, June 21, 2018
    +047 * @since 1.0
    +048 *
    +049 * @see <a href="http://en.wikipedia.org/wiki/International_System_of_Units"> Wikipedia: International System of Units</a>
    +050 * @see <a href="http://en.wikipedia.org/wiki/Systems_of_measurement"> Wikipedia: System of measurement</a>
    +051 */
    +052public interface SystemOfUnits {
    +053
    +054    /**
    +055     * @return a name
    +056     */
    +057    String getName();
    +058
    +059    /**
    +060     * Returns the default unit for the specified quantity or {@code null} if none is defined for the given quantity in this unit system.
    +061     *
    +062     * @param <Q>
    +063     *          the compile-time quantity type.
    +064     * @param quantityType
    +065     *          the quantity type.
    +066     * @return the unit for the specified quantity.
    +067     */
    +068    <Q extends Quantity<Q>> Unit<Q> getUnit(Class<Q> quantityType);
    +069
    +070    /**
    +071     * Returns a unit with the given {@linkplain String string} representation or {@code null} if none is found in this unit system.
    +072     *
    +073     * @param string
    +074     *          the string representation of a unit, not {@code null}.
    +075     * @return the unit with the given string representation.
    +076     * @since 2.0
    +077     */
    +078    Unit<?> getUnit(String string);
    +079
    +080    /**
    +081     * Returns a read only view over the units explicitly defined by this system. This include the base and derived units which are assigned a special
    +082     * name and symbol. This set does not include new units created by arithmetic or other operations.
    +083     *
    +084     * @return the defined collection of units.
    +085     */
    +086    Set<? extends Unit<?>> getUnits();
    +087
    +088    /**
    +089     * Returns the units defined in this system having the specified dimension (convenience method).
    +090     *
    +091     * @param dimension
    +092     *          the dimension of the units to be returned.
    +093     * @return the collection of units of specified dimension.
    +094     */
    +095    Set<? extends Unit<?>> getUnits(Dimension dimension);
    +096}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/src-html/javax/measure/spi/SystemOfUnitsService.html b/docs/apidocs/src-html/javax/measure/spi/SystemOfUnitsService.html new file mode 100644 index 00000000..ff14aea0 --- /dev/null +++ b/docs/apidocs/src-html/javax/measure/spi/SystemOfUnitsService.html @@ -0,0 +1,205 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.spi;
    +031
    +032import java.util.Collection;
    +033import java.util.EnumSet;
    +034import java.util.Set;
    +035import javax.measure.Prefix;
    +036
    +037/**
    +038 * This interface represents the service to obtain a {@link SystemOfUnits system
    +039 * of units}.
    +040 *
    +041 * <p>
    +042 * Common systems of units are "SI" (System International) or Metric system,
    +043 * "Imperial" (British), or "US" (US Customary).
    +044 * </p>
    +045 *
    +046 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +047 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +048 * @author <a href="mailto:martin.desruisseaux@geomatys.com">Martin
    +049 *         Desruisseaux</a>
    +050 * @version 1.8, April 3, 2023
    +051 * @since 1.0
    +052 *
    +053 * @see <a href=
    +054 *      "https://en.wikipedia.org/wiki/International_System_of_Units">Wikipedia:
    +055 *      International System of Units</a>
    +056 */
    +057public interface SystemOfUnitsService {
    +058
    +059    /**
    +060     * Returns the default {@link SystemOfUnits system of units}. Depending on the
    +061     * implementation this may be the <a href="https://en.wikipedia.org/wiki/International_System_of_Units">International
    +062     * System of Units</a> or another default system.
    +063     *
    +064     * @return the default system of units.
    +065     */
    +066    SystemOfUnits getSystemOfUnits();
    +067
    +068    /**
    +069     * Returns the system of units having the specified name or {@code null} if
    +070     * none is found.
    +071     *
    +072     * @param name the system of unit name.
    +073     * @return the system of units for the given name.
    +074     */
    +075    SystemOfUnits getSystemOfUnits(String name);
    +076
    +077    /**
    +078     * Gets a list with available systems for this {@link SystemOfUnitsService}.
    +079     *
    +080     * @return list of available systems of units, never null.
    +081     */
    +082    Collection<SystemOfUnits> getAvailableSystemsOfUnits();
    +083
    +084    /**
    +085     * Returns a {@link Set} containing the values of a particular {@link Prefix}
    +086     * type.
    +087     *
    +088     * <p>
    +089     * This method may be used to iterate over certain prefixes as follows:
    +090     * </p>
    +091     * <pre>{@code
    +092     *    for(MetricPrefix mp : service.getPrefixes(MetricPrefix.class))
    +093     *        System.out.println(p);
    +094     * }</pre>
    +095     *
    +096     * The default implementation assumes that prefixes of the given type are implemented as an enumeration.
    +097     * This is the case of the two default prefix implementations provided in JSR 385,
    +098     * namely {@link javax.measure.MetricPrefix} and {@link javax.measure.BinaryPrefix}.
    +099     * Implementors shall override this method if they provide prefixes implemented in a different way.
    +100     *
    +101     * @param <P> compile-time value of the {@code prefixType} argument
    +102     * @param prefixType the {@link Prefix} type
    +103     * @return a set containing the constant values of this Prefix type, in the
    +104     *         order they're declared
    +105     * @throws ClassCastException if the class is not compatible with the desired
    +106     *                            Prefix implementation or does not implement Prefix at all.
    +107     * @since 2.0
    +108     */
    +109    @SuppressWarnings({"unchecked", "rawtypes"})
    +110    default <P extends Prefix> Set<P> getPrefixes(Class<P> prefixType) {
    +111        // Following check is redundant with parameterized type but nevertheless applied as a safety.
    +112        if (Prefix.class.isAssignableFrom(prefixType)) {
    +113            EnumSet<? extends Enum<?>> prefixes = EnumSet.allOf(prefixType.asSubclass(Enum.class));
    +114            /*
    +115             * Following unchecked cast is safe for read operations because the given class implements
    +116             * 'prefixType' in addition of being an enumeration.  It is also safe for write operations
    +117             * because all enumerations are closed universes (so users can not add an instance unknown
    +118             * to EnumSet) and we would have got an exception before this point if 'prefixType' was not
    +119             * an enumeration in the sense of Class.isEnum().
    +120             */
    +121            return (EnumSet) prefixes;
    +122        } else {
    +123            throw new ClassCastException(String.format("%s does not implement Prefix", prefixType));
    +124            // TODO or should we throw a different exception here, MeasurementException or IllegalArgumentException?
    +125        }
    +126    }
    +127}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/apidocs/stylesheet.css b/docs/apidocs/stylesheet.css new file mode 100644 index 00000000..4a576bd2 --- /dev/null +++ b/docs/apidocs/stylesheet.css @@ -0,0 +1,869 @@ +/* + * Javadoc style sheet + */ + +@import url('resources/fonts/dejavu.css'); + +/* + * Styles for individual HTML elements. + * + * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular + * HTML element throughout the page. + */ + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; + padding:0; + height:100%; + width:100%; +} +iframe { + margin:0; + padding:0; + height:100%; + width:100%; + overflow-y:scroll; + border:none; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a[href]:hover, a[href]:focus { + text-decoration:none; + color:#bb7a2a; +} +a[name] { + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; +} +h4 { + font-size:15px; +} +h5 { + font-size:14px; +} +h6 { + font-size:13px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; +} +:not(h1, h2, h3, h4, h5, h6) > code, +:not(h1, h2, h3, h4, h5, h6) > tt { + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +.summary-table dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +button { + font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size: 14px; +} +/* + * Styles for HTML generated by javadoc. + * + * These are style classes that are used by the standard doclet to generate HTML documentation. + */ + +/* + * Styles for document title and copyright. + */ +.clear { + clear:both; + height:0; + overflow:hidden; +} +.about-language { + float:right; + padding:0 21px 8px 8px; + font-size:11px; + margin-top:-9px; + height:2.9em; +} +.legal-copy { + margin-left:.5em; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* + * Styles for navigation bar. + */ +@media screen { + .flex-box { + position:fixed; + display:flex; + flex-direction:column; + height: 100%; + width: 100%; + } + .flex-header { + flex: 0 0 auto; + } + .flex-content { + flex: 1 1 auto; + overflow-y: auto; + } +} +.top-nav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + min-height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.sub-nav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.sub-nav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +.sub-nav .nav-list { + padding-top:5px; +} +ul.nav-list { + display:block; + margin:0 25px 0 0; + padding:0; +} +ul.sub-nav-list { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.nav-list li { + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +.sub-nav .nav-list-search { + float:right; + margin:0 0 0 0; + padding:5px 6px; + clear:none; +} +.nav-list-search label { + position:relative; + right:-16px; +} +ul.sub-nav-list li { + list-style:none; + float:left; + padding-top:10px; +} +.top-nav a:link, .top-nav a:active, .top-nav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.top-nav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.nav-bar-cell1-rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skip-nav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* + * Hide navigation links and search box in print layout + */ +@media print { + ul.nav-list, div.sub-nav { + display:none; + } +} +/* + * Styles for page header and footer. + */ +.title { + color:#2c4557; + margin:10px 0; +} +.sub-title { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* + * Styles for headings. + */ +body.class-declaration-page .summary h2, +body.class-declaration-page .details h2, +body.class-use-page h2, +body.module-declaration-page .block-list h2 { + font-style: italic; + padding:0; + margin:15px 0; +} +body.class-declaration-page .summary h3, +body.class-declaration-page .details h3, +body.class-declaration-page .summary .inherited-list h2 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +/* + * Styles for page layout containers. + */ +main { + clear:both; + padding:10px 20px; + position:relative; +} +dl.notes > dt { + font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +dl.notes > dd { + margin:5px 10px 10px 0; + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} +dl.name-value > dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +dl.name-value > dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* + * Styles for lists. + */ +li.circle { + list-style:circle; +} +ul.horizontal li { + display:inline; + font-size:0.9em; +} +div.inheritance { + margin:0; + padding:0; +} +div.inheritance div.inheritance { + margin-left:2em; +} +ul.block-list, +ul.details-list, +ul.member-list, +ul.summary-list { + margin:10px 0 10px 0; + padding:0; +} +ul.block-list > li, +ul.details-list > li, +ul.member-list > li, +ul.summary-list > li { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +.summary-table dl, .summary-table dl dt, .summary-table dl dd { + margin-top:0; + margin-bottom:1px; +} +ul.see-list, ul.see-list-long { + padding-left: 0; + list-style: none; +} +ul.see-list li { + display: inline; +} +ul.see-list li:not(:last-child):after, +ul.see-list-long li:not(:last-child):after { + content: ", "; + white-space: pre-wrap; +} +/* + * Styles for tables. + */ +.summary-table, .details-table { + width:100%; + border-spacing:0; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; + padding:0; +} +.caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0; + padding-top:10px; + padding-left:1px; + margin:0; + white-space:pre; +} +.caption a:link, .caption a:visited { + color:#1f389c; +} +.caption a:hover, +.caption a:active { + color:#FFFFFF; +} +.caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +div.table-tabs { + padding:10px 0 0 1px; + margin:0; +} +div.table-tabs > button { + border: none; + cursor: pointer; + padding: 5px 12px 7px 12px; + font-weight: bold; + margin-right: 3px; +} +div.table-tabs > button.active-table-tab { + background: #F8981D; + color: #253441; +} +div.table-tabs > button.table-tab { + background: #4D7A97; + color: #FFFFFF; +} +.two-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(15%, auto); +} +.three-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, auto); +} +.four-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(10%, max-content) minmax(10%, max-content) minmax(10%, auto); +} +@media screen and (max-width: 600px) { + .two-column-summary { + display: grid; + grid-template-columns: 1fr; + } +} +@media screen and (max-width: 800px) { + .three-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(25%, auto); + } + .three-column-summary .col-last { + grid-column-end: span 2; + } +} +@media screen and (max-width: 1000px) { + .four-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(15%, auto); + } +} +.summary-table > div, .details-table > div { + text-align:left; + padding: 8px 3px 3px 7px; +} +.col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name { + vertical-align:top; + padding-right:0; + padding-top:8px; + padding-bottom:3px; +} +.table-header { + background:#dee3e9; + font-weight: bold; +} +.col-first, .col-first { + font-size:13px; +} +.col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last { + font-size:13px; +} +.col-first, .col-second, .col-constructor-name { + vertical-align:top; + overflow: auto; +} +.col-last { + white-space:normal; +} +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-constructor-name a:link, .col-constructor-name a:visited, +.col-summary-item-name a:link, .col-summary-item-name a:visited, +.constant-values-container a:link, .constant-values-container a:visited, +.all-classes-container a:link, .all-classes-container a:visited, +.all-packages-container a:link, .all-packages-container a:visited { + font-weight:bold; +} +.table-sub-heading-color { + background-color:#EEEEFF; +} +.even-row-color, .even-row-color .table-header { + background-color:#FFFFFF; +} +.odd-row-color, .odd-row-color .table-header { + background-color:#EEEEEF; +} +/* + * Styles for contents. + */ +.deprecated-content { + margin:0; + padding:10px 0; +} +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} +.col-last div { + padding-top:0; +} +.col-last a { + padding-bottom:3px; +} +.module-signature, +.package-signature, +.type-signature, +.member-signature { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + margin:14px 0; + white-space: pre-wrap; +} +.module-signature, +.package-signature, +.type-signature { + margin-top: 0; +} +.member-signature .type-parameters-long, +.member-signature .parameters, +.member-signature .exceptions { + display: inline-block; + vertical-align: top; + white-space: pre; +} +.member-signature .type-parameters { + white-space: normal; +} +/* + * Styles for formatting effect. + */ +.source-line-no { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:0 10px 5px 0; + color:#474747; +} +.deprecated-label, .descfrm-type-label, .implementation-label, .member-name-label, .member-name-link, +.module-label-in-package, .module-label-in-type, .override-specify-label, .package-label-in-type, +.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label { + font-weight:bold; +} +.deprecation-comment, .help-footnote, .preview-comment { + font-style:italic; +} +.deprecation-block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +.preview-block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +div.block div.deprecation-comment { + font-style:normal; +} +/* + * Styles specific to HTML5 elements. + */ +main, nav, header, footer, section { + display:block; +} +/* + * Styles for javadoc search. + */ +.ui-autocomplete-category { + font-weight:bold; + font-size:15px; + padding:7px 0 7px 3px; + background-color:#4D7A97; + color:#FFFFFF; +} +.result-item { + font-size:13px; +} +.ui-autocomplete { + max-height:85%; + max-width:65%; + overflow-y:scroll; + overflow-x:scroll; + white-space:nowrap; + box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); +} +ul.ui-autocomplete { + position:fixed; + z-index:999999; + background-color: #FFFFFF; +} +ul.ui-autocomplete li { + float:left; + clear:both; + width:100%; +} +.result-highlight { + font-weight:bold; +} +.ui-autocomplete .result-item { + font-size: inherit; +} +#search-input { + background-image:url('resources/glass.png'); + background-size:13px; + background-repeat:no-repeat; + background-position:2px 3px; + padding-left:20px; + position:relative; + right:-18px; + width:400px; +} +#reset-button { + background-color: rgb(255,255,255); + background-image:url('resources/x.png'); + background-position:center; + background-repeat:no-repeat; + background-size:12px; + border:0 none; + width:16px; + height:16px; + position:relative; + left:-4px; + top:-4px; + font-size:0px; +} +.watermark { + color:#545454; +} +.search-tag-desc-result { + font-style:italic; + font-size:11px; +} +.search-tag-holder-result { + font-style:italic; + font-size:12px; +} +.search-tag-result:target { + background-color:yellow; +} +.module-graph span { + display:none; + position:absolute; +} +.module-graph:hover span { + display:block; + margin: -100px 0 0 100px; + z-index: 1; +} +.inherited-list { + margin: 10px 0 10px 0; +} +section.class-description { + line-height: 1.4; +} +.summary section[class$="-summary"], .details section[class$="-details"], +.class-uses .detail, .serialized-class-details { + padding: 0px 20px 5px 10px; + border: 1px solid #ededed; + background-color: #f8f8f8; +} +.inherited-list, section[class$="-details"] .detail { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +.vertical-separator { + padding: 0 5px; +} +ul.help-section-list { + margin: 0; +} +ul.help-subtoc > li { + display: inline-block; + padding-right: 5px; + font-size: smaller; +} +ul.help-subtoc > li::before { + content: "\2022" ; + padding-right:2px; +} +span.help-note { + font-style: italic; +} +/* + * Indicator icon for external links. + */ +main a[href*="://"]::after { + content:""; + display:inline-block; + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); + background-size:100% 100%; + width:7px; + height:7px; + margin-left:2px; + margin-bottom:4px; +} +main a[href*="://"]:hover::after, +main a[href*="://"]:focus::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); +} + +/* + * Styles for user-provided tables. + * + * borderless: + * No borders, vertical margins, styled caption. + * This style is provided for use with existing doc comments. + * In general, borderless tables should not be used for layout purposes. + * + * plain: + * Plain borders around table and cells, vertical margins, styled caption. + * Best for small tables or for complex tables for tables with cells that span + * rows and columns, when the "striped" style does not work well. + * + * striped: + * Borders around the table and vertical borders between cells, striped rows, + * vertical margins, styled caption. + * Best for tables that have a header row, and a body containing a series of simple rows. + */ + +table.borderless, +table.plain, +table.striped { + margin-top: 10px; + margin-bottom: 10px; +} +table.borderless > caption, +table.plain > caption, +table.striped > caption { + font-weight: bold; + font-size: smaller; +} +table.borderless th, table.borderless td, +table.plain th, table.plain td, +table.striped th, table.striped td { + padding: 2px 5px; +} +table.borderless, +table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th, +table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td { + border: none; +} +table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr { + background-color: transparent; +} +table.plain { + border-collapse: collapse; + border: 1px solid black; +} +table.plain > thead > tr, table.plain > tbody tr, table.plain > tr { + background-color: transparent; +} +table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th, +table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td { + border: 1px solid black; +} +table.striped { + border-collapse: collapse; + border: 1px solid black; +} +table.striped > thead { + background-color: #E3E3E3; +} +table.striped > thead > tr > th, table.striped > thead > tr > td { + border: 1px solid black; +} +table.striped > tbody > tr:nth-child(even) { + background-color: #EEE +} +table.striped > tbody > tr:nth-child(odd) { + background-color: #FFF +} +table.striped > tbody > tr > th, table.striped > tbody > tr > td { + border-left: 1px solid black; + border-right: 1px solid black; +} +table.striped > tbody > tr > th { + font-weight: normal; +} +/** + * Tweak font sizes and paddings for small screens. + */ +@media screen and (max-width: 1050px) { + #search-input { + width: 300px; + } +} +@media screen and (max-width: 800px) { + #search-input { + width: 200px; + } + .top-nav, + .bottom-nav { + font-size: 11px; + padding-top: 6px; + } + .sub-nav { + font-size: 11px; + } + .about-language { + padding-right: 16px; + } + ul.nav-list li, + .sub-nav .nav-list-search { + padding: 6px; + } + ul.sub-nav-list li { + padding-top: 5px; + } + main { + padding: 10px; + } + .summary section[class$="-summary"], .details section[class$="-details"], + .class-uses .detail, .serialized-class-details { + padding: 0 8px 5px 8px; + } + body { + -webkit-text-size-adjust: none; + } +} +@media screen and (max-width: 500px) { + #search-input { + width: 150px; + } + .top-nav, + .bottom-nav { + font-size: 10px; + } + .sub-nav { + font-size: 10px; + } + .about-language { + font-size: 10px; + padding-right: 12px; + } +} diff --git a/docs/apidocs/tag-search-index.js b/docs/apidocs/tag-search-index.js new file mode 100644 index 00000000..f38b3cb3 --- /dev/null +++ b/docs/apidocs/tag-search-index.js @@ -0,0 +1 @@ +tagSearchIndex = [{"l":"Serialized Form","h":"","u":"serialized-form.html"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/apidocs/type-search-index.js b/docs/apidocs/type-search-index.js new file mode 100644 index 00000000..c3580118 --- /dev/null +++ b/docs/apidocs/type-search-index.js @@ -0,0 +1 @@ +typeSearchIndex = [{"p":"javax.measure.quantity","l":"Acceleration"},{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"javax.measure.quantity","l":"AmountOfSubstance"},{"p":"javax.measure.quantity","l":"Angle"},{"p":"javax.measure.quantity","l":"Area"},{"p":"javax.measure","l":"BinaryPrefix"},{"p":"javax.measure.quantity","l":"CatalyticActivity"},{"p":"javax.measure","l":"Dimension"},{"p":"javax.measure.quantity","l":"Dimensionless"},{"p":"javax.measure.quantity","l":"ElectricCapacitance"},{"p":"javax.measure.quantity","l":"ElectricCharge"},{"p":"javax.measure.quantity","l":"ElectricConductance"},{"p":"javax.measure.quantity","l":"ElectricCurrent"},{"p":"javax.measure.quantity","l":"ElectricInductance"},{"p":"javax.measure.quantity","l":"ElectricPotential"},{"p":"javax.measure.quantity","l":"ElectricResistance"},{"p":"javax.measure.quantity","l":"Energy"},{"p":"javax.measure.quantity","l":"Force"},{"p":"javax.measure.spi","l":"FormatService"},{"p":"javax.measure.spi","l":"FormatService.FormatType"},{"p":"javax.measure.quantity","l":"Frequency"},{"p":"javax.measure.quantity","l":"Illuminance"},{"p":"javax.measure","l":"IncommensurableException"},{"p":"javax.measure.quantity","l":"Length"},{"p":"javax.measure.quantity","l":"LuminousFlux"},{"p":"javax.measure.quantity","l":"LuminousIntensity"},{"p":"javax.measure.quantity","l":"MagneticFlux"},{"p":"javax.measure.quantity","l":"MagneticFluxDensity"},{"p":"javax.measure.quantity","l":"Mass"},{"p":"javax.measure","l":"MeasurementError"},{"p":"javax.measure","l":"MeasurementException"},{"p":"javax.measure.format","l":"MeasurementParseException"},{"p":"javax.measure","l":"MetricPrefix"},{"p":"javax.measure.quantity","l":"Power"},{"p":"javax.measure","l":"Prefix"},{"p":"javax.measure.quantity","l":"Pressure"},{"p":"javax.measure","l":"Quantity"},{"p":"javax.measure.spi","l":"QuantityFactory"},{"p":"javax.measure.format","l":"QuantityFormat"},{"p":"javax.measure.quantity","l":"RadiationDoseAbsorbed"},{"p":"javax.measure.quantity","l":"RadiationDoseEffective"},{"p":"javax.measure.quantity","l":"Radioactivity"},{"p":"javax.measure","l":"Quantity.Scale"},{"p":"javax.measure.spi","l":"ServiceProvider"},{"p":"javax.measure.quantity","l":"SolidAngle"},{"p":"javax.measure.quantity","l":"Speed"},{"p":"javax.measure.spi","l":"SystemOfUnits"},{"p":"javax.measure.spi","l":"SystemOfUnitsService"},{"p":"javax.measure.quantity","l":"Temperature"},{"p":"javax.measure.quantity","l":"Time"},{"p":"javax.measure","l":"UnconvertibleException"},{"p":"javax.measure","l":"Unit"},{"p":"javax.measure","l":"UnitConverter"},{"p":"javax.measure.format","l":"UnitFormat"},{"p":"javax.measure.quantity","l":"Volume"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/css/base.css b/docs/css/base.css new file mode 100644 index 00000000..4fa967c2 --- /dev/null +++ b/docs/css/base.css @@ -0,0 +1,115 @@ +/* Sticky footer styles + * ------------------------------*/ +@import url('//fonts.googleapis.com/css?family=Noto+Sans'); + +html { + position: relative; + min-height: 100%; +} + +body { + font-family: 'Noto Sans', sans-serif; + margin: 0 0 75px; /* bottom = footer height */ + margin-top: 60px; +} + +footer { + position: absolute; + left: 0; + bottom: 0; + height: 75px; + width: 100%; +} +/*-------------------------------*/ + + +/* Site custom styles + * ------------------------------*/ +.gotop { + display: block; + text-align: right; +} + +.sidebar-list { + font-size: 14px; +} + +.sidebar-list-item { + padding-left: 40px; +} + +.static-box > .panel-body { + padding: 10px; + text-align: center; +} + +#repoview { + font-size: 12px; + padding: 5px; +} + +.social-icon { + vertical-align: middle; +} + +.share { + margin: 20px 0px 10px; +} + +.read-more { + float: right; + font-size: 12px; + text-decoration: none; +} + +.tagsbar { + text-transform: lowercase !important; + font-size: 11px; +} + +/* You can override pre > code styles */ +.snippet { +} + +/* You can override archive well styles */ +.archive-month { +} + +/* You can override tag well styles */ +.tag-month { +} + +/*-------------------------------*/ + + +/* Social share with counters + * ------------------------------*/ + +/* This gets Google to fall into place */ +.social { + font-size: 1px; +} + +/* This gets Facebook to fall into place */ +.social iframe { + vertical-align: middle; +} + +/* Set an optional width for your button wrappers */ +.social span { + display: inline-block; +} + +/* Adjust the widths individually if you like */ +.social .facebook iframe { + border: none; + overflow: hidden; + height: 21px; + width: 120px; +} + +.social .google { + width: 80px; +} +/*-------------------------------*/ + diff --git a/docs/css/prettify-themes/github.css b/docs/css/prettify-themes/github.css new file mode 100644 index 00000000..066a9b33 --- /dev/null +++ b/docs/css/prettify-themes/github.css @@ -0,0 +1,140 @@ +/* GitHub Theme */ +.prettyprint { + background: white; + font-family: Menlo, 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Consolas, monospace; + font-size: 12px; + line-height: 1.5; + border: 1px solid #ccc; + padding: 10px; +} + +.pln { + color: #333333; +} + +@media screen { + .str { + color: #dd1144; + } + + .kwd { + color: #333333; + } + + .com { + color: #999988; + } + + .typ { + color: #445588; + } + + .lit { + color: #445588; + } + + .pun { + color: #333333; + } + + .opn { + color: #333333; + } + + .clo { + color: #333333; + } + + .tag { + color: navy; + } + + .atn { + color: teal; + } + + .atv { + color: #dd1144; + } + + .dec { + color: #333333; + } + + .var { + color: teal; + } + + .fun { + color: #990000; + } +} +@media print, projection { + .str { + color: #006600; + } + + .kwd { + color: #006; + font-weight: bold; + } + + .com { + color: #600; + font-style: italic; + } + + .typ { + color: #404; + font-weight: bold; + } + + .lit { + color: #004444; + } + + .pun, .opn, .clo { + color: #444400; + } + + .tag { + color: #006; + font-weight: bold; + } + + .atn { + color: #440044; + } + + .atv { + color: #006600; + } +} +/* Specify class=linenums on a pre to get line numbering */ +ol.linenums { + margin-top: 0; + margin-bottom: 0; +} + +/* IE indents via margin-left */ +li.L0, +li.L1, +li.L2, +li.L3, +li.L4, +li.L5, +li.L6, +li.L7, +li.L8, +li.L9 { + /* */ +} + +/* Alternate shading for lines */ +li.L1, +li.L3, +li.L5, +li.L7, +li.L9 { + /* */ +} diff --git a/docs/css/prettify-themes/hemisu-dark.css b/docs/css/prettify-themes/hemisu-dark.css new file mode 100644 index 00000000..297c7902 --- /dev/null +++ b/docs/css/prettify-themes/hemisu-dark.css @@ -0,0 +1,141 @@ +/* Hemisu Dark */ +/* Original theme - http://noahfrederick.com/vim-color-scheme-hemisu/ */ +.prettyprint { + background: black; + font-family: Menlo, 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Consolas, monospace; + font-size: 12px; + line-height: 1.5; + border: 1px solid #ccc; + padding: 10px; +} + +.pln { + color: #eeeeee; +} + +@media screen { + .str { + color: #b1d631; + } + + .kwd { + color: #b1d631; + } + + .com { + color: #777777; + } + + .typ { + color: #bbffaa; + } + + .lit { + color: #9fd3e6; + } + + .pun { + color: #eeeeee; + } + + .opn { + color: #eeeeee; + } + + .clo { + color: #eeeeee; + } + + .tag { + color: #eeeeee; + } + + .atn { + color: #b1d631; + } + + .atv { + color: #bbffaa; + } + + .dec { + color: #eeeeee; + } + + .var { + color: #eeeeee; + } + + .fun { + color: #9fd3e6; + } +} +@media print, projection { + .str { + color: #006600; + } + + .kwd { + color: #006; + font-weight: bold; + } + + .com { + color: #600; + font-style: italic; + } + + .typ { + color: #404; + font-weight: bold; + } + + .lit { + color: #004444; + } + + .pun, .opn, .clo { + color: #444400; + } + + .tag { + color: #006; + font-weight: bold; + } + + .atn { + color: #440044; + } + + .atv { + color: #006600; + } +} +/* Specify class=linenums on a pre to get line numbering */ +ol.linenums { + margin-top: 0; + margin-bottom: 0; +} + +/* IE indents via margin-left */ +li.L0, +li.L1, +li.L2, +li.L3, +li.L4, +li.L5, +li.L6, +li.L7, +li.L8, +li.L9 { + /* */ +} + +/* Alternate shading for lines */ +li.L1, +li.L3, +li.L5, +li.L7, +li.L9 { + /* */ +} diff --git a/docs/css/prettify-themes/hemisu-light.css b/docs/css/prettify-themes/hemisu-light.css new file mode 100644 index 00000000..8b4cf731 --- /dev/null +++ b/docs/css/prettify-themes/hemisu-light.css @@ -0,0 +1,141 @@ +/* Hemisu Light */ +/* Original theme - http://noahfrederick.com/vim-color-scheme-hemisu/ */ +.prettyprint { + background: white; + font-family: Menlo, 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Consolas, monospace; + font-size: 12px; + line-height: 1.5; + border: 1px solid #ccc; + padding: 10px; +} + +.pln { + color: #111111; +} + +@media screen { + .str { + color: #739200; + } + + .kwd { + color: #739200; + } + + .com { + color: #999999; + } + + .typ { + color: #ff0055; + } + + .lit { + color: #538192; + } + + .pun { + color: #111111; + } + + .opn { + color: #111111; + } + + .clo { + color: #111111; + } + + .tag { + color: #111111; + } + + .atn { + color: #739200; + } + + .atv { + color: #ff0055; + } + + .dec { + color: #111111; + } + + .var { + color: #111111; + } + + .fun { + color: #538192; + } +} +@media print, projection { + .str { + color: #006600; + } + + .kwd { + color: #006; + font-weight: bold; + } + + .com { + color: #600; + font-style: italic; + } + + .typ { + color: #404; + font-weight: bold; + } + + .lit { + color: #004444; + } + + .pun, .opn, .clo { + color: #444400; + } + + .tag { + color: #006; + font-weight: bold; + } + + .atn { + color: #440044; + } + + .atv { + color: #006600; + } +} +/* Specify class=linenums on a pre to get line numbering */ +ol.linenums { + margin-top: 0; + margin-bottom: 0; +} + +/* IE indents via margin-left */ +li.L0, +li.L1, +li.L2, +li.L3, +li.L4, +li.L5, +li.L6, +li.L7, +li.L8, +li.L9 { + /* */ +} + +/* Alternate shading for lines */ +li.L1, +li.L3, +li.L5, +li.L7, +li.L9 { + /* */ +} diff --git a/docs/css/prettify-themes/tomorrow-night-blue.css b/docs/css/prettify-themes/tomorrow-night-blue.css new file mode 100644 index 00000000..725d50b3 --- /dev/null +++ b/docs/css/prettify-themes/tomorrow-night-blue.css @@ -0,0 +1,141 @@ +/* Tomorrow Night Blue Theme */ +/* Original theme - https://github.com/chriskempson/tomorrow-theme */ +.prettyprint { + background: #002451; + font-family: Menlo, 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Consolas, monospace; + font-size: 12px; + line-height: 1.5; + border: 1px solid #ccc; + padding: 10px; +} + +.pln { + color: white; +} + +@media screen { + .str { + color: #d1f1a9; + } + + .kwd { + color: #ebbbff; + } + + .com { + color: #7285b7; + } + + .typ { + color: #bbdaff; + } + + .lit { + color: #ffc58f; + } + + .pun { + color: white; + } + + .opn { + color: white; + } + + .clo { + color: white; + } + + .tag { + color: #ff9da4; + } + + .atn { + color: #ffc58f; + } + + .atv { + color: #99ffff; + } + + .dec { + color: #ffc58f; + } + + .var { + color: #ff9da4; + } + + .fun { + color: #bbdaff; + } +} +@media print, projection { + .str { + color: #006600; + } + + .kwd { + color: #006; + font-weight: bold; + } + + .com { + color: #600; + font-style: italic; + } + + .typ { + color: #404; + font-weight: bold; + } + + .lit { + color: #004444; + } + + .pun, .opn, .clo { + color: #444400; + } + + .tag { + color: #006; + font-weight: bold; + } + + .atn { + color: #440044; + } + + .atv { + color: #006600; + } +} +/* Specify class=linenums on a pre to get line numbering */ +ol.linenums { + margin-top: 0; + margin-bottom: 0; +} + +/* IE indents via margin-left */ +li.L0, +li.L1, +li.L2, +li.L3, +li.L4, +li.L5, +li.L6, +li.L7, +li.L8, +li.L9 { + /* */ +} + +/* Alternate shading for lines */ +li.L1, +li.L3, +li.L5, +li.L7, +li.L9 { + /* */ +} diff --git a/docs/css/prettify-themes/tomorrow-night-bright.css b/docs/css/prettify-themes/tomorrow-night-bright.css new file mode 100644 index 00000000..d40143f5 --- /dev/null +++ b/docs/css/prettify-themes/tomorrow-night-bright.css @@ -0,0 +1,141 @@ +/* Tomorrow Night Bright Theme */ +/* Original theme - https://github.com/chriskempson/tomorrow-theme */ +.prettyprint { + background: black; + font-family: Menlo, 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Consolas, monospace; + font-size: 12px; + line-height: 1.5; + border: 1px solid #ccc; + padding: 10px; +} + +.pln { + color: #eaeaea; +} + +@media screen { + .str { + color: #b9ca4a; + } + + .kwd { + color: #c397d8; + } + + .com { + color: #969896; + } + + .typ { + color: #7aa6da; + } + + .lit { + color: #e78c45; + } + + .pun { + color: #eaeaea; + } + + .opn { + color: #eaeaea; + } + + .clo { + color: #eaeaea; + } + + .tag { + color: #d54e53; + } + + .atn { + color: #e78c45; + } + + .atv { + color: #70c0b1; + } + + .dec { + color: #e78c45; + } + + .var { + color: #d54e53; + } + + .fun { + color: #7aa6da; + } +} +@media print, projection { + .str { + color: #006600; + } + + .kwd { + color: #006; + font-weight: bold; + } + + .com { + color: #600; + font-style: italic; + } + + .typ { + color: #404; + font-weight: bold; + } + + .lit { + color: #004444; + } + + .pun, .opn, .clo { + color: #444400; + } + + .tag { + color: #006; + font-weight: bold; + } + + .atn { + color: #440044; + } + + .atv { + color: #006600; + } +} +/* Specify class=linenums on a pre to get line numbering */ +ol.linenums { + margin-top: 0; + margin-bottom: 0; +} + +/* IE indents via margin-left */ +li.L0, +li.L1, +li.L2, +li.L3, +li.L4, +li.L5, +li.L6, +li.L7, +li.L8, +li.L9 { + /* */ +} + +/* Alternate shading for lines */ +li.L1, +li.L3, +li.L5, +li.L7, +li.L9 { + /* */ +} diff --git a/docs/css/prettify-themes/tomorrow-night-eighties.css b/docs/css/prettify-themes/tomorrow-night-eighties.css new file mode 100644 index 00000000..871e47d0 --- /dev/null +++ b/docs/css/prettify-themes/tomorrow-night-eighties.css @@ -0,0 +1,141 @@ +/* Tomorrow Night Eighties Theme */ +/* Original theme - https://github.com/chriskempson/tomorrow-theme */ +.prettyprint { + background: #2d2d2d; + font-family: Menlo, 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Consolas, monospace; + font-size: 12px; + line-height: 1.5; + border: 1px solid #ccc; + padding: 10px; +} + +.pln { + color: #cccccc; +} + +@media screen { + .str { + color: #99cc99; + } + + .kwd { + color: #cc99cc; + } + + .com { + color: #999999; + } + + .typ { + color: #6699cc; + } + + .lit { + color: #f99157; + } + + .pun { + color: #cccccc; + } + + .opn { + color: #cccccc; + } + + .clo { + color: #cccccc; + } + + .tag { + color: #f2777a; + } + + .atn { + color: #f99157; + } + + .atv { + color: #66cccc; + } + + .dec { + color: #f99157; + } + + .var { + color: #f2777a; + } + + .fun { + color: #6699cc; + } +} +@media print, projection { + .str { + color: #006600; + } + + .kwd { + color: #006; + font-weight: bold; + } + + .com { + color: #600; + font-style: italic; + } + + .typ { + color: #404; + font-weight: bold; + } + + .lit { + color: #004444; + } + + .pun, .opn, .clo { + color: #444400; + } + + .tag { + color: #006; + font-weight: bold; + } + + .atn { + color: #440044; + } + + .atv { + color: #006600; + } +} +/* Specify class=linenums on a pre to get line numbering */ +ol.linenums { + margin-top: 0; + margin-bottom: 0; +} + +/* IE indents via margin-left */ +li.L0, +li.L1, +li.L2, +li.L3, +li.L4, +li.L5, +li.L6, +li.L7, +li.L8, +li.L9 { + /* */ +} + +/* Alternate shading for lines */ +li.L1, +li.L3, +li.L5, +li.L7, +li.L9 { + /* */ +} diff --git a/docs/css/prettify-themes/tomorrow-night.css b/docs/css/prettify-themes/tomorrow-night.css new file mode 100644 index 00000000..69cebb26 --- /dev/null +++ b/docs/css/prettify-themes/tomorrow-night.css @@ -0,0 +1,141 @@ +/* Tomorrow Night Theme */ +/* Original theme - https://github.com/chriskempson/tomorrow-theme */ +.prettyprint { + background: #1d1f21; + font-family: Menlo, 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Consolas, monospace; + font-size: 12px; + line-height: 1.5; + border: 1px solid #ccc; + padding: 10px; +} + +.pln { + color: #c5c8c6; +} + +@media screen { + .str { + color: #b5bd68; + } + + .kwd { + color: #b294bb; + } + + .com { + color: #969896; + } + + .typ { + color: #81a2be; + } + + .lit { + color: #de935f; + } + + .pun { + color: #c5c8c6; + } + + .opn { + color: #c5c8c6; + } + + .clo { + color: #c5c8c6; + } + + .tag { + color: #cc6666; + } + + .atn { + color: #de935f; + } + + .atv { + color: #8abeb7; + } + + .dec { + color: #de935f; + } + + .var { + color: #cc6666; + } + + .fun { + color: #81a2be; + } +} +@media print, projection { + .str { + color: #006600; + } + + .kwd { + color: #006; + font-weight: bold; + } + + .com { + color: #600; + font-style: italic; + } + + .typ { + color: #404; + font-weight: bold; + } + + .lit { + color: #004444; + } + + .pun, .opn, .clo { + color: #444400; + } + + .tag { + color: #006; + font-weight: bold; + } + + .atn { + color: #440044; + } + + .atv { + color: #006600; + } +} +/* Specify class=linenums on a pre to get line numbering */ +ol.linenums { + margin-top: 0; + margin-bottom: 0; +} + +/* IE indents via margin-left */ +li.L0, +li.L1, +li.L2, +li.L3, +li.L4, +li.L5, +li.L6, +li.L7, +li.L8, +li.L9 { + /* */ +} + +/* Alternate shading for lines */ +li.L1, +li.L3, +li.L5, +li.L7, +li.L9 { + /* */ +} diff --git a/docs/css/prettify-themes/tomorrow.css b/docs/css/prettify-themes/tomorrow.css new file mode 100644 index 00000000..bd91f769 --- /dev/null +++ b/docs/css/prettify-themes/tomorrow.css @@ -0,0 +1,141 @@ +/* Tomorrow Theme */ +/* Original theme - https://github.com/chriskempson/tomorrow-theme */ +.prettyprint { + background: white; + font-family: Menlo, 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Consolas, monospace; + font-size: 12px; + line-height: 1.5; + border: 1px solid #ccc; + padding: 10px; +} + +.pln { + color: #4d4d4c; +} + +@media screen { + .str { + color: #718c00; + } + + .kwd { + color: #8959a8; + } + + .com { + color: #8e908c; + } + + .typ { + color: #4271ae; + } + + .lit { + color: #f5871f; + } + + .pun { + color: #4d4d4c; + } + + .opn { + color: #4d4d4c; + } + + .clo { + color: #4d4d4c; + } + + .tag { + color: #c82829; + } + + .atn { + color: #f5871f; + } + + .atv { + color: #3e999f; + } + + .dec { + color: #f5871f; + } + + .var { + color: #c82829; + } + + .fun { + color: #4271ae; + } +} +@media print, projection { + .str { + color: #006600; + } + + .kwd { + color: #006; + font-weight: bold; + } + + .com { + color: #600; + font-style: italic; + } + + .typ { + color: #404; + font-weight: bold; + } + + .lit { + color: #004444; + } + + .pun, .opn, .clo { + color: #444400; + } + + .tag { + color: #006; + font-weight: bold; + } + + .atn { + color: #440044; + } + + .atv { + color: #006600; + } +} +/* Specify class=linenums on a pre to get line numbering */ +ol.linenums { + margin-top: 0; + margin-bottom: 0; +} + +/* IE indents via margin-left */ +li.L0, +li.L1, +li.L2, +li.L3, +li.L4, +li.L5, +li.L6, +li.L7, +li.L8, +li.L9 { + /* */ +} + +/* Alternate shading for lines */ +li.L1, +li.L3, +li.L5, +li.L7, +li.L9 { + /* */ +} diff --git a/docs/css/prettify-themes/vibrant-ink.css b/docs/css/prettify-themes/vibrant-ink.css new file mode 100644 index 00000000..3a3b9b3a --- /dev/null +++ b/docs/css/prettify-themes/vibrant-ink.css @@ -0,0 +1,141 @@ +/* Vibrant Ink Theme */ +/* Original theme - http://alternateidea.com/blog/articles/2006/1/3/textmate-vibrant-ink-theme-and-prototype-bundle */ +.prettyprint { + background: black; + font-family: Menlo, 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Consolas, monospace; + font-size: 12px; + line-height: 1.5; + border: 1px solid #ccc; + padding: 10px; +} + +.pln { + color: white; +} + +@media screen { + .str { + color: #66ff00; + } + + .kwd { + color: #ff6600; + } + + .com { + color: #9933cc; + } + + .typ { + color: #445588; + } + + .lit { + color: #445588; + } + + .pun { + color: white; + } + + .opn { + color: white; + } + + .clo { + color: white; + } + + .tag { + color: white; + } + + .atn { + color: #99cc99; + } + + .atv { + color: #66ff00; + } + + .dec { + color: white; + } + + .var { + color: white; + } + + .fun { + color: #ffcc00; + } +} +@media print, projection { + .str { + color: #006600; + } + + .kwd { + color: #006; + font-weight: bold; + } + + .com { + color: #600; + font-style: italic; + } + + .typ { + color: #404; + font-weight: bold; + } + + .lit { + color: #004444; + } + + .pun, .opn, .clo { + color: #444400; + } + + .tag { + color: #006; + font-weight: bold; + } + + .atn { + color: #440044; + } + + .atv { + color: #006600; + } +} +/* Specify class=linenums on a pre to get line numbering */ +ol.linenums { + margin-top: 0; + margin-bottom: 0; +} + +/* IE indents via margin-left */ +li.L0, +li.L1, +li.L2, +li.L3, +li.L4, +li.L5, +li.L6, +li.L7, +li.L8, +li.L9 { + /* */ +} + +/* Alternate shading for lines */ +li.L1, +li.L3, +li.L5, +li.L7, +li.L9 { + /* */ +} diff --git a/docs/img/favicon.ico b/docs/img/favicon.ico new file mode 100644 index 00000000..6e21d0f2 Binary files /dev/null and b/docs/img/favicon.ico differ diff --git a/docs/img/glyphicons-halflings-white.png b/docs/img/glyphicons-halflings-white.png new file mode 100644 index 00000000..3bf6484a Binary files /dev/null and b/docs/img/glyphicons-halflings-white.png differ diff --git a/docs/img/glyphicons-halflings.png b/docs/img/glyphicons-halflings.png new file mode 100644 index 00000000..a9969993 Binary files /dev/null and b/docs/img/glyphicons-halflings.png differ diff --git a/docs/img/sharebuttons/facebook.png b/docs/img/sharebuttons/facebook.png new file mode 100644 index 00000000..d0bbd731 Binary files /dev/null and b/docs/img/sharebuttons/facebook.png differ diff --git a/docs/img/sharebuttons/google_plus.png b/docs/img/sharebuttons/google_plus.png new file mode 100644 index 00000000..a2d7c526 Binary files /dev/null and b/docs/img/sharebuttons/google_plus.png differ diff --git a/docs/img/sharebuttons/twitter.png b/docs/img/sharebuttons/twitter.png new file mode 100644 index 00000000..ded105c9 Binary files /dev/null and b/docs/img/sharebuttons/twitter.png differ diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 00000000..a122d889 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,165 @@ + + + + + Units of Measurement - API + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    API

    +

    The Unit of Measurement API provides a set of Java language programming interfaces for handling units and quantities.
    The interfaces provide a layer which separates client code, that would call the API,
    from library code, which implements the API.

    +

    alt text

    +

    The specification contains Interfaces and abstract classes with methods for unit operations:
    * Checking of unit compatibility
    * Expression of a quantity in various units
    * Arithmetic operations on units

    + The JSR is lead by Jean-Marie Dautelle (@dautelle), + Werner Keil (@keilw) and Otavio Santana (@otaviojava). +
    You can access the API by adding the following Maven + dependencies:

    +
    <dependency>
    +  <groupId>javax.measure</groupId>
    +  <artifactId>unit-api</artifactId>
    +  <version>2.2</version>
    +</dependency>
    + + For JSR 363 use + <version>1.0</version>.
    + + +

    Further versions can be found here.

    +

    +Release artifacts are accessible from the following repositories: +

      +
    • Maven Central
    • +
    +

    + +

    Though it is possible to only reference the API from your application, you should also add an implementation like the Indriya reference implementation. +On the other hand you may leave the API out if you already declare Indriya, especially using the JPMS (Jigsaw) since the implementation also declares Unit-API as a "transitive" dependency.

    + + +
    +
    +
    + +
    + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/javascripts/scale.fix.js b/docs/javascripts/scale.fix.js new file mode 100644 index 00000000..87a40ca7 --- /dev/null +++ b/docs/javascripts/scale.fix.js @@ -0,0 +1,17 @@ +var metas = document.getElementsByTagName('meta'); +var i; +if (navigator.userAgent.match(/iPhone/i)) { + for (i=0; iarticle,aside,figcaption,figure,footer,header,hgroup,nav,section{display:block}mark{background:#FF0;color:#000}"; +c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode|| +"undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",version:"3.6.2pre",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);if(g)return a.createDocumentFragment(); +for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d + + + + Units of Measurement + - About + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    About

    +

    The Unit of Measurement API provides a set of Java language programming interfaces for handling units and quantities.
    The interfaces provide a layer which separates client code, that would call the API,
    from library code, which implements the API.

    +

    alt text

    +

    The specification contains Interfaces and abstract classes with methods for unit operations:
    * Checking of unit compatibility
    * Expression of a quantity in various units
    * Arithmetic operations on units

    +

    Developers frequently encounter the need to model units of measure, because objects in the real world are subject to these measures.
    When working with units, developers need to understand the mathematics of units, how to convert between systems,
    and how to format and parse string representations of units. Most of this work can be consolidated into one or two Java packages,
    which is a primary aim of this JSR. This package will help developers create safe, correct software to deal with common problem of modeling units.

    +

    Units give us a way to measure the physical world. There are many different units, partly because the world has different types of properties,
    such as length and mass, which are not interchangeable in normal physics. This type of property is sometimes called a "quantity" or a "dimension".
    The word "dimension" fits because of the orthogonality of these properties. For example "mass" and "length" cannot be exchanged.
    Further, when we multiply physical measures the dimensions add up as exponents. For example, length times length becomes length².

    +

    A large body of work exists that specifies the dimensions, meanings, and names of various physical quantities.
    In particular, the 11th General Conference on Weights and Measures in 1960 recommended a practical system of units of measurement,
    and gave it the name Systeme International d'Units (SI).
    SI defines units for the base dimensions of length, mass, time, electric current,
    thermodynamic temperature, amount of substance, and luminous intensity.
    SI also recognizes names and meaning of derived dimensions,
    such as area, volume, and force.
    For some (but not all) of these derived dimensions SI defines units,
    such as "liter" for a unit of volume and "newton" for a unit of force.
    SI does not have a special name for area,
    although other systems of measurement do (as in "acre").

    +

    Despite the rising prominence of the metric system (the SI system), many developers have to work with non-SI units,
    such as feet, miles, acres, and gallons. A measurement can be expressed as a number of any unit,
    so long as the unit has the same dimension as the measured quantity. For example,
    any measure of volume can be expressed as a number of liters or gallons,
    because liters and gallons are units of volume, and all volumes have the dimension of length^3.
    Therefore, a measure expressed as a number of liters can be 'converted' to a number of gallons.
    Converting measures from one system of units to another is a common problem,
    but is subject to mathematics that can help to eliminate errors.

    +

    What's with Duke and that haircut?

    +

    alt text

    +

    The image refers to the Shakespeare play "Measure for Measure",
    occasionally used by presentations on JSR 363.
    In the story a Duke disguised as a friar spies on his subjects, so Duke sounded like a good match (not for the spying we hope;-)

    +
    +
    +
    + +
    + + + + + + + + + + + + + + diff --git a/docs/pages/calendar.html b/docs/pages/calendar.html new file mode 100644 index 00000000..f47ad00c --- /dev/null +++ b/docs/pages/calendar.html @@ -0,0 +1,138 @@ + + + + + Units of Measurement + - Calendar + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Calendar

    +

    +
    +
    +
    + +
    + + + + + + + + + + + + + + diff --git a/docs/pages/contact.html b/docs/pages/contact.html new file mode 100644 index 00000000..68e8ae10 --- /dev/null +++ b/docs/pages/contact.html @@ -0,0 +1,152 @@ + + + + + Units of Measurement + - Contact + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Contact

    +

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque vel diam purus. Curabitur ut nisi lacus.

    + +

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam luctus tortor
    mi, ac euismod eros tempor ac. Nam sed hendrerit est. Integer euismod ante
    malesuada venenatis blandit. Duis lacinia sem eget tellus fermentum pulvinar.
    Etiam venenatis placerat urna, pretium vulputate augue dignissim ut. Nam aliquam
    mi porta faucibus vehicula. Cras sit amet facilisis purus. In ac ipsum suscipit,
    fringilla magna et, bibendum eros. Aenean non sem cursus, tincidunt nibh nec,
    eleifend sapien. Phasellus consectetur purus a porta pellentesque. Nulla
    facilisi. Fusce nibh lacus, tincidunt ut interdum ac, tincidunt vel eros.

    +

    Vestibulum venenatis tortor at dolor commodo, a ullamcorper nisl vehicula. Sed
    quis lacus a tellus sagittis consectetur. Nulla viverra urna id mauris tempus,
    at laoreet sem lacinia. Sed consequat laoreet ultrices. Cum sociis natoque
    penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec nec
    diam vel velit dictum congue et at eros. Nulla ut rhoncus neque. Aliquam
    molestie turpis eget sem egestas semper at non arcu. Ut suscipit mattis nisl,
    vel cursus velit volutpat eu. In at sapien eget risus pharetra consectetur vitae
    ut nulla. Donec vel ante tempor, eleifend diam consequat, porttitor enim.

    +

    Vivamus tincidunt condimentum sem quis aliquet. Proin sagittis scelerisque
    tellus, dictum rutrum tortor interdum at. Pellentesque habitant morbi tristique
    senectus et netus et malesuada fames ac turpis egestas. Aenean et viverra nunc.
    Vestibulum bibendum, massa quis auctor iaculis, lacus sem scelerisque libero,
    vitae pulvinar quam sapien eget nibh. Etiam pulvinar dignissim pellentesque.
    Nulla facilisi.

    +

    Vestibulum id tellus ipsum. Morbi posuere bibendum augue id elementum. Ut justo
    libero, pretium quis malesuada a, tempus vitae est. Quisque enim sem, malesuada
    lacinia gravida vitae, placerat at libero. Etiam suscipit ligula libero. Sed a
    dui eu arcu rutrum porttitor. Vestibulum ultrices justo ut imperdiet auctor.
    Maecenas nec lectus vitae nunc bibendum posuere. In non lectus eget sapien
    malesuada ornare. Proin massa justo, cursus nec felis ut, dictum iaculis nisi.
    Aliquam non libero sapien. Nam suscipit magna justo.

    +

    Donec et suscipit erat. Donec quis metus a ipsum cursus sollicitudin non non
    diam. Donec varius ultrices enim in mattis. Ut non nisi id velit euismod varius.
    Maecenas ut tellus lectus. Nulla dictum, mi quis dictum volutpat, diam purus
    commodo nisl, a suscipit ligula tortor sed enim. In vel cursus lacus.

    +

    Pellentesque sagittis a massa vel semper. Curabitur ac enim at lacus convallis
    vestibulum at ut nisl. Nam fringilla sem dui. Maecenas nec arcu blandit,
    volutpat enim nec, tincidunt massa. Fusce hendrerit, leo nec ornare vehicula,
    arcu odio adipiscing orci, ut faucibus mi magna ac nisi. Sed vitae tortor
    fermentum, ullamcorper tortor a, lacinia nibh. Morbi sit amet tellus urna. Donec
    arcu velit, laoreet nec suscipit vel, rhoncus at orci. Donec id enim eu erat
    ornare fringilla id eget lorem. Donec ut risus quis nisi tincidunt lacinia. Duis
    convallis commodo arcu, a eleifend lacus consectetur vitae. Nam sagittis
    pulvinar justo, vel malesuada ipsum euismod non. Aenean purus ipsum, mollis in
    sagittis quis, porta a mauris. Aliquam consequat tincidunt augue et porttitor.
    In suscipit rutrum nunc at interdum.

    +

    Phasellus commodo ligula lectus, sit amet ornare dui semper in. Donec aliquet
    ligula id lobortis bibendum. Phasellus dapibus placerat vulputate. In iaculis
    ipsum in diam dapibus congue. Donec non dolor dignissim, facilisis risus
    molestie, accumsan risus. Etiam eget ultricies lorem, at pellentesque quam. Nunc
    rutrum, orci non iaculis auctor, erat elit vehicula erat, non rutrum enim risus
    eu augue.

    +

    Pellentesque id elit sed lacus lobortis rutrum. Nulla sit amet metus sem. Mauris
    erat felis, tempus vitae tempus et, venenatis vitae erat. Mauris quis ipsum
    turpis. Curabitur lobortis auctor sagittis. Sed accumsan quis purus quis
    dapibus. Ut sodales orci at rutrum ornare. Sed imperdiet, nisi quis scelerisque
    imperdiet, lacus neque scelerisque ipsum, non eleifend sem urna sed magna.
    Phasellus auctor ultrices commodo. Phasellus facilisis tellus a sapien tempus, a
    lacinia arcu vehicula. Fusce felis tortor, vulputate a tortor at, iaculis
    sodales libero. Morbi at dapibus quam.

    +

    Praesent dignissim leo ut vestibulum hendrerit. Pellentesque feugiat at purus
    sit amet facilisis. Pellentesque et pulvinar justo. Cras et felis rutrum,
    egestas lacus a, semper velit. Vestibulum eleifend est in commodo pellentesque.
    Proin porttitor vitae tellus in ultrices. Fusce interdum imperdiet nibh et
    ornare. Mauris pharetra felis eget nisi ultrices posuere. Nunc ultricies
    imperdiet malesuada. Praesent porta dictum pulvinar.

    +

    Sed tristique hendrerit sem vitae feugiat. Duis urna nulla, auctor quis nunc ac,
    accumsan sollicitudin velit. Duis iaculis erat a vehicula blandit. Etiam
    volutpat nisi vulputate, placerat lacus non, eleifend sem. Nulla dictum
    pellentesque viverra. Phasellus quis accumsan enim. Nulla id turpis ac justo
    varius convallis. Ut hendrerit mi et blandit suscipit. Aenean varius, metus
    malesuada lobortis sollicitudin, urna nunc facilisis est, at dignissim velit
    mauris vitae nibh. Sed quis ante ac massa scelerisque porta. Praesent
    ullamcorper dolor et nunc ullamcorper ultrices. Pellentesque eu placerat nunc,
    in blandit purus. Phasellus porttitor malesuada mi, in accumsan justo. Quisque
    eu magna in lacus accumsan commodo non sit amet sapien. Ut eu lacinia eros.
    Nullam quis fringilla dui.

    +
    +
    +
    + +
    + + + + + + + + + + + + + + diff --git a/docs/site/apidocs/allclasses-index.html b/docs/site/apidocs/allclasses-index.html new file mode 100644 index 00000000..0dbf07fb --- /dev/null +++ b/docs/site/apidocs/allclasses-index.html @@ -0,0 +1,294 @@ + + + + +All Classes and Interfaces (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    All Classes and Interfaces

    +
    +
    +
    +
    +
    +
    Class
    +
    Description
    + +
    +
    Rate of change of velocity with respect to time.
    +
    + +
    +
    Number of elementary entities (molecules, for example) of a substance.
    +
    + +
    +
    Figure formed by two lines diverging from a common point.
    +
    + +
    +
    Extent of a planar region or of the surface of a solid measured in square units.
    +
    + +
    +
    Provides support for common binary prefixes to be used by units.
    +
    + +
    +
    Catalytic activity.
    +
    + +
    +
    Represents the dimension of a unit.
    +
    + +
    +
    Dimensionless quantity.
    +
    + +
    +
    Electric capacitance.
    +
    + +
    +
    Electric charge.
    +
    + +
    +
    Electric conductance.
    +
    + +
    +
    Amount of electric charge flowing past a specified circuit point per unit time.
    +
    + +
    +
    Electric inductance.
    +
    + +
    +
    Electric potential or electromotive force.
    +
    + +
    +
    Electric resistance.
    +
    + +
    +
    Capacity of a physical system to do work.
    +
    + +
    +
    Quantity that tends to produce an acceleration of a body in the direction of its application.
    +
    + +
    +
    This interface represents the service to obtain instances of UnitFormat and QuantityFormat.
    +
    + +
    +
    The type of format, either a UnitFormat or QuantityFormat
    +
    + +
    +
    Number of times a specified phenomenon occurs within a specified interval.
    +
    + +
    +
    Illuminance.
    +
    + +
    +
    Signals that a problem of some sort has occurred due to incommensurable of some quantities/units.
    +
    + +
    +
    Extent of something along its greatest dimension or the extent of space between two objects or places.
    +
    + +
    +
    Luminous flux.
    +
    + +
    +
    Luminous flux density per solid angle as measured in a given direction relative to the emitting source.
    +
    + +
    +
    Magnetic flux.
    +
    + +
    +
    Magnetic flux density.
    +
    + +
    +
    Measure of the quantity of matter that a body or an object contains.
    +
    + +
    +
    This error is used to indicate serious problems with creating, retrieving and manipulating units of measurement objects.
    +
    + +
    +
    Exception used to indicate a problem while dealing with units of measurement.
    +
    + +
    +
    Signals that an error has been reached unexpectedly while parsing.
    +
    + +
    +
    Provides support for the 24 prefixes used in the metric system (decimal multiples and submultiples of units).
    +
    + +
    +
    Rate at which work is done.
    +
    + +
    +
    A unit prefix is a specifier or mnemonic that is prepended to units of measurement to indicate multiples or fractions of the units.
    +
    + +
    +
    Force applied uniformly over a surface.
    +
    +
    Quantity<Q extends Quantity<Q>>
    +
    +
    Represents a quantitative property of a phenomenon, body, or substance, that + can be quantified by measurement.
    +
    + +
    +
    The scale of a Quantity, either ABSOLUTE or RELATIVE.
    +
    + +
    +
    Represents a factory that accepts Number and Unit arguments to create Quantity results.
    +
    + +
    +
    Formats instances of Quantity.
    +
    + +
    +
    Amount of energy deposited per unit of mass.
    +
    + +
    +
    Effective (or "equivalent") dose of radiation received by a human or some other living organism.
    +
    + +
    +
    Radioactive activity.
    +
    + +
    +
    Service Provider for Units of Measurement services.
    +
    + +
    +
    Angle formed by three or more planes intersecting at a common point.
    +
    + +
    +
    Distance traveled divided by the time of travel.
    +
    + +
    +
    A system of units grouped together for historical or cultural reasons.
    + Common system of units are "SI" (System International), "Imperial" (British), "US" (US Customary).
    +
    + +
    +
    This interface represents the service to obtain a system + of units.
    +
    + +
    +
    Degree of hotness or coldness of a body or an environment.
    +
    + +
    +
    Period of existence or persistence.
    +
    + +
    +
    Signals that a problem of some sort has occurred due to the impossibility of constructing a converter between two units.
    +
    +
    Unit<Q extends Quantity<Q>>
    +
    +
    Represents a determinate quantity (as of length, time, heat, or value) adopted as a standard of measurement.
    +
    + +
    +
    A converter of numeric values between different units.
    +
    + +
    +
    Formats instances of Unit to a String or Appendable and parses a CharSequence to a Unit.
    +
    + +
    +
    Amount of space occupied by a three-dimensional object or region of space.
    +
    +
    +
    +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/allpackages-index.html b/docs/site/apidocs/allpackages-index.html new file mode 100644 index 00000000..2e86851c --- /dev/null +++ b/docs/site/apidocs/allpackages-index.html @@ -0,0 +1,85 @@ + + + + +All Packages (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    All Packages

    +
    +
    Package Summary
    +
    +
    Package
    +
    Description
    + +
    +
    Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
    +
    + +
    +
    [OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
    +
    + +
    +
    [OPTIONAL] Provides quantitative properties or attributes of thing such as + mass, time, distance, heat, and angular separation.
    +
    + +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/constant-values.html b/docs/site/apidocs/constant-values.html new file mode 100644 index 00000000..3e97b172 --- /dev/null +++ b/docs/site/apidocs/constant-values.html @@ -0,0 +1,102 @@ + + + + + +Constant Field Values (Units of Measurement API 2.1.3-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Constant Field Values

    +
    +

    Contents

    +
    +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/deprecated-list.html b/docs/site/apidocs/deprecated-list.html new file mode 100644 index 00000000..8744a140 --- /dev/null +++ b/docs/site/apidocs/deprecated-list.html @@ -0,0 +1,100 @@ + + + + + +Deprecated List (Units of Measurement API 2.1.3-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Deprecated API

    +

    Contents

    +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/element-list b/docs/site/apidocs/element-list new file mode 100644 index 00000000..4cfe83cf --- /dev/null +++ b/docs/site/apidocs/element-list @@ -0,0 +1,4 @@ +javax.measure +javax.measure.format +javax.measure.quantity +javax.measure.spi diff --git a/docs/site/apidocs/help-doc.html b/docs/site/apidocs/help-doc.html new file mode 100644 index 00000000..30537aea --- /dev/null +++ b/docs/site/apidocs/help-doc.html @@ -0,0 +1,191 @@ + + + + +API Help (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +

    JavaDoc Help

    + +
    +
    +

    Navigation

    +Starting from the Overview page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The Index and Search box allow you to navigate to specific declarations and summary pages, including: All Packages, All Classes and Interfaces + +
    +
    +
    +

    Kinds of Pages

    +The following sections describe the different kinds of pages in this collection. +
    +

    Overview

    +

    The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

    +
    +
    +

    Package

    +

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain the following categories:

    +
      +
    • Interfaces
    • +
    • Classes
    • +
    • Enums
    • +
    • Exceptions
    • +
    • Errors
    • +
    • Annotation Types
    • +
    +
    +
    +

    Class or Interface

    +

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.

    +
      +
    • Class Inheritance Diagram
    • +
    • Direct Subclasses
    • +
    • All Known Subinterfaces
    • +
    • All Known Implementing Classes
    • +
    • Class or Interface Declaration
    • +
    • Class or Interface Description
    • +
    +
    +
      +
    • Nested Class Summary
    • +
    • Enum Constant Summary
    • +
    • Field Summary
    • +
    • Property Summary
    • +
    • Constructor Summary
    • +
    • Method Summary
    • +
    • Required Element Summary
    • +
    • Optional Element Summary
    • +
    +
    +
      +
    • Enum Constant Details
    • +
    • Field Details
    • +
    • Property Details
    • +
    • Constructor Details
    • +
    • Method Details
    • +
    • Element Details
    • +
    +

    Note: Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.

    +

    The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    +
    +
    +

    Other Files

    +

    Packages and modules may contain pages with additional information related to the declarations nearby.

    +
    +
    +

    Use

    +

    Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the USE link in the navigation bar.

    +
    +
    +

    Tree (Class Hierarchy)

    +

    There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object. Interfaces do not inherit from java.lang.Object.

    +
      +
    • When viewing the Overview page, clicking on TREE displays the hierarchy for all packages.
    • +
    • When viewing a particular package, class or interface page, clicking on TREE displays the hierarchy for only that package.
    • +
    +
    +
    +

    Serialized Form

    +

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to those who implement rather than use the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See Also" section of the class description.

    +
    +
    +

    All Packages

    +

    The All Packages page contains an alphabetic index of all packages contained in the documentation.

    +
    +
    +

    All Classes and Interfaces

    +

    The All Classes and Interfaces page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.

    +
    +
    +

    Index

    +

    The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as All Packages, All Classes and Interfaces.

    +
    +
    +
    +This help file applies to API documentation generated by the standard doclet.
    + +
    +
    + + diff --git a/docs/site/apidocs/index-all.html b/docs/site/apidocs/index-all.html new file mode 100644 index 00000000..cdf02d13 --- /dev/null +++ b/docs/site/apidocs/index-all.html @@ -0,0 +1,1187 @@ + + + + +Index (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I J K L M N O P Q R S T U V Y Z 
    All Classes and Interfaces|All Packages|Serialized Form +

    A

    +
    +
    ABSOLUTE - Enum constant in enum Quantity.Scale
    +
    +
    Absolute scale
    +
    +
    Acceleration - Interface in javax.measure.quantity
    +
    +
    Rate of change of velocity with respect to time.
    +
    +
    add(Quantity<Q>) - Method in interface Quantity
    +
    +
    Returns the sum of this Quantity with the one specified.
    +
    +
    alternate(String) - Method in interface Unit
    +
    +
    Returns a system unit equivalent to this unscaled standard unit but used in expressions to distinguish between quantities of a different nature + but of the same dimensions.
    +
    +
    AmountOfSubstance - Interface in javax.measure.quantity
    +
    +
    Number of elementary entities (molecules, for example) of a substance.
    +
    +
    Angle - Interface in javax.measure.quantity
    +
    +
    Figure formed by two lines diverging from a common point.
    +
    +
    Area - Interface in javax.measure.quantity
    +
    +
    Extent of a planar region or of the surface of a solid measured in square units.
    +
    +
    asType(Class<T>) - Method in interface Quantity
    +
    +
    Casts this quantity to a parameterized unit of specified nature or throw a + ClassCastException if the dimension of the specified quantity + and this measure unit's dimension do not match.
    +
    +
    asType(Class<T>) - Method in interface Unit
    +
    +
    Casts this unit to a parameterized unit of specified nature or throw a ClassCastException if the dimension of the specified quantity and + this unit's dimension do not match.
    +
    +
    ATTO - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 10-18.
    +
    +
    ATTO(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10-18
    +
    +
    available() - Static method in class ServiceProvider
    +
    +
    Returns the list of all service providers available for the current thread's context class loader.
    +
    +
    +

    B

    +
    +
    BinaryPrefix - Enum in javax.measure
    +
    +
    Provides support for common binary prefixes to be used by units.
    +
    +
    +

    C

    +
    +
    CatalyticActivity - Interface in javax.measure.quantity
    +
    +
    Catalytic activity.
    +
    +
    CENTI - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 10-2.
    +
    +
    CENTI(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10-2
    +
    +
    concatenate(UnitConverter) - Method in interface UnitConverter
    +
    +
    Concatenates this converter with another converter.
    +
    +
    convert(double) - Method in interface UnitConverter
    +
    +
    Converts a double value.
    +
    +
    convert(Number) - Method in interface UnitConverter
    +
    +
    Converts a Number value.
    +
    +
    create(Number, Unit<Q>) - Method in interface QuantityFactory
    +
    +
    Returns the quantity for the specified number stated in the specified unit.
    +
    +
    create(Number, Unit<Q>, Quantity.Scale) - Method in interface QuantityFactory
    +
    +
    Returns the quantity for the specified number stated in the specified unit and scale.
    +
    +
    current() - Static method in class ServiceProvider
    +
    +
    Returns the current ServiceProvider.
    +
    +
    +

    D

    +
    +
    DECA - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 101.
    +
    +
    DECA(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 101
    +
    +
    DECI - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 10-1.
    +
    +
    DECI(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10-1
    +
    +
    DEKA(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    US alias for DECA.
    +
    +
    Dimension - Interface in javax.measure
    +
    +
    Represents the dimension of a unit.
    +
    +
    Dimensionless - Interface in javax.measure.quantity
    +
    +
    Dimensionless quantity.
    +
    +
    divide(double) - Method in interface Unit
    +
    +
    Returns the result of dividing this unit by an approximate divisor.
    +
    +
    divide(Number) - Method in interface Quantity
    +
    +
    Returns the quotient of this Quantity divided by the Number + specified.
    +
    +
    divide(Number) - Method in interface Unit
    +
    +
    Returns the result of dividing this unit by a divisor.
    +
    +
    divide(Dimension) - Method in interface Dimension
    +
    +
    Returns the quotient of this dimension with the one specified.
    +
    +
    divide(Quantity<?>) - Method in interface Quantity
    +
    +
    Returns the quotient of this Quantity divided by the Quantity + specified.
    +
    +
    divide(Unit<?>) - Method in interface Unit
    +
    +
    Returns the quotient of this unit with the one specified.
    +
    +
    +

    E

    +
    +
    ElectricCapacitance - Interface in javax.measure.quantity
    +
    +
    Electric capacitance.
    +
    +
    ElectricCharge - Interface in javax.measure.quantity
    +
    +
    Electric charge.
    +
    +
    ElectricConductance - Interface in javax.measure.quantity
    +
    +
    Electric conductance.
    +
    +
    ElectricCurrent - Interface in javax.measure.quantity
    +
    +
    Amount of electric charge flowing past a specified circuit point per unit time.
    +
    +
    ElectricInductance - Interface in javax.measure.quantity
    +
    +
    Electric inductance.
    +
    +
    ElectricPotential - Interface in javax.measure.quantity
    +
    +
    Electric potential or electromotive force.
    +
    +
    ElectricResistance - Interface in javax.measure.quantity
    +
    +
    Electric resistance.
    +
    +
    Energy - Interface in javax.measure.quantity
    +
    +
    Capacity of a physical system to do work.
    +
    +
    EXA - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 1018.
    +
    +
    EXA(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 1018
    +
    +
    EXBI - Enum constant in enum BinaryPrefix
    +
    +
    Prefix for 10246.
    +
    +
    EXBI(Unit<Q>) - Static method in enum BinaryPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10246 (binary prefix).
    +
    +
    +

    F

    +
    +
    FEMTO - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 10-15.
    +
    +
    FEMTO(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10-15
    +
    +
    Force - Interface in javax.measure.quantity
    +
    +
    Quantity that tends to produce an acceleration of a body in the direction of its application.
    +
    +
    format(Quantity<?>) - Method in interface QuantityFormat
    +
    +
    Formats the specified Quantity.
    +
    +
    format(Quantity<?>, Appendable) - Method in interface QuantityFormat
    +
    +
    Formats the specified quantity into an Appendable.
    +
    +
    format(Unit<?>) - Method in interface UnitFormat
    +
    +
    Formats the specified Unit.
    +
    +
    format(Unit<?>, Appendable) - Method in interface UnitFormat
    +
    +
    Formats the specified Unit.
    +
    +
    FormatService - Interface in javax.measure.spi
    +
    +
    This interface represents the service to obtain instances of UnitFormat and QuantityFormat.
    +
    +
    FormatService.FormatType - Enum in javax.measure.spi
    +
    +
    The type of format, either a UnitFormat or QuantityFormat
    +
    +
    Frequency - Interface in javax.measure.quantity
    +
    +
    Number of times a specified phenomenon occurs within a specified interval.
    +
    +
    +

    G

    +
    +
    getAvailableFormatNames(FormatService.FormatType) - Method in interface FormatService
    +
    +
    Gets a list with available format names of a given type for this format service.
    +
    +
    getAvailableSystemsOfUnits() - Method in interface SystemOfUnitsService
    +
    +
    Gets a list with available systems for this SystemOfUnitsService.
    +
    +
    getBaseDimensions() - Method in interface Dimension
    +
    +
    Returns the (fundamental) base dimensions and their exponent whose product is this dimension, or null if this dimension is a base + dimension.
    +
    +
    getBaseUnits() - Method in interface Unit
    +
    +
    Returns the base units and their exponent whose product is this unit, or null if this unit is a base unit (not a product of existing + units).
    +
    +
    getConversionSteps() - Method in interface UnitConverter
    +
    +
    + Returns the steps of fundamental converters making up this converter or this if the converter is a fundamental converter.
    +
    +
    getConverterTo(Unit<Q>) - Method in interface Unit
    +
    +
    Returns a converter of numeric values from this unit to another unit of same type.
    +
    +
    getConverterToAny(Unit<?>) - Method in interface Unit
    +
    +
    Returns a converter from this unit to the specified unit of type unknown.
    +
    +
    getDimension() - Method in interface Unit
    +
    +
    Returns the dimension of this unit.
    +
    +
    getExponent() - Method in enum BinaryPrefix
    +
    +
    Exponent part of the associated factor in base^exponent representation.
    +
    +
    getExponent() - Method in enum MetricPrefix
    +
    +
    Exponent part of the associated factor in base^exponent representation.
    +
    +
    getExponent() - Method in interface Prefix
    +
    +
    Exponent part of the associated factor in base^exponent representation.
    +
    +
    getFormatService() - Method in class ServiceProvider
    +
    +
    Returns the service to obtain UnitFormat and QuantityFormat or null if none.
    +
    +
    getName() - Method in enum BinaryPrefix
    +
    +
    Returns the name of this prefix.
    +
    +
    getName() - Method in enum MetricPrefix
    +
    +
    Returns the name of this prefix.
    +
    +
    getName() - Method in interface Prefix
    +
    +
    Returns the name of this prefix.
    +
    +
    getName() - Method in interface SystemOfUnits
    +
     
    +
    getName() - Method in interface Unit
    +
    +
    Returns the name (if any) of this unit.
    +
    +
    getParsedString() - Method in exception MeasurementParseException
    +
    +
    Returns the string that was being parsed.
    +
    +
    getPosition() - Method in exception MeasurementParseException
    +
    +
    Returns the position where the error was found.
    +
    +
    getPrefixes(Class<P>) - Method in interface SystemOfUnitsService
    +
    +
    Returns a Set containing the values of a particular Prefix + type.
    +
    +
    getPriority() - Method in class ServiceProvider
    +
    +
    Allows to define a priority for a registered ServiceProvider instance.
    +
    +
    getQuantityFactory(Class<Q>) - Method in class ServiceProvider
    +
    +
    Returns a factory for the given Quantity type.
    +
    +
    getQuantityFormat() - Method in interface FormatService
    +
    +
    Returns the default quantity format.
    +
    +
    getQuantityFormat(String) - Method in interface FormatService
    +
    +
    Returns the quantity format having the specified name or null if none.
    +
    +
    getScale() - Method in interface Quantity
    +
    +
    Returns the Scale of this Quantity, if it's absolute or relative.
    +
    +
    getSymbol() - Method in enum BinaryPrefix
    +
    +
    Returns the symbol of this prefix.
    +
    +
    getSymbol() - Method in enum MetricPrefix
    +
    +
    Returns the symbol of this prefix.
    +
    +
    getSymbol() - Method in interface Prefix
    +
    +
    Returns the symbol of this prefix.
    +
    +
    getSymbol() - Method in interface Unit
    +
    +
    Returns the symbol (if any) of this unit.
    +
    +
    getSystemOfUnits() - Method in interface SystemOfUnitsService
    +
    +
    Returns the default system of units.
    +
    +
    getSystemOfUnits(String) - Method in interface SystemOfUnitsService
    +
    +
    Returns the system of units having the specified name or null if + none is found.
    +
    +
    getSystemOfUnitsService() - Method in class ServiceProvider
    +
    +
    Returns the service to obtain a SystemOfUnits, or null if none.
    +
    +
    getSystemUnit() - Method in interface QuantityFactory
    +
    +
    Returns the system unit for quantities produced by this factory or null if unknown.
    +
    +
    getSystemUnit() - Method in interface Unit
    +
    +
    Returns the unscaled system unit from which this unit is derived.
    +
    +
    getUnit() - Method in interface Quantity
    +
    +
    Returns the unit of this Quantity.
    +
    +
    getUnit(Class<Q>) - Method in interface SystemOfUnits
    +
    +
    Returns the default unit for the specified quantity or null if none is defined for the given quantity in this unit system.
    +
    +
    getUnit(String) - Method in interface SystemOfUnits
    +
    +
    Returns a unit with the given string representation or null if none is found in this unit system.
    +
    +
    getUnitFormat() - Method in interface FormatService
    +
    +
    Returns the default unit format.
    +
    +
    getUnitFormat(String) - Method in interface FormatService
    +
    +
    Returns the unit format having the specified name or null if none.
    +
    +
    getUnitFormat(String, String) - Method in interface FormatService
    +
    +
    Returns the unit format having the specified name or null if none.
    +
    +
    getUnits() - Method in interface SystemOfUnits
    +
    +
    Returns a read only view over the units explicitly defined by this system.
    +
    +
    getUnits(Dimension) - Method in interface SystemOfUnits
    +
    +
    Returns the units defined in this system having the specified dimension (convenience method).
    +
    +
    getValue() - Method in enum BinaryPrefix
    +
    +
    Base part of the associated factor in base^exponent representation.
    +
    +
    getValue() - Method in enum MetricPrefix
    +
    +
    Base part of the associated factor in base^exponent representation.
    +
    +
    getValue() - Method in interface Prefix
    +
    +
    Returns the value of this prefix.
    +
    +
    getValue() - Method in interface Quantity
    +
    +
    Returns the value of this Quantity.
    +
    +
    GIBI - Enum constant in enum BinaryPrefix
    +
    +
    Prefix for 10243.
    +
    +
    GIBI(Unit<Q>) - Static method in enum BinaryPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10243 (binary prefix).
    +
    +
    GIGA - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 109.
    +
    +
    GIGA(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 109
    +
    +
    +

    H

    +
    +
    HECTO - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 102.
    +
    +
    HECTO(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 102
    +
    +
    +

    I

    +
    +
    Illuminance - Interface in javax.measure.quantity
    +
    +
    Illuminance.
    +
    +
    IncommensurableException - Exception in javax.measure
    +
    +
    Signals that a problem of some sort has occurred due to incommensurable of some quantities/units.
    +
    +
    IncommensurableException(String) - Constructor for exception IncommensurableException
    +
    +
    Constructs a IncommensurableException with the given message.
    +
    +
    IncommensurableException(String, Throwable) - Constructor for exception IncommensurableException
    +
    +
    Constructs a IncommensurableException with the given message and cause.
    +
    +
    IncommensurableException(Throwable) - Constructor for exception IncommensurableException
    +
    +
    Constructs a IncommensurableException with the given cause.
    +
    +
    inverse() - Method in interface Quantity
    +
    +
    Returns a Quantity that is the multiplicative inverse of this + Quantity, having reciprocal value and reciprocal unit as given by + this.getUnit().inverse().
    +
    +
    inverse() - Method in interface Unit
    +
    +
    Returns the reciprocal (multiplicative inverse) of this unit.
    +
    +
    inverse() - Method in interface UnitConverter
    +
    +
    Returns the inverse of this converter.
    +
    +
    isCompatible(Unit<?>) - Method in interface Unit
    +
    +
    Indicates if this unit is compatible with the unit specified.
    +
    +
    isEquivalentTo(Quantity<Q>) - Method in interface Quantity
    +
    +
    Compares two instances of Quantity <Q>, performing the conversion of units if necessary.
    +
    +
    isEquivalentTo(Unit<Q>) - Method in interface Unit
    +
    +
    Indicates if this unit represents the same quantity than the given unit, ignoring name and symbols.
    +
    +
    isIdentity() - Method in interface UnitConverter
    +
    +
    Indicates if this converter is an identity converter.
    +
    +
    isLinear() - Method in interface UnitConverter
    +
    +
    Indicates whether this converter represents a (one-dimensional) linear transformation, that is + a linear map (wikipedia) from a one-dimensional + vector space (a scalar) to a one-dimensional vector space.
    +
    +
    isLocaleSensitive() - Method in interface QuantityFormat
    +
    +
    Returns true if this QuantityFormat depends on a Locale to perform its tasks.
    +
    +
    isLocaleSensitive() - Method in interface UnitFormat
    +
    +
    Returns true if this UnitFormat depends on a Locale to perform its tasks.
    +
    +
    +

    J

    +
    +
    javax.measure - package javax.measure
    +
    +
    Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
    +
    +
    javax.measure.format - package javax.measure.format
    +
    +
    [OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
    +
    +
    javax.measure.quantity - package javax.measure.quantity
    +
    +
    [OPTIONAL] Provides quantitative properties or attributes of thing such as + mass, time, distance, heat, and angular separation.
    +
    +
    javax.measure.spi - package javax.measure.spi
    +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +

    K

    +
    +
    KIBI - Enum constant in enum BinaryPrefix
    +
    +
    Prefix for 1024.
    +
    +
    KIBI(Unit<Q>) - Static method in enum BinaryPrefix
    +
    +
    Returns the specified unit multiplied by the factor 1024 (binary prefix).
    +
    +
    KILO - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 103.
    +
    +
    KILO(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 103
    +
    +
    +

    L

    +
    +
    label(Unit<?>, String) - Method in interface UnitFormat
    +
    +
    Attaches a system-wide label to the specified Unit.
    +
    +
    Length - Interface in javax.measure.quantity
    +
    +
    Extent of something along its greatest dimension or the extent of space between two objects or places.
    +
    +
    LuminousFlux - Interface in javax.measure.quantity
    +
    +
    Luminous flux.
    +
    +
    LuminousIntensity - Interface in javax.measure.quantity
    +
    +
    Luminous flux density per solid angle as measured in a given direction relative to the emitting source.
    +
    +
    +

    M

    +
    +
    MagneticFlux - Interface in javax.measure.quantity
    +
    +
    Magnetic flux.
    +
    +
    MagneticFluxDensity - Interface in javax.measure.quantity
    +
    +
    Magnetic flux density.
    +
    +
    Mass - Interface in javax.measure.quantity
    +
    +
    Measure of the quantity of matter that a body or an object contains.
    +
    +
    MeasurementError - Error in javax.measure
    +
    +
    This error is used to indicate serious problems with creating, retrieving and manipulating units of measurement objects.
    +
    +
    MeasurementError() - Constructor for error MeasurementError
    +
    +
    Constructs a MeasurementError with no detail message.
    +
    +
    MeasurementError(String) - Constructor for error MeasurementError
    +
    +
    Constructs a MeasurementError with the specified detail message.
    +
    +
    MeasurementError(String, Throwable) - Constructor for error MeasurementError
    +
    +
    Constructs a MeasurementError with the specified detail message and cause.
    +
    +
    MeasurementError(Throwable) - Constructor for error MeasurementError
    +
    +
    Constructs a MeasurementError with the given cause.
    +
    +
    MeasurementException - Exception in javax.measure
    +
    +
    Exception used to indicate a problem while dealing with units of measurement.
    +
    +
    MeasurementException() - Constructor for exception MeasurementException
    +
    +
    Constructs a MeasurementException with no given message.
    +
    +
    MeasurementException(String) - Constructor for exception MeasurementException
    +
    +
    Constructs a MeasurementException with the given message.
    +
    +
    MeasurementException(String, Throwable) - Constructor for exception MeasurementException
    +
    +
    Constructs a MeasurementException with the given message and cause.
    +
    +
    MeasurementException(Throwable) - Constructor for exception MeasurementException
    +
    +
    Constructs a MeasurementException with the given cause.
    +
    +
    MeasurementParseException - Exception in javax.measure.format
    +
    +
    Signals that an error has been reached unexpectedly while parsing.
    +
    +
    MeasurementParseException(CharSequence, int) - Constructor for exception MeasurementParseException
    +
    +
    Constructs a MeasurementParseException with the parsed text and offset.
    +
    +
    MeasurementParseException(String) - Constructor for exception MeasurementParseException
    +
    +
    Constructs a MeasurementParseException with the specified detail message.
    +
    +
    MeasurementParseException(String, CharSequence, int) - Constructor for exception MeasurementParseException
    +
    +
    Constructs a MeasurementParseException with the specified detail message, parsed text and index.
    +
    +
    MeasurementParseException(Throwable) - Constructor for exception MeasurementParseException
    +
    +
    Constructs a MeasurementParseException with the specified cause.
    +
    +
    MEBI - Enum constant in enum BinaryPrefix
    +
    +
    Prefix for 10242.
    +
    +
    MEBI(Unit<Q>) - Static method in enum BinaryPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10242 (binary prefix).
    +
    +
    MEGA - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 106.
    +
    +
    MEGA(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 106
    +
    +
    MetricPrefix - Enum in javax.measure
    +
    +
    Provides support for the 24 prefixes used in the metric system (decimal multiples and submultiples of units).
    +
    +
    MICRO - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 10-6.
    +
    +
    MICRO(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10-6
    +
    +
    MILLI - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 10-3.
    +
    +
    MILLI(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10-3
    +
    +
    multiply(double) - Method in interface Unit
    +
    +
    Returns the result of multiplying this unit by the specified factor.
    +
    +
    multiply(Number) - Method in interface Quantity
    +
    +
    Returns the product of this Quantity with the Number value + specified.
    +
    +
    multiply(Number) - Method in interface Unit
    +
    +
    Returns the result of multiplying this unit by the specified factor.
    +
    +
    multiply(Dimension) - Method in interface Dimension
    +
    +
    Returns the product of this dimension with the one specified.
    +
    +
    multiply(Quantity<?>) - Method in interface Quantity
    +
    +
    Returns the product of this Quantity with the one specified.
    +
    +
    multiply(Unit<?>) - Method in interface Unit
    +
    +
    Returns the product of this unit with the one specified.
    +
    +
    +

    N

    +
    +
    NANO - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 10-9.
    +
    +
    NANO(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10-9
    +
    +
    negate() - Method in interface Quantity
    +
    +
    Returns a Quantity whose value is (-this.getValue()).
    +
    +
    +

    O

    +
    +
    of(String) - Static method in class ServiceProvider
    +
    +
    Returns the ServiceProvider with the specified name.
    +
    +
    +

    P

    +
    +
    parse(CharSequence) - Method in interface QuantityFormat
    +
    +
    Parses the specified CharSequence to produce a Quantity.
    +
    +
    parse(CharSequence) - Method in interface UnitFormat
    +
    +
    Parses the text into an instance of Unit.
    +
    +
    parse(CharSequence, ParsePosition) - Method in interface QuantityFormat
    +
    +
    Parses a portion of the specified CharSequence from the specified position to produce a Quantity.
    +
    +
    parse(CharSequence, ParsePosition) - Method in interface UnitFormat
    +
    +
    Parses a portion of the specified CharSequence from the specified position to produce a Unit.
    +
    +
    PEBI - Enum constant in enum BinaryPrefix
    +
    +
    Prefix for 10245.
    +
    +
    PEBI(Unit<Q>) - Static method in enum BinaryPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10245 (binary prefix).
    +
    +
    PETA - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 1015.
    +
    +
    PETA(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 1015
    +
    +
    PICO - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 10-12.
    +
    +
    PICO(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10-12
    +
    +
    pow(int) - Method in interface Dimension
    +
    +
    Returns this dimension raised to an exponent.
    +
    +
    pow(int) - Method in interface Unit
    +
    +
    Returns an unit raised to the n-th (integer) power of this unit.
    +
    +
    Power - Interface in javax.measure.quantity
    +
    +
    Rate at which work is done.
    +
    +
    prefix(Prefix) - Method in interface Unit
    +
    +
    Returns a new unit equal to this unit prefixed by the specified prefix.
    +
    +
    Prefix - Interface in javax.measure
    +
    +
    A unit prefix is a specifier or mnemonic that is prepended to units of measurement to indicate multiples or fractions of the units.
    +
    +
    Pressure - Interface in javax.measure.quantity
    +
    +
    Force applied uniformly over a surface.
    +
    +
    +

    Q

    +
    +
    Quantity<Q extends Quantity<Q>> - Interface in javax.measure
    +
    +
    Represents a quantitative property of a phenomenon, body, or substance, that + can be quantified by measurement.
    +
    +
    QUANTITY_FORMAT - Enum constant in enum FormatService.FormatType
    +
    +
    Format of type QuantityFormat
    +
    +
    Quantity.Scale - Enum in javax.measure
    +
    +
    The scale of a Quantity, either ABSOLUTE or RELATIVE.
    +
    +
    QuantityFactory<Q extends Quantity<Q>> - Interface in javax.measure.spi
    +
    +
    Represents a factory that accepts Number and Unit arguments to create Quantity results.
    +
    +
    QuantityFormat - Interface in javax.measure.format
    +
    +
    Formats instances of Quantity.
    +
    +
    QUECTO - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 10-30.
    +
    +
    QUECTO(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10-30
    +
    +
    QUETTA - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 1030.
    +
    +
    QUETTA(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 1030
    +
    +
    +

    R

    +
    +
    RadiationDoseAbsorbed - Interface in javax.measure.quantity
    +
    +
    Amount of energy deposited per unit of mass.
    +
    +
    RadiationDoseEffective - Interface in javax.measure.quantity
    +
    +
    Effective (or "equivalent") dose of radiation received by a human or some other living organism.
    +
    +
    Radioactivity - Interface in javax.measure.quantity
    +
    +
    Radioactive activity.
    +
    +
    RELATIVE - Enum constant in enum Quantity.Scale
    +
    +
    Relative scale
    +
    +
    RONNA - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 1027.
    +
    +
    RONNA(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 1027
    +
    +
    RONTO - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 10-27.
    +
    +
    RONTO(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10-27
    +
    +
    root(int) - Method in interface Dimension
    +
    +
    Returns the given root of this dimension.
    +
    +
    root(int) - Method in interface Unit
    +
    +
    Returns an unit that is the n-th (integer) root of this unit.
    +
    +
    +

    S

    +
    +
    ServiceProvider - Class in javax.measure.spi
    +
    +
    Service Provider for Units of Measurement services.
    +
    +
    ServiceProvider() - Constructor for class ServiceProvider
    +
    +
    Creates a new service provider.
    +
    +
    setCurrent(ServiceProvider) - Static method in class ServiceProvider
    +
    +
    Replaces the current ServiceProvider.
    +
    +
    shift(double) - Method in interface Unit
    +
    +
    Returns the result of setting the origin of the scale of measurement to the given value.
    +
    +
    shift(Number) - Method in interface Unit
    +
    +
    Returns the result of setting the origin of the scale of measurement to the given value.
    +
    +
    SolidAngle - Interface in javax.measure.quantity
    +
    +
    Angle formed by three or more planes intersecting at a common point.
    +
    +
    Speed - Interface in javax.measure.quantity
    +
    +
    Distance traveled divided by the time of travel.
    +
    +
    subtract(Quantity<Q>) - Method in interface Quantity
    +
    +
    Returns the difference between this Quantity and the one specified.
    +
    +
    SystemOfUnits - Interface in javax.measure.spi
    +
    +
    A system of units grouped together for historical or cultural reasons.
    + Common system of units are "SI" (System International), "Imperial" (British), "US" (US Customary).
    +
    +
    SystemOfUnitsService - Interface in javax.measure.spi
    +
    +
    This interface represents the service to obtain a system + of units.
    +
    +
    +

    T

    +
    +
    TEBI - Enum constant in enum BinaryPrefix
    +
    +
    Prefix for 10244.
    +
    +
    TEBI(Unit<Q>) - Static method in enum BinaryPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10244 (binary prefix).
    +
    +
    Temperature - Interface in javax.measure.quantity
    +
    +
    Degree of hotness or coldness of a body or an environment.
    +
    +
    TERA - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 1012.
    +
    +
    TERA(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 1012
    +
    +
    Time - Interface in javax.measure.quantity
    +
    +
    Period of existence or persistence.
    +
    +
    to(Unit<Q>) - Method in interface Quantity
    +
    +
    Returns this Quantity converted into another (compatible) + Unit.
    +
    +
    toString() - Method in interface Unit
    +
    +
    Returns a string representation of this unit.
    +
    +
    toSystemUnit() - Method in interface Quantity
    +
    +
    Convenient method equivalent to to(getUnit().toSystemUnit()).
    +
    +
    transform(UnitConverter) - Method in interface Unit
    +
    +
    Returns the unit derived from this unit using the specified converter.
    +
    +
    +

    U

    +
    +
    UnconvertibleException - Exception in javax.measure
    +
    +
    Signals that a problem of some sort has occurred due to the impossibility of constructing a converter between two units.
    +
    +
    UnconvertibleException(String) - Constructor for exception UnconvertibleException
    +
    +
    Constructs a UnconvertibleException with the given message.
    +
    +
    UnconvertibleException(String, Throwable) - Constructor for exception UnconvertibleException
    +
    +
    Constructs a UnconvertibleException with the given message and cause.
    +
    +
    UnconvertibleException(Throwable) - Constructor for exception UnconvertibleException
    +
    +
    Constructs a UnconvertibleException with the given cause.
    +
    +
    Unit<Q extends Quantity<Q>> - Interface in javax.measure
    +
    +
    Represents a determinate quantity (as of length, time, heat, or value) adopted as a standard of measurement.
    +
    +
    UNIT_FORMAT - Enum constant in enum FormatService.FormatType
    +
    +
    Format of type UnitFormat
    +
    +
    UnitConverter - Interface in javax.measure
    +
    +
    A converter of numeric values between different units.
    +
    +
    UnitFormat - Interface in javax.measure.format
    +
    +
    Formats instances of Unit to a String or Appendable and parses a CharSequence to a Unit.
    +
    +
    +

    V

    +
    +
    valueOf(String) - Static method in enum BinaryPrefix
    +
    +
    Returns the enum constant of this type with the specified name.
    +
    +
    valueOf(String) - Static method in enum MetricPrefix
    +
    +
    Returns the enum constant of this type with the specified name.
    +
    +
    valueOf(String) - Static method in enum Quantity.Scale
    +
    +
    Returns the enum constant of this type with the specified name.
    +
    +
    valueOf(String) - Static method in enum FormatService.FormatType
    +
    +
    Returns the enum constant of this type with the specified name.
    +
    +
    values() - Static method in enum BinaryPrefix
    +
    +
    Returns an array containing the constants of this enum type, in +the order they are declared.
    +
    +
    values() - Static method in enum MetricPrefix
    +
    +
    Returns an array containing the constants of this enum type, in +the order they are declared.
    +
    +
    values() - Static method in enum Quantity.Scale
    +
    +
    Returns an array containing the constants of this enum type, in +the order they are declared.
    +
    +
    values() - Static method in enum FormatService.FormatType
    +
    +
    Returns an array containing the constants of this enum type, in +the order they are declared.
    +
    +
    Volume - Interface in javax.measure.quantity
    +
    +
    Amount of space occupied by a three-dimensional object or region of space.
    +
    +
    +

    Y

    +
    +
    YOBI - Enum constant in enum BinaryPrefix
    +
    +
    Prefix for 10248.
    +
    +
    YOBI(Unit<Q>) - Static method in enum BinaryPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10248 (binary prefix).
    +
    +
    YOCTO - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 10-24.
    +
    +
    YOCTO(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10-24
    +
    +
    YOTTA - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 1024.
    +
    +
    YOTTA(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 1024
    +
    +
    +

    Z

    +
    +
    ZEBI - Enum constant in enum BinaryPrefix
    +
    +
    Prefix for 10247.
    +
    +
    ZEBI(Unit<Q>) - Static method in enum BinaryPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10247 (binary prefix).
    +
    +
    ZEPTO - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 10-21.
    +
    +
    ZEPTO(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 10-21
    +
    +
    ZETTA - Enum constant in enum MetricPrefix
    +
    +
    Prefix for 1021.
    +
    +
    ZETTA(Unit<Q>) - Static method in enum MetricPrefix
    +
    +
    Returns the specified unit multiplied by the factor 1021
    +
    +
    +A B C D E F G H I J K L M N O P Q R S T U V Y Z 
    All Classes and Interfaces|All Packages|Serialized Form
    + +
    +
    + + diff --git a/docs/site/apidocs/index.html b/docs/site/apidocs/index.html new file mode 100644 index 00000000..31da85c5 --- /dev/null +++ b/docs/site/apidocs/index.html @@ -0,0 +1,88 @@ + + + + +Overview (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Units of Measurement API 2.2.1-SNAPSHOT API

    +
    +
    +
    Packages
    +
    +
    Package
    +
    Description
    + +
    +
    Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
    +
    + +
    +
    [OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
    +
    + +
    +
    [OPTIONAL] Provides quantitative properties or attributes of thing such as + mass, time, distance, heat, and angular separation.
    +
    + +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/BinaryPrefix.html b/docs/site/apidocs/javax/measure/BinaryPrefix.html new file mode 100644 index 00000000..5ba883a5 --- /dev/null +++ b/docs/site/apidocs/javax/measure/BinaryPrefix.html @@ -0,0 +1,580 @@ + + + + +BinaryPrefix (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    +
    Package javax.measure
    +

    Enum BinaryPrefix

    +
    +
    Object +
    Enum<BinaryPrefix> +
    BinaryPrefix
    +
    +
    +
    +
    +
    All Implemented Interfaces:
    +
    Serializable, Comparable<BinaryPrefix>, Constable, Prefix
    +
    +
    +
    public enum BinaryPrefix +extends Enum<BinaryPrefix> +implements Prefix
    +
    Provides support for common binary prefixes to be used by units. For example: +
    + import static systems.uom.unicode.CLDR.*;  // Static import (from Unicode System).
    + import static javax.measure.BinaryPrefix.*; // Static import.
    + import javax.measure.*;
    + import systems.uom.quantity.Information; // (from Systems Quantities)
    + ...
    + Unit<Information> MEBIT  = MEBI(BIT);
    + Unit<Information> GIBYTE = GIBI(BYTE); 
    + 
    + You could also apply Unit.prefix: +
    + ...
    + Unit<Information> MEBIT  = BIT.prefix(MEBI);
    + Unit<Information> GIBYTE = BYTE.prefix(GIBI);
    + 
    + +

    + Do not use ordinal() to obtain the numeric representation of BinaryPrefix. Use getValue() and getExponent() instead. +

    + +
    +
    Implementation Requirements
    This is an immutable and thread-safe enum.
    +
    +
    +
    Since:
    +
    2.0
    +
    Version:
    +
    2.3, October 31, 2023
    +
    Author:
    +
    Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    +
      + +
    • +
      +

      Nested Class Summary

      +
      +

      Nested classes/interfaces inherited from class Enum

      +Enum.EnumDesc<E extends Enum<E>>
      +
      +
    • + +
    • +
      +

      Enum Constant Summary

      +
      Enum Constants
      +
      +
      Enum Constant
      +
      Description
      + +
      +
      Prefix for 10246.
      +
      + +
      +
      Prefix for 10243.
      +
      + +
      +
      Prefix for 1024.
      +
      + +
      +
      Prefix for 10242.
      +
      + +
      +
      Prefix for 10245.
      +
      + +
      +
      Prefix for 10244.
      +
      + +
      +
      Prefix for 10248.
      +
      + +
      +
      Prefix for 10247.
      +
      +
      +
      +
    • + +
    • +
      +

      Method Summary

      +
      +
      +
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      EXBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10246 (binary prefix).
      +
      +
      int
      + +
      +
      Exponent part of the associated factor in base^exponent representation.
      +
      + + +
      +
      Returns the name of this prefix.
      +
      + + +
      +
      Returns the symbol of this prefix.
      +
      + + +
      +
      Base part of the associated factor in base^exponent representation.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      GIBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10243 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      KIBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1024 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MEBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10242 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      PEBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10245 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      TEBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10244 (binary prefix).
      +
      + + +
      +
      Returns the enum constant of this type with the specified name.
      +
      +
      static BinaryPrefix[]
      + +
      +
      Returns an array containing the constants of this enum type, in +the order they are declared.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      YOBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10248 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      ZEBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10247 (binary prefix).
      +
      +
      +
      +
      + +
      +

      Methods inherited from class Object

      +getClass, notify, notifyAll, wait, wait, wait
      +
      +
    • +
    +
    +
    +
      + +
    • +
      +

      Enum Constant Details

      + +
      +
    • + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        values

        +
        public static BinaryPrefix[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared.
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
        +
      • +
      • +
        +

        valueOf

        +
        public static BinaryPrefix valueOf(String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        +
        Parameters:
        +
        name - the name of the enum constant to be returned.
        +
        Returns:
        +
        the enum constant with the specified name
        +
        Throws:
        +
        IllegalArgumentException - if this enum type has no constant with the specified name
        +
        NullPointerException - if the argument is null
        +
        +
        +
      • +
      • +
        +

        KIBI

        +
        public static <Q extends Quantity<Q>> Unit<Q> KIBI(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 1024 (binary prefix).
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1024).
        +
        +
        +
      • +
      • +
        +

        MEBI

        +
        public static <Q extends Quantity<Q>> Unit<Q> MEBI(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10242 (binary prefix).
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(10242).
        +
        +
        +
      • +
      • +
        +

        GIBI

        +
        public static <Q extends Quantity<Q>> Unit<Q> GIBI(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10243 (binary prefix).
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(10243).
        +
        +
        +
      • +
      • +
        +

        TEBI

        +
        public static <Q extends Quantity<Q>> Unit<Q> TEBI(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10244 (binary prefix).
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(10244).
        +
        +
        +
      • +
      • +
        +

        PEBI

        +
        public static <Q extends Quantity<Q>> Unit<Q> PEBI(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10245 (binary prefix).
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(10245).
        +
        +
        +
      • +
      • +
        +

        EXBI

        +
        public static <Q extends Quantity<Q>> Unit<Q> EXBI(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10246 (binary prefix).
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(10246).
        +
        +
        +
      • +
      • +
        +

        ZEBI

        +
        public static <Q extends Quantity<Q>> Unit<Q> ZEBI(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10247 (binary prefix).
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(10247).
        +
        +
        +
      • +
      • +
        +

        YOBI

        +
        public static <Q extends Quantity<Q>> Unit<Q> YOBI(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10248 (binary prefix).
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(10248).
        +
        +
        +
      • +
      • +
        +

        getSymbol

        +
        public String getSymbol()
        +
        Returns the symbol of this prefix.
        +
        +
        Specified by:
        +
        getSymbol in interface Prefix
        +
        Returns:
        +
        this prefix symbol, not null.
        +
        +
        +
      • +
      • +
        +

        getValue

        +
        public Integer getValue()
        +
        Base part of the associated factor in base^exponent representation. For binary prefix, this is always 1024.
        +
        +
        Specified by:
        +
        getValue in interface Prefix
        +
        Returns:
        +
        The prefix value.
        +
        +
        +
      • +
      • +
        +

        getExponent

        +
        public int getExponent()
        +
        Exponent part of the associated factor in base^exponent representation.
        +
        +
        Specified by:
        +
        getExponent in interface Prefix
        +
        Returns:
        +
        the exponent part of this prefix.
        +
        +
        +
      • +
      • +
        +

        getName

        +
        public String getName()
        +
        Returns the name of this prefix.
        +
        +
        Specified by:
        +
        getName in interface Prefix
        +
        Returns:
        +
        this prefix name, not null.
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/Dimension.html b/docs/site/apidocs/javax/measure/Dimension.html new file mode 100644 index 00000000..539e6c6c --- /dev/null +++ b/docs/site/apidocs/javax/measure/Dimension.html @@ -0,0 +1,243 @@ + + + + +Dimension (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    +
    Package javax.measure
    +

    Interface Dimension

    +
    +
    +
    +
    public interface Dimension
    +
    Represents the dimension of a unit. + +

    + Concrete dimensions are obtained through the Unit.getDimension() method. +

    + +

    + Two units u1 and u2 are compatible if and only if + u1.getDimension().equals(u2.getDimension()). +

    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.0, August 8, 2016
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    +
      + +
    • +
      +

      Method Summary

      +
      +
      +
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      + +
      divide(Dimension divisor)
      +
      +
      Returns the quotient of this dimension with the one specified.
      +
      +
      Map<? extends Dimension,Integer>
      + +
      +
      Returns the (fundamental) base dimensions and their exponent whose product is this dimension, or null if this dimension is a base + dimension.
      +
      + +
      multiply(Dimension multiplicand)
      +
      +
      Returns the product of this dimension with the one specified.
      +
      + +
      pow(int n)
      +
      +
      Returns this dimension raised to an exponent.
      +
      + +
      root(int n)
      +
      +
      Returns the given root of this dimension.
      +
      +
      +
      +
      +
      +
    • +
    +
    +
    +
      + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        multiply

        +
        Dimension multiply(Dimension multiplicand)
        +
        Returns the product of this dimension with the one specified.
        +
        +
        Parameters:
        +
        multiplicand - the dimension multiplicand.
        +
        Returns:
        +
        this * multiplicand
        +
        +
        +
      • +
      • +
        +

        divide

        + +
        Returns the quotient of this dimension with the one specified.
        +
        +
        Parameters:
        +
        divisor - the dimension divisor.
        +
        Returns:
        +
        this / divisor
        +
        +
        +
      • +
      • +
        +

        pow

        +
        Dimension pow(int n)
        +
        Returns this dimension raised to an exponent. (thisn)
        +
        +
        Parameters:
        +
        n - power to raise this Dimension to.
        +
        Returns:
        +
        thisn
        +
        +
        +
      • +
      • +
        +

        root

        +
        Dimension root(int n)
        +
        Returns the given root of this dimension.
        +
        +
        Parameters:
        +
        n - the root's order.
        +
        Returns:
        +
        the result of taking the given root of this dimension.
        +
        Throws:
        +
        ArithmeticException - if n == 0.
        +
        +
        +
      • +
      • +
        +

        getBaseDimensions

        + +
        Returns the (fundamental) base dimensions and their exponent whose product is this dimension, or null if this dimension is a base + dimension.
        +
        +
        Returns:
        +
        the mapping between the fundamental dimensions and their exponent.
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/IncommensurableException.html b/docs/site/apidocs/javax/measure/IncommensurableException.html new file mode 100644 index 00000000..853575e9 --- /dev/null +++ b/docs/site/apidocs/javax/measure/IncommensurableException.html @@ -0,0 +1,205 @@ + + + + +IncommensurableException (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    +
    Package javax.measure
    +

    Class IncommensurableException

    +
    +
    Object +
    Throwable +
    Exception +
    IncommensurableException
    +
    +
    +
    +
    +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    public class IncommensurableException +extends Exception
    +
    Signals that a problem of some sort has occurred due to incommensurable of some quantities/units. Only commensurable quantity (quantities with the + same dimensions) may be compared, equated, added, or subtracted. Also, one unit can be converted to another unit only if both units are + commensurable. +

    + This is a checked exception, so it deliberately doesn't inherit from MeasurementException like most other exceptions. +

    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.0, August 8, 2016
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        IncommensurableException

        + +
        Constructs a IncommensurableException with the given message.
        +
        +
        Parameters:
        +
        message - the detail message, or null if none.
        +
        +
        +
      • +
      • +
        +

        IncommensurableException

        + +
        Constructs a IncommensurableException with the given cause.
        +
        +
        Parameters:
        +
        cause - the cause of this exception, or null if none.
        +
        +
        +
      • +
      • +
        +

        IncommensurableException

        +
        public IncommensurableException(String message, + Throwable cause)
        +
        Constructs a IncommensurableException with the given message and cause.
        +
        +
        Parameters:
        +
        message - the detail message, or null if none.
        +
        cause - the cause of this exception, or null if none.
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/MeasurementError.html b/docs/site/apidocs/javax/measure/MeasurementError.html new file mode 100644 index 00000000..17f3c32c --- /dev/null +++ b/docs/site/apidocs/javax/measure/MeasurementError.html @@ -0,0 +1,215 @@ + + + + +MeasurementError (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    +
    Package javax.measure
    +

    Class MeasurementError

    +
    +
    Object +
    Throwable +
    Error +
    MeasurementError
    +
    +
    +
    +
    +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    public class MeasurementError +extends Error
    +
    This error is used to indicate serious problems with creating, retrieving and manipulating units of measurement objects. + +
    +
    Implementation Requirements:
    +
    This class is intended for use in a single thread. Exception thrown when errors occur during Units of Measurement operations.
    +
    +
    +
    Since:
    +
    2.1
    +
    Version:
    +
    2.2, Feb 3, 2021
    +
    Author:
    +
    Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        MeasurementError

        + +
        Constructs a MeasurementError with no detail message.
        +
        +
      • +
      • +
        +

        MeasurementError

        +
        public MeasurementError(String message)
        +
        Constructs a MeasurementError with the specified detail message.
        +
        +
        Parameters:
        +
        message - the detail message.
        +
        +
        +
      • +
      • +
        +

        MeasurementError

        +
        public MeasurementError(Throwable cause)
        +
        Constructs a MeasurementError with the given cause.
        +
        +
        Parameters:
        +
        cause - the cause of this exception, or null if none.
        +
        +
        +
      • +
      • +
        +

        MeasurementError

        +
        public MeasurementError(String message, + Throwable cause)
        +
        Constructs a MeasurementError with the specified detail message and cause.
        +
        +
        Parameters:
        +
        message - the detail message.
        +
        cause - the cause, may be null
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/MeasurementException.html b/docs/site/apidocs/javax/measure/MeasurementException.html new file mode 100644 index 00000000..1e0acc43 --- /dev/null +++ b/docs/site/apidocs/javax/measure/MeasurementException.html @@ -0,0 +1,229 @@ + + + + +MeasurementException (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    +
    Package javax.measure
    +

    Class MeasurementException

    +
    +
    Object +
    Throwable +
    Exception +
    RuntimeException +
    MeasurementException
    +
    +
    +
    +
    +
    +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    +
    Direct Known Subclasses:
    +
    MeasurementParseException, UnconvertibleException
    +
    +
    + +
    Exception used to indicate a problem while dealing with units of measurement. +

    + This exception is used to indicate problems with creating, retrieving and manipulating units of measurement objects. +

    + +
    +
    Implementation Requirements:
    +
    This class is intended for use in a single thread. Exception thrown when errors occur during Units of Measurement operations.
    +
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    2.0, Jul 4, 2020
    +
    Author:
    +
    Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        MeasurementException

        +
        public MeasurementException(String message)
        +
        Constructs a MeasurementException with the given message.
        +
        +
        Parameters:
        +
        message - the detail message, or null if none.
        +
        +
        +
      • +
      • +
        +

        MeasurementException

        + +
        Constructs a MeasurementException with the given cause.
        +
        +
        Parameters:
        +
        cause - the cause of this exception, or null if none.
        +
        +
        +
      • +
      • +
        +

        MeasurementException

        +
        public MeasurementException(String message, + Throwable cause)
        +
        Constructs a MeasurementException with the given message and cause.
        +
        +
        Parameters:
        +
        message - the detail message, or null if none.
        +
        cause - the cause of this exception, or null if none.
        +
        +
        +
      • +
      • +
        +

        MeasurementException

        + +
        Constructs a MeasurementException with no given message.
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/MetricPrefix.html b/docs/site/apidocs/javax/measure/MetricPrefix.html new file mode 100644 index 00000000..19558877 --- /dev/null +++ b/docs/site/apidocs/javax/measure/MetricPrefix.html @@ -0,0 +1,1339 @@ + + + + +MetricPrefix (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    +
    Package javax.measure
    +

    Enum MetricPrefix

    +
    +
    Object +
    Enum<MetricPrefix> +
    MetricPrefix
    +
    +
    +
    +
    +
    All Implemented Interfaces:
    +
    Serializable, Comparable<MetricPrefix>, Constable, Prefix
    +
    +
    +
    public enum MetricPrefix +extends Enum<MetricPrefix> +implements Prefix
    +
    Provides support for the 24 prefixes used in the metric system (decimal multiples and submultiples of units). For example: + +
    + import static tech.units.indriya.unit.Units.*;  // Static import (from the RI).
    + import static javax.measure.MetricPrefix.*; // Static import.
    + import javax.measure.*;
    + import javax.measure.quantity.*;
    + ...
    + Unit<Pressure> HECTOPASCAL = HECTO(PASCAL);
    + Unit<Length> KILOMETRE = KILO(METRE); 
    + 
    + You could also apply Unit.prefix: +
    + ...
    + Unit<Pressure> HECTOPASCAL = PASCAL.prefix(HECTO);
    + Unit<Length> KILOMETRE = METRE.prefix(KILO);
    + 
    + +

    + Do not use ordinal() to obtain the numeric representation of MetricPrefix. Use getValue() and getExponent() instead. +

    + +
    +
    Implementation Requirements
    This is an immutable and thread-safe enum.
    +
    +
    +
    Since:
    +
    2.0
    +
    Version:
    +
    2.4, October 31, 2023
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    +
      + +
    • +
      +

      Nested Class Summary

      +
      +

      Nested classes/interfaces inherited from class Enum

      +Enum.EnumDesc<E extends Enum<E>>
      +
      +
    • + +
    • +
      +

      Enum Constant Summary

      +
      Enum Constants
      +
      +
      Enum Constant
      +
      Description
      + +
      +
      Prefix for 10-18.
      +
      + +
      +
      Prefix for 10-2.
      +
      + +
      +
      Prefix for 101.
      +
      + +
      +
      Prefix for 10-1.
      +
      + +
      +
      Prefix for 1018.
      +
      + +
      +
      Prefix for 10-15.
      +
      + +
      +
      Prefix for 109.
      +
      + +
      +
      Prefix for 102.
      +
      + +
      +
      Prefix for 103.
      +
      + +
      +
      Prefix for 106.
      +
      + +
      +
      Prefix for 10-6.
      +
      + +
      +
      Prefix for 10-3.
      +
      + +
      +
      Prefix for 10-9.
      +
      + +
      +
      Prefix for 1015.
      +
      + +
      +
      Prefix for 10-12.
      +
      + +
      +
      Prefix for 10-30.
      +
      + +
      +
      Prefix for 1030.
      +
      + +
      +
      Prefix for 1027.
      +
      + +
      +
      Prefix for 10-27.
      +
      + +
      +
      Prefix for 1012.
      +
      + +
      +
      Prefix for 10-24.
      +
      + +
      +
      Prefix for 1024.
      +
      + +
      +
      Prefix for 10-21.
      +
      + +
      +
      Prefix for 1021.
      +
      +
      +
      +
    • + +
    • +
      +

      Method Summary

      +
      +
      +
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      ATTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-18
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      CENTI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-2
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      DECA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 101
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      DECI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-1
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      DEKA(Unit<Q> unit)
      +
      +
      US alias for DECA.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      EXA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1018
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      FEMTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-15
      +
      +
      int
      + +
      +
      Exponent part of the associated factor in base^exponent representation.
      +
      + + +
      +
      Returns the name of this prefix.
      +
      + + +
      +
      Returns the symbol of this prefix.
      +
      + + +
      +
      Base part of the associated factor in base^exponent representation.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      GIGA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 109
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      HECTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 102
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      KILO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 103
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MEGA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 106
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MICRO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-6
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MILLI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-3
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      NANO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-9
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      PETA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1015
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      PICO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-12
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      QUECTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-30
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      QUETTA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1030
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      RONNA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1027
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      RONTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-27
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      TERA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1012
      +
      + + +
      +
      Returns the enum constant of this type with the specified name.
      +
      +
      static MetricPrefix[]
      + +
      +
      Returns an array containing the constants of this enum type, in +the order they are declared.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      YOCTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-24
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      YOTTA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1024
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      ZEPTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-21
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      ZETTA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1021
      +
      +
      +
      +
      + +
      +

      Methods inherited from class Object

      +getClass, notify, notifyAll, wait, wait, wait
      +
      +
    • +
    +
    +
    +
      + +
    • +
      +

      Enum Constant Details

      + +
      +
    • + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        values

        +
        public static MetricPrefix[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared.
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
        +
      • +
      • +
        +

        valueOf

        +
        public static MetricPrefix valueOf(String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        +
        Parameters:
        +
        name - the name of the enum constant to be returned.
        +
        Returns:
        +
        the enum constant with the specified name
        +
        Throws:
        +
        IllegalArgumentException - if this enum type has no constant with the specified name
        +
        NullPointerException - if the argument is null
        +
        +
        +
      • +
      • +
        +

        QUETTA

        +
        public static <Q extends Quantity<Q>> Unit<Q> QUETTA(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 1030
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e30).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        RONNA

        +
        public static <Q extends Quantity<Q>> Unit<Q> RONNA(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 1027
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e27).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        YOTTA

        +
        public static <Q extends Quantity<Q>> Unit<Q> YOTTA(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 1024
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e24).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        ZETTA

        +
        public static <Q extends Quantity<Q>> Unit<Q> ZETTA(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 1021
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e21).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        EXA

        +
        public static <Q extends Quantity<Q>> Unit<Q> EXA(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 1018
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e18).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        PETA

        +
        public static <Q extends Quantity<Q>> Unit<Q> PETA(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 1015
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e15).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        TERA

        +
        public static <Q extends Quantity<Q>> Unit<Q> TERA(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 1012
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e12).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        GIGA

        +
        public static <Q extends Quantity<Q>> Unit<Q> GIGA(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 109
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e9).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        MEGA

        +
        public static <Q extends Quantity<Q>> Unit<Q> MEGA(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 106
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e6).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        KILO

        +
        public static <Q extends Quantity<Q>> Unit<Q> KILO(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 103
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e3).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        HECTO

        +
        public static <Q extends Quantity<Q>> Unit<Q> HECTO(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 102
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e2).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        DECA

        +
        public static <Q extends Quantity<Q>> Unit<Q> DECA(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 101
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e1).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        DEKA

        +
        public static <Q extends Quantity<Q>> Unit<Q> DEKA(Unit<Q> unit)
        +
        US alias for DECA.
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e1).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        DECI

        +
        public static <Q extends Quantity<Q>> Unit<Q> DECI(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10-1
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e-1).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        CENTI

        +
        public static <Q extends Quantity<Q>> Unit<Q> CENTI(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10-2
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e-2).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        MILLI

        +
        public static <Q extends Quantity<Q>> Unit<Q> MILLI(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10-3
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e-3).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        MICRO

        +
        public static <Q extends Quantity<Q>> Unit<Q> MICRO(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10-6
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e-6).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        NANO

        +
        public static <Q extends Quantity<Q>> Unit<Q> NANO(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10-9
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e-9).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        PICO

        +
        public static <Q extends Quantity<Q>> Unit<Q> PICO(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10-12
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e-12).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        FEMTO

        +
        public static <Q extends Quantity<Q>> Unit<Q> FEMTO(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10-15
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e-15).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        ATTO

        +
        public static <Q extends Quantity<Q>> Unit<Q> ATTO(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10-18
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e-18).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        ZEPTO

        +
        public static <Q extends Quantity<Q>> Unit<Q> ZEPTO(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10-21
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e-21). + #see ZEPTO
        +
        +
        +
      • +
      • +
        +

        YOCTO

        +
        public static <Q extends Quantity<Q>> Unit<Q> YOCTO(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10-24
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e-24).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        RONTO

        +
        public static <Q extends Quantity<Q>> Unit<Q> RONTO(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10-27
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e-27).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        QUECTO

        +
        public static <Q extends Quantity<Q>> Unit<Q> QUECTO(Unit<Q> unit)
        +
        Returns the specified unit multiplied by the factor 10-30
        +
        +
        Type Parameters:
        +
        Q - type of the quantity measured by the unit.
        +
        Parameters:
        +
        unit - any unit.
        +
        Returns:
        +
        unit.prefix(1e-30).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        getSymbol

        +
        public String getSymbol()
        +
        Returns the symbol of this prefix.
        +
        +
        Specified by:
        +
        getSymbol in interface Prefix
        +
        Returns:
        +
        this prefix symbol, not null.
        +
        +
        +
      • +
      • +
        +

        getValue

        +
        public Integer getValue()
        +
        Base part of the associated factor in base^exponent representation. For metric prefix, this is always 10.
        +
        +
        Specified by:
        +
        getValue in interface Prefix
        +
        Returns:
        +
        The prefix value.
        +
        +
        +
      • +
      • +
        +

        getExponent

        +
        public int getExponent()
        +
        Exponent part of the associated factor in base^exponent representation.
        +
        +
        Specified by:
        +
        getExponent in interface Prefix
        +
        Returns:
        +
        the exponent part of this prefix.
        +
        +
        +
      • +
      • +
        +

        getName

        +
        public String getName()
        +
        Returns the name of this prefix.
        +
        +
        Specified by:
        +
        getName in interface Prefix
        +
        Returns:
        +
        this prefix name, not null.
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/Prefix.html b/docs/site/apidocs/javax/measure/Prefix.html new file mode 100644 index 00000000..19721f9b --- /dev/null +++ b/docs/site/apidocs/javax/measure/Prefix.html @@ -0,0 +1,210 @@ + + + + +Prefix (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    +
    Package javax.measure
    +

    Interface Prefix

    +
    +
    +
    +
    All Known Implementing Classes:
    +
    BinaryPrefix, MetricPrefix
    +
    +
    +
    public interface Prefix
    +
    A unit prefix is a specifier or mnemonic that is prepended to units of measurement to indicate multiples or fractions of the units.
    +
    +
    Since:
    +
    2.0
    +
    Version:
    +
    1.4, April 3, 2023
    +
    Author:
    +
    Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    +
      + +
    • +
      +

      Method Summary

      +
      +
      +
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      +
      int
      + +
      +
      Exponent part of the associated factor in base^exponent representation.
      +
      + + +
      +
      Returns the name of this prefix.
      +
      + + +
      +
      Returns the symbol of this prefix.
      +
      + + +
      +
      Returns the value of this prefix.
      +
      +
      +
      +
      +
      +
    • +
    +
    +
    +
      + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        getName

        + +
        Returns the name of this prefix.
        +
        +
        Returns:
        +
        this prefix name, not null.
        +
        +
        +
      • +
      • +
        +

        getSymbol

        + +
        Returns the symbol of this prefix.
        +
        +
        Returns:
        +
        this prefix symbol, not null.
        +
        +
        +
      • +
      • +
        +

        getValue

        + +
        Returns the value of this prefix. If the exponent is different from 1, this value is the base part of the associated + factor in base^exponent representation.
        +
        +
        Returns:
        +
        The prefix value.
        +
        +
        +
      • +
      • +
        +

        getExponent

        + +
        Exponent part of the associated factor in base^exponent representation. For different factors, e.g. rational numbers like 1/4 + the exponent is always 1.
        +
        +
        Returns:
        +
        the exponent part of this prefix.
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/Quantity.Scale.html b/docs/site/apidocs/javax/measure/Quantity.Scale.html new file mode 100644 index 00000000..90b8cfcb --- /dev/null +++ b/docs/site/apidocs/javax/measure/Quantity.Scale.html @@ -0,0 +1,254 @@ + + + + +Quantity.Scale (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    +
    Package javax.measure
    +

    Enum Quantity.Scale

    +
    + +
    +
    +
    All Implemented Interfaces:
    +
    Serializable, Comparable<Quantity.Scale>, Constable
    +
    +
    +
    Enclosing interface:
    +
    Quantity<Q extends Quantity<Q>>
    +
    +
    +
    public static enum Quantity.Scale +extends Enum<Quantity.Scale>
    +
    The scale of a Quantity, either ABSOLUTE or RELATIVE.
    +
    +
    Since:
    +
    2.0
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Enum Constant Details

      + +
      +
    • + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        values

        +
        public static Quantity.Scale[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared.
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
        +
      • +
      • +
        +

        valueOf

        +
        public static Quantity.Scale valueOf(String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        +
        Parameters:
        +
        name - the name of the enum constant to be returned.
        +
        Returns:
        +
        the enum constant with the specified name
        +
        Throws:
        +
        IllegalArgumentException - if this enum type has no constant with the specified name
        +
        NullPointerException - if the argument is null
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/Quantity.html b/docs/site/apidocs/javax/measure/Quantity.html new file mode 100644 index 00000000..26aeecab --- /dev/null +++ b/docs/site/apidocs/javax/measure/Quantity.html @@ -0,0 +1,582 @@ + + + + +Quantity (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    +
    Package javax.measure
    +

    Interface Quantity<Q extends Quantity<Q>>

    +
    +
    +
    +
    Type Parameters:
    +
    Q - The type of the quantity.
    +
    +
    +
    All Known Subinterfaces:
    +
    Acceleration, AmountOfSubstance, Angle, Area, CatalyticActivity, Dimensionless, ElectricCapacitance, ElectricCharge, ElectricConductance, ElectricCurrent, ElectricInductance, ElectricPotential, ElectricResistance, Energy, Force, Frequency, Illuminance, Length, LuminousFlux, LuminousIntensity, MagneticFlux, MagneticFluxDensity, Mass, Power, Pressure, RadiationDoseAbsorbed, RadiationDoseEffective, Radioactivity, SolidAngle, Speed, Temperature, Time, Volume
    +
    +
    +
    public interface Quantity<Q extends Quantity<Q>>
    +
    Represents a quantitative property of a phenomenon, body, or substance, that + can be quantified by measurement. Mass, + time, distance, heat, and angular separation are among the familiar examples + of quantitative properties. +

    + Unit<Mass> pound = ... Quantity<Length> size = ... Sensor<Temperature>
    + thermometer = ... Vector3D<Speed> aircraftSpeed = ...
    +

    + +
    +
    Arithmetic operations
    +
    + This interface defines some arithmetic operations between Quantity + instances. All implementations shall produce equivalent results for + the same operation applied on equivalent quantities. Two quantities are + equivalent if, after conversion to the same unit of measurement, they have + the same numerical value (ignoring rounding errors). For example 2000 metres + is equivalent to 2 km, but 2°C is not equivalent to 2 K; it is equivalent to + 275.15 K instead. Above requirement applied to addition means that 2°C + 2 K + shall be equivalent to 275.15 K + 2 K. + +

    All operations shall preserve the + basic laws + of algebra, in particular commutativity of addition and + multiplication (A + B = B + A) + and associativity of addition and multiplication (A + + B) + C = A + (B + C). + In order to preserve those algebra laws, this specification requires all + arithmetic operations to execute as is all operands were converted + to system unit before the operation is + carried out, and the result converted back to any compatible unit at + implementation choice. For example 4 cm + 1 inch shall produce any result + equivalent to 0.04 m + 0.0254 m.

    + +

    Implementations are allowed to avoid conversion to system unit if the + result is guaranteed to be equivalent. This is often the case when the + conversion between quantity unit and system unit is only a + scale factor. However this is not + the case for conversions applying an offset or more complex formula. + For example 2°C + 1°C = 274.15°C, not 3°C. This counter-intuitive result + is essential for preserving algebra laws like associativity, and is also + the expected result from a thermodynamic point of view.

    + +
    +
    API Note:
    This interface places no restrictions on the mutability of + implementations, however immutability is strongly recommended. All + implementations must be Comparable.
    +
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    2.5, May 20, 2023
    +
    Author:
    +
    Jean-Marie Dautelle, Martin + Desruisseaux, Werner Keil, Otavio Santana
    +
    See Also:
    +
    + +
    +
    +
    +
    +
      + +
    • +
      +

      Nested Class Summary

      +
      Nested Classes
      +
      +
      Modifier and Type
      +
      Interface
      +
      Description
      +
      static enum 
      + +
      +
      The scale of a Quantity, either ABSOLUTE or RELATIVE.
      +
      +
      +
      +
    • + +
    • +
      +

      Method Summary

      +
      +
      +
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      + +
      add(Quantity<Q> addend)
      +
      +
      Returns the sum of this Quantity with the one specified.
      +
      +
      <T extends Quantity<T>>
      Quantity<T>
      +
      asType(Class<T> type)
      +
      +
      Casts this quantity to a parameterized unit of specified nature or throw a + ClassCastException if the dimension of the specified quantity + and this measure unit's dimension do not match.
      +
      + +
      divide(Number divisor)
      +
      +
      Returns the quotient of this Quantity divided by the Number + specified.
      +
      + +
      divide(Quantity<?> divisor)
      +
      +
      Returns the quotient of this Quantity divided by the Quantity + specified.
      +
      + + +
      +
      Returns the Scale of this Quantity, if it's absolute or relative.
      +
      + + +
      +
      Returns the unit of this Quantity.
      +
      + + +
      +
      Returns the value of this Quantity.
      +
      + + +
      +
      Returns a Quantity that is the multiplicative inverse of this + Quantity, having reciprocal value and reciprocal unit as given by + this.getUnit().inverse().
      +
      +
      boolean
      + +
      +
      Compares two instances of Quantity <Q>, performing the conversion of units if necessary.
      +
      + +
      multiply(Number multiplicand)
      +
      +
      Returns the product of this Quantity with the Number value + specified.
      +
      + +
      multiply(Quantity<?> multiplicand)
      +
      +
      Returns the product of this Quantity with the one specified.
      +
      + + +
      +
      Returns a Quantity whose value is (-this.getValue()).
      +
      + +
      subtract(Quantity<Q> subtrahend)
      +
      +
      Returns the difference between this Quantity and the one specified.
      +
      + +
      to(Unit<Q> unit)
      +
      +
      Returns this Quantity converted into another (compatible) + Unit.
      +
      +
      default Quantity<Q>
      + +
      +
      Convenient method equivalent to to(getUnit().toSystemUnit()).
      +
      +
      +
      +
      +
      +
    • +
    +
    +
    +
      + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        add

        +
        Quantity<Q> add(Quantity<Q> addend)
        +
        Returns the sum of this Quantity with the one specified. + The result shall be as if this quantity and the given addend were + converted to system unit before + to be added, and the result converted back to the unit of this + quantity or any other compatible unit at implementation choice.
        +
        +
        Parameters:
        +
        addend - the Quantity to be added.
        +
        Returns:
        +
        this + addend.
        +
        +
        +
      • +
      • +
        +

        subtract

        +
        Quantity<Q> subtract(Quantity<Q> subtrahend)
        +
        Returns the difference between this Quantity and the one specified. + The result shall be as if this quantity and the given subtrahend were + converted to system unit before + to be subtracted, and the result converted back to the unit of this + quantity or any other compatible unit at implementation choice.
        +
        +
        Parameters:
        +
        subtrahend - the Quantity to be subtracted.
        +
        Returns:
        +
        this - subtrahend.
        +
        +
        +
      • +
      • +
        +

        divide

        +
        Quantity<?> divide(Quantity<?> divisor)
        +
        Returns the quotient of this Quantity divided by the Quantity + specified. + The result shall be as if this quantity and the given divisor were + converted to system unit before + to be divided, and the result converted back to the unit of this + quantity or any other compatible unit at implementation choice.
        +
        +
        Parameters:
        +
        divisor - the Quantity divisor.
        +
        Returns:
        +
        this / divisor.
        +
        Throws:
        +
        ClassCastException - if the type of an element in the specified operation is + incompatible with this quantity
        +
        +
        +
      • +
      • +
        +

        divide

        +
        Quantity<Q> divide(Number divisor)
        +
        Returns the quotient of this Quantity divided by the Number + specified. + The result shall be as if this quantity was converted to + system unit before to be divided, + and the result converted back to the unit of this quantity or any + other compatible unit at implementation choice.
        +
        +
        Parameters:
        +
        divisor - the Number divisor.
        +
        Returns:
        +
        this / divisor.
        +
        +
        +
      • +
      • +
        +

        multiply

        +
        Quantity<?> multiply(Quantity<?> multiplicand)
        +
        Returns the product of this Quantity with the one specified. + The result shall be as if this quantity and the given multiplicand were + converted to system unit before + to be multiplied, and the result converted back to the unit of this + quantity or any other compatible unit at implementation choice.
        +
        +
        Parameters:
        +
        multiplicand - the Quantity multiplicand.
        +
        Returns:
        +
        this * multiplicand.
        +
        Throws:
        +
        ClassCastException - if the type of an element in the specified operation is + incompatible with this quantity
        +
        +
        +
      • +
      • +
        +

        multiply

        +
        Quantity<Q> multiply(Number multiplicand)
        +
        Returns the product of this Quantity with the Number value + specified. + The result shall be as if this quantity was converted to + system unit before to be multiplied, + and the result converted back to the unit of this quantity or any + other compatible unit at implementation choice.
        +
        +
        Parameters:
        +
        multiplicand - the Number multiplicand.
        +
        Returns:
        +
        this * multiplicand.
        +
        +
        +
      • +
      • +
        +

        to

        +
        Quantity<Q> to(Unit<Q> unit)
        +
        Returns this Quantity converted into another (compatible) + Unit.
        +
        +
        Parameters:
        +
        unit - the Unit unit in which the returned quantity is stated.
        +
        Returns:
        +
        this quantity or a new quantity equivalent to this quantity stated in the specified unit.
        +
        Throws:
        +
        ArithmeticException - if the result is inexact and the quotient has a non-terminating decimal expansion.
        +
        +
        +
      • +
      • +
        +

        inverse

        + +
        Returns a Quantity that is the multiplicative inverse of this + Quantity, having reciprocal value and reciprocal unit as given by + this.getUnit().inverse().
        +
        +
        Returns:
        +
        reciprocal Quantity
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        negate

        + +
        Returns a Quantity whose value is (-this.getValue()).
        +
        +
        Returns:
        +
        -this.
        +
        +
        +
      • +
      • +
        +

        asType

        +
        <T extends Quantity<T>> Quantity<T> asType(Class<T> type) + throws ClassCastException
        +
        Casts this quantity to a parameterized unit of specified nature or throw a + ClassCastException if the dimension of the specified quantity + and this measure unit's dimension do not match. For example: +

        + + Quantity<Length> length = Quantities.getQuantity("2 km").asType(Length.class); + or + Quantity<Speed> C = length.multiply(299792458).divide(second).asType(Speed.class); + +

        +
        +
        Type Parameters:
        +
        T - The type of the quantity.
        +
        Parameters:
        +
        type - the quantity class identifying the nature of the quantity.
        +
        Returns:
        +
        this quantity parameterized with the specified type.
        +
        Throws:
        +
        ClassCastException - if the dimension of this unit is different from the specified + quantity dimension.
        +
        UnsupportedOperationException - if the specified quantity class does not have a SI unit for the + quantity.
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        getValue

        + +
        Returns the value of this Quantity.
        +
        +
        Returns:
        +
        a value.
        +
        +
        +
      • +
      • +
        +

        getUnit

        + +
        Returns the unit of this Quantity.
        +
        +
        Returns:
        +
        the unit (shall not be null).
        +
        +
        +
      • +
      • +
        +

        toSystemUnit

        +
        default Quantity<Q> toSystemUnit()
        +
        Convenient method equivalent to to(getUnit().toSystemUnit()).
        +
        +
        Returns:
        +
        this quantity or a new quantity equivalent to this quantity stated in + SI units.
        +
        Throws:
        +
        ArithmeticException - if the result is inexact and the quotient has a non-terminating + decimal expansion.
        +
        +
        +
      • +
      • +
        +

        getScale

        + +
        Returns the Scale of this Quantity, if it's absolute or relative.
        +
        +
        Returns:
        +
        the scale, if it's an absolute or relative quantity.
        +
        Since:
        +
        2.0
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        isEquivalentTo

        +
        boolean isEquivalentTo(Quantity<Q> that)
        +
        Compares two instances of Quantity <Q>, performing the conversion of units if necessary.
        +
        +
        Parameters:
        +
        that - the quantity<Q> to be compared with this instance.
        +
        Returns:
        +
        true if that ≡ this.
        +
        Throws:
        +
        NullPointerException - if the quantity is null
        +
        Since:
        +
        2.1
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/UnconvertibleException.html b/docs/site/apidocs/javax/measure/UnconvertibleException.html new file mode 100644 index 00000000..200ce682 --- /dev/null +++ b/docs/site/apidocs/javax/measure/UnconvertibleException.html @@ -0,0 +1,202 @@ + + + + +UnconvertibleException (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    +
    Package javax.measure
    +

    Class UnconvertibleException

    +
    +
    Object +
    Throwable +
    Exception +
    RuntimeException +
    MeasurementException +
    UnconvertibleException
    +
    +
    +
    +
    +
    +
    +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    + +
    Signals that a problem of some sort has occurred due to the impossibility of constructing a converter between two units. For example, the + multiplication of offset units are usually units not convertible to their system unit.
    +
    +
    Version:
    +
    1.0, Aug 8, 2016
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        UnconvertibleException

        +
        public UnconvertibleException(String message)
        +
        Constructs a UnconvertibleException with the given message.
        +
        +
        Parameters:
        +
        message - the detail message, or null if none.
        +
        +
        +
      • +
      • +
        +

        UnconvertibleException

        + +
        Constructs a UnconvertibleException with the given cause.
        +
        +
        Parameters:
        +
        cause - the cause of this exception, or null if none.
        +
        +
        +
      • +
      • +
        +

        UnconvertibleException

        +
        public UnconvertibleException(String message, + Throwable cause)
        +
        Constructs a UnconvertibleException with the given message and cause.
        +
        +
        Parameters:
        +
        message - the detail message, or null if none.
        +
        cause - the cause of this exception, or null if none.
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/Unit.html b/docs/site/apidocs/javax/measure/Unit.html new file mode 100644 index 00000000..5f6685d6 --- /dev/null +++ b/docs/site/apidocs/javax/measure/Unit.html @@ -0,0 +1,805 @@ + + + + +Unit (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    +
    Package javax.measure
    +

    Interface Unit<Q extends Quantity<Q>>

    +
    +
    +
    +
    Type Parameters:
    +
    Q - The type of the quantity measured by this unit.
    +
    +
    +
    public interface Unit<Q extends Quantity<Q>>
    +
    Represents a determinate quantity (as of length, time, heat, or value) adopted as a standard of measurement. + +

    + It is helpful to think of instances of this class as recording the history by which they are created. Thus, for example, the string "g/kg" + (which is a dimensionless unit) would result from invoking the method toString() on a unit that was created by dividing a gram unit by a + kilogram unit. +

    + +

    + This interface supports the multiplication of offsets units. The result is usually a unit not convertible to its system unit. Such units may appear in derivative quantities. For example Celsius per meter is an unit of gradient, which is common in atmospheric + and oceanographic research. +

    + +

    + Units raised at non-integral powers are not supported. For example, LITRE.root(2) raises an ArithmeticException, but + HECTARE.root(2) returns HECTOMETRE (100 metres). +

    + +

    + Unit instances shall be immutable. +

    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    2.4, November 11, 2020
    +
    Author:
    +
    Jean-Marie Dautelle, Steve Emmerson, Martin Desruisseaux, Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    +
      + +
    • +
      +

      Method Summary

      +
      +
      +
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      + +
      alternate(String symbol)
      +
      +
      Returns a system unit equivalent to this unscaled standard unit but used in expressions to distinguish between quantities of a different nature + but of the same dimensions.
      +
      +
      <T extends Quantity<T>>
      Unit<T>
      +
      asType(Class<T> type)
      +
      +
      Casts this unit to a parameterized unit of specified nature or throw a ClassCastException if the dimension of the specified quantity and + this unit's dimension do not match.
      +
      + +
      divide(double divisor)
      +
      +
      Returns the result of dividing this unit by an approximate divisor.
      +
      + +
      divide(Number divisor)
      +
      +
      Returns the result of dividing this unit by a divisor.
      +
      +
      Unit<?>
      +
      divide(Unit<?> divisor)
      +
      +
      Returns the quotient of this unit with the one specified.
      +
      +
      Map<? extends Unit<?>,Integer>
      + +
      +
      Returns the base units and their exponent whose product is this unit, or null if this unit is a base unit (not a product of existing + units).
      +
      + + +
      +
      Returns a converter of numeric values from this unit to another unit of same type.
      +
      + + +
      +
      Returns a converter from this unit to the specified unit of type unknown.
      +
      + + +
      +
      Returns the dimension of this unit.
      +
      + + +
      +
      Returns the name (if any) of this unit.
      +
      + + +
      +
      Returns the symbol (if any) of this unit.
      +
      + + +
      +
      Returns the unscaled system unit from which this unit is derived.
      +
      +
      Unit<?>
      + +
      +
      Returns the reciprocal (multiplicative inverse) of this unit.
      +
      +
      boolean
      +
      isCompatible(Unit<?> that)
      +
      +
      Indicates if this unit is compatible with the unit specified.
      +
      +
      boolean
      + +
      +
      Indicates if this unit represents the same quantity than the given unit, ignoring name and symbols.
      +
      + +
      multiply(double multiplier)
      +
      +
      Returns the result of multiplying this unit by the specified factor.
      +
      + +
      multiply(Number multiplier)
      +
      +
      Returns the result of multiplying this unit by the specified factor.
      +
      +
      Unit<?>
      +
      multiply(Unit<?> multiplier)
      +
      +
      Returns the product of this unit with the one specified.
      +
      +
      Unit<?>
      +
      pow(int n)
      +
      +
      Returns an unit raised to the n-th (integer) power of this unit.
      +
      + +
      prefix(Prefix prefix)
      +
      +
      Returns a new unit equal to this unit prefixed by the specified prefix.
      +
      +
      Unit<?>
      +
      root(int n)
      +
      +
      Returns an unit that is the n-th (integer) root of this unit.
      +
      + +
      shift(double offset)
      +
      +
      Returns the result of setting the origin of the scale of measurement to the given value.
      +
      + +
      shift(Number offset)
      +
      +
      Returns the result of setting the origin of the scale of measurement to the given value.
      +
      + + +
      +
      Returns a string representation of this unit.
      +
      + + +
      +
      Returns the unit derived from this unit using the specified converter.
      +
      +
      +
      +
      +
      +
    • +
    +
    +
    +
      + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        getSymbol

        + +
        Returns the symbol (if any) of this unit. This method returns null if this unit has no specific symbol associated with.
        +
        +
        Returns:
        +
        this unit symbol, or null if this unit has not specific symbol associated with (e.g. product of units).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        getName

        + +
        Returns the name (if any) of this unit. This method returns null if this unit has no specific name associated with.
        +
        +
        Returns:
        +
        this unit name, or null if this unit has not specific name associated with (e.g. product of units).
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        getDimension

        + +
        Returns the dimension of this unit. Two units u1 and u2 are compatible if and only if + u1.getDimension().equals(u2.getDimension()).
        +
        +
        Returns:
        +
        the dimension of this unit.
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        getSystemUnit

        + +
        Returns the unscaled system unit from which this unit is derived. System units are either base units, alternate + units or product of rational powers of system units. + +

        + Because the system unit is unique by quantity type, it can be be used to identify the quantity given the unit. For example: +

        + + static boolean isAngularSpeed(Unit<?> unit) {
        +    return unit.getSystemUnit().equals(RADIAN.divide(SECOND));
        + }
        + assert isAngularSpeed(REVOLUTION.divide(MINUTE)); // Returns true.

        +
        +
        +
        Returns:
        +
        the system unit this unit is derived from, or this if this unit is a system unit.
        +
        +
        +
      • +
      • +
        +

        getBaseUnits

        +
        Map<? extends Unit<?>,Integer> getBaseUnits()
        +
        Returns the base units and their exponent whose product is this unit, or null if this unit is a base unit (not a product of existing + units).
        +
        +
        Returns:
        +
        the base units and their exponent making up this unit.
        +
        +
        +
      • +
      • +
        +

        isCompatible

        +
        boolean isCompatible(Unit<?> that)
        +
        Indicates if this unit is compatible with the unit specified. Units don't need to be equal to be compatible. For example (assuming ONE + is a dimensionless unit):
        + + + RADIAN.equals(ONE) == false
        + RADIAN.isCompatible(ONE) == true
        + RADIAN.isEquivalentTo(ONE) doesn't compile
        +
        +
        +
        Parameters:
        +
        that - the other unit to compare for compatibility.
        +
        Returns:
        +
        this.getDimension().equals(that.getDimension())
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        isEquivalentTo

        +
        boolean isEquivalentTo(Unit<Q> that)
        +
        Indicates if this unit represents the same quantity than the given unit, ignoring name and symbols. + Two units are equivalent if the conversion between them is identity. + +

        + Unlike isCompatible(Unit) an equivalence check requires both units to be strictly type-compatible, + because it makes no sense to compare e.g. gram and mm for equivalence. + By contrast, the compatibility check can works across different quantity types. +

        +
        +
        Parameters:
        +
        that - the Unit<Q> to be compared with this instance.
        +
        Returns:
        +
        true if that ≡ this.
        +
        Throws:
        +
        NullPointerException - if the unit is null
        +
        Since:
        +
        2.1
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        asType

        +
        <T extends Quantity<T>> Unit<T> asType(Class<T> type) + throws ClassCastException
        +
        Casts this unit to a parameterized unit of specified nature or throw a ClassCastException if the dimension of the specified quantity and + this unit's dimension do not match. For example:
        + + + Unit<Speed> C = METRE.multiply(299792458).divide(SECOND).asType(Speed.class); +
        +
        +
        Type Parameters:
        +
        T - The type of the quantity measured by the unit.
        +
        Parameters:
        +
        type - the quantity class identifying the nature of the unit.
        +
        Returns:
        +
        this unit parameterized with the specified type.
        +
        Throws:
        +
        ClassCastException - if the dimension of this unit is different from the specified quantity dimension.
        +
        +
        +
      • +
      • +
        +

        getConverterTo

        + +
        Returns a converter of numeric values from this unit to another unit of same type. This method performs the same work as + getConverterToAny(Unit) without raising checked exception.
        +
        +
        Parameters:
        +
        that - the unit of same type to which to convert the numeric values.
        +
        Returns:
        +
        the converter from this unit to that unit.
        +
        Throws:
        +
        UnconvertibleException - if a converter cannot be constructed.
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        getConverterToAny

        + +
        Returns a converter from this unit to the specified unit of type unknown. This method can be used when the quantity type of the specified unit is + unknown at compile-time or when dimensional analysis allows for conversion between units of different type. + +

        + To convert to a unit having the same parameterized type, getConverterTo(Unit) is preferred (no checked exception raised). +

        +
        +
        Parameters:
        +
        that - the unit to which to convert the numeric values.
        +
        Returns:
        +
        the converter from this unit to that unit.
        +
        Throws:
        +
        IncommensurableException - if this unit is not compatible with that unit.
        +
        UnconvertibleException - if a converter cannot be constructed.
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        alternate

        +
        Unit<Q> alternate(String symbol)
        +
        Returns a system unit equivalent to this unscaled standard unit but used in expressions to distinguish between quantities of a different nature + but of the same dimensions. + +

        + Examples of alternate units: +

        + + + Unit<Angle> RADIAN = ONE.alternate("rad").asType(Angle.class);
        + Unit<Force> NEWTON = METRE.multiply(KILOGRAM).divide(SECOND.pow(2)).alternate("N").asType(Force.class);
        + Unit<Pressure> PASCAL = NEWTON.divide(METRE.pow(2)).alternate("Pa").asType(Pressure.class);
        +
        +
        +
        Parameters:
        +
        symbol - the new symbol for the alternate unit.
        +
        Returns:
        +
        the alternate unit.
        +
        Throws:
        +
        IllegalArgumentException - if this unit is not an unscaled standard unit.
        +
        MeasurementException - if the specified symbol is not valid or is already associated to a different unit.
        +
        +
        +
      • +
      • +
        +

        shift

        +
        Unit<Q> shift(Number offset)
        +
        Returns the result of setting the origin of the scale of measurement to the given value. The returned unit is convertible with all units that are + convertible with this unit. For example the following code:
        + + + CELSIUS = KELVIN.shift(273.15); + + + creates a new unit where 0°C (the origin of the new unit) is equals to 273.15 K. Converting from the old unit to the new one is equivalent to + subtracting the offset to the value in the old unit.
        +
        +
        Parameters:
        +
        offset - the offset added (expressed in this unit).
        +
        Returns:
        +
        this unit offset by the specified value.
        +
        Since:
        +
        2.0
        +
        +
        +
      • +
      • +
        +

        shift

        +
        Unit<Q> shift(double offset)
        +
        Returns the result of setting the origin of the scale of measurement to the given value. The returned unit is convertible with all units that are + convertible with this unit. For example the following code:
        + + + CELSIUS = KELVIN.shift(273.15); + + + creates a new unit where 0°C (the origin of the new unit) is equals to 273.15 K. Converting from the old unit to the new one is equivalent to + subtracting the offset to the value in the old unit.
        +
        +
        Parameters:
        +
        offset - the offset added (expressed in this unit).
        +
        Returns:
        +
        this unit offset by the specified value.
        +
        +
        +
      • +
      • +
        +

        multiply

        +
        Unit<Q> multiply(Number multiplier)
        +
        Returns the result of multiplying this unit by the specified factor. If the factor is an integer value, the multiplication is exact + (recommended). For example:
        + + + FOOT = METRE.multiply(3048).divide(10000); // Exact definition.
        + ELECTRON_MASS = KILOGRAM.multiply(9.10938188e-31); // Approximation. +
        +
        +
        Parameters:
        +
        multiplier - the multiplier
        +
        Returns:
        +
        this unit scaled by the specified multiplier.
        +
        Since:
        +
        2.0
        +
        +
        +
      • +
      • +
        +

        multiply

        +
        Unit<Q> multiply(double multiplier)
        +
        Returns the result of multiplying this unit by the specified factor. For example:
        + + + FOOT = METRE.multiply(3048).divide(10000); // Exact definition.
        + ELECTRON_MASS = KILOGRAM.multiply(9.10938188e-31); // Approximation. +
        +
        +
        Parameters:
        +
        multiplier - the multiplier
        +
        Returns:
        +
        this unit scaled by the specified multiplier.
        +
        +
        +
      • +
      • +
        +

        multiply

        +
        Unit<?> multiply(Unit<?> multiplier)
        +
        Returns the product of this unit with the one specified.
        +
        +
        Parameters:
        +
        multiplier - the unit multiplier.
        +
        Returns:
        +
        this * multiplier
        +
        +
        +
      • +
      • +
        +

        inverse

        + +
        Returns the reciprocal (multiplicative inverse) of this unit.
        +
        +
        Returns:
        +
        1 / this
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        divide

        +
        Unit<Q> divide(Number divisor)
        +
        Returns the result of dividing this unit by a divisor. If the factor is an integer value, the division is exact. For example:
        + + + GRAM = KILOGRAM.divide(1000); // Exact definition. +
        +
        +
        Parameters:
        +
        divisor - the divisor value.
        +
        Returns:
        +
        this unit divided by the specified divisor.
        +
        Since:
        +
        2.0
        +
        +
        +
      • +
      • +
        +

        divide

        +
        Unit<Q> divide(double divisor)
        +
        Returns the result of dividing this unit by an approximate divisor. For example:
        + + + GRAM = KILOGRAM.divide(1000d); +
        +
        +
        Parameters:
        +
        divisor - the divisor value.
        +
        Returns:
        +
        this unit divided by the specified divisor.
        +
        +
        +
      • +
      • +
        +

        divide

        +
        Unit<?> divide(Unit<?> divisor)
        +
        Returns the quotient of this unit with the one specified.
        +
        +
        Parameters:
        +
        divisor - the unit divisor.
        +
        Returns:
        +
        this / divisor
        +
        +
        +
      • +
      • +
        +

        root

        +
        Unit<?> root(int n)
        +
        Returns an unit that is the n-th (integer) root of this unit. Equivalent to the mathematical expression unit^(1/n).
        +
        +
        Parameters:
        +
        n - an integer giving the root's order as in 'n-th root'
        +
        Returns:
        +
        the n-th root of this unit.
        +
        Throws:
        +
        ArithmeticException - if n == 0 or if this operation would result in an unit with a fractional exponent.
        +
        +
        +
      • +
      • +
        +

        pow

        +
        Unit<?> pow(int n)
        +
        Returns an unit raised to the n-th (integer) power of this unit. Equivalent to the mathematical expression unit^n.
        +
        +
        Parameters:
        +
        n - the exponent.
        +
        Returns:
        +
        the result of raising this unit to the exponent.
        +
        +
        +
      • +
      • +
        +

        transform

        + +
        Returns the unit derived from this unit using the specified converter. The converter does not need to be linear. For example:
        + +
        +     Unit<Dimensionless> DECIBEL = Unit.ONE.transform(
        +         new LogConverter(10).inverse().concatenate(
        +             new RationalConverter(1, 10)));
        + 
        +
        +
        Parameters:
        +
        operation - the converter from the transformed unit to this unit.
        +
        Returns:
        +
        the unit after the specified transformation.
        +
        +
        +
      • +
      • +
        +

        toString

        + +
        Returns a string representation of this unit. The string representation may be the unit symbol, or may be some + representation of product units, multiplication factor and offset if any. + +

        + The string may be localized at implementation choice by the means of a particular device and platform. +

        +
        +
        Overrides:
        +
        toString in class Object
        +
        Returns:
        +
        the string representation of this unit.
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        prefix

        +
        Unit<Q> prefix(Prefix prefix)
        +
        Returns a new unit equal to this unit prefixed by the specified prefix.
        +
        +
        Parameters:
        +
        prefix - the prefix to apply on this unit.
        +
        Returns:
        +
        the unit with the given prefix applied.
        +
        Since:
        +
        2.0
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/UnitConverter.html b/docs/site/apidocs/javax/measure/UnitConverter.html new file mode 100644 index 00000000..8fd1f793 --- /dev/null +++ b/docs/site/apidocs/javax/measure/UnitConverter.html @@ -0,0 +1,309 @@ + + + + +UnitConverter (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    +
    Package javax.measure
    +

    Interface UnitConverter

    +
    +
    +
    +
    public interface UnitConverter
    +
    A converter of numeric values between different units. + +

    + Instances of this class are usually obtained through the Unit.getConverterTo(Unit) method. +

    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.4, May 12, 2019
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil, Martin + Desruisseaux, Thodoris Bais, Andi Huber
    +
    See Also:
    +
    + +
    +
    +
    +
    +
      + +
    • +
      +

      Method Summary

      +
      +
      +
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      + + +
      +
      Concatenates this converter with another converter.
      +
      +
      double
      +
      convert(double value)
      +
      +
      Converts a double value.
      +
      + +
      convert(Number value)
      +
      +
      Converts a Number value.
      +
      +
      List<? extends UnitConverter>
      + +
      +
      + Returns the steps of fundamental converters making up this converter or this if the converter is a fundamental converter.
      +
      + + +
      +
      Returns the inverse of this converter.
      +
      +
      boolean
      + +
      +
      Indicates if this converter is an identity converter.
      +
      +
      boolean
      + +
      +
      Indicates whether this converter represents a (one-dimensional) linear transformation, that is + a linear map (wikipedia) from a one-dimensional + vector space (a scalar) to a one-dimensional vector space.
      +
      +
      +
      +
      +
      +
    • +
    +
    +
    +
      + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        isIdentity

        +
        boolean isIdentity()
        +
        Indicates if this converter is an identity converter. The identity converter returns its input argument (convert(x) == x). +

        + Note: Identity converters are also always 'linear', see isLinear(). +

        +
        +
        Returns:
        +
        true if this converter is an identity converter.
        +
        +
        +
      • +
      • +
        +

        isLinear

        +
        boolean isLinear()
        +
        Indicates whether this converter represents a (one-dimensional) linear transformation, that is + a linear map (wikipedia) from a one-dimensional + vector space (a scalar) to a one-dimensional vector space. Typically from 'R' to 'R', with 'R' the + real numbers. + +

        + Given such a 'linear' converter 'A', let 'u', 'v' and 'r' be arbitrary numbers, then the following + must hold by definition: + +

          +
        • A(u + v) == A(u) + A(v)
        • +
        • A(r * u) == r * A(u)
        • +
        + +

        + Given a second 'linear' converter 'B', commutativity of composition follows by above definition: + +

          +
        • (A o B) (u) == (B o A) (u)
        • +
        + + In other words, two 'linear' converters do have the property that A(B(u)) == B(A(u)), meaning + for 'A' and 'B' the order of their composition does not matter. Expressed as Java code: + +

        +A.concatenate(B).convert(u) == B.concatenate(A).convert(u) +

        + + Note: For composing UnitConverters see also concatenate(UnitConverter).
        +
        +
        Returns:
        +
        true if this converter represents a linear transformation; + false otherwise.
        +
        +
        +
      • +
      • +
        +

        inverse

        + +
        Returns the inverse of this converter. If x is a valid value, then x == inverse().convert(convert(x)) to within the accuracy of + computer arithmetic.
        +
        +
        Returns:
        +
        the inverse of this converter.
        +
        +
        +
      • +
      • +
        +

        convert

        + +
        Converts a Number value.
        +
        +
        Parameters:
        +
        value - the Number value to convert.
        +
        Returns:
        +
        the Number value after conversion.
        +
        +
        +
      • +
      • +
        +

        convert

        +
        double convert(double value)
        +
        Converts a double value.
        +
        +
        Parameters:
        +
        value - the numeric value to convert.
        +
        Returns:
        +
        the double value after conversion.
        +
        +
        +
      • +
      • +
        +

        concatenate

        + +
        Concatenates this converter with another converter. The resulting converter is equivalent to first converting by the specified converter (right + converter), and then converting by this converter (left converter).
        +
        +
        Parameters:
        +
        converter - the other converter to concatenate with this converter.
        +
        Returns:
        +
        the concatenation of this converter with the other converter.
        +
        +
        +
      • +
      • +
        +

        getConversionSteps

        + +

        + Returns the steps of fundamental converters making up this converter or this if the converter is a fundamental converter. +

        +

        + For example, converter1.getConversionSteps() returns converter1 while + converter1.concatenate(converter2).getConversionSteps() returns converter1, converter2. +

        +
        +
        Returns:
        +
        the list of fundamental converters which concatenated make up this converter.
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/class-use/BinaryPrefix.html b/docs/site/apidocs/javax/measure/class-use/BinaryPrefix.html new file mode 100644 index 00000000..9ec4732f --- /dev/null +++ b/docs/site/apidocs/javax/measure/class-use/BinaryPrefix.html @@ -0,0 +1,98 @@ + + + + +Uses of Enum javax.measure.BinaryPrefix (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Enum
    javax.measure.BinaryPrefix

    +
    +
    Packages that use BinaryPrefix
    +
    +
    Package
    +
    Description
    + +
    +
    Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/class-use/Dimension.html b/docs/site/apidocs/javax/measure/class-use/Dimension.html new file mode 100644 index 00000000..c12830a0 --- /dev/null +++ b/docs/site/apidocs/javax/measure/class-use/Dimension.html @@ -0,0 +1,160 @@ + + + + +Uses of Interface javax.measure.Dimension (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.Dimension

    +
    +
    Packages that use Dimension
    +
    +
    Package
    +
    Description
    + +
    +
    Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
    +
    + +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/class-use/IncommensurableException.html b/docs/site/apidocs/javax/measure/class-use/IncommensurableException.html new file mode 100644 index 00000000..462e9ef8 --- /dev/null +++ b/docs/site/apidocs/javax/measure/class-use/IncommensurableException.html @@ -0,0 +1,92 @@ + + + + +Uses of Class javax.measure.IncommensurableException (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    javax.measure.IncommensurableException

    +
    +
    Packages that use IncommensurableException
    +
    +
    Package
    +
    Description
    + +
    +
    Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/class-use/MeasurementError.html b/docs/site/apidocs/javax/measure/class-use/MeasurementError.html new file mode 100644 index 00000000..ba35857d --- /dev/null +++ b/docs/site/apidocs/javax/measure/class-use/MeasurementError.html @@ -0,0 +1,62 @@ + + + + +Uses of Class javax.measure.MeasurementError (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    javax.measure.MeasurementError

    +
    +No usage of javax.measure.MeasurementError
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/class-use/MeasurementException.html b/docs/site/apidocs/javax/measure/class-use/MeasurementException.html new file mode 100644 index 00000000..4918dfed --- /dev/null +++ b/docs/site/apidocs/javax/measure/class-use/MeasurementException.html @@ -0,0 +1,112 @@ + + + + +Uses of Class javax.measure.MeasurementException (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    javax.measure.MeasurementException

    +
    +
    Packages that use MeasurementException
    +
    +
    Package
    +
    Description
    + +
    +
    Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
    +
    + +
    +
    [OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/class-use/MetricPrefix.html b/docs/site/apidocs/javax/measure/class-use/MetricPrefix.html new file mode 100644 index 00000000..f3d41ef2 --- /dev/null +++ b/docs/site/apidocs/javax/measure/class-use/MetricPrefix.html @@ -0,0 +1,98 @@ + + + + +Uses of Enum javax.measure.MetricPrefix (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Enum
    javax.measure.MetricPrefix

    +
    +
    Packages that use MetricPrefix
    +
    +
    Package
    +
    Description
    + +
    +
    Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/class-use/Prefix.html b/docs/site/apidocs/javax/measure/class-use/Prefix.html new file mode 100644 index 00000000..eea69dcc --- /dev/null +++ b/docs/site/apidocs/javax/measure/class-use/Prefix.html @@ -0,0 +1,129 @@ + + + + +Uses of Interface javax.measure.Prefix (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.Prefix

    +
    +
    Packages that use Prefix
    +
    +
    Package
    +
    Description
    + +
    +
    Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
    +
    + +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +
    +
      +
    • +
      +

      Uses of Prefix in javax.measure

      +
      Classes in javax.measure that implement Prefix
      +
      +
      Modifier and Type
      +
      Class
      +
      Description
      +
      enum 
      + +
      +
      Provides support for common binary prefixes to be used by units.
      +
      +
      enum 
      + +
      +
      Provides support for the 24 prefixes used in the metric system (decimal multiples and submultiples of units).
      +
      +
      +
      Methods in javax.measure with parameters of type Prefix
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      + +
      Unit.prefix(Prefix prefix)
      +
      +
      Returns a new unit equal to this unit prefixed by the specified prefix.
      +
      +
      +
      +
    • +
    • +
      +

      Uses of Prefix in javax.measure.spi

      +
      Methods in javax.measure.spi with type parameters of type Prefix
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      +
      default <P extends Prefix>
      Set<P>
      +
      SystemOfUnitsService.getPrefixes(Class<P> prefixType)
      +
      +
      Returns a Set containing the values of a particular Prefix + type.
      +
      +
      +
      +
    • +
    +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/class-use/Quantity.Scale.html b/docs/site/apidocs/javax/measure/class-use/Quantity.Scale.html new file mode 100644 index 00000000..ed1065c1 --- /dev/null +++ b/docs/site/apidocs/javax/measure/class-use/Quantity.Scale.html @@ -0,0 +1,125 @@ + + + + +Uses of Enum javax.measure.Quantity.Scale (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Enum
    javax.measure.Quantity.Scale

    +
    +
    Packages that use Quantity.Scale
    +
    +
    Package
    +
    Description
    + +
    +
    Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
    +
    + +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/class-use/Quantity.html b/docs/site/apidocs/javax/measure/class-use/Quantity.html new file mode 100644 index 00000000..0e160069 --- /dev/null +++ b/docs/site/apidocs/javax/measure/class-use/Quantity.html @@ -0,0 +1,662 @@ + + + + +Uses of Interface javax.measure.Quantity (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.Quantity

    +
    +
    Packages that use Quantity
    +
    +
    Package
    +
    Description
    + +
    +
    Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
    +
    + +
    +
    [OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
    +
    + +
    +
    [OPTIONAL] Provides quantitative properties or attributes of thing such as + mass, time, distance, heat, and angular separation.
    +
    + +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +
    +
      +
    • +
      +

      Uses of Quantity in javax.measure

      +
      Classes in javax.measure with type parameters of type Quantity
      +
      +
      Modifier and Type
      +
      Interface
      +
      Description
      +
      interface 
      +
      Quantity<Q extends Quantity<Q>>
      +
      +
      Represents a quantitative property of a phenomenon, body, or substance, that + can be quantified by measurement.
      +
      +
      interface 
      +
      Unit<Q extends Quantity<Q>>
      +
      +
      Represents a determinate quantity (as of length, time, heat, or value) adopted as a standard of measurement.
      +
      +
      +
      Methods in javax.measure with type parameters of type Quantity
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      +
      <T extends Quantity<T>>
      Quantity<T>
      +
      Quantity.asType(Class<T> type)
      +
      +
      Casts this quantity to a parameterized unit of specified nature or throw a + ClassCastException if the dimension of the specified quantity + and this measure unit's dimension do not match.
      +
      +
      <T extends Quantity<T>>
      Unit<T>
      +
      Unit.asType(Class<T> type)
      +
      +
      Casts this unit to a parameterized unit of specified nature or throw a ClassCastException if the dimension of the specified quantity and + this unit's dimension do not match.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.ATTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-18
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.CENTI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-2
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.DECA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 101
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.DECI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-1
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.DEKA(Unit<Q> unit)
      +
      +
      US alias for DECA.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.EXA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1018
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.EXBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10246 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.FEMTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-15
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.GIBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10243 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.GIGA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 109
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.HECTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 102
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.KIBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1024 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.KILO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 103
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.MEBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10242 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.MEGA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 106
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.MICRO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-6
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.MILLI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-3
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.NANO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-9
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.PEBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10245 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.PETA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1015
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.PICO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-12
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.QUECTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-30
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.QUETTA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1030
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.RONNA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1027
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.RONTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-27
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.TEBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10244 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.TERA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1012
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.YOBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10248 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.YOCTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-24
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.YOTTA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1024
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.ZEBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10247 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.ZEPTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-21
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.ZETTA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1021
      +
      +
      +
      Methods in javax.measure that return Quantity
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      + +
      Quantity.add(Quantity<Q> addend)
      +
      +
      Returns the sum of this Quantity with the one specified.
      +
      +
      <T extends Quantity<T>>
      Quantity<T>
      +
      Quantity.asType(Class<T> type)
      +
      +
      Casts this quantity to a parameterized unit of specified nature or throw a + ClassCastException if the dimension of the specified quantity + and this measure unit's dimension do not match.
      +
      + +
      Quantity.divide(Number divisor)
      +
      +
      Returns the quotient of this Quantity divided by the Number + specified.
      +
      + +
      Quantity.divide(Quantity<?> divisor)
      +
      +
      Returns the quotient of this Quantity divided by the Quantity + specified.
      +
      + +
      Quantity.inverse()
      +
      +
      Returns a Quantity that is the multiplicative inverse of this + Quantity, having reciprocal value and reciprocal unit as given by + this.getUnit().inverse().
      +
      + +
      Quantity.multiply(Number multiplicand)
      +
      +
      Returns the product of this Quantity with the Number value + specified.
      +
      + +
      Quantity.multiply(Quantity<?> multiplicand)
      +
      +
      Returns the product of this Quantity with the one specified.
      +
      + +
      Quantity.negate()
      +
      +
      Returns a Quantity whose value is (-this.getValue()).
      +
      + +
      Quantity.subtract(Quantity<Q> subtrahend)
      +
      +
      Returns the difference between this Quantity and the one specified.
      +
      + +
      Quantity.to(Unit<Q> unit)
      +
      +
      Returns this Quantity converted into another (compatible) + Unit.
      +
      +
      default Quantity<Q>
      +
      Quantity.toSystemUnit()
      +
      +
      Convenient method equivalent to to(getUnit().toSystemUnit()).
      +
      +
      +
      Methods in javax.measure with parameters of type Quantity
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      + +
      Quantity.add(Quantity<Q> addend)
      +
      +
      Returns the sum of this Quantity with the one specified.
      +
      + +
      Quantity.divide(Quantity<?> divisor)
      +
      +
      Returns the quotient of this Quantity divided by the Quantity + specified.
      +
      +
      boolean
      +
      Quantity.isEquivalentTo(Quantity<Q> that)
      +
      +
      Compares two instances of Quantity <Q>, performing the conversion of units if necessary.
      +
      + +
      Quantity.multiply(Quantity<?> multiplicand)
      +
      +
      Returns the product of this Quantity with the one specified.
      +
      + +
      Quantity.subtract(Quantity<Q> subtrahend)
      +
      +
      Returns the difference between this Quantity and the one specified.
      +
      +
      +
      +
    • +
    • +
      +

      Uses of Quantity in javax.measure.format

      +
      Methods in javax.measure.format that return Quantity
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      + +
      QuantityFormat.parse(CharSequence csq)
      +
      +
      Parses the specified CharSequence to produce a Quantity.
      +
      + +
      QuantityFormat.parse(CharSequence csq, + ParsePosition pos)
      +
      +
      Parses a portion of the specified CharSequence from the specified position to produce a Quantity.
      +
      +
      +
      Methods in javax.measure.format with parameters of type Quantity
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      + +
      QuantityFormat.format(Quantity<?> quantity)
      +
      +
      Formats the specified Quantity.
      +
      + +
      QuantityFormat.format(Quantity<?> quantity, + Appendable destination)
      +
      +
      Formats the specified quantity into an Appendable.
      +
      +
      +
      +
    • +
    • +
      +

      Uses of Quantity in javax.measure.quantity

      +
      Subinterfaces of Quantity in javax.measure.quantity
      +
      +
      Modifier and Type
      +
      Interface
      +
      Description
      +
      interface 
      + +
      +
      Rate of change of velocity with respect to time.
      +
      +
      interface 
      + +
      +
      Number of elementary entities (molecules, for example) of a substance.
      +
      +
      interface 
      + +
      +
      Figure formed by two lines diverging from a common point.
      +
      +
      interface 
      + +
      +
      Extent of a planar region or of the surface of a solid measured in square units.
      +
      +
      interface 
      + +
      +
      Catalytic activity.
      +
      +
      interface 
      + +
      +
      Dimensionless quantity.
      +
      +
      interface 
      + +
      +
      Electric capacitance.
      +
      +
      interface 
      + +
      +
      Electric charge.
      +
      +
      interface 
      + +
      +
      Electric conductance.
      +
      +
      interface 
      + +
      +
      Amount of electric charge flowing past a specified circuit point per unit time.
      +
      +
      interface 
      + +
      +
      Electric inductance.
      +
      +
      interface 
      + +
      +
      Electric potential or electromotive force.
      +
      +
      interface 
      + +
      +
      Electric resistance.
      +
      +
      interface 
      + +
      +
      Capacity of a physical system to do work.
      +
      +
      interface 
      + +
      +
      Quantity that tends to produce an acceleration of a body in the direction of its application.
      +
      +
      interface 
      + +
      +
      Number of times a specified phenomenon occurs within a specified interval.
      +
      +
      interface 
      + +
      +
      Illuminance.
      +
      +
      interface 
      + +
      +
      Extent of something along its greatest dimension or the extent of space between two objects or places.
      +
      +
      interface 
      + +
      +
      Luminous flux.
      +
      +
      interface 
      + +
      +
      Luminous flux density per solid angle as measured in a given direction relative to the emitting source.
      +
      +
      interface 
      + +
      +
      Magnetic flux.
      +
      +
      interface 
      + +
      +
      Magnetic flux density.
      +
      +
      interface 
      + +
      +
      Measure of the quantity of matter that a body or an object contains.
      +
      +
      interface 
      + +
      +
      Rate at which work is done.
      +
      +
      interface 
      + +
      +
      Force applied uniformly over a surface.
      +
      +
      interface 
      + +
      +
      Amount of energy deposited per unit of mass.
      +
      +
      interface 
      + +
      +
      Effective (or "equivalent") dose of radiation received by a human or some other living organism.
      +
      +
      interface 
      + +
      +
      Radioactive activity.
      +
      +
      interface 
      + +
      +
      Angle formed by three or more planes intersecting at a common point.
      +
      +
      interface 
      + +
      +
      Distance traveled divided by the time of travel.
      +
      +
      interface 
      + +
      +
      Degree of hotness or coldness of a body or an environment.
      +
      +
      interface 
      + +
      +
      Period of existence or persistence.
      +
      +
      interface 
      + +
      +
      Amount of space occupied by a three-dimensional object or region of space.
      +
      +
      +
      +
    • +
    • +
      +

      Uses of Quantity in javax.measure.spi

      +
      Classes in javax.measure.spi with type parameters of type Quantity
      +
      +
      Modifier and Type
      +
      Interface
      +
      Description
      +
      interface 
      + +
      +
      Represents a factory that accepts Number and Unit arguments to create Quantity results.
      +
      +
      +
      Methods in javax.measure.spi with type parameters of type Quantity
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      +
      abstract <Q extends Quantity<Q>>
      QuantityFactory<Q>
      +
      ServiceProvider.getQuantityFactory(Class<Q> quantity)
      +
      +
      Returns a factory for the given Quantity type.
      +
      +
      <Q extends Quantity<Q>>
      Unit<Q>
      +
      SystemOfUnits.getUnit(Class<Q> quantityType)
      +
      +
      Returns the default unit for the specified quantity or null if none is defined for the given quantity in this unit system.
      +
      +
      +
      Methods in javax.measure.spi that return Quantity
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      + +
      QuantityFactory.create(Number value, + Unit<Q> unit)
      +
      +
      Returns the quantity for the specified number stated in the specified unit.
      +
      + +
      QuantityFactory.create(Number value, + Unit<Q> unit, + Quantity.Scale scale)
      +
      +
      Returns the quantity for the specified number stated in the specified unit and scale.
      +
      +
      +
      +
    • +
    +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/class-use/UnconvertibleException.html b/docs/site/apidocs/javax/measure/class-use/UnconvertibleException.html new file mode 100644 index 00000000..ae07da60 --- /dev/null +++ b/docs/site/apidocs/javax/measure/class-use/UnconvertibleException.html @@ -0,0 +1,97 @@ + + + + +Uses of Class javax.measure.UnconvertibleException (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    javax.measure.UnconvertibleException

    +
    +
    Packages that use UnconvertibleException
    +
    +
    Package
    +
    Description
    + +
    +
    Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/class-use/Unit.html b/docs/site/apidocs/javax/measure/class-use/Unit.html new file mode 100644 index 00000000..74bca831 --- /dev/null +++ b/docs/site/apidocs/javax/measure/class-use/Unit.html @@ -0,0 +1,672 @@ + + + + +Uses of Interface javax.measure.Unit (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.Unit

    +
    +
    Packages that use Unit
    +
    +
    Package
    +
    Description
    + +
    +
    Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
    +
    + +
    +
    [OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
    +
    + +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +
    +
      +
    • +
      +

      Uses of Unit in javax.measure

      +
      Methods in javax.measure that return Unit
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      + +
      Unit.alternate(String symbol)
      +
      +
      Returns a system unit equivalent to this unscaled standard unit but used in expressions to distinguish between quantities of a different nature + but of the same dimensions.
      +
      +
      <T extends Quantity<T>>
      Unit<T>
      +
      Unit.asType(Class<T> type)
      +
      +
      Casts this unit to a parameterized unit of specified nature or throw a ClassCastException if the dimension of the specified quantity and + this unit's dimension do not match.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.ATTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-18
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.CENTI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-2
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.DECA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 101
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.DECI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-1
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.DEKA(Unit<Q> unit)
      +
      +
      US alias for DECA.
      +
      + +
      Unit.divide(double divisor)
      +
      +
      Returns the result of dividing this unit by an approximate divisor.
      +
      + +
      Unit.divide(Number divisor)
      +
      +
      Returns the result of dividing this unit by a divisor.
      +
      +
      Unit<?>
      +
      Unit.divide(Unit<?> divisor)
      +
      +
      Returns the quotient of this unit with the one specified.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.EXA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1018
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.EXBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10246 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.FEMTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-15
      +
      + + +
      +
      Returns the unscaled system unit from which this unit is derived.
      +
      + +
      Quantity.getUnit()
      +
      +
      Returns the unit of this Quantity.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.GIBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10243 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.GIGA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 109
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.HECTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 102
      +
      +
      Unit<?>
      +
      Unit.inverse()
      +
      +
      Returns the reciprocal (multiplicative inverse) of this unit.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.KIBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1024 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.KILO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 103
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.MEBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10242 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.MEGA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 106
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.MICRO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-6
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.MILLI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-3
      +
      + +
      Unit.multiply(double multiplier)
      +
      +
      Returns the result of multiplying this unit by the specified factor.
      +
      + +
      Unit.multiply(Number multiplier)
      +
      +
      Returns the result of multiplying this unit by the specified factor.
      +
      +
      Unit<?>
      +
      Unit.multiply(Unit<?> multiplier)
      +
      +
      Returns the product of this unit with the one specified.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.NANO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-9
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.PEBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10245 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.PETA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1015
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.PICO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-12
      +
      +
      Unit<?>
      +
      Unit.pow(int n)
      +
      +
      Returns an unit raised to the n-th (integer) power of this unit.
      +
      + +
      Unit.prefix(Prefix prefix)
      +
      +
      Returns a new unit equal to this unit prefixed by the specified prefix.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.QUECTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-30
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.QUETTA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1030
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.RONNA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1027
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.RONTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-27
      +
      +
      Unit<?>
      +
      Unit.root(int n)
      +
      +
      Returns an unit that is the n-th (integer) root of this unit.
      +
      + +
      Unit.shift(double offset)
      +
      +
      Returns the result of setting the origin of the scale of measurement to the given value.
      +
      + +
      Unit.shift(Number offset)
      +
      +
      Returns the result of setting the origin of the scale of measurement to the given value.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.TEBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10244 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.TERA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1012
      +
      + +
      Unit.transform(UnitConverter operation)
      +
      +
      Returns the unit derived from this unit using the specified converter.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.YOBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10248 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.YOCTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-24
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.YOTTA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1024
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.ZEBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10247 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.ZEPTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-21
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.ZETTA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1021
      +
      +
      +
      Methods in javax.measure that return types with arguments of type Unit
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      +
      Map<? extends Unit<?>,Integer>
      + +
      +
      Returns the base units and their exponent whose product is this unit, or null if this unit is a base unit (not a product of existing + units).
      +
      +
      +
      Methods in javax.measure with parameters of type Unit
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.ATTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-18
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.CENTI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-2
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.DECA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 101
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.DECI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-1
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.DEKA(Unit<Q> unit)
      +
      +
      US alias for DECA.
      +
      +
      Unit<?>
      +
      Unit.divide(Unit<?> divisor)
      +
      +
      Returns the quotient of this unit with the one specified.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.EXA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1018
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.EXBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10246 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.FEMTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-15
      +
      + +
      Unit.getConverterTo(Unit<Q> that)
      +
      +
      Returns a converter of numeric values from this unit to another unit of same type.
      +
      + +
      Unit.getConverterToAny(Unit<?> that)
      +
      +
      Returns a converter from this unit to the specified unit of type unknown.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.GIBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10243 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.GIGA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 109
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.HECTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 102
      +
      +
      boolean
      +
      Unit.isCompatible(Unit<?> that)
      +
      +
      Indicates if this unit is compatible with the unit specified.
      +
      +
      boolean
      +
      Unit.isEquivalentTo(Unit<Q> that)
      +
      +
      Indicates if this unit represents the same quantity than the given unit, ignoring name and symbols.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.KIBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1024 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.KILO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 103
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.MEBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10242 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.MEGA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 106
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.MICRO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-6
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.MILLI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-3
      +
      +
      Unit<?>
      +
      Unit.multiply(Unit<?> multiplier)
      +
      +
      Returns the product of this unit with the one specified.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.NANO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-9
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.PEBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10245 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.PETA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1015
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.PICO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-12
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.QUECTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-30
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.QUETTA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1030
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.RONNA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1027
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.RONTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-27
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.TEBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10244 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.TERA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1012
      +
      + +
      Quantity.to(Unit<Q> unit)
      +
      +
      Returns this Quantity converted into another (compatible) + Unit.
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.YOBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10248 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.YOCTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-24
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.YOTTA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1024
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      BinaryPrefix.ZEBI(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10247 (binary prefix).
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.ZEPTO(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 10-21
      +
      +
      static <Q extends Quantity<Q>>
      Unit<Q>
      +
      MetricPrefix.ZETTA(Unit<Q> unit)
      +
      +
      Returns the specified unit multiplied by the factor 1021
      +
      +
      +
      +
    • +
    • +
      +

      Uses of Unit in javax.measure.format

      +
      Methods in javax.measure.format that return Unit
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      +
      Unit<?>
      +
      UnitFormat.parse(CharSequence csq)
      +
      +
      Parses the text into an instance of Unit.
      +
      +
      Unit<?>
      +
      UnitFormat.parse(CharSequence csq, + ParsePosition pos)
      +
      +
      Parses a portion of the specified CharSequence from the specified position to produce a Unit.
      +
      +
      +
      Methods in javax.measure.format with parameters of type Unit
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      + +
      UnitFormat.format(Unit<?> unit)
      +
      +
      Formats the specified Unit.
      +
      + +
      UnitFormat.format(Unit<?> unit, + Appendable appendable)
      +
      +
      Formats the specified Unit.
      +
      +
      void
      +
      UnitFormat.label(Unit<?> unit, + String label)
      +
      +
      Attaches a system-wide label to the specified Unit.
      +
      +
      +
      +
    • +
    • +
      +

      Uses of Unit in javax.measure.spi

      +
      Methods in javax.measure.spi that return Unit
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      + +
      QuantityFactory.getSystemUnit()
      +
      +
      Returns the system unit for quantities produced by this factory or null if unknown.
      +
      +
      <Q extends Quantity<Q>>
      Unit<Q>
      +
      SystemOfUnits.getUnit(Class<Q> quantityType)
      +
      +
      Returns the default unit for the specified quantity or null if none is defined for the given quantity in this unit system.
      +
      +
      Unit<?>
      +
      SystemOfUnits.getUnit(String string)
      +
      +
      Returns a unit with the given string representation or null if none is found in this unit system.
      +
      +
      +
      Methods in javax.measure.spi that return types with arguments of type Unit
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      +
      Set<? extends Unit<?>>
      +
      SystemOfUnits.getUnits()
      +
      +
      Returns a read only view over the units explicitly defined by this system.
      +
      +
      Set<? extends Unit<?>>
      +
      SystemOfUnits.getUnits(Dimension dimension)
      +
      +
      Returns the units defined in this system having the specified dimension (convenience method).
      +
      +
      +
      Methods in javax.measure.spi with parameters of type Unit
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      + +
      QuantityFactory.create(Number value, + Unit<Q> unit)
      +
      +
      Returns the quantity for the specified number stated in the specified unit.
      +
      + +
      QuantityFactory.create(Number value, + Unit<Q> unit, + Quantity.Scale scale)
      +
      +
      Returns the quantity for the specified number stated in the specified unit and scale.
      +
      +
      +
      +
    • +
    +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/class-use/UnitConverter.html b/docs/site/apidocs/javax/measure/class-use/UnitConverter.html new file mode 100644 index 00000000..68972095 --- /dev/null +++ b/docs/site/apidocs/javax/measure/class-use/UnitConverter.html @@ -0,0 +1,135 @@ + + + + +Uses of Interface javax.measure.UnitConverter (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.UnitConverter

    +
    +
    Packages that use UnitConverter
    +
    +
    Package
    +
    Description
    + +
    +
    Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/format/MeasurementParseException.html b/docs/site/apidocs/javax/measure/format/MeasurementParseException.html new file mode 100644 index 00000000..e882b6ad --- /dev/null +++ b/docs/site/apidocs/javax/measure/format/MeasurementParseException.html @@ -0,0 +1,281 @@ + + + + +MeasurementParseException (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class MeasurementParseException

    +
    +
    Object +
    Throwable +
    Exception +
    RuntimeException +
    MeasurementException +
    MeasurementParseException
    +
    +
    +
    +
    +
    +
    +
    +
    All Implemented Interfaces:
    +
    Serializable
    +
    +
    + +
    Signals that an error has been reached unexpectedly while parsing.
    +
    +
    Since:
    +
    2.0
    +
    Version:
    +
    1.1, March 27, 2018
    +
    Author:
    +
    Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        MeasurementParseException

        +
        public MeasurementParseException(String message, + CharSequence parsedData, + int position)
        +
        Constructs a MeasurementParseException with the specified detail message, parsed text and index. A detail message is a String that describes + this particular exception.
        +
        +
        Parameters:
        +
        message - the detail message
        +
        parsedData - the parsed text, should not be null
        +
        position - the position where the error was found while parsing.
        +
        +
        +
      • +
      • +
        +

        MeasurementParseException

        +
        public MeasurementParseException(CharSequence parsedData, + int position)
        +
        Constructs a MeasurementParseException with the parsed text and offset. A detail message is a String that describes this particular exception.
        +
        +
        Parameters:
        +
        parsedData - the parsed text, should not be null
        +
        position - the position where the error is found while parsing.
        +
        +
        +
      • +
      • +
        +

        MeasurementParseException

        + +
        Constructs a MeasurementParseException with the specified cause.
        +
        +
        Parameters:
        +
        cause - the root cause
        +
        +
        +
      • +
      • +
        +

        MeasurementParseException

        + +
        Constructs a MeasurementParseException with the specified detail message.
        +
        +
        Parameters:
        +
        message - the detail message
        +
        +
        +
      • +
      +
      +
    • + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        getPosition

        +
        public int getPosition()
        +
        Returns the position where the error was found.
        +
        +
        Returns:
        +
        the position of the error
        +
        +
        +
      • +
      • +
        +

        getParsedString

        + +
        Returns the string that was being parsed.
        +
        +
        Returns:
        +
        the parsed string, or null, if null was passed as input.
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/format/QuantityFormat.html b/docs/site/apidocs/javax/measure/format/QuantityFormat.html new file mode 100644 index 00000000..695bd104 --- /dev/null +++ b/docs/site/apidocs/javax/measure/format/QuantityFormat.html @@ -0,0 +1,256 @@ + + + + +QuantityFormat (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface QuantityFormat

    +
    +
    +
    +
    public interface QuantityFormat
    +
    Formats instances of Quantity. + +
    +
    Synchronization
    +
    + Instances of this class are not required to be thread-safe. It is recommended to use separate format instances for each thread. If multiple threads + access a format concurrently, it must be synchronized externally.
    +
    +
    Since:
    +
    2.0
    +
    Version:
    +
    1.1, 20 May, 2023
    +
    Author:
    +
    Werner Keil, Thodoris Bais
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        format

        +
        Appendable format(Quantity<?> quantity, + Appendable destination) + throws IOException
        +
        Formats the specified quantity into an Appendable.
        +
        +
        Parameters:
        +
        quantity - the quantity to format.
        +
        destination - the appendable destination.
        +
        Returns:
        +
        the specified Appendable.
        +
        Throws:
        +
        IOException - if an I/O exception occurs.
        +
        +
        +
      • +
      • +
        +

        format

        +
        String format(Quantity<?> quantity)
        +
        Formats the specified Quantity.
        +
        +
        Parameters:
        +
        quantity - the Quantity to format, not null
        +
        Returns:
        +
        the string representation using the settings of this QuantityFormat.
        +
        +
        +
      • +
      • +
        +

        parse

        + +
        Parses a portion of the specified CharSequence from the specified position to produce a Quantity. + If parsing succeeds, then the index of the pos argument is updated to the index after the last character used.
        +
        +
        Parameters:
        +
        csq - the CharSequence to parse.
        +
        pos - a ParsePosition object holding the current parsing index and error parsing index information as described above.
        +
        Returns:
        +
        the quantity parsed from the specified character sub-sequence.
        +
        Throws:
        +
        MeasurementParseException - if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
        +
        +
        +
      • +
      • +
        +

        parse

        + +
        Parses the specified CharSequence to produce a Quantity. +

        + The parse must complete normally and parse the entire text. If the parse completes without reading the entire length of the text, an exception + is thrown. If any other problem occurs during parsing, an exception is thrown. +

        +
        +
        Parameters:
        +
        csq - the CharSequence to parse.
        +
        Returns:
        +
        the quantity parsed from the specified character sub-sequence.
        +
        Throws:
        +
        MeasurementParseException - if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
        +
        +
        +
      • +
      • +
        +

        isLocaleSensitive

        +
        default boolean isLocaleSensitive()
        +
        Returns true if this QuantityFormat depends on a Locale to perform its tasks. +

        + In environments that do not support a Locale, e.g. Java ME, this usually returns false. +

        +
        +
        Returns:
        +
        whether this format depends on the locale.
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/format/UnitFormat.html b/docs/site/apidocs/javax/measure/format/UnitFormat.html new file mode 100644 index 00000000..b9727d12 --- /dev/null +++ b/docs/site/apidocs/javax/measure/format/UnitFormat.html @@ -0,0 +1,299 @@ + + + + +UnitFormat (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface UnitFormat

    +
    +
    +
    +
    public interface UnitFormat
    +
    Formats instances of Unit to a String or Appendable and parses a CharSequence to a Unit. + +
    +
    Synchronization
    +
    +

    + Instances of this class are not required to be thread-safe. It is recommended to use separate format instances for each thread. If multiple threads + access a format concurrently, it must be synchronized externally. +

    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    2.2, May 20, 2023
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        format

        +
        Appendable format(Unit<?> unit, + Appendable appendable) + throws IOException
        +
        Formats the specified Unit.
        +
        +
        Parameters:
        +
        unit - the Unit to format, not null
        +
        appendable - the appendable destination.
        +
        Returns:
        +
        the appendable destination passed in with formatted text appended.
        +
        Throws:
        +
        IOException - if an error occurs while writing to the destination.
        +
        +
        +
      • +
      • +
        +

        format

        +
        String format(Unit<?> unit)
        +
        Formats the specified Unit.
        +
        +
        Parameters:
        +
        unit - the Unit to format, not null
        +
        Returns:
        +
        the string representation using the settings of this UnitFormat.
        +
        +
        +
      • +
      • +
        +

        label

        +
        void label(Unit<?> unit, + String label)
        +
        Attaches a system-wide label to the specified Unit. +

        + This method overrides the previous unit's label (e.g. label from unit database or unit system) as units may only have one label. Depending on the + UnitFormat implementation, this call may be ignored if the particular unit already has a label. +

        + If a UnitFormat implementation is explicitly immutable, similar to e.g. the result of Collections.unmodifiableList(), + then an UnsupportedOperationException may be thrown upon this call. +

        + Since UnitFormat implementations often apply the Singleton pattern, system-wide means, the label applies to every instance of + UnitFormatA implementing UnitFormat in this case, but not every instance of UnitFormatB or UnitFormatC both + also implementing UnitFormat. If a UnitFormat #isLocaleSensitive() it is up to the implementation, whether the label is + ignored, applied in a local-neutral manner (in addition to its local-sensitive information) or locale-specific. +

        +
        +
        Parameters:
        +
        unit - the unit being labeled.
        +
        label - the new label for this unit.
        +
        Throws:
        +
        IllegalArgumentException - if the label is not a valid identifier. This may include characters not supported by a particular UnitFormat implementation + (e.g. only ASCII characters for certain devices)
        +
        UnsupportedOperationException - if the label operation is not supported by this UnitFormat
        +
        +
        +
      • +
      • +
        +

        isLocaleSensitive

        +
        default boolean isLocaleSensitive()
        +
        Returns true if this UnitFormat depends on a Locale to perform its tasks. +

        + In environments that do not support a Locale, e.g. Java ME, this usually returns false. +

        +
        +
        Returns:
        +
        Whether this format depends on a locale.
        +
        +
        +
      • +
      • +
        +

        parse

        + +
        Parses a portion of the specified CharSequence from the specified position to produce a Unit. + If parsing succeeds, then the index of the pos argument is updated to the index after the last character used.
        +
        +
        Parameters:
        +
        csq - the CharSequence to parse.
        +
        pos - a ParsePosition object holding the current parsing index and error parsing index information as described above.
        +
        Returns:
        +
        the unit parsed from the specified character sub-sequence.
        +
        Throws:
        +
        MeasurementParseException - if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
        +
        Since:
        +
        2.0
        +
        +
        +
      • +
      • +
        +

        parse

        + +
        Parses the text into an instance of Unit. +

        + The parse must complete normally and parse the entire text. If the parse completes without reading the entire length of the text, an exception + is thrown. If any other problem occurs during parsing, an exception is thrown. +

        +
        +
        Parameters:
        +
        csq - the CharSequence to parse.
        +
        Returns:
        +
        the unit parsed from the specified character sequence.
        +
        Throws:
        +
        MeasurementParseException - if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
        +
        UnsupportedOperationException - if the UnitFormat is unable to parse.
        +
        Since:
        +
        2.0
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/format/class-use/MeasurementParseException.html b/docs/site/apidocs/javax/measure/format/class-use/MeasurementParseException.html new file mode 100644 index 00000000..e04bedf7 --- /dev/null +++ b/docs/site/apidocs/javax/measure/format/class-use/MeasurementParseException.html @@ -0,0 +1,108 @@ + + + + +Uses of Class javax.measure.format.MeasurementParseException (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    javax.measure.format.MeasurementParseException

    +
    +
    Packages that use MeasurementParseException
    +
    +
    Package
    +
    Description
    + +
    +
    [OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/format/class-use/QuantityFormat.html b/docs/site/apidocs/javax/measure/format/class-use/QuantityFormat.html new file mode 100644 index 00000000..7b3fc177 --- /dev/null +++ b/docs/site/apidocs/javax/measure/format/class-use/QuantityFormat.html @@ -0,0 +1,96 @@ + + + + +Uses of Interface javax.measure.format.QuantityFormat (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.format.QuantityFormat

    +
    +
    Packages that use QuantityFormat
    +
    +
    Package
    +
    Description
    + +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/format/class-use/UnitFormat.html b/docs/site/apidocs/javax/measure/format/class-use/UnitFormat.html new file mode 100644 index 00000000..81776409 --- /dev/null +++ b/docs/site/apidocs/javax/measure/format/class-use/UnitFormat.html @@ -0,0 +1,102 @@ + + + + +Uses of Interface javax.measure.format.UnitFormat (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.format.UnitFormat

    +
    +
    Packages that use UnitFormat
    +
    +
    Package
    +
    Description
    + +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/format/package-summary.html b/docs/site/apidocs/javax/measure/format/package-summary.html new file mode 100644 index 00000000..ef99f051 --- /dev/null +++ b/docs/site/apidocs/javax/measure/format/package-summary.html @@ -0,0 +1,138 @@ + + + + +javax.measure.format (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Package javax.measure.format

    +
    +
    +
    package javax.measure.format
    +
    +
    [OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    2.0, July 7, 2019
    +
    Author:
    +
    Werner Keil
    +
    +
    +
    +
      +
    • + +
    • +
    • +
      +
      +
      +
      +
      Class
      +
      Description
      + +
      +
      Signals that an error has been reached unexpectedly while parsing.
      +
      + +
      +
      Formats instances of Quantity.
      +
      + +
      +
      Formats instances of Unit to a String or Appendable and parses a CharSequence to a Unit.
      +
      +
      +
      +
      +
    • +
    +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/format/package-tree.html b/docs/site/apidocs/javax/measure/format/package-tree.html new file mode 100644 index 00000000..1523c581 --- /dev/null +++ b/docs/site/apidocs/javax/measure/format/package-tree.html @@ -0,0 +1,99 @@ + + + + +javax.measure.format Class Hierarchy (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Hierarchy For Package javax.measure.format

    +Package Hierarchies: + +
    +
    +

    Class Hierarchy

    + +
    +
    +

    Interface Hierarchy

    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/format/package-use.html b/docs/site/apidocs/javax/measure/format/package-use.html new file mode 100644 index 00000000..1edab403 --- /dev/null +++ b/docs/site/apidocs/javax/measure/format/package-use.html @@ -0,0 +1,109 @@ + + + + +Uses of Package javax.measure.format (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Package
    javax.measure.format

    +
    +
    Packages that use javax.measure.format
    +
    +
    Package
    +
    Description
    + +
    +
    [OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
    +
    + +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/package-summary.html b/docs/site/apidocs/javax/measure/package-summary.html new file mode 100644 index 00000000..9261ee42 --- /dev/null +++ b/docs/site/apidocs/javax/measure/package-summary.html @@ -0,0 +1,178 @@ + + + + +javax.measure (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Package javax.measure

    +
    +
    +
    package javax.measure
    +
    +
    Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units. + +

    The core interfaces of this package are Dimension, Prefix, Quantity and Unit.

    +

    The package also contains the most common Prefix implementations MetricPrefix and BinaryPrefix.

    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.7, February 4, 2019
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil, Otávio Gonçalves de Santana
    +
    +
    +
    +
      +
    • + +
    • +
    • +
      +
      +
      +
      +
      Class
      +
      Description
      + +
      +
      Provides support for common binary prefixes to be used by units.
      +
      + +
      +
      Represents the dimension of a unit.
      +
      + +
      +
      Signals that a problem of some sort has occurred due to incommensurable of some quantities/units.
      +
      + +
      +
      This error is used to indicate serious problems with creating, retrieving and manipulating units of measurement objects.
      +
      + +
      +
      Exception used to indicate a problem while dealing with units of measurement.
      +
      + +
      +
      Provides support for the 24 prefixes used in the metric system (decimal multiples and submultiples of units).
      +
      + +
      +
      A unit prefix is a specifier or mnemonic that is prepended to units of measurement to indicate multiples or fractions of the units.
      +
      +
      Quantity<Q extends Quantity<Q>>
      +
      +
      Represents a quantitative property of a phenomenon, body, or substance, that + can be quantified by measurement.
      +
      + +
      +
      The scale of a Quantity, either ABSOLUTE or RELATIVE.
      +
      + +
      +
      Signals that a problem of some sort has occurred due to the impossibility of constructing a converter between two units.
      +
      +
      Unit<Q extends Quantity<Q>>
      +
      +
      Represents a determinate quantity (as of length, time, heat, or value) adopted as a standard of measurement.
      +
      + +
      +
      A converter of numeric values between different units.
      +
      +
      +
      +
      +
    • +
    +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/package-tree.html b/docs/site/apidocs/javax/measure/package-tree.html new file mode 100644 index 00000000..811ad9e6 --- /dev/null +++ b/docs/site/apidocs/javax/measure/package-tree.html @@ -0,0 +1,124 @@ + + + + +javax.measure Class Hierarchy (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Hierarchy For Package javax.measure

    +Package Hierarchies: + +
    +
    +

    Class Hierarchy

    + +
    +
    +

    Interface Hierarchy

    + +
    +
    +

    Enum Hierarchy

    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/package-use.html b/docs/site/apidocs/javax/measure/package-use.html new file mode 100644 index 00000000..161f3b87 --- /dev/null +++ b/docs/site/apidocs/javax/measure/package-use.html @@ -0,0 +1,209 @@ + + + + +Uses of Package javax.measure (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Package
    javax.measure

    +
    +
    Packages that use javax.measure
    +
    +
    Package
    +
    Description
    + +
    +
    Specifies Java packages for the programmatic, type safe handling + of quantities and their expression as values of units.
    +
    + +
    +
    [OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
    +
    + +
    +
    [OPTIONAL] Provides quantitative properties or attributes of thing such as + mass, time, distance, heat, and angular separation.
    +
    + +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +
    +
      +
    • +
      +
      Classes in javax.measure used by javax.measure
      +
      +
      Class
      +
      Description
      + +
      +
      Provides support for common binary prefixes to be used by units.
      +
      + +
      +
      Represents the dimension of a unit.
      +
      + +
      +
      Signals that a problem of some sort has occurred due to incommensurable of some quantities/units.
      +
      + +
      +
      Exception used to indicate a problem while dealing with units of measurement.
      +
      + +
      +
      Provides support for the 24 prefixes used in the metric system (decimal multiples and submultiples of units).
      +
      + +
      +
      A unit prefix is a specifier or mnemonic that is prepended to units of measurement to indicate multiples or fractions of the units.
      +
      + +
      +
      Represents a quantitative property of a phenomenon, body, or substance, that + can be quantified by measurement.
      +
      + +
      +
      The scale of a Quantity, either ABSOLUTE or RELATIVE.
      +
      + +
      +
      Signals that a problem of some sort has occurred due to the impossibility of constructing a converter between two units.
      +
      + +
      +
      Represents a determinate quantity (as of length, time, heat, or value) adopted as a standard of measurement.
      +
      + +
      +
      A converter of numeric values between different units.
      +
      +
      +
      +
    • +
    • +
      + +
      +
      Class
      +
      Description
      + +
      +
      Exception used to indicate a problem while dealing with units of measurement.
      +
      + +
      +
      Represents a quantitative property of a phenomenon, body, or substance, that + can be quantified by measurement.
      +
      + +
      +
      Represents a determinate quantity (as of length, time, heat, or value) adopted as a standard of measurement.
      +
      +
      +
      +
    • +
    • +
      + +
      +
      Class
      +
      Description
      + +
      +
      Represents a quantitative property of a phenomenon, body, or substance, that + can be quantified by measurement.
      +
      +
      +
      +
    • +
    • +
      +
      Classes in javax.measure used by javax.measure.spi
      +
      +
      Class
      +
      Description
      + +
      +
      Represents the dimension of a unit.
      +
      + +
      +
      A unit prefix is a specifier or mnemonic that is prepended to units of measurement to indicate multiples or fractions of the units.
      +
      + +
      +
      Represents a quantitative property of a phenomenon, body, or substance, that + can be quantified by measurement.
      +
      + +
      +
      The scale of a Quantity, either ABSOLUTE or RELATIVE.
      +
      + +
      +
      Represents a determinate quantity (as of length, time, heat, or value) adopted as a standard of measurement.
      +
      +
      +
      +
    • +
    +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/Acceleration.html b/docs/site/apidocs/javax/measure/quantity/Acceleration.html new file mode 100644 index 00000000..deffe059 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/Acceleration.html @@ -0,0 +1,130 @@ + + + + +Acceleration (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface Acceleration

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<Acceleration>
    +
    +
    +
    public interface Acceleration +extends Quantity<Acceleration>
    +
    Rate of change of velocity with respect to time. The metric system unit for this quantity is "m/s²" (metre per square second).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.2
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/AmountOfSubstance.html b/docs/site/apidocs/javax/measure/quantity/AmountOfSubstance.html new file mode 100644 index 00000000..8408c49f --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/AmountOfSubstance.html @@ -0,0 +1,145 @@ + + + + +AmountOfSubstance (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface AmountOfSubstance

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<AmountOfSubstance>
    +
    +
    +
    public interface AmountOfSubstance +extends Quantity<AmountOfSubstance>
    +
    Number of elementary entities (molecules, for example) of a substance. The metric system unit for this quantity is "mol" (mole). + + The mole, symbol mol, is the SI unit of amount of substance. One mole contains + exactly 6.022 140 76 × 10²³ elementary entities. This number is the fixed numerical + value of the Avogadro constant, NA, when expressed in the unit mol⁻¹ and is called + the Avogadro number. + + The amount of substance, symbol n, of a system is a measure of the number of + specified elementary entities. An elementary entity may be an atom, a molecule, an + ion, an electron, any other particle or specified group of particles. + This definition implies the exact relation Nₐ = 6.022 140 76 × 10²³ mol⁻¹. + + Inverting this relation gives an exact expression for the mole in terms of the defining constant NA: + + 1 mol = 6.02214076 × 10²³ / Nₐ +
    +
    +
    API Note:
    SI Base Unit
    +
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    2.1
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil, Thodoris Bais
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/Angle.html b/docs/site/apidocs/javax/measure/quantity/Angle.html new file mode 100644 index 00000000..b88eaf8f --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/Angle.html @@ -0,0 +1,133 @@ + + + + +Angle (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface Angle

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<Angle>
    +
    +
    +
    public interface Angle +extends Quantity<Angle>
    +
    Figure formed by two lines diverging from a common point. The metric system unit for this quantity is "rad" (radian). +
    +
    +
    API Note:
    SI Derived Unit with special name and symbol
    +
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    2.0
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/Area.html b/docs/site/apidocs/javax/measure/quantity/Area.html new file mode 100644 index 00000000..1c939894 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/Area.html @@ -0,0 +1,133 @@ + + + + +Area (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface Area

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<Area>
    +
    +
    +
    public interface Area +extends Quantity<Area>
    +
    Extent of a planar region or of the surface of a solid measured in square units. The metric system unit for this quantity is "m²" (square metre). +
    +
    +
    API Note:
    SI Derived Unit
    +
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    2.0
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/CatalyticActivity.html b/docs/site/apidocs/javax/measure/quantity/CatalyticActivity.html new file mode 100644 index 00000000..c8d9dd5c --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/CatalyticActivity.html @@ -0,0 +1,121 @@ + + + + +CatalyticActivity (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface CatalyticActivity

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<CatalyticActivity>
    +
    +
    +
    public interface CatalyticActivity +extends Quantity<CatalyticActivity>
    +
    Catalytic activity. The metric system unit for this quantity is "kat" (katal).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.0
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/Dimensionless.html b/docs/site/apidocs/javax/measure/quantity/Dimensionless.html new file mode 100644 index 00000000..718fb80f --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/Dimensionless.html @@ -0,0 +1,121 @@ + + + + +Dimensionless (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface Dimensionless

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<Dimensionless>
    +
    +
    +
    public interface Dimensionless +extends Quantity<Dimensionless>
    +
    Dimensionless quantity.
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.0
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/ElectricCapacitance.html b/docs/site/apidocs/javax/measure/quantity/ElectricCapacitance.html new file mode 100644 index 00000000..2eab5b78 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/ElectricCapacitance.html @@ -0,0 +1,121 @@ + + + + +ElectricCapacitance (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface ElectricCapacitance

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<ElectricCapacitance>
    +
    +
    + +
    Electric capacitance. The metric system unit for this quantity is "F" (Farad).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.0
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/ElectricCharge.html b/docs/site/apidocs/javax/measure/quantity/ElectricCharge.html new file mode 100644 index 00000000..dc0eef98 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/ElectricCharge.html @@ -0,0 +1,127 @@ + + + + +ElectricCharge (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface ElectricCharge

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<ElectricCharge>
    +
    +
    +
    public interface ElectricCharge +extends Quantity<ElectricCharge>
    +
    Electric charge. The metric system unit for this quantity is "C" (Coulomb).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.0
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/ElectricConductance.html b/docs/site/apidocs/javax/measure/quantity/ElectricConductance.html new file mode 100644 index 00000000..087005e2 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/ElectricConductance.html @@ -0,0 +1,121 @@ + + + + +ElectricConductance (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface ElectricConductance

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<ElectricConductance>
    +
    +
    + +
    Electric conductance. The metric system unit for this quantity "S" (Siemens).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.0
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/ElectricCurrent.html b/docs/site/apidocs/javax/measure/quantity/ElectricCurrent.html new file mode 100644 index 00000000..08a9ff11 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/ElectricCurrent.html @@ -0,0 +1,144 @@ + + + + +ElectricCurrent (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface ElectricCurrent

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<ElectricCurrent>
    +
    +
    +
    public interface ElectricCurrent +extends Quantity<ElectricCurrent>
    +
    Amount of electric charge flowing past a specified circuit point per unit time. The metric system unit for this quantity is "A" (Ampere). + + The ampere, symbol A, is the SI unit of electric current. It is defined by taking the + fixed numerical value of the elementary charge e to be 1.602 176 634 × 10⁻¹⁹ when + expressed in the unit C, which is equal to A s, where the second is defined in terms + of ∆νCs. + + This definition implies the exact relation e = 1.602 176 634 × 10⁻¹⁹ A s. Inverting this + relation gives an exact expression for the unit ampere in terms of the defining constants e + and ∆νCs: + + 1 A = (e / 1.602 176 634 × 10⁻¹⁹) s⁻¹ +
    +
    +
    API Note:
    SI Base Unit
    +
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    2.1
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil, Thodoris Bais
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/ElectricInductance.html b/docs/site/apidocs/javax/measure/quantity/ElectricInductance.html new file mode 100644 index 00000000..9c4db702 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/ElectricInductance.html @@ -0,0 +1,121 @@ + + + + +ElectricInductance (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface ElectricInductance

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<ElectricInductance>
    +
    +
    + +
    Electric inductance. The metric system unit for this quantity is "H" (Henry).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.0
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/ElectricPotential.html b/docs/site/apidocs/javax/measure/quantity/ElectricPotential.html new file mode 100644 index 00000000..b3afcf63 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/ElectricPotential.html @@ -0,0 +1,121 @@ + + + + +ElectricPotential (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface ElectricPotential

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<ElectricPotential>
    +
    +
    +
    public interface ElectricPotential +extends Quantity<ElectricPotential>
    +
    Electric potential or electromotive force. The metric system unit for this quantity is "V" (Volt).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.0
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/ElectricResistance.html b/docs/site/apidocs/javax/measure/quantity/ElectricResistance.html new file mode 100644 index 00000000..26ec45e3 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/ElectricResistance.html @@ -0,0 +1,121 @@ + + + + +ElectricResistance (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface ElectricResistance

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<ElectricResistance>
    +
    +
    + +
    Electric resistance. The metric system unit for this quantity is "Ohm" (Ω).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.0
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/Energy.html b/docs/site/apidocs/javax/measure/quantity/Energy.html new file mode 100644 index 00000000..94ec3edd --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/Energy.html @@ -0,0 +1,129 @@ + + + + +Energy (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface Energy

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<Energy>
    +
    +
    +
    public interface Energy +extends Quantity<Energy>
    +
    Capacity of a physical system to do work. The metric system unit for this quantity "J" (Joule).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.0
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/Force.html b/docs/site/apidocs/javax/measure/quantity/Force.html new file mode 100644 index 00000000..674be32f --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/Force.html @@ -0,0 +1,129 @@ + + + + +Force (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface Force

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<Force>
    +
    +
    +
    public interface Force +extends Quantity<Force>
    +
    Quantity that tends to produce an acceleration of a body in the direction of its application. The metric system unit for this quantity is "N" + (Newton).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.1
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/Frequency.html b/docs/site/apidocs/javax/measure/quantity/Frequency.html new file mode 100644 index 00000000..62d940f4 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/Frequency.html @@ -0,0 +1,127 @@ + + + + +Frequency (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface Frequency

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<Frequency>
    +
    +
    +
    public interface Frequency +extends Quantity<Frequency>
    +
    Number of times a specified phenomenon occurs within a specified interval. The metric system unit for this quantity is "Hz" (Hertz).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.0
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/Illuminance.html b/docs/site/apidocs/javax/measure/quantity/Illuminance.html new file mode 100644 index 00000000..d1fe4a5d --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/Illuminance.html @@ -0,0 +1,121 @@ + + + + +Illuminance (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface Illuminance

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<Illuminance>
    +
    +
    +
    public interface Illuminance +extends Quantity<Illuminance>
    +
    Illuminance. The metric system unit for this quantity is "lx" (lux).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.0
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/Length.html b/docs/site/apidocs/javax/measure/quantity/Length.html new file mode 100644 index 00000000..16551b8f --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/Length.html @@ -0,0 +1,147 @@ + + + + +Length (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface Length

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<Length>
    +
    +
    +
    public interface Length +extends Quantity<Length>
    +
    Extent of something along its greatest dimension or the extent of space between two objects or places. + The metric system unit for this quantity is "m" (metre). + + The metre, symbol m, is the SI unit of length. It is defined by taking the fixed + numerical value of the speed of light in vacuum c to be 299 792 458 when expressed + in the unit m s⁻¹, where the second is defined in terms of the caesium frequency + ∆νCs. + + This definition implies the exact relation c = 299 792 458 m s⁻¹. Inverting this relation + gives an exact expression for the metre in terms of the defining constants c and ∆νCs: + + 1 m = (c / 299 792 458)s = 9 192 631 770 c / 299 792 458 ∆νCs ≈ 30.663 319 c / ∆νCs +
    +
    +
    API Note:
    SI Base Unit
    +
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    2.1
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil, Thodoris Bais
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/LuminousFlux.html b/docs/site/apidocs/javax/measure/quantity/LuminousFlux.html new file mode 100644 index 00000000..85075cca --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/LuminousFlux.html @@ -0,0 +1,121 @@ + + + + +LuminousFlux (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface LuminousFlux

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<LuminousFlux>
    +
    +
    +
    public interface LuminousFlux +extends Quantity<LuminousFlux>
    +
    Luminous flux. The metric system unit for this quantity is "lm" (lumen).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.1
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/LuminousIntensity.html b/docs/site/apidocs/javax/measure/quantity/LuminousIntensity.html new file mode 100644 index 00000000..1f9220a1 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/LuminousIntensity.html @@ -0,0 +1,144 @@ + + + + +LuminousIntensity (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface LuminousIntensity

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<LuminousIntensity>
    +
    +
    +
    public interface LuminousIntensity +extends Quantity<LuminousIntensity>
    +
    Luminous flux density per solid angle as measured in a given direction relative to the emitting source. + The metric system unit for this quantity is "cd" (candela). + + The candela, symbol cd, is the SI unit of luminous intensity in a given direction. It is + defined by taking the fixed numerical value of the luminous efficacy of + monochromatic radiation of frequency 540 × 10¹² Hz, Kcd, to be 683 when expressed + in the unit lm W−1, which is equal to cd sr W⁻¹, or cd sr kg⁻¹ m⁻² s³, where the kilogram, + metre and second are defined in terms of h, c and ∆νCs. + + This definition implies the exact relation Kcd = 683 cd sr kg⁻¹ m⁻² s³ for monochromatic + radiation of frequency ν = 540 × 10¹² Hz. Inverting this relation gives an exact expression + for the candela in terms of the defining constants Kcd, h and ∆νCs: + + 1 cd = (Kcd / 683) kg m² s⁻³ sr⁻¹ +
    +
    +
    API Note:
    SI Base Unit
    +
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    2.1
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil, Thodoris Bais
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/MagneticFlux.html b/docs/site/apidocs/javax/measure/quantity/MagneticFlux.html new file mode 100644 index 00000000..a503349b --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/MagneticFlux.html @@ -0,0 +1,121 @@ + + + + +MagneticFlux (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface MagneticFlux

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<MagneticFlux>
    +
    +
    +
    public interface MagneticFlux +extends Quantity<MagneticFlux>
    +
    Magnetic flux. The metric system unit for this quantity is "Wb" (Weber).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.0
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/MagneticFluxDensity.html b/docs/site/apidocs/javax/measure/quantity/MagneticFluxDensity.html new file mode 100644 index 00000000..d8004440 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/MagneticFluxDensity.html @@ -0,0 +1,121 @@ + + + + +MagneticFluxDensity (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface MagneticFluxDensity

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<MagneticFluxDensity>
    +
    +
    + +
    Magnetic flux density. The metric system unit for this quantity is "T" (Tesla).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.0
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/Mass.html b/docs/site/apidocs/javax/measure/quantity/Mass.html new file mode 100644 index 00000000..0d7a571e --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/Mass.html @@ -0,0 +1,144 @@ + + + + +Mass (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface Mass

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<Mass>
    +
    +
    +
    public interface Mass +extends Quantity<Mass>
    +
    Measure of the quantity of matter that a body or an object contains. The mass of the body is not dependent on gravity and therefore is different + from but proportional to its weight. The metric system unit for this quantity is "kg" (kilogram). + + The kilogram, symbol kg, is the SI unit of mass. It is defined by taking the fixed + numerical value of the Planck constant h to be 6.626 070 15 × 10⁻³⁴ when expressed + in the unit J s, which is equal to kg m² s−1, where the metre and the second are + defined in terms of c and ∆νCs. + + This definition implies the exact relation h = 6.626 070 15 × 10−34 kg m² s⁻¹. Inverting this + relation gives an exact expression for the kilogram in terms of the three defining constants + h, ∆νCs and c: + + 1 kg = (h / 6.626 070 15 × 10⁻³⁴) m⁻² s +
    +
    +
    API Note:
    SI Base Unit
    +
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    2.0
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil, Thodoris Bais
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/Power.html b/docs/site/apidocs/javax/measure/quantity/Power.html new file mode 100644 index 00000000..f0e5b551 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/Power.html @@ -0,0 +1,128 @@ + + + + +Power (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface Power

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<Power>
    +
    +
    +
    public interface Power +extends Quantity<Power>
    +
    Rate at which work is done. The metric system unit for this quantity is "W" (Watt).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.0
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/Pressure.html b/docs/site/apidocs/javax/measure/quantity/Pressure.html new file mode 100644 index 00000000..0951a8f6 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/Pressure.html @@ -0,0 +1,128 @@ + + + + +Pressure (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface Pressure

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<Pressure>
    +
    +
    +
    public interface Pressure +extends Quantity<Pressure>
    +
    Force applied uniformly over a surface. The metric system unit for this quantity is "Pa" (Pascal).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.0
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/RadiationDoseAbsorbed.html b/docs/site/apidocs/javax/measure/quantity/RadiationDoseAbsorbed.html new file mode 100644 index 00000000..01784485 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/RadiationDoseAbsorbed.html @@ -0,0 +1,127 @@ + + + + +RadiationDoseAbsorbed (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface RadiationDoseAbsorbed

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<RadiationDoseAbsorbed>
    +
    +
    + +
    Amount of energy deposited per unit of mass. The system unit for this quantity is "Gy" (Gray).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.1
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/RadiationDoseEffective.html b/docs/site/apidocs/javax/measure/quantity/RadiationDoseEffective.html new file mode 100644 index 00000000..ab4cc510 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/RadiationDoseEffective.html @@ -0,0 +1,122 @@ + + + + +RadiationDoseEffective (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface RadiationDoseEffective

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<RadiationDoseEffective>
    +
    +
    + +
    Effective (or "equivalent") dose of radiation received by a human or some other living organism. The metric system unit for this quantity is "Sv" + (Sievert).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.0
    +
    Author:
    +
    Jean-Marie Dautelle
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/Radioactivity.html b/docs/site/apidocs/javax/measure/quantity/Radioactivity.html new file mode 100644 index 00000000..a7395664 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/Radioactivity.html @@ -0,0 +1,121 @@ + + + + +Radioactivity (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface Radioactivity

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<Radioactivity>
    +
    +
    +
    public interface Radioactivity +extends Quantity<Radioactivity>
    +
    Radioactive activity. The metric system unit for this quantity is "Bq" (Becquerel).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.2
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil, Martin Desruisseaux
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/SolidAngle.html b/docs/site/apidocs/javax/measure/quantity/SolidAngle.html new file mode 100644 index 00000000..1feff56c --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/SolidAngle.html @@ -0,0 +1,127 @@ + + + + +SolidAngle (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface SolidAngle

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<SolidAngle>
    +
    +
    +
    public interface SolidAngle +extends Quantity<SolidAngle>
    +
    Angle formed by three or more planes intersecting at a common point. The metric system unit for this quantity is "sr" (steradian).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.3
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/Speed.html b/docs/site/apidocs/javax/measure/quantity/Speed.html new file mode 100644 index 00000000..8c54d812 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/Speed.html @@ -0,0 +1,135 @@ + + + + +Speed (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface Speed

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<Speed>
    +
    +
    +
    public interface Speed +extends Quantity<Speed>
    +
    Distance traveled divided by the time of travel. The metric system unit for this quantity is "m/s" (metre per second). + +

    + Speed is a scalar value, while velocity is a vector. Speed is the magnitude of the velocity vector, or the components of + the velocity vector. +

    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.2
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/Temperature.html b/docs/site/apidocs/javax/measure/quantity/Temperature.html new file mode 100644 index 00000000..940809da --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/Temperature.html @@ -0,0 +1,142 @@ + + + + +Temperature (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface Temperature

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<Temperature>
    +
    +
    +
    public interface Temperature +extends Quantity<Temperature>
    +
    Degree of hotness or coldness of a body or an environment. The metric system unit for this quantity is "K" (Kelvin). + + The kelvin, symbol K, is the SI unit of thermodynamic temperature. It is defined by + taking the fixed numerical value of the Boltzmann constant k to be 1.380 649 × 10−²³ + when expressed in the unit J K⁻¹, which is equal to kg m² s⁻² K⁻¹, where the + kilogram, metre and second are defined in terms of h, c and ∆νCs. + + This definition implies the exact relation k = 1.380 649 × 10⁻²³ kg m² s⁻² K⁻¹. Inverting this + relation gives an exact expression for the kelvin in terms of the defining constants k, h and + ∆νCs: + + 1 K = (1.380 649 / k) × 10⁻²³ kg m² s⁻² +
    +
    +
    API Note:
    SI Base Unit
    +
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    2.1
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil, Thodoris Bais
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/Time.html b/docs/site/apidocs/javax/measure/quantity/Time.html new file mode 100644 index 00000000..d12776f9 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/Time.html @@ -0,0 +1,146 @@ + + + + +Time (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface Time

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<Time>
    +
    +
    +
    public interface Time +extends Quantity<Time>
    +
    Period of existence or persistence. The metric system unit for this quantity is "s" (second). + + The second, symbol s, is the SI unit of time. It is defined by taking the fixed + numerical value of the caesium frequency ∆νCs, the unperturbed ground-state + hyperfine transition frequency of the caesium 133 atom, to be 9 192 631 770 when + expressed in the unit Hz, which is equal to s⁻¹. + + This definition implies the exact relation ∆νCs = 9 192 631 770 Hz. Inverting this relation + gives an expression for the unit second in terms of the defining constant ∆νCs: + + 1 Hz = ∆νCs / 9 192 631 770 or 1 s = 9 192 631 770 / ∆νCs +
    +
    +
    API Note:
    SI Base Unit
    +
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    2.1
    +
    Author:
    +
    Werner Keil, Thodoris Bais
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/Volume.html b/docs/site/apidocs/javax/measure/quantity/Volume.html new file mode 100644 index 00000000..d5bfc3b4 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/Volume.html @@ -0,0 +1,128 @@ + + + + +Volume (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface Volume

    +
    +
    +
    +
    All Superinterfaces:
    +
    Quantity<Volume>
    +
    +
    +
    public interface Volume +extends Quantity<Volume>
    +
    Amount of space occupied by a three-dimensional object or region of space. The metric system unit for this quantity is "m³" (cubic metre).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.3
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/Acceleration.html b/docs/site/apidocs/javax/measure/quantity/class-use/Acceleration.html new file mode 100644 index 00000000..c55c84b6 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/Acceleration.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Acceleration (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.Acceleration

    +
    +No usage of javax.measure.quantity.Acceleration
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/AmountOfSubstance.html b/docs/site/apidocs/javax/measure/quantity/class-use/AmountOfSubstance.html new file mode 100644 index 00000000..b18d347e --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/AmountOfSubstance.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.AmountOfSubstance (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.AmountOfSubstance

    +
    +No usage of javax.measure.quantity.AmountOfSubstance
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/Angle.html b/docs/site/apidocs/javax/measure/quantity/class-use/Angle.html new file mode 100644 index 00000000..e84314c2 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/Angle.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Angle (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.Angle

    +
    +No usage of javax.measure.quantity.Angle
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/Area.html b/docs/site/apidocs/javax/measure/quantity/class-use/Area.html new file mode 100644 index 00000000..c2f30f8c --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/Area.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Area (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.Area

    +
    +No usage of javax.measure.quantity.Area
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/CatalyticActivity.html b/docs/site/apidocs/javax/measure/quantity/class-use/CatalyticActivity.html new file mode 100644 index 00000000..5d7561e8 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/CatalyticActivity.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.CatalyticActivity (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.CatalyticActivity

    +
    +No usage of javax.measure.quantity.CatalyticActivity
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/Dimensionless.html b/docs/site/apidocs/javax/measure/quantity/class-use/Dimensionless.html new file mode 100644 index 00000000..458fa6ba --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/Dimensionless.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Dimensionless (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.Dimensionless

    +
    +No usage of javax.measure.quantity.Dimensionless
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/ElectricCapacitance.html b/docs/site/apidocs/javax/measure/quantity/class-use/ElectricCapacitance.html new file mode 100644 index 00000000..4623b653 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/ElectricCapacitance.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.ElectricCapacitance (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.ElectricCapacitance

    +
    +No usage of javax.measure.quantity.ElectricCapacitance
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/ElectricCharge.html b/docs/site/apidocs/javax/measure/quantity/class-use/ElectricCharge.html new file mode 100644 index 00000000..9c67d8d9 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/ElectricCharge.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.ElectricCharge (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.ElectricCharge

    +
    +No usage of javax.measure.quantity.ElectricCharge
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/ElectricConductance.html b/docs/site/apidocs/javax/measure/quantity/class-use/ElectricConductance.html new file mode 100644 index 00000000..2be9bb7a --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/ElectricConductance.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.ElectricConductance (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.ElectricConductance

    +
    +No usage of javax.measure.quantity.ElectricConductance
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/ElectricCurrent.html b/docs/site/apidocs/javax/measure/quantity/class-use/ElectricCurrent.html new file mode 100644 index 00000000..2a7fa1e8 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/ElectricCurrent.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.ElectricCurrent (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.ElectricCurrent

    +
    +No usage of javax.measure.quantity.ElectricCurrent
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/ElectricInductance.html b/docs/site/apidocs/javax/measure/quantity/class-use/ElectricInductance.html new file mode 100644 index 00000000..937fa646 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/ElectricInductance.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.ElectricInductance (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.ElectricInductance

    +
    +No usage of javax.measure.quantity.ElectricInductance
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/ElectricPotential.html b/docs/site/apidocs/javax/measure/quantity/class-use/ElectricPotential.html new file mode 100644 index 00000000..f4cfe11b --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/ElectricPotential.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.ElectricPotential (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.ElectricPotential

    +
    +No usage of javax.measure.quantity.ElectricPotential
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/ElectricResistance.html b/docs/site/apidocs/javax/measure/quantity/class-use/ElectricResistance.html new file mode 100644 index 00000000..0842ebdc --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/ElectricResistance.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.ElectricResistance (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.ElectricResistance

    +
    +No usage of javax.measure.quantity.ElectricResistance
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/Energy.html b/docs/site/apidocs/javax/measure/quantity/class-use/Energy.html new file mode 100644 index 00000000..d4c47e6b --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/Energy.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Energy (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.Energy

    +
    +No usage of javax.measure.quantity.Energy
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/Force.html b/docs/site/apidocs/javax/measure/quantity/class-use/Force.html new file mode 100644 index 00000000..07427d0d --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/Force.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Force (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.Force

    +
    +No usage of javax.measure.quantity.Force
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/Frequency.html b/docs/site/apidocs/javax/measure/quantity/class-use/Frequency.html new file mode 100644 index 00000000..e60c35c2 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/Frequency.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Frequency (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.Frequency

    +
    +No usage of javax.measure.quantity.Frequency
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/Illuminance.html b/docs/site/apidocs/javax/measure/quantity/class-use/Illuminance.html new file mode 100644 index 00000000..226f02fd --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/Illuminance.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Illuminance (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.Illuminance

    +
    +No usage of javax.measure.quantity.Illuminance
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/Length.html b/docs/site/apidocs/javax/measure/quantity/class-use/Length.html new file mode 100644 index 00000000..25fc74e0 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/Length.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Length (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.Length

    +
    +No usage of javax.measure.quantity.Length
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/LuminousFlux.html b/docs/site/apidocs/javax/measure/quantity/class-use/LuminousFlux.html new file mode 100644 index 00000000..5f929252 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/LuminousFlux.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.LuminousFlux (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.LuminousFlux

    +
    +No usage of javax.measure.quantity.LuminousFlux
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/LuminousIntensity.html b/docs/site/apidocs/javax/measure/quantity/class-use/LuminousIntensity.html new file mode 100644 index 00000000..e4df8129 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/LuminousIntensity.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.LuminousIntensity (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.LuminousIntensity

    +
    +No usage of javax.measure.quantity.LuminousIntensity
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/MagneticFlux.html b/docs/site/apidocs/javax/measure/quantity/class-use/MagneticFlux.html new file mode 100644 index 00000000..69428ccc --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/MagneticFlux.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.MagneticFlux (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.MagneticFlux

    +
    +No usage of javax.measure.quantity.MagneticFlux
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/MagneticFluxDensity.html b/docs/site/apidocs/javax/measure/quantity/class-use/MagneticFluxDensity.html new file mode 100644 index 00000000..f0808b31 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/MagneticFluxDensity.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.MagneticFluxDensity (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.MagneticFluxDensity

    +
    +No usage of javax.measure.quantity.MagneticFluxDensity
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/Mass.html b/docs/site/apidocs/javax/measure/quantity/class-use/Mass.html new file mode 100644 index 00000000..bd5d1be6 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/Mass.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Mass (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.Mass

    +
    +No usage of javax.measure.quantity.Mass
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/Power.html b/docs/site/apidocs/javax/measure/quantity/class-use/Power.html new file mode 100644 index 00000000..cfe2ae90 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/Power.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Power (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.Power

    +
    +No usage of javax.measure.quantity.Power
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/Pressure.html b/docs/site/apidocs/javax/measure/quantity/class-use/Pressure.html new file mode 100644 index 00000000..6449cee8 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/Pressure.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Pressure (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.Pressure

    +
    +No usage of javax.measure.quantity.Pressure
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/RadiationDoseAbsorbed.html b/docs/site/apidocs/javax/measure/quantity/class-use/RadiationDoseAbsorbed.html new file mode 100644 index 00000000..17240390 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/RadiationDoseAbsorbed.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.RadiationDoseAbsorbed (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.RadiationDoseAbsorbed

    +
    +No usage of javax.measure.quantity.RadiationDoseAbsorbed
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/RadiationDoseEffective.html b/docs/site/apidocs/javax/measure/quantity/class-use/RadiationDoseEffective.html new file mode 100644 index 00000000..6ab7b74b --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/RadiationDoseEffective.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.RadiationDoseEffective (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.RadiationDoseEffective

    +
    +No usage of javax.measure.quantity.RadiationDoseEffective
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/Radioactivity.html b/docs/site/apidocs/javax/measure/quantity/class-use/Radioactivity.html new file mode 100644 index 00000000..78c6b583 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/Radioactivity.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Radioactivity (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.Radioactivity

    +
    +No usage of javax.measure.quantity.Radioactivity
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/SolidAngle.html b/docs/site/apidocs/javax/measure/quantity/class-use/SolidAngle.html new file mode 100644 index 00000000..fef48bd8 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/SolidAngle.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.SolidAngle (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.SolidAngle

    +
    +No usage of javax.measure.quantity.SolidAngle
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/Speed.html b/docs/site/apidocs/javax/measure/quantity/class-use/Speed.html new file mode 100644 index 00000000..4a8f767e --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/Speed.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Speed (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.Speed

    +
    +No usage of javax.measure.quantity.Speed
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/Temperature.html b/docs/site/apidocs/javax/measure/quantity/class-use/Temperature.html new file mode 100644 index 00000000..caee309c --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/Temperature.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Temperature (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.Temperature

    +
    +No usage of javax.measure.quantity.Temperature
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/Time.html b/docs/site/apidocs/javax/measure/quantity/class-use/Time.html new file mode 100644 index 00000000..ace4f089 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/Time.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Time (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.Time

    +
    +No usage of javax.measure.quantity.Time
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/class-use/Volume.html b/docs/site/apidocs/javax/measure/quantity/class-use/Volume.html new file mode 100644 index 00000000..3f9f9b5a --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/class-use/Volume.html @@ -0,0 +1,62 @@ + + + + +Uses of Interface javax.measure.quantity.Volume (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.quantity.Volume

    +
    +No usage of javax.measure.quantity.Volume
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/package-summary.html b/docs/site/apidocs/javax/measure/quantity/package-summary.html new file mode 100644 index 00000000..ed3068ef --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/package-summary.html @@ -0,0 +1,291 @@ + + + + +javax.measure.quantity (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Package javax.measure.quantity

    +
    +
    +
    package javax.measure.quantity
    +
    +
    [OPTIONAL] Provides quantitative properties or attributes of thing such as + mass, time, distance, heat, and angular separation. + Quantities of different kinds are represented by sub-types of the + Quantity interface. + +

    Only quantities defined in the BIPM - SI Brochure + are provided here. Users can create their own quantity types by extending the + Quantity interface.

    + +

    This package supports measurable quantities, which can be expressed + as (Number, Unit) tuples. + Those tuples are not necessarily used directly in numerically intensive code. + They are more useful as meta-data converted to the application internal representation + (for example double primitive type with the requirement to provide values in meters) + before computation begins.

    + +

    Quantity sub-types are also used as parameterized type to characterize + generic classes and provide additional compile time check. This technique is + used extensively by the Unit interface, + but users can apply the same approach to their own classes. In the example + below, Sensor, MyQuantity and Vector3D are user-defined + classes:

    + + + // A general-purpose Sensor class used for temperature measurements:
    + Sensor<Temperature> sensor ...;
    + Temperature temp = sensor.getValue();

    + + // A vector of velocity in a three-dimensional space.
    + Unit<Speed> = metrePerSecond = METRE.divide(SECOND);
    + Vector3D<Speed> aircraftSpeed = new Vector3D(200.0, 50.0, -0.5, metrePerSecond); +
    + +

    This package holds only the quantities required by the metric system.

    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    2.8
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    +
      +
    • + +
    • +
    • +
      +
      Interfaces
      +
      +
      Class
      +
      Description
      + +
      +
      Rate of change of velocity with respect to time.
      +
      + +
      +
      Number of elementary entities (molecules, for example) of a substance.
      +
      + +
      +
      Figure formed by two lines diverging from a common point.
      +
      + +
      +
      Extent of a planar region or of the surface of a solid measured in square units.
      +
      + +
      +
      Catalytic activity.
      +
      + +
      +
      Dimensionless quantity.
      +
      + +
      +
      Electric capacitance.
      +
      + +
      +
      Electric charge.
      +
      + +
      +
      Electric conductance.
      +
      + +
      +
      Amount of electric charge flowing past a specified circuit point per unit time.
      +
      + +
      +
      Electric inductance.
      +
      + +
      +
      Electric potential or electromotive force.
      +
      + +
      +
      Electric resistance.
      +
      + +
      +
      Capacity of a physical system to do work.
      +
      + +
      +
      Quantity that tends to produce an acceleration of a body in the direction of its application.
      +
      + +
      +
      Number of times a specified phenomenon occurs within a specified interval.
      +
      + +
      +
      Illuminance.
      +
      + +
      +
      Extent of something along its greatest dimension or the extent of space between two objects or places.
      +
      + +
      +
      Luminous flux.
      +
      + +
      +
      Luminous flux density per solid angle as measured in a given direction relative to the emitting source.
      +
      + +
      +
      Magnetic flux.
      +
      + +
      +
      Magnetic flux density.
      +
      + +
      +
      Measure of the quantity of matter that a body or an object contains.
      +
      + +
      +
      Rate at which work is done.
      +
      + +
      +
      Force applied uniformly over a surface.
      +
      + +
      +
      Amount of energy deposited per unit of mass.
      +
      + +
      +
      Effective (or "equivalent") dose of radiation received by a human or some other living organism.
      +
      + +
      +
      Radioactive activity.
      +
      + +
      +
      Angle formed by three or more planes intersecting at a common point.
      +
      + +
      +
      Distance traveled divided by the time of travel.
      +
      + +
      +
      Degree of hotness or coldness of a body or an environment.
      +
      + +
      +
      Period of existence or persistence.
      +
      + +
      +
      Amount of space occupied by a three-dimensional object or region of space.
      +
      +
      +
      +
    • +
    +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/quantity/package-tree.html b/docs/site/apidocs/javax/measure/quantity/package-tree.html new file mode 100644 index 00000000..7d79b847 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/package-tree.html @@ -0,0 +1,108 @@ + + + + +javax.measure.quantity Class Hierarchy (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + + + diff --git a/docs/site/apidocs/javax/measure/quantity/package-use.html b/docs/site/apidocs/javax/measure/quantity/package-use.html new file mode 100644 index 00000000..d4dfac52 --- /dev/null +++ b/docs/site/apidocs/javax/measure/quantity/package-use.html @@ -0,0 +1,62 @@ + + + + +Uses of Package javax.measure.quantity (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Package
    javax.measure.quantity

    +
    +No usage of javax.measure.quantity
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/spi/FormatService.FormatType.html b/docs/site/apidocs/javax/measure/spi/FormatService.FormatType.html new file mode 100644 index 00000000..464a769e --- /dev/null +++ b/docs/site/apidocs/javax/measure/spi/FormatService.FormatType.html @@ -0,0 +1,236 @@ + + + + +FormatService.FormatType (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Enum FormatService.FormatType

    +
    + +
    +
    +
    All Implemented Interfaces:
    +
    Serializable, Comparable<FormatService.FormatType>, Constable
    +
    +
    +
    Enclosing interface:
    +
    FormatService
    +
    +
    + +
    The type of format, either a UnitFormat or QuantityFormat
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Enum Constant Details

      + +
      +
    • + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        values

        +
        public static FormatService.FormatType[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared.
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
        +
      • +
      • +
        +

        valueOf

        +
        public static FormatService.FormatType valueOf(String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        +
        Parameters:
        +
        name - the name of the enum constant to be returned.
        +
        Returns:
        +
        the enum constant with the specified name
        +
        Throws:
        +
        IllegalArgumentException - if this enum type has no constant with the specified name
        +
        NullPointerException - if the argument is null
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/spi/FormatService.html b/docs/site/apidocs/javax/measure/spi/FormatService.html new file mode 100644 index 00000000..89c4f73d --- /dev/null +++ b/docs/site/apidocs/javax/measure/spi/FormatService.html @@ -0,0 +1,273 @@ + + + + +FormatService (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface FormatService

    +
    +
    +
    +
    public interface FormatService
    +
    This interface represents the service to obtain instances of UnitFormat and QuantityFormat.
    +
    +
    Since:
    +
    2.0
    +
    Version:
    +
    2.3, May 20, 2023
    +
    Author:
    +
    Werner Keil
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        getQuantityFormat

        + +
        Returns the default quantity format. + + It is up to implementations what to consider a suitable default. For some (locale-sensitive) implementations it may be a quantity format based on + Locale.current() while others may return getQuantityFormat("Simple") or getQuantityFormat("ISO").
        +
        +
        Returns:
        +
        the default QuantityFormat implementation.
        +
        +
        +
      • +
      • +
        +

        getQuantityFormat

        + +
        Returns the quantity format having the specified name or null if none. + + For example (@code getQuantityFormat("Simple")} to return the simple QuantityFormat implementation.
        +
        +
        Parameters:
        +
        name - the name of the format.
        +
        Returns:
        +
        the corresponding quantity format.
        +
        +
        +
      • +
      • +
        +

        getUnitFormat

        + +
        Returns the default unit format. + + It is up to implementations what to consider a suitable default. For some (locale-sensitive) implementations it may be a unit format based on + Locale.current() while others may return getUnitFormat("Simple") or getUnitFormat("ISO").
        +
        +
        Returns:
        +
        the default UnitFormat implementation.
        +
        +
        +
      • +
      • +
        +

        getUnitFormat

        + +
        Returns the unit format having the specified name or null if none. + + For example getUnitFormat("Simple") to return a simple UnitFormat implementation.
        +
        +
        Parameters:
        +
        name - the name of the format.
        +
        Returns:
        +
        the corresponding unit format.
        +
        +
        +
      • +
      • +
        +

        getUnitFormat

        + +
        Returns the unit format having the specified name or null if none. + + For example getUnitFormat("Simple") to return a simple UnitFormat implementation.
        + The variant is an arbitrary value to allow a variation of a UnitFormat, + for example UTF vs. ASCII encoding of the simple UnitFormat + or case sensitive vs. case insensitive UCUM format. +

        If no variant is applicable, the UnitFormat matching the name only is returned.

        +
        +
        Parameters:
        +
        name - the name of the format.
        +
        variant - any arbitrary value used to indicate a variation of a UnitFormat.
        +
        Returns:
        +
        the corresponding unit format.
        +
        +
        +
      • +
      • +
        +

        getAvailableFormatNames

        + +
        Gets a list with available format names of a given type for this format service.
        +
        +
        Parameters:
        +
        type - the FormatService.FormatType
        +
        Returns:
        +
        list of available formats, never null.
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/spi/QuantityFactory.html b/docs/site/apidocs/javax/measure/spi/QuantityFactory.html new file mode 100644 index 00000000..81f1975c --- /dev/null +++ b/docs/site/apidocs/javax/measure/spi/QuantityFactory.html @@ -0,0 +1,224 @@ + + + + +QuantityFactory (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface QuantityFactory<Q extends Quantity<Q>>

    +
    +
    +
    +
    Type Parameters:
    +
    Q - the type of the Quantity result
    +
    +
    +
    public interface QuantityFactory<Q extends Quantity<Q>>
    +
    Represents a factory that accepts Number and Unit arguments to create Quantity results.
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.4, December 18, 2018
    +
    Author:
    +
    Werner Keil, Otavio Santana
    +
    See Also:
    +
    + +
    +
    +
    +
    +
      + +
    • +
      +

      Method Summary

      +
      +
      +
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      + +
      create(Number value, + Unit<Q> unit)
      +
      +
      Returns the quantity for the specified number stated in the specified unit.
      +
      + +
      create(Number value, + Unit<Q> unit, + Quantity.Scale scale)
      +
      +
      Returns the quantity for the specified number stated in the specified unit and scale.
      +
      + + +
      +
      Returns the system unit for quantities produced by this factory or null if unknown.
      +
      +
      +
      +
      +
      +
    • +
    +
    +
    +
      + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        create

        +
        Quantity<Q> create(Number value, + Unit<Q> unit, + Quantity.Scale scale)
        +
        Returns the quantity for the specified number stated in the specified unit and scale.
        +
        +
        Parameters:
        +
        value - the numeric value stated in the specified unit
        +
        unit - the unit
        +
        scale - The ABSOLUTE / RELATIVE scale of this quantity
        +
        Returns:
        +
        the corresponding quantity
        +
        Since:
        +
        2.0
        +
        +
        +
      • +
      • +
        +

        create

        +
        Quantity<Q> create(Number value, + Unit<Q> unit)
        +
        Returns the quantity for the specified number stated in the specified unit.
        +
        +
        Parameters:
        +
        value - the numeric value stated in the specified unit
        +
        unit - the unit
        +
        Returns:
        +
        the corresponding quantity
        +
        +
        +
      • +
      • +
        +

        getSystemUnit

        + +
        Returns the system unit for quantities produced by this factory or null if unknown. + +

        + Because the system unit is unique by quantity type, it can be be used to identify the quantity given the unit. For example: +

        + +
        +     static boolean isAngularSpeed(Unit<?> unit) {
        +         return unit.getSystemUnit().equals(RADIAN.divide(SECOND));
        +     }
        +     assert isAngularSpeed(REVOLUTION.divide(MINUTE)); // Returns true.
        + 
        +
        +
        Returns:
        +
        the system unit for this factory.
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/spi/ServiceProvider.html b/docs/site/apidocs/javax/measure/spi/ServiceProvider.html new file mode 100644 index 00000000..146f13fe --- /dev/null +++ b/docs/site/apidocs/javax/measure/spi/ServiceProvider.html @@ -0,0 +1,363 @@ + + + + +ServiceProvider (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class ServiceProvider

    +
    +
    Object +
    ServiceProvider
    +
    +
    +
    +
    public abstract class ServiceProvider +extends Object
    +
    Service Provider for Units of Measurement services. +

    + All the methods in this class are safe to use by multiple concurrent threads. +

    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    2.3, May 19, 2023
    +
    Author:
    +
    Werner Keil, Martin Desruisseaux
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        ServiceProvider

        +
        protected ServiceProvider()
        +
        Creates a new service provider. Only to be used by subclasses.
        +
        +
      • +
      +
      +
    • + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        getPriority

        +
        public int getPriority()
        +
        Allows to define a priority for a registered ServiceProvider instance. + When multiple providers are registered in the system, the provider with the highest priority value is taken. + +

        If the "jakarta.annotation.Priority" annotation (from Jakarta Annotations) + or "javax.annotation.Priority" annotation (from JSR-250) is present on the ServiceProvider + implementation class, then that annotation (first if both were present) is taken and this getPriority() method is ignored. + Otherwise – if a Priority annotation is absent – this method is used as a fallback.

        +
        +
        Returns:
        +
        the provider's priority (default is 0).
        +
        +
        +
      • +
      • +
        +

        getSystemOfUnitsService

        + +
        Returns the service to obtain a SystemOfUnits, or null if none.
        +
        +
        Returns:
        +
        the service to obtain a SystemOfUnits, or null.
        +
        +
        +
      • +
      • +
        +

        getFormatService

        +
        public abstract FormatService getFormatService()
        +
        Returns the service to obtain UnitFormat and QuantityFormat or null if none.
        +
        +
        Returns:
        +
        the service to obtain a UnitFormat and QuantityFormat, or null.
        +
        Since:
        +
        2.0
        +
        +
        +
      • +
      • +
        +

        getQuantityFactory

        +
        public abstract <Q extends Quantity<Q>> +QuantityFactory<Q> getQuantityFactory(Class<Q> quantity)
        +
        Returns a factory for the given Quantity type.
        +
        +
        Type Parameters:
        +
        Q - the type of the Quantity instances created by the factory
        +
        Parameters:
        +
        quantity - the quantity type
        +
        Returns:
        +
        the QuantityFactory for the given type
        +
        +
        +
      • +
      • +
        +

        available

        +
        public static final List<ServiceProvider> available()
        +
        Returns the list of all service providers available for the current thread's context class loader. + The current service provider is always the first item in the returned list. + Other service providers after the first item may depend on the caller thread + (see service loader API note).
        +
        +
        Returns:
        +
        all service providers available for the current thread's context class loader.
        +
        +
        +
      • +
      • +
        +

        of

        +
        public static ServiceProvider of(String name)
        +
        Returns the ServiceProvider with the specified name. + The given name must match the name of at least one service provider available in the current thread's + context class loader. + The service provider names are the values of "jakarta.inject.Named" (from Jakarta Annotations) or + "javax.inject.Named" (from JSR-330) annotations when present (first if both were present), + or the value of Object.toString() method for providers without Named annotation. + +

        Implementors are encouraged to provide an Named annotation or to override Object.toString() + and use a unique enough name, e.g. the class name or other distinct attributes. + Should multiple service providers nevertheless use the same name, the one with the highest + priority wins.

        +
        +
        Parameters:
        +
        name - the name of the service provider to return
        +
        Returns:
        +
        the ServiceProvider with the specified name
        +
        Throws:
        +
        IllegalArgumentException - if available service providers do not contain a provider with the specified name
        +
        NullPointerException - if name is null
        +
        Since:
        +
        2.0
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        current

        +
        public static final ServiceProvider current()
        +
        Returns the current ServiceProvider. If necessary the ServiceProvider will be lazily loaded. +

        + If there are no providers available, an IllegalStateException is thrown. + Otherwise the provider with the highest priority is used + or the one explicitly designated via setCurrent(ServiceProvider). +

        +
        +
        Returns:
        +
        the ServiceProvider used.
        +
        Throws:
        +
        IllegalStateException - if no ServiceProvider has been found.
        +
        See Also:
        +
        + +
        +
        +
        +
      • +
      • +
        +

        setCurrent

        +
        public static final ServiceProvider setCurrent(ServiceProvider provider)
        +
        Replaces the current ServiceProvider.
        +
        +
        Parameters:
        +
        provider - the new ServiceProvider
        +
        Returns:
        +
        the replaced provider, or null.
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/spi/SystemOfUnits.html b/docs/site/apidocs/javax/measure/spi/SystemOfUnits.html new file mode 100644 index 00000000..46424785 --- /dev/null +++ b/docs/site/apidocs/javax/measure/spi/SystemOfUnits.html @@ -0,0 +1,231 @@ + + + + +SystemOfUnits (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface SystemOfUnits

    +
    +
    +
    +
    public interface SystemOfUnits
    +
    A system of units grouped together for historical or cultural reasons.
    + Common system of units are "SI" (System International), "Imperial" (British), "US" (US Customary). Nothing prevents a unit from belonging to + several systems of units at the same time (for example an Imperial system would have many of the units held by the US Customary + system).
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.1, June 21, 2018
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil
    +
    See Also:
    +
    + +
    +
    +
    +
    +
      + +
    • +
      +

      Method Summary

      +
      +
      +
      +
      +
      Modifier and Type
      +
      Method
      +
      Description
      + + +
       
      +
      <Q extends Quantity<Q>>
      Unit<Q>
      +
      getUnit(Class<Q> quantityType)
      +
      +
      Returns the default unit for the specified quantity or null if none is defined for the given quantity in this unit system.
      +
      +
      Unit<?>
      +
      getUnit(String string)
      +
      +
      Returns a unit with the given string representation or null if none is found in this unit system.
      +
      +
      Set<? extends Unit<?>>
      + +
      +
      Returns a read only view over the units explicitly defined by this system.
      +
      +
      Set<? extends Unit<?>>
      +
      getUnits(Dimension dimension)
      +
      +
      Returns the units defined in this system having the specified dimension (convenience method).
      +
      +
      +
      +
      +
      +
    • +
    +
    +
    +
      + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        getName

        + +
        +
        Returns:
        +
        a name
        +
        +
        +
      • +
      • +
        +

        getUnit

        +
        <Q extends Quantity<Q>> Unit<Q> getUnit(Class<Q> quantityType)
        +
        Returns the default unit for the specified quantity or null if none is defined for the given quantity in this unit system.
        +
        +
        Type Parameters:
        +
        Q - the compile-time quantity type.
        +
        Parameters:
        +
        quantityType - the quantity type.
        +
        Returns:
        +
        the unit for the specified quantity.
        +
        +
        +
      • +
      • +
        +

        getUnit

        +
        Unit<?> getUnit(String string)
        +
        Returns a unit with the given string representation or null if none is found in this unit system.
        +
        +
        Parameters:
        +
        string - the string representation of a unit, not null.
        +
        Returns:
        +
        the unit with the given string representation.
        +
        Since:
        +
        2.0
        +
        +
        +
      • +
      • +
        +

        getUnits

        +
        Set<? extends Unit<?>> getUnits()
        +
        Returns a read only view over the units explicitly defined by this system. This include the base and derived units which are assigned a special + name and symbol. This set does not include new units created by arithmetic or other operations.
        +
        +
        Returns:
        +
        the defined collection of units.
        +
        +
        +
      • +
      • +
        +

        getUnits

        +
        Set<? extends Unit<?>> getUnits(Dimension dimension)
        +
        Returns the units defined in this system having the specified dimension (convenience method).
        +
        +
        Parameters:
        +
        dimension - the dimension of the units to be returned.
        +
        Returns:
        +
        the collection of units of specified dimension.
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/spi/SystemOfUnitsService.html b/docs/site/apidocs/javax/measure/spi/SystemOfUnitsService.html new file mode 100644 index 00000000..fe193ef6 --- /dev/null +++ b/docs/site/apidocs/javax/measure/spi/SystemOfUnitsService.html @@ -0,0 +1,242 @@ + + + + +SystemOfUnitsService (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Interface SystemOfUnitsService

    +
    +
    +
    +
    public interface SystemOfUnitsService
    +
    This interface represents the service to obtain a system + of units. + +

    + Common systems of units are "SI" (System International) or Metric system, + "Imperial" (British), or "US" (US Customary). +

    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    1.8, April 3, 2023
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil, Martin + Desruisseaux
    +
    See Also:
    +
    + +
    +
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        getSystemOfUnits

        + +
        Returns the default system of units. Depending on the + implementation this may be the International + System of Units or another default system.
        +
        +
        Returns:
        +
        the default system of units.
        +
        +
        +
      • +
      • +
        +

        getSystemOfUnits

        + +
        Returns the system of units having the specified name or null if + none is found.
        +
        +
        Parameters:
        +
        name - the system of unit name.
        +
        Returns:
        +
        the system of units for the given name.
        +
        +
        +
      • +
      • +
        +

        getAvailableSystemsOfUnits

        + +
        Gets a list with available systems for this SystemOfUnitsService.
        +
        +
        Returns:
        +
        list of available systems of units, never null.
        +
        +
        +
      • +
      • +
        +

        getPrefixes

        +
        default <P extends Prefix> Set<P> getPrefixes(Class<P> prefixType)
        +
        Returns a Set containing the values of a particular Prefix + type. + +

        + This method may be used to iterate over certain prefixes as follows: +

        +
        
        +    for(MetricPrefix mp : service.getPrefixes(MetricPrefix.class))
        +        System.out.println(p);
        + 
        + + The default implementation assumes that prefixes of the given type are implemented as an enumeration. + This is the case of the two default prefix implementations provided in JSR 385, + namely MetricPrefix and BinaryPrefix. + Implementors shall override this method if they provide prefixes implemented in a different way.
        +
        +
        Type Parameters:
        +
        P - compile-time value of the prefixType argument
        +
        Parameters:
        +
        prefixType - the Prefix type
        +
        Returns:
        +
        a set containing the constant values of this Prefix type, in the + order they're declared
        +
        Throws:
        +
        ClassCastException - if the class is not compatible with the desired + Prefix implementation or does not implement Prefix at all.
        +
        Since:
        +
        2.0
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/spi/class-use/FormatService.FormatType.html b/docs/site/apidocs/javax/measure/spi/class-use/FormatService.FormatType.html new file mode 100644 index 00000000..b1396302 --- /dev/null +++ b/docs/site/apidocs/javax/measure/spi/class-use/FormatService.FormatType.html @@ -0,0 +1,108 @@ + + + + +Uses of Enum javax.measure.spi.FormatService.FormatType (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Enum
    javax.measure.spi.FormatService.FormatType

    +
    +
    Packages that use FormatService.FormatType
    +
    +
    Package
    +
    Description
    + +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/spi/class-use/FormatService.html b/docs/site/apidocs/javax/measure/spi/class-use/FormatService.html new file mode 100644 index 00000000..9a6d4183 --- /dev/null +++ b/docs/site/apidocs/javax/measure/spi/class-use/FormatService.html @@ -0,0 +1,91 @@ + + + + +Uses of Interface javax.measure.spi.FormatService (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.spi.FormatService

    +
    +
    Packages that use FormatService
    +
    +
    Package
    +
    Description
    + +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/spi/class-use/QuantityFactory.html b/docs/site/apidocs/javax/measure/spi/class-use/QuantityFactory.html new file mode 100644 index 00000000..cbe9ee11 --- /dev/null +++ b/docs/site/apidocs/javax/measure/spi/class-use/QuantityFactory.html @@ -0,0 +1,91 @@ + + + + +Uses of Interface javax.measure.spi.QuantityFactory (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.spi.QuantityFactory

    +
    +
    Packages that use QuantityFactory
    +
    +
    Package
    +
    Description
    + +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/spi/class-use/ServiceProvider.html b/docs/site/apidocs/javax/measure/spi/class-use/ServiceProvider.html new file mode 100644 index 00000000..2c3f6f2a --- /dev/null +++ b/docs/site/apidocs/javax/measure/spi/class-use/ServiceProvider.html @@ -0,0 +1,123 @@ + + + + +Uses of Class javax.measure.spi.ServiceProvider (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    javax.measure.spi.ServiceProvider

    +
    +
    Packages that use ServiceProvider
    +
    +
    Package
    +
    Description
    + +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/spi/class-use/SystemOfUnits.html b/docs/site/apidocs/javax/measure/spi/class-use/SystemOfUnits.html new file mode 100644 index 00000000..0b9db287 --- /dev/null +++ b/docs/site/apidocs/javax/measure/spi/class-use/SystemOfUnits.html @@ -0,0 +1,108 @@ + + + + +Uses of Interface javax.measure.spi.SystemOfUnits (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.spi.SystemOfUnits

    +
    +
    Packages that use SystemOfUnits
    +
    +
    Package
    +
    Description
    + +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/spi/class-use/SystemOfUnitsService.html b/docs/site/apidocs/javax/measure/spi/class-use/SystemOfUnitsService.html new file mode 100644 index 00000000..756f4731 --- /dev/null +++ b/docs/site/apidocs/javax/measure/spi/class-use/SystemOfUnitsService.html @@ -0,0 +1,91 @@ + + + + +Uses of Interface javax.measure.spi.SystemOfUnitsService (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    javax.measure.spi.SystemOfUnitsService

    +
    +
    Packages that use SystemOfUnitsService
    +
    +
    Package
    +
    Description
    + +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/spi/package-summary.html b/docs/site/apidocs/javax/measure/spi/package-summary.html new file mode 100644 index 00000000..5b0daad0 --- /dev/null +++ b/docs/site/apidocs/javax/measure/spi/package-summary.html @@ -0,0 +1,152 @@ + + + + +javax.measure.spi (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Package javax.measure.spi

    +
    +
    +
    package javax.measure.spi
    +
    +
    [OPTIONAL] The Units of Measurement SPI. Provides services for units, quantities, unit systems and formatters/parsers.
    +
    +
    Since:
    +
    1.0
    +
    Version:
    +
    2.0, July 7, 2019
    +
    Author:
    +
    Jean-Marie Dautelle, Werner Keil, Martin Desruisseaux
    +
    +
    +
    +
      +
    • + +
    • +
    • +
      +
      +
      +
      +
      Class
      +
      Description
      + +
      +
      This interface represents the service to obtain instances of UnitFormat and QuantityFormat.
      +
      + +
      +
      The type of format, either a UnitFormat or QuantityFormat
      +
      + +
      +
      Represents a factory that accepts Number and Unit arguments to create Quantity results.
      +
      + +
      +
      Service Provider for Units of Measurement services.
      +
      + +
      +
      A system of units grouped together for historical or cultural reasons.
      + Common system of units are "SI" (System International), "Imperial" (British), "US" (US Customary).
      +
      + +
      +
      This interface represents the service to obtain a system + of units.
      +
      +
      +
      +
      +
    • +
    +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/spi/package-tree.html b/docs/site/apidocs/javax/measure/spi/package-tree.html new file mode 100644 index 00000000..311d318a --- /dev/null +++ b/docs/site/apidocs/javax/measure/spi/package-tree.html @@ -0,0 +1,99 @@ + + + + +javax.measure.spi Class Hierarchy (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Hierarchy For Package javax.measure.spi

    +Package Hierarchies: + +
    +
    +

    Class Hierarchy

    + +
    +
    +

    Interface Hierarchy

    + +
    +
    +

    Enum Hierarchy

    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/javax/measure/spi/package-use.html b/docs/site/apidocs/javax/measure/spi/package-use.html new file mode 100644 index 00000000..ed888c05 --- /dev/null +++ b/docs/site/apidocs/javax/measure/spi/package-use.html @@ -0,0 +1,110 @@ + + + + +Uses of Package javax.measure.spi (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Package
    javax.measure.spi

    +
    +
    Packages that use javax.measure.spi
    +
    +
    Package
    +
    Description
    + +
    +
    [OPTIONAL] The Units of Measurement SPI.
    +
    +
    +
    + +
    +
    + +
    +
    + + diff --git a/docs/site/apidocs/jquery-ui.overrides.css b/docs/site/apidocs/jquery-ui.overrides.css new file mode 100644 index 00000000..facf852c --- /dev/null +++ b/docs/site/apidocs/jquery-ui.overrides.css @@ -0,0 +1,35 @@ +/* + * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +.ui-state-active, +.ui-widget-content .ui-state-active, +.ui-widget-header .ui-state-active, +a.ui-button:active, +.ui-button:active, +.ui-button.ui-state-active:hover { + /* Overrides the color of selection used in jQuery UI */ + background: #F8981D; + border: 1px solid #F8981D; +} diff --git a/docs/site/apidocs/jquery/external/jquery/jquery.js b/docs/site/apidocs/jquery/external/jquery/jquery.js new file mode 100644 index 00000000..9b5206bc --- /dev/null +++ b/docs/site/apidocs/jquery/external/jquery/jquery.js @@ -0,0 +1,10364 @@ +/*! + * jQuery JavaScript Library v3.3.1 + * https://jquery.com/ + * + * Includes Sizzle.js + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://jquery.org/license + * + * Date: 2018-01-20T17:24Z + */ +( function( global, factory ) { + + "use strict"; + + if ( typeof module === "object" && typeof module.exports === "object" ) { + + // For CommonJS and CommonJS-like environments where a proper `window` + // is present, execute the factory and get jQuery. + // For environments that do not have a `window` with a `document` + // (such as Node.js), expose a factory as module.exports. + // This accentuates the need for the creation of a real `window`. + // e.g. var jQuery = require("jquery")(window); + // See ticket #14549 for more info. + module.exports = global.document ? + factory( global, true ) : + function( w ) { + if ( !w.document ) { + throw new Error( "jQuery requires a window with a document" ); + } + return factory( w ); + }; + } else { + factory( global ); + } + +// Pass this if window is not defined yet +} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { + +// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 +// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode +// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common +// enough that all such attempts are guarded in a try block. +"use strict"; + +var arr = []; + +var document = window.document; + +var getProto = Object.getPrototypeOf; + +var slice = arr.slice; + +var concat = arr.concat; + +var push = arr.push; + +var indexOf = arr.indexOf; + +var class2type = {}; + +var toString = class2type.toString; + +var hasOwn = class2type.hasOwnProperty; + +var fnToString = hasOwn.toString; + +var ObjectFunctionString = fnToString.call( Object ); + +var support = {}; + +var isFunction = function isFunction( obj ) { + + // Support: Chrome <=57, Firefox <=52 + // In some browsers, typeof returns "function" for HTML elements + // (i.e., `typeof document.createElement( "object" ) === "function"`). + // We don't want to classify *any* DOM node as a function. + return typeof obj === "function" && typeof obj.nodeType !== "number"; + }; + + +var isWindow = function isWindow( obj ) { + return obj != null && obj === obj.window; + }; + + + + + var preservedScriptAttributes = { + type: true, + src: true, + noModule: true + }; + + function DOMEval( code, doc, node ) { + doc = doc || document; + + var i, + script = doc.createElement( "script" ); + + script.text = code; + if ( node ) { + for ( i in preservedScriptAttributes ) { + if ( node[ i ] ) { + script[ i ] = node[ i ]; + } + } + } + doc.head.appendChild( script ).parentNode.removeChild( script ); + } + + +function toType( obj ) { + if ( obj == null ) { + return obj + ""; + } + + // Support: Android <=2.3 only (functionish RegExp) + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call( obj ) ] || "object" : + typeof obj; +} +/* global Symbol */ +// Defining this global in .eslintrc.json would create a danger of using the global +// unguarded in another place, it seems safer to define global only for this module + + + +var + version = "3.3.1", + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }, + + // Support: Android <=4.0 only + // Make sure we trim BOM and NBSP + rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g; + +jQuery.fn = jQuery.prototype = { + + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + + // Return all the elements in a clean array + if ( num == null ) { + return slice.call( this ); + } + + // Return just the one element from the set + return num < 0 ? this[ num + this.length ] : this[ num ]; + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + each: function( callback ) { + return jQuery.each( this, callback ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map( this, function( elem, i ) { + return callback.call( elem, i, elem ); + } ) ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: arr.sort, + splice: arr.splice +}; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[ 0 ] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // Skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !isFunction( target ) ) { + target = {}; + } + + // Extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + + // Only deal with non-null/undefined values + if ( ( options = arguments[ i ] ) != null ) { + + // Extend the base object + for ( name in options ) { + src = target[ name ]; + copy = options[ name ]; + + // Prevent never-ending loop + if ( target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject( copy ) || + ( copyIsArray = Array.isArray( copy ) ) ) ) { + + if ( copyIsArray ) { + copyIsArray = false; + clone = src && Array.isArray( src ) ? src : []; + + } else { + clone = src && jQuery.isPlainObject( src ) ? src : {}; + } + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend( { + + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + isPlainObject: function( obj ) { + var proto, Ctor; + + // Detect obvious negatives + // Use toString instead of jQuery.type to catch host objects + if ( !obj || toString.call( obj ) !== "[object Object]" ) { + return false; + } + + proto = getProto( obj ); + + // Objects with no prototype (e.g., `Object.create( null )`) are plain + if ( !proto ) { + return true; + } + + // Objects with prototype are plain iff they were constructed by a global Object function + Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; + return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; + }, + + isEmptyObject: function( obj ) { + + /* eslint-disable no-unused-vars */ + // See https://github.com/eslint/eslint/issues/6125 + var name; + + for ( name in obj ) { + return false; + } + return true; + }, + + // Evaluates a script in a global context + globalEval: function( code ) { + DOMEval( code ); + }, + + each: function( obj, callback ) { + var length, i = 0; + + if ( isArrayLike( obj ) ) { + length = obj.length; + for ( ; i < length; i++ ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } else { + for ( i in obj ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } + + return obj; + }, + + // Support: Android <=4.0 only + trim: function( text ) { + return text == null ? + "" : + ( text + "" ).replace( rtrim, "" ); + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArrayLike( Object( arr ) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + return arr == null ? -1 : indexOf.call( arr, elem, i ); + }, + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + for ( ; j < len; j++ ) { + first[ i++ ] = second[ j ]; + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var length, value, + i = 0, + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArrayLike( elems ) ) { + length = elems.length; + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +} ); + +if ( typeof Symbol === "function" ) { + jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; +} + +// Populate the class2type map +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), +function( i, name ) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +} ); + +function isArrayLike( obj ) { + + // Support: real iOS 8.2 only (not reproducible in simulator) + // `in` check used to prevent JIT error (gh-2145) + // hasOwn isn't used here due to false negatives + // regarding Nodelist length in IE + var length = !!obj && "length" in obj && obj.length, + type = toType( obj ); + + if ( isFunction( obj ) || isWindow( obj ) ) { + return false; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} +var Sizzle = +/*! + * Sizzle CSS Selector Engine v2.3.3 + * https://sizzlejs.com/ + * + * Copyright jQuery Foundation and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2016-08-08 + */ +(function( window ) { + +var i, + support, + Expr, + getText, + isXML, + tokenize, + compile, + select, + outermostContext, + sortInput, + hasDuplicate, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + 1 * new Date(), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + } + return 0; + }, + + // Instance methods + hasOwn = ({}).hasOwnProperty, + arr = [], + pop = arr.pop, + push_native = arr.push, + push = arr.push, + slice = arr.slice, + // Use a stripped-down indexOf as it's faster than native + // https://jsperf.com/thor-indexof-vs-for/5 + indexOf = function( list, elem ) { + var i = 0, + len = list.length; + for ( ; i < len; i++ ) { + if ( list[i] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + + // http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier + identifier = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+", + + // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace + + "*\\]", + + pseudos = ":(" + identifier + ")(?:\\((" + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + // 3. anything else (capture 2) + ".*" + + ")\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rwhitespace = new RegExp( whitespace + "+", "g" ), + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), + + rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + identifier + ")" ), + "CLASS": new RegExp( "^\\.(" + identifier + ")" ), + "TAG": new RegExp( "^(" + identifier + "|[*])" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rsibling = /[+~]/, + + // CSS escapes + // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), + funescape = function( _, escaped, escapedWhitespace ) { + var high = "0x" + escaped - 0x10000; + // NaN means non-codepoint + // Support: Firefox<24 + // Workaround erroneous numeric interpretation of +"0x" + return high !== high || escapedWhitespace ? + escaped : + high < 0 ? + // BMP codepoint + String.fromCharCode( high + 0x10000 ) : + // Supplemental Plane codepoint (surrogate pair) + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }, + + // CSS string/identifier serialization + // https://drafts.csswg.org/cssom/#common-serializing-idioms + rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, + fcssescape = function( ch, asCodePoint ) { + if ( asCodePoint ) { + + // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER + if ( ch === "\0" ) { + return "\uFFFD"; + } + + // Control characters and (dependent upon position) numbers get escaped as code points + return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; + } + + // Other potentially-special ASCII characters get backslash-escaped + return "\\" + ch; + }, + + // Used for iframes + // See setDocument() + // Removing the function wrapper causes a "Permission Denied" + // error in IE + unloadHandler = function() { + setDocument(); + }, + + disabledAncestor = addCombinator( + function( elem ) { + return elem.disabled === true && ("form" in elem || "label" in elem); + }, + { dir: "parentNode", next: "legend" } + ); + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + (arr = slice.call( preferredDoc.childNodes )), + preferredDoc.childNodes + ); + // Support: Android<4.0 + // Detect silently failing push.apply + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + push_native.apply( target, slice.call(els) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + // Can't trust NodeList.length + while ( (target[j++] = els[i++]) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var m, i, elem, nid, match, groups, newSelector, + newContext = context && context.ownerDocument, + + // nodeType defaults to 9, since context defaults to document + nodeType = context ? context.nodeType : 9; + + results = results || []; + + // Return early from calls with invalid selector or context + if ( typeof selector !== "string" || !selector || + nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { + + return results; + } + + // Try to shortcut find operations (as opposed to filters) in HTML documents + if ( !seed ) { + + if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { + setDocument( context ); + } + context = context || document; + + if ( documentIsHTML ) { + + // If the selector is sufficiently simple, try using a "get*By*" DOM method + // (excepting DocumentFragment context, where the methods don't exist) + if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) { + + // ID selector + if ( (m = match[1]) ) { + + // Document context + if ( nodeType === 9 ) { + if ( (elem = context.getElementById( m )) ) { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + + // Element context + } else { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( newContext && (elem = newContext.getElementById( m )) && + contains( context, elem ) && + elem.id === m ) { + + results.push( elem ); + return results; + } + } + + // Type selector + } else if ( match[2] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Class selector + } else if ( (m = match[3]) && support.getElementsByClassName && + context.getElementsByClassName ) { + + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // Take advantage of querySelectorAll + if ( support.qsa && + !compilerCache[ selector + " " ] && + (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { + + if ( nodeType !== 1 ) { + newContext = context; + newSelector = selector; + + // qSA looks outside Element context, which is not what we want + // Thanks to Andrew Dupont for this workaround technique + // Support: IE <=8 + // Exclude object elements + } else if ( context.nodeName.toLowerCase() !== "object" ) { + + // Capture the context ID, setting it first if necessary + if ( (nid = context.getAttribute( "id" )) ) { + nid = nid.replace( rcssescape, fcssescape ); + } else { + context.setAttribute( "id", (nid = expando) ); + } + + // Prefix every selector in the list + groups = tokenize( selector ); + i = groups.length; + while ( i-- ) { + groups[i] = "#" + nid + " " + toSelector( groups[i] ); + } + newSelector = groups.join( "," ); + + // Expand context for sibling selectors + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || + context; + } + + if ( newSelector ) { + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch ( qsaError ) { + } finally { + if ( nid === expando ) { + context.removeAttribute( "id" ); + } + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {function(string, object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key + " " ) > Expr.cacheLength ) { + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return (cache[ key + " " ] = value); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created element and returns a boolean result + */ +function assert( fn ) { + var el = document.createElement("fieldset"); + + try { + return !!fn( el ); + } catch (e) { + return false; + } finally { + // Remove from its parent by default + if ( el.parentNode ) { + el.parentNode.removeChild( el ); + } + // release memory in IE + el = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split("|"), + i = arr.length; + + while ( i-- ) { + Expr.attrHandle[ arr[i] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + a.sourceIndex - b.sourceIndex; + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( (cur = cur.nextSibling) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for :enabled/:disabled + * @param {Boolean} disabled true for :disabled; false for :enabled + */ +function createDisabledPseudo( disabled ) { + + // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable + return function( elem ) { + + // Only certain elements can match :enabled or :disabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled + if ( "form" in elem ) { + + // Check for inherited disabledness on relevant non-disabled elements: + // * listed form-associated elements in a disabled fieldset + // https://html.spec.whatwg.org/multipage/forms.html#category-listed + // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled + // * option elements in a disabled optgroup + // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled + // All such elements have a "form" property. + if ( elem.parentNode && elem.disabled === false ) { + + // Option elements defer to a parent optgroup if present + if ( "label" in elem ) { + if ( "label" in elem.parentNode ) { + return elem.parentNode.disabled === disabled; + } else { + return elem.disabled === disabled; + } + } + + // Support: IE 6 - 11 + // Use the isDisabled shortcut property to check for disabled fieldset ancestors + return elem.isDisabled === disabled || + + // Where there is no isDisabled, check manually + /* jshint -W018 */ + elem.isDisabled !== !disabled && + disabledAncestor( elem ) === disabled; + } + + return elem.disabled === disabled; + + // Try to winnow out elements that can't be disabled before trusting the disabled property. + // Some victims get caught in our net (label, legend, menu, track), but it shouldn't + // even exist on them, let alone have a boolean value. + } else if ( "label" in elem ) { + return elem.disabled === disabled; + } + + // Remaining elements are neither :enabled nor :disabled + return false; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction(function( argument ) { + argument = +argument; + return markFunction(function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ (j = matchIndexes[i]) ] ) { + seed[j] = !(matches[j] = seed[j]); + } + } + }); + }); +} + +/** + * Checks a node for validity as a Sizzle context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== "undefined" && context; +} + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Detects XML nodes + * @param {Element|Object} elem An element or a document + * @returns {Boolean} True iff elem is a non-HTML XML node + */ +isXML = Sizzle.isXML = function( elem ) { + // documentElement is verified for cases where it doesn't yet exist + // (such as loading iframes in IE - #4833) + var documentElement = elem && (elem.ownerDocument || elem).documentElement; + return documentElement ? documentElement.nodeName !== "HTML" : false; +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var hasCompare, subWindow, + doc = node ? node.ownerDocument || node : preferredDoc; + + // Return early if doc is invalid or already selected + if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Update global variables + document = doc; + docElem = document.documentElement; + documentIsHTML = !isXML( document ); + + // Support: IE 9-11, Edge + // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) + if ( preferredDoc !== document && + (subWindow = document.defaultView) && subWindow.top !== subWindow ) { + + // Support: IE 11, Edge + if ( subWindow.addEventListener ) { + subWindow.addEventListener( "unload", unloadHandler, false ); + + // Support: IE 9 - 10 only + } else if ( subWindow.attachEvent ) { + subWindow.attachEvent( "onunload", unloadHandler ); + } + } + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties + // (excepting IE8 booleans) + support.attributes = assert(function( el ) { + el.className = "i"; + return !el.getAttribute("className"); + }); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert(function( el ) { + el.appendChild( document.createComment("") ); + return !el.getElementsByTagName("*").length; + }); + + // Support: IE<9 + support.getElementsByClassName = rnative.test( document.getElementsByClassName ); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programmatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert(function( el ) { + docElem.appendChild( el ).id = expando; + return !document.getElementsByName || !document.getElementsByName( expando ).length; + }); + + // ID filter and find + if ( support.getById ) { + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute("id") === attrId; + }; + }; + Expr.find["ID"] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var elem = context.getElementById( id ); + return elem ? [ elem ] : []; + } + }; + } else { + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== "undefined" && + elem.getAttributeNode("id"); + return node && node.value === attrId; + }; + }; + + // Support: IE 6 - 7 only + // getElementById is not reliable as a find shortcut + Expr.find["ID"] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var node, i, elems, + elem = context.getElementById( id ); + + if ( elem ) { + + // Verify the id attribute + node = elem.getAttributeNode("id"); + if ( node && node.value === id ) { + return [ elem ]; + } + + // Fall back on getElementsByName + elems = context.getElementsByName( id ); + i = 0; + while ( (elem = elems[i++]) ) { + node = elem.getAttributeNode("id"); + if ( node && node.value === id ) { + return [ elem ]; + } + } + } + + return []; + } + }; + } + + // Tag + Expr.find["TAG"] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( tag ); + + // DocumentFragment nodes don't have gEBTN + } else if ( support.qsa ) { + return context.querySelectorAll( tag ); + } + } : + + function( tag, context ) { + var elem, + tmp = [], + i = 0, + // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( (elem = results[i++]) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See https://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( (support.qsa = rnative.test( document.querySelectorAll )) ) { + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert(function( el ) { + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // https://bugs.jquery.com/ticket/12359 + docElem.appendChild( el ).innerHTML = "" + + ""; + + // Support: IE8, Opera 11-12.16 + // Nothing should be selected when empty strings follow ^= or $= or *= + // The test attribute must be unknown in Opera but "safe" for WinRT + // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( el.querySelectorAll("[msallowcapture^='']").length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !el.querySelectorAll("[selected]").length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ + if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { + rbuggyQSA.push("~="); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !el.querySelectorAll(":checked").length ) { + rbuggyQSA.push(":checked"); + } + + // Support: Safari 8+, iOS 8+ + // https://bugs.webkit.org/show_bug.cgi?id=136851 + // In-page `selector#id sibling-combinator selector` fails + if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { + rbuggyQSA.push(".#.+[+~]"); + } + }); + + assert(function( el ) { + el.innerHTML = "" + + ""; + + // Support: Windows 8 Native Apps + // The type and name attributes are restricted during .innerHTML assignment + var input = document.createElement("input"); + input.setAttribute( "type", "hidden" ); + el.appendChild( input ).setAttribute( "name", "D" ); + + // Support: IE8 + // Enforce case-sensitivity of name attribute + if ( el.querySelectorAll("[name=d]").length ) { + rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( el.querySelectorAll(":enabled").length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: IE9-11+ + // IE's :disabled selector does not pick up the children of disabled fieldsets + docElem.appendChild( el ).disabled = true; + if ( el.querySelectorAll(":disabled").length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Opera 10-11 does not throw on post-comma invalid pseudos + el.querySelectorAll("*,:x"); + rbuggyQSA.push(",.*:"); + }); + } + + if ( (support.matchesSelector = rnative.test( (matches = docElem.matches || + docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector) )) ) { + + assert(function( el ) { + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( el, "*" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( el, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + }); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); + + /* Contains + ---------------------------------------------------------------------- */ + hasCompare = rnative.test( docElem.compareDocumentPosition ); + + // Element contains another + // Purposefully self-exclusive + // As in, an element does not contain itself + contains = hasCompare || rnative.test( docElem.contains ) ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + )); + } : + function( a, b ) { + if ( b ) { + while ( (b = b.parentNode) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = hasCompare ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 || + (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { + + // Choose the first element that is related to our preferred document + if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { + return -1; + } + if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } : + function( a, b ) { + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Parentless nodes are either documents or disconnected + if ( !aup || !bup ) { + return a === document ? -1 : + b === document ? 1 : + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( (cur = cur.parentNode) ) { + ap.unshift( cur ); + } + cur = b; + while ( (cur = cur.parentNode) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[i] === bp[i] ) { + i++; + } + + return i ? + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[i], bp[i] ) : + + // Otherwise nodes in our document sort first + ap[i] === preferredDoc ? -1 : + bp[i] === preferredDoc ? 1 : + 0; + }; + + return document; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + // Make sure that attribute selectors are quoted + expr = expr.replace( rattributeQuotes, "='$1']" ); + + if ( support.matchesSelector && documentIsHTML && + !compilerCache[ expr + " " ] && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch (e) {} + } + + return Sizzle( expr, document, null, [ elem ] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + // Set document vars if needed + if ( ( context.ownerDocument || context ) !== document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val !== undefined ? + val : + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + (val = elem.getAttributeNode(name)) && val.specified ? + val.value : + null; +}; + +Sizzle.escape = function( sel ) { + return (sel + "").replace( rcssescape, fcssescape ); +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( (elem = results[i++]) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + // Clear input after sorting to release objects + // See https://github.com/jquery/sizzle/pull/225 + sortInput = null; + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + // If no nodeType, this is expected to be an array + while ( (node = elem[i++]) ) { + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + // Use textContent for elements + // innerText usage removed for consistency of new lines (jQuery #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[1] = match[1].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape ); + + if ( match[2] === "~=" ) { + match[3] = " " + match[3] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[1] = match[1].toLowerCase(); + + if ( match[1].slice( 0, 3 ) === "nth" ) { + // nth-* requires argument + if ( !match[3] ) { + Sizzle.error( match[0] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); + match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); + + // other types prohibit arguments + } else if ( match[3] ) { + Sizzle.error( match[0] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[6] && match[2]; + + if ( matchExpr["CHILD"].test( match[0] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[3] ) { + match[2] = match[4] || match[5] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + // Get excess from tokenize (recursively) + (excess = tokenize( unquoted, true )) && + // advance to the next closing parenthesis + (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { + + // excess is a negative index + match[0] = match[0].slice( 0, excess ); + match[2] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { return true; } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && + classCache( className, function( elem ) { + return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" ); + }); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + }; + }, + + "CHILD": function( type, what, argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, context, xml ) { + var cache, uniqueCache, outerCache, node, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType, + diff = false; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( (node = node[ dir ]) ) { + if ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) { + + return false; + } + } + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + + // Seek `elem` from a previously-cached index + + // ...in a gzip-friendly way + node = parent; + outerCache = node[ expando ] || (node[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + (outerCache[ node.uniqueID ] = {}); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex && cache[ 2 ]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( (node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + (diff = nodeIndex = 0) || start.pop()) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + } else { + // Use previously-cached element index if available + if ( useCache ) { + // ...in a gzip-friendly way + node = elem; + outerCache = node[ expando ] || (node[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + (outerCache[ node.uniqueID ] = {}); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex; + } + + // xml :nth-child(...) + // or :nth-last-child(...) or :nth(-last)?-of-type(...) + if ( diff === false ) { + // Use the same loop as above to seek `elem` from the start + while ( (node = ++nodeIndex && node && node[ dir ] || + (diff = nodeIndex = 0) || start.pop()) ) { + + if ( ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) && + ++diff ) { + + // Cache the index of each encountered element + if ( useCache ) { + outerCache = node[ expando ] || (node[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + (outerCache[ node.uniqueID ] = {}); + + uniqueCache[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction(function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf( seed, matched[i] ); + seed[ idx ] = !( matches[ idx ] = matched[i] ); + } + }) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + // Potentially complex pseudos + "not": markFunction(function( selector ) { + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction(function( seed, matches, context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( (elem = unmatched[i]) ) { + seed[i] = !(matches[i] = elem); + } + } + }) : + function( elem, context, xml ) { + input[0] = elem; + matcher( input, null, xml, results ); + // Don't keep the element (issue #299) + input[0] = null; + return !results.pop(); + }; + }), + + "has": markFunction(function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + }), + + "contains": markFunction(function( text ) { + text = text.replace( runescape, funescape ); + return function( elem ) { + return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; + }; + }), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + // lang value must be a valid identifier + if ( !ridentifier.test(lang || "") ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( (elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); + return false; + }; + }), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); + }, + + // Boolean properties + "enabled": createDisabledPseudo( false ), + "disabled": createDisabledPseudo( true ), + + "checked": function( elem ) { + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); + }, + + "selected": function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos["empty"]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + + // Support: IE<8 + // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" + ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" ); + }, + + // Position-in-collection + "first": createPositionalPseudo(function() { + return [ 0 ]; + }), + + "last": createPositionalPseudo(function( matchIndexes, length ) { + return [ length - 1 ]; + }), + + "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + }), + + "even": createPositionalPseudo(function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "odd": createPositionalPseudo(function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }) + } +}; + +Expr.pseudos["nth"] = Expr.pseudos["eq"]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +tokenize = Sizzle.tokenize = function( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || (match = rcomma.exec( soFar )) ) { + if ( match ) { + // Don't consume trailing commas as valid + soFar = soFar.slice( match[0].length ) || soFar; + } + groups.push( (tokens = []) ); + } + + matched = false; + + // Combinators + if ( (match = rcombinators.exec( soFar )) ) { + matched = match.shift(); + tokens.push({ + value: matched, + // Cast descendant combinators to space + type: match[0].replace( rtrim, " " ) + }); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || + (match = preFilters[ type ]( match ))) ) { + matched = match.shift(); + tokens.push({ + value: matched, + type: type, + matches: match + }); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[i].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + skip = combinator.next, + key = skip || dir, + checkNonElements = base && key === "parentNode", + doneName = done++; + + return combinator.first ? + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + return false; + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, uniqueCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching + if ( xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || (elem[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {}); + + if ( skip && skip === elem.nodeName.toLowerCase() ) { + elem = elem[ dir ] || elem; + } else if ( (oldCache = uniqueCache[ key ]) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return (newCache[ 2 ] = oldCache[ 2 ]); + } else { + // Reuse newcache so results back-propagate to previous elements + uniqueCache[ key ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) { + return true; + } + } + } + } + } + return false; + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[i]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[0]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[i], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( (elem = unmatched[i]) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction(function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( (elem = temp[i]) ) { + matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) ) { + // Restore matcherIn since elem is not yet a final match + temp.push( (matcherIn[i] = elem) ); + } + } + postFinder( null, (matcherOut = []), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) && + (temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) { + + seed[temp] = !(results[temp] = elem); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + }); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[0].type ], + implicitRelative = leadingRelative || Expr.relative[" "], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + (checkContext = context).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + // Avoid hanging onto element (issue #299) + checkContext = null; + return ret; + } ]; + + for ( ; i < len; i++ ) { + if ( (matcher = Expr.relative[ tokens[i].type ]) ) { + matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; + } else { + matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[j].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + // We must always have either seed elements or outermost context + elems = seed || byElement && Expr.find["TAG"]( "*", outermost ), + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1), + len = elems.length; + + if ( outermost ) { + outermostContext = context === document || context || outermost; + } + + // Add elements passing elementMatchers directly to results + // Support: IE<9, Safari + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id + for ( ; i !== len && (elem = elems[i]) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + if ( !context && elem.ownerDocument !== document ) { + setDocument( elem ); + xml = !documentIsHTML; + } + while ( (matcher = elementMatchers[j++]) ) { + if ( matcher( elem, context || document, xml) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + // They will have gone through all possible matchers + if ( (elem = !matcher && elem) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // `i` is now the count of elements visited above, and adding it to `matchedCount` + // makes the latter nonnegative. + matchedCount += i; + + // Apply set filters to unmatched elements + // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` + // equals `i`), unless we didn't visit _any_ elements in the above loop because we have + // no element matchers and no seed. + // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that + // case, which will result in a "00" `matchedCount` that differs from `i` but is also + // numerically zero. + if ( bySet && i !== matchedCount ) { + j = 0; + while ( (matcher = setMatchers[j++]) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !(unmatched[i] || setMatched[i]) ) { + setMatched[i] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[i] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +}; + +/** + * A low-level selection function that works with Sizzle's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with Sizzle.compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +select = Sizzle.select = function( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( (selector = compiled.selector || selector) ); + + results = results || []; + + // Try to minimize operations if there is only one selector in the list and no seed + // (the latter of which guarantees us context) + if ( match.length === 1 ) { + + // Reduce context if the leading compound selector is an ID + tokens = match[0] = match[0].slice( 0 ); + if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && + context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) { + + context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[i]; + + // Abort if we hit a combinator + if ( Expr.relative[ (type = token.type) ] ) { + break; + } + if ( (find = Expr.find[ type ]) ) { + // Search, expanding context for leading sibling combinators + if ( (seed = find( + token.matches[0].replace( runescape, funescape ), + rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context + )) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + !context || rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +}; + +// One-time assignments + +// Sort stability +support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; + +// Support: Chrome 14-35+ +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = !!hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert(function( el ) { + // Should return 1, but returns 4 (following) + return el.compareDocumentPosition( document.createElement("fieldset") ) & 1; +}); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert(function( el ) { + el.innerHTML = ""; + return el.firstChild.getAttribute("href") === "#" ; +}) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + }); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert(function( el ) { + el.innerHTML = ""; + el.firstChild.setAttribute( "value", "" ); + return el.firstChild.getAttribute( "value" ) === ""; +}) ) { + addHandle( "value", function( elem, name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + }); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert(function( el ) { + return el.getAttribute("disabled") == null; +}) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return elem[ name ] === true ? name.toLowerCase() : + (val = elem.getAttributeNode( name )) && val.specified ? + val.value : + null; + } + }); +} + +return Sizzle; + +})( window ); + + + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; + +// Deprecated +jQuery.expr[ ":" ] = jQuery.expr.pseudos; +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; +jQuery.escapeSelector = Sizzle.escape; + + + + +var dir = function( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; +}; + + +var siblings = function( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; +}; + + +var rneedsContext = jQuery.expr.match.needsContext; + + + +function nodeName( elem, name ) { + + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + +}; +var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); + + + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + return !!qualifier.call( elem, i, elem ) !== not; + } ); + } + + // Single element + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + } ); + } + + // Arraylike of elements (jQuery, arguments, Array) + if ( typeof qualifier !== "string" ) { + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) > -1 ) !== not; + } ); + } + + // Filtered directly for both simple and complex selectors + return jQuery.filter( qualifier, elements, not ); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + if ( elems.length === 1 && elem.nodeType === 1 ) { + return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; + } + + return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + } ) ); +}; + +jQuery.fn.extend( { + find: function( selector ) { + var i, ret, + len = this.length, + self = this; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter( function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + } ) ); + } + + ret = this.pushStack( [] ); + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + return len > 1 ? jQuery.uniqueSort( ret ) : ret; + }, + filter: function( selector ) { + return this.pushStack( winnow( this, selector || [], false ) ); + }, + not: function( selector ) { + return this.pushStack( winnow( this, selector || [], true ) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +} ); + + +// Initialize a jQuery object + + +// A central reference to the root jQuery(document) +var rootjQuery, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + // Shortcut simple #id case for speed + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, + + init = jQuery.fn.init = function( selector, context, root ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Method init() accepts an alternate rootjQuery + // so migrate can support jQuery.sub (gh-2101) + root = root || rootjQuery; + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector[ 0 ] === "<" && + selector[ selector.length - 1 ] === ">" && + selector.length >= 3 ) { + + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && ( match[ 1 ] || !context ) ) { + + // HANDLE: $(html) -> $(array) + if ( match[ 1 ] ) { + context = context instanceof jQuery ? context[ 0 ] : context; + + // Option to run scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[ 1 ], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + + // Properties of context are called as methods if possible + if ( isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[ 2 ] ); + + if ( elem ) { + + // Inject the element directly into the jQuery object + this[ 0 ] = elem; + this.length = 1; + } + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || root ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this[ 0 ] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( isFunction( selector ) ) { + return root.ready !== undefined ? + root.ready( selector ) : + + // Execute immediately if ready is not present + selector( jQuery ); + } + + return jQuery.makeArray( selector, this ); + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document ); + + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + + // Methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend( { + has: function( target ) { + var targets = jQuery( target, this ), + l = targets.length; + + return this.filter( function() { + var i = 0; + for ( ; i < l; i++ ) { + if ( jQuery.contains( this, targets[ i ] ) ) { + return true; + } + } + } ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + targets = typeof selectors !== "string" && jQuery( selectors ); + + // Positional selectors never match, since there's no _selection_ context + if ( !rneedsContext.test( selectors ) ) { + for ( ; i < l; i++ ) { + for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { + + // Always skip document fragments + if ( cur.nodeType < 11 && ( targets ? + targets.index( cur ) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector( cur, selectors ) ) ) { + + matched.push( cur ); + break; + } + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); + }, + + // Determine the position of an element within the set + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; + } + + // Index in selector + if ( typeof elem === "string" ) { + return indexOf.call( jQuery( elem ), this[ 0 ] ); + } + + // Locate the position of the desired element + return indexOf.call( this, + + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[ 0 ] : elem + ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.uniqueSort( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter( selector ) + ); + } +} ); + +function sibling( cur, dir ) { + while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} + return cur; +} + +jQuery.each( { + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + return dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + return dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + return dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return siblings( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return siblings( elem.firstChild ); + }, + contents: function( elem ) { + if ( nodeName( elem, "iframe" ) ) { + return elem.contentDocument; + } + + // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only + // Treat the template element as a regular one in browsers that + // don't support it. + if ( nodeName( elem, "template" ) ) { + elem = elem.content || elem; + } + + return jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var matched = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + matched = jQuery.filter( selector, matched ); + } + + if ( this.length > 1 ) { + + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + jQuery.uniqueSort( matched ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + matched.reverse(); + } + } + + return this.pushStack( matched ); + }; +} ); +var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); + + + +// Convert String-formatted options into Object-formatted ones +function createOptions( options ) { + var object = {}; + jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { + object[ flag ] = true; + } ); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + createOptions( options ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + + // Last fire value for non-forgettable lists + memory, + + // Flag to know if list was already fired + fired, + + // Flag to prevent firing + locked, + + // Actual callback list + list = [], + + // Queue of execution data for repeatable lists + queue = [], + + // Index of currently firing callback (modified by add/remove as needed) + firingIndex = -1, + + // Fire callbacks + fire = function() { + + // Enforce single-firing + locked = locked || options.once; + + // Execute callbacks for all pending executions, + // respecting firingIndex overrides and runtime changes + fired = firing = true; + for ( ; queue.length; firingIndex = -1 ) { + memory = queue.shift(); + while ( ++firingIndex < list.length ) { + + // Run callback and check for early termination + if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && + options.stopOnFalse ) { + + // Jump to end and forget the data so .add doesn't re-fire + firingIndex = list.length; + memory = false; + } + } + } + + // Forget the data if we're done with it + if ( !options.memory ) { + memory = false; + } + + firing = false; + + // Clean up if we're done firing for good + if ( locked ) { + + // Keep an empty list if we have data for future add calls + if ( memory ) { + list = []; + + // Otherwise, this object is spent + } else { + list = ""; + } + } + }, + + // Actual Callbacks object + self = { + + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + + // If we have memory from a past run, we should fire after adding + if ( memory && !firing ) { + firingIndex = list.length - 1; + queue.push( memory ); + } + + ( function add( args ) { + jQuery.each( args, function( _, arg ) { + if ( isFunction( arg ) ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && toType( arg ) !== "string" ) { + + // Inspect recursively + add( arg ); + } + } ); + } )( arguments ); + + if ( memory && !firing ) { + fire(); + } + } + return this; + }, + + // Remove a callback from the list + remove: function() { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + + // Handle firing indexes + if ( index <= firingIndex ) { + firingIndex--; + } + } + } ); + return this; + }, + + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? + jQuery.inArray( fn, list ) > -1 : + list.length > 0; + }, + + // Remove all callbacks from the list + empty: function() { + if ( list ) { + list = []; + } + return this; + }, + + // Disable .fire and .add + // Abort any current/pending executions + // Clear all callbacks and values + disable: function() { + locked = queue = []; + list = memory = ""; + return this; + }, + disabled: function() { + return !list; + }, + + // Disable .fire + // Also disable .add unless we have memory (since it would have no effect) + // Abort any pending executions + lock: function() { + locked = queue = []; + if ( !memory && !firing ) { + list = memory = ""; + } + return this; + }, + locked: function() { + return !!locked; + }, + + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( !locked ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + queue.push( args ); + if ( !firing ) { + fire(); + } + } + return this; + }, + + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + + +function Identity( v ) { + return v; +} +function Thrower( ex ) { + throw ex; +} + +function adoptValue( value, resolve, reject, noValue ) { + var method; + + try { + + // Check for promise aspect first to privilege synchronous behavior + if ( value && isFunction( ( method = value.promise ) ) ) { + method.call( value ).done( resolve ).fail( reject ); + + // Other thenables + } else if ( value && isFunction( ( method = value.then ) ) ) { + method.call( value, resolve, reject ); + + // Other non-thenables + } else { + + // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: + // * false: [ value ].slice( 0 ) => resolve( value ) + // * true: [ value ].slice( 1 ) => resolve() + resolve.apply( undefined, [ value ].slice( noValue ) ); + } + + // For Promises/A+, convert exceptions into rejections + // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in + // Deferred#then to conditionally suppress rejection. + } catch ( value ) { + + // Support: Android 4.0 only + // Strict mode functions invoked without .call/.apply get global-object context + reject.apply( undefined, [ value ] ); + } +} + +jQuery.extend( { + + Deferred: function( func ) { + var tuples = [ + + // action, add listener, callbacks, + // ... .then handlers, argument index, [final state] + [ "notify", "progress", jQuery.Callbacks( "memory" ), + jQuery.Callbacks( "memory" ), 2 ], + [ "resolve", "done", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 0, "resolved" ], + [ "reject", "fail", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 1, "rejected" ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + "catch": function( fn ) { + return promise.then( null, fn ); + }, + + // Keep pipe for back-compat + pipe: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + + return jQuery.Deferred( function( newDefer ) { + jQuery.each( tuples, function( i, tuple ) { + + // Map tuples (progress, done, fail) to arguments (done, fail, progress) + var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; + + // deferred.progress(function() { bind to newDefer or newDefer.notify }) + // deferred.done(function() { bind to newDefer or newDefer.resolve }) + // deferred.fail(function() { bind to newDefer or newDefer.reject }) + deferred[ tuple[ 1 ] ]( function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && isFunction( returned.promise ) ) { + returned.promise() + .progress( newDefer.notify ) + .done( newDefer.resolve ) + .fail( newDefer.reject ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( + this, + fn ? [ returned ] : arguments + ); + } + } ); + } ); + fns = null; + } ).promise(); + }, + then: function( onFulfilled, onRejected, onProgress ) { + var maxDepth = 0; + function resolve( depth, deferred, handler, special ) { + return function() { + var that = this, + args = arguments, + mightThrow = function() { + var returned, then; + + // Support: Promises/A+ section 2.3.3.3.3 + // https://promisesaplus.com/#point-59 + // Ignore double-resolution attempts + if ( depth < maxDepth ) { + return; + } + + returned = handler.apply( that, args ); + + // Support: Promises/A+ section 2.3.1 + // https://promisesaplus.com/#point-48 + if ( returned === deferred.promise() ) { + throw new TypeError( "Thenable self-resolution" ); + } + + // Support: Promises/A+ sections 2.3.3.1, 3.5 + // https://promisesaplus.com/#point-54 + // https://promisesaplus.com/#point-75 + // Retrieve `then` only once + then = returned && + + // Support: Promises/A+ section 2.3.4 + // https://promisesaplus.com/#point-64 + // Only check objects and functions for thenability + ( typeof returned === "object" || + typeof returned === "function" ) && + returned.then; + + // Handle a returned thenable + if ( isFunction( then ) ) { + + // Special processors (notify) just wait for resolution + if ( special ) { + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ) + ); + + // Normal processors (resolve) also hook into progress + } else { + + // ...and disregard older resolution values + maxDepth++; + + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ), + resolve( maxDepth, deferred, Identity, + deferred.notifyWith ) + ); + } + + // Handle all other returned values + } else { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Identity ) { + that = undefined; + args = [ returned ]; + } + + // Process the value(s) + // Default process is resolve + ( special || deferred.resolveWith )( that, args ); + } + }, + + // Only normal processors (resolve) catch and reject exceptions + process = special ? + mightThrow : + function() { + try { + mightThrow(); + } catch ( e ) { + + if ( jQuery.Deferred.exceptionHook ) { + jQuery.Deferred.exceptionHook( e, + process.stackTrace ); + } + + // Support: Promises/A+ section 2.3.3.3.4.1 + // https://promisesaplus.com/#point-61 + // Ignore post-resolution exceptions + if ( depth + 1 >= maxDepth ) { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Thrower ) { + that = undefined; + args = [ e ]; + } + + deferred.rejectWith( that, args ); + } + } + }; + + // Support: Promises/A+ section 2.3.3.3.1 + // https://promisesaplus.com/#point-57 + // Re-resolve promises immediately to dodge false rejection from + // subsequent errors + if ( depth ) { + process(); + } else { + + // Call an optional hook to record the stack, in case of exception + // since it's otherwise lost when execution goes async + if ( jQuery.Deferred.getStackHook ) { + process.stackTrace = jQuery.Deferred.getStackHook(); + } + window.setTimeout( process ); + } + }; + } + + return jQuery.Deferred( function( newDefer ) { + + // progress_handlers.add( ... ) + tuples[ 0 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onProgress ) ? + onProgress : + Identity, + newDefer.notifyWith + ) + ); + + // fulfilled_handlers.add( ... ) + tuples[ 1 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onFulfilled ) ? + onFulfilled : + Identity + ) + ); + + // rejected_handlers.add( ... ) + tuples[ 2 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onRejected ) ? + onRejected : + Thrower + ) + ); + } ).promise(); + }, + + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 5 ]; + + // promise.progress = list.add + // promise.done = list.add + // promise.fail = list.add + promise[ tuple[ 1 ] ] = list.add; + + // Handle state + if ( stateString ) { + list.add( + function() { + + // state = "resolved" (i.e., fulfilled) + // state = "rejected" + state = stateString; + }, + + // rejected_callbacks.disable + // fulfilled_callbacks.disable + tuples[ 3 - i ][ 2 ].disable, + + // rejected_handlers.disable + // fulfilled_handlers.disable + tuples[ 3 - i ][ 3 ].disable, + + // progress_callbacks.lock + tuples[ 0 ][ 2 ].lock, + + // progress_handlers.lock + tuples[ 0 ][ 3 ].lock + ); + } + + // progress_handlers.fire + // fulfilled_handlers.fire + // rejected_handlers.fire + list.add( tuple[ 3 ].fire ); + + // deferred.notify = function() { deferred.notifyWith(...) } + // deferred.resolve = function() { deferred.resolveWith(...) } + // deferred.reject = function() { deferred.rejectWith(...) } + deferred[ tuple[ 0 ] ] = function() { + deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); + return this; + }; + + // deferred.notifyWith = list.fireWith + // deferred.resolveWith = list.fireWith + // deferred.rejectWith = list.fireWith + deferred[ tuple[ 0 ] + "With" ] = list.fireWith; + } ); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( singleValue ) { + var + + // count of uncompleted subordinates + remaining = arguments.length, + + // count of unprocessed arguments + i = remaining, + + // subordinate fulfillment data + resolveContexts = Array( i ), + resolveValues = slice.call( arguments ), + + // the master Deferred + master = jQuery.Deferred(), + + // subordinate callback factory + updateFunc = function( i ) { + return function( value ) { + resolveContexts[ i ] = this; + resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( !( --remaining ) ) { + master.resolveWith( resolveContexts, resolveValues ); + } + }; + }; + + // Single- and empty arguments are adopted like Promise.resolve + if ( remaining <= 1 ) { + adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, + !remaining ); + + // Use .then() to unwrap secondary thenables (cf. gh-3000) + if ( master.state() === "pending" || + isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { + + return master.then(); + } + } + + // Multiple arguments are aggregated like Promise.all array elements + while ( i-- ) { + adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); + } + + return master.promise(); + } +} ); + + +// These usually indicate a programmer mistake during development, +// warn about them ASAP rather than swallowing them by default. +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; + +jQuery.Deferred.exceptionHook = function( error, stack ) { + + // Support: IE 8 - 9 only + // Console exists when dev tools are open, which can happen at any time + if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { + window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); + } +}; + + + + +jQuery.readyException = function( error ) { + window.setTimeout( function() { + throw error; + } ); +}; + + + + +// The deferred used on DOM ready +var readyList = jQuery.Deferred(); + +jQuery.fn.ready = function( fn ) { + + readyList + .then( fn ) + + // Wrap jQuery.readyException in a function so that the lookup + // happens at the time of error handling instead of callback + // registration. + .catch( function( error ) { + jQuery.readyException( error ); + } ); + + return this; +}; + +jQuery.extend( { + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + } +} ); + +jQuery.ready.then = readyList.then; + +// The ready event handler and self cleanup method +function completed() { + document.removeEventListener( "DOMContentLoaded", completed ); + window.removeEventListener( "load", completed ); + jQuery.ready(); +} + +// Catch cases where $(document).ready() is called +// after the browser event has already occurred. +// Support: IE <=9 - 10 only +// Older IE sometimes signals "interactive" too soon +if ( document.readyState === "complete" || + ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { + + // Handle it asynchronously to allow scripts the opportunity to delay ready + window.setTimeout( jQuery.ready ); + +} else { + + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed ); +} + + + + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + len = elems.length, + bulk = key == null; + + // Sets many values + if ( toType( key ) === "object" ) { + chainable = true; + for ( i in key ) { + access( elems, fn, i, key[ i ], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < len; i++ ) { + fn( + elems[ i ], key, raw ? + value : + value.call( elems[ i ], i, fn( elems[ i ], key ) ) + ); + } + } + } + + if ( chainable ) { + return elems; + } + + // Gets + if ( bulk ) { + return fn.call( elems ); + } + + return len ? fn( elems[ 0 ], key ) : emptyGet; +}; + + +// Matches dashed string for camelizing +var rmsPrefix = /^-ms-/, + rdashAlpha = /-([a-z])/g; + +// Used by camelCase as callback to replace() +function fcamelCase( all, letter ) { + return letter.toUpperCase(); +} + +// Convert dashed to camelCase; used by the css and data modules +// Support: IE <=9 - 11, Edge 12 - 15 +// Microsoft forgot to hump their vendor prefix (#9572) +function camelCase( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); +} +var acceptData = function( owner ) { + + // Accepts only: + // - Node + // - Node.ELEMENT_NODE + // - Node.DOCUMENT_NODE + // - Object + // - Any + return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +}; + + + + +function Data() { + this.expando = jQuery.expando + Data.uid++; +} + +Data.uid = 1; + +Data.prototype = { + + cache: function( owner ) { + + // Check if the owner object already has a cache + var value = owner[ this.expando ]; + + // If not, create one + if ( !value ) { + value = {}; + + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return an empty object. + if ( acceptData( owner ) ) { + + // If it is a node unlikely to be stringify-ed or looped over + // use plain assignment + if ( owner.nodeType ) { + owner[ this.expando ] = value; + + // Otherwise secure it in a non-enumerable property + // configurable must be true to allow the property to be + // deleted when data is removed + } else { + Object.defineProperty( owner, this.expando, { + value: value, + configurable: true + } ); + } + } + } + + return value; + }, + set: function( owner, data, value ) { + var prop, + cache = this.cache( owner ); + + // Handle: [ owner, key, value ] args + // Always use camelCase key (gh-2257) + if ( typeof data === "string" ) { + cache[ camelCase( data ) ] = value; + + // Handle: [ owner, { properties } ] args + } else { + + // Copy the properties one-by-one to the cache object + for ( prop in data ) { + cache[ camelCase( prop ) ] = data[ prop ]; + } + } + return cache; + }, + get: function( owner, key ) { + return key === undefined ? + this.cache( owner ) : + + // Always use camelCase key (gh-2257) + owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; + }, + access: function( owner, key, value ) { + + // In cases where either: + // + // 1. No key was specified + // 2. A string key was specified, but no value provided + // + // Take the "read" path and allow the get method to determine + // which value to return, respectively either: + // + // 1. The entire cache object + // 2. The data stored at the key + // + if ( key === undefined || + ( ( key && typeof key === "string" ) && value === undefined ) ) { + + return this.get( owner, key ); + } + + // When the key is not a string, or both a key and value + // are specified, set or extend (existing objects) with either: + // + // 1. An object of properties + // 2. A key and value + // + this.set( owner, key, value ); + + // Since the "set" path can have two possible entry points + // return the expected data based on which path was taken[*] + return value !== undefined ? value : key; + }, + remove: function( owner, key ) { + var i, + cache = owner[ this.expando ]; + + if ( cache === undefined ) { + return; + } + + if ( key !== undefined ) { + + // Support array or space separated string of keys + if ( Array.isArray( key ) ) { + + // If key is an array of keys... + // We always set camelCase keys, so remove that. + key = key.map( camelCase ); + } else { + key = camelCase( key ); + + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + key = key in cache ? + [ key ] : + ( key.match( rnothtmlwhite ) || [] ); + } + + i = key.length; + + while ( i-- ) { + delete cache[ key[ i ] ]; + } + } + + // Remove the expando if there's no more data + if ( key === undefined || jQuery.isEmptyObject( cache ) ) { + + // Support: Chrome <=35 - 45 + // Webkit & Blink performance suffers when deleting properties + // from DOM nodes, so set to undefined instead + // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) + if ( owner.nodeType ) { + owner[ this.expando ] = undefined; + } else { + delete owner[ this.expando ]; + } + } + }, + hasData: function( owner ) { + var cache = owner[ this.expando ]; + return cache !== undefined && !jQuery.isEmptyObject( cache ); + } +}; +var dataPriv = new Data(); + +var dataUser = new Data(); + + + +// Implementation Summary +// +// 1. Enforce API surface and semantic compatibility with 1.9.x branch +// 2. Improve the module's maintainability by reducing the storage +// paths to a single mechanism. +// 3. Use the same single mechanism to support "private" and "user" data. +// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) +// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /[A-Z]/g; + +function getData( data ) { + if ( data === "true" ) { + return true; + } + + if ( data === "false" ) { + return false; + } + + if ( data === "null" ) { + return null; + } + + // Only convert to a number if it doesn't change the string + if ( data === +data + "" ) { + return +data; + } + + if ( rbrace.test( data ) ) { + return JSON.parse( data ); + } + + return data; +} + +function dataAttr( elem, key, data ) { + var name; + + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = getData( data ); + } catch ( e ) {} + + // Make sure we set the data so it isn't changed later + dataUser.set( elem, key, data ); + } else { + data = undefined; + } + } + return data; +} + +jQuery.extend( { + hasData: function( elem ) { + return dataUser.hasData( elem ) || dataPriv.hasData( elem ); + }, + + data: function( elem, name, data ) { + return dataUser.access( elem, name, data ); + }, + + removeData: function( elem, name ) { + dataUser.remove( elem, name ); + }, + + // TODO: Now that all calls to _data and _removeData have been replaced + // with direct calls to dataPriv methods, these can be deprecated. + _data: function( elem, name, data ) { + return dataPriv.access( elem, name, data ); + }, + + _removeData: function( elem, name ) { + dataPriv.remove( elem, name ); + } +} ); + +jQuery.fn.extend( { + data: function( key, value ) { + var i, name, data, + elem = this[ 0 ], + attrs = elem && elem.attributes; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = dataUser.get( elem ); + + if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE 11 only + // The attrs elements can be null (#14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = camelCase( name.slice( 5 ) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + dataPriv.set( elem, "hasDataAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each( function() { + dataUser.set( this, key ); + } ); + } + + return access( this, function( value ) { + var data; + + // The calling jQuery object (element matches) is not empty + // (and therefore has an element appears at this[ 0 ]) and the + // `value` parameter was not undefined. An empty jQuery object + // will result in `undefined` for elem = this[ 0 ] which will + // throw an exception if an attempt to read a data cache is made. + if ( elem && value === undefined ) { + + // Attempt to get data from the cache + // The key will always be camelCased in Data + data = dataUser.get( elem, key ); + if ( data !== undefined ) { + return data; + } + + // Attempt to "discover" the data in + // HTML5 custom data-* attrs + data = dataAttr( elem, key ); + if ( data !== undefined ) { + return data; + } + + // We tried really hard, but the data doesn't exist. + return; + } + + // Set the data... + this.each( function() { + + // We always store the camelCased key + dataUser.set( this, key, value ); + } ); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each( function() { + dataUser.remove( this, key ); + } ); + } +} ); + + +jQuery.extend( { + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = dataPriv.get( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || Array.isArray( data ) ) { + queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // Clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // Not public - generate a queueHooks object, or return the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { + empty: jQuery.Callbacks( "once memory" ).add( function() { + dataPriv.remove( elem, [ type + "queue", key ] ); + } ) + } ); + } +} ); + +jQuery.fn.extend( { + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[ 0 ], type ); + } + + return data === undefined ? + this : + this.each( function() { + var queue = jQuery.queue( this, type, data ); + + // Ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + } ); + }, + dequeue: function( type ) { + return this.each( function() { + jQuery.dequeue( this, type ); + } ); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +} ); +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; + +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); + + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +var isHiddenWithinTree = function( elem, el ) { + + // isHiddenWithinTree might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + + // Inline style trumps all + return elem.style.display === "none" || + elem.style.display === "" && + + // Otherwise, check computed style + // Support: Firefox <=43 - 45 + // Disconnected elements can have computed display: none, so first confirm that elem is + // in the document. + jQuery.contains( elem.ownerDocument, elem ) && + + jQuery.css( elem, "display" ) === "none"; + }; + +var swap = function( elem, options, callback, args ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.apply( elem, args || [] ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; +}; + + + + +function adjustCSS( elem, prop, valueParts, tween ) { + var adjusted, scale, + maxIterations = 20, + currentValue = tween ? + function() { + return tween.cur(); + } : + function() { + return jQuery.css( elem, prop, "" ); + }, + initial = currentValue(), + unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), + + // Starting value computation is required for potential unit mismatches + initialInUnit = ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && + rcssNum.exec( jQuery.css( elem, prop ) ); + + if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { + + // Support: Firefox <=54 + // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) + initial = initial / 2; + + // Trust units reported by jQuery.css + unit = unit || initialInUnit[ 3 ]; + + // Iteratively approximate from a nonzero starting point + initialInUnit = +initial || 1; + + while ( maxIterations-- ) { + + // Evaluate and update our best guess (doubling guesses that zero out). + // Finish if the scale equals or crosses 1 (making the old*new product non-positive). + jQuery.style( elem, prop, initialInUnit + unit ); + if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { + maxIterations = 0; + } + initialInUnit = initialInUnit / scale; + + } + + initialInUnit = initialInUnit * 2; + jQuery.style( elem, prop, initialInUnit + unit ); + + // Make sure we update the tween properties later on + valueParts = valueParts || []; + } + + if ( valueParts ) { + initialInUnit = +initialInUnit || +initial || 0; + + // Apply relative offset (+=/-=) if specified + adjusted = valueParts[ 1 ] ? + initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : + +valueParts[ 2 ]; + if ( tween ) { + tween.unit = unit; + tween.start = initialInUnit; + tween.end = adjusted; + } + } + return adjusted; +} + + +var defaultDisplayMap = {}; + +function getDefaultDisplay( elem ) { + var temp, + doc = elem.ownerDocument, + nodeName = elem.nodeName, + display = defaultDisplayMap[ nodeName ]; + + if ( display ) { + return display; + } + + temp = doc.body.appendChild( doc.createElement( nodeName ) ); + display = jQuery.css( temp, "display" ); + + temp.parentNode.removeChild( temp ); + + if ( display === "none" ) { + display = "block"; + } + defaultDisplayMap[ nodeName ] = display; + + return display; +} + +function showHide( elements, show ) { + var display, elem, + values = [], + index = 0, + length = elements.length; + + // Determine new display value for elements that need to change + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + display = elem.style.display; + if ( show ) { + + // Since we force visibility upon cascade-hidden elements, an immediate (and slow) + // check is required in this first loop unless we have a nonempty display value (either + // inline or about-to-be-restored) + if ( display === "none" ) { + values[ index ] = dataPriv.get( elem, "display" ) || null; + if ( !values[ index ] ) { + elem.style.display = ""; + } + } + if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { + values[ index ] = getDefaultDisplay( elem ); + } + } else { + if ( display !== "none" ) { + values[ index ] = "none"; + + // Remember what we're overwriting + dataPriv.set( elem, "display", display ); + } + } + } + + // Set the display of the elements in a second loop to avoid constant reflow + for ( index = 0; index < length; index++ ) { + if ( values[ index ] != null ) { + elements[ index ].style.display = values[ index ]; + } + } + + return elements; +} + +jQuery.fn.extend( { + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + if ( typeof state === "boolean" ) { + return state ? this.show() : this.hide(); + } + + return this.each( function() { + if ( isHiddenWithinTree( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + } ); + } +} ); +var rcheckableType = ( /^(?:checkbox|radio)$/i ); + +var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]+)/i ); + +var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); + + + +// We have to close these tags to support XHTML (#13200) +var wrapMap = { + + // Support: IE <=9 only + option: [ 1, "" ], + + // XHTML parsers do not magically insert elements in the + // same way that tag soup parsers do. So we cannot shorten + // this by omitting or other required elements. + thead: [ 1, "", "
    " ], + col: [ 2, "", "
    " ], + tr: [ 2, "", "
    " ], + td: [ 3, "", "
    " ], + + _default: [ 0, "", "" ] +}; + +// Support: IE <=9 only +wrapMap.optgroup = wrapMap.option; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + + +function getAll( context, tag ) { + + // Support: IE <=9 - 11 only + // Use typeof to avoid zero-argument method invocation on host objects (#15151) + var ret; + + if ( typeof context.getElementsByTagName !== "undefined" ) { + ret = context.getElementsByTagName( tag || "*" ); + + } else if ( typeof context.querySelectorAll !== "undefined" ) { + ret = context.querySelectorAll( tag || "*" ); + + } else { + ret = []; + } + + if ( tag === undefined || tag && nodeName( context, tag ) ) { + return jQuery.merge( [ context ], ret ); + } + + return ret; +} + + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + dataPriv.set( + elems[ i ], + "globalEval", + !refElements || dataPriv.get( refElements[ i ], "globalEval" ) + ); + } +} + + +var rhtml = /<|&#?\w+;/; + +function buildFragment( elems, context, scripts, selection, ignored ) { + var elem, tmp, tag, wrap, contains, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( toType( elem ) === "object" ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( ( elem = nodes[ i++ ] ) ) { + + // Skip elements already in the context collection (trac-4087) + if ( selection && jQuery.inArray( elem, selection ) > -1 ) { + if ( ignored ) { + ignored.push( elem ); + } + continue; + } + + contains = jQuery.contains( elem.ownerDocument, elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( contains ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( ( elem = tmp[ j++ ] ) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; +} + + +( function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Android 4.0 - 4.3 only + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Android <=4.1 only + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE <=11 only + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; +} )(); +var documentElement = document.documentElement; + + + +var + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +// Support: IE <=9 only +// See #13393 for more info +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +function on( elem, types, selector, data, fn, one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + on( elem, type, selector, data, types[ type ], one ); + } + return elem; + } + + if ( data == null && fn == null ) { + + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return elem; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return elem.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + } ); +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.get( elem ); + + // Don't attach events to noData or text/comment nodes (but allow plain objects) + if ( !elemData ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Ensure that invalid selectors throw exceptions at attach time + // Evaluate against documentElement in case elem is a non-element node (e.g., document) + if ( selector ) { + jQuery.find.matchesSelector( documentElement, selector ); + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !( events = elemData.events ) ) { + events = elemData.events = {}; + } + if ( !( eventHandle = elemData.handle ) ) { + eventHandle = elemData.handle = function( e ) { + + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend( { + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join( "." ) + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !( handlers = events[ type ] ) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || + special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); + + if ( !elemData || !( events = elemData.events ) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[ 2 ] && + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || + selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || + special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove data and the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + dataPriv.remove( elem, "handle events" ); + } + }, + + dispatch: function( nativeEvent ) { + + // Make a writable jQuery.Event from the native event object + var event = jQuery.event.fix( nativeEvent ); + + var i, j, ret, matched, handleObj, handlerQueue, + args = new Array( arguments.length ), + handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[ 0 ] = event; + + for ( i = 1; i < arguments.length; i++ ) { + args[ i ] = arguments[ i ]; + } + + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( ( handleObj = matched.handlers[ j++ ] ) && + !event.isImmediatePropagationStopped() ) { + + // Triggered event must either 1) have no namespace, or 2) have namespace(s) + // a subset or equal to those in the bound event (both can have no namespace). + if ( !event.rnamespace || event.rnamespace.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || + handleObj.handler ).apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( ( event.result = ret ) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, handleObj, sel, matchedHandlers, matchedSelectors, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + if ( delegateCount && + + // Support: IE <=9 + // Black-hole SVG instance trees (trac-13180) + cur.nodeType && + + // Support: Firefox <=42 + // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) + // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click + // Support: IE 11 only + // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) + !( event.type === "click" && event.button >= 1 ) ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { + matchedHandlers = []; + matchedSelectors = {}; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matchedSelectors[ sel ] === undefined ) { + matchedSelectors[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) > -1 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matchedSelectors[ sel ] ) { + matchedHandlers.push( handleObj ); + } + } + if ( matchedHandlers.length ) { + handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); + } + } + } + } + + // Add the remaining (directly-bound) handlers + cur = this; + if ( delegateCount < handlers.length ) { + handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); + } + + return handlerQueue; + }, + + addProp: function( name, hook ) { + Object.defineProperty( jQuery.Event.prototype, name, { + enumerable: true, + configurable: true, + + get: isFunction( hook ) ? + function() { + if ( this.originalEvent ) { + return hook( this.originalEvent ); + } + } : + function() { + if ( this.originalEvent ) { + return this.originalEvent[ name ]; + } + }, + + set: function( value ) { + Object.defineProperty( this, name, { + enumerable: true, + configurable: true, + writable: true, + value: value + } ); + } + } ); + }, + + fix: function( originalEvent ) { + return originalEvent[ jQuery.expando ] ? + originalEvent : + new jQuery.Event( originalEvent ); + }, + + special: { + load: { + + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + focus: { + + // Fire native event if possible so blur/focus sequence is correct + trigger: function() { + if ( this !== safeActiveElement() && this.focus ) { + this.focus(); + return false; + } + }, + delegateType: "focusin" + }, + blur: { + trigger: function() { + if ( this === safeActiveElement() && this.blur ) { + this.blur(); + return false; + } + }, + delegateType: "focusout" + }, + click: { + + // For checkbox, fire native event so checked state will be right + trigger: function() { + if ( this.type === "checkbox" && this.click && nodeName( this, "input" ) ) { + this.click(); + return false; + } + }, + + // For cross-browser consistency, don't fire native .click() on links + _default: function( event ) { + return nodeName( event.target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + } +}; + +jQuery.removeEvent = function( elem, type, handle ) { + + // This "if" is needed for plain objects + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle ); + } +}; + +jQuery.Event = function( src, props ) { + + // Allow instantiation without the 'new' keyword + if ( !( this instanceof jQuery.Event ) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + + // Support: Android <=2.3 only + src.returnValue === false ? + returnTrue : + returnFalse; + + // Create target properties + // Support: Safari <=6 - 7 only + // Target should not be a text node (#504, #13143) + this.target = ( src.target && src.target.nodeType === 3 ) ? + src.target.parentNode : + src.target; + + this.currentTarget = src.currentTarget; + this.relatedTarget = src.relatedTarget; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || Date.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + constructor: jQuery.Event, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + isSimulated: false, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && !this.isSimulated ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Includes all common event props including KeyEvent and MouseEvent specific props +jQuery.each( { + altKey: true, + bubbles: true, + cancelable: true, + changedTouches: true, + ctrlKey: true, + detail: true, + eventPhase: true, + metaKey: true, + pageX: true, + pageY: true, + shiftKey: true, + view: true, + "char": true, + charCode: true, + key: true, + keyCode: true, + button: true, + buttons: true, + clientX: true, + clientY: true, + offsetX: true, + offsetY: true, + pointerId: true, + pointerType: true, + screenX: true, + screenY: true, + targetTouches: true, + toElement: true, + touches: true, + + which: function( event ) { + var button = event.button; + + // Add which for key events + if ( event.which == null && rkeyEvent.test( event.type ) ) { + return event.charCode != null ? event.charCode : event.keyCode; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { + if ( button & 1 ) { + return 1; + } + + if ( button & 2 ) { + return 3; + } + + if ( button & 4 ) { + return 2; + } + + return 0; + } + + return event.which; + } +}, jQuery.event.addProp ); + +// Create mouseenter/leave events using mouseover/out and event-time checks +// so that event delegation works in jQuery. +// Do the same for pointerenter/pointerleave and pointerover/pointerout +// +// Support: Safari 7 only +// Safari sends mouseenter too often; see: +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 +// for the description of the bug (it existed in older Chrome versions as well). +jQuery.each( { + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mouseenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +} ); + +jQuery.fn.extend( { + + on: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn ); + }, + one: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? + handleObj.origType + "." + handleObj.namespace : + handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each( function() { + jQuery.event.remove( this, types, fn, selector ); + } ); + } +} ); + + +var + + /* eslint-disable max-len */ + + // See https://github.com/eslint/eslint/issues/3229 + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi, + + /* eslint-enable */ + + // Support: IE <=10 - 11, Edge 12 - 13 only + // In IE/Edge using regex groups here causes severe slowdowns. + // See https://connect.microsoft.com/IE/feedback/details/1736512/ + rnoInnerhtml = /\s*$/g; + +// Prefer a tbody over its parent table for containing new rows +function manipulationTarget( elem, content ) { + if ( nodeName( elem, "table" ) && + nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { + + return jQuery( elem ).children( "tbody" )[ 0 ] || elem; + } + + return elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { + elem.type = elem.type.slice( 5 ); + } else { + elem.removeAttribute( "type" ); + } + + return elem; +} + +function cloneCopyEvent( src, dest ) { + var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events; + + if ( dest.nodeType !== 1 ) { + return; + } + + // 1. Copy private data: events, handlers, etc. + if ( dataPriv.hasData( src ) ) { + pdataOld = dataPriv.access( src ); + pdataCur = dataPriv.set( dest, pdataOld ); + events = pdataOld.events; + + if ( events ) { + delete pdataCur.handle; + pdataCur.events = {}; + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + } + + // 2. Copy user data + if ( dataUser.hasData( src ) ) { + udataOld = dataUser.access( src ); + udataCur = jQuery.extend( {}, udataOld ); + + dataUser.set( dest, udataCur ); + } +} + +// Fix IE bugs, see support tests +function fixInput( src, dest ) { + var nodeName = dest.nodeName.toLowerCase(); + + // Fails to persist the checked state of a cloned checkbox or radio button. + if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + dest.checked = src.checked; + + // Fails to return the selected option to the default selected state when cloning options + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +function domManip( collection, args, callback, ignored ) { + + // Flatten any nested arrays + args = concat.apply( [], args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = collection.length, + iNoClone = l - 1, + value = args[ 0 ], + valueIsFunction = isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( valueIsFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return collection.each( function( index ) { + var self = collection.eq( index ); + if ( valueIsFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + domManip( self, args, callback, ignored ); + } ); + } + + if ( l ) { + fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + // Require either new content or an interest in ignored elements to invoke the callback + if ( first || ignored ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item + // instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( collection[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !dataPriv.access( node, "globalEval" ) && + jQuery.contains( doc, node ) ) { + + if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { + + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl ) { + jQuery._evalUrl( node.src ); + } + } else { + DOMEval( node.textContent.replace( rcleanScript, "" ), doc, node ); + } + } + } + } + } + } + + return collection; +} + +function remove( elem, selector, keepData ) { + var node, + nodes = selector ? jQuery.filter( selector, elem ) : elem, + i = 0; + + for ( ; ( node = nodes[ i ] ) != null; i++ ) { + if ( !keepData && node.nodeType === 1 ) { + jQuery.cleanData( getAll( node ) ); + } + + if ( node.parentNode ) { + if ( keepData && jQuery.contains( node.ownerDocument, node ) ) { + setGlobalEval( getAll( node, "script" ) ); + } + node.parentNode.removeChild( node ); + } + } + + return elem; +} + +jQuery.extend( { + htmlPrefilter: function( html ) { + return html.replace( rxhtmlTag, "<$1>" ); + }, + + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var i, l, srcElements, destElements, + clone = elem.cloneNode( true ), + inPage = jQuery.contains( elem.ownerDocument, elem ); + + // Fix IE cloning issues + if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && + !jQuery.isXMLDoc( elem ) ) { + + // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + fixInput( srcElements[ i ], destElements[ i ] ); + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + cloneCopyEvent( srcElements[ i ], destElements[ i ] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + cleanData: function( elems ) { + var data, elem, type, + special = jQuery.event.special, + i = 0; + + for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { + if ( acceptData( elem ) ) { + if ( ( data = elem[ dataPriv.expando ] ) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataPriv.expando ] = undefined; + } + if ( elem[ dataUser.expando ] ) { + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataUser.expando ] = undefined; + } + } + } + } +} ); + +jQuery.fn.extend( { + detach: function( selector ) { + return remove( this, selector, true ); + }, + + remove: function( selector ) { + return remove( this, selector ); + }, + + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each( function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + } ); + }, null, value, arguments.length ); + }, + + append: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + } ); + }, + + prepend: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + } ); + }, + + before: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + } ); + }, + + after: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + } ); + }, + + empty: function() { + var elem, + i = 0; + + for ( ; ( elem = this[ i ] ) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + } ); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = jQuery.htmlPrefilter( value ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch ( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var ignored = []; + + // Make the changes, replacing each non-ignored context element with the new content + return domManip( this, arguments, function( elem ) { + var parent = this.parentNode; + + if ( jQuery.inArray( this, ignored ) < 0 ) { + jQuery.cleanData( getAll( this ) ); + if ( parent ) { + parent.replaceChild( elem, this ); + } + } + + // Force callback invocation + }, ignored ); + } +} ); + +jQuery.each( { + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + + // Support: Android <=4.0 only, PhantomJS 1 only + // .get() because push.apply(_, arraylike) throws on ancient WebKit + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +} ); +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); + +var getStyles = function( elem ) { + + // Support: IE <=11 only, Firefox <=30 (#15098, #14150) + // IE throws on elements created in popups + // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" + var view = elem.ownerDocument.defaultView; + + if ( !view || !view.opener ) { + view = window; + } + + return view.getComputedStyle( elem ); + }; + +var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); + + + +( function() { + + // Executing both pixelPosition & boxSizingReliable tests require only one layout + // so they're executed at the same time to save the second computation. + function computeStyleTests() { + + // This is a singleton, we need to execute it only once + if ( !div ) { + return; + } + + container.style.cssText = "position:absolute;left:-11111px;width:60px;" + + "margin-top:1px;padding:0;border:0"; + div.style.cssText = + "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + + "margin:auto;border:1px;padding:1px;" + + "width:60%;top:1%"; + documentElement.appendChild( container ).appendChild( div ); + + var divStyle = window.getComputedStyle( div ); + pixelPositionVal = divStyle.top !== "1%"; + + // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 + reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; + + // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 + // Some styles come back with percentage values, even though they shouldn't + div.style.right = "60%"; + pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; + + // Support: IE 9 - 11 only + // Detect misreporting of content dimensions for box-sizing:border-box elements + boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; + + // Support: IE 9 only + // Detect overflow:scroll screwiness (gh-3699) + div.style.position = "absolute"; + scrollboxSizeVal = div.offsetWidth === 36 || "absolute"; + + documentElement.removeChild( container ); + + // Nullify the div so it wouldn't be stored in the memory and + // it will also be a sign that checks already performed + div = null; + } + + function roundPixelMeasures( measure ) { + return Math.round( parseFloat( measure ) ); + } + + var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, + reliableMarginLeftVal, + container = document.createElement( "div" ), + div = document.createElement( "div" ); + + // Finish early in limited (non-browser) environments + if ( !div.style ) { + return; + } + + // Support: IE <=9 - 11 only + // Style of cloned element affects source element cloned (#8908) + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + jQuery.extend( support, { + boxSizingReliable: function() { + computeStyleTests(); + return boxSizingReliableVal; + }, + pixelBoxStyles: function() { + computeStyleTests(); + return pixelBoxStylesVal; + }, + pixelPosition: function() { + computeStyleTests(); + return pixelPositionVal; + }, + reliableMarginLeft: function() { + computeStyleTests(); + return reliableMarginLeftVal; + }, + scrollboxSize: function() { + computeStyleTests(); + return scrollboxSizeVal; + } + } ); +} )(); + + +function curCSS( elem, name, computed ) { + var width, minWidth, maxWidth, ret, + + // Support: Firefox 51+ + // Retrieving style before computed somehow + // fixes an issue with getting wrong values + // on detached elements + style = elem.style; + + computed = computed || getStyles( elem ); + + // getPropertyValue is needed for: + // .css('filter') (IE 9 only, #12537) + // .css('--customProperty) (#3144) + if ( computed ) { + ret = computed.getPropertyValue( name ) || computed[ name ]; + + if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Android Browser returns percentage for some values, + // but width seems to be reliably pixels. + // This is against the CSSOM draft spec: + // https://drafts.csswg.org/cssom/#resolved-values + if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret !== undefined ? + + // Support: IE <=9 - 11 only + // IE returns zIndex value as an integer. + ret + "" : + ret; +} + + +function addGetHookIf( conditionFn, hookFn ) { + + // Define the hook, we'll check on the first run if it's really needed. + return { + get: function() { + if ( conditionFn() ) { + + // Hook not needed (or it's not possible to use it due + // to missing dependency), remove it. + delete this.get; + return; + } + + // Hook needed; redefine it so that the support test is not executed again. + return ( this.get = hookFn ).apply( this, arguments ); + } + }; +} + + +var + + // Swappable if display is none or starts with table + // except "table", "table-cell", or "table-caption" + // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rcustomProp = /^--/, + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: "0", + fontWeight: "400" + }, + + cssPrefixes = [ "Webkit", "Moz", "ms" ], + emptyStyle = document.createElement( "div" ).style; + +// Return a css property mapped to a potentially vendor prefixed property +function vendorPropName( name ) { + + // Shortcut for names that are not vendor prefixed + if ( name in emptyStyle ) { + return name; + } + + // Check for vendor prefixed names + var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in emptyStyle ) { + return name; + } + } +} + +// Return a property mapped along what jQuery.cssProps suggests or to +// a vendor prefixed property. +function finalPropName( name ) { + var ret = jQuery.cssProps[ name ]; + if ( !ret ) { + ret = jQuery.cssProps[ name ] = vendorPropName( name ) || name; + } + return ret; +} + +function setPositiveNumber( elem, value, subtract ) { + + // Any relative (+/-) values have already been + // normalized at this point + var matches = rcssNum.exec( value ); + return matches ? + + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : + value; +} + +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { + var i = dimension === "width" ? 1 : 0, + extra = 0, + delta = 0; + + // Adjustment may not be necessary + if ( box === ( isBorderBox ? "border" : "content" ) ) { + return 0; + } + + for ( ; i < 4; i += 2 ) { + + // Both box models exclude margin + if ( box === "margin" ) { + delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); + } + + // If we get here with a content-box, we're seeking "padding" or "border" or "margin" + if ( !isBorderBox ) { + + // Add padding + delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // For "border" or "margin", add border + if ( box !== "padding" ) { + delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + + // But still keep track of it otherwise + } else { + extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + + // If we get here with a border-box (content + padding + border), we're seeking "content" or + // "padding" or "margin" + } else { + + // For "content", subtract padding + if ( box === "content" ) { + delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // For "content" or "padding", subtract border + if ( box !== "margin" ) { + delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + // Account for positive content-box scroll gutter when requested by providing computedVal + if ( !isBorderBox && computedVal >= 0 ) { + + // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border + // Assuming integer scroll gutter, subtract the rest and round down + delta += Math.max( 0, Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + computedVal - + delta - + extra - + 0.5 + ) ); + } + + return delta; +} + +function getWidthOrHeight( elem, dimension, extra ) { + + // Start with computed style + var styles = getStyles( elem ), + val = curCSS( elem, dimension, styles ), + isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + valueIsBorderBox = isBorderBox; + + // Support: Firefox <=54 + // Return a confounding non-pixel value or feign ignorance, as appropriate. + if ( rnumnonpx.test( val ) ) { + if ( !extra ) { + return val; + } + val = "auto"; + } + + // Check for style in case a browser which returns unreliable values + // for getComputedStyle silently falls back to the reliable elem.style + valueIsBorderBox = valueIsBorderBox && + ( support.boxSizingReliable() || val === elem.style[ dimension ] ); + + // Fall back to offsetWidth/offsetHeight when value is "auto" + // This happens for inline elements with no explicit setting (gh-3571) + // Support: Android <=4.1 - 4.3 only + // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) + if ( val === "auto" || + !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) { + + val = elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ]; + + // offsetWidth/offsetHeight provide border-box values + valueIsBorderBox = true; + } + + // Normalize "" and auto + val = parseFloat( val ) || 0; + + // Adjust for the element's box model + return ( val + + boxModelAdjustment( + elem, + dimension, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles, + + // Provide the current computed size to request scroll gutter calculation (gh-3589) + val + ) + ) + "px"; +} + +jQuery.extend( { + + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "animationIterationCount": true, + "columnCount": true, + "fillOpacity": true, + "flexGrow": true, + "flexShrink": true, + "fontWeight": true, + "lineHeight": true, + "opacity": true, + "order": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: {}, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ), + style = elem.style; + + // Make sure that we're working with the right name. We don't + // want to query the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Gets hook for the prefixed version, then unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // Convert "+=" or "-=" to relative numbers (#7345) + if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { + value = adjustCSS( elem, name, ret ); + + // Fixes bug #9237 + type = "number"; + } + + // Make sure that null and NaN values aren't set (#7116) + if ( value == null || value !== value ) { + return; + } + + // If a number was passed in, add the unit (except for certain CSS properties) + if ( type === "number" ) { + value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); + } + + // background-* props affect original clone's values + if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !( "set" in hooks ) || + ( value = hooks.set( elem, value, extra ) ) !== undefined ) { + + if ( isCustomProp ) { + style.setProperty( name, value ); + } else { + style[ name ] = value; + } + } + + } else { + + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && + ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { + + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var val, num, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ); + + // Make sure that we're working with the right name. We don't + // want to modify the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Try prefixed name followed by the unprefixed name + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + // Convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Make numeric if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || isFinite( num ) ? num || 0 : val; + } + + return val; + } +} ); + +jQuery.each( [ "height", "width" ], function( i, dimension ) { + jQuery.cssHooks[ dimension ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + + // Certain elements can have dimension info if we invisibly show them + // but it must have a current display style that would benefit + return rdisplayswap.test( jQuery.css( elem, "display" ) ) && + + // Support: Safari 8+ + // Table columns in Safari have non-zero offsetWidth & zero + // getBoundingClientRect().width unless display is changed. + // Support: IE <=11 only + // Running getBoundingClientRect on a disconnected node + // in IE throws an error. + ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? + swap( elem, cssShow, function() { + return getWidthOrHeight( elem, dimension, extra ); + } ) : + getWidthOrHeight( elem, dimension, extra ); + } + }, + + set: function( elem, value, extra ) { + var matches, + styles = getStyles( elem ), + isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + subtract = extra && boxModelAdjustment( + elem, + dimension, + extra, + isBorderBox, + styles + ); + + // Account for unreliable border-box dimensions by comparing offset* to computed and + // faking a content-box to get border and padding (gh-3699) + if ( isBorderBox && support.scrollboxSize() === styles.position ) { + subtract -= Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + parseFloat( styles[ dimension ] ) - + boxModelAdjustment( elem, dimension, "border", false, styles ) - + 0.5 + ); + } + + // Convert to pixels if value adjustment is needed + if ( subtract && ( matches = rcssNum.exec( value ) ) && + ( matches[ 3 ] || "px" ) !== "px" ) { + + elem.style[ dimension ] = value; + value = jQuery.css( elem, dimension ); + } + + return setPositiveNumber( elem, value, subtract ); + } + }; +} ); + +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, + function( elem, computed ) { + if ( computed ) { + return ( parseFloat( curCSS( elem, "marginLeft" ) ) || + elem.getBoundingClientRect().left - + swap( elem, { marginLeft: 0 }, function() { + return elem.getBoundingClientRect().left; + } ) + ) + "px"; + } + } +); + +// These hooks are used by animate to expand properties +jQuery.each( { + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i = 0, + expanded = {}, + + // Assumes a single number if not a string + parts = typeof value === "string" ? value.split( " " ) : [ value ]; + + for ( ; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( prefix !== "margin" ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +} ); + +jQuery.fn.extend( { + css: function( name, value ) { + return access( this, function( elem, name, value ) { + var styles, len, + map = {}, + i = 0; + + if ( Array.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + } +} ); + + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || jQuery.easing._default; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + // Use a property on the element directly when it is not a DOM element, + // or when there is no matching style property that exists. + if ( tween.elem.nodeType !== 1 || + tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { + return tween.elem[ tween.prop ]; + } + + // Passing an empty string as a 3rd parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails. + // Simple values such as "10px" are parsed to Float; + // complex values such as "rotate(1rad)" are returned as-is. + result = jQuery.css( tween.elem, tween.prop, "" ); + + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + + // Use step hook for back compat. + // Use cssHook if its there. + // Use .style if available and use plain properties where available. + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.nodeType === 1 && + ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || + jQuery.cssHooks[ tween.prop ] ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +// Support: IE <=9 only +// Panic based approach to setting things on disconnected nodes +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { + set: function( tween ) { + if ( tween.elem.nodeType && tween.elem.parentNode ) { + tween.elem[ tween.prop ] = tween.now; + } + } +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p * Math.PI ) / 2; + }, + _default: "swing" +}; + +jQuery.fx = Tween.prototype.init; + +// Back compat <1.8 extension point +jQuery.fx.step = {}; + + + + +var + fxNow, inProgress, + rfxtypes = /^(?:toggle|show|hide)$/, + rrun = /queueHooks$/; + +function schedule() { + if ( inProgress ) { + if ( document.hidden === false && window.requestAnimationFrame ) { + window.requestAnimationFrame( schedule ); + } else { + window.setTimeout( schedule, jQuery.fx.interval ); + } + + jQuery.fx.tick(); + } +} + +// Animations created synchronously will run synchronously +function createFxNow() { + window.setTimeout( function() { + fxNow = undefined; + } ); + return ( fxNow = Date.now() ); +} + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + i = 0, + attrs = { height: type }; + + // If we include width, step value is 1 to do all cssExpand values, + // otherwise step value is 2 to skip over Left and Right + includeWidth = includeWidth ? 1 : 0; + for ( ; i < 4; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +function createTween( value, prop, animation ) { + var tween, + collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { + + // We're done with this property + return tween; + } + } +} + +function defaultPrefilter( elem, props, opts ) { + var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, + isBox = "width" in props || "height" in props, + anim = this, + orig = {}, + style = elem.style, + hidden = elem.nodeType && isHiddenWithinTree( elem ), + dataShow = dataPriv.get( elem, "fxshow" ); + + // Queue-skipping animations hijack the fx hooks + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always( function() { + + // Ensure the complete handler is called before this completes + anim.always( function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + } ); + } ); + } + + // Detect show/hide animations + for ( prop in props ) { + value = props[ prop ]; + if ( rfxtypes.test( value ) ) { + delete props[ prop ]; + toggle = toggle || value === "toggle"; + if ( value === ( hidden ? "hide" : "show" ) ) { + + // Pretend to be hidden if this is a "show" and + // there is still data from a stopped show/hide + if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { + hidden = true; + + // Ignore all other no-op show/hide data + } else { + continue; + } + } + orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); + } + } + + // Bail out if this is a no-op like .hide().hide() + propTween = !jQuery.isEmptyObject( props ); + if ( !propTween && jQuery.isEmptyObject( orig ) ) { + return; + } + + // Restrict "overflow" and "display" styles during box animations + if ( isBox && elem.nodeType === 1 ) { + + // Support: IE <=9 - 11, Edge 12 - 15 + // Record all 3 overflow attributes because IE does not infer the shorthand + // from identically-valued overflowX and overflowY and Edge just mirrors + // the overflowX value there. + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Identify a display type, preferring old show/hide data over the CSS cascade + restoreDisplay = dataShow && dataShow.display; + if ( restoreDisplay == null ) { + restoreDisplay = dataPriv.get( elem, "display" ); + } + display = jQuery.css( elem, "display" ); + if ( display === "none" ) { + if ( restoreDisplay ) { + display = restoreDisplay; + } else { + + // Get nonempty value(s) by temporarily forcing visibility + showHide( [ elem ], true ); + restoreDisplay = elem.style.display || restoreDisplay; + display = jQuery.css( elem, "display" ); + showHide( [ elem ] ); + } + } + + // Animate inline elements as inline-block + if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { + if ( jQuery.css( elem, "float" ) === "none" ) { + + // Restore the original display value at the end of pure show/hide animations + if ( !propTween ) { + anim.done( function() { + style.display = restoreDisplay; + } ); + if ( restoreDisplay == null ) { + display = style.display; + restoreDisplay = display === "none" ? "" : display; + } + } + style.display = "inline-block"; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + anim.always( function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + } ); + } + + // Implement show/hide animations + propTween = false; + for ( prop in orig ) { + + // General show/hide setup for this element animation + if ( !propTween ) { + if ( dataShow ) { + if ( "hidden" in dataShow ) { + hidden = dataShow.hidden; + } + } else { + dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); + } + + // Store hidden/visible for toggle so `.stop().toggle()` "reverses" + if ( toggle ) { + dataShow.hidden = !hidden; + } + + // Show elements before animating them + if ( hidden ) { + showHide( [ elem ], true ); + } + + /* eslint-disable no-loop-func */ + + anim.done( function() { + + /* eslint-enable no-loop-func */ + + // The final step of a "hide" animation is actually hiding the element + if ( !hidden ) { + showHide( [ elem ] ); + } + dataPriv.remove( elem, "fxshow" ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + } ); + } + + // Per-property setup + propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = propTween.start; + if ( hidden ) { + propTween.end = propTween.start; + propTween.start = 0; + } + } + } +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = camelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( Array.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // Not quite $.extend, this won't overwrite existing keys. + // Reusing 'index' because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +function Animation( elem, properties, options ) { + var result, + stopped, + index = 0, + length = Animation.prefilters.length, + deferred = jQuery.Deferred().always( function() { + + // Don't match elem in the :animated selector + delete tick.elem; + } ), + tick = function() { + if ( stopped ) { + return false; + } + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + + // Support: Android 2.3 only + // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) + temp = remaining / animation.duration || 0, + percent = 1 - temp, + index = 0, + length = animation.tweens.length; + + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ] ); + + // If there's more to do, yield + if ( percent < 1 && length ) { + return remaining; + } + + // If this was an empty animation, synthesize a final progress notification + if ( !length ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + } + + // Resolve the animation and report its conclusion + deferred.resolveWith( elem, [ animation ] ); + return false; + }, + animation = deferred.promise( { + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { + specialEasing: {}, + easing: jQuery.easing._default + }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + + // If we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + if ( stopped ) { + return this; + } + stopped = true; + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // Resolve when we played the last frame; otherwise, reject + if ( gotoEnd ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + } ), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length; index++ ) { + result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + if ( isFunction( result.stop ) ) { + jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = + result.stop.bind( result ); + } + return result; + } + } + + jQuery.map( props, createTween, animation ); + + if ( isFunction( animation.opts.start ) ) { + animation.opts.start.call( elem, animation ); + } + + // Attach callbacks from options + animation + .progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); + + jQuery.fx.timer( + jQuery.extend( tick, { + elem: elem, + anim: animation, + queue: animation.opts.queue + } ) + ); + + return animation; +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweeners: { + "*": [ function( prop, value ) { + var tween = this.createTween( prop, value ); + adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); + return tween; + } ] + }, + + tweener: function( props, callback ) { + if ( isFunction( props ) ) { + callback = props; + props = [ "*" ]; + } else { + props = props.match( rnothtmlwhite ); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length; index++ ) { + prop = props[ index ]; + Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; + Animation.tweeners[ prop ].unshift( callback ); + } + }, + + prefilters: [ defaultPrefilter ], + + prefilter: function( callback, prepend ) { + if ( prepend ) { + Animation.prefilters.unshift( callback ); + } else { + Animation.prefilters.push( callback ); + } + } +} ); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || !fn && easing || + isFunction( speed ) && speed, + duration: speed, + easing: fn && easing || easing && !isFunction( easing ) && easing + }; + + // Go to the end state if fx are off + if ( jQuery.fx.off ) { + opt.duration = 0; + + } else { + if ( typeof opt.duration !== "number" ) { + if ( opt.duration in jQuery.fx.speeds ) { + opt.duration = jQuery.fx.speeds[ opt.duration ]; + + } else { + opt.duration = jQuery.fx.speeds._default; + } + } + } + + // Normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( isFunction( opt.old ) ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.fn.extend( { + fadeTo: function( speed, to, easing, callback ) { + + // Show any hidden elements after setting opacity to 0 + return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() + + // Animate to the value specified + .end().animate( { opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + + // Empty animations, or finishing resolves immediately + if ( empty || dataPriv.get( this, "finish" ) ) { + anim.stop( true ); + } + }; + doAnimation.finish = doAnimation; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue && type !== false ) { + this.queue( type || "fx", [] ); + } + + return this.each( function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = dataPriv.get( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && + ( type == null || timers[ index ].queue === type ) ) { + + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // Start the next in the queue if the last step wasn't forced. + // Timers currently will call their complete callbacks, which + // will dequeue but only if they were gotoEnd. + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + } ); + }, + finish: function( type ) { + if ( type !== false ) { + type = type || "fx"; + } + return this.each( function() { + var index, + data = dataPriv.get( this ), + queue = data[ type + "queue" ], + hooks = data[ type + "queueHooks" ], + timers = jQuery.timers, + length = queue ? queue.length : 0; + + // Enable finishing flag on private data + data.finish = true; + + // Empty the queue first + jQuery.queue( this, type, [] ); + + if ( hooks && hooks.stop ) { + hooks.stop.call( this, true ); + } + + // Look for any active animations, and finish them + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && timers[ index ].queue === type ) { + timers[ index ].anim.stop( true ); + timers.splice( index, 1 ); + } + } + + // Look for any animations in the old queue and finish them + for ( index = 0; index < length; index++ ) { + if ( queue[ index ] && queue[ index ].finish ) { + queue[ index ].finish.call( this ); + } + } + + // Turn off finishing flag + delete data.finish; + } ); + } +} ); + +jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +} ); + +// Generate shortcuts for custom animations +jQuery.each( { + slideDown: genFx( "show" ), + slideUp: genFx( "hide" ), + slideToggle: genFx( "toggle" ), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +} ); + +jQuery.timers = []; +jQuery.fx.tick = function() { + var timer, + i = 0, + timers = jQuery.timers; + + fxNow = Date.now(); + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + + // Run the timer and safely remove it when done (allowing for external removal) + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } + fxNow = undefined; +}; + +jQuery.fx.timer = function( timer ) { + jQuery.timers.push( timer ); + jQuery.fx.start(); +}; + +jQuery.fx.interval = 13; +jQuery.fx.start = function() { + if ( inProgress ) { + return; + } + + inProgress = true; + schedule(); +}; + +jQuery.fx.stop = function() { + inProgress = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + + // Default speed + _default: 400 +}; + + +// Based off of the plugin by Clint Helfers, with permission. +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ +jQuery.fn.delay = function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = window.setTimeout( next, time ); + hooks.stop = function() { + window.clearTimeout( timeout ); + }; + } ); +}; + + +( function() { + var input = document.createElement( "input" ), + select = document.createElement( "select" ), + opt = select.appendChild( document.createElement( "option" ) ); + + input.type = "checkbox"; + + // Support: Android <=4.3 only + // Default value for a checkbox should be "on" + support.checkOn = input.value !== ""; + + // Support: IE <=11 only + // Must access selectedIndex to make default options select + support.optSelected = opt.selected; + + // Support: IE <=11 only + // An input loses its value after becoming a radio + input = document.createElement( "input" ); + input.value = "t"; + input.type = "radio"; + support.radioValue = input.value === "t"; +} )(); + + +var boolHook, + attrHandle = jQuery.expr.attrHandle; + +jQuery.fn.extend( { + attr: function( name, value ) { + return access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each( function() { + jQuery.removeAttr( this, name ); + } ); + } +} ); + +jQuery.extend( { + attr: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set attributes on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + // Attribute hooks are determined by the lowercase version + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + hooks = jQuery.attrHooks[ name.toLowerCase() ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); + } + + if ( value !== undefined ) { + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + } + + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + elem.setAttribute( name, value + "" ); + return value; + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? undefined : ret; + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !support.radioValue && value === "radio" && + nodeName( elem, "input" ) ) { + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + removeAttr: function( elem, value ) { + var name, + i = 0, + + // Attribute names can contain non-HTML whitespace characters + // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 + attrNames = value && value.match( rnothtmlwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( ( name = attrNames[ i++ ] ) ) { + elem.removeAttribute( name ); + } + } + } +} ); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + elem.setAttribute( name, name ); + } + return name; + } +}; + +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { + var getter = attrHandle[ name ] || jQuery.find.attr; + + attrHandle[ name ] = function( elem, name, isXML ) { + var ret, handle, + lowercaseName = name.toLowerCase(); + + if ( !isXML ) { + + // Avoid an infinite loop by temporarily removing this function from the getter + handle = attrHandle[ lowercaseName ]; + attrHandle[ lowercaseName ] = ret; + ret = getter( elem, name, isXML ) != null ? + lowercaseName : + null; + attrHandle[ lowercaseName ] = handle; + } + return ret; + }; +} ); + + + + +var rfocusable = /^(?:input|select|textarea|button)$/i, + rclickable = /^(?:a|area)$/i; + +jQuery.fn.extend( { + prop: function( name, value ) { + return access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + return this.each( function() { + delete this[ jQuery.propFix[ name ] || name ]; + } ); + } +} ); + +jQuery.extend( { + prop: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set properties on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + return ( elem[ name ] = value ); + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + return elem[ name ]; + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + + // Support: IE <=9 - 11 only + // elem.tabIndex doesn't always return the + // correct value when it hasn't been explicitly set + // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + if ( tabindex ) { + return parseInt( tabindex, 10 ); + } + + if ( + rfocusable.test( elem.nodeName ) || + rclickable.test( elem.nodeName ) && + elem.href + ) { + return 0; + } + + return -1; + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + } +} ); + +// Support: IE <=11 only +// Accessing the selectedIndex property +// forces the browser to respect setting selected +// on the option +// The getter ensures a default option is selected +// when in an optgroup +// eslint rule "no-unused-expressions" is disabled for this code +// since it considers such accessions noop +if ( !support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent && parent.parentNode ) { + parent.parentNode.selectedIndex; + } + return null; + }, + set: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent ) { + parent.selectedIndex; + + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + } + }; +} + +jQuery.each( [ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +} ); + + + + + // Strip and collapse whitespace according to HTML spec + // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace + function stripAndCollapse( value ) { + var tokens = value.match( rnothtmlwhite ) || []; + return tokens.join( " " ); + } + + +function getClass( elem ) { + return elem.getAttribute && elem.getAttribute( "class" ) || ""; +} + +function classesToArray( value ) { + if ( Array.isArray( value ) ) { + return value; + } + if ( typeof value === "string" ) { + return value.match( rnothtmlwhite ) || []; + } + return []; +} + +jQuery.fn.extend( { + addClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + if ( !arguments.length ) { + return this.attr( "class", "" ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) > -1 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isValidValue = type === "string" || Array.isArray( value ); + + if ( typeof stateVal === "boolean" && isValidValue ) { + return stateVal ? this.addClass( value ) : this.removeClass( value ); + } + + if ( isFunction( value ) ) { + return this.each( function( i ) { + jQuery( this ).toggleClass( + value.call( this, i, getClass( this ), stateVal ), + stateVal + ); + } ); + } + + return this.each( function() { + var className, i, self, classNames; + + if ( isValidValue ) { + + // Toggle individual class names + i = 0; + self = jQuery( this ); + classNames = classesToArray( value ); + + while ( ( className = classNames[ i++ ] ) ) { + + // Check each className given, space separated list + if ( self.hasClass( className ) ) { + self.removeClass( className ); + } else { + self.addClass( className ); + } + } + + // Toggle whole class name + } else if ( value === undefined || type === "boolean" ) { + className = getClass( this ); + if ( className ) { + + // Store className if set + dataPriv.set( this, "__className__", className ); + } + + // If the element has a class name or if we're passed `false`, + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + if ( this.setAttribute ) { + this.setAttribute( "class", + className || value === false ? + "" : + dataPriv.get( this, "__className__" ) || "" + ); + } + } + } ); + }, + + hasClass: function( selector ) { + var className, elem, + i = 0; + + className = " " + selector + " "; + while ( ( elem = this[ i++ ] ) ) { + if ( elem.nodeType === 1 && + ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { + return true; + } + } + + return false; + } +} ); + + + + +var rreturn = /\r/g; + +jQuery.fn.extend( { + val: function( value ) { + var hooks, ret, valueIsFunction, + elem = this[ 0 ]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || + jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && + "get" in hooks && + ( ret = hooks.get( elem, "value" ) ) !== undefined + ) { + return ret; + } + + ret = elem.value; + + // Handle most common string cases + if ( typeof ret === "string" ) { + return ret.replace( rreturn, "" ); + } + + // Handle cases where value is null/undef or number + return ret == null ? "" : ret; + } + + return; + } + + valueIsFunction = isFunction( value ); + + return this.each( function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( valueIsFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + + } else if ( typeof val === "number" ) { + val += ""; + + } else if ( Array.isArray( val ) ) { + val = jQuery.map( val, function( value ) { + return value == null ? "" : value + ""; + } ); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + } ); + } +} ); + +jQuery.extend( { + valHooks: { + option: { + get: function( elem ) { + + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + + // Support: IE <=10 - 11 only + // option.text throws exceptions (#14686, #14858) + // Strip and collapse whitespace + // https://html.spec.whatwg.org/#strip-and-collapse-whitespace + stripAndCollapse( jQuery.text( elem ) ); + } + }, + select: { + get: function( elem ) { + var value, option, i, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one", + values = one ? null : [], + max = one ? index + 1 : options.length; + + if ( index < 0 ) { + i = max; + + } else { + i = one ? index : 0; + } + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Support: IE <=9 only + // IE8-9 doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + + // Don't return options that are disabled or in a disabled optgroup + !option.disabled && + ( !option.parentNode.disabled || + !nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + + /* eslint-disable no-cond-assign */ + + if ( option.selected = + jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 + ) { + optionSet = true; + } + + /* eslint-enable no-cond-assign */ + } + + // Force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + } +} ); + +// Radios and checkboxes getter/setter +jQuery.each( [ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( Array.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); + } + } + }; + if ( !support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + return elem.getAttribute( "value" ) === null ? "on" : elem.value; + }; + } +} ); + + + + +// Return jQuery for attributes-only inclusion + + +support.focusin = "onfocusin" in window; + + +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + stopPropagationCallback = function( e ) { + e.stopPropagation(); + }; + +jQuery.extend( jQuery.event, { + + trigger: function( event, data, elem, onlyHandlers ) { + + var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; + + cur = lastElement = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "." ) > -1 ) { + + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split( "." ); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf( ":" ) < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join( "." ); + event.rnamespace = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === ( elem.ownerDocument || document ) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { + lastElement = cur; + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( dataPriv.get( cur, "events" ) || {} )[ event.type ] && + dataPriv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( ( !special._default || + special._default.apply( eventPath.pop(), data ) === false ) && + acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name as the event. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + + if ( event.isPropagationStopped() ) { + lastElement.addEventListener( type, stopPropagationCallback ); + } + + elem[ type ](); + + if ( event.isPropagationStopped() ) { + lastElement.removeEventListener( type, stopPropagationCallback ); + } + + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + // Piggyback on a donor event to simulate a different one + // Used only for `focus(in | out)` events + simulate: function( type, elem, event ) { + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true + } + ); + + jQuery.event.trigger( e, null, elem ); + } + +} ); + +jQuery.fn.extend( { + + trigger: function( type, data ) { + return this.each( function() { + jQuery.event.trigger( type, data, this ); + } ); + }, + triggerHandler: function( type, data ) { + var elem = this[ 0 ]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +} ); + + +// Support: Firefox <=44 +// Firefox doesn't have focus(in | out) events +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 +// +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 +// focus(in | out) events fire after focus & blur events, +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 +if ( !support.focusin ) { + jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + var doc = this.ownerDocument || this, + attaches = dataPriv.access( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this, + attaches = dataPriv.access( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + dataPriv.remove( doc, fix ); + + } else { + dataPriv.access( doc, fix, attaches ); + } + } + }; + } ); +} +var location = window.location; + +var nonce = Date.now(); + +var rquery = ( /\?/ ); + + + +// Cross-browser xml parsing +jQuery.parseXML = function( data ) { + var xml; + if ( !data || typeof data !== "string" ) { + return null; + } + + // Support: IE 9 - 11 only + // IE throws on parseFromString with invalid input. + try { + xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); + } catch ( e ) { + xml = undefined; + } + + if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; +}; + + +var + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, + rsubmittable = /^(?:input|select|textarea|keygen)/i; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( Array.isArray( obj ) ) { + + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + + // Item is non-scalar (array or object), encode its numeric index. + buildParams( + prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", + v, + traditional, + add + ); + } + } ); + + } else if ( !traditional && toType( obj ) === "object" ) { + + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + + // Serialize scalar item. + add( prefix, obj ); + } +} + +// Serialize an array of form elements or a set of +// key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, valueOrFunction ) { + + // If value is a function, invoke it and use its return value + var value = isFunction( valueOrFunction ) ? + valueOrFunction() : + valueOrFunction; + + s[ s.length ] = encodeURIComponent( key ) + "=" + + encodeURIComponent( value == null ? "" : value ); + }; + + // If an array was passed in, assume that it is an array of form elements. + if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + } ); + + } else { + + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ); +}; + +jQuery.fn.extend( { + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map( function() { + + // Can add propHook for "elements" to filter or add form elements + var elements = jQuery.prop( this, "elements" ); + return elements ? jQuery.makeArray( elements ) : this; + } ) + .filter( function() { + var type = this.type; + + // Use .is( ":disabled" ) so that fieldset[disabled] works + return this.name && !jQuery( this ).is( ":disabled" ) && + rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && + ( this.checked || !rcheckableType.test( type ) ); + } ) + .map( function( i, elem ) { + var val = jQuery( this ).val(); + + if ( val == null ) { + return null; + } + + if ( Array.isArray( val ) ) { + return jQuery.map( val, function( val ) { + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ); + } + + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ).get(); + } +} ); + + +var + r20 = /%20/g, + rhash = /#.*$/, + rantiCache = /([?&])_=[^&]*/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, + + // #7653, #8125, #8152: local protocol detection + rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression + allTypes = "*/".concat( "*" ), + + // Anchor tag for parsing the document origin + originAnchor = document.createElement( "a" ); + originAnchor.href = location.href; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, + i = 0, + dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; + + if ( isFunction( func ) ) { + + // For each dataType in the dataTypeExpression + while ( ( dataType = dataTypes[ i++ ] ) ) { + + // Prepend if requested + if ( dataType[ 0 ] === "+" ) { + dataType = dataType.slice( 1 ) || "*"; + ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); + + // Otherwise append + } else { + ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); + } + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { + + var inspected = {}, + seekingTransport = ( structure === transports ); + + function inspect( dataType ) { + var selected; + inspected[ dataType ] = true; + jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { + var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); + if ( typeof dataTypeOrTransport === "string" && + !seekingTransport && !inspected[ dataTypeOrTransport ] ) { + + options.dataTypes.unshift( dataTypeOrTransport ); + inspect( dataTypeOrTransport ); + return false; + } else if ( seekingTransport ) { + return !( selected = dataTypeOrTransport ); + } + } ); + return selected; + } + + return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes #9887 +function ajaxExtend( target, src ) { + var key, deep, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } + + return target; +} + +/* Handles responses to an ajax request: + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + + var ct, type, finalDataType, firstDataType, + contents = s.contents, + dataTypes = s.dataTypes; + + // Remove auto dataType and get content-type in the process + while ( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +/* Chain conversions given the request and the original response + * Also sets the responseXXX fields on the jqXHR instance + */ +function ajaxConvert( s, response, jqXHR, isSuccess ) { + var conv2, current, conv, tmp, prev, + converters = {}, + + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(); + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + current = dataTypes.shift(); + + // Convert to each sequential dataType + while ( current ) { + + if ( s.responseFields[ current ] ) { + jqXHR[ s.responseFields[ current ] ] = response; + } + + // Apply the dataFilter if provided + if ( !prev && isSuccess && s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + prev = current; + current = dataTypes.shift(); + + if ( current ) { + + // There's only work to do if current dataType is non-auto + if ( current === "*" ) { + + current = prev; + + // Convert response if prev dataType is non-auto and differs from current + } else if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split( " " ); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.unshift( tmp[ 1 ] ); + } + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s.throws ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { + state: "parsererror", + error: conv ? e : "No conversion from " + prev + " to " + current + }; + } + } + } + } + } + } + + return { state: "success", data: response }; +} + +jQuery.extend( { + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {}, + + ajaxSettings: { + url: location.href, + type: "GET", + isLocal: rlocalProtocol.test( location.protocol ), + global: true, + processData: true, + async: true, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + "*": allTypes, + text: "text/plain", + html: "text/html", + xml: "application/xml, text/xml", + json: "application/json, text/javascript" + }, + + contents: { + xml: /\bxml\b/, + html: /\bhtml/, + json: /\bjson\b/ + }, + + responseFields: { + xml: "responseXML", + text: "responseText", + json: "responseJSON" + }, + + // Data converters + // Keys separate source (or catchall "*") and destination types with a single space + converters: { + + // Convert anything to text + "* text": String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": JSON.parse, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + url: true, + context: true + } + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + return settings ? + + // Building a settings object + ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : + + // Extending ajaxSettings + ajaxExtend( jQuery.ajaxSettings, target ); + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var transport, + + // URL without anti-cache param + cacheURL, + + // Response headers + responseHeadersString, + responseHeaders, + + // timeout handle + timeoutTimer, + + // Url cleanup var + urlAnchor, + + // Request state (becomes false upon send and true upon completion) + completed, + + // To know if global events are to be dispatched + fireGlobals, + + // Loop variable + i, + + // uncached part of the url + uncached, + + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + + // Callbacks context + callbackContext = s.context || s, + + // Context for global events is callbackContext if it is a DOM node or jQuery collection + globalEventContext = s.context && + ( callbackContext.nodeType || callbackContext.jquery ) ? + jQuery( callbackContext ) : + jQuery.event, + + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks( "once memory" ), + + // Status-dependent callbacks + statusCode = s.statusCode || {}, + + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + + // Default abort message + strAbort = "canceled", + + // Fake xhr + jqXHR = { + readyState: 0, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( completed ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while ( ( match = rheaders.exec( responseHeadersString ) ) ) { + responseHeaders[ match[ 1 ].toLowerCase() ] = match[ 2 ]; + } + } + match = responseHeaders[ key.toLowerCase() ]; + } + return match == null ? null : match; + }, + + // Raw string + getAllResponseHeaders: function() { + return completed ? responseHeadersString : null; + }, + + // Caches the header + setRequestHeader: function( name, value ) { + if ( completed == null ) { + name = requestHeadersNames[ name.toLowerCase() ] = + requestHeadersNames[ name.toLowerCase() ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( completed == null ) { + s.mimeType = type; + } + return this; + }, + + // Status-dependent callbacks + statusCode: function( map ) { + var code; + if ( map ) { + if ( completed ) { + + // Execute the appropriate callbacks + jqXHR.always( map[ jqXHR.status ] ); + } else { + + // Lazy-add the new callbacks in a way that preserves old ones + for ( code in map ) { + statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; + } + } + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + var finalText = statusText || strAbort; + if ( transport ) { + transport.abort( finalText ); + } + done( 0, finalText ); + return this; + } + }; + + // Attach deferreds + deferred.promise( jqXHR ); + + // Add protocol if not provided (prefilters might expect it) + // Handle falsy url in the settings object (#10093: consistency with old signature) + // We also use the url parameter if available + s.url = ( ( url || s.url || location.href ) + "" ) + .replace( rprotocol, location.protocol + "//" ); + + // Alias method option to type as per ticket #12004 + s.type = options.method || options.type || s.method || s.type; + + // Extract dataTypes list + s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; + + // A cross-domain request is in order when the origin doesn't match the current origin. + if ( s.crossDomain == null ) { + urlAnchor = document.createElement( "a" ); + + // Support: IE <=8 - 11, Edge 12 - 15 + // IE throws exception on accessing the href property if url is malformed, + // e.g. http://example.com:80x/ + try { + urlAnchor.href = s.url; + + // Support: IE <=8 - 11 only + // Anchor's host property isn't correctly set when s.url is relative + urlAnchor.href = urlAnchor.href; + s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== + urlAnchor.protocol + "//" + urlAnchor.host; + } catch ( e ) { + + // If there is an error parsing the URL, assume it is crossDomain, + // it can be rejected by the transport if it is invalid + s.crossDomain = true; + } + } + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // If request was aborted inside a prefilter, stop there + if ( completed ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) + fireGlobals = jQuery.event && s.global; + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger( "ajaxStart" ); + } + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Save the URL in case we're toying with the If-Modified-Since + // and/or If-None-Match header later on + // Remove hash to simplify url manipulation + cacheURL = s.url.replace( rhash, "" ); + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // Remember the hash so we can put it back + uncached = s.url.slice( cacheURL.length ); + + // If data is available and should be processed, append data to url + if ( s.data && ( s.processData || typeof s.data === "string" ) ) { + cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; + + // #9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Add or update anti-cache param if needed + if ( s.cache === false ) { + cacheURL = cacheURL.replace( rantiCache, "$1" ); + uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce++ ) + uncached; + } + + // Put hash and anti-cache on the URL that will be requested (gh-1732) + s.url = cacheURL + uncached; + + // Change '%20' to '+' if this is encoded form body content (gh-2658) + } else if ( s.data && s.processData && + ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { + s.data = s.data.replace( r20, "+" ); + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + if ( jQuery.lastModified[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); + } + if ( jQuery.etag[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? + s.accepts[ s.dataTypes[ 0 ] ] + + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && + ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { + + // Abort if not done already and return + return jqXHR.abort(); + } + + // Aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + completeDeferred.add( s.complete ); + jqXHR.done( s.success ); + jqXHR.fail( s.error ); + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + + // If request was aborted inside ajaxSend, stop there + if ( completed ) { + return jqXHR; + } + + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = window.setTimeout( function() { + jqXHR.abort( "timeout" ); + }, s.timeout ); + } + + try { + completed = false; + transport.send( requestHeaders, done ); + } catch ( e ) { + + // Rethrow post-completion exceptions + if ( completed ) { + throw e; + } + + // Propagate others as results + done( -1, e ); + } + } + + // Callback for when everything is done + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Ignore repeat invocations + if ( completed ) { + return; + } + + completed = true; + + // Clear timeout if it exists + if ( timeoutTimer ) { + window.clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Determine if successful + isSuccess = status >= 200 && status < 300 || status === 304; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // Convert no matter what (that way responseXXX fields are always set) + response = ajaxConvert( s, response, jqXHR, isSuccess ); + + // If successful, handle type chaining + if ( isSuccess ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + modified = jqXHR.getResponseHeader( "Last-Modified" ); + if ( modified ) { + jQuery.lastModified[ cacheURL ] = modified; + } + modified = jqXHR.getResponseHeader( "etag" ); + if ( modified ) { + jQuery.etag[ cacheURL ] = modified; + } + } + + // if no content + if ( status === 204 || s.type === "HEAD" ) { + statusText = "nocontent"; + + // if not modified + } else if ( status === 304 ) { + statusText = "notmodified"; + + // If we have data, let's convert it + } else { + statusText = response.state; + success = response.data; + error = response.error; + isSuccess = !error; + } + } else { + + // Extract error from statusText and normalize for non-aborts + error = statusText; + if ( status || !statusText ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = ( nativeStatusText || statusText ) + ""; + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger( "ajaxStop" ); + } + } + } + + return jqXHR; + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + } +} ); + +jQuery.each( [ "get", "post" ], function( i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + + // Shift arguments if data argument was omitted + if ( isFunction( data ) ) { + type = type || callback; + callback = data; + data = undefined; + } + + // The url can be an options object (which then must have .url) + return jQuery.ajax( jQuery.extend( { + url: url, + type: method, + dataType: type, + data: data, + success: callback + }, jQuery.isPlainObject( url ) && url ) ); + }; +} ); + + +jQuery._evalUrl = function( url ) { + return jQuery.ajax( { + url: url, + + // Make this explicit, since user can override this through ajaxSetup (#11264) + type: "GET", + dataType: "script", + cache: true, + async: false, + global: false, + "throws": true + } ); +}; + + +jQuery.fn.extend( { + wrapAll: function( html ) { + var wrap; + + if ( this[ 0 ] ) { + if ( isFunction( html ) ) { + html = html.call( this[ 0 ] ); + } + + // The elements to wrap the target around + wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); + + if ( this[ 0 ].parentNode ) { + wrap.insertBefore( this[ 0 ] ); + } + + wrap.map( function() { + var elem = this; + + while ( elem.firstElementChild ) { + elem = elem.firstElementChild; + } + + return elem; + } ).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( isFunction( html ) ) { + return this.each( function( i ) { + jQuery( this ).wrapInner( html.call( this, i ) ); + } ); + } + + return this.each( function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + } ); + }, + + wrap: function( html ) { + var htmlIsFunction = isFunction( html ); + + return this.each( function( i ) { + jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); + } ); + }, + + unwrap: function( selector ) { + this.parent( selector ).not( "body" ).each( function() { + jQuery( this ).replaceWith( this.childNodes ); + } ); + return this; + } +} ); + + +jQuery.expr.pseudos.hidden = function( elem ) { + return !jQuery.expr.pseudos.visible( elem ); +}; +jQuery.expr.pseudos.visible = function( elem ) { + return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); +}; + + + + +jQuery.ajaxSettings.xhr = function() { + try { + return new window.XMLHttpRequest(); + } catch ( e ) {} +}; + +var xhrSuccessStatus = { + + // File protocol always yields status code 0, assume 200 + 0: 200, + + // Support: IE <=9 only + // #1450: sometimes IE returns 1223 when it should be 204 + 1223: 204 + }, + xhrSupported = jQuery.ajaxSettings.xhr(); + +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); +support.ajax = xhrSupported = !!xhrSupported; + +jQuery.ajaxTransport( function( options ) { + var callback, errorCallback; + + // Cross domain only allowed if supported through XMLHttpRequest + if ( support.cors || xhrSupported && !options.crossDomain ) { + return { + send: function( headers, complete ) { + var i, + xhr = options.xhr(); + + xhr.open( + options.type, + options.url, + options.async, + options.username, + options.password + ); + + // Apply custom fields if provided + if ( options.xhrFields ) { + for ( i in options.xhrFields ) { + xhr[ i ] = options.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( options.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( options.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { + headers[ "X-Requested-With" ] = "XMLHttpRequest"; + } + + // Set headers + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + + // Callback + callback = function( type ) { + return function() { + if ( callback ) { + callback = errorCallback = xhr.onload = + xhr.onerror = xhr.onabort = xhr.ontimeout = + xhr.onreadystatechange = null; + + if ( type === "abort" ) { + xhr.abort(); + } else if ( type === "error" ) { + + // Support: IE <=9 only + // On a manual native abort, IE9 throws + // errors on any property access that is not readyState + if ( typeof xhr.status !== "number" ) { + complete( 0, "error" ); + } else { + complete( + + // File: protocol always yields status 0; see #8605, #14207 + xhr.status, + xhr.statusText + ); + } + } else { + complete( + xhrSuccessStatus[ xhr.status ] || xhr.status, + xhr.statusText, + + // Support: IE <=9 only + // IE9 has no XHR2 but throws on binary (trac-11426) + // For XHR2 non-text, let the caller handle it (gh-2498) + ( xhr.responseType || "text" ) !== "text" || + typeof xhr.responseText !== "string" ? + { binary: xhr.response } : + { text: xhr.responseText }, + xhr.getAllResponseHeaders() + ); + } + } + }; + }; + + // Listen to events + xhr.onload = callback(); + errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); + + // Support: IE 9 only + // Use onreadystatechange to replace onabort + // to handle uncaught aborts + if ( xhr.onabort !== undefined ) { + xhr.onabort = errorCallback; + } else { + xhr.onreadystatechange = function() { + + // Check readyState before timeout as it changes + if ( xhr.readyState === 4 ) { + + // Allow onerror to be called first, + // but that will not handle a native abort + // Also, save errorCallback to a variable + // as xhr.onerror cannot be accessed + window.setTimeout( function() { + if ( callback ) { + errorCallback(); + } + } ); + } + }; + } + + // Create the abort callback + callback = callback( "abort" ); + + try { + + // Do send the request (this may raise an exception) + xhr.send( options.hasContent && options.data || null ); + } catch ( e ) { + + // #14683: Only rethrow if this hasn't been notified as an error yet + if ( callback ) { + throw e; + } + } + }, + + abort: function() { + if ( callback ) { + callback(); + } + } + }; + } +} ); + + + + +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) +jQuery.ajaxPrefilter( function( s ) { + if ( s.crossDomain ) { + s.contents.script = false; + } +} ); + +// Install script dataType +jQuery.ajaxSetup( { + accepts: { + script: "text/javascript, application/javascript, " + + "application/ecmascript, application/x-ecmascript" + }, + contents: { + script: /\b(?:java|ecma)script\b/ + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +} ); + +// Handle cache's special case and crossDomain +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + if ( s.crossDomain ) { + s.type = "GET"; + } +} ); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function( s ) { + + // This transport only deals with cross domain requests + if ( s.crossDomain ) { + var script, callback; + return { + send: function( _, complete ) { + script = jQuery( "\r\n"; + +// inject VBScript +document.write(IEBinaryToArray_ByteStr_Script); + +global.JSZipUtils._getBinaryFromXHR = function (xhr) { + var binary = xhr.responseBody; + var byteMapping = {}; + for ( var i = 0; i < 256; i++ ) { + for ( var j = 0; j < 256; j++ ) { + byteMapping[ String.fromCharCode( i + (j << 8) ) ] = + String.fromCharCode(i) + String.fromCharCode(j); + } + } + var rawBytes = IEBinaryToArray_ByteStr(binary); + var lastChr = IEBinaryToArray_ByteStr_Last(binary); + return rawBytes.replace(/[\s\S]/g, function( match ) { + return byteMapping[match]; + }) + lastChr; +}; + +// enforcing Stuk's coding style +// vim: set shiftwidth=4 softtabstop=4: + +},{}]},{},[1]) +; diff --git a/docs/site/apidocs/jquery/jszip-utils/dist/jszip-utils-ie.min.js b/docs/site/apidocs/jquery/jszip-utils/dist/jszip-utils-ie.min.js new file mode 100644 index 00000000..93d8bc8e --- /dev/null +++ b/docs/site/apidocs/jquery/jszip-utils/dist/jszip-utils-ie.min.js @@ -0,0 +1,10 @@ +/*! + +JSZipUtils - A collection of cross-browser utilities to go along with JSZip. + + +(c) 2014 Stuart Knightley, David Duponchel +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. + +*/ +!function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g\r\n";document.write(b),a.JSZipUtils._getBinaryFromXHR=function(a){for(var b=a.responseBody,c={},d=0;256>d;d++)for(var e=0;256>e;e++)c[String.fromCharCode(d+(e<<8))]=String.fromCharCode(d)+String.fromCharCode(e);var f=IEBinaryToArray_ByteStr(b),g=IEBinaryToArray_ByteStr_Last(b);return f.replace(/[\s\S]/g,function(a){return c[a]})+g}},{}]},{},[1]); diff --git a/docs/site/apidocs/jquery/jszip-utils/dist/jszip-utils.js b/docs/site/apidocs/jquery/jszip-utils/dist/jszip-utils.js new file mode 100644 index 00000000..775895ec --- /dev/null +++ b/docs/site/apidocs/jquery/jszip-utils/dist/jszip-utils.js @@ -0,0 +1,118 @@ +/*! + +JSZipUtils - A collection of cross-browser utilities to go along with JSZip. + + +(c) 2014 Stuart Knightley, David Duponchel +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. + +*/ +!function(e){"object"==typeof exports?module.exports=e():"function"==typeof define&&define.amd?define(e):"undefined"!=typeof window?window.JSZipUtils=e():"undefined"!=typeof global?global.JSZipUtils=e():"undefined"!=typeof self&&(self.JSZipUtils=e())}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o + +(c) 2014 Stuart Knightley, David Duponchel +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. + +*/ +!function(a){"object"==typeof exports?module.exports=a():"function"==typeof define&&define.amd?define(a):"undefined"!=typeof window?window.JSZipUtils=a():"undefined"!=typeof global?global.JSZipUtils=a():"undefined"!=typeof self&&(self.JSZipUtils=a())}(function(){return function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g + +(c) 2009-2016 Stuart Knightley +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/master/LICENSE.markdown. + +JSZip uses the library pako released under the MIT license : +https://github.com/nodeca/pako/blob/master/LICENSE +*/ + +(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.JSZip = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o> 2; + enc2 = ((chr1 & 3) << 4) | (chr2 >> 4); + enc3 = remainingBytes > 1 ? (((chr2 & 15) << 2) | (chr3 >> 6)) : 64; + enc4 = remainingBytes > 2 ? (chr3 & 63) : 64; + + output.push(_keyStr.charAt(enc1) + _keyStr.charAt(enc2) + _keyStr.charAt(enc3) + _keyStr.charAt(enc4)); + + } + + return output.join(""); +}; + +// public method for decoding +exports.decode = function(input) { + var chr1, chr2, chr3; + var enc1, enc2, enc3, enc4; + var i = 0, resultIndex = 0; + + var dataUrlPrefix = "data:"; + + if (input.substr(0, dataUrlPrefix.length) === dataUrlPrefix) { + // This is a common error: people give a data url + // (data:image/png;base64,iVBOR...) with a {base64: true} and + // wonders why things don't work. + // We can detect that the string input looks like a data url but we + // *can't* be sure it is one: removing everything up to the comma would + // be too dangerous. + throw new Error("Invalid base64 input, it looks like a data url."); + } + + input = input.replace(/[^A-Za-z0-9\+\/\=]/g, ""); + + var totalLength = input.length * 3 / 4; + if(input.charAt(input.length - 1) === _keyStr.charAt(64)) { + totalLength--; + } + if(input.charAt(input.length - 2) === _keyStr.charAt(64)) { + totalLength--; + } + if (totalLength % 1 !== 0) { + // totalLength is not an integer, the length does not match a valid + // base64 content. That can happen if: + // - the input is not a base64 content + // - the input is *almost* a base64 content, with a extra chars at the + // beginning or at the end + // - the input uses a base64 variant (base64url for example) + throw new Error("Invalid base64 input, bad content length."); + } + var output; + if (support.uint8array) { + output = new Uint8Array(totalLength|0); + } else { + output = new Array(totalLength|0); + } + + while (i < input.length) { + + enc1 = _keyStr.indexOf(input.charAt(i++)); + enc2 = _keyStr.indexOf(input.charAt(i++)); + enc3 = _keyStr.indexOf(input.charAt(i++)); + enc4 = _keyStr.indexOf(input.charAt(i++)); + + chr1 = (enc1 << 2) | (enc2 >> 4); + chr2 = ((enc2 & 15) << 4) | (enc3 >> 2); + chr3 = ((enc3 & 3) << 6) | enc4; + + output[resultIndex++] = chr1; + + if (enc3 !== 64) { + output[resultIndex++] = chr2; + } + if (enc4 !== 64) { + output[resultIndex++] = chr3; + } + + } + + return output; +}; + +},{"./support":30,"./utils":32}],2:[function(require,module,exports){ +'use strict'; + +var external = require("./external"); +var DataWorker = require('./stream/DataWorker'); +var DataLengthProbe = require('./stream/DataLengthProbe'); +var Crc32Probe = require('./stream/Crc32Probe'); +var DataLengthProbe = require('./stream/DataLengthProbe'); + +/** + * Represent a compressed object, with everything needed to decompress it. + * @constructor + * @param {number} compressedSize the size of the data compressed. + * @param {number} uncompressedSize the size of the data after decompression. + * @param {number} crc32 the crc32 of the decompressed file. + * @param {object} compression the type of compression, see lib/compressions.js. + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the compressed data. + */ +function CompressedObject(compressedSize, uncompressedSize, crc32, compression, data) { + this.compressedSize = compressedSize; + this.uncompressedSize = uncompressedSize; + this.crc32 = crc32; + this.compression = compression; + this.compressedContent = data; +} + +CompressedObject.prototype = { + /** + * Create a worker to get the uncompressed content. + * @return {GenericWorker} the worker. + */ + getContentWorker : function () { + var worker = new DataWorker(external.Promise.resolve(this.compressedContent)) + .pipe(this.compression.uncompressWorker()) + .pipe(new DataLengthProbe("data_length")); + + var that = this; + worker.on("end", function () { + if(this.streamInfo['data_length'] !== that.uncompressedSize) { + throw new Error("Bug : uncompressed data size mismatch"); + } + }); + return worker; + }, + /** + * Create a worker to get the compressed content. + * @return {GenericWorker} the worker. + */ + getCompressedWorker : function () { + return new DataWorker(external.Promise.resolve(this.compressedContent)) + .withStreamInfo("compressedSize", this.compressedSize) + .withStreamInfo("uncompressedSize", this.uncompressedSize) + .withStreamInfo("crc32", this.crc32) + .withStreamInfo("compression", this.compression) + ; + } +}; + +/** + * Chain the given worker with other workers to compress the content with the + * given compresion. + * @param {GenericWorker} uncompressedWorker the worker to pipe. + * @param {Object} compression the compression object. + * @param {Object} compressionOptions the options to use when compressing. + * @return {GenericWorker} the new worker compressing the content. + */ +CompressedObject.createWorkerFrom = function (uncompressedWorker, compression, compressionOptions) { + return uncompressedWorker + .pipe(new Crc32Probe()) + .pipe(new DataLengthProbe("uncompressedSize")) + .pipe(compression.compressWorker(compressionOptions)) + .pipe(new DataLengthProbe("compressedSize")) + .withStreamInfo("compression", compression); +}; + +module.exports = CompressedObject; + +},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(require,module,exports){ +'use strict'; + +var GenericWorker = require("./stream/GenericWorker"); + +exports.STORE = { + magic: "\x00\x00", + compressWorker : function (compressionOptions) { + return new GenericWorker("STORE compression"); + }, + uncompressWorker : function () { + return new GenericWorker("STORE decompression"); + } +}; +exports.DEFLATE = require('./flate'); + +},{"./flate":7,"./stream/GenericWorker":28}],4:[function(require,module,exports){ +'use strict'; + +var utils = require('./utils'); + +/** + * The following functions come from pako, from pako/lib/zlib/crc32.js + * released under the MIT license, see pako https://github.com/nodeca/pako/ + */ + +// Use ordinary array, since untyped makes no boost here +function makeTable() { + var c, table = []; + + for(var n =0; n < 256; n++){ + c = n; + for(var k =0; k < 8; k++){ + c = ((c&1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1)); + } + table[n] = c; + } + + return table; +} + +// Create table on load. Just 255 signed longs. Not a problem. +var crcTable = makeTable(); + + +function crc32(crc, buf, len, pos) { + var t = crcTable, end = pos + len; + + crc = crc ^ (-1); + + for (var i = pos; i < end; i++ ) { + crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF]; + } + + return (crc ^ (-1)); // >>> 0; +} + +// That's all for the pako functions. + +/** + * Compute the crc32 of a string. + * This is almost the same as the function crc32, but for strings. Using the + * same function for the two use cases leads to horrible performances. + * @param {Number} crc the starting value of the crc. + * @param {String} str the string to use. + * @param {Number} len the length of the string. + * @param {Number} pos the starting position for the crc32 computation. + * @return {Number} the computed crc32. + */ +function crc32str(crc, str, len, pos) { + var t = crcTable, end = pos + len; + + crc = crc ^ (-1); + + for (var i = pos; i < end; i++ ) { + crc = (crc >>> 8) ^ t[(crc ^ str.charCodeAt(i)) & 0xFF]; + } + + return (crc ^ (-1)); // >>> 0; +} + +module.exports = function crc32wrapper(input, crc) { + if (typeof input === "undefined" || !input.length) { + return 0; + } + + var isArray = utils.getTypeOf(input) !== "string"; + + if(isArray) { + return crc32(crc|0, input, input.length, 0); + } else { + return crc32str(crc|0, input, input.length, 0); + } +}; + +},{"./utils":32}],5:[function(require,module,exports){ +'use strict'; +exports.base64 = false; +exports.binary = false; +exports.dir = false; +exports.createFolders = true; +exports.date = null; +exports.compression = null; +exports.compressionOptions = null; +exports.comment = null; +exports.unixPermissions = null; +exports.dosPermissions = null; + +},{}],6:[function(require,module,exports){ +/* global Promise */ +'use strict'; + +// load the global object first: +// - it should be better integrated in the system (unhandledRejection in node) +// - the environment may have a custom Promise implementation (see zone.js) +var ES6Promise = null; +if (typeof Promise !== "undefined") { + ES6Promise = Promise; +} else { + ES6Promise = require("lie"); +} + +/** + * Let the user use/change some implementations. + */ +module.exports = { + Promise: ES6Promise +}; + +},{"lie":58}],7:[function(require,module,exports){ +'use strict'; +var USE_TYPEDARRAY = (typeof Uint8Array !== 'undefined') && (typeof Uint16Array !== 'undefined') && (typeof Uint32Array !== 'undefined'); + +var pako = require("pako"); +var utils = require("./utils"); +var GenericWorker = require("./stream/GenericWorker"); + +var ARRAY_TYPE = USE_TYPEDARRAY ? "uint8array" : "array"; + +exports.magic = "\x08\x00"; + +/** + * Create a worker that uses pako to inflate/deflate. + * @constructor + * @param {String} action the name of the pako function to call : either "Deflate" or "Inflate". + * @param {Object} options the options to use when (de)compressing. + */ +function FlateWorker(action, options) { + GenericWorker.call(this, "FlateWorker/" + action); + + this._pako = null; + this._pakoAction = action; + this._pakoOptions = options; + // the `meta` object from the last chunk received + // this allow this worker to pass around metadata + this.meta = {}; +} + +utils.inherits(FlateWorker, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +FlateWorker.prototype.processChunk = function (chunk) { + this.meta = chunk.meta; + if (this._pako === null) { + this._createPako(); + } + this._pako.push(utils.transformTo(ARRAY_TYPE, chunk.data), false); +}; + +/** + * @see GenericWorker.flush + */ +FlateWorker.prototype.flush = function () { + GenericWorker.prototype.flush.call(this); + if (this._pako === null) { + this._createPako(); + } + this._pako.push([], true); +}; +/** + * @see GenericWorker.cleanUp + */ +FlateWorker.prototype.cleanUp = function () { + GenericWorker.prototype.cleanUp.call(this); + this._pako = null; +}; + +/** + * Create the _pako object. + * TODO: lazy-loading this object isn't the best solution but it's the + * quickest. The best solution is to lazy-load the worker list. See also the + * issue #446. + */ +FlateWorker.prototype._createPako = function () { + this._pako = new pako[this._pakoAction]({ + raw: true, + level: this._pakoOptions.level || -1 // default compression + }); + var self = this; + this._pako.onData = function(data) { + self.push({ + data : data, + meta : self.meta + }); + }; +}; + +exports.compressWorker = function (compressionOptions) { + return new FlateWorker("Deflate", compressionOptions); +}; +exports.uncompressWorker = function () { + return new FlateWorker("Inflate", {}); +}; + +},{"./stream/GenericWorker":28,"./utils":32,"pako":59}],8:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var GenericWorker = require('../stream/GenericWorker'); +var utf8 = require('../utf8'); +var crc32 = require('../crc32'); +var signature = require('../signature'); + +/** + * Transform an integer into a string in hexadecimal. + * @private + * @param {number} dec the number to convert. + * @param {number} bytes the number of bytes to generate. + * @returns {string} the result. + */ +var decToHex = function(dec, bytes) { + var hex = "", i; + for (i = 0; i < bytes; i++) { + hex += String.fromCharCode(dec & 0xff); + dec = dec >>> 8; + } + return hex; +}; + +/** + * Generate the UNIX part of the external file attributes. + * @param {Object} unixPermissions the unix permissions or null. + * @param {Boolean} isDir true if the entry is a directory, false otherwise. + * @return {Number} a 32 bit integer. + * + * adapted from http://unix.stackexchange.com/questions/14705/the-zip-formats-external-file-attribute : + * + * TTTTsstrwxrwxrwx0000000000ADVSHR + * ^^^^____________________________ file type, see zipinfo.c (UNX_*) + * ^^^_________________________ setuid, setgid, sticky + * ^^^^^^^^^________________ permissions + * ^^^^^^^^^^______ not used ? + * ^^^^^^ DOS attribute bits : Archive, Directory, Volume label, System file, Hidden, Read only + */ +var generateUnixExternalFileAttr = function (unixPermissions, isDir) { + + var result = unixPermissions; + if (!unixPermissions) { + // I can't use octal values in strict mode, hence the hexa. + // 040775 => 0x41fd + // 0100664 => 0x81b4 + result = isDir ? 0x41fd : 0x81b4; + } + return (result & 0xFFFF) << 16; +}; + +/** + * Generate the DOS part of the external file attributes. + * @param {Object} dosPermissions the dos permissions or null. + * @param {Boolean} isDir true if the entry is a directory, false otherwise. + * @return {Number} a 32 bit integer. + * + * Bit 0 Read-Only + * Bit 1 Hidden + * Bit 2 System + * Bit 3 Volume Label + * Bit 4 Directory + * Bit 5 Archive + */ +var generateDosExternalFileAttr = function (dosPermissions, isDir) { + + // the dir flag is already set for compatibility + return (dosPermissions || 0) & 0x3F; +}; + +/** + * Generate the various parts used in the construction of the final zip file. + * @param {Object} streamInfo the hash with informations about the compressed file. + * @param {Boolean} streamedContent is the content streamed ? + * @param {Boolean} streamingEnded is the stream finished ? + * @param {number} offset the current offset from the start of the zip file. + * @param {String} platform let's pretend we are this platform (change platform dependents fields) + * @param {Function} encodeFileName the function to encode the file name / comment. + * @return {Object} the zip parts. + */ +var generateZipParts = function(streamInfo, streamedContent, streamingEnded, offset, platform, encodeFileName) { + var file = streamInfo['file'], + compression = streamInfo['compression'], + useCustomEncoding = encodeFileName !== utf8.utf8encode, + encodedFileName = utils.transformTo("string", encodeFileName(file.name)), + utfEncodedFileName = utils.transformTo("string", utf8.utf8encode(file.name)), + comment = file.comment, + encodedComment = utils.transformTo("string", encodeFileName(comment)), + utfEncodedComment = utils.transformTo("string", utf8.utf8encode(comment)), + useUTF8ForFileName = utfEncodedFileName.length !== file.name.length, + useUTF8ForComment = utfEncodedComment.length !== comment.length, + dosTime, + dosDate, + extraFields = "", + unicodePathExtraField = "", + unicodeCommentExtraField = "", + dir = file.dir, + date = file.date; + + + var dataInfo = { + crc32 : 0, + compressedSize : 0, + uncompressedSize : 0 + }; + + // if the content is streamed, the sizes/crc32 are only available AFTER + // the end of the stream. + if (!streamedContent || streamingEnded) { + dataInfo.crc32 = streamInfo['crc32']; + dataInfo.compressedSize = streamInfo['compressedSize']; + dataInfo.uncompressedSize = streamInfo['uncompressedSize']; + } + + var bitflag = 0; + if (streamedContent) { + // Bit 3: the sizes/crc32 are set to zero in the local header. + // The correct values are put in the data descriptor immediately + // following the compressed data. + bitflag |= 0x0008; + } + if (!useCustomEncoding && (useUTF8ForFileName || useUTF8ForComment)) { + // Bit 11: Language encoding flag (EFS). + bitflag |= 0x0800; + } + + + var extFileAttr = 0; + var versionMadeBy = 0; + if (dir) { + // dos or unix, we set the dos dir flag + extFileAttr |= 0x00010; + } + if(platform === "UNIX") { + versionMadeBy = 0x031E; // UNIX, version 3.0 + extFileAttr |= generateUnixExternalFileAttr(file.unixPermissions, dir); + } else { // DOS or other, fallback to DOS + versionMadeBy = 0x0014; // DOS, version 2.0 + extFileAttr |= generateDosExternalFileAttr(file.dosPermissions, dir); + } + + // date + // @see http://www.delorie.com/djgpp/doc/rbinter/it/52/13.html + // @see http://www.delorie.com/djgpp/doc/rbinter/it/65/16.html + // @see http://www.delorie.com/djgpp/doc/rbinter/it/66/16.html + + dosTime = date.getUTCHours(); + dosTime = dosTime << 6; + dosTime = dosTime | date.getUTCMinutes(); + dosTime = dosTime << 5; + dosTime = dosTime | date.getUTCSeconds() / 2; + + dosDate = date.getUTCFullYear() - 1980; + dosDate = dosDate << 4; + dosDate = dosDate | (date.getUTCMonth() + 1); + dosDate = dosDate << 5; + dosDate = dosDate | date.getUTCDate(); + + if (useUTF8ForFileName) { + // set the unicode path extra field. unzip needs at least one extra + // field to correctly handle unicode path, so using the path is as good + // as any other information. This could improve the situation with + // other archive managers too. + // This field is usually used without the utf8 flag, with a non + // unicode path in the header (winrar, winzip). This helps (a bit) + // with the messy Windows' default compressed folders feature but + // breaks on p7zip which doesn't seek the unicode path extra field. + // So for now, UTF-8 everywhere ! + unicodePathExtraField = + // Version + decToHex(1, 1) + + // NameCRC32 + decToHex(crc32(encodedFileName), 4) + + // UnicodeName + utfEncodedFileName; + + extraFields += + // Info-ZIP Unicode Path Extra Field + "\x75\x70" + + // size + decToHex(unicodePathExtraField.length, 2) + + // content + unicodePathExtraField; + } + + if(useUTF8ForComment) { + + unicodeCommentExtraField = + // Version + decToHex(1, 1) + + // CommentCRC32 + decToHex(crc32(encodedComment), 4) + + // UnicodeName + utfEncodedComment; + + extraFields += + // Info-ZIP Unicode Path Extra Field + "\x75\x63" + + // size + decToHex(unicodeCommentExtraField.length, 2) + + // content + unicodeCommentExtraField; + } + + var header = ""; + + // version needed to extract + header += "\x0A\x00"; + // general purpose bit flag + header += decToHex(bitflag, 2); + // compression method + header += compression.magic; + // last mod file time + header += decToHex(dosTime, 2); + // last mod file date + header += decToHex(dosDate, 2); + // crc-32 + header += decToHex(dataInfo.crc32, 4); + // compressed size + header += decToHex(dataInfo.compressedSize, 4); + // uncompressed size + header += decToHex(dataInfo.uncompressedSize, 4); + // file name length + header += decToHex(encodedFileName.length, 2); + // extra field length + header += decToHex(extraFields.length, 2); + + + var fileRecord = signature.LOCAL_FILE_HEADER + header + encodedFileName + extraFields; + + var dirRecord = signature.CENTRAL_FILE_HEADER + + // version made by (00: DOS) + decToHex(versionMadeBy, 2) + + // file header (common to file and central directory) + header + + // file comment length + decToHex(encodedComment.length, 2) + + // disk number start + "\x00\x00" + + // internal file attributes TODO + "\x00\x00" + + // external file attributes + decToHex(extFileAttr, 4) + + // relative offset of local header + decToHex(offset, 4) + + // file name + encodedFileName + + // extra field + extraFields + + // file comment + encodedComment; + + return { + fileRecord: fileRecord, + dirRecord: dirRecord + }; +}; + +/** + * Generate the EOCD record. + * @param {Number} entriesCount the number of entries in the zip file. + * @param {Number} centralDirLength the length (in bytes) of the central dir. + * @param {Number} localDirLength the length (in bytes) of the local dir. + * @param {String} comment the zip file comment as a binary string. + * @param {Function} encodeFileName the function to encode the comment. + * @return {String} the EOCD record. + */ +var generateCentralDirectoryEnd = function (entriesCount, centralDirLength, localDirLength, comment, encodeFileName) { + var dirEnd = ""; + var encodedComment = utils.transformTo("string", encodeFileName(comment)); + + // end of central dir signature + dirEnd = signature.CENTRAL_DIRECTORY_END + + // number of this disk + "\x00\x00" + + // number of the disk with the start of the central directory + "\x00\x00" + + // total number of entries in the central directory on this disk + decToHex(entriesCount, 2) + + // total number of entries in the central directory + decToHex(entriesCount, 2) + + // size of the central directory 4 bytes + decToHex(centralDirLength, 4) + + // offset of start of central directory with respect to the starting disk number + decToHex(localDirLength, 4) + + // .ZIP file comment length + decToHex(encodedComment.length, 2) + + // .ZIP file comment + encodedComment; + + return dirEnd; +}; + +/** + * Generate data descriptors for a file entry. + * @param {Object} streamInfo the hash generated by a worker, containing informations + * on the file entry. + * @return {String} the data descriptors. + */ +var generateDataDescriptors = function (streamInfo) { + var descriptor = ""; + descriptor = signature.DATA_DESCRIPTOR + + // crc-32 4 bytes + decToHex(streamInfo['crc32'], 4) + + // compressed size 4 bytes + decToHex(streamInfo['compressedSize'], 4) + + // uncompressed size 4 bytes + decToHex(streamInfo['uncompressedSize'], 4); + + return descriptor; +}; + + +/** + * A worker to concatenate other workers to create a zip file. + * @param {Boolean} streamFiles `true` to stream the content of the files, + * `false` to accumulate it. + * @param {String} comment the comment to use. + * @param {String} platform the platform to use, "UNIX" or "DOS". + * @param {Function} encodeFileName the function to encode file names and comments. + */ +function ZipFileWorker(streamFiles, comment, platform, encodeFileName) { + GenericWorker.call(this, "ZipFileWorker"); + // The number of bytes written so far. This doesn't count accumulated chunks. + this.bytesWritten = 0; + // The comment of the zip file + this.zipComment = comment; + // The platform "generating" the zip file. + this.zipPlatform = platform; + // the function to encode file names and comments. + this.encodeFileName = encodeFileName; + // Should we stream the content of the files ? + this.streamFiles = streamFiles; + // If `streamFiles` is false, we will need to accumulate the content of the + // files to calculate sizes / crc32 (and write them *before* the content). + // This boolean indicates if we are accumulating chunks (it will change a lot + // during the lifetime of this worker). + this.accumulate = false; + // The buffer receiving chunks when accumulating content. + this.contentBuffer = []; + // The list of generated directory records. + this.dirRecords = []; + // The offset (in bytes) from the beginning of the zip file for the current source. + this.currentSourceOffset = 0; + // The total number of entries in this zip file. + this.entriesCount = 0; + // the name of the file currently being added, null when handling the end of the zip file. + // Used for the emited metadata. + this.currentFile = null; + + + + this._sources = []; +} +utils.inherits(ZipFileWorker, GenericWorker); + +/** + * @see GenericWorker.push + */ +ZipFileWorker.prototype.push = function (chunk) { + + var currentFilePercent = chunk.meta.percent || 0; + var entriesCount = this.entriesCount; + var remainingFiles = this._sources.length; + + if(this.accumulate) { + this.contentBuffer.push(chunk); + } else { + this.bytesWritten += chunk.data.length; + + GenericWorker.prototype.push.call(this, { + data : chunk.data, + meta : { + currentFile : this.currentFile, + percent : entriesCount ? (currentFilePercent + 100 * (entriesCount - remainingFiles - 1)) / entriesCount : 100 + } + }); + } +}; + +/** + * The worker started a new source (an other worker). + * @param {Object} streamInfo the streamInfo object from the new source. + */ +ZipFileWorker.prototype.openedSource = function (streamInfo) { + this.currentSourceOffset = this.bytesWritten; + this.currentFile = streamInfo['file'].name; + + var streamedContent = this.streamFiles && !streamInfo['file'].dir; + + // don't stream folders (because they don't have any content) + if(streamedContent) { + var record = generateZipParts(streamInfo, streamedContent, false, this.currentSourceOffset, this.zipPlatform, this.encodeFileName); + this.push({ + data : record.fileRecord, + meta : {percent:0} + }); + } else { + // we need to wait for the whole file before pushing anything + this.accumulate = true; + } +}; + +/** + * The worker finished a source (an other worker). + * @param {Object} streamInfo the streamInfo object from the finished source. + */ +ZipFileWorker.prototype.closedSource = function (streamInfo) { + this.accumulate = false; + var streamedContent = this.streamFiles && !streamInfo['file'].dir; + var record = generateZipParts(streamInfo, streamedContent, true, this.currentSourceOffset, this.zipPlatform, this.encodeFileName); + + this.dirRecords.push(record.dirRecord); + if(streamedContent) { + // after the streamed file, we put data descriptors + this.push({ + data : generateDataDescriptors(streamInfo), + meta : {percent:100} + }); + } else { + // the content wasn't streamed, we need to push everything now + // first the file record, then the content + this.push({ + data : record.fileRecord, + meta : {percent:0} + }); + while(this.contentBuffer.length) { + this.push(this.contentBuffer.shift()); + } + } + this.currentFile = null; +}; + +/** + * @see GenericWorker.flush + */ +ZipFileWorker.prototype.flush = function () { + + var localDirLength = this.bytesWritten; + for(var i = 0; i < this.dirRecords.length; i++) { + this.push({ + data : this.dirRecords[i], + meta : {percent:100} + }); + } + var centralDirLength = this.bytesWritten - localDirLength; + + var dirEnd = generateCentralDirectoryEnd(this.dirRecords.length, centralDirLength, localDirLength, this.zipComment, this.encodeFileName); + + this.push({ + data : dirEnd, + meta : {percent:100} + }); +}; + +/** + * Prepare the next source to be read. + */ +ZipFileWorker.prototype.prepareNextSource = function () { + this.previous = this._sources.shift(); + this.openedSource(this.previous.streamInfo); + if (this.isPaused) { + this.previous.pause(); + } else { + this.previous.resume(); + } +}; + +/** + * @see GenericWorker.registerPrevious + */ +ZipFileWorker.prototype.registerPrevious = function (previous) { + this._sources.push(previous); + var self = this; + + previous.on('data', function (chunk) { + self.processChunk(chunk); + }); + previous.on('end', function () { + self.closedSource(self.previous.streamInfo); + if(self._sources.length) { + self.prepareNextSource(); + } else { + self.end(); + } + }); + previous.on('error', function (e) { + self.error(e); + }); + return this; +}; + +/** + * @see GenericWorker.resume + */ +ZipFileWorker.prototype.resume = function () { + if(!GenericWorker.prototype.resume.call(this)) { + return false; + } + + if (!this.previous && this._sources.length) { + this.prepareNextSource(); + return true; + } + if (!this.previous && !this._sources.length && !this.generatedError) { + this.end(); + return true; + } +}; + +/** + * @see GenericWorker.error + */ +ZipFileWorker.prototype.error = function (e) { + var sources = this._sources; + if(!GenericWorker.prototype.error.call(this, e)) { + return false; + } + for(var i = 0; i < sources.length; i++) { + try { + sources[i].error(e); + } catch(e) { + // the `error` exploded, nothing to do + } + } + return true; +}; + +/** + * @see GenericWorker.lock + */ +ZipFileWorker.prototype.lock = function () { + GenericWorker.prototype.lock.call(this); + var sources = this._sources; + for(var i = 0; i < sources.length; i++) { + sources[i].lock(); + } +}; + +module.exports = ZipFileWorker; + +},{"../crc32":4,"../signature":23,"../stream/GenericWorker":28,"../utf8":31,"../utils":32}],9:[function(require,module,exports){ +'use strict'; + +var compressions = require('../compressions'); +var ZipFileWorker = require('./ZipFileWorker'); + +/** + * Find the compression to use. + * @param {String} fileCompression the compression defined at the file level, if any. + * @param {String} zipCompression the compression defined at the load() level. + * @return {Object} the compression object to use. + */ +var getCompression = function (fileCompression, zipCompression) { + + var compressionName = fileCompression || zipCompression; + var compression = compressions[compressionName]; + if (!compression) { + throw new Error(compressionName + " is not a valid compression method !"); + } + return compression; +}; + +/** + * Create a worker to generate a zip file. + * @param {JSZip} zip the JSZip instance at the right root level. + * @param {Object} options to generate the zip file. + * @param {String} comment the comment to use. + */ +exports.generateWorker = function (zip, options, comment) { + + var zipFileWorker = new ZipFileWorker(options.streamFiles, comment, options.platform, options.encodeFileName); + var entriesCount = 0; + try { + + zip.forEach(function (relativePath, file) { + entriesCount++; + var compression = getCompression(file.options.compression, options.compression); + var compressionOptions = file.options.compressionOptions || options.compressionOptions || {}; + var dir = file.dir, date = file.date; + + file._compressWorker(compression, compressionOptions) + .withStreamInfo("file", { + name : relativePath, + dir : dir, + date : date, + comment : file.comment || "", + unixPermissions : file.unixPermissions, + dosPermissions : file.dosPermissions + }) + .pipe(zipFileWorker); + }); + zipFileWorker.entriesCount = entriesCount; + } catch (e) { + zipFileWorker.error(e); + } + + return zipFileWorker; +}; + +},{"../compressions":3,"./ZipFileWorker":8}],10:[function(require,module,exports){ +'use strict'; + +/** + * Representation a of zip file in js + * @constructor + */ +function JSZip() { + // if this constructor is used without `new`, it adds `new` before itself: + if(!(this instanceof JSZip)) { + return new JSZip(); + } + + if(arguments.length) { + throw new Error("The constructor with parameters has been removed in JSZip 3.0, please check the upgrade guide."); + } + + // object containing the files : + // { + // "folder/" : {...}, + // "folder/data.txt" : {...} + // } + this.files = {}; + + this.comment = null; + + // Where we are in the hierarchy + this.root = ""; + this.clone = function() { + var newObj = new JSZip(); + for (var i in this) { + if (typeof this[i] !== "function") { + newObj[i] = this[i]; + } + } + return newObj; + }; +} +JSZip.prototype = require('./object'); +JSZip.prototype.loadAsync = require('./load'); +JSZip.support = require('./support'); +JSZip.defaults = require('./defaults'); + +// TODO find a better way to handle this version, +// a require('package.json').version doesn't work with webpack, see #327 +JSZip.version = "3.1.5"; + +JSZip.loadAsync = function (content, options) { + return new JSZip().loadAsync(content, options); +}; + +JSZip.external = require("./external"); +module.exports = JSZip; + +},{"./defaults":5,"./external":6,"./load":11,"./object":15,"./support":30}],11:[function(require,module,exports){ +'use strict'; +var utils = require('./utils'); +var external = require("./external"); +var utf8 = require('./utf8'); +var utils = require('./utils'); +var ZipEntries = require('./zipEntries'); +var Crc32Probe = require('./stream/Crc32Probe'); +var nodejsUtils = require("./nodejsUtils"); + +/** + * Check the CRC32 of an entry. + * @param {ZipEntry} zipEntry the zip entry to check. + * @return {Promise} the result. + */ +function checkEntryCRC32(zipEntry) { + return new external.Promise(function (resolve, reject) { + var worker = zipEntry.decompressed.getContentWorker().pipe(new Crc32Probe()); + worker.on("error", function (e) { + reject(e); + }) + .on("end", function () { + if (worker.streamInfo.crc32 !== zipEntry.decompressed.crc32) { + reject(new Error("Corrupted zip : CRC32 mismatch")); + } else { + resolve(); + } + }) + .resume(); + }); +} + +module.exports = function(data, options) { + var zip = this; + options = utils.extend(options || {}, { + base64: false, + checkCRC32: false, + optimizedBinaryString: false, + createFolders: false, + decodeFileName: utf8.utf8decode + }); + + if (nodejsUtils.isNode && nodejsUtils.isStream(data)) { + return external.Promise.reject(new Error("JSZip can't accept a stream when loading a zip file.")); + } + + return utils.prepareContent("the loaded zip file", data, true, options.optimizedBinaryString, options.base64) + .then(function(data) { + var zipEntries = new ZipEntries(options); + zipEntries.load(data); + return zipEntries; + }).then(function checkCRC32(zipEntries) { + var promises = [external.Promise.resolve(zipEntries)]; + var files = zipEntries.files; + if (options.checkCRC32) { + for (var i = 0; i < files.length; i++) { + promises.push(checkEntryCRC32(files[i])); + } + } + return external.Promise.all(promises); + }).then(function addFiles(results) { + var zipEntries = results.shift(); + var files = zipEntries.files; + for (var i = 0; i < files.length; i++) { + var input = files[i]; + zip.file(input.fileNameStr, input.decompressed, { + binary: true, + optimizedBinaryString: true, + date: input.date, + dir: input.dir, + comment : input.fileCommentStr.length ? input.fileCommentStr : null, + unixPermissions : input.unixPermissions, + dosPermissions : input.dosPermissions, + createFolders: options.createFolders + }); + } + if (zipEntries.zipComment.length) { + zip.comment = zipEntries.zipComment; + } + + return zip; + }); +}; + +},{"./external":6,"./nodejsUtils":14,"./stream/Crc32Probe":25,"./utf8":31,"./utils":32,"./zipEntries":33}],12:[function(require,module,exports){ +"use strict"; + +var utils = require('../utils'); +var GenericWorker = require('../stream/GenericWorker'); + +/** + * A worker that use a nodejs stream as source. + * @constructor + * @param {String} filename the name of the file entry for this stream. + * @param {Readable} stream the nodejs stream. + */ +function NodejsStreamInputAdapter(filename, stream) { + GenericWorker.call(this, "Nodejs stream input adapter for " + filename); + this._upstreamEnded = false; + this._bindStream(stream); +} + +utils.inherits(NodejsStreamInputAdapter, GenericWorker); + +/** + * Prepare the stream and bind the callbacks on it. + * Do this ASAP on node 0.10 ! A lazy binding doesn't always work. + * @param {Stream} stream the nodejs stream to use. + */ +NodejsStreamInputAdapter.prototype._bindStream = function (stream) { + var self = this; + this._stream = stream; + stream.pause(); + stream + .on("data", function (chunk) { + self.push({ + data: chunk, + meta : { + percent : 0 + } + }); + }) + .on("error", function (e) { + if(self.isPaused) { + this.generatedError = e; + } else { + self.error(e); + } + }) + .on("end", function () { + if(self.isPaused) { + self._upstreamEnded = true; + } else { + self.end(); + } + }); +}; +NodejsStreamInputAdapter.prototype.pause = function () { + if(!GenericWorker.prototype.pause.call(this)) { + return false; + } + this._stream.pause(); + return true; +}; +NodejsStreamInputAdapter.prototype.resume = function () { + if(!GenericWorker.prototype.resume.call(this)) { + return false; + } + + if(this._upstreamEnded) { + this.end(); + } else { + this._stream.resume(); + } + + return true; +}; + +module.exports = NodejsStreamInputAdapter; + +},{"../stream/GenericWorker":28,"../utils":32}],13:[function(require,module,exports){ +'use strict'; + +var Readable = require('readable-stream').Readable; + +var utils = require('../utils'); +utils.inherits(NodejsStreamOutputAdapter, Readable); + +/** +* A nodejs stream using a worker as source. +* @see the SourceWrapper in http://nodejs.org/api/stream.html +* @constructor +* @param {StreamHelper} helper the helper wrapping the worker +* @param {Object} options the nodejs stream options +* @param {Function} updateCb the update callback. +*/ +function NodejsStreamOutputAdapter(helper, options, updateCb) { + Readable.call(this, options); + this._helper = helper; + + var self = this; + helper.on("data", function (data, meta) { + if (!self.push(data)) { + self._helper.pause(); + } + if(updateCb) { + updateCb(meta); + } + }) + .on("error", function(e) { + self.emit('error', e); + }) + .on("end", function () { + self.push(null); + }); +} + + +NodejsStreamOutputAdapter.prototype._read = function() { + this._helper.resume(); +}; + +module.exports = NodejsStreamOutputAdapter; + +},{"../utils":32,"readable-stream":16}],14:[function(require,module,exports){ +'use strict'; + +module.exports = { + /** + * True if this is running in Nodejs, will be undefined in a browser. + * In a browser, browserify won't include this file and the whole module + * will be resolved an empty object. + */ + isNode : typeof Buffer !== "undefined", + /** + * Create a new nodejs Buffer from an existing content. + * @param {Object} data the data to pass to the constructor. + * @param {String} encoding the encoding to use. + * @return {Buffer} a new Buffer. + */ + newBufferFrom: function(data, encoding) { + // XXX We can't use `Buffer.from` which comes from `Uint8Array.from` + // in nodejs v4 (< v.4.5). It's not the expected implementation (and + // has a different signature). + // see https://github.com/nodejs/node/issues/8053 + // A condition on nodejs' version won't solve the issue as we don't + // control the Buffer polyfills that may or may not be used. + return new Buffer(data, encoding); + }, + /** + * Create a new nodejs Buffer with the specified size. + * @param {Integer} size the size of the buffer. + * @return {Buffer} a new Buffer. + */ + allocBuffer: function (size) { + if (Buffer.alloc) { + return Buffer.alloc(size); + } else { + return new Buffer(size); + } + }, + /** + * Find out if an object is a Buffer. + * @param {Object} b the object to test. + * @return {Boolean} true if the object is a Buffer, false otherwise. + */ + isBuffer : function(b){ + return Buffer.isBuffer(b); + }, + + isStream : function (obj) { + return obj && + typeof obj.on === "function" && + typeof obj.pause === "function" && + typeof obj.resume === "function"; + } +}; + +},{}],15:[function(require,module,exports){ +'use strict'; +var utf8 = require('./utf8'); +var utils = require('./utils'); +var GenericWorker = require('./stream/GenericWorker'); +var StreamHelper = require('./stream/StreamHelper'); +var defaults = require('./defaults'); +var CompressedObject = require('./compressedObject'); +var ZipObject = require('./zipObject'); +var generate = require("./generate"); +var nodejsUtils = require("./nodejsUtils"); +var NodejsStreamInputAdapter = require("./nodejs/NodejsStreamInputAdapter"); + + +/** + * Add a file in the current folder. + * @private + * @param {string} name the name of the file + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data of the file + * @param {Object} originalOptions the options of the file + * @return {Object} the new file. + */ +var fileAdd = function(name, data, originalOptions) { + // be sure sub folders exist + var dataType = utils.getTypeOf(data), + parent; + + + /* + * Correct options. + */ + + var o = utils.extend(originalOptions || {}, defaults); + o.date = o.date || new Date(); + if (o.compression !== null) { + o.compression = o.compression.toUpperCase(); + } + + if (typeof o.unixPermissions === "string") { + o.unixPermissions = parseInt(o.unixPermissions, 8); + } + + // UNX_IFDIR 0040000 see zipinfo.c + if (o.unixPermissions && (o.unixPermissions & 0x4000)) { + o.dir = true; + } + // Bit 4 Directory + if (o.dosPermissions && (o.dosPermissions & 0x0010)) { + o.dir = true; + } + + if (o.dir) { + name = forceTrailingSlash(name); + } + if (o.createFolders && (parent = parentFolder(name))) { + folderAdd.call(this, parent, true); + } + + var isUnicodeString = dataType === "string" && o.binary === false && o.base64 === false; + if (!originalOptions || typeof originalOptions.binary === "undefined") { + o.binary = !isUnicodeString; + } + + + var isCompressedEmpty = (data instanceof CompressedObject) && data.uncompressedSize === 0; + + if (isCompressedEmpty || o.dir || !data || data.length === 0) { + o.base64 = false; + o.binary = true; + data = ""; + o.compression = "STORE"; + dataType = "string"; + } + + /* + * Convert content to fit. + */ + + var zipObjectContent = null; + if (data instanceof CompressedObject || data instanceof GenericWorker) { + zipObjectContent = data; + } else if (nodejsUtils.isNode && nodejsUtils.isStream(data)) { + zipObjectContent = new NodejsStreamInputAdapter(name, data); + } else { + zipObjectContent = utils.prepareContent(name, data, o.binary, o.optimizedBinaryString, o.base64); + } + + var object = new ZipObject(name, zipObjectContent, o); + this.files[name] = object; + /* + TODO: we can't throw an exception because we have async promises + (we can have a promise of a Date() for example) but returning a + promise is useless because file(name, data) returns the JSZip + object for chaining. Should we break that to allow the user + to catch the error ? + + return external.Promise.resolve(zipObjectContent) + .then(function () { + return object; + }); + */ +}; + +/** + * Find the parent folder of the path. + * @private + * @param {string} path the path to use + * @return {string} the parent folder, or "" + */ +var parentFolder = function (path) { + if (path.slice(-1) === '/') { + path = path.substring(0, path.length - 1); + } + var lastSlash = path.lastIndexOf('/'); + return (lastSlash > 0) ? path.substring(0, lastSlash) : ""; +}; + +/** + * Returns the path with a slash at the end. + * @private + * @param {String} path the path to check. + * @return {String} the path with a trailing slash. + */ +var forceTrailingSlash = function(path) { + // Check the name ends with a / + if (path.slice(-1) !== "/") { + path += "/"; // IE doesn't like substr(-1) + } + return path; +}; + +/** + * Add a (sub) folder in the current folder. + * @private + * @param {string} name the folder's name + * @param {boolean=} [createFolders] If true, automatically create sub + * folders. Defaults to false. + * @return {Object} the new folder. + */ +var folderAdd = function(name, createFolders) { + createFolders = (typeof createFolders !== 'undefined') ? createFolders : defaults.createFolders; + + name = forceTrailingSlash(name); + + // Does this folder already exist? + if (!this.files[name]) { + fileAdd.call(this, name, null, { + dir: true, + createFolders: createFolders + }); + } + return this.files[name]; +}; + +/** +* Cross-window, cross-Node-context regular expression detection +* @param {Object} object Anything +* @return {Boolean} true if the object is a regular expression, +* false otherwise +*/ +function isRegExp(object) { + return Object.prototype.toString.call(object) === "[object RegExp]"; +} + +// return the actual prototype of JSZip +var out = { + /** + * @see loadAsync + */ + load: function() { + throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide."); + }, + + + /** + * Call a callback function for each entry at this folder level. + * @param {Function} cb the callback function: + * function (relativePath, file) {...} + * It takes 2 arguments : the relative path and the file. + */ + forEach: function(cb) { + var filename, relativePath, file; + for (filename in this.files) { + if (!this.files.hasOwnProperty(filename)) { + continue; + } + file = this.files[filename]; + relativePath = filename.slice(this.root.length, filename.length); + if (relativePath && filename.slice(0, this.root.length) === this.root) { // the file is in the current root + cb(relativePath, file); // TODO reverse the parameters ? need to be clean AND consistent with the filter search fn... + } + } + }, + + /** + * Filter nested files/folders with the specified function. + * @param {Function} search the predicate to use : + * function (relativePath, file) {...} + * It takes 2 arguments : the relative path and the file. + * @return {Array} An array of matching elements. + */ + filter: function(search) { + var result = []; + this.forEach(function (relativePath, entry) { + if (search(relativePath, entry)) { // the file matches the function + result.push(entry); + } + + }); + return result; + }, + + /** + * Add a file to the zip file, or search a file. + * @param {string|RegExp} name The name of the file to add (if data is defined), + * the name of the file to find (if no data) or a regex to match files. + * @param {String|ArrayBuffer|Uint8Array|Buffer} data The file data, either raw or base64 encoded + * @param {Object} o File options + * @return {JSZip|Object|Array} this JSZip object (when adding a file), + * a file (when searching by string) or an array of files (when searching by regex). + */ + file: function(name, data, o) { + if (arguments.length === 1) { + if (isRegExp(name)) { + var regexp = name; + return this.filter(function(relativePath, file) { + return !file.dir && regexp.test(relativePath); + }); + } + else { // text + var obj = this.files[this.root + name]; + if (obj && !obj.dir) { + return obj; + } else { + return null; + } + } + } + else { // more than one argument : we have data ! + name = this.root + name; + fileAdd.call(this, name, data, o); + } + return this; + }, + + /** + * Add a directory to the zip file, or search. + * @param {String|RegExp} arg The name of the directory to add, or a regex to search folders. + * @return {JSZip} an object with the new directory as the root, or an array containing matching folders. + */ + folder: function(arg) { + if (!arg) { + return this; + } + + if (isRegExp(arg)) { + return this.filter(function(relativePath, file) { + return file.dir && arg.test(relativePath); + }); + } + + // else, name is a new folder + var name = this.root + arg; + var newFolder = folderAdd.call(this, name); + + // Allow chaining by returning a new object with this folder as the root + var ret = this.clone(); + ret.root = newFolder.name; + return ret; + }, + + /** + * Delete a file, or a directory and all sub-files, from the zip + * @param {string} name the name of the file to delete + * @return {JSZip} this JSZip object + */ + remove: function(name) { + name = this.root + name; + var file = this.files[name]; + if (!file) { + // Look for any folders + if (name.slice(-1) !== "/") { + name += "/"; + } + file = this.files[name]; + } + + if (file && !file.dir) { + // file + delete this.files[name]; + } else { + // maybe a folder, delete recursively + var kids = this.filter(function(relativePath, file) { + return file.name.slice(0, name.length) === name; + }); + for (var i = 0; i < kids.length; i++) { + delete this.files[kids[i].name]; + } + } + + return this; + }, + + /** + * Generate the complete zip file + * @param {Object} options the options to generate the zip file : + * - compression, "STORE" by default. + * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob. + * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the zip file + */ + generate: function(options) { + throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide."); + }, + + /** + * Generate the complete zip file as an internal stream. + * @param {Object} options the options to generate the zip file : + * - compression, "STORE" by default. + * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob. + * @return {StreamHelper} the streamed zip file. + */ + generateInternalStream: function(options) { + var worker, opts = {}; + try { + opts = utils.extend(options || {}, { + streamFiles: false, + compression: "STORE", + compressionOptions : null, + type: "", + platform: "DOS", + comment: null, + mimeType: 'application/zip', + encodeFileName: utf8.utf8encode + }); + + opts.type = opts.type.toLowerCase(); + opts.compression = opts.compression.toUpperCase(); + + // "binarystring" is prefered but the internals use "string". + if(opts.type === "binarystring") { + opts.type = "string"; + } + + if (!opts.type) { + throw new Error("No output type specified."); + } + + utils.checkSupport(opts.type); + + // accept nodejs `process.platform` + if( + opts.platform === 'darwin' || + opts.platform === 'freebsd' || + opts.platform === 'linux' || + opts.platform === 'sunos' + ) { + opts.platform = "UNIX"; + } + if (opts.platform === 'win32') { + opts.platform = "DOS"; + } + + var comment = opts.comment || this.comment || ""; + worker = generate.generateWorker(this, opts, comment); + } catch (e) { + worker = new GenericWorker("error"); + worker.error(e); + } + return new StreamHelper(worker, opts.type || "string", opts.mimeType); + }, + /** + * Generate the complete zip file asynchronously. + * @see generateInternalStream + */ + generateAsync: function(options, onUpdate) { + return this.generateInternalStream(options).accumulate(onUpdate); + }, + /** + * Generate the complete zip file asynchronously. + * @see generateInternalStream + */ + generateNodeStream: function(options, onUpdate) { + options = options || {}; + if (!options.type) { + options.type = "nodebuffer"; + } + return this.generateInternalStream(options).toNodejsStream(onUpdate); + } +}; +module.exports = out; + +},{"./compressedObject":2,"./defaults":5,"./generate":9,"./nodejs/NodejsStreamInputAdapter":12,"./nodejsUtils":14,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31,"./utils":32,"./zipObject":35}],16:[function(require,module,exports){ +/* + * This file is used by module bundlers (browserify/webpack/etc) when + * including a stream implementation. We use "readable-stream" to get a + * consistent behavior between nodejs versions but bundlers often have a shim + * for "stream". Using this shim greatly improve the compatibility and greatly + * reduce the final size of the bundle (only one stream implementation, not + * two). + */ +module.exports = require("stream"); + +},{"stream":undefined}],17:[function(require,module,exports){ +'use strict'; +var DataReader = require('./DataReader'); +var utils = require('../utils'); + +function ArrayReader(data) { + DataReader.call(this, data); + for(var i = 0; i < this.data.length; i++) { + data[i] = data[i] & 0xFF; + } +} +utils.inherits(ArrayReader, DataReader); +/** + * @see DataReader.byteAt + */ +ArrayReader.prototype.byteAt = function(i) { + return this.data[this.zero + i]; +}; +/** + * @see DataReader.lastIndexOfSignature + */ +ArrayReader.prototype.lastIndexOfSignature = function(sig) { + var sig0 = sig.charCodeAt(0), + sig1 = sig.charCodeAt(1), + sig2 = sig.charCodeAt(2), + sig3 = sig.charCodeAt(3); + for (var i = this.length - 4; i >= 0; --i) { + if (this.data[i] === sig0 && this.data[i + 1] === sig1 && this.data[i + 2] === sig2 && this.data[i + 3] === sig3) { + return i - this.zero; + } + } + + return -1; +}; +/** + * @see DataReader.readAndCheckSignature + */ +ArrayReader.prototype.readAndCheckSignature = function (sig) { + var sig0 = sig.charCodeAt(0), + sig1 = sig.charCodeAt(1), + sig2 = sig.charCodeAt(2), + sig3 = sig.charCodeAt(3), + data = this.readData(4); + return sig0 === data[0] && sig1 === data[1] && sig2 === data[2] && sig3 === data[3]; +}; +/** + * @see DataReader.readData + */ +ArrayReader.prototype.readData = function(size) { + this.checkOffset(size); + if(size === 0) { + return []; + } + var result = this.data.slice(this.zero + this.index, this.zero + this.index + size); + this.index += size; + return result; +}; +module.exports = ArrayReader; + +},{"../utils":32,"./DataReader":18}],18:[function(require,module,exports){ +'use strict'; +var utils = require('../utils'); + +function DataReader(data) { + this.data = data; // type : see implementation + this.length = data.length; + this.index = 0; + this.zero = 0; +} +DataReader.prototype = { + /** + * Check that the offset will not go too far. + * @param {string} offset the additional offset to check. + * @throws {Error} an Error if the offset is out of bounds. + */ + checkOffset: function(offset) { + this.checkIndex(this.index + offset); + }, + /** + * Check that the specified index will not be too far. + * @param {string} newIndex the index to check. + * @throws {Error} an Error if the index is out of bounds. + */ + checkIndex: function(newIndex) { + if (this.length < this.zero + newIndex || newIndex < 0) { + throw new Error("End of data reached (data length = " + this.length + ", asked index = " + (newIndex) + "). Corrupted zip ?"); + } + }, + /** + * Change the index. + * @param {number} newIndex The new index. + * @throws {Error} if the new index is out of the data. + */ + setIndex: function(newIndex) { + this.checkIndex(newIndex); + this.index = newIndex; + }, + /** + * Skip the next n bytes. + * @param {number} n the number of bytes to skip. + * @throws {Error} if the new index is out of the data. + */ + skip: function(n) { + this.setIndex(this.index + n); + }, + /** + * Get the byte at the specified index. + * @param {number} i the index to use. + * @return {number} a byte. + */ + byteAt: function(i) { + // see implementations + }, + /** + * Get the next number with a given byte size. + * @param {number} size the number of bytes to read. + * @return {number} the corresponding number. + */ + readInt: function(size) { + var result = 0, + i; + this.checkOffset(size); + for (i = this.index + size - 1; i >= this.index; i--) { + result = (result << 8) + this.byteAt(i); + } + this.index += size; + return result; + }, + /** + * Get the next string with a given byte size. + * @param {number} size the number of bytes to read. + * @return {string} the corresponding string. + */ + readString: function(size) { + return utils.transformTo("string", this.readData(size)); + }, + /** + * Get raw data without conversion, bytes. + * @param {number} size the number of bytes to read. + * @return {Object} the raw data, implementation specific. + */ + readData: function(size) { + // see implementations + }, + /** + * Find the last occurence of a zip signature (4 bytes). + * @param {string} sig the signature to find. + * @return {number} the index of the last occurence, -1 if not found. + */ + lastIndexOfSignature: function(sig) { + // see implementations + }, + /** + * Read the signature (4 bytes) at the current position and compare it with sig. + * @param {string} sig the expected signature + * @return {boolean} true if the signature matches, false otherwise. + */ + readAndCheckSignature: function(sig) { + // see implementations + }, + /** + * Get the next date. + * @return {Date} the date. + */ + readDate: function() { + var dostime = this.readInt(4); + return new Date(Date.UTC( + ((dostime >> 25) & 0x7f) + 1980, // year + ((dostime >> 21) & 0x0f) - 1, // month + (dostime >> 16) & 0x1f, // day + (dostime >> 11) & 0x1f, // hour + (dostime >> 5) & 0x3f, // minute + (dostime & 0x1f) << 1)); // second + } +}; +module.exports = DataReader; + +},{"../utils":32}],19:[function(require,module,exports){ +'use strict'; +var Uint8ArrayReader = require('./Uint8ArrayReader'); +var utils = require('../utils'); + +function NodeBufferReader(data) { + Uint8ArrayReader.call(this, data); +} +utils.inherits(NodeBufferReader, Uint8ArrayReader); + +/** + * @see DataReader.readData + */ +NodeBufferReader.prototype.readData = function(size) { + this.checkOffset(size); + var result = this.data.slice(this.zero + this.index, this.zero + this.index + size); + this.index += size; + return result; +}; +module.exports = NodeBufferReader; + +},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(require,module,exports){ +'use strict'; +var DataReader = require('./DataReader'); +var utils = require('../utils'); + +function StringReader(data) { + DataReader.call(this, data); +} +utils.inherits(StringReader, DataReader); +/** + * @see DataReader.byteAt + */ +StringReader.prototype.byteAt = function(i) { + return this.data.charCodeAt(this.zero + i); +}; +/** + * @see DataReader.lastIndexOfSignature + */ +StringReader.prototype.lastIndexOfSignature = function(sig) { + return this.data.lastIndexOf(sig) - this.zero; +}; +/** + * @see DataReader.readAndCheckSignature + */ +StringReader.prototype.readAndCheckSignature = function (sig) { + var data = this.readData(4); + return sig === data; +}; +/** + * @see DataReader.readData + */ +StringReader.prototype.readData = function(size) { + this.checkOffset(size); + // this will work because the constructor applied the "& 0xff" mask. + var result = this.data.slice(this.zero + this.index, this.zero + this.index + size); + this.index += size; + return result; +}; +module.exports = StringReader; + +},{"../utils":32,"./DataReader":18}],21:[function(require,module,exports){ +'use strict'; +var ArrayReader = require('./ArrayReader'); +var utils = require('../utils'); + +function Uint8ArrayReader(data) { + ArrayReader.call(this, data); +} +utils.inherits(Uint8ArrayReader, ArrayReader); +/** + * @see DataReader.readData + */ +Uint8ArrayReader.prototype.readData = function(size) { + this.checkOffset(size); + if(size === 0) { + // in IE10, when using subarray(idx, idx), we get the array [0x00] instead of []. + return new Uint8Array(0); + } + var result = this.data.subarray(this.zero + this.index, this.zero + this.index + size); + this.index += size; + return result; +}; +module.exports = Uint8ArrayReader; + +},{"../utils":32,"./ArrayReader":17}],22:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var support = require('../support'); +var ArrayReader = require('./ArrayReader'); +var StringReader = require('./StringReader'); +var NodeBufferReader = require('./NodeBufferReader'); +var Uint8ArrayReader = require('./Uint8ArrayReader'); + +/** + * Create a reader adapted to the data. + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data to read. + * @return {DataReader} the data reader. + */ +module.exports = function (data) { + var type = utils.getTypeOf(data); + utils.checkSupport(type); + if (type === "string" && !support.uint8array) { + return new StringReader(data); + } + if (type === "nodebuffer") { + return new NodeBufferReader(data); + } + if (support.uint8array) { + return new Uint8ArrayReader(utils.transformTo("uint8array", data)); + } + return new ArrayReader(utils.transformTo("array", data)); +}; + +},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(require,module,exports){ +'use strict'; +exports.LOCAL_FILE_HEADER = "PK\x03\x04"; +exports.CENTRAL_FILE_HEADER = "PK\x01\x02"; +exports.CENTRAL_DIRECTORY_END = "PK\x05\x06"; +exports.ZIP64_CENTRAL_DIRECTORY_LOCATOR = "PK\x06\x07"; +exports.ZIP64_CENTRAL_DIRECTORY_END = "PK\x06\x06"; +exports.DATA_DESCRIPTOR = "PK\x07\x08"; + +},{}],24:[function(require,module,exports){ +'use strict'; + +var GenericWorker = require('./GenericWorker'); +var utils = require('../utils'); + +/** + * A worker which convert chunks to a specified type. + * @constructor + * @param {String} destType the destination type. + */ +function ConvertWorker(destType) { + GenericWorker.call(this, "ConvertWorker to " + destType); + this.destType = destType; +} +utils.inherits(ConvertWorker, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +ConvertWorker.prototype.processChunk = function (chunk) { + this.push({ + data : utils.transformTo(this.destType, chunk.data), + meta : chunk.meta + }); +}; +module.exports = ConvertWorker; + +},{"../utils":32,"./GenericWorker":28}],25:[function(require,module,exports){ +'use strict'; + +var GenericWorker = require('./GenericWorker'); +var crc32 = require('../crc32'); +var utils = require('../utils'); + +/** + * A worker which calculate the crc32 of the data flowing through. + * @constructor + */ +function Crc32Probe() { + GenericWorker.call(this, "Crc32Probe"); + this.withStreamInfo("crc32", 0); +} +utils.inherits(Crc32Probe, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +Crc32Probe.prototype.processChunk = function (chunk) { + this.streamInfo.crc32 = crc32(chunk.data, this.streamInfo.crc32 || 0); + this.push(chunk); +}; +module.exports = Crc32Probe; + +},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var GenericWorker = require('./GenericWorker'); + +/** + * A worker which calculate the total length of the data flowing through. + * @constructor + * @param {String} propName the name used to expose the length + */ +function DataLengthProbe(propName) { + GenericWorker.call(this, "DataLengthProbe for " + propName); + this.propName = propName; + this.withStreamInfo(propName, 0); +} +utils.inherits(DataLengthProbe, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +DataLengthProbe.prototype.processChunk = function (chunk) { + if(chunk) { + var length = this.streamInfo[this.propName] || 0; + this.streamInfo[this.propName] = length + chunk.data.length; + } + GenericWorker.prototype.processChunk.call(this, chunk); +}; +module.exports = DataLengthProbe; + + +},{"../utils":32,"./GenericWorker":28}],27:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var GenericWorker = require('./GenericWorker'); + +// the size of the generated chunks +// TODO expose this as a public variable +var DEFAULT_BLOCK_SIZE = 16 * 1024; + +/** + * A worker that reads a content and emits chunks. + * @constructor + * @param {Promise} dataP the promise of the data to split + */ +function DataWorker(dataP) { + GenericWorker.call(this, "DataWorker"); + var self = this; + this.dataIsReady = false; + this.index = 0; + this.max = 0; + this.data = null; + this.type = ""; + + this._tickScheduled = false; + + dataP.then(function (data) { + self.dataIsReady = true; + self.data = data; + self.max = data && data.length || 0; + self.type = utils.getTypeOf(data); + if(!self.isPaused) { + self._tickAndRepeat(); + } + }, function (e) { + self.error(e); + }); +} + +utils.inherits(DataWorker, GenericWorker); + +/** + * @see GenericWorker.cleanUp + */ +DataWorker.prototype.cleanUp = function () { + GenericWorker.prototype.cleanUp.call(this); + this.data = null; +}; + +/** + * @see GenericWorker.resume + */ +DataWorker.prototype.resume = function () { + if(!GenericWorker.prototype.resume.call(this)) { + return false; + } + + if (!this._tickScheduled && this.dataIsReady) { + this._tickScheduled = true; + utils.delay(this._tickAndRepeat, [], this); + } + return true; +}; + +/** + * Trigger a tick a schedule an other call to this function. + */ +DataWorker.prototype._tickAndRepeat = function() { + this._tickScheduled = false; + if(this.isPaused || this.isFinished) { + return; + } + this._tick(); + if(!this.isFinished) { + utils.delay(this._tickAndRepeat, [], this); + this._tickScheduled = true; + } +}; + +/** + * Read and push a chunk. + */ +DataWorker.prototype._tick = function() { + + if(this.isPaused || this.isFinished) { + return false; + } + + var size = DEFAULT_BLOCK_SIZE; + var data = null, nextIndex = Math.min(this.max, this.index + size); + if (this.index >= this.max) { + // EOF + return this.end(); + } else { + switch(this.type) { + case "string": + data = this.data.substring(this.index, nextIndex); + break; + case "uint8array": + data = this.data.subarray(this.index, nextIndex); + break; + case "array": + case "nodebuffer": + data = this.data.slice(this.index, nextIndex); + break; + } + this.index = nextIndex; + return this.push({ + data : data, + meta : { + percent : this.max ? this.index / this.max * 100 : 0 + } + }); + } +}; + +module.exports = DataWorker; + +},{"../utils":32,"./GenericWorker":28}],28:[function(require,module,exports){ +'use strict'; + +/** + * A worker that does nothing but passing chunks to the next one. This is like + * a nodejs stream but with some differences. On the good side : + * - it works on IE 6-9 without any issue / polyfill + * - it weights less than the full dependencies bundled with browserify + * - it forwards errors (no need to declare an error handler EVERYWHERE) + * + * A chunk is an object with 2 attributes : `meta` and `data`. The former is an + * object containing anything (`percent` for example), see each worker for more + * details. The latter is the real data (String, Uint8Array, etc). + * + * @constructor + * @param {String} name the name of the stream (mainly used for debugging purposes) + */ +function GenericWorker(name) { + // the name of the worker + this.name = name || "default"; + // an object containing metadata about the workers chain + this.streamInfo = {}; + // an error which happened when the worker was paused + this.generatedError = null; + // an object containing metadata to be merged by this worker into the general metadata + this.extraStreamInfo = {}; + // true if the stream is paused (and should not do anything), false otherwise + this.isPaused = true; + // true if the stream is finished (and should not do anything), false otherwise + this.isFinished = false; + // true if the stream is locked to prevent further structure updates (pipe), false otherwise + this.isLocked = false; + // the event listeners + this._listeners = { + 'data':[], + 'end':[], + 'error':[] + }; + // the previous worker, if any + this.previous = null; +} + +GenericWorker.prototype = { + /** + * Push a chunk to the next workers. + * @param {Object} chunk the chunk to push + */ + push : function (chunk) { + this.emit("data", chunk); + }, + /** + * End the stream. + * @return {Boolean} true if this call ended the worker, false otherwise. + */ + end : function () { + if (this.isFinished) { + return false; + } + + this.flush(); + try { + this.emit("end"); + this.cleanUp(); + this.isFinished = true; + } catch (e) { + this.emit("error", e); + } + return true; + }, + /** + * End the stream with an error. + * @param {Error} e the error which caused the premature end. + * @return {Boolean} true if this call ended the worker with an error, false otherwise. + */ + error : function (e) { + if (this.isFinished) { + return false; + } + + if(this.isPaused) { + this.generatedError = e; + } else { + this.isFinished = true; + + this.emit("error", e); + + // in the workers chain exploded in the middle of the chain, + // the error event will go downward but we also need to notify + // workers upward that there has been an error. + if(this.previous) { + this.previous.error(e); + } + + this.cleanUp(); + } + return true; + }, + /** + * Add a callback on an event. + * @param {String} name the name of the event (data, end, error) + * @param {Function} listener the function to call when the event is triggered + * @return {GenericWorker} the current object for chainability + */ + on : function (name, listener) { + this._listeners[name].push(listener); + return this; + }, + /** + * Clean any references when a worker is ending. + */ + cleanUp : function () { + this.streamInfo = this.generatedError = this.extraStreamInfo = null; + this._listeners = []; + }, + /** + * Trigger an event. This will call registered callback with the provided arg. + * @param {String} name the name of the event (data, end, error) + * @param {Object} arg the argument to call the callback with. + */ + emit : function (name, arg) { + if (this._listeners[name]) { + for(var i = 0; i < this._listeners[name].length; i++) { + this._listeners[name][i].call(this, arg); + } + } + }, + /** + * Chain a worker with an other. + * @param {Worker} next the worker receiving events from the current one. + * @return {worker} the next worker for chainability + */ + pipe : function (next) { + return next.registerPrevious(this); + }, + /** + * Same as `pipe` in the other direction. + * Using an API with `pipe(next)` is very easy. + * Implementing the API with the point of view of the next one registering + * a source is easier, see the ZipFileWorker. + * @param {Worker} previous the previous worker, sending events to this one + * @return {Worker} the current worker for chainability + */ + registerPrevious : function (previous) { + if (this.isLocked) { + throw new Error("The stream '" + this + "' has already been used."); + } + + // sharing the streamInfo... + this.streamInfo = previous.streamInfo; + // ... and adding our own bits + this.mergeStreamInfo(); + this.previous = previous; + var self = this; + previous.on('data', function (chunk) { + self.processChunk(chunk); + }); + previous.on('end', function () { + self.end(); + }); + previous.on('error', function (e) { + self.error(e); + }); + return this; + }, + /** + * Pause the stream so it doesn't send events anymore. + * @return {Boolean} true if this call paused the worker, false otherwise. + */ + pause : function () { + if(this.isPaused || this.isFinished) { + return false; + } + this.isPaused = true; + + if(this.previous) { + this.previous.pause(); + } + return true; + }, + /** + * Resume a paused stream. + * @return {Boolean} true if this call resumed the worker, false otherwise. + */ + resume : function () { + if(!this.isPaused || this.isFinished) { + return false; + } + this.isPaused = false; + + // if true, the worker tried to resume but failed + var withError = false; + if(this.generatedError) { + this.error(this.generatedError); + withError = true; + } + if(this.previous) { + this.previous.resume(); + } + + return !withError; + }, + /** + * Flush any remaining bytes as the stream is ending. + */ + flush : function () {}, + /** + * Process a chunk. This is usually the method overridden. + * @param {Object} chunk the chunk to process. + */ + processChunk : function(chunk) { + this.push(chunk); + }, + /** + * Add a key/value to be added in the workers chain streamInfo once activated. + * @param {String} key the key to use + * @param {Object} value the associated value + * @return {Worker} the current worker for chainability + */ + withStreamInfo : function (key, value) { + this.extraStreamInfo[key] = value; + this.mergeStreamInfo(); + return this; + }, + /** + * Merge this worker's streamInfo into the chain's streamInfo. + */ + mergeStreamInfo : function () { + for(var key in this.extraStreamInfo) { + if (!this.extraStreamInfo.hasOwnProperty(key)) { + continue; + } + this.streamInfo[key] = this.extraStreamInfo[key]; + } + }, + + /** + * Lock the stream to prevent further updates on the workers chain. + * After calling this method, all calls to pipe will fail. + */ + lock: function () { + if (this.isLocked) { + throw new Error("The stream '" + this + "' has already been used."); + } + this.isLocked = true; + if (this.previous) { + this.previous.lock(); + } + }, + + /** + * + * Pretty print the workers chain. + */ + toString : function () { + var me = "Worker " + this.name; + if (this.previous) { + return this.previous + " -> " + me; + } else { + return me; + } + } +}; + +module.exports = GenericWorker; + +},{}],29:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var ConvertWorker = require('./ConvertWorker'); +var GenericWorker = require('./GenericWorker'); +var base64 = require('../base64'); +var support = require("../support"); +var external = require("../external"); + +var NodejsStreamOutputAdapter = null; +if (support.nodestream) { + try { + NodejsStreamOutputAdapter = require('../nodejs/NodejsStreamOutputAdapter'); + } catch(e) {} +} + +/** + * Apply the final transformation of the data. If the user wants a Blob for + * example, it's easier to work with an U8intArray and finally do the + * ArrayBuffer/Blob conversion. + * @param {String} type the name of the final type + * @param {String|Uint8Array|Buffer} content the content to transform + * @param {String} mimeType the mime type of the content, if applicable. + * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the content in the right format. + */ +function transformZipOutput(type, content, mimeType) { + switch(type) { + case "blob" : + return utils.newBlob(utils.transformTo("arraybuffer", content), mimeType); + case "base64" : + return base64.encode(content); + default : + return utils.transformTo(type, content); + } +} + +/** + * Concatenate an array of data of the given type. + * @param {String} type the type of the data in the given array. + * @param {Array} dataArray the array containing the data chunks to concatenate + * @return {String|Uint8Array|Buffer} the concatenated data + * @throws Error if the asked type is unsupported + */ +function concat (type, dataArray) { + var i, index = 0, res = null, totalLength = 0; + for(i = 0; i < dataArray.length; i++) { + totalLength += dataArray[i].length; + } + switch(type) { + case "string": + return dataArray.join(""); + case "array": + return Array.prototype.concat.apply([], dataArray); + case "uint8array": + res = new Uint8Array(totalLength); + for(i = 0; i < dataArray.length; i++) { + res.set(dataArray[i], index); + index += dataArray[i].length; + } + return res; + case "nodebuffer": + return Buffer.concat(dataArray); + default: + throw new Error("concat : unsupported type '" + type + "'"); + } +} + +/** + * Listen a StreamHelper, accumulate its content and concatenate it into a + * complete block. + * @param {StreamHelper} helper the helper to use. + * @param {Function} updateCallback a callback called on each update. Called + * with one arg : + * - the metadata linked to the update received. + * @return Promise the promise for the accumulation. + */ +function accumulate(helper, updateCallback) { + return new external.Promise(function (resolve, reject){ + var dataArray = []; + var chunkType = helper._internalType, + resultType = helper._outputType, + mimeType = helper._mimeType; + helper + .on('data', function (data, meta) { + dataArray.push(data); + if(updateCallback) { + updateCallback(meta); + } + }) + .on('error', function(err) { + dataArray = []; + reject(err); + }) + .on('end', function (){ + try { + var result = transformZipOutput(resultType, concat(chunkType, dataArray), mimeType); + resolve(result); + } catch (e) { + reject(e); + } + dataArray = []; + }) + .resume(); + }); +} + +/** + * An helper to easily use workers outside of JSZip. + * @constructor + * @param {Worker} worker the worker to wrap + * @param {String} outputType the type of data expected by the use + * @param {String} mimeType the mime type of the content, if applicable. + */ +function StreamHelper(worker, outputType, mimeType) { + var internalType = outputType; + switch(outputType) { + case "blob": + case "arraybuffer": + internalType = "uint8array"; + break; + case "base64": + internalType = "string"; + break; + } + + try { + // the type used internally + this._internalType = internalType; + // the type used to output results + this._outputType = outputType; + // the mime type + this._mimeType = mimeType; + utils.checkSupport(internalType); + this._worker = worker.pipe(new ConvertWorker(internalType)); + // the last workers can be rewired without issues but we need to + // prevent any updates on previous workers. + worker.lock(); + } catch(e) { + this._worker = new GenericWorker("error"); + this._worker.error(e); + } +} + +StreamHelper.prototype = { + /** + * Listen a StreamHelper, accumulate its content and concatenate it into a + * complete block. + * @param {Function} updateCb the update callback. + * @return Promise the promise for the accumulation. + */ + accumulate : function (updateCb) { + return accumulate(this, updateCb); + }, + /** + * Add a listener on an event triggered on a stream. + * @param {String} evt the name of the event + * @param {Function} fn the listener + * @return {StreamHelper} the current helper. + */ + on : function (evt, fn) { + var self = this; + + if(evt === "data") { + this._worker.on(evt, function (chunk) { + fn.call(self, chunk.data, chunk.meta); + }); + } else { + this._worker.on(evt, function () { + utils.delay(fn, arguments, self); + }); + } + return this; + }, + /** + * Resume the flow of chunks. + * @return {StreamHelper} the current helper. + */ + resume : function () { + utils.delay(this._worker.resume, [], this._worker); + return this; + }, + /** + * Pause the flow of chunks. + * @return {StreamHelper} the current helper. + */ + pause : function () { + this._worker.pause(); + return this; + }, + /** + * Return a nodejs stream for this helper. + * @param {Function} updateCb the update callback. + * @return {NodejsStreamOutputAdapter} the nodejs stream. + */ + toNodejsStream : function (updateCb) { + utils.checkSupport("nodestream"); + if (this._outputType !== "nodebuffer") { + // an object stream containing blob/arraybuffer/uint8array/string + // is strange and I don't know if it would be useful. + // I you find this comment and have a good usecase, please open a + // bug report ! + throw new Error(this._outputType + " is not supported by this method"); + } + + return new NodejsStreamOutputAdapter(this, { + objectMode : this._outputType !== "nodebuffer" + }, updateCb); + } +}; + + +module.exports = StreamHelper; + +},{"../base64":1,"../external":6,"../nodejs/NodejsStreamOutputAdapter":13,"../support":30,"../utils":32,"./ConvertWorker":24,"./GenericWorker":28}],30:[function(require,module,exports){ +'use strict'; + +exports.base64 = true; +exports.array = true; +exports.string = true; +exports.arraybuffer = typeof ArrayBuffer !== "undefined" && typeof Uint8Array !== "undefined"; +exports.nodebuffer = typeof Buffer !== "undefined"; +// contains true if JSZip can read/generate Uint8Array, false otherwise. +exports.uint8array = typeof Uint8Array !== "undefined"; + +if (typeof ArrayBuffer === "undefined") { + exports.blob = false; +} +else { + var buffer = new ArrayBuffer(0); + try { + exports.blob = new Blob([buffer], { + type: "application/zip" + }).size === 0; + } + catch (e) { + try { + var Builder = self.BlobBuilder || self.WebKitBlobBuilder || self.MozBlobBuilder || self.MSBlobBuilder; + var builder = new Builder(); + builder.append(buffer); + exports.blob = builder.getBlob('application/zip').size === 0; + } + catch (e) { + exports.blob = false; + } + } +} + +try { + exports.nodestream = !!require('readable-stream').Readable; +} catch(e) { + exports.nodestream = false; +} + +},{"readable-stream":16}],31:[function(require,module,exports){ +'use strict'; + +var utils = require('./utils'); +var support = require('./support'); +var nodejsUtils = require('./nodejsUtils'); +var GenericWorker = require('./stream/GenericWorker'); + +/** + * The following functions come from pako, from pako/lib/utils/strings + * released under the MIT license, see pako https://github.com/nodeca/pako/ + */ + +// Table with utf8 lengths (calculated by first byte of sequence) +// Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS, +// because max possible codepoint is 0x10ffff +var _utf8len = new Array(256); +for (var i=0; i<256; i++) { + _utf8len[i] = (i >= 252 ? 6 : i >= 248 ? 5 : i >= 240 ? 4 : i >= 224 ? 3 : i >= 192 ? 2 : 1); +} +_utf8len[254]=_utf8len[254]=1; // Invalid sequence start + +// convert string to array (typed, when possible) +var string2buf = function (str) { + var buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0; + + // count binary size + for (m_pos = 0; m_pos < str_len; m_pos++) { + c = str.charCodeAt(m_pos); + if ((c & 0xfc00) === 0xd800 && (m_pos+1 < str_len)) { + c2 = str.charCodeAt(m_pos+1); + if ((c2 & 0xfc00) === 0xdc00) { + c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00); + m_pos++; + } + } + buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4; + } + + // allocate buffer + if (support.uint8array) { + buf = new Uint8Array(buf_len); + } else { + buf = new Array(buf_len); + } + + // convert + for (i=0, m_pos = 0; i < buf_len; m_pos++) { + c = str.charCodeAt(m_pos); + if ((c & 0xfc00) === 0xd800 && (m_pos+1 < str_len)) { + c2 = str.charCodeAt(m_pos+1); + if ((c2 & 0xfc00) === 0xdc00) { + c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00); + m_pos++; + } + } + if (c < 0x80) { + /* one byte */ + buf[i++] = c; + } else if (c < 0x800) { + /* two bytes */ + buf[i++] = 0xC0 | (c >>> 6); + buf[i++] = 0x80 | (c & 0x3f); + } else if (c < 0x10000) { + /* three bytes */ + buf[i++] = 0xE0 | (c >>> 12); + buf[i++] = 0x80 | (c >>> 6 & 0x3f); + buf[i++] = 0x80 | (c & 0x3f); + } else { + /* four bytes */ + buf[i++] = 0xf0 | (c >>> 18); + buf[i++] = 0x80 | (c >>> 12 & 0x3f); + buf[i++] = 0x80 | (c >>> 6 & 0x3f); + buf[i++] = 0x80 | (c & 0x3f); + } + } + + return buf; +}; + +// Calculate max possible position in utf8 buffer, +// that will not break sequence. If that's not possible +// - (very small limits) return max size as is. +// +// buf[] - utf8 bytes array +// max - length limit (mandatory); +var utf8border = function(buf, max) { + var pos; + + max = max || buf.length; + if (max > buf.length) { max = buf.length; } + + // go back from last position, until start of sequence found + pos = max-1; + while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; } + + // Fuckup - very small and broken sequence, + // return max, because we should return something anyway. + if (pos < 0) { return max; } + + // If we came to start of buffer - that means vuffer is too small, + // return max too. + if (pos === 0) { return max; } + + return (pos + _utf8len[buf[pos]] > max) ? pos : max; +}; + +// convert array to string +var buf2string = function (buf) { + var str, i, out, c, c_len; + var len = buf.length; + + // Reserve max possible length (2 words per char) + // NB: by unknown reasons, Array is significantly faster for + // String.fromCharCode.apply than Uint16Array. + var utf16buf = new Array(len*2); + + for (out=0, i=0; i 4) { utf16buf[out++] = 0xfffd; i += c_len-1; continue; } + + // apply mask on first byte + c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07; + // join the rest + while (c_len > 1 && i < len) { + c = (c << 6) | (buf[i++] & 0x3f); + c_len--; + } + + // terminated by end of string? + if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; } + + if (c < 0x10000) { + utf16buf[out++] = c; + } else { + c -= 0x10000; + utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff); + utf16buf[out++] = 0xdc00 | (c & 0x3ff); + } + } + + // shrinkBuf(utf16buf, out) + if (utf16buf.length !== out) { + if(utf16buf.subarray) { + utf16buf = utf16buf.subarray(0, out); + } else { + utf16buf.length = out; + } + } + + // return String.fromCharCode.apply(null, utf16buf); + return utils.applyFromCharCode(utf16buf); +}; + + +// That's all for the pako functions. + + +/** + * Transform a javascript string into an array (typed if possible) of bytes, + * UTF-8 encoded. + * @param {String} str the string to encode + * @return {Array|Uint8Array|Buffer} the UTF-8 encoded string. + */ +exports.utf8encode = function utf8encode(str) { + if (support.nodebuffer) { + return nodejsUtils.newBufferFrom(str, "utf-8"); + } + + return string2buf(str); +}; + + +/** + * Transform a bytes array (or a representation) representing an UTF-8 encoded + * string into a javascript string. + * @param {Array|Uint8Array|Buffer} buf the data de decode + * @return {String} the decoded string. + */ +exports.utf8decode = function utf8decode(buf) { + if (support.nodebuffer) { + return utils.transformTo("nodebuffer", buf).toString("utf-8"); + } + + buf = utils.transformTo(support.uint8array ? "uint8array" : "array", buf); + + return buf2string(buf); +}; + +/** + * A worker to decode utf8 encoded binary chunks into string chunks. + * @constructor + */ +function Utf8DecodeWorker() { + GenericWorker.call(this, "utf-8 decode"); + // the last bytes if a chunk didn't end with a complete codepoint. + this.leftOver = null; +} +utils.inherits(Utf8DecodeWorker, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +Utf8DecodeWorker.prototype.processChunk = function (chunk) { + + var data = utils.transformTo(support.uint8array ? "uint8array" : "array", chunk.data); + + // 1st step, re-use what's left of the previous chunk + if (this.leftOver && this.leftOver.length) { + if(support.uint8array) { + var previousData = data; + data = new Uint8Array(previousData.length + this.leftOver.length); + data.set(this.leftOver, 0); + data.set(previousData, this.leftOver.length); + } else { + data = this.leftOver.concat(data); + } + this.leftOver = null; + } + + var nextBoundary = utf8border(data); + var usableData = data; + if (nextBoundary !== data.length) { + if (support.uint8array) { + usableData = data.subarray(0, nextBoundary); + this.leftOver = data.subarray(nextBoundary, data.length); + } else { + usableData = data.slice(0, nextBoundary); + this.leftOver = data.slice(nextBoundary, data.length); + } + } + + this.push({ + data : exports.utf8decode(usableData), + meta : chunk.meta + }); +}; + +/** + * @see GenericWorker.flush + */ +Utf8DecodeWorker.prototype.flush = function () { + if(this.leftOver && this.leftOver.length) { + this.push({ + data : exports.utf8decode(this.leftOver), + meta : {} + }); + this.leftOver = null; + } +}; +exports.Utf8DecodeWorker = Utf8DecodeWorker; + +/** + * A worker to endcode string chunks into utf8 encoded binary chunks. + * @constructor + */ +function Utf8EncodeWorker() { + GenericWorker.call(this, "utf-8 encode"); +} +utils.inherits(Utf8EncodeWorker, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +Utf8EncodeWorker.prototype.processChunk = function (chunk) { + this.push({ + data : exports.utf8encode(chunk.data), + meta : chunk.meta + }); +}; +exports.Utf8EncodeWorker = Utf8EncodeWorker; + +},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(require,module,exports){ +'use strict'; + +var support = require('./support'); +var base64 = require('./base64'); +var nodejsUtils = require('./nodejsUtils'); +var setImmediate = require('core-js/library/fn/set-immediate'); +var external = require("./external"); + + +/** + * Convert a string that pass as a "binary string": it should represent a byte + * array but may have > 255 char codes. Be sure to take only the first byte + * and returns the byte array. + * @param {String} str the string to transform. + * @return {Array|Uint8Array} the string in a binary format. + */ +function string2binary(str) { + var result = null; + if (support.uint8array) { + result = new Uint8Array(str.length); + } else { + result = new Array(str.length); + } + return stringToArrayLike(str, result); +} + +/** + * Create a new blob with the given content and the given type. + * @param {String|ArrayBuffer} part the content to put in the blob. DO NOT use + * an Uint8Array because the stock browser of android 4 won't accept it (it + * will be silently converted to a string, "[object Uint8Array]"). + * + * Use only ONE part to build the blob to avoid a memory leak in IE11 / Edge: + * when a large amount of Array is used to create the Blob, the amount of + * memory consumed is nearly 100 times the original data amount. + * + * @param {String} type the mime type of the blob. + * @return {Blob} the created blob. + */ +exports.newBlob = function(part, type) { + exports.checkSupport("blob"); + + try { + // Blob constructor + return new Blob([part], { + type: type + }); + } + catch (e) { + + try { + // deprecated, browser only, old way + var Builder = self.BlobBuilder || self.WebKitBlobBuilder || self.MozBlobBuilder || self.MSBlobBuilder; + var builder = new Builder(); + builder.append(part); + return builder.getBlob(type); + } + catch (e) { + + // well, fuck ?! + throw new Error("Bug : can't construct the Blob."); + } + } + + +}; +/** + * The identity function. + * @param {Object} input the input. + * @return {Object} the same input. + */ +function identity(input) { + return input; +} + +/** + * Fill in an array with a string. + * @param {String} str the string to use. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to fill in (will be mutated). + * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated array. + */ +function stringToArrayLike(str, array) { + for (var i = 0; i < str.length; ++i) { + array[i] = str.charCodeAt(i) & 0xFF; + } + return array; +} + +/** + * An helper for the function arrayLikeToString. + * This contains static informations and functions that + * can be optimized by the browser JIT compiler. + */ +var arrayToStringHelper = { + /** + * Transform an array of int into a string, chunk by chunk. + * See the performances notes on arrayLikeToString. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform. + * @param {String} type the type of the array. + * @param {Integer} chunk the chunk size. + * @return {String} the resulting string. + * @throws Error if the chunk is too big for the stack. + */ + stringifyByChunk: function(array, type, chunk) { + var result = [], k = 0, len = array.length; + // shortcut + if (len <= chunk) { + return String.fromCharCode.apply(null, array); + } + while (k < len) { + if (type === "array" || type === "nodebuffer") { + result.push(String.fromCharCode.apply(null, array.slice(k, Math.min(k + chunk, len)))); + } + else { + result.push(String.fromCharCode.apply(null, array.subarray(k, Math.min(k + chunk, len)))); + } + k += chunk; + } + return result.join(""); + }, + /** + * Call String.fromCharCode on every item in the array. + * This is the naive implementation, which generate A LOT of intermediate string. + * This should be used when everything else fail. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform. + * @return {String} the result. + */ + stringifyByChar: function(array){ + var resultStr = ""; + for(var i = 0; i < array.length; i++) { + resultStr += String.fromCharCode(array[i]); + } + return resultStr; + }, + applyCanBeUsed : { + /** + * true if the browser accepts to use String.fromCharCode on Uint8Array + */ + uint8array : (function () { + try { + return support.uint8array && String.fromCharCode.apply(null, new Uint8Array(1)).length === 1; + } catch (e) { + return false; + } + })(), + /** + * true if the browser accepts to use String.fromCharCode on nodejs Buffer. + */ + nodebuffer : (function () { + try { + return support.nodebuffer && String.fromCharCode.apply(null, nodejsUtils.allocBuffer(1)).length === 1; + } catch (e) { + return false; + } + })() + } +}; + +/** + * Transform an array-like object to a string. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform. + * @return {String} the result. + */ +function arrayLikeToString(array) { + // Performances notes : + // -------------------- + // String.fromCharCode.apply(null, array) is the fastest, see + // see http://jsperf.com/converting-a-uint8array-to-a-string/2 + // but the stack is limited (and we can get huge arrays !). + // + // result += String.fromCharCode(array[i]); generate too many strings ! + // + // This code is inspired by http://jsperf.com/arraybuffer-to-string-apply-performance/2 + // TODO : we now have workers that split the work. Do we still need that ? + var chunk = 65536, + type = exports.getTypeOf(array), + canUseApply = true; + if (type === "uint8array") { + canUseApply = arrayToStringHelper.applyCanBeUsed.uint8array; + } else if (type === "nodebuffer") { + canUseApply = arrayToStringHelper.applyCanBeUsed.nodebuffer; + } + + if (canUseApply) { + while (chunk > 1) { + try { + return arrayToStringHelper.stringifyByChunk(array, type, chunk); + } catch (e) { + chunk = Math.floor(chunk / 2); + } + } + } + + // no apply or chunk error : slow and painful algorithm + // default browser on android 4.* + return arrayToStringHelper.stringifyByChar(array); +} + +exports.applyFromCharCode = arrayLikeToString; + + +/** + * Copy the data from an array-like to an other array-like. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayFrom the origin array. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayTo the destination array which will be mutated. + * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated destination array. + */ +function arrayLikeToArrayLike(arrayFrom, arrayTo) { + for (var i = 0; i < arrayFrom.length; i++) { + arrayTo[i] = arrayFrom[i]; + } + return arrayTo; +} + +// a matrix containing functions to transform everything into everything. +var transform = {}; + +// string to ? +transform["string"] = { + "string": identity, + "array": function(input) { + return stringToArrayLike(input, new Array(input.length)); + }, + "arraybuffer": function(input) { + return transform["string"]["uint8array"](input).buffer; + }, + "uint8array": function(input) { + return stringToArrayLike(input, new Uint8Array(input.length)); + }, + "nodebuffer": function(input) { + return stringToArrayLike(input, nodejsUtils.allocBuffer(input.length)); + } +}; + +// array to ? +transform["array"] = { + "string": arrayLikeToString, + "array": identity, + "arraybuffer": function(input) { + return (new Uint8Array(input)).buffer; + }, + "uint8array": function(input) { + return new Uint8Array(input); + }, + "nodebuffer": function(input) { + return nodejsUtils.newBufferFrom(input); + } +}; + +// arraybuffer to ? +transform["arraybuffer"] = { + "string": function(input) { + return arrayLikeToString(new Uint8Array(input)); + }, + "array": function(input) { + return arrayLikeToArrayLike(new Uint8Array(input), new Array(input.byteLength)); + }, + "arraybuffer": identity, + "uint8array": function(input) { + return new Uint8Array(input); + }, + "nodebuffer": function(input) { + return nodejsUtils.newBufferFrom(new Uint8Array(input)); + } +}; + +// uint8array to ? +transform["uint8array"] = { + "string": arrayLikeToString, + "array": function(input) { + return arrayLikeToArrayLike(input, new Array(input.length)); + }, + "arraybuffer": function(input) { + return input.buffer; + }, + "uint8array": identity, + "nodebuffer": function(input) { + return nodejsUtils.newBufferFrom(input); + } +}; + +// nodebuffer to ? +transform["nodebuffer"] = { + "string": arrayLikeToString, + "array": function(input) { + return arrayLikeToArrayLike(input, new Array(input.length)); + }, + "arraybuffer": function(input) { + return transform["nodebuffer"]["uint8array"](input).buffer; + }, + "uint8array": function(input) { + return arrayLikeToArrayLike(input, new Uint8Array(input.length)); + }, + "nodebuffer": identity +}; + +/** + * Transform an input into any type. + * The supported output type are : string, array, uint8array, arraybuffer, nodebuffer. + * If no output type is specified, the unmodified input will be returned. + * @param {String} outputType the output type. + * @param {String|Array|ArrayBuffer|Uint8Array|Buffer} input the input to convert. + * @throws {Error} an Error if the browser doesn't support the requested output type. + */ +exports.transformTo = function(outputType, input) { + if (!input) { + // undefined, null, etc + // an empty string won't harm. + input = ""; + } + if (!outputType) { + return input; + } + exports.checkSupport(outputType); + var inputType = exports.getTypeOf(input); + var result = transform[inputType][outputType](input); + return result; +}; + +/** + * Return the type of the input. + * The type will be in a format valid for JSZip.utils.transformTo : string, array, uint8array, arraybuffer. + * @param {Object} input the input to identify. + * @return {String} the (lowercase) type of the input. + */ +exports.getTypeOf = function(input) { + if (typeof input === "string") { + return "string"; + } + if (Object.prototype.toString.call(input) === "[object Array]") { + return "array"; + } + if (support.nodebuffer && nodejsUtils.isBuffer(input)) { + return "nodebuffer"; + } + if (support.uint8array && input instanceof Uint8Array) { + return "uint8array"; + } + if (support.arraybuffer && input instanceof ArrayBuffer) { + return "arraybuffer"; + } +}; + +/** + * Throw an exception if the type is not supported. + * @param {String} type the type to check. + * @throws {Error} an Error if the browser doesn't support the requested type. + */ +exports.checkSupport = function(type) { + var supported = support[type.toLowerCase()]; + if (!supported) { + throw new Error(type + " is not supported by this platform"); + } +}; + +exports.MAX_VALUE_16BITS = 65535; +exports.MAX_VALUE_32BITS = -1; // well, "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" is parsed as -1 + +/** + * Prettify a string read as binary. + * @param {string} str the string to prettify. + * @return {string} a pretty string. + */ +exports.pretty = function(str) { + var res = '', + code, i; + for (i = 0; i < (str || "").length; i++) { + code = str.charCodeAt(i); + res += '\\x' + (code < 16 ? "0" : "") + code.toString(16).toUpperCase(); + } + return res; +}; + +/** + * Defer the call of a function. + * @param {Function} callback the function to call asynchronously. + * @param {Array} args the arguments to give to the callback. + */ +exports.delay = function(callback, args, self) { + setImmediate(function () { + callback.apply(self || null, args || []); + }); +}; + +/** + * Extends a prototype with an other, without calling a constructor with + * side effects. Inspired by nodejs' `utils.inherits` + * @param {Function} ctor the constructor to augment + * @param {Function} superCtor the parent constructor to use + */ +exports.inherits = function (ctor, superCtor) { + var Obj = function() {}; + Obj.prototype = superCtor.prototype; + ctor.prototype = new Obj(); +}; + +/** + * Merge the objects passed as parameters into a new one. + * @private + * @param {...Object} var_args All objects to merge. + * @return {Object} a new object with the data of the others. + */ +exports.extend = function() { + var result = {}, i, attr; + for (i = 0; i < arguments.length; i++) { // arguments is not enumerable in some browsers + for (attr in arguments[i]) { + if (arguments[i].hasOwnProperty(attr) && typeof result[attr] === "undefined") { + result[attr] = arguments[i][attr]; + } + } + } + return result; +}; + +/** + * Transform arbitrary content into a Promise. + * @param {String} name a name for the content being processed. + * @param {Object} inputData the content to process. + * @param {Boolean} isBinary true if the content is not an unicode string + * @param {Boolean} isOptimizedBinaryString true if the string content only has one byte per character. + * @param {Boolean} isBase64 true if the string content is encoded with base64. + * @return {Promise} a promise in a format usable by JSZip. + */ +exports.prepareContent = function(name, inputData, isBinary, isOptimizedBinaryString, isBase64) { + + // if inputData is already a promise, this flatten it. + var promise = external.Promise.resolve(inputData).then(function(data) { + + + var isBlob = support.blob && (data instanceof Blob || ['[object File]', '[object Blob]'].indexOf(Object.prototype.toString.call(data)) !== -1); + + if (isBlob && typeof FileReader !== "undefined") { + return new external.Promise(function (resolve, reject) { + var reader = new FileReader(); + + reader.onload = function(e) { + resolve(e.target.result); + }; + reader.onerror = function(e) { + reject(e.target.error); + }; + reader.readAsArrayBuffer(data); + }); + } else { + return data; + } + }); + + return promise.then(function(data) { + var dataType = exports.getTypeOf(data); + + if (!dataType) { + return external.Promise.reject( + new Error("Can't read the data of '" + name + "'. Is it " + + "in a supported JavaScript type (String, Blob, ArrayBuffer, etc) ?") + ); + } + // special case : it's way easier to work with Uint8Array than with ArrayBuffer + if (dataType === "arraybuffer") { + data = exports.transformTo("uint8array", data); + } else if (dataType === "string") { + if (isBase64) { + data = base64.decode(data); + } + else if (isBinary) { + // optimizedBinaryString === true means that the file has already been filtered with a 0xFF mask + if (isOptimizedBinaryString !== true) { + // this is a string, not in a base64 format. + // Be sure that this is a correct "binary string" + data = string2binary(data); + } + } + } + return data; + }); +}; + +},{"./base64":1,"./external":6,"./nodejsUtils":14,"./support":30,"core-js/library/fn/set-immediate":36}],33:[function(require,module,exports){ +'use strict'; +var readerFor = require('./reader/readerFor'); +var utils = require('./utils'); +var sig = require('./signature'); +var ZipEntry = require('./zipEntry'); +var utf8 = require('./utf8'); +var support = require('./support'); +// class ZipEntries {{{ +/** + * All the entries in the zip file. + * @constructor + * @param {Object} loadOptions Options for loading the stream. + */ +function ZipEntries(loadOptions) { + this.files = []; + this.loadOptions = loadOptions; +} +ZipEntries.prototype = { + /** + * Check that the reader is on the specified signature. + * @param {string} expectedSignature the expected signature. + * @throws {Error} if it is an other signature. + */ + checkSignature: function(expectedSignature) { + if (!this.reader.readAndCheckSignature(expectedSignature)) { + this.reader.index -= 4; + var signature = this.reader.readString(4); + throw new Error("Corrupted zip or bug: unexpected signature " + "(" + utils.pretty(signature) + ", expected " + utils.pretty(expectedSignature) + ")"); + } + }, + /** + * Check if the given signature is at the given index. + * @param {number} askedIndex the index to check. + * @param {string} expectedSignature the signature to expect. + * @return {boolean} true if the signature is here, false otherwise. + */ + isSignature: function(askedIndex, expectedSignature) { + var currentIndex = this.reader.index; + this.reader.setIndex(askedIndex); + var signature = this.reader.readString(4); + var result = signature === expectedSignature; + this.reader.setIndex(currentIndex); + return result; + }, + /** + * Read the end of the central directory. + */ + readBlockEndOfCentral: function() { + this.diskNumber = this.reader.readInt(2); + this.diskWithCentralDirStart = this.reader.readInt(2); + this.centralDirRecordsOnThisDisk = this.reader.readInt(2); + this.centralDirRecords = this.reader.readInt(2); + this.centralDirSize = this.reader.readInt(4); + this.centralDirOffset = this.reader.readInt(4); + + this.zipCommentLength = this.reader.readInt(2); + // warning : the encoding depends of the system locale + // On a linux machine with LANG=en_US.utf8, this field is utf8 encoded. + // On a windows machine, this field is encoded with the localized windows code page. + var zipComment = this.reader.readData(this.zipCommentLength); + var decodeParamType = support.uint8array ? "uint8array" : "array"; + // To get consistent behavior with the generation part, we will assume that + // this is utf8 encoded unless specified otherwise. + var decodeContent = utils.transformTo(decodeParamType, zipComment); + this.zipComment = this.loadOptions.decodeFileName(decodeContent); + }, + /** + * Read the end of the Zip 64 central directory. + * Not merged with the method readEndOfCentral : + * The end of central can coexist with its Zip64 brother, + * I don't want to read the wrong number of bytes ! + */ + readBlockZip64EndOfCentral: function() { + this.zip64EndOfCentralSize = this.reader.readInt(8); + this.reader.skip(4); + // this.versionMadeBy = this.reader.readString(2); + // this.versionNeeded = this.reader.readInt(2); + this.diskNumber = this.reader.readInt(4); + this.diskWithCentralDirStart = this.reader.readInt(4); + this.centralDirRecordsOnThisDisk = this.reader.readInt(8); + this.centralDirRecords = this.reader.readInt(8); + this.centralDirSize = this.reader.readInt(8); + this.centralDirOffset = this.reader.readInt(8); + + this.zip64ExtensibleData = {}; + var extraDataSize = this.zip64EndOfCentralSize - 44, + index = 0, + extraFieldId, + extraFieldLength, + extraFieldValue; + while (index < extraDataSize) { + extraFieldId = this.reader.readInt(2); + extraFieldLength = this.reader.readInt(4); + extraFieldValue = this.reader.readData(extraFieldLength); + this.zip64ExtensibleData[extraFieldId] = { + id: extraFieldId, + length: extraFieldLength, + value: extraFieldValue + }; + } + }, + /** + * Read the end of the Zip 64 central directory locator. + */ + readBlockZip64EndOfCentralLocator: function() { + this.diskWithZip64CentralDirStart = this.reader.readInt(4); + this.relativeOffsetEndOfZip64CentralDir = this.reader.readInt(8); + this.disksCount = this.reader.readInt(4); + if (this.disksCount > 1) { + throw new Error("Multi-volumes zip are not supported"); + } + }, + /** + * Read the local files, based on the offset read in the central part. + */ + readLocalFiles: function() { + var i, file; + for (i = 0; i < this.files.length; i++) { + file = this.files[i]; + this.reader.setIndex(file.localHeaderOffset); + this.checkSignature(sig.LOCAL_FILE_HEADER); + file.readLocalPart(this.reader); + file.handleUTF8(); + file.processAttributes(); + } + }, + /** + * Read the central directory. + */ + readCentralDir: function() { + var file; + + this.reader.setIndex(this.centralDirOffset); + while (this.reader.readAndCheckSignature(sig.CENTRAL_FILE_HEADER)) { + file = new ZipEntry({ + zip64: this.zip64 + }, this.loadOptions); + file.readCentralPart(this.reader); + this.files.push(file); + } + + if (this.centralDirRecords !== this.files.length) { + if (this.centralDirRecords !== 0 && this.files.length === 0) { + // We expected some records but couldn't find ANY. + // This is really suspicious, as if something went wrong. + throw new Error("Corrupted zip or bug: expected " + this.centralDirRecords + " records in central dir, got " + this.files.length); + } else { + // We found some records but not all. + // Something is wrong but we got something for the user: no error here. + // console.warn("expected", this.centralDirRecords, "records in central dir, got", this.files.length); + } + } + }, + /** + * Read the end of central directory. + */ + readEndOfCentral: function() { + var offset = this.reader.lastIndexOfSignature(sig.CENTRAL_DIRECTORY_END); + if (offset < 0) { + // Check if the content is a truncated zip or complete garbage. + // A "LOCAL_FILE_HEADER" is not required at the beginning (auto + // extractible zip for example) but it can give a good hint. + // If an ajax request was used without responseType, we will also + // get unreadable data. + var isGarbage = !this.isSignature(0, sig.LOCAL_FILE_HEADER); + + if (isGarbage) { + throw new Error("Can't find end of central directory : is this a zip file ? " + + "If it is, see https://stuk.github.io/jszip/documentation/howto/read_zip.html"); + } else { + throw new Error("Corrupted zip: can't find end of central directory"); + } + + } + this.reader.setIndex(offset); + var endOfCentralDirOffset = offset; + this.checkSignature(sig.CENTRAL_DIRECTORY_END); + this.readBlockEndOfCentral(); + + + /* extract from the zip spec : + 4) If one of the fields in the end of central directory + record is too small to hold required data, the field + should be set to -1 (0xFFFF or 0xFFFFFFFF) and the + ZIP64 format record should be created. + 5) The end of central directory record and the + Zip64 end of central directory locator record must + reside on the same disk when splitting or spanning + an archive. + */ + if (this.diskNumber === utils.MAX_VALUE_16BITS || this.diskWithCentralDirStart === utils.MAX_VALUE_16BITS || this.centralDirRecordsOnThisDisk === utils.MAX_VALUE_16BITS || this.centralDirRecords === utils.MAX_VALUE_16BITS || this.centralDirSize === utils.MAX_VALUE_32BITS || this.centralDirOffset === utils.MAX_VALUE_32BITS) { + this.zip64 = true; + + /* + Warning : the zip64 extension is supported, but ONLY if the 64bits integer read from + the zip file can fit into a 32bits integer. This cannot be solved : JavaScript represents + all numbers as 64-bit double precision IEEE 754 floating point numbers. + So, we have 53bits for integers and bitwise operations treat everything as 32bits. + see https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Operators/Bitwise_Operators + and http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf section 8.5 + */ + + // should look for a zip64 EOCD locator + offset = this.reader.lastIndexOfSignature(sig.ZIP64_CENTRAL_DIRECTORY_LOCATOR); + if (offset < 0) { + throw new Error("Corrupted zip: can't find the ZIP64 end of central directory locator"); + } + this.reader.setIndex(offset); + this.checkSignature(sig.ZIP64_CENTRAL_DIRECTORY_LOCATOR); + this.readBlockZip64EndOfCentralLocator(); + + // now the zip64 EOCD record + if (!this.isSignature(this.relativeOffsetEndOfZip64CentralDir, sig.ZIP64_CENTRAL_DIRECTORY_END)) { + // console.warn("ZIP64 end of central directory not where expected."); + this.relativeOffsetEndOfZip64CentralDir = this.reader.lastIndexOfSignature(sig.ZIP64_CENTRAL_DIRECTORY_END); + if (this.relativeOffsetEndOfZip64CentralDir < 0) { + throw new Error("Corrupted zip: can't find the ZIP64 end of central directory"); + } + } + this.reader.setIndex(this.relativeOffsetEndOfZip64CentralDir); + this.checkSignature(sig.ZIP64_CENTRAL_DIRECTORY_END); + this.readBlockZip64EndOfCentral(); + } + + var expectedEndOfCentralDirOffset = this.centralDirOffset + this.centralDirSize; + if (this.zip64) { + expectedEndOfCentralDirOffset += 20; // end of central dir 64 locator + expectedEndOfCentralDirOffset += 12 /* should not include the leading 12 bytes */ + this.zip64EndOfCentralSize; + } + + var extraBytes = endOfCentralDirOffset - expectedEndOfCentralDirOffset; + + if (extraBytes > 0) { + // console.warn(extraBytes, "extra bytes at beginning or within zipfile"); + if (this.isSignature(endOfCentralDirOffset, sig.CENTRAL_FILE_HEADER)) { + // The offsets seem wrong, but we have something at the specified offset. + // So… we keep it. + } else { + // the offset is wrong, update the "zero" of the reader + // this happens if data has been prepended (crx files for example) + this.reader.zero = extraBytes; + } + } else if (extraBytes < 0) { + throw new Error("Corrupted zip: missing " + Math.abs(extraBytes) + " bytes."); + } + }, + prepareReader: function(data) { + this.reader = readerFor(data); + }, + /** + * Read a zip file and create ZipEntries. + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the binary string representing a zip file. + */ + load: function(data) { + this.prepareReader(data); + this.readEndOfCentral(); + this.readCentralDir(); + this.readLocalFiles(); + } +}; +// }}} end of ZipEntries +module.exports = ZipEntries; + +},{"./reader/readerFor":22,"./signature":23,"./support":30,"./utf8":31,"./utils":32,"./zipEntry":34}],34:[function(require,module,exports){ +'use strict'; +var readerFor = require('./reader/readerFor'); +var utils = require('./utils'); +var CompressedObject = require('./compressedObject'); +var crc32fn = require('./crc32'); +var utf8 = require('./utf8'); +var compressions = require('./compressions'); +var support = require('./support'); + +var MADE_BY_DOS = 0x00; +var MADE_BY_UNIX = 0x03; + +/** + * Find a compression registered in JSZip. + * @param {string} compressionMethod the method magic to find. + * @return {Object|null} the JSZip compression object, null if none found. + */ +var findCompression = function(compressionMethod) { + for (var method in compressions) { + if (!compressions.hasOwnProperty(method)) { + continue; + } + if (compressions[method].magic === compressionMethod) { + return compressions[method]; + } + } + return null; +}; + +// class ZipEntry {{{ +/** + * An entry in the zip file. + * @constructor + * @param {Object} options Options of the current file. + * @param {Object} loadOptions Options for loading the stream. + */ +function ZipEntry(options, loadOptions) { + this.options = options; + this.loadOptions = loadOptions; +} +ZipEntry.prototype = { + /** + * say if the file is encrypted. + * @return {boolean} true if the file is encrypted, false otherwise. + */ + isEncrypted: function() { + // bit 1 is set + return (this.bitFlag & 0x0001) === 0x0001; + }, + /** + * say if the file has utf-8 filename/comment. + * @return {boolean} true if the filename/comment is in utf-8, false otherwise. + */ + useUTF8: function() { + // bit 11 is set + return (this.bitFlag & 0x0800) === 0x0800; + }, + /** + * Read the local part of a zip file and add the info in this object. + * @param {DataReader} reader the reader to use. + */ + readLocalPart: function(reader) { + var compression, localExtraFieldsLength; + + // we already know everything from the central dir ! + // If the central dir data are false, we are doomed. + // On the bright side, the local part is scary : zip64, data descriptors, both, etc. + // The less data we get here, the more reliable this should be. + // Let's skip the whole header and dash to the data ! + reader.skip(22); + // in some zip created on windows, the filename stored in the central dir contains \ instead of /. + // Strangely, the filename here is OK. + // I would love to treat these zip files as corrupted (see http://www.info-zip.org/FAQ.html#backslashes + // or APPNOTE#4.4.17.1, "All slashes MUST be forward slashes '/'") but there are a lot of bad zip generators... + // Search "unzip mismatching "local" filename continuing with "central" filename version" on + // the internet. + // + // I think I see the logic here : the central directory is used to display + // content and the local directory is used to extract the files. Mixing / and \ + // may be used to display \ to windows users and use / when extracting the files. + // Unfortunately, this lead also to some issues : http://seclists.org/fulldisclosure/2009/Sep/394 + this.fileNameLength = reader.readInt(2); + localExtraFieldsLength = reader.readInt(2); // can't be sure this will be the same as the central dir + // the fileName is stored as binary data, the handleUTF8 method will take care of the encoding. + this.fileName = reader.readData(this.fileNameLength); + reader.skip(localExtraFieldsLength); + + if (this.compressedSize === -1 || this.uncompressedSize === -1) { + throw new Error("Bug or corrupted zip : didn't get enough informations from the central directory " + "(compressedSize === -1 || uncompressedSize === -1)"); + } + + compression = findCompression(this.compressionMethod); + if (compression === null) { // no compression found + throw new Error("Corrupted zip : compression " + utils.pretty(this.compressionMethod) + " unknown (inner file : " + utils.transformTo("string", this.fileName) + ")"); + } + this.decompressed = new CompressedObject(this.compressedSize, this.uncompressedSize, this.crc32, compression, reader.readData(this.compressedSize)); + }, + + /** + * Read the central part of a zip file and add the info in this object. + * @param {DataReader} reader the reader to use. + */ + readCentralPart: function(reader) { + this.versionMadeBy = reader.readInt(2); + reader.skip(2); + // this.versionNeeded = reader.readInt(2); + this.bitFlag = reader.readInt(2); + this.compressionMethod = reader.readString(2); + this.date = reader.readDate(); + this.crc32 = reader.readInt(4); + this.compressedSize = reader.readInt(4); + this.uncompressedSize = reader.readInt(4); + var fileNameLength = reader.readInt(2); + this.extraFieldsLength = reader.readInt(2); + this.fileCommentLength = reader.readInt(2); + this.diskNumberStart = reader.readInt(2); + this.internalFileAttributes = reader.readInt(2); + this.externalFileAttributes = reader.readInt(4); + this.localHeaderOffset = reader.readInt(4); + + if (this.isEncrypted()) { + throw new Error("Encrypted zip are not supported"); + } + + // will be read in the local part, see the comments there + reader.skip(fileNameLength); + this.readExtraFields(reader); + this.parseZIP64ExtraField(reader); + this.fileComment = reader.readData(this.fileCommentLength); + }, + + /** + * Parse the external file attributes and get the unix/dos permissions. + */ + processAttributes: function () { + this.unixPermissions = null; + this.dosPermissions = null; + var madeBy = this.versionMadeBy >> 8; + + // Check if we have the DOS directory flag set. + // We look for it in the DOS and UNIX permissions + // but some unknown platform could set it as a compatibility flag. + this.dir = this.externalFileAttributes & 0x0010 ? true : false; + + if(madeBy === MADE_BY_DOS) { + // first 6 bits (0 to 5) + this.dosPermissions = this.externalFileAttributes & 0x3F; + } + + if(madeBy === MADE_BY_UNIX) { + this.unixPermissions = (this.externalFileAttributes >> 16) & 0xFFFF; + // the octal permissions are in (this.unixPermissions & 0x01FF).toString(8); + } + + // fail safe : if the name ends with a / it probably means a folder + if (!this.dir && this.fileNameStr.slice(-1) === '/') { + this.dir = true; + } + }, + + /** + * Parse the ZIP64 extra field and merge the info in the current ZipEntry. + * @param {DataReader} reader the reader to use. + */ + parseZIP64ExtraField: function(reader) { + + if (!this.extraFields[0x0001]) { + return; + } + + // should be something, preparing the extra reader + var extraReader = readerFor(this.extraFields[0x0001].value); + + // I really hope that these 64bits integer can fit in 32 bits integer, because js + // won't let us have more. + if (this.uncompressedSize === utils.MAX_VALUE_32BITS) { + this.uncompressedSize = extraReader.readInt(8); + } + if (this.compressedSize === utils.MAX_VALUE_32BITS) { + this.compressedSize = extraReader.readInt(8); + } + if (this.localHeaderOffset === utils.MAX_VALUE_32BITS) { + this.localHeaderOffset = extraReader.readInt(8); + } + if (this.diskNumberStart === utils.MAX_VALUE_32BITS) { + this.diskNumberStart = extraReader.readInt(4); + } + }, + /** + * Read the central part of a zip file and add the info in this object. + * @param {DataReader} reader the reader to use. + */ + readExtraFields: function(reader) { + var end = reader.index + this.extraFieldsLength, + extraFieldId, + extraFieldLength, + extraFieldValue; + + if (!this.extraFields) { + this.extraFields = {}; + } + + while (reader.index < end) { + extraFieldId = reader.readInt(2); + extraFieldLength = reader.readInt(2); + extraFieldValue = reader.readData(extraFieldLength); + + this.extraFields[extraFieldId] = { + id: extraFieldId, + length: extraFieldLength, + value: extraFieldValue + }; + } + }, + /** + * Apply an UTF8 transformation if needed. + */ + handleUTF8: function() { + var decodeParamType = support.uint8array ? "uint8array" : "array"; + if (this.useUTF8()) { + this.fileNameStr = utf8.utf8decode(this.fileName); + this.fileCommentStr = utf8.utf8decode(this.fileComment); + } else { + var upath = this.findExtraFieldUnicodePath(); + if (upath !== null) { + this.fileNameStr = upath; + } else { + // ASCII text or unsupported code page + var fileNameByteArray = utils.transformTo(decodeParamType, this.fileName); + this.fileNameStr = this.loadOptions.decodeFileName(fileNameByteArray); + } + + var ucomment = this.findExtraFieldUnicodeComment(); + if (ucomment !== null) { + this.fileCommentStr = ucomment; + } else { + // ASCII text or unsupported code page + var commentByteArray = utils.transformTo(decodeParamType, this.fileComment); + this.fileCommentStr = this.loadOptions.decodeFileName(commentByteArray); + } + } + }, + + /** + * Find the unicode path declared in the extra field, if any. + * @return {String} the unicode path, null otherwise. + */ + findExtraFieldUnicodePath: function() { + var upathField = this.extraFields[0x7075]; + if (upathField) { + var extraReader = readerFor(upathField.value); + + // wrong version + if (extraReader.readInt(1) !== 1) { + return null; + } + + // the crc of the filename changed, this field is out of date. + if (crc32fn(this.fileName) !== extraReader.readInt(4)) { + return null; + } + + return utf8.utf8decode(extraReader.readData(upathField.length - 5)); + } + return null; + }, + + /** + * Find the unicode comment declared in the extra field, if any. + * @return {String} the unicode comment, null otherwise. + */ + findExtraFieldUnicodeComment: function() { + var ucommentField = this.extraFields[0x6375]; + if (ucommentField) { + var extraReader = readerFor(ucommentField.value); + + // wrong version + if (extraReader.readInt(1) !== 1) { + return null; + } + + // the crc of the comment changed, this field is out of date. + if (crc32fn(this.fileComment) !== extraReader.readInt(4)) { + return null; + } + + return utf8.utf8decode(extraReader.readData(ucommentField.length - 5)); + } + return null; + } +}; +module.exports = ZipEntry; + +},{"./compressedObject":2,"./compressions":3,"./crc32":4,"./reader/readerFor":22,"./support":30,"./utf8":31,"./utils":32}],35:[function(require,module,exports){ +'use strict'; + +var StreamHelper = require('./stream/StreamHelper'); +var DataWorker = require('./stream/DataWorker'); +var utf8 = require('./utf8'); +var CompressedObject = require('./compressedObject'); +var GenericWorker = require('./stream/GenericWorker'); + +/** + * A simple object representing a file in the zip file. + * @constructor + * @param {string} name the name of the file + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data + * @param {Object} options the options of the file + */ +var ZipObject = function(name, data, options) { + this.name = name; + this.dir = options.dir; + this.date = options.date; + this.comment = options.comment; + this.unixPermissions = options.unixPermissions; + this.dosPermissions = options.dosPermissions; + + this._data = data; + this._dataBinary = options.binary; + // keep only the compression + this.options = { + compression : options.compression, + compressionOptions : options.compressionOptions + }; +}; + +ZipObject.prototype = { + /** + * Create an internal stream for the content of this object. + * @param {String} type the type of each chunk. + * @return StreamHelper the stream. + */ + internalStream: function (type) { + var result = null, outputType = "string"; + try { + if (!type) { + throw new Error("No output type specified."); + } + outputType = type.toLowerCase(); + var askUnicodeString = outputType === "string" || outputType === "text"; + if (outputType === "binarystring" || outputType === "text") { + outputType = "string"; + } + result = this._decompressWorker(); + + var isUnicodeString = !this._dataBinary; + + if (isUnicodeString && !askUnicodeString) { + result = result.pipe(new utf8.Utf8EncodeWorker()); + } + if (!isUnicodeString && askUnicodeString) { + result = result.pipe(new utf8.Utf8DecodeWorker()); + } + } catch (e) { + result = new GenericWorker("error"); + result.error(e); + } + + return new StreamHelper(result, outputType, ""); + }, + + /** + * Prepare the content in the asked type. + * @param {String} type the type of the result. + * @param {Function} onUpdate a function to call on each internal update. + * @return Promise the promise of the result. + */ + async: function (type, onUpdate) { + return this.internalStream(type).accumulate(onUpdate); + }, + + /** + * Prepare the content as a nodejs stream. + * @param {String} type the type of each chunk. + * @param {Function} onUpdate a function to call on each internal update. + * @return Stream the stream. + */ + nodeStream: function (type, onUpdate) { + return this.internalStream(type || "nodebuffer").toNodejsStream(onUpdate); + }, + + /** + * Return a worker for the compressed content. + * @private + * @param {Object} compression the compression object to use. + * @param {Object} compressionOptions the options to use when compressing. + * @return Worker the worker. + */ + _compressWorker: function (compression, compressionOptions) { + if ( + this._data instanceof CompressedObject && + this._data.compression.magic === compression.magic + ) { + return this._data.getCompressedWorker(); + } else { + var result = this._decompressWorker(); + if(!this._dataBinary) { + result = result.pipe(new utf8.Utf8EncodeWorker()); + } + return CompressedObject.createWorkerFrom(result, compression, compressionOptions); + } + }, + /** + * Return a worker for the decompressed content. + * @private + * @return Worker the worker. + */ + _decompressWorker : function () { + if (this._data instanceof CompressedObject) { + return this._data.getContentWorker(); + } else if (this._data instanceof GenericWorker) { + return this._data; + } else { + return new DataWorker(this._data); + } + } +}; + +var removedMethods = ["asText", "asBinary", "asNodeBuffer", "asUint8Array", "asArrayBuffer"]; +var removedFn = function () { + throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide."); +}; + +for(var i = 0; i < removedMethods.length; i++) { + ZipObject.prototype[removedMethods[i]] = removedFn; +} +module.exports = ZipObject; + +},{"./compressedObject":2,"./stream/DataWorker":27,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31}],36:[function(require,module,exports){ +require('../modules/web.immediate'); +module.exports = require('../modules/_core').setImmediate; +},{"../modules/_core":40,"../modules/web.immediate":56}],37:[function(require,module,exports){ +module.exports = function(it){ + if(typeof it != 'function')throw TypeError(it + ' is not a function!'); + return it; +}; +},{}],38:[function(require,module,exports){ +var isObject = require('./_is-object'); +module.exports = function(it){ + if(!isObject(it))throw TypeError(it + ' is not an object!'); + return it; +}; +},{"./_is-object":51}],39:[function(require,module,exports){ +var toString = {}.toString; + +module.exports = function(it){ + return toString.call(it).slice(8, -1); +}; +},{}],40:[function(require,module,exports){ +var core = module.exports = {version: '2.3.0'}; +if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef +},{}],41:[function(require,module,exports){ +// optional / simple context binding +var aFunction = require('./_a-function'); +module.exports = function(fn, that, length){ + aFunction(fn); + if(that === undefined)return fn; + switch(length){ + case 1: return function(a){ + return fn.call(that, a); + }; + case 2: return function(a, b){ + return fn.call(that, a, b); + }; + case 3: return function(a, b, c){ + return fn.call(that, a, b, c); + }; + } + return function(/* ...args */){ + return fn.apply(that, arguments); + }; +}; +},{"./_a-function":37}],42:[function(require,module,exports){ +// Thank's IE8 for his funny defineProperty +module.exports = !require('./_fails')(function(){ + return Object.defineProperty({}, 'a', {get: function(){ return 7; }}).a != 7; +}); +},{"./_fails":45}],43:[function(require,module,exports){ +var isObject = require('./_is-object') + , document = require('./_global').document + // in old IE typeof document.createElement is 'object' + , is = isObject(document) && isObject(document.createElement); +module.exports = function(it){ + return is ? document.createElement(it) : {}; +}; +},{"./_global":46,"./_is-object":51}],44:[function(require,module,exports){ +var global = require('./_global') + , core = require('./_core') + , ctx = require('./_ctx') + , hide = require('./_hide') + , PROTOTYPE = 'prototype'; + +var $export = function(type, name, source){ + var IS_FORCED = type & $export.F + , IS_GLOBAL = type & $export.G + , IS_STATIC = type & $export.S + , IS_PROTO = type & $export.P + , IS_BIND = type & $export.B + , IS_WRAP = type & $export.W + , exports = IS_GLOBAL ? core : core[name] || (core[name] = {}) + , expProto = exports[PROTOTYPE] + , target = IS_GLOBAL ? global : IS_STATIC ? global[name] : (global[name] || {})[PROTOTYPE] + , key, own, out; + if(IS_GLOBAL)source = name; + for(key in source){ + // contains in native + own = !IS_FORCED && target && target[key] !== undefined; + if(own && key in exports)continue; + // export native or passed + out = own ? target[key] : source[key]; + // prevent global pollution for namespaces + exports[key] = IS_GLOBAL && typeof target[key] != 'function' ? source[key] + // bind timers to global for call from export context + : IS_BIND && own ? ctx(out, global) + // wrap global constructors for prevent change them in library + : IS_WRAP && target[key] == out ? (function(C){ + var F = function(a, b, c){ + if(this instanceof C){ + switch(arguments.length){ + case 0: return new C; + case 1: return new C(a); + case 2: return new C(a, b); + } return new C(a, b, c); + } return C.apply(this, arguments); + }; + F[PROTOTYPE] = C[PROTOTYPE]; + return F; + // make static versions for prototype methods + })(out) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out; + // export proto methods to core.%CONSTRUCTOR%.methods.%NAME% + if(IS_PROTO){ + (exports.virtual || (exports.virtual = {}))[key] = out; + // export proto methods to core.%CONSTRUCTOR%.prototype.%NAME% + if(type & $export.R && expProto && !expProto[key])hide(expProto, key, out); + } + } +}; +// type bitmap +$export.F = 1; // forced +$export.G = 2; // global +$export.S = 4; // static +$export.P = 8; // proto +$export.B = 16; // bind +$export.W = 32; // wrap +$export.U = 64; // safe +$export.R = 128; // real proto method for `library` +module.exports = $export; +},{"./_core":40,"./_ctx":41,"./_global":46,"./_hide":47}],45:[function(require,module,exports){ +module.exports = function(exec){ + try { + return !!exec(); + } catch(e){ + return true; + } +}; +},{}],46:[function(require,module,exports){ +// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 +var global = module.exports = typeof window != 'undefined' && window.Math == Math + ? window : typeof self != 'undefined' && self.Math == Math ? self : Function('return this')(); +if(typeof __g == 'number')__g = global; // eslint-disable-line no-undef +},{}],47:[function(require,module,exports){ +var dP = require('./_object-dp') + , createDesc = require('./_property-desc'); +module.exports = require('./_descriptors') ? function(object, key, value){ + return dP.f(object, key, createDesc(1, value)); +} : function(object, key, value){ + object[key] = value; + return object; +}; +},{"./_descriptors":42,"./_object-dp":52,"./_property-desc":53}],48:[function(require,module,exports){ +module.exports = require('./_global').document && document.documentElement; +},{"./_global":46}],49:[function(require,module,exports){ +module.exports = !require('./_descriptors') && !require('./_fails')(function(){ + return Object.defineProperty(require('./_dom-create')('div'), 'a', {get: function(){ return 7; }}).a != 7; +}); +},{"./_descriptors":42,"./_dom-create":43,"./_fails":45}],50:[function(require,module,exports){ +// fast apply, http://jsperf.lnkit.com/fast-apply/5 +module.exports = function(fn, args, that){ + var un = that === undefined; + switch(args.length){ + case 0: return un ? fn() + : fn.call(that); + case 1: return un ? fn(args[0]) + : fn.call(that, args[0]); + case 2: return un ? fn(args[0], args[1]) + : fn.call(that, args[0], args[1]); + case 3: return un ? fn(args[0], args[1], args[2]) + : fn.call(that, args[0], args[1], args[2]); + case 4: return un ? fn(args[0], args[1], args[2], args[3]) + : fn.call(that, args[0], args[1], args[2], args[3]); + } return fn.apply(that, args); +}; +},{}],51:[function(require,module,exports){ +module.exports = function(it){ + return typeof it === 'object' ? it !== null : typeof it === 'function'; +}; +},{}],52:[function(require,module,exports){ +var anObject = require('./_an-object') + , IE8_DOM_DEFINE = require('./_ie8-dom-define') + , toPrimitive = require('./_to-primitive') + , dP = Object.defineProperty; + +exports.f = require('./_descriptors') ? Object.defineProperty : function defineProperty(O, P, Attributes){ + anObject(O); + P = toPrimitive(P, true); + anObject(Attributes); + if(IE8_DOM_DEFINE)try { + return dP(O, P, Attributes); + } catch(e){ /* empty */ } + if('get' in Attributes || 'set' in Attributes)throw TypeError('Accessors not supported!'); + if('value' in Attributes)O[P] = Attributes.value; + return O; +}; +},{"./_an-object":38,"./_descriptors":42,"./_ie8-dom-define":49,"./_to-primitive":55}],53:[function(require,module,exports){ +module.exports = function(bitmap, value){ + return { + enumerable : !(bitmap & 1), + configurable: !(bitmap & 2), + writable : !(bitmap & 4), + value : value + }; +}; +},{}],54:[function(require,module,exports){ +var ctx = require('./_ctx') + , invoke = require('./_invoke') + , html = require('./_html') + , cel = require('./_dom-create') + , global = require('./_global') + , process = global.process + , setTask = global.setImmediate + , clearTask = global.clearImmediate + , MessageChannel = global.MessageChannel + , counter = 0 + , queue = {} + , ONREADYSTATECHANGE = 'onreadystatechange' + , defer, channel, port; +var run = function(){ + var id = +this; + if(queue.hasOwnProperty(id)){ + var fn = queue[id]; + delete queue[id]; + fn(); + } +}; +var listener = function(event){ + run.call(event.data); +}; +// Node.js 0.9+ & IE10+ has setImmediate, otherwise: +if(!setTask || !clearTask){ + setTask = function setImmediate(fn){ + var args = [], i = 1; + while(arguments.length > i)args.push(arguments[i++]); + queue[++counter] = function(){ + invoke(typeof fn == 'function' ? fn : Function(fn), args); + }; + defer(counter); + return counter; + }; + clearTask = function clearImmediate(id){ + delete queue[id]; + }; + // Node.js 0.8- + if(require('./_cof')(process) == 'process'){ + defer = function(id){ + process.nextTick(ctx(run, id, 1)); + }; + // Browsers with MessageChannel, includes WebWorkers + } else if(MessageChannel){ + channel = new MessageChannel; + port = channel.port2; + channel.port1.onmessage = listener; + defer = ctx(port.postMessage, port, 1); + // Browsers with postMessage, skip WebWorkers + // IE8 has postMessage, but it's sync & typeof its postMessage is 'object' + } else if(global.addEventListener && typeof postMessage == 'function' && !global.importScripts){ + defer = function(id){ + global.postMessage(id + '', '*'); + }; + global.addEventListener('message', listener, false); + // IE8- + } else if(ONREADYSTATECHANGE in cel('script')){ + defer = function(id){ + html.appendChild(cel('script'))[ONREADYSTATECHANGE] = function(){ + html.removeChild(this); + run.call(id); + }; + }; + // Rest old browsers + } else { + defer = function(id){ + setTimeout(ctx(run, id, 1), 0); + }; + } +} +module.exports = { + set: setTask, + clear: clearTask +}; +},{"./_cof":39,"./_ctx":41,"./_dom-create":43,"./_global":46,"./_html":48,"./_invoke":50}],55:[function(require,module,exports){ +// 7.1.1 ToPrimitive(input [, PreferredType]) +var isObject = require('./_is-object'); +// instead of the ES6 spec version, we didn't implement @@toPrimitive case +// and the second argument - flag - preferred type is a string +module.exports = function(it, S){ + if(!isObject(it))return it; + var fn, val; + if(S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it)))return val; + if(typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it)))return val; + if(!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it)))return val; + throw TypeError("Can't convert object to primitive value"); +}; +},{"./_is-object":51}],56:[function(require,module,exports){ +var $export = require('./_export') + , $task = require('./_task'); +$export($export.G + $export.B, { + setImmediate: $task.set, + clearImmediate: $task.clear +}); +},{"./_export":44,"./_task":54}],57:[function(require,module,exports){ +(function (global){ +'use strict'; +var Mutation = global.MutationObserver || global.WebKitMutationObserver; + +var scheduleDrain; + +{ + if (Mutation) { + var called = 0; + var observer = new Mutation(nextTick); + var element = global.document.createTextNode(''); + observer.observe(element, { + characterData: true + }); + scheduleDrain = function () { + element.data = (called = ++called % 2); + }; + } else if (!global.setImmediate && typeof global.MessageChannel !== 'undefined') { + var channel = new global.MessageChannel(); + channel.port1.onmessage = nextTick; + scheduleDrain = function () { + channel.port2.postMessage(0); + }; + } else if ('document' in global && 'onreadystatechange' in global.document.createElement('script')) { + scheduleDrain = function () { + + // Create a + + + +
    + +

    index.html

    +
    + + diff --git a/docs/site/apidocs/overview-tree.html b/docs/site/apidocs/overview-tree.html new file mode 100644 index 00000000..360e4d7e --- /dev/null +++ b/docs/site/apidocs/overview-tree.html @@ -0,0 +1,172 @@ + + + + +Class Hierarchy (Units of Measurement API 2.2.1-SNAPSHOT API) + + + + + + + + + + + + + + + +
    + + +
    + + diff --git a/docs/site/apidocs/package-search-index.js b/docs/site/apidocs/package-search-index.js new file mode 100644 index 00000000..450d183f --- /dev/null +++ b/docs/site/apidocs/package-search-index.js @@ -0,0 +1 @@ +packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"javax.measure"},{"l":"javax.measure.format"},{"l":"javax.measure.quantity"},{"l":"javax.measure.spi"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/site/apidocs/package-search-index.zip b/docs/site/apidocs/package-search-index.zip new file mode 100644 index 00000000..22622dd2 Binary files /dev/null and b/docs/site/apidocs/package-search-index.zip differ diff --git a/docs/site/apidocs/resources/glass.png b/docs/site/apidocs/resources/glass.png new file mode 100644 index 00000000..a7f591f4 Binary files /dev/null and b/docs/site/apidocs/resources/glass.png differ diff --git a/docs/site/apidocs/resources/x.png b/docs/site/apidocs/resources/x.png new file mode 100644 index 00000000..30548a75 Binary files /dev/null and b/docs/site/apidocs/resources/x.png differ diff --git a/docs/site/apidocs/script-dir/external/jquery/jquery.js b/docs/site/apidocs/script-dir/external/jquery/jquery.js new file mode 100644 index 00000000..5b16efa1 --- /dev/null +++ b/docs/site/apidocs/script-dir/external/jquery/jquery.js @@ -0,0 +1,10598 @@ +/*! + * jQuery JavaScript Library v3.4.1 + * https://jquery.com/ + * + * Includes Sizzle.js + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://jquery.org/license + * + * Date: 2019-05-01T21:04Z + */ +( function( global, factory ) { + + "use strict"; + + if ( typeof module === "object" && typeof module.exports === "object" ) { + + // For CommonJS and CommonJS-like environments where a proper `window` + // is present, execute the factory and get jQuery. + // For environments that do not have a `window` with a `document` + // (such as Node.js), expose a factory as module.exports. + // This accentuates the need for the creation of a real `window`. + // e.g. var jQuery = require("jquery")(window); + // See ticket #14549 for more info. + module.exports = global.document ? + factory( global, true ) : + function( w ) { + if ( !w.document ) { + throw new Error( "jQuery requires a window with a document" ); + } + return factory( w ); + }; + } else { + factory( global ); + } + +// Pass this if window is not defined yet +} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { + +// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 +// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode +// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common +// enough that all such attempts are guarded in a try block. +"use strict"; + +var arr = []; + +var document = window.document; + +var getProto = Object.getPrototypeOf; + +var slice = arr.slice; + +var concat = arr.concat; + +var push = arr.push; + +var indexOf = arr.indexOf; + +var class2type = {}; + +var toString = class2type.toString; + +var hasOwn = class2type.hasOwnProperty; + +var fnToString = hasOwn.toString; + +var ObjectFunctionString = fnToString.call( Object ); + +var support = {}; + +var isFunction = function isFunction( obj ) { + + // Support: Chrome <=57, Firefox <=52 + // In some browsers, typeof returns "function" for HTML elements + // (i.e., `typeof document.createElement( "object" ) === "function"`). + // We don't want to classify *any* DOM node as a function. + return typeof obj === "function" && typeof obj.nodeType !== "number"; + }; + + +var isWindow = function isWindow( obj ) { + return obj != null && obj === obj.window; + }; + + + + + var preservedScriptAttributes = { + type: true, + src: true, + nonce: true, + noModule: true + }; + + function DOMEval( code, node, doc ) { + doc = doc || document; + + var i, val, + script = doc.createElement( "script" ); + + script.text = code; + if ( node ) { + for ( i in preservedScriptAttributes ) { + + // Support: Firefox 64+, Edge 18+ + // Some browsers don't support the "nonce" property on scripts. + // On the other hand, just using `getAttribute` is not enough as + // the `nonce` attribute is reset to an empty string whenever it + // becomes browsing-context connected. + // See https://github.com/whatwg/html/issues/2369 + // See https://html.spec.whatwg.org/#nonce-attributes + // The `node.getAttribute` check was added for the sake of + // `jQuery.globalEval` so that it can fake a nonce-containing node + // via an object. + val = node[ i ] || node.getAttribute && node.getAttribute( i ); + if ( val ) { + script.setAttribute( i, val ); + } + } + } + doc.head.appendChild( script ).parentNode.removeChild( script ); + } + + +function toType( obj ) { + if ( obj == null ) { + return obj + ""; + } + + // Support: Android <=2.3 only (functionish RegExp) + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call( obj ) ] || "object" : + typeof obj; +} +/* global Symbol */ +// Defining this global in .eslintrc.json would create a danger of using the global +// unguarded in another place, it seems safer to define global only for this module + + + +var + version = "3.4.1", + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }, + + // Support: Android <=4.0 only + // Make sure we trim BOM and NBSP + rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g; + +jQuery.fn = jQuery.prototype = { + + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + + // Return all the elements in a clean array + if ( num == null ) { + return slice.call( this ); + } + + // Return just the one element from the set + return num < 0 ? this[ num + this.length ] : this[ num ]; + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + each: function( callback ) { + return jQuery.each( this, callback ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map( this, function( elem, i ) { + return callback.call( elem, i, elem ); + } ) ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: arr.sort, + splice: arr.splice +}; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[ 0 ] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // Skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !isFunction( target ) ) { + target = {}; + } + + // Extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + + // Only deal with non-null/undefined values + if ( ( options = arguments[ i ] ) != null ) { + + // Extend the base object + for ( name in options ) { + copy = options[ name ]; + + // Prevent Object.prototype pollution + // Prevent never-ending loop + if ( name === "__proto__" || target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject( copy ) || + ( copyIsArray = Array.isArray( copy ) ) ) ) { + src = target[ name ]; + + // Ensure proper type for the source value + if ( copyIsArray && !Array.isArray( src ) ) { + clone = []; + } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { + clone = {}; + } else { + clone = src; + } + copyIsArray = false; + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend( { + + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + isPlainObject: function( obj ) { + var proto, Ctor; + + // Detect obvious negatives + // Use toString instead of jQuery.type to catch host objects + if ( !obj || toString.call( obj ) !== "[object Object]" ) { + return false; + } + + proto = getProto( obj ); + + // Objects with no prototype (e.g., `Object.create( null )`) are plain + if ( !proto ) { + return true; + } + + // Objects with prototype are plain iff they were constructed by a global Object function + Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; + return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; + }, + + isEmptyObject: function( obj ) { + var name; + + for ( name in obj ) { + return false; + } + return true; + }, + + // Evaluates a script in a global context + globalEval: function( code, options ) { + DOMEval( code, { nonce: options && options.nonce } ); + }, + + each: function( obj, callback ) { + var length, i = 0; + + if ( isArrayLike( obj ) ) { + length = obj.length; + for ( ; i < length; i++ ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } else { + for ( i in obj ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } + + return obj; + }, + + // Support: Android <=4.0 only + trim: function( text ) { + return text == null ? + "" : + ( text + "" ).replace( rtrim, "" ); + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArrayLike( Object( arr ) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + return arr == null ? -1 : indexOf.call( arr, elem, i ); + }, + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + for ( ; j < len; j++ ) { + first[ i++ ] = second[ j ]; + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var length, value, + i = 0, + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArrayLike( elems ) ) { + length = elems.length; + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +} ); + +if ( typeof Symbol === "function" ) { + jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; +} + +// Populate the class2type map +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), +function( i, name ) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +} ); + +function isArrayLike( obj ) { + + // Support: real iOS 8.2 only (not reproducible in simulator) + // `in` check used to prevent JIT error (gh-2145) + // hasOwn isn't used here due to false negatives + // regarding Nodelist length in IE + var length = !!obj && "length" in obj && obj.length, + type = toType( obj ); + + if ( isFunction( obj ) || isWindow( obj ) ) { + return false; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} +var Sizzle = +/*! + * Sizzle CSS Selector Engine v2.3.4 + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://js.foundation/ + * + * Date: 2019-04-08 + */ +(function( window ) { + +var i, + support, + Expr, + getText, + isXML, + tokenize, + compile, + select, + outermostContext, + sortInput, + hasDuplicate, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + 1 * new Date(), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + nonnativeSelectorCache = createCache(), + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + } + return 0; + }, + + // Instance methods + hasOwn = ({}).hasOwnProperty, + arr = [], + pop = arr.pop, + push_native = arr.push, + push = arr.push, + slice = arr.slice, + // Use a stripped-down indexOf as it's faster than native + // https://jsperf.com/thor-indexof-vs-for/5 + indexOf = function( list, elem ) { + var i = 0, + len = list.length; + for ( ; i < len; i++ ) { + if ( list[i] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + + // http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier + identifier = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+", + + // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace + + "*\\]", + + pseudos = ":(" + identifier + ")(?:\\((" + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + // 3. anything else (capture 2) + ".*" + + ")\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rwhitespace = new RegExp( whitespace + "+", "g" ), + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), + rdescend = new RegExp( whitespace + "|>" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + identifier + ")" ), + "CLASS": new RegExp( "^\\.(" + identifier + ")" ), + "TAG": new RegExp( "^(" + identifier + "|[*])" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rhtml = /HTML$/i, + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rsibling = /[+~]/, + + // CSS escapes + // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), + funescape = function( _, escaped, escapedWhitespace ) { + var high = "0x" + escaped - 0x10000; + // NaN means non-codepoint + // Support: Firefox<24 + // Workaround erroneous numeric interpretation of +"0x" + return high !== high || escapedWhitespace ? + escaped : + high < 0 ? + // BMP codepoint + String.fromCharCode( high + 0x10000 ) : + // Supplemental Plane codepoint (surrogate pair) + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }, + + // CSS string/identifier serialization + // https://drafts.csswg.org/cssom/#common-serializing-idioms + rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, + fcssescape = function( ch, asCodePoint ) { + if ( asCodePoint ) { + + // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER + if ( ch === "\0" ) { + return "\uFFFD"; + } + + // Control characters and (dependent upon position) numbers get escaped as code points + return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; + } + + // Other potentially-special ASCII characters get backslash-escaped + return "\\" + ch; + }, + + // Used for iframes + // See setDocument() + // Removing the function wrapper causes a "Permission Denied" + // error in IE + unloadHandler = function() { + setDocument(); + }, + + inDisabledFieldset = addCombinator( + function( elem ) { + return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; + }, + { dir: "parentNode", next: "legend" } + ); + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + (arr = slice.call( preferredDoc.childNodes )), + preferredDoc.childNodes + ); + // Support: Android<4.0 + // Detect silently failing push.apply + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + push_native.apply( target, slice.call(els) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + // Can't trust NodeList.length + while ( (target[j++] = els[i++]) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var m, i, elem, nid, match, groups, newSelector, + newContext = context && context.ownerDocument, + + // nodeType defaults to 9, since context defaults to document + nodeType = context ? context.nodeType : 9; + + results = results || []; + + // Return early from calls with invalid selector or context + if ( typeof selector !== "string" || !selector || + nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { + + return results; + } + + // Try to shortcut find operations (as opposed to filters) in HTML documents + if ( !seed ) { + + if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { + setDocument( context ); + } + context = context || document; + + if ( documentIsHTML ) { + + // If the selector is sufficiently simple, try using a "get*By*" DOM method + // (excepting DocumentFragment context, where the methods don't exist) + if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) { + + // ID selector + if ( (m = match[1]) ) { + + // Document context + if ( nodeType === 9 ) { + if ( (elem = context.getElementById( m )) ) { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + + // Element context + } else { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( newContext && (elem = newContext.getElementById( m )) && + contains( context, elem ) && + elem.id === m ) { + + results.push( elem ); + return results; + } + } + + // Type selector + } else if ( match[2] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Class selector + } else if ( (m = match[3]) && support.getElementsByClassName && + context.getElementsByClassName ) { + + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // Take advantage of querySelectorAll + if ( support.qsa && + !nonnativeSelectorCache[ selector + " " ] && + (!rbuggyQSA || !rbuggyQSA.test( selector )) && + + // Support: IE 8 only + // Exclude object elements + (nodeType !== 1 || context.nodeName.toLowerCase() !== "object") ) { + + newSelector = selector; + newContext = context; + + // qSA considers elements outside a scoping root when evaluating child or + // descendant combinators, which is not what we want. + // In such cases, we work around the behavior by prefixing every selector in the + // list with an ID selector referencing the scope context. + // Thanks to Andrew Dupont for this technique. + if ( nodeType === 1 && rdescend.test( selector ) ) { + + // Capture the context ID, setting it first if necessary + if ( (nid = context.getAttribute( "id" )) ) { + nid = nid.replace( rcssescape, fcssescape ); + } else { + context.setAttribute( "id", (nid = expando) ); + } + + // Prefix every selector in the list + groups = tokenize( selector ); + i = groups.length; + while ( i-- ) { + groups[i] = "#" + nid + " " + toSelector( groups[i] ); + } + newSelector = groups.join( "," ); + + // Expand context for sibling selectors + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || + context; + } + + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch ( qsaError ) { + nonnativeSelectorCache( selector, true ); + } finally { + if ( nid === expando ) { + context.removeAttribute( "id" ); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {function(string, object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key + " " ) > Expr.cacheLength ) { + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return (cache[ key + " " ] = value); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created element and returns a boolean result + */ +function assert( fn ) { + var el = document.createElement("fieldset"); + + try { + return !!fn( el ); + } catch (e) { + return false; + } finally { + // Remove from its parent by default + if ( el.parentNode ) { + el.parentNode.removeChild( el ); + } + // release memory in IE + el = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split("|"), + i = arr.length; + + while ( i-- ) { + Expr.attrHandle[ arr[i] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + a.sourceIndex - b.sourceIndex; + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( (cur = cur.nextSibling) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for :enabled/:disabled + * @param {Boolean} disabled true for :disabled; false for :enabled + */ +function createDisabledPseudo( disabled ) { + + // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable + return function( elem ) { + + // Only certain elements can match :enabled or :disabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled + if ( "form" in elem ) { + + // Check for inherited disabledness on relevant non-disabled elements: + // * listed form-associated elements in a disabled fieldset + // https://html.spec.whatwg.org/multipage/forms.html#category-listed + // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled + // * option elements in a disabled optgroup + // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled + // All such elements have a "form" property. + if ( elem.parentNode && elem.disabled === false ) { + + // Option elements defer to a parent optgroup if present + if ( "label" in elem ) { + if ( "label" in elem.parentNode ) { + return elem.parentNode.disabled === disabled; + } else { + return elem.disabled === disabled; + } + } + + // Support: IE 6 - 11 + // Use the isDisabled shortcut property to check for disabled fieldset ancestors + return elem.isDisabled === disabled || + + // Where there is no isDisabled, check manually + /* jshint -W018 */ + elem.isDisabled !== !disabled && + inDisabledFieldset( elem ) === disabled; + } + + return elem.disabled === disabled; + + // Try to winnow out elements that can't be disabled before trusting the disabled property. + // Some victims get caught in our net (label, legend, menu, track), but it shouldn't + // even exist on them, let alone have a boolean value. + } else if ( "label" in elem ) { + return elem.disabled === disabled; + } + + // Remaining elements are neither :enabled nor :disabled + return false; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction(function( argument ) { + argument = +argument; + return markFunction(function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ (j = matchIndexes[i]) ] ) { + seed[j] = !(matches[j] = seed[j]); + } + } + }); + }); +} + +/** + * Checks a node for validity as a Sizzle context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== "undefined" && context; +} + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Detects XML nodes + * @param {Element|Object} elem An element or a document + * @returns {Boolean} True iff elem is a non-HTML XML node + */ +isXML = Sizzle.isXML = function( elem ) { + var namespace = elem.namespaceURI, + docElem = (elem.ownerDocument || elem).documentElement; + + // Support: IE <=8 + // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes + // https://bugs.jquery.com/ticket/4833 + return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var hasCompare, subWindow, + doc = node ? node.ownerDocument || node : preferredDoc; + + // Return early if doc is invalid or already selected + if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Update global variables + document = doc; + docElem = document.documentElement; + documentIsHTML = !isXML( document ); + + // Support: IE 9-11, Edge + // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) + if ( preferredDoc !== document && + (subWindow = document.defaultView) && subWindow.top !== subWindow ) { + + // Support: IE 11, Edge + if ( subWindow.addEventListener ) { + subWindow.addEventListener( "unload", unloadHandler, false ); + + // Support: IE 9 - 10 only + } else if ( subWindow.attachEvent ) { + subWindow.attachEvent( "onunload", unloadHandler ); + } + } + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties + // (excepting IE8 booleans) + support.attributes = assert(function( el ) { + el.className = "i"; + return !el.getAttribute("className"); + }); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert(function( el ) { + el.appendChild( document.createComment("") ); + return !el.getElementsByTagName("*").length; + }); + + // Support: IE<9 + support.getElementsByClassName = rnative.test( document.getElementsByClassName ); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programmatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert(function( el ) { + docElem.appendChild( el ).id = expando; + return !document.getElementsByName || !document.getElementsByName( expando ).length; + }); + + // ID filter and find + if ( support.getById ) { + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute("id") === attrId; + }; + }; + Expr.find["ID"] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var elem = context.getElementById( id ); + return elem ? [ elem ] : []; + } + }; + } else { + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== "undefined" && + elem.getAttributeNode("id"); + return node && node.value === attrId; + }; + }; + + // Support: IE 6 - 7 only + // getElementById is not reliable as a find shortcut + Expr.find["ID"] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var node, i, elems, + elem = context.getElementById( id ); + + if ( elem ) { + + // Verify the id attribute + node = elem.getAttributeNode("id"); + if ( node && node.value === id ) { + return [ elem ]; + } + + // Fall back on getElementsByName + elems = context.getElementsByName( id ); + i = 0; + while ( (elem = elems[i++]) ) { + node = elem.getAttributeNode("id"); + if ( node && node.value === id ) { + return [ elem ]; + } + } + } + + return []; + } + }; + } + + // Tag + Expr.find["TAG"] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( tag ); + + // DocumentFragment nodes don't have gEBTN + } else if ( support.qsa ) { + return context.querySelectorAll( tag ); + } + } : + + function( tag, context ) { + var elem, + tmp = [], + i = 0, + // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( (elem = results[i++]) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See https://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( (support.qsa = rnative.test( document.querySelectorAll )) ) { + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert(function( el ) { + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // https://bugs.jquery.com/ticket/12359 + docElem.appendChild( el ).innerHTML = "" + + ""; + + // Support: IE8, Opera 11-12.16 + // Nothing should be selected when empty strings follow ^= or $= or *= + // The test attribute must be unknown in Opera but "safe" for WinRT + // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( el.querySelectorAll("[msallowcapture^='']").length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !el.querySelectorAll("[selected]").length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ + if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { + rbuggyQSA.push("~="); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !el.querySelectorAll(":checked").length ) { + rbuggyQSA.push(":checked"); + } + + // Support: Safari 8+, iOS 8+ + // https://bugs.webkit.org/show_bug.cgi?id=136851 + // In-page `selector#id sibling-combinator selector` fails + if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { + rbuggyQSA.push(".#.+[+~]"); + } + }); + + assert(function( el ) { + el.innerHTML = "" + + ""; + + // Support: Windows 8 Native Apps + // The type and name attributes are restricted during .innerHTML assignment + var input = document.createElement("input"); + input.setAttribute( "type", "hidden" ); + el.appendChild( input ).setAttribute( "name", "D" ); + + // Support: IE8 + // Enforce case-sensitivity of name attribute + if ( el.querySelectorAll("[name=d]").length ) { + rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( el.querySelectorAll(":enabled").length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: IE9-11+ + // IE's :disabled selector does not pick up the children of disabled fieldsets + docElem.appendChild( el ).disabled = true; + if ( el.querySelectorAll(":disabled").length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Opera 10-11 does not throw on post-comma invalid pseudos + el.querySelectorAll("*,:x"); + rbuggyQSA.push(",.*:"); + }); + } + + if ( (support.matchesSelector = rnative.test( (matches = docElem.matches || + docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector) )) ) { + + assert(function( el ) { + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( el, "*" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( el, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + }); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); + + /* Contains + ---------------------------------------------------------------------- */ + hasCompare = rnative.test( docElem.compareDocumentPosition ); + + // Element contains another + // Purposefully self-exclusive + // As in, an element does not contain itself + contains = hasCompare || rnative.test( docElem.contains ) ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + )); + } : + function( a, b ) { + if ( b ) { + while ( (b = b.parentNode) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = hasCompare ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 || + (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { + + // Choose the first element that is related to our preferred document + if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { + return -1; + } + if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } : + function( a, b ) { + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Parentless nodes are either documents or disconnected + if ( !aup || !bup ) { + return a === document ? -1 : + b === document ? 1 : + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( (cur = cur.parentNode) ) { + ap.unshift( cur ); + } + cur = b; + while ( (cur = cur.parentNode) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[i] === bp[i] ) { + i++; + } + + return i ? + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[i], bp[i] ) : + + // Otherwise nodes in our document sort first + ap[i] === preferredDoc ? -1 : + bp[i] === preferredDoc ? 1 : + 0; + }; + + return document; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + if ( support.matchesSelector && documentIsHTML && + !nonnativeSelectorCache[ expr + " " ] && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch (e) { + nonnativeSelectorCache( expr, true ); + } + } + + return Sizzle( expr, document, null, [ elem ] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + // Set document vars if needed + if ( ( context.ownerDocument || context ) !== document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val !== undefined ? + val : + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + (val = elem.getAttributeNode(name)) && val.specified ? + val.value : + null; +}; + +Sizzle.escape = function( sel ) { + return (sel + "").replace( rcssescape, fcssescape ); +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( (elem = results[i++]) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + // Clear input after sorting to release objects + // See https://github.com/jquery/sizzle/pull/225 + sortInput = null; + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + // If no nodeType, this is expected to be an array + while ( (node = elem[i++]) ) { + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + // Use textContent for elements + // innerText usage removed for consistency of new lines (jQuery #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[1] = match[1].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape ); + + if ( match[2] === "~=" ) { + match[3] = " " + match[3] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[1] = match[1].toLowerCase(); + + if ( match[1].slice( 0, 3 ) === "nth" ) { + // nth-* requires argument + if ( !match[3] ) { + Sizzle.error( match[0] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); + match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); + + // other types prohibit arguments + } else if ( match[3] ) { + Sizzle.error( match[0] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[6] && match[2]; + + if ( matchExpr["CHILD"].test( match[0] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[3] ) { + match[2] = match[4] || match[5] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + // Get excess from tokenize (recursively) + (excess = tokenize( unquoted, true )) && + // advance to the next closing parenthesis + (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { + + // excess is a negative index + match[0] = match[0].slice( 0, excess ); + match[2] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { return true; } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && + classCache( className, function( elem ) { + return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" ); + }); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + }; + }, + + "CHILD": function( type, what, argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, context, xml ) { + var cache, uniqueCache, outerCache, node, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType, + diff = false; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( (node = node[ dir ]) ) { + if ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) { + + return false; + } + } + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + + // Seek `elem` from a previously-cached index + + // ...in a gzip-friendly way + node = parent; + outerCache = node[ expando ] || (node[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + (outerCache[ node.uniqueID ] = {}); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex && cache[ 2 ]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( (node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + (diff = nodeIndex = 0) || start.pop()) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + } else { + // Use previously-cached element index if available + if ( useCache ) { + // ...in a gzip-friendly way + node = elem; + outerCache = node[ expando ] || (node[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + (outerCache[ node.uniqueID ] = {}); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex; + } + + // xml :nth-child(...) + // or :nth-last-child(...) or :nth(-last)?-of-type(...) + if ( diff === false ) { + // Use the same loop as above to seek `elem` from the start + while ( (node = ++nodeIndex && node && node[ dir ] || + (diff = nodeIndex = 0) || start.pop()) ) { + + if ( ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) && + ++diff ) { + + // Cache the index of each encountered element + if ( useCache ) { + outerCache = node[ expando ] || (node[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + (outerCache[ node.uniqueID ] = {}); + + uniqueCache[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction(function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf( seed, matched[i] ); + seed[ idx ] = !( matches[ idx ] = matched[i] ); + } + }) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + // Potentially complex pseudos + "not": markFunction(function( selector ) { + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction(function( seed, matches, context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( (elem = unmatched[i]) ) { + seed[i] = !(matches[i] = elem); + } + } + }) : + function( elem, context, xml ) { + input[0] = elem; + matcher( input, null, xml, results ); + // Don't keep the element (issue #299) + input[0] = null; + return !results.pop(); + }; + }), + + "has": markFunction(function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + }), + + "contains": markFunction(function( text ) { + text = text.replace( runescape, funescape ); + return function( elem ) { + return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; + }; + }), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + // lang value must be a valid identifier + if ( !ridentifier.test(lang || "") ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( (elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); + return false; + }; + }), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); + }, + + // Boolean properties + "enabled": createDisabledPseudo( false ), + "disabled": createDisabledPseudo( true ), + + "checked": function( elem ) { + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); + }, + + "selected": function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos["empty"]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + + // Support: IE<8 + // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" + ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" ); + }, + + // Position-in-collection + "first": createPositionalPseudo(function() { + return [ 0 ]; + }), + + "last": createPositionalPseudo(function( matchIndexes, length ) { + return [ length - 1 ]; + }), + + "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + }), + + "even": createPositionalPseudo(function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "odd": createPositionalPseudo(function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? + argument + length : + argument > length ? + length : + argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }) + } +}; + +Expr.pseudos["nth"] = Expr.pseudos["eq"]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +tokenize = Sizzle.tokenize = function( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || (match = rcomma.exec( soFar )) ) { + if ( match ) { + // Don't consume trailing commas as valid + soFar = soFar.slice( match[0].length ) || soFar; + } + groups.push( (tokens = []) ); + } + + matched = false; + + // Combinators + if ( (match = rcombinators.exec( soFar )) ) { + matched = match.shift(); + tokens.push({ + value: matched, + // Cast descendant combinators to space + type: match[0].replace( rtrim, " " ) + }); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || + (match = preFilters[ type ]( match ))) ) { + matched = match.shift(); + tokens.push({ + value: matched, + type: type, + matches: match + }); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[i].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + skip = combinator.next, + key = skip || dir, + checkNonElements = base && key === "parentNode", + doneName = done++; + + return combinator.first ? + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + return false; + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, uniqueCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching + if ( xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || (elem[ expando ] = {}); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {}); + + if ( skip && skip === elem.nodeName.toLowerCase() ) { + elem = elem[ dir ] || elem; + } else if ( (oldCache = uniqueCache[ key ]) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return (newCache[ 2 ] = oldCache[ 2 ]); + } else { + // Reuse newcache so results back-propagate to previous elements + uniqueCache[ key ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) { + return true; + } + } + } + } + } + return false; + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[i]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[0]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[i], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( (elem = unmatched[i]) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction(function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( (elem = temp[i]) ) { + matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) ) { + // Restore matcherIn since elem is not yet a final match + temp.push( (matcherIn[i] = elem) ); + } + } + postFinder( null, (matcherOut = []), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) && + (temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) { + + seed[temp] = !(results[temp] = elem); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + }); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[0].type ], + implicitRelative = leadingRelative || Expr.relative[" "], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + (checkContext = context).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + // Avoid hanging onto element (issue #299) + checkContext = null; + return ret; + } ]; + + for ( ; i < len; i++ ) { + if ( (matcher = Expr.relative[ tokens[i].type ]) ) { + matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; + } else { + matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[j].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + // We must always have either seed elements or outermost context + elems = seed || byElement && Expr.find["TAG"]( "*", outermost ), + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1), + len = elems.length; + + if ( outermost ) { + outermostContext = context === document || context || outermost; + } + + // Add elements passing elementMatchers directly to results + // Support: IE<9, Safari + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id + for ( ; i !== len && (elem = elems[i]) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + if ( !context && elem.ownerDocument !== document ) { + setDocument( elem ); + xml = !documentIsHTML; + } + while ( (matcher = elementMatchers[j++]) ) { + if ( matcher( elem, context || document, xml) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + // They will have gone through all possible matchers + if ( (elem = !matcher && elem) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // `i` is now the count of elements visited above, and adding it to `matchedCount` + // makes the latter nonnegative. + matchedCount += i; + + // Apply set filters to unmatched elements + // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` + // equals `i`), unless we didn't visit _any_ elements in the above loop because we have + // no element matchers and no seed. + // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that + // case, which will result in a "00" `matchedCount` that differs from `i` but is also + // numerically zero. + if ( bySet && i !== matchedCount ) { + j = 0; + while ( (matcher = setMatchers[j++]) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !(unmatched[i] || setMatched[i]) ) { + setMatched[i] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[i] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +}; + +/** + * A low-level selection function that works with Sizzle's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with Sizzle.compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +select = Sizzle.select = function( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( (selector = compiled.selector || selector) ); + + results = results || []; + + // Try to minimize operations if there is only one selector in the list and no seed + // (the latter of which guarantees us context) + if ( match.length === 1 ) { + + // Reduce context if the leading compound selector is an ID + tokens = match[0] = match[0].slice( 0 ); + if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && + context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) { + + context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[i]; + + // Abort if we hit a combinator + if ( Expr.relative[ (type = token.type) ] ) { + break; + } + if ( (find = Expr.find[ type ]) ) { + // Search, expanding context for leading sibling combinators + if ( (seed = find( + token.matches[0].replace( runescape, funescape ), + rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context + )) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + !context || rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +}; + +// One-time assignments + +// Sort stability +support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; + +// Support: Chrome 14-35+ +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = !!hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert(function( el ) { + // Should return 1, but returns 4 (following) + return el.compareDocumentPosition( document.createElement("fieldset") ) & 1; +}); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert(function( el ) { + el.innerHTML = ""; + return el.firstChild.getAttribute("href") === "#" ; +}) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + }); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert(function( el ) { + el.innerHTML = ""; + el.firstChild.setAttribute( "value", "" ); + return el.firstChild.getAttribute( "value" ) === ""; +}) ) { + addHandle( "value", function( elem, name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + }); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert(function( el ) { + return el.getAttribute("disabled") == null; +}) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return elem[ name ] === true ? name.toLowerCase() : + (val = elem.getAttributeNode( name )) && val.specified ? + val.value : + null; + } + }); +} + +return Sizzle; + +})( window ); + + + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; + +// Deprecated +jQuery.expr[ ":" ] = jQuery.expr.pseudos; +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; +jQuery.escapeSelector = Sizzle.escape; + + + + +var dir = function( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; +}; + + +var siblings = function( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; +}; + + +var rneedsContext = jQuery.expr.match.needsContext; + + + +function nodeName( elem, name ) { + + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + +}; +var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); + + + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + return !!qualifier.call( elem, i, elem ) !== not; + } ); + } + + // Single element + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + } ); + } + + // Arraylike of elements (jQuery, arguments, Array) + if ( typeof qualifier !== "string" ) { + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) > -1 ) !== not; + } ); + } + + // Filtered directly for both simple and complex selectors + return jQuery.filter( qualifier, elements, not ); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + if ( elems.length === 1 && elem.nodeType === 1 ) { + return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; + } + + return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + } ) ); +}; + +jQuery.fn.extend( { + find: function( selector ) { + var i, ret, + len = this.length, + self = this; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter( function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + } ) ); + } + + ret = this.pushStack( [] ); + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + return len > 1 ? jQuery.uniqueSort( ret ) : ret; + }, + filter: function( selector ) { + return this.pushStack( winnow( this, selector || [], false ) ); + }, + not: function( selector ) { + return this.pushStack( winnow( this, selector || [], true ) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +} ); + + +// Initialize a jQuery object + + +// A central reference to the root jQuery(document) +var rootjQuery, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + // Shortcut simple #id case for speed + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, + + init = jQuery.fn.init = function( selector, context, root ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Method init() accepts an alternate rootjQuery + // so migrate can support jQuery.sub (gh-2101) + root = root || rootjQuery; + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector[ 0 ] === "<" && + selector[ selector.length - 1 ] === ">" && + selector.length >= 3 ) { + + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && ( match[ 1 ] || !context ) ) { + + // HANDLE: $(html) -> $(array) + if ( match[ 1 ] ) { + context = context instanceof jQuery ? context[ 0 ] : context; + + // Option to run scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[ 1 ], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + + // Properties of context are called as methods if possible + if ( isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[ 2 ] ); + + if ( elem ) { + + // Inject the element directly into the jQuery object + this[ 0 ] = elem; + this.length = 1; + } + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || root ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this[ 0 ] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( isFunction( selector ) ) { + return root.ready !== undefined ? + root.ready( selector ) : + + // Execute immediately if ready is not present + selector( jQuery ); + } + + return jQuery.makeArray( selector, this ); + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document ); + + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + + // Methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend( { + has: function( target ) { + var targets = jQuery( target, this ), + l = targets.length; + + return this.filter( function() { + var i = 0; + for ( ; i < l; i++ ) { + if ( jQuery.contains( this, targets[ i ] ) ) { + return true; + } + } + } ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + targets = typeof selectors !== "string" && jQuery( selectors ); + + // Positional selectors never match, since there's no _selection_ context + if ( !rneedsContext.test( selectors ) ) { + for ( ; i < l; i++ ) { + for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { + + // Always skip document fragments + if ( cur.nodeType < 11 && ( targets ? + targets.index( cur ) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector( cur, selectors ) ) ) { + + matched.push( cur ); + break; + } + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); + }, + + // Determine the position of an element within the set + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; + } + + // Index in selector + if ( typeof elem === "string" ) { + return indexOf.call( jQuery( elem ), this[ 0 ] ); + } + + // Locate the position of the desired element + return indexOf.call( this, + + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[ 0 ] : elem + ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.uniqueSort( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter( selector ) + ); + } +} ); + +function sibling( cur, dir ) { + while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} + return cur; +} + +jQuery.each( { + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + return dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + return dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + return dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return siblings( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return siblings( elem.firstChild ); + }, + contents: function( elem ) { + if ( typeof elem.contentDocument !== "undefined" ) { + return elem.contentDocument; + } + + // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only + // Treat the template element as a regular one in browsers that + // don't support it. + if ( nodeName( elem, "template" ) ) { + elem = elem.content || elem; + } + + return jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var matched = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + matched = jQuery.filter( selector, matched ); + } + + if ( this.length > 1 ) { + + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + jQuery.uniqueSort( matched ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + matched.reverse(); + } + } + + return this.pushStack( matched ); + }; +} ); +var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); + + + +// Convert String-formatted options into Object-formatted ones +function createOptions( options ) { + var object = {}; + jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { + object[ flag ] = true; + } ); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + createOptions( options ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + + // Last fire value for non-forgettable lists + memory, + + // Flag to know if list was already fired + fired, + + // Flag to prevent firing + locked, + + // Actual callback list + list = [], + + // Queue of execution data for repeatable lists + queue = [], + + // Index of currently firing callback (modified by add/remove as needed) + firingIndex = -1, + + // Fire callbacks + fire = function() { + + // Enforce single-firing + locked = locked || options.once; + + // Execute callbacks for all pending executions, + // respecting firingIndex overrides and runtime changes + fired = firing = true; + for ( ; queue.length; firingIndex = -1 ) { + memory = queue.shift(); + while ( ++firingIndex < list.length ) { + + // Run callback and check for early termination + if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && + options.stopOnFalse ) { + + // Jump to end and forget the data so .add doesn't re-fire + firingIndex = list.length; + memory = false; + } + } + } + + // Forget the data if we're done with it + if ( !options.memory ) { + memory = false; + } + + firing = false; + + // Clean up if we're done firing for good + if ( locked ) { + + // Keep an empty list if we have data for future add calls + if ( memory ) { + list = []; + + // Otherwise, this object is spent + } else { + list = ""; + } + } + }, + + // Actual Callbacks object + self = { + + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + + // If we have memory from a past run, we should fire after adding + if ( memory && !firing ) { + firingIndex = list.length - 1; + queue.push( memory ); + } + + ( function add( args ) { + jQuery.each( args, function( _, arg ) { + if ( isFunction( arg ) ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && toType( arg ) !== "string" ) { + + // Inspect recursively + add( arg ); + } + } ); + } )( arguments ); + + if ( memory && !firing ) { + fire(); + } + } + return this; + }, + + // Remove a callback from the list + remove: function() { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + + // Handle firing indexes + if ( index <= firingIndex ) { + firingIndex--; + } + } + } ); + return this; + }, + + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? + jQuery.inArray( fn, list ) > -1 : + list.length > 0; + }, + + // Remove all callbacks from the list + empty: function() { + if ( list ) { + list = []; + } + return this; + }, + + // Disable .fire and .add + // Abort any current/pending executions + // Clear all callbacks and values + disable: function() { + locked = queue = []; + list = memory = ""; + return this; + }, + disabled: function() { + return !list; + }, + + // Disable .fire + // Also disable .add unless we have memory (since it would have no effect) + // Abort any pending executions + lock: function() { + locked = queue = []; + if ( !memory && !firing ) { + list = memory = ""; + } + return this; + }, + locked: function() { + return !!locked; + }, + + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( !locked ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + queue.push( args ); + if ( !firing ) { + fire(); + } + } + return this; + }, + + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + + +function Identity( v ) { + return v; +} +function Thrower( ex ) { + throw ex; +} + +function adoptValue( value, resolve, reject, noValue ) { + var method; + + try { + + // Check for promise aspect first to privilege synchronous behavior + if ( value && isFunction( ( method = value.promise ) ) ) { + method.call( value ).done( resolve ).fail( reject ); + + // Other thenables + } else if ( value && isFunction( ( method = value.then ) ) ) { + method.call( value, resolve, reject ); + + // Other non-thenables + } else { + + // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: + // * false: [ value ].slice( 0 ) => resolve( value ) + // * true: [ value ].slice( 1 ) => resolve() + resolve.apply( undefined, [ value ].slice( noValue ) ); + } + + // For Promises/A+, convert exceptions into rejections + // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in + // Deferred#then to conditionally suppress rejection. + } catch ( value ) { + + // Support: Android 4.0 only + // Strict mode functions invoked without .call/.apply get global-object context + reject.apply( undefined, [ value ] ); + } +} + +jQuery.extend( { + + Deferred: function( func ) { + var tuples = [ + + // action, add listener, callbacks, + // ... .then handlers, argument index, [final state] + [ "notify", "progress", jQuery.Callbacks( "memory" ), + jQuery.Callbacks( "memory" ), 2 ], + [ "resolve", "done", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 0, "resolved" ], + [ "reject", "fail", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 1, "rejected" ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + "catch": function( fn ) { + return promise.then( null, fn ); + }, + + // Keep pipe for back-compat + pipe: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + + return jQuery.Deferred( function( newDefer ) { + jQuery.each( tuples, function( i, tuple ) { + + // Map tuples (progress, done, fail) to arguments (done, fail, progress) + var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; + + // deferred.progress(function() { bind to newDefer or newDefer.notify }) + // deferred.done(function() { bind to newDefer or newDefer.resolve }) + // deferred.fail(function() { bind to newDefer or newDefer.reject }) + deferred[ tuple[ 1 ] ]( function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && isFunction( returned.promise ) ) { + returned.promise() + .progress( newDefer.notify ) + .done( newDefer.resolve ) + .fail( newDefer.reject ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( + this, + fn ? [ returned ] : arguments + ); + } + } ); + } ); + fns = null; + } ).promise(); + }, + then: function( onFulfilled, onRejected, onProgress ) { + var maxDepth = 0; + function resolve( depth, deferred, handler, special ) { + return function() { + var that = this, + args = arguments, + mightThrow = function() { + var returned, then; + + // Support: Promises/A+ section 2.3.3.3.3 + // https://promisesaplus.com/#point-59 + // Ignore double-resolution attempts + if ( depth < maxDepth ) { + return; + } + + returned = handler.apply( that, args ); + + // Support: Promises/A+ section 2.3.1 + // https://promisesaplus.com/#point-48 + if ( returned === deferred.promise() ) { + throw new TypeError( "Thenable self-resolution" ); + } + + // Support: Promises/A+ sections 2.3.3.1, 3.5 + // https://promisesaplus.com/#point-54 + // https://promisesaplus.com/#point-75 + // Retrieve `then` only once + then = returned && + + // Support: Promises/A+ section 2.3.4 + // https://promisesaplus.com/#point-64 + // Only check objects and functions for thenability + ( typeof returned === "object" || + typeof returned === "function" ) && + returned.then; + + // Handle a returned thenable + if ( isFunction( then ) ) { + + // Special processors (notify) just wait for resolution + if ( special ) { + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ) + ); + + // Normal processors (resolve) also hook into progress + } else { + + // ...and disregard older resolution values + maxDepth++; + + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ), + resolve( maxDepth, deferred, Identity, + deferred.notifyWith ) + ); + } + + // Handle all other returned values + } else { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Identity ) { + that = undefined; + args = [ returned ]; + } + + // Process the value(s) + // Default process is resolve + ( special || deferred.resolveWith )( that, args ); + } + }, + + // Only normal processors (resolve) catch and reject exceptions + process = special ? + mightThrow : + function() { + try { + mightThrow(); + } catch ( e ) { + + if ( jQuery.Deferred.exceptionHook ) { + jQuery.Deferred.exceptionHook( e, + process.stackTrace ); + } + + // Support: Promises/A+ section 2.3.3.3.4.1 + // https://promisesaplus.com/#point-61 + // Ignore post-resolution exceptions + if ( depth + 1 >= maxDepth ) { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Thrower ) { + that = undefined; + args = [ e ]; + } + + deferred.rejectWith( that, args ); + } + } + }; + + // Support: Promises/A+ section 2.3.3.3.1 + // https://promisesaplus.com/#point-57 + // Re-resolve promises immediately to dodge false rejection from + // subsequent errors + if ( depth ) { + process(); + } else { + + // Call an optional hook to record the stack, in case of exception + // since it's otherwise lost when execution goes async + if ( jQuery.Deferred.getStackHook ) { + process.stackTrace = jQuery.Deferred.getStackHook(); + } + window.setTimeout( process ); + } + }; + } + + return jQuery.Deferred( function( newDefer ) { + + // progress_handlers.add( ... ) + tuples[ 0 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onProgress ) ? + onProgress : + Identity, + newDefer.notifyWith + ) + ); + + // fulfilled_handlers.add( ... ) + tuples[ 1 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onFulfilled ) ? + onFulfilled : + Identity + ) + ); + + // rejected_handlers.add( ... ) + tuples[ 2 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onRejected ) ? + onRejected : + Thrower + ) + ); + } ).promise(); + }, + + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 5 ]; + + // promise.progress = list.add + // promise.done = list.add + // promise.fail = list.add + promise[ tuple[ 1 ] ] = list.add; + + // Handle state + if ( stateString ) { + list.add( + function() { + + // state = "resolved" (i.e., fulfilled) + // state = "rejected" + state = stateString; + }, + + // rejected_callbacks.disable + // fulfilled_callbacks.disable + tuples[ 3 - i ][ 2 ].disable, + + // rejected_handlers.disable + // fulfilled_handlers.disable + tuples[ 3 - i ][ 3 ].disable, + + // progress_callbacks.lock + tuples[ 0 ][ 2 ].lock, + + // progress_handlers.lock + tuples[ 0 ][ 3 ].lock + ); + } + + // progress_handlers.fire + // fulfilled_handlers.fire + // rejected_handlers.fire + list.add( tuple[ 3 ].fire ); + + // deferred.notify = function() { deferred.notifyWith(...) } + // deferred.resolve = function() { deferred.resolveWith(...) } + // deferred.reject = function() { deferred.rejectWith(...) } + deferred[ tuple[ 0 ] ] = function() { + deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); + return this; + }; + + // deferred.notifyWith = list.fireWith + // deferred.resolveWith = list.fireWith + // deferred.rejectWith = list.fireWith + deferred[ tuple[ 0 ] + "With" ] = list.fireWith; + } ); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( singleValue ) { + var + + // count of uncompleted subordinates + remaining = arguments.length, + + // count of unprocessed arguments + i = remaining, + + // subordinate fulfillment data + resolveContexts = Array( i ), + resolveValues = slice.call( arguments ), + + // the master Deferred + master = jQuery.Deferred(), + + // subordinate callback factory + updateFunc = function( i ) { + return function( value ) { + resolveContexts[ i ] = this; + resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( !( --remaining ) ) { + master.resolveWith( resolveContexts, resolveValues ); + } + }; + }; + + // Single- and empty arguments are adopted like Promise.resolve + if ( remaining <= 1 ) { + adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, + !remaining ); + + // Use .then() to unwrap secondary thenables (cf. gh-3000) + if ( master.state() === "pending" || + isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { + + return master.then(); + } + } + + // Multiple arguments are aggregated like Promise.all array elements + while ( i-- ) { + adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); + } + + return master.promise(); + } +} ); + + +// These usually indicate a programmer mistake during development, +// warn about them ASAP rather than swallowing them by default. +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; + +jQuery.Deferred.exceptionHook = function( error, stack ) { + + // Support: IE 8 - 9 only + // Console exists when dev tools are open, which can happen at any time + if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { + window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); + } +}; + + + + +jQuery.readyException = function( error ) { + window.setTimeout( function() { + throw error; + } ); +}; + + + + +// The deferred used on DOM ready +var readyList = jQuery.Deferred(); + +jQuery.fn.ready = function( fn ) { + + readyList + .then( fn ) + + // Wrap jQuery.readyException in a function so that the lookup + // happens at the time of error handling instead of callback + // registration. + .catch( function( error ) { + jQuery.readyException( error ); + } ); + + return this; +}; + +jQuery.extend( { + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + } +} ); + +jQuery.ready.then = readyList.then; + +// The ready event handler and self cleanup method +function completed() { + document.removeEventListener( "DOMContentLoaded", completed ); + window.removeEventListener( "load", completed ); + jQuery.ready(); +} + +// Catch cases where $(document).ready() is called +// after the browser event has already occurred. +// Support: IE <=9 - 10 only +// Older IE sometimes signals "interactive" too soon +if ( document.readyState === "complete" || + ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { + + // Handle it asynchronously to allow scripts the opportunity to delay ready + window.setTimeout( jQuery.ready ); + +} else { + + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed ); +} + + + + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + len = elems.length, + bulk = key == null; + + // Sets many values + if ( toType( key ) === "object" ) { + chainable = true; + for ( i in key ) { + access( elems, fn, i, key[ i ], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < len; i++ ) { + fn( + elems[ i ], key, raw ? + value : + value.call( elems[ i ], i, fn( elems[ i ], key ) ) + ); + } + } + } + + if ( chainable ) { + return elems; + } + + // Gets + if ( bulk ) { + return fn.call( elems ); + } + + return len ? fn( elems[ 0 ], key ) : emptyGet; +}; + + +// Matches dashed string for camelizing +var rmsPrefix = /^-ms-/, + rdashAlpha = /-([a-z])/g; + +// Used by camelCase as callback to replace() +function fcamelCase( all, letter ) { + return letter.toUpperCase(); +} + +// Convert dashed to camelCase; used by the css and data modules +// Support: IE <=9 - 11, Edge 12 - 15 +// Microsoft forgot to hump their vendor prefix (#9572) +function camelCase( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); +} +var acceptData = function( owner ) { + + // Accepts only: + // - Node + // - Node.ELEMENT_NODE + // - Node.DOCUMENT_NODE + // - Object + // - Any + return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +}; + + + + +function Data() { + this.expando = jQuery.expando + Data.uid++; +} + +Data.uid = 1; + +Data.prototype = { + + cache: function( owner ) { + + // Check if the owner object already has a cache + var value = owner[ this.expando ]; + + // If not, create one + if ( !value ) { + value = {}; + + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return an empty object. + if ( acceptData( owner ) ) { + + // If it is a node unlikely to be stringify-ed or looped over + // use plain assignment + if ( owner.nodeType ) { + owner[ this.expando ] = value; + + // Otherwise secure it in a non-enumerable property + // configurable must be true to allow the property to be + // deleted when data is removed + } else { + Object.defineProperty( owner, this.expando, { + value: value, + configurable: true + } ); + } + } + } + + return value; + }, + set: function( owner, data, value ) { + var prop, + cache = this.cache( owner ); + + // Handle: [ owner, key, value ] args + // Always use camelCase key (gh-2257) + if ( typeof data === "string" ) { + cache[ camelCase( data ) ] = value; + + // Handle: [ owner, { properties } ] args + } else { + + // Copy the properties one-by-one to the cache object + for ( prop in data ) { + cache[ camelCase( prop ) ] = data[ prop ]; + } + } + return cache; + }, + get: function( owner, key ) { + return key === undefined ? + this.cache( owner ) : + + // Always use camelCase key (gh-2257) + owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; + }, + access: function( owner, key, value ) { + + // In cases where either: + // + // 1. No key was specified + // 2. A string key was specified, but no value provided + // + // Take the "read" path and allow the get method to determine + // which value to return, respectively either: + // + // 1. The entire cache object + // 2. The data stored at the key + // + if ( key === undefined || + ( ( key && typeof key === "string" ) && value === undefined ) ) { + + return this.get( owner, key ); + } + + // When the key is not a string, or both a key and value + // are specified, set or extend (existing objects) with either: + // + // 1. An object of properties + // 2. A key and value + // + this.set( owner, key, value ); + + // Since the "set" path can have two possible entry points + // return the expected data based on which path was taken[*] + return value !== undefined ? value : key; + }, + remove: function( owner, key ) { + var i, + cache = owner[ this.expando ]; + + if ( cache === undefined ) { + return; + } + + if ( key !== undefined ) { + + // Support array or space separated string of keys + if ( Array.isArray( key ) ) { + + // If key is an array of keys... + // We always set camelCase keys, so remove that. + key = key.map( camelCase ); + } else { + key = camelCase( key ); + + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + key = key in cache ? + [ key ] : + ( key.match( rnothtmlwhite ) || [] ); + } + + i = key.length; + + while ( i-- ) { + delete cache[ key[ i ] ]; + } + } + + // Remove the expando if there's no more data + if ( key === undefined || jQuery.isEmptyObject( cache ) ) { + + // Support: Chrome <=35 - 45 + // Webkit & Blink performance suffers when deleting properties + // from DOM nodes, so set to undefined instead + // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) + if ( owner.nodeType ) { + owner[ this.expando ] = undefined; + } else { + delete owner[ this.expando ]; + } + } + }, + hasData: function( owner ) { + var cache = owner[ this.expando ]; + return cache !== undefined && !jQuery.isEmptyObject( cache ); + } +}; +var dataPriv = new Data(); + +var dataUser = new Data(); + + + +// Implementation Summary +// +// 1. Enforce API surface and semantic compatibility with 1.9.x branch +// 2. Improve the module's maintainability by reducing the storage +// paths to a single mechanism. +// 3. Use the same single mechanism to support "private" and "user" data. +// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) +// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /[A-Z]/g; + +function getData( data ) { + if ( data === "true" ) { + return true; + } + + if ( data === "false" ) { + return false; + } + + if ( data === "null" ) { + return null; + } + + // Only convert to a number if it doesn't change the string + if ( data === +data + "" ) { + return +data; + } + + if ( rbrace.test( data ) ) { + return JSON.parse( data ); + } + + return data; +} + +function dataAttr( elem, key, data ) { + var name; + + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = getData( data ); + } catch ( e ) {} + + // Make sure we set the data so it isn't changed later + dataUser.set( elem, key, data ); + } else { + data = undefined; + } + } + return data; +} + +jQuery.extend( { + hasData: function( elem ) { + return dataUser.hasData( elem ) || dataPriv.hasData( elem ); + }, + + data: function( elem, name, data ) { + return dataUser.access( elem, name, data ); + }, + + removeData: function( elem, name ) { + dataUser.remove( elem, name ); + }, + + // TODO: Now that all calls to _data and _removeData have been replaced + // with direct calls to dataPriv methods, these can be deprecated. + _data: function( elem, name, data ) { + return dataPriv.access( elem, name, data ); + }, + + _removeData: function( elem, name ) { + dataPriv.remove( elem, name ); + } +} ); + +jQuery.fn.extend( { + data: function( key, value ) { + var i, name, data, + elem = this[ 0 ], + attrs = elem && elem.attributes; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = dataUser.get( elem ); + + if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE 11 only + // The attrs elements can be null (#14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = camelCase( name.slice( 5 ) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + dataPriv.set( elem, "hasDataAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each( function() { + dataUser.set( this, key ); + } ); + } + + return access( this, function( value ) { + var data; + + // The calling jQuery object (element matches) is not empty + // (and therefore has an element appears at this[ 0 ]) and the + // `value` parameter was not undefined. An empty jQuery object + // will result in `undefined` for elem = this[ 0 ] which will + // throw an exception if an attempt to read a data cache is made. + if ( elem && value === undefined ) { + + // Attempt to get data from the cache + // The key will always be camelCased in Data + data = dataUser.get( elem, key ); + if ( data !== undefined ) { + return data; + } + + // Attempt to "discover" the data in + // HTML5 custom data-* attrs + data = dataAttr( elem, key ); + if ( data !== undefined ) { + return data; + } + + // We tried really hard, but the data doesn't exist. + return; + } + + // Set the data... + this.each( function() { + + // We always store the camelCased key + dataUser.set( this, key, value ); + } ); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each( function() { + dataUser.remove( this, key ); + } ); + } +} ); + + +jQuery.extend( { + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = dataPriv.get( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || Array.isArray( data ) ) { + queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // Clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // Not public - generate a queueHooks object, or return the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { + empty: jQuery.Callbacks( "once memory" ).add( function() { + dataPriv.remove( elem, [ type + "queue", key ] ); + } ) + } ); + } +} ); + +jQuery.fn.extend( { + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[ 0 ], type ); + } + + return data === undefined ? + this : + this.each( function() { + var queue = jQuery.queue( this, type, data ); + + // Ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + } ); + }, + dequeue: function( type ) { + return this.each( function() { + jQuery.dequeue( this, type ); + } ); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +} ); +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; + +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); + + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +var documentElement = document.documentElement; + + + + var isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ); + }, + composed = { composed: true }; + + // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only + // Check attachment across shadow DOM boundaries when possible (gh-3504) + // Support: iOS 10.0-10.2 only + // Early iOS 10 versions support `attachShadow` but not `getRootNode`, + // leading to errors. We need to check for `getRootNode`. + if ( documentElement.getRootNode ) { + isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ) || + elem.getRootNode( composed ) === elem.ownerDocument; + }; + } +var isHiddenWithinTree = function( elem, el ) { + + // isHiddenWithinTree might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + + // Inline style trumps all + return elem.style.display === "none" || + elem.style.display === "" && + + // Otherwise, check computed style + // Support: Firefox <=43 - 45 + // Disconnected elements can have computed display: none, so first confirm that elem is + // in the document. + isAttached( elem ) && + + jQuery.css( elem, "display" ) === "none"; + }; + +var swap = function( elem, options, callback, args ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.apply( elem, args || [] ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; +}; + + + + +function adjustCSS( elem, prop, valueParts, tween ) { + var adjusted, scale, + maxIterations = 20, + currentValue = tween ? + function() { + return tween.cur(); + } : + function() { + return jQuery.css( elem, prop, "" ); + }, + initial = currentValue(), + unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), + + // Starting value computation is required for potential unit mismatches + initialInUnit = elem.nodeType && + ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && + rcssNum.exec( jQuery.css( elem, prop ) ); + + if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { + + // Support: Firefox <=54 + // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) + initial = initial / 2; + + // Trust units reported by jQuery.css + unit = unit || initialInUnit[ 3 ]; + + // Iteratively approximate from a nonzero starting point + initialInUnit = +initial || 1; + + while ( maxIterations-- ) { + + // Evaluate and update our best guess (doubling guesses that zero out). + // Finish if the scale equals or crosses 1 (making the old*new product non-positive). + jQuery.style( elem, prop, initialInUnit + unit ); + if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { + maxIterations = 0; + } + initialInUnit = initialInUnit / scale; + + } + + initialInUnit = initialInUnit * 2; + jQuery.style( elem, prop, initialInUnit + unit ); + + // Make sure we update the tween properties later on + valueParts = valueParts || []; + } + + if ( valueParts ) { + initialInUnit = +initialInUnit || +initial || 0; + + // Apply relative offset (+=/-=) if specified + adjusted = valueParts[ 1 ] ? + initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : + +valueParts[ 2 ]; + if ( tween ) { + tween.unit = unit; + tween.start = initialInUnit; + tween.end = adjusted; + } + } + return adjusted; +} + + +var defaultDisplayMap = {}; + +function getDefaultDisplay( elem ) { + var temp, + doc = elem.ownerDocument, + nodeName = elem.nodeName, + display = defaultDisplayMap[ nodeName ]; + + if ( display ) { + return display; + } + + temp = doc.body.appendChild( doc.createElement( nodeName ) ); + display = jQuery.css( temp, "display" ); + + temp.parentNode.removeChild( temp ); + + if ( display === "none" ) { + display = "block"; + } + defaultDisplayMap[ nodeName ] = display; + + return display; +} + +function showHide( elements, show ) { + var display, elem, + values = [], + index = 0, + length = elements.length; + + // Determine new display value for elements that need to change + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + display = elem.style.display; + if ( show ) { + + // Since we force visibility upon cascade-hidden elements, an immediate (and slow) + // check is required in this first loop unless we have a nonempty display value (either + // inline or about-to-be-restored) + if ( display === "none" ) { + values[ index ] = dataPriv.get( elem, "display" ) || null; + if ( !values[ index ] ) { + elem.style.display = ""; + } + } + if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { + values[ index ] = getDefaultDisplay( elem ); + } + } else { + if ( display !== "none" ) { + values[ index ] = "none"; + + // Remember what we're overwriting + dataPriv.set( elem, "display", display ); + } + } + } + + // Set the display of the elements in a second loop to avoid constant reflow + for ( index = 0; index < length; index++ ) { + if ( values[ index ] != null ) { + elements[ index ].style.display = values[ index ]; + } + } + + return elements; +} + +jQuery.fn.extend( { + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + if ( typeof state === "boolean" ) { + return state ? this.show() : this.hide(); + } + + return this.each( function() { + if ( isHiddenWithinTree( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + } ); + } +} ); +var rcheckableType = ( /^(?:checkbox|radio)$/i ); + +var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); + +var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); + + + +// We have to close these tags to support XHTML (#13200) +var wrapMap = { + + // Support: IE <=9 only + option: [ 1, "" ], + + // XHTML parsers do not magically insert elements in the + // same way that tag soup parsers do. So we cannot shorten + // this by omitting or other required elements. + thead: [ 1, "", "
    " ], + col: [ 2, "", "
    " ], + tr: [ 2, "", "
    " ], + td: [ 3, "", "
    " ], + + _default: [ 0, "", "" ] +}; + +// Support: IE <=9 only +wrapMap.optgroup = wrapMap.option; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + + +function getAll( context, tag ) { + + // Support: IE <=9 - 11 only + // Use typeof to avoid zero-argument method invocation on host objects (#15151) + var ret; + + if ( typeof context.getElementsByTagName !== "undefined" ) { + ret = context.getElementsByTagName( tag || "*" ); + + } else if ( typeof context.querySelectorAll !== "undefined" ) { + ret = context.querySelectorAll( tag || "*" ); + + } else { + ret = []; + } + + if ( tag === undefined || tag && nodeName( context, tag ) ) { + return jQuery.merge( [ context ], ret ); + } + + return ret; +} + + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + dataPriv.set( + elems[ i ], + "globalEval", + !refElements || dataPriv.get( refElements[ i ], "globalEval" ) + ); + } +} + + +var rhtml = /<|&#?\w+;/; + +function buildFragment( elems, context, scripts, selection, ignored ) { + var elem, tmp, tag, wrap, attached, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( toType( elem ) === "object" ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( ( elem = nodes[ i++ ] ) ) { + + // Skip elements already in the context collection (trac-4087) + if ( selection && jQuery.inArray( elem, selection ) > -1 ) { + if ( ignored ) { + ignored.push( elem ); + } + continue; + } + + attached = isAttached( elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( attached ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( ( elem = tmp[ j++ ] ) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; +} + + +( function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Android 4.0 - 4.3 only + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Android <=4.1 only + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE <=11 only + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; +} )(); + + +var + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +// Support: IE <=9 - 11+ +// focus() and blur() are asynchronous, except when they are no-op. +// So expect focus to be synchronous when the element is already active, +// and blur to be synchronous when the element is not already active. +// (focus and blur are always synchronous in other supported browsers, +// this just defines when we can count on it). +function expectSync( elem, type ) { + return ( elem === safeActiveElement() ) === ( type === "focus" ); +} + +// Support: IE <=9 only +// Accessing document.activeElement can throw unexpectedly +// https://bugs.jquery.com/ticket/13393 +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +function on( elem, types, selector, data, fn, one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + on( elem, type, selector, data, types[ type ], one ); + } + return elem; + } + + if ( data == null && fn == null ) { + + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return elem; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return elem.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + } ); +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.get( elem ); + + // Don't attach events to noData or text/comment nodes (but allow plain objects) + if ( !elemData ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Ensure that invalid selectors throw exceptions at attach time + // Evaluate against documentElement in case elem is a non-element node (e.g., document) + if ( selector ) { + jQuery.find.matchesSelector( documentElement, selector ); + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !( events = elemData.events ) ) { + events = elemData.events = {}; + } + if ( !( eventHandle = elemData.handle ) ) { + eventHandle = elemData.handle = function( e ) { + + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend( { + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join( "." ) + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !( handlers = events[ type ] ) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || + special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); + + if ( !elemData || !( events = elemData.events ) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[ 2 ] && + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || + selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || + special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove data and the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + dataPriv.remove( elem, "handle events" ); + } + }, + + dispatch: function( nativeEvent ) { + + // Make a writable jQuery.Event from the native event object + var event = jQuery.event.fix( nativeEvent ); + + var i, j, ret, matched, handleObj, handlerQueue, + args = new Array( arguments.length ), + handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[ 0 ] = event; + + for ( i = 1; i < arguments.length; i++ ) { + args[ i ] = arguments[ i ]; + } + + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( ( handleObj = matched.handlers[ j++ ] ) && + !event.isImmediatePropagationStopped() ) { + + // If the event is namespaced, then each handler is only invoked if it is + // specially universal or its namespaces are a superset of the event's. + if ( !event.rnamespace || handleObj.namespace === false || + event.rnamespace.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || + handleObj.handler ).apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( ( event.result = ret ) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, handleObj, sel, matchedHandlers, matchedSelectors, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + if ( delegateCount && + + // Support: IE <=9 + // Black-hole SVG instance trees (trac-13180) + cur.nodeType && + + // Support: Firefox <=42 + // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) + // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click + // Support: IE 11 only + // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) + !( event.type === "click" && event.button >= 1 ) ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { + matchedHandlers = []; + matchedSelectors = {}; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matchedSelectors[ sel ] === undefined ) { + matchedSelectors[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) > -1 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matchedSelectors[ sel ] ) { + matchedHandlers.push( handleObj ); + } + } + if ( matchedHandlers.length ) { + handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); + } + } + } + } + + // Add the remaining (directly-bound) handlers + cur = this; + if ( delegateCount < handlers.length ) { + handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); + } + + return handlerQueue; + }, + + addProp: function( name, hook ) { + Object.defineProperty( jQuery.Event.prototype, name, { + enumerable: true, + configurable: true, + + get: isFunction( hook ) ? + function() { + if ( this.originalEvent ) { + return hook( this.originalEvent ); + } + } : + function() { + if ( this.originalEvent ) { + return this.originalEvent[ name ]; + } + }, + + set: function( value ) { + Object.defineProperty( this, name, { + enumerable: true, + configurable: true, + writable: true, + value: value + } ); + } + } ); + }, + + fix: function( originalEvent ) { + return originalEvent[ jQuery.expando ] ? + originalEvent : + new jQuery.Event( originalEvent ); + }, + + special: { + load: { + + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + click: { + + // Utilize native event to ensure correct state for checkable inputs + setup: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Claim the first handler + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + // dataPriv.set( el, "click", ... ) + leverageNative( el, "click", returnTrue ); + } + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Force setup before triggering a click + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + leverageNative( el, "click" ); + } + + // Return non-false to allow normal event-path propagation + return true; + }, + + // For cross-browser consistency, suppress native .click() on links + // Also prevent it if we're currently inside a leveraged native-event stack + _default: function( event ) { + var target = event.target; + return rcheckableType.test( target.type ) && + target.click && nodeName( target, "input" ) && + dataPriv.get( target, "click" ) || + nodeName( target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + } +}; + +// Ensure the presence of an event listener that handles manually-triggered +// synthetic events by interrupting progress until reinvoked in response to +// *native* events that it fires directly, ensuring that state changes have +// already occurred before other listeners are invoked. +function leverageNative( el, type, expectSync ) { + + // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add + if ( !expectSync ) { + if ( dataPriv.get( el, type ) === undefined ) { + jQuery.event.add( el, type, returnTrue ); + } + return; + } + + // Register the controller as a special universal handler for all event namespaces + dataPriv.set( el, type, false ); + jQuery.event.add( el, type, { + namespace: false, + handler: function( event ) { + var notAsync, result, + saved = dataPriv.get( this, type ); + + if ( ( event.isTrigger & 1 ) && this[ type ] ) { + + // Interrupt processing of the outer synthetic .trigger()ed event + // Saved data should be false in such cases, but might be a leftover capture object + // from an async native handler (gh-4350) + if ( !saved.length ) { + + // Store arguments for use when handling the inner native event + // There will always be at least one argument (an event object), so this array + // will not be confused with a leftover capture object. + saved = slice.call( arguments ); + dataPriv.set( this, type, saved ); + + // Trigger the native event and capture its result + // Support: IE <=9 - 11+ + // focus() and blur() are asynchronous + notAsync = expectSync( this, type ); + this[ type ](); + result = dataPriv.get( this, type ); + if ( saved !== result || notAsync ) { + dataPriv.set( this, type, false ); + } else { + result = {}; + } + if ( saved !== result ) { + + // Cancel the outer synthetic event + event.stopImmediatePropagation(); + event.preventDefault(); + return result.value; + } + + // If this is an inner synthetic event for an event with a bubbling surrogate + // (focus or blur), assume that the surrogate already propagated from triggering the + // native event and prevent that from happening again here. + // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the + // bubbling surrogate propagates *after* the non-bubbling base), but that seems + // less bad than duplication. + } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { + event.stopPropagation(); + } + + // If this is a native event triggered above, everything is now in order + // Fire an inner synthetic event with the original arguments + } else if ( saved.length ) { + + // ...and capture the result + dataPriv.set( this, type, { + value: jQuery.event.trigger( + + // Support: IE <=9 - 11+ + // Extend with the prototype to reset the above stopImmediatePropagation() + jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), + saved.slice( 1 ), + this + ) + } ); + + // Abort handling of the native event + event.stopImmediatePropagation(); + } + } + } ); +} + +jQuery.removeEvent = function( elem, type, handle ) { + + // This "if" is needed for plain objects + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle ); + } +}; + +jQuery.Event = function( src, props ) { + + // Allow instantiation without the 'new' keyword + if ( !( this instanceof jQuery.Event ) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + + // Support: Android <=2.3 only + src.returnValue === false ? + returnTrue : + returnFalse; + + // Create target properties + // Support: Safari <=6 - 7 only + // Target should not be a text node (#504, #13143) + this.target = ( src.target && src.target.nodeType === 3 ) ? + src.target.parentNode : + src.target; + + this.currentTarget = src.currentTarget; + this.relatedTarget = src.relatedTarget; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || Date.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + constructor: jQuery.Event, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + isSimulated: false, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && !this.isSimulated ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Includes all common event props including KeyEvent and MouseEvent specific props +jQuery.each( { + altKey: true, + bubbles: true, + cancelable: true, + changedTouches: true, + ctrlKey: true, + detail: true, + eventPhase: true, + metaKey: true, + pageX: true, + pageY: true, + shiftKey: true, + view: true, + "char": true, + code: true, + charCode: true, + key: true, + keyCode: true, + button: true, + buttons: true, + clientX: true, + clientY: true, + offsetX: true, + offsetY: true, + pointerId: true, + pointerType: true, + screenX: true, + screenY: true, + targetTouches: true, + toElement: true, + touches: true, + + which: function( event ) { + var button = event.button; + + // Add which for key events + if ( event.which == null && rkeyEvent.test( event.type ) ) { + return event.charCode != null ? event.charCode : event.keyCode; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { + if ( button & 1 ) { + return 1; + } + + if ( button & 2 ) { + return 3; + } + + if ( button & 4 ) { + return 2; + } + + return 0; + } + + return event.which; + } +}, jQuery.event.addProp ); + +jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { + jQuery.event.special[ type ] = { + + // Utilize native event if possible so blur/focus sequence is correct + setup: function() { + + // Claim the first handler + // dataPriv.set( this, "focus", ... ) + // dataPriv.set( this, "blur", ... ) + leverageNative( this, type, expectSync ); + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function() { + + // Force setup before trigger + leverageNative( this, type ); + + // Return non-false to allow normal event-path propagation + return true; + }, + + delegateType: delegateType + }; +} ); + +// Create mouseenter/leave events using mouseover/out and event-time checks +// so that event delegation works in jQuery. +// Do the same for pointerenter/pointerleave and pointerover/pointerout +// +// Support: Safari 7 only +// Safari sends mouseenter too often; see: +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 +// for the description of the bug (it existed in older Chrome versions as well). +jQuery.each( { + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mouseenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +} ); + +jQuery.fn.extend( { + + on: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn ); + }, + one: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? + handleObj.origType + "." + handleObj.namespace : + handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each( function() { + jQuery.event.remove( this, types, fn, selector ); + } ); + } +} ); + + +var + + /* eslint-disable max-len */ + + // See https://github.com/eslint/eslint/issues/3229 + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi, + + /* eslint-enable */ + + // Support: IE <=10 - 11, Edge 12 - 13 only + // In IE/Edge using regex groups here causes severe slowdowns. + // See https://connect.microsoft.com/IE/feedback/details/1736512/ + rnoInnerhtml = /\s*$/g; + +// Prefer a tbody over its parent table for containing new rows +function manipulationTarget( elem, content ) { + if ( nodeName( elem, "table" ) && + nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { + + return jQuery( elem ).children( "tbody" )[ 0 ] || elem; + } + + return elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { + elem.type = elem.type.slice( 5 ); + } else { + elem.removeAttribute( "type" ); + } + + return elem; +} + +function cloneCopyEvent( src, dest ) { + var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events; + + if ( dest.nodeType !== 1 ) { + return; + } + + // 1. Copy private data: events, handlers, etc. + if ( dataPriv.hasData( src ) ) { + pdataOld = dataPriv.access( src ); + pdataCur = dataPriv.set( dest, pdataOld ); + events = pdataOld.events; + + if ( events ) { + delete pdataCur.handle; + pdataCur.events = {}; + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + } + + // 2. Copy user data + if ( dataUser.hasData( src ) ) { + udataOld = dataUser.access( src ); + udataCur = jQuery.extend( {}, udataOld ); + + dataUser.set( dest, udataCur ); + } +} + +// Fix IE bugs, see support tests +function fixInput( src, dest ) { + var nodeName = dest.nodeName.toLowerCase(); + + // Fails to persist the checked state of a cloned checkbox or radio button. + if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + dest.checked = src.checked; + + // Fails to return the selected option to the default selected state when cloning options + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +function domManip( collection, args, callback, ignored ) { + + // Flatten any nested arrays + args = concat.apply( [], args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = collection.length, + iNoClone = l - 1, + value = args[ 0 ], + valueIsFunction = isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( valueIsFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return collection.each( function( index ) { + var self = collection.eq( index ); + if ( valueIsFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + domManip( self, args, callback, ignored ); + } ); + } + + if ( l ) { + fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + // Require either new content or an interest in ignored elements to invoke the callback + if ( first || ignored ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item + // instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( collection[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !dataPriv.access( node, "globalEval" ) && + jQuery.contains( doc, node ) ) { + + if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { + + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl && !node.noModule ) { + jQuery._evalUrl( node.src, { + nonce: node.nonce || node.getAttribute( "nonce" ) + } ); + } + } else { + DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); + } + } + } + } + } + } + + return collection; +} + +function remove( elem, selector, keepData ) { + var node, + nodes = selector ? jQuery.filter( selector, elem ) : elem, + i = 0; + + for ( ; ( node = nodes[ i ] ) != null; i++ ) { + if ( !keepData && node.nodeType === 1 ) { + jQuery.cleanData( getAll( node ) ); + } + + if ( node.parentNode ) { + if ( keepData && isAttached( node ) ) { + setGlobalEval( getAll( node, "script" ) ); + } + node.parentNode.removeChild( node ); + } + } + + return elem; +} + +jQuery.extend( { + htmlPrefilter: function( html ) { + return html.replace( rxhtmlTag, "<$1>" ); + }, + + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var i, l, srcElements, destElements, + clone = elem.cloneNode( true ), + inPage = isAttached( elem ); + + // Fix IE cloning issues + if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && + !jQuery.isXMLDoc( elem ) ) { + + // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + fixInput( srcElements[ i ], destElements[ i ] ); + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + cloneCopyEvent( srcElements[ i ], destElements[ i ] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + cleanData: function( elems ) { + var data, elem, type, + special = jQuery.event.special, + i = 0; + + for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { + if ( acceptData( elem ) ) { + if ( ( data = elem[ dataPriv.expando ] ) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataPriv.expando ] = undefined; + } + if ( elem[ dataUser.expando ] ) { + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataUser.expando ] = undefined; + } + } + } + } +} ); + +jQuery.fn.extend( { + detach: function( selector ) { + return remove( this, selector, true ); + }, + + remove: function( selector ) { + return remove( this, selector ); + }, + + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each( function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + } ); + }, null, value, arguments.length ); + }, + + append: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + } ); + }, + + prepend: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + } ); + }, + + before: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + } ); + }, + + after: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + } ); + }, + + empty: function() { + var elem, + i = 0; + + for ( ; ( elem = this[ i ] ) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + } ); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = jQuery.htmlPrefilter( value ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch ( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var ignored = []; + + // Make the changes, replacing each non-ignored context element with the new content + return domManip( this, arguments, function( elem ) { + var parent = this.parentNode; + + if ( jQuery.inArray( this, ignored ) < 0 ) { + jQuery.cleanData( getAll( this ) ); + if ( parent ) { + parent.replaceChild( elem, this ); + } + } + + // Force callback invocation + }, ignored ); + } +} ); + +jQuery.each( { + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + + // Support: Android <=4.0 only, PhantomJS 1 only + // .get() because push.apply(_, arraylike) throws on ancient WebKit + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +} ); +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); + +var getStyles = function( elem ) { + + // Support: IE <=11 only, Firefox <=30 (#15098, #14150) + // IE throws on elements created in popups + // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" + var view = elem.ownerDocument.defaultView; + + if ( !view || !view.opener ) { + view = window; + } + + return view.getComputedStyle( elem ); + }; + +var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); + + + +( function() { + + // Executing both pixelPosition & boxSizingReliable tests require only one layout + // so they're executed at the same time to save the second computation. + function computeStyleTests() { + + // This is a singleton, we need to execute it only once + if ( !div ) { + return; + } + + container.style.cssText = "position:absolute;left:-11111px;width:60px;" + + "margin-top:1px;padding:0;border:0"; + div.style.cssText = + "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + + "margin:auto;border:1px;padding:1px;" + + "width:60%;top:1%"; + documentElement.appendChild( container ).appendChild( div ); + + var divStyle = window.getComputedStyle( div ); + pixelPositionVal = divStyle.top !== "1%"; + + // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 + reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; + + // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 + // Some styles come back with percentage values, even though they shouldn't + div.style.right = "60%"; + pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; + + // Support: IE 9 - 11 only + // Detect misreporting of content dimensions for box-sizing:border-box elements + boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; + + // Support: IE 9 only + // Detect overflow:scroll screwiness (gh-3699) + // Support: Chrome <=64 + // Don't get tricked when zoom affects offsetWidth (gh-4029) + div.style.position = "absolute"; + scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; + + documentElement.removeChild( container ); + + // Nullify the div so it wouldn't be stored in the memory and + // it will also be a sign that checks already performed + div = null; + } + + function roundPixelMeasures( measure ) { + return Math.round( parseFloat( measure ) ); + } + + var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, + reliableMarginLeftVal, + container = document.createElement( "div" ), + div = document.createElement( "div" ); + + // Finish early in limited (non-browser) environments + if ( !div.style ) { + return; + } + + // Support: IE <=9 - 11 only + // Style of cloned element affects source element cloned (#8908) + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + jQuery.extend( support, { + boxSizingReliable: function() { + computeStyleTests(); + return boxSizingReliableVal; + }, + pixelBoxStyles: function() { + computeStyleTests(); + return pixelBoxStylesVal; + }, + pixelPosition: function() { + computeStyleTests(); + return pixelPositionVal; + }, + reliableMarginLeft: function() { + computeStyleTests(); + return reliableMarginLeftVal; + }, + scrollboxSize: function() { + computeStyleTests(); + return scrollboxSizeVal; + } + } ); +} )(); + + +function curCSS( elem, name, computed ) { + var width, minWidth, maxWidth, ret, + + // Support: Firefox 51+ + // Retrieving style before computed somehow + // fixes an issue with getting wrong values + // on detached elements + style = elem.style; + + computed = computed || getStyles( elem ); + + // getPropertyValue is needed for: + // .css('filter') (IE 9 only, #12537) + // .css('--customProperty) (#3144) + if ( computed ) { + ret = computed.getPropertyValue( name ) || computed[ name ]; + + if ( ret === "" && !isAttached( elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Android Browser returns percentage for some values, + // but width seems to be reliably pixels. + // This is against the CSSOM draft spec: + // https://drafts.csswg.org/cssom/#resolved-values + if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret !== undefined ? + + // Support: IE <=9 - 11 only + // IE returns zIndex value as an integer. + ret + "" : + ret; +} + + +function addGetHookIf( conditionFn, hookFn ) { + + // Define the hook, we'll check on the first run if it's really needed. + return { + get: function() { + if ( conditionFn() ) { + + // Hook not needed (or it's not possible to use it due + // to missing dependency), remove it. + delete this.get; + return; + } + + // Hook needed; redefine it so that the support test is not executed again. + return ( this.get = hookFn ).apply( this, arguments ); + } + }; +} + + +var cssPrefixes = [ "Webkit", "Moz", "ms" ], + emptyStyle = document.createElement( "div" ).style, + vendorProps = {}; + +// Return a vendor-prefixed property or undefined +function vendorPropName( name ) { + + // Check for vendor prefixed names + var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in emptyStyle ) { + return name; + } + } +} + +// Return a potentially-mapped jQuery.cssProps or vendor prefixed property +function finalPropName( name ) { + var final = jQuery.cssProps[ name ] || vendorProps[ name ]; + + if ( final ) { + return final; + } + if ( name in emptyStyle ) { + return name; + } + return vendorProps[ name ] = vendorPropName( name ) || name; +} + + +var + + // Swappable if display is none or starts with table + // except "table", "table-cell", or "table-caption" + // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rcustomProp = /^--/, + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: "0", + fontWeight: "400" + }; + +function setPositiveNumber( elem, value, subtract ) { + + // Any relative (+/-) values have already been + // normalized at this point + var matches = rcssNum.exec( value ); + return matches ? + + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : + value; +} + +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { + var i = dimension === "width" ? 1 : 0, + extra = 0, + delta = 0; + + // Adjustment may not be necessary + if ( box === ( isBorderBox ? "border" : "content" ) ) { + return 0; + } + + for ( ; i < 4; i += 2 ) { + + // Both box models exclude margin + if ( box === "margin" ) { + delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); + } + + // If we get here with a content-box, we're seeking "padding" or "border" or "margin" + if ( !isBorderBox ) { + + // Add padding + delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // For "border" or "margin", add border + if ( box !== "padding" ) { + delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + + // But still keep track of it otherwise + } else { + extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + + // If we get here with a border-box (content + padding + border), we're seeking "content" or + // "padding" or "margin" + } else { + + // For "content", subtract padding + if ( box === "content" ) { + delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // For "content" or "padding", subtract border + if ( box !== "margin" ) { + delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + // Account for positive content-box scroll gutter when requested by providing computedVal + if ( !isBorderBox && computedVal >= 0 ) { + + // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border + // Assuming integer scroll gutter, subtract the rest and round down + delta += Math.max( 0, Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + computedVal - + delta - + extra - + 0.5 + + // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter + // Use an explicit zero to avoid NaN (gh-3964) + ) ) || 0; + } + + return delta; +} + +function getWidthOrHeight( elem, dimension, extra ) { + + // Start with computed style + var styles = getStyles( elem ), + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). + // Fake content-box until we know it's needed to know the true value. + boxSizingNeeded = !support.boxSizingReliable() || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + valueIsBorderBox = isBorderBox, + + val = curCSS( elem, dimension, styles ), + offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); + + // Support: Firefox <=54 + // Return a confounding non-pixel value or feign ignorance, as appropriate. + if ( rnumnonpx.test( val ) ) { + if ( !extra ) { + return val; + } + val = "auto"; + } + + + // Fall back to offsetWidth/offsetHeight when value is "auto" + // This happens for inline elements with no explicit setting (gh-3571) + // Support: Android <=4.1 - 4.3 only + // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) + // Support: IE 9-11 only + // Also use offsetWidth/offsetHeight for when box sizing is unreliable + // We use getClientRects() to check for hidden/disconnected. + // In those cases, the computed value can be trusted to be border-box + if ( ( !support.boxSizingReliable() && isBorderBox || + val === "auto" || + !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && + elem.getClientRects().length ) { + + isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // Where available, offsetWidth/offsetHeight approximate border box dimensions. + // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the + // retrieved value as a content box dimension. + valueIsBorderBox = offsetProp in elem; + if ( valueIsBorderBox ) { + val = elem[ offsetProp ]; + } + } + + // Normalize "" and auto + val = parseFloat( val ) || 0; + + // Adjust for the element's box model + return ( val + + boxModelAdjustment( + elem, + dimension, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles, + + // Provide the current computed size to request scroll gutter calculation (gh-3589) + val + ) + ) + "px"; +} + +jQuery.extend( { + + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "animationIterationCount": true, + "columnCount": true, + "fillOpacity": true, + "flexGrow": true, + "flexShrink": true, + "fontWeight": true, + "gridArea": true, + "gridColumn": true, + "gridColumnEnd": true, + "gridColumnStart": true, + "gridRow": true, + "gridRowEnd": true, + "gridRowStart": true, + "lineHeight": true, + "opacity": true, + "order": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: {}, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ), + style = elem.style; + + // Make sure that we're working with the right name. We don't + // want to query the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Gets hook for the prefixed version, then unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // Convert "+=" or "-=" to relative numbers (#7345) + if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { + value = adjustCSS( elem, name, ret ); + + // Fixes bug #9237 + type = "number"; + } + + // Make sure that null and NaN values aren't set (#7116) + if ( value == null || value !== value ) { + return; + } + + // If a number was passed in, add the unit (except for certain CSS properties) + // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append + // "px" to a few hardcoded values. + if ( type === "number" && !isCustomProp ) { + value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); + } + + // background-* props affect original clone's values + if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !( "set" in hooks ) || + ( value = hooks.set( elem, value, extra ) ) !== undefined ) { + + if ( isCustomProp ) { + style.setProperty( name, value ); + } else { + style[ name ] = value; + } + } + + } else { + + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && + ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { + + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var val, num, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ); + + // Make sure that we're working with the right name. We don't + // want to modify the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Try prefixed name followed by the unprefixed name + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + // Convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Make numeric if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || isFinite( num ) ? num || 0 : val; + } + + return val; + } +} ); + +jQuery.each( [ "height", "width" ], function( i, dimension ) { + jQuery.cssHooks[ dimension ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + + // Certain elements can have dimension info if we invisibly show them + // but it must have a current display style that would benefit + return rdisplayswap.test( jQuery.css( elem, "display" ) ) && + + // Support: Safari 8+ + // Table columns in Safari have non-zero offsetWidth & zero + // getBoundingClientRect().width unless display is changed. + // Support: IE <=11 only + // Running getBoundingClientRect on a disconnected node + // in IE throws an error. + ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? + swap( elem, cssShow, function() { + return getWidthOrHeight( elem, dimension, extra ); + } ) : + getWidthOrHeight( elem, dimension, extra ); + } + }, + + set: function( elem, value, extra ) { + var matches, + styles = getStyles( elem ), + + // Only read styles.position if the test has a chance to fail + // to avoid forcing a reflow. + scrollboxSizeBuggy = !support.scrollboxSize() && + styles.position === "absolute", + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) + boxSizingNeeded = scrollboxSizeBuggy || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + subtract = extra ? + boxModelAdjustment( + elem, + dimension, + extra, + isBorderBox, + styles + ) : + 0; + + // Account for unreliable border-box dimensions by comparing offset* to computed and + // faking a content-box to get border and padding (gh-3699) + if ( isBorderBox && scrollboxSizeBuggy ) { + subtract -= Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + parseFloat( styles[ dimension ] ) - + boxModelAdjustment( elem, dimension, "border", false, styles ) - + 0.5 + ); + } + + // Convert to pixels if value adjustment is needed + if ( subtract && ( matches = rcssNum.exec( value ) ) && + ( matches[ 3 ] || "px" ) !== "px" ) { + + elem.style[ dimension ] = value; + value = jQuery.css( elem, dimension ); + } + + return setPositiveNumber( elem, value, subtract ); + } + }; +} ); + +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, + function( elem, computed ) { + if ( computed ) { + return ( parseFloat( curCSS( elem, "marginLeft" ) ) || + elem.getBoundingClientRect().left - + swap( elem, { marginLeft: 0 }, function() { + return elem.getBoundingClientRect().left; + } ) + ) + "px"; + } + } +); + +// These hooks are used by animate to expand properties +jQuery.each( { + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i = 0, + expanded = {}, + + // Assumes a single number if not a string + parts = typeof value === "string" ? value.split( " " ) : [ value ]; + + for ( ; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( prefix !== "margin" ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +} ); + +jQuery.fn.extend( { + css: function( name, value ) { + return access( this, function( elem, name, value ) { + var styles, len, + map = {}, + i = 0; + + if ( Array.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + } +} ); + + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || jQuery.easing._default; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + // Use a property on the element directly when it is not a DOM element, + // or when there is no matching style property that exists. + if ( tween.elem.nodeType !== 1 || + tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { + return tween.elem[ tween.prop ]; + } + + // Passing an empty string as a 3rd parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails. + // Simple values such as "10px" are parsed to Float; + // complex values such as "rotate(1rad)" are returned as-is. + result = jQuery.css( tween.elem, tween.prop, "" ); + + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + + // Use step hook for back compat. + // Use cssHook if its there. + // Use .style if available and use plain properties where available. + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.nodeType === 1 && ( + jQuery.cssHooks[ tween.prop ] || + tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +// Support: IE <=9 only +// Panic based approach to setting things on disconnected nodes +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { + set: function( tween ) { + if ( tween.elem.nodeType && tween.elem.parentNode ) { + tween.elem[ tween.prop ] = tween.now; + } + } +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p * Math.PI ) / 2; + }, + _default: "swing" +}; + +jQuery.fx = Tween.prototype.init; + +// Back compat <1.8 extension point +jQuery.fx.step = {}; + + + + +var + fxNow, inProgress, + rfxtypes = /^(?:toggle|show|hide)$/, + rrun = /queueHooks$/; + +function schedule() { + if ( inProgress ) { + if ( document.hidden === false && window.requestAnimationFrame ) { + window.requestAnimationFrame( schedule ); + } else { + window.setTimeout( schedule, jQuery.fx.interval ); + } + + jQuery.fx.tick(); + } +} + +// Animations created synchronously will run synchronously +function createFxNow() { + window.setTimeout( function() { + fxNow = undefined; + } ); + return ( fxNow = Date.now() ); +} + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + i = 0, + attrs = { height: type }; + + // If we include width, step value is 1 to do all cssExpand values, + // otherwise step value is 2 to skip over Left and Right + includeWidth = includeWidth ? 1 : 0; + for ( ; i < 4; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +function createTween( value, prop, animation ) { + var tween, + collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { + + // We're done with this property + return tween; + } + } +} + +function defaultPrefilter( elem, props, opts ) { + var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, + isBox = "width" in props || "height" in props, + anim = this, + orig = {}, + style = elem.style, + hidden = elem.nodeType && isHiddenWithinTree( elem ), + dataShow = dataPriv.get( elem, "fxshow" ); + + // Queue-skipping animations hijack the fx hooks + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always( function() { + + // Ensure the complete handler is called before this completes + anim.always( function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + } ); + } ); + } + + // Detect show/hide animations + for ( prop in props ) { + value = props[ prop ]; + if ( rfxtypes.test( value ) ) { + delete props[ prop ]; + toggle = toggle || value === "toggle"; + if ( value === ( hidden ? "hide" : "show" ) ) { + + // Pretend to be hidden if this is a "show" and + // there is still data from a stopped show/hide + if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { + hidden = true; + + // Ignore all other no-op show/hide data + } else { + continue; + } + } + orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); + } + } + + // Bail out if this is a no-op like .hide().hide() + propTween = !jQuery.isEmptyObject( props ); + if ( !propTween && jQuery.isEmptyObject( orig ) ) { + return; + } + + // Restrict "overflow" and "display" styles during box animations + if ( isBox && elem.nodeType === 1 ) { + + // Support: IE <=9 - 11, Edge 12 - 15 + // Record all 3 overflow attributes because IE does not infer the shorthand + // from identically-valued overflowX and overflowY and Edge just mirrors + // the overflowX value there. + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Identify a display type, preferring old show/hide data over the CSS cascade + restoreDisplay = dataShow && dataShow.display; + if ( restoreDisplay == null ) { + restoreDisplay = dataPriv.get( elem, "display" ); + } + display = jQuery.css( elem, "display" ); + if ( display === "none" ) { + if ( restoreDisplay ) { + display = restoreDisplay; + } else { + + // Get nonempty value(s) by temporarily forcing visibility + showHide( [ elem ], true ); + restoreDisplay = elem.style.display || restoreDisplay; + display = jQuery.css( elem, "display" ); + showHide( [ elem ] ); + } + } + + // Animate inline elements as inline-block + if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { + if ( jQuery.css( elem, "float" ) === "none" ) { + + // Restore the original display value at the end of pure show/hide animations + if ( !propTween ) { + anim.done( function() { + style.display = restoreDisplay; + } ); + if ( restoreDisplay == null ) { + display = style.display; + restoreDisplay = display === "none" ? "" : display; + } + } + style.display = "inline-block"; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + anim.always( function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + } ); + } + + // Implement show/hide animations + propTween = false; + for ( prop in orig ) { + + // General show/hide setup for this element animation + if ( !propTween ) { + if ( dataShow ) { + if ( "hidden" in dataShow ) { + hidden = dataShow.hidden; + } + } else { + dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); + } + + // Store hidden/visible for toggle so `.stop().toggle()` "reverses" + if ( toggle ) { + dataShow.hidden = !hidden; + } + + // Show elements before animating them + if ( hidden ) { + showHide( [ elem ], true ); + } + + /* eslint-disable no-loop-func */ + + anim.done( function() { + + /* eslint-enable no-loop-func */ + + // The final step of a "hide" animation is actually hiding the element + if ( !hidden ) { + showHide( [ elem ] ); + } + dataPriv.remove( elem, "fxshow" ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + } ); + } + + // Per-property setup + propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = propTween.start; + if ( hidden ) { + propTween.end = propTween.start; + propTween.start = 0; + } + } + } +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = camelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( Array.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // Not quite $.extend, this won't overwrite existing keys. + // Reusing 'index' because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +function Animation( elem, properties, options ) { + var result, + stopped, + index = 0, + length = Animation.prefilters.length, + deferred = jQuery.Deferred().always( function() { + + // Don't match elem in the :animated selector + delete tick.elem; + } ), + tick = function() { + if ( stopped ) { + return false; + } + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + + // Support: Android 2.3 only + // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) + temp = remaining / animation.duration || 0, + percent = 1 - temp, + index = 0, + length = animation.tweens.length; + + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ] ); + + // If there's more to do, yield + if ( percent < 1 && length ) { + return remaining; + } + + // If this was an empty animation, synthesize a final progress notification + if ( !length ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + } + + // Resolve the animation and report its conclusion + deferred.resolveWith( elem, [ animation ] ); + return false; + }, + animation = deferred.promise( { + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { + specialEasing: {}, + easing: jQuery.easing._default + }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + + // If we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + if ( stopped ) { + return this; + } + stopped = true; + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // Resolve when we played the last frame; otherwise, reject + if ( gotoEnd ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + } ), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length; index++ ) { + result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + if ( isFunction( result.stop ) ) { + jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = + result.stop.bind( result ); + } + return result; + } + } + + jQuery.map( props, createTween, animation ); + + if ( isFunction( animation.opts.start ) ) { + animation.opts.start.call( elem, animation ); + } + + // Attach callbacks from options + animation + .progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); + + jQuery.fx.timer( + jQuery.extend( tick, { + elem: elem, + anim: animation, + queue: animation.opts.queue + } ) + ); + + return animation; +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweeners: { + "*": [ function( prop, value ) { + var tween = this.createTween( prop, value ); + adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); + return tween; + } ] + }, + + tweener: function( props, callback ) { + if ( isFunction( props ) ) { + callback = props; + props = [ "*" ]; + } else { + props = props.match( rnothtmlwhite ); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length; index++ ) { + prop = props[ index ]; + Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; + Animation.tweeners[ prop ].unshift( callback ); + } + }, + + prefilters: [ defaultPrefilter ], + + prefilter: function( callback, prepend ) { + if ( prepend ) { + Animation.prefilters.unshift( callback ); + } else { + Animation.prefilters.push( callback ); + } + } +} ); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || !fn && easing || + isFunction( speed ) && speed, + duration: speed, + easing: fn && easing || easing && !isFunction( easing ) && easing + }; + + // Go to the end state if fx are off + if ( jQuery.fx.off ) { + opt.duration = 0; + + } else { + if ( typeof opt.duration !== "number" ) { + if ( opt.duration in jQuery.fx.speeds ) { + opt.duration = jQuery.fx.speeds[ opt.duration ]; + + } else { + opt.duration = jQuery.fx.speeds._default; + } + } + } + + // Normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( isFunction( opt.old ) ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.fn.extend( { + fadeTo: function( speed, to, easing, callback ) { + + // Show any hidden elements after setting opacity to 0 + return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() + + // Animate to the value specified + .end().animate( { opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + + // Empty animations, or finishing resolves immediately + if ( empty || dataPriv.get( this, "finish" ) ) { + anim.stop( true ); + } + }; + doAnimation.finish = doAnimation; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue && type !== false ) { + this.queue( type || "fx", [] ); + } + + return this.each( function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = dataPriv.get( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && + ( type == null || timers[ index ].queue === type ) ) { + + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // Start the next in the queue if the last step wasn't forced. + // Timers currently will call their complete callbacks, which + // will dequeue but only if they were gotoEnd. + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + } ); + }, + finish: function( type ) { + if ( type !== false ) { + type = type || "fx"; + } + return this.each( function() { + var index, + data = dataPriv.get( this ), + queue = data[ type + "queue" ], + hooks = data[ type + "queueHooks" ], + timers = jQuery.timers, + length = queue ? queue.length : 0; + + // Enable finishing flag on private data + data.finish = true; + + // Empty the queue first + jQuery.queue( this, type, [] ); + + if ( hooks && hooks.stop ) { + hooks.stop.call( this, true ); + } + + // Look for any active animations, and finish them + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && timers[ index ].queue === type ) { + timers[ index ].anim.stop( true ); + timers.splice( index, 1 ); + } + } + + // Look for any animations in the old queue and finish them + for ( index = 0; index < length; index++ ) { + if ( queue[ index ] && queue[ index ].finish ) { + queue[ index ].finish.call( this ); + } + } + + // Turn off finishing flag + delete data.finish; + } ); + } +} ); + +jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +} ); + +// Generate shortcuts for custom animations +jQuery.each( { + slideDown: genFx( "show" ), + slideUp: genFx( "hide" ), + slideToggle: genFx( "toggle" ), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +} ); + +jQuery.timers = []; +jQuery.fx.tick = function() { + var timer, + i = 0, + timers = jQuery.timers; + + fxNow = Date.now(); + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + + // Run the timer and safely remove it when done (allowing for external removal) + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } + fxNow = undefined; +}; + +jQuery.fx.timer = function( timer ) { + jQuery.timers.push( timer ); + jQuery.fx.start(); +}; + +jQuery.fx.interval = 13; +jQuery.fx.start = function() { + if ( inProgress ) { + return; + } + + inProgress = true; + schedule(); +}; + +jQuery.fx.stop = function() { + inProgress = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + + // Default speed + _default: 400 +}; + + +// Based off of the plugin by Clint Helfers, with permission. +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ +jQuery.fn.delay = function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = window.setTimeout( next, time ); + hooks.stop = function() { + window.clearTimeout( timeout ); + }; + } ); +}; + + +( function() { + var input = document.createElement( "input" ), + select = document.createElement( "select" ), + opt = select.appendChild( document.createElement( "option" ) ); + + input.type = "checkbox"; + + // Support: Android <=4.3 only + // Default value for a checkbox should be "on" + support.checkOn = input.value !== ""; + + // Support: IE <=11 only + // Must access selectedIndex to make default options select + support.optSelected = opt.selected; + + // Support: IE <=11 only + // An input loses its value after becoming a radio + input = document.createElement( "input" ); + input.value = "t"; + input.type = "radio"; + support.radioValue = input.value === "t"; +} )(); + + +var boolHook, + attrHandle = jQuery.expr.attrHandle; + +jQuery.fn.extend( { + attr: function( name, value ) { + return access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each( function() { + jQuery.removeAttr( this, name ); + } ); + } +} ); + +jQuery.extend( { + attr: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set attributes on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + // Attribute hooks are determined by the lowercase version + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + hooks = jQuery.attrHooks[ name.toLowerCase() ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); + } + + if ( value !== undefined ) { + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + } + + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + elem.setAttribute( name, value + "" ); + return value; + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? undefined : ret; + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !support.radioValue && value === "radio" && + nodeName( elem, "input" ) ) { + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + removeAttr: function( elem, value ) { + var name, + i = 0, + + // Attribute names can contain non-HTML whitespace characters + // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 + attrNames = value && value.match( rnothtmlwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( ( name = attrNames[ i++ ] ) ) { + elem.removeAttribute( name ); + } + } + } +} ); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + elem.setAttribute( name, name ); + } + return name; + } +}; + +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { + var getter = attrHandle[ name ] || jQuery.find.attr; + + attrHandle[ name ] = function( elem, name, isXML ) { + var ret, handle, + lowercaseName = name.toLowerCase(); + + if ( !isXML ) { + + // Avoid an infinite loop by temporarily removing this function from the getter + handle = attrHandle[ lowercaseName ]; + attrHandle[ lowercaseName ] = ret; + ret = getter( elem, name, isXML ) != null ? + lowercaseName : + null; + attrHandle[ lowercaseName ] = handle; + } + return ret; + }; +} ); + + + + +var rfocusable = /^(?:input|select|textarea|button)$/i, + rclickable = /^(?:a|area)$/i; + +jQuery.fn.extend( { + prop: function( name, value ) { + return access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + return this.each( function() { + delete this[ jQuery.propFix[ name ] || name ]; + } ); + } +} ); + +jQuery.extend( { + prop: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set properties on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + return ( elem[ name ] = value ); + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + return elem[ name ]; + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + + // Support: IE <=9 - 11 only + // elem.tabIndex doesn't always return the + // correct value when it hasn't been explicitly set + // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + if ( tabindex ) { + return parseInt( tabindex, 10 ); + } + + if ( + rfocusable.test( elem.nodeName ) || + rclickable.test( elem.nodeName ) && + elem.href + ) { + return 0; + } + + return -1; + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + } +} ); + +// Support: IE <=11 only +// Accessing the selectedIndex property +// forces the browser to respect setting selected +// on the option +// The getter ensures a default option is selected +// when in an optgroup +// eslint rule "no-unused-expressions" is disabled for this code +// since it considers such accessions noop +if ( !support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent && parent.parentNode ) { + parent.parentNode.selectedIndex; + } + return null; + }, + set: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent ) { + parent.selectedIndex; + + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + } + }; +} + +jQuery.each( [ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +} ); + + + + + // Strip and collapse whitespace according to HTML spec + // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace + function stripAndCollapse( value ) { + var tokens = value.match( rnothtmlwhite ) || []; + return tokens.join( " " ); + } + + +function getClass( elem ) { + return elem.getAttribute && elem.getAttribute( "class" ) || ""; +} + +function classesToArray( value ) { + if ( Array.isArray( value ) ) { + return value; + } + if ( typeof value === "string" ) { + return value.match( rnothtmlwhite ) || []; + } + return []; +} + +jQuery.fn.extend( { + addClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + if ( !arguments.length ) { + return this.attr( "class", "" ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) > -1 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isValidValue = type === "string" || Array.isArray( value ); + + if ( typeof stateVal === "boolean" && isValidValue ) { + return stateVal ? this.addClass( value ) : this.removeClass( value ); + } + + if ( isFunction( value ) ) { + return this.each( function( i ) { + jQuery( this ).toggleClass( + value.call( this, i, getClass( this ), stateVal ), + stateVal + ); + } ); + } + + return this.each( function() { + var className, i, self, classNames; + + if ( isValidValue ) { + + // Toggle individual class names + i = 0; + self = jQuery( this ); + classNames = classesToArray( value ); + + while ( ( className = classNames[ i++ ] ) ) { + + // Check each className given, space separated list + if ( self.hasClass( className ) ) { + self.removeClass( className ); + } else { + self.addClass( className ); + } + } + + // Toggle whole class name + } else if ( value === undefined || type === "boolean" ) { + className = getClass( this ); + if ( className ) { + + // Store className if set + dataPriv.set( this, "__className__", className ); + } + + // If the element has a class name or if we're passed `false`, + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + if ( this.setAttribute ) { + this.setAttribute( "class", + className || value === false ? + "" : + dataPriv.get( this, "__className__" ) || "" + ); + } + } + } ); + }, + + hasClass: function( selector ) { + var className, elem, + i = 0; + + className = " " + selector + " "; + while ( ( elem = this[ i++ ] ) ) { + if ( elem.nodeType === 1 && + ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { + return true; + } + } + + return false; + } +} ); + + + + +var rreturn = /\r/g; + +jQuery.fn.extend( { + val: function( value ) { + var hooks, ret, valueIsFunction, + elem = this[ 0 ]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || + jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && + "get" in hooks && + ( ret = hooks.get( elem, "value" ) ) !== undefined + ) { + return ret; + } + + ret = elem.value; + + // Handle most common string cases + if ( typeof ret === "string" ) { + return ret.replace( rreturn, "" ); + } + + // Handle cases where value is null/undef or number + return ret == null ? "" : ret; + } + + return; + } + + valueIsFunction = isFunction( value ); + + return this.each( function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( valueIsFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + + } else if ( typeof val === "number" ) { + val += ""; + + } else if ( Array.isArray( val ) ) { + val = jQuery.map( val, function( value ) { + return value == null ? "" : value + ""; + } ); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + } ); + } +} ); + +jQuery.extend( { + valHooks: { + option: { + get: function( elem ) { + + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + + // Support: IE <=10 - 11 only + // option.text throws exceptions (#14686, #14858) + // Strip and collapse whitespace + // https://html.spec.whatwg.org/#strip-and-collapse-whitespace + stripAndCollapse( jQuery.text( elem ) ); + } + }, + select: { + get: function( elem ) { + var value, option, i, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one", + values = one ? null : [], + max = one ? index + 1 : options.length; + + if ( index < 0 ) { + i = max; + + } else { + i = one ? index : 0; + } + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Support: IE <=9 only + // IE8-9 doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + + // Don't return options that are disabled or in a disabled optgroup + !option.disabled && + ( !option.parentNode.disabled || + !nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + + /* eslint-disable no-cond-assign */ + + if ( option.selected = + jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 + ) { + optionSet = true; + } + + /* eslint-enable no-cond-assign */ + } + + // Force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + } +} ); + +// Radios and checkboxes getter/setter +jQuery.each( [ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( Array.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); + } + } + }; + if ( !support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + return elem.getAttribute( "value" ) === null ? "on" : elem.value; + }; + } +} ); + + + + +// Return jQuery for attributes-only inclusion + + +support.focusin = "onfocusin" in window; + + +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + stopPropagationCallback = function( e ) { + e.stopPropagation(); + }; + +jQuery.extend( jQuery.event, { + + trigger: function( event, data, elem, onlyHandlers ) { + + var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; + + cur = lastElement = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "." ) > -1 ) { + + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split( "." ); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf( ":" ) < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join( "." ); + event.rnamespace = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === ( elem.ownerDocument || document ) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { + lastElement = cur; + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( dataPriv.get( cur, "events" ) || {} )[ event.type ] && + dataPriv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( ( !special._default || + special._default.apply( eventPath.pop(), data ) === false ) && + acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name as the event. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + + if ( event.isPropagationStopped() ) { + lastElement.addEventListener( type, stopPropagationCallback ); + } + + elem[ type ](); + + if ( event.isPropagationStopped() ) { + lastElement.removeEventListener( type, stopPropagationCallback ); + } + + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + // Piggyback on a donor event to simulate a different one + // Used only for `focus(in | out)` events + simulate: function( type, elem, event ) { + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true + } + ); + + jQuery.event.trigger( e, null, elem ); + } + +} ); + +jQuery.fn.extend( { + + trigger: function( type, data ) { + return this.each( function() { + jQuery.event.trigger( type, data, this ); + } ); + }, + triggerHandler: function( type, data ) { + var elem = this[ 0 ]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +} ); + + +// Support: Firefox <=44 +// Firefox doesn't have focus(in | out) events +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 +// +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 +// focus(in | out) events fire after focus & blur events, +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 +if ( !support.focusin ) { + jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + var doc = this.ownerDocument || this, + attaches = dataPriv.access( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this, + attaches = dataPriv.access( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + dataPriv.remove( doc, fix ); + + } else { + dataPriv.access( doc, fix, attaches ); + } + } + }; + } ); +} +var location = window.location; + +var nonce = Date.now(); + +var rquery = ( /\?/ ); + + + +// Cross-browser xml parsing +jQuery.parseXML = function( data ) { + var xml; + if ( !data || typeof data !== "string" ) { + return null; + } + + // Support: IE 9 - 11 only + // IE throws on parseFromString with invalid input. + try { + xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); + } catch ( e ) { + xml = undefined; + } + + if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; +}; + + +var + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, + rsubmittable = /^(?:input|select|textarea|keygen)/i; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( Array.isArray( obj ) ) { + + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + + // Item is non-scalar (array or object), encode its numeric index. + buildParams( + prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", + v, + traditional, + add + ); + } + } ); + + } else if ( !traditional && toType( obj ) === "object" ) { + + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + + // Serialize scalar item. + add( prefix, obj ); + } +} + +// Serialize an array of form elements or a set of +// key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, valueOrFunction ) { + + // If value is a function, invoke it and use its return value + var value = isFunction( valueOrFunction ) ? + valueOrFunction() : + valueOrFunction; + + s[ s.length ] = encodeURIComponent( key ) + "=" + + encodeURIComponent( value == null ? "" : value ); + }; + + if ( a == null ) { + return ""; + } + + // If an array was passed in, assume that it is an array of form elements. + if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + } ); + + } else { + + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ); +}; + +jQuery.fn.extend( { + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map( function() { + + // Can add propHook for "elements" to filter or add form elements + var elements = jQuery.prop( this, "elements" ); + return elements ? jQuery.makeArray( elements ) : this; + } ) + .filter( function() { + var type = this.type; + + // Use .is( ":disabled" ) so that fieldset[disabled] works + return this.name && !jQuery( this ).is( ":disabled" ) && + rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && + ( this.checked || !rcheckableType.test( type ) ); + } ) + .map( function( i, elem ) { + var val = jQuery( this ).val(); + + if ( val == null ) { + return null; + } + + if ( Array.isArray( val ) ) { + return jQuery.map( val, function( val ) { + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ); + } + + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ).get(); + } +} ); + + +var + r20 = /%20/g, + rhash = /#.*$/, + rantiCache = /([?&])_=[^&]*/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, + + // #7653, #8125, #8152: local protocol detection + rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression + allTypes = "*/".concat( "*" ), + + // Anchor tag for parsing the document origin + originAnchor = document.createElement( "a" ); + originAnchor.href = location.href; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, + i = 0, + dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; + + if ( isFunction( func ) ) { + + // For each dataType in the dataTypeExpression + while ( ( dataType = dataTypes[ i++ ] ) ) { + + // Prepend if requested + if ( dataType[ 0 ] === "+" ) { + dataType = dataType.slice( 1 ) || "*"; + ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); + + // Otherwise append + } else { + ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); + } + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { + + var inspected = {}, + seekingTransport = ( structure === transports ); + + function inspect( dataType ) { + var selected; + inspected[ dataType ] = true; + jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { + var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); + if ( typeof dataTypeOrTransport === "string" && + !seekingTransport && !inspected[ dataTypeOrTransport ] ) { + + options.dataTypes.unshift( dataTypeOrTransport ); + inspect( dataTypeOrTransport ); + return false; + } else if ( seekingTransport ) { + return !( selected = dataTypeOrTransport ); + } + } ); + return selected; + } + + return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes #9887 +function ajaxExtend( target, src ) { + var key, deep, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } + + return target; +} + +/* Handles responses to an ajax request: + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + + var ct, type, finalDataType, firstDataType, + contents = s.contents, + dataTypes = s.dataTypes; + + // Remove auto dataType and get content-type in the process + while ( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +/* Chain conversions given the request and the original response + * Also sets the responseXXX fields on the jqXHR instance + */ +function ajaxConvert( s, response, jqXHR, isSuccess ) { + var conv2, current, conv, tmp, prev, + converters = {}, + + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(); + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + current = dataTypes.shift(); + + // Convert to each sequential dataType + while ( current ) { + + if ( s.responseFields[ current ] ) { + jqXHR[ s.responseFields[ current ] ] = response; + } + + // Apply the dataFilter if provided + if ( !prev && isSuccess && s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + prev = current; + current = dataTypes.shift(); + + if ( current ) { + + // There's only work to do if current dataType is non-auto + if ( current === "*" ) { + + current = prev; + + // Convert response if prev dataType is non-auto and differs from current + } else if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split( " " ); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.unshift( tmp[ 1 ] ); + } + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s.throws ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { + state: "parsererror", + error: conv ? e : "No conversion from " + prev + " to " + current + }; + } + } + } + } + } + } + + return { state: "success", data: response }; +} + +jQuery.extend( { + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {}, + + ajaxSettings: { + url: location.href, + type: "GET", + isLocal: rlocalProtocol.test( location.protocol ), + global: true, + processData: true, + async: true, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + "*": allTypes, + text: "text/plain", + html: "text/html", + xml: "application/xml, text/xml", + json: "application/json, text/javascript" + }, + + contents: { + xml: /\bxml\b/, + html: /\bhtml/, + json: /\bjson\b/ + }, + + responseFields: { + xml: "responseXML", + text: "responseText", + json: "responseJSON" + }, + + // Data converters + // Keys separate source (or catchall "*") and destination types with a single space + converters: { + + // Convert anything to text + "* text": String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": JSON.parse, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + url: true, + context: true + } + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + return settings ? + + // Building a settings object + ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : + + // Extending ajaxSettings + ajaxExtend( jQuery.ajaxSettings, target ); + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var transport, + + // URL without anti-cache param + cacheURL, + + // Response headers + responseHeadersString, + responseHeaders, + + // timeout handle + timeoutTimer, + + // Url cleanup var + urlAnchor, + + // Request state (becomes false upon send and true upon completion) + completed, + + // To know if global events are to be dispatched + fireGlobals, + + // Loop variable + i, + + // uncached part of the url + uncached, + + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + + // Callbacks context + callbackContext = s.context || s, + + // Context for global events is callbackContext if it is a DOM node or jQuery collection + globalEventContext = s.context && + ( callbackContext.nodeType || callbackContext.jquery ) ? + jQuery( callbackContext ) : + jQuery.event, + + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks( "once memory" ), + + // Status-dependent callbacks + statusCode = s.statusCode || {}, + + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + + // Default abort message + strAbort = "canceled", + + // Fake xhr + jqXHR = { + readyState: 0, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( completed ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while ( ( match = rheaders.exec( responseHeadersString ) ) ) { + responseHeaders[ match[ 1 ].toLowerCase() + " " ] = + ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) + .concat( match[ 2 ] ); + } + } + match = responseHeaders[ key.toLowerCase() + " " ]; + } + return match == null ? null : match.join( ", " ); + }, + + // Raw string + getAllResponseHeaders: function() { + return completed ? responseHeadersString : null; + }, + + // Caches the header + setRequestHeader: function( name, value ) { + if ( completed == null ) { + name = requestHeadersNames[ name.toLowerCase() ] = + requestHeadersNames[ name.toLowerCase() ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( completed == null ) { + s.mimeType = type; + } + return this; + }, + + // Status-dependent callbacks + statusCode: function( map ) { + var code; + if ( map ) { + if ( completed ) { + + // Execute the appropriate callbacks + jqXHR.always( map[ jqXHR.status ] ); + } else { + + // Lazy-add the new callbacks in a way that preserves old ones + for ( code in map ) { + statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; + } + } + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + var finalText = statusText || strAbort; + if ( transport ) { + transport.abort( finalText ); + } + done( 0, finalText ); + return this; + } + }; + + // Attach deferreds + deferred.promise( jqXHR ); + + // Add protocol if not provided (prefilters might expect it) + // Handle falsy url in the settings object (#10093: consistency with old signature) + // We also use the url parameter if available + s.url = ( ( url || s.url || location.href ) + "" ) + .replace( rprotocol, location.protocol + "//" ); + + // Alias method option to type as per ticket #12004 + s.type = options.method || options.type || s.method || s.type; + + // Extract dataTypes list + s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; + + // A cross-domain request is in order when the origin doesn't match the current origin. + if ( s.crossDomain == null ) { + urlAnchor = document.createElement( "a" ); + + // Support: IE <=8 - 11, Edge 12 - 15 + // IE throws exception on accessing the href property if url is malformed, + // e.g. http://example.com:80x/ + try { + urlAnchor.href = s.url; + + // Support: IE <=8 - 11 only + // Anchor's host property isn't correctly set when s.url is relative + urlAnchor.href = urlAnchor.href; + s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== + urlAnchor.protocol + "//" + urlAnchor.host; + } catch ( e ) { + + // If there is an error parsing the URL, assume it is crossDomain, + // it can be rejected by the transport if it is invalid + s.crossDomain = true; + } + } + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // If request was aborted inside a prefilter, stop there + if ( completed ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) + fireGlobals = jQuery.event && s.global; + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger( "ajaxStart" ); + } + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Save the URL in case we're toying with the If-Modified-Since + // and/or If-None-Match header later on + // Remove hash to simplify url manipulation + cacheURL = s.url.replace( rhash, "" ); + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // Remember the hash so we can put it back + uncached = s.url.slice( cacheURL.length ); + + // If data is available and should be processed, append data to url + if ( s.data && ( s.processData || typeof s.data === "string" ) ) { + cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; + + // #9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Add or update anti-cache param if needed + if ( s.cache === false ) { + cacheURL = cacheURL.replace( rantiCache, "$1" ); + uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce++ ) + uncached; + } + + // Put hash and anti-cache on the URL that will be requested (gh-1732) + s.url = cacheURL + uncached; + + // Change '%20' to '+' if this is encoded form body content (gh-2658) + } else if ( s.data && s.processData && + ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { + s.data = s.data.replace( r20, "+" ); + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + if ( jQuery.lastModified[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); + } + if ( jQuery.etag[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? + s.accepts[ s.dataTypes[ 0 ] ] + + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && + ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { + + // Abort if not done already and return + return jqXHR.abort(); + } + + // Aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + completeDeferred.add( s.complete ); + jqXHR.done( s.success ); + jqXHR.fail( s.error ); + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + + // If request was aborted inside ajaxSend, stop there + if ( completed ) { + return jqXHR; + } + + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = window.setTimeout( function() { + jqXHR.abort( "timeout" ); + }, s.timeout ); + } + + try { + completed = false; + transport.send( requestHeaders, done ); + } catch ( e ) { + + // Rethrow post-completion exceptions + if ( completed ) { + throw e; + } + + // Propagate others as results + done( -1, e ); + } + } + + // Callback for when everything is done + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Ignore repeat invocations + if ( completed ) { + return; + } + + completed = true; + + // Clear timeout if it exists + if ( timeoutTimer ) { + window.clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Determine if successful + isSuccess = status >= 200 && status < 300 || status === 304; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // Convert no matter what (that way responseXXX fields are always set) + response = ajaxConvert( s, response, jqXHR, isSuccess ); + + // If successful, handle type chaining + if ( isSuccess ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + modified = jqXHR.getResponseHeader( "Last-Modified" ); + if ( modified ) { + jQuery.lastModified[ cacheURL ] = modified; + } + modified = jqXHR.getResponseHeader( "etag" ); + if ( modified ) { + jQuery.etag[ cacheURL ] = modified; + } + } + + // if no content + if ( status === 204 || s.type === "HEAD" ) { + statusText = "nocontent"; + + // if not modified + } else if ( status === 304 ) { + statusText = "notmodified"; + + // If we have data, let's convert it + } else { + statusText = response.state; + success = response.data; + error = response.error; + isSuccess = !error; + } + } else { + + // Extract error from statusText and normalize for non-aborts + error = statusText; + if ( status || !statusText ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = ( nativeStatusText || statusText ) + ""; + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger( "ajaxStop" ); + } + } + } + + return jqXHR; + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + } +} ); + +jQuery.each( [ "get", "post" ], function( i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + + // Shift arguments if data argument was omitted + if ( isFunction( data ) ) { + type = type || callback; + callback = data; + data = undefined; + } + + // The url can be an options object (which then must have .url) + return jQuery.ajax( jQuery.extend( { + url: url, + type: method, + dataType: type, + data: data, + success: callback + }, jQuery.isPlainObject( url ) && url ) ); + }; +} ); + + +jQuery._evalUrl = function( url, options ) { + return jQuery.ajax( { + url: url, + + // Make this explicit, since user can override this through ajaxSetup (#11264) + type: "GET", + dataType: "script", + cache: true, + async: false, + global: false, + + // Only evaluate the response if it is successful (gh-4126) + // dataFilter is not invoked for failure responses, so using it instead + // of the default converter is kludgy but it works. + converters: { + "text script": function() {} + }, + dataFilter: function( response ) { + jQuery.globalEval( response, options ); + } + } ); +}; + + +jQuery.fn.extend( { + wrapAll: function( html ) { + var wrap; + + if ( this[ 0 ] ) { + if ( isFunction( html ) ) { + html = html.call( this[ 0 ] ); + } + + // The elements to wrap the target around + wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); + + if ( this[ 0 ].parentNode ) { + wrap.insertBefore( this[ 0 ] ); + } + + wrap.map( function() { + var elem = this; + + while ( elem.firstElementChild ) { + elem = elem.firstElementChild; + } + + return elem; + } ).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( isFunction( html ) ) { + return this.each( function( i ) { + jQuery( this ).wrapInner( html.call( this, i ) ); + } ); + } + + return this.each( function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + } ); + }, + + wrap: function( html ) { + var htmlIsFunction = isFunction( html ); + + return this.each( function( i ) { + jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); + } ); + }, + + unwrap: function( selector ) { + this.parent( selector ).not( "body" ).each( function() { + jQuery( this ).replaceWith( this.childNodes ); + } ); + return this; + } +} ); + + +jQuery.expr.pseudos.hidden = function( elem ) { + return !jQuery.expr.pseudos.visible( elem ); +}; +jQuery.expr.pseudos.visible = function( elem ) { + return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); +}; + + + + +jQuery.ajaxSettings.xhr = function() { + try { + return new window.XMLHttpRequest(); + } catch ( e ) {} +}; + +var xhrSuccessStatus = { + + // File protocol always yields status code 0, assume 200 + 0: 200, + + // Support: IE <=9 only + // #1450: sometimes IE returns 1223 when it should be 204 + 1223: 204 + }, + xhrSupported = jQuery.ajaxSettings.xhr(); + +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); +support.ajax = xhrSupported = !!xhrSupported; + +jQuery.ajaxTransport( function( options ) { + var callback, errorCallback; + + // Cross domain only allowed if supported through XMLHttpRequest + if ( support.cors || xhrSupported && !options.crossDomain ) { + return { + send: function( headers, complete ) { + var i, + xhr = options.xhr(); + + xhr.open( + options.type, + options.url, + options.async, + options.username, + options.password + ); + + // Apply custom fields if provided + if ( options.xhrFields ) { + for ( i in options.xhrFields ) { + xhr[ i ] = options.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( options.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( options.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { + headers[ "X-Requested-With" ] = "XMLHttpRequest"; + } + + // Set headers + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + + // Callback + callback = function( type ) { + return function() { + if ( callback ) { + callback = errorCallback = xhr.onload = + xhr.onerror = xhr.onabort = xhr.ontimeout = + xhr.onreadystatechange = null; + + if ( type === "abort" ) { + xhr.abort(); + } else if ( type === "error" ) { + + // Support: IE <=9 only + // On a manual native abort, IE9 throws + // errors on any property access that is not readyState + if ( typeof xhr.status !== "number" ) { + complete( 0, "error" ); + } else { + complete( + + // File: protocol always yields status 0; see #8605, #14207 + xhr.status, + xhr.statusText + ); + } + } else { + complete( + xhrSuccessStatus[ xhr.status ] || xhr.status, + xhr.statusText, + + // Support: IE <=9 only + // IE9 has no XHR2 but throws on binary (trac-11426) + // For XHR2 non-text, let the caller handle it (gh-2498) + ( xhr.responseType || "text" ) !== "text" || + typeof xhr.responseText !== "string" ? + { binary: xhr.response } : + { text: xhr.responseText }, + xhr.getAllResponseHeaders() + ); + } + } + }; + }; + + // Listen to events + xhr.onload = callback(); + errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); + + // Support: IE 9 only + // Use onreadystatechange to replace onabort + // to handle uncaught aborts + if ( xhr.onabort !== undefined ) { + xhr.onabort = errorCallback; + } else { + xhr.onreadystatechange = function() { + + // Check readyState before timeout as it changes + if ( xhr.readyState === 4 ) { + + // Allow onerror to be called first, + // but that will not handle a native abort + // Also, save errorCallback to a variable + // as xhr.onerror cannot be accessed + window.setTimeout( function() { + if ( callback ) { + errorCallback(); + } + } ); + } + }; + } + + // Create the abort callback + callback = callback( "abort" ); + + try { + + // Do send the request (this may raise an exception) + xhr.send( options.hasContent && options.data || null ); + } catch ( e ) { + + // #14683: Only rethrow if this hasn't been notified as an error yet + if ( callback ) { + throw e; + } + } + }, + + abort: function() { + if ( callback ) { + callback(); + } + } + }; + } +} ); + + + + +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) +jQuery.ajaxPrefilter( function( s ) { + if ( s.crossDomain ) { + s.contents.script = false; + } +} ); + +// Install script dataType +jQuery.ajaxSetup( { + accepts: { + script: "text/javascript, application/javascript, " + + "application/ecmascript, application/x-ecmascript" + }, + contents: { + script: /\b(?:java|ecma)script\b/ + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +} ); + +// Handle cache's special case and crossDomain +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + if ( s.crossDomain ) { + s.type = "GET"; + } +} ); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function( s ) { + + // This transport only deals with cross domain or forced-by-attrs requests + if ( s.crossDomain || s.scriptAttrs ) { + var script, callback; + return { + send: function( _, complete ) { + script = jQuery( "\r\n"; + +// inject VBScript +document.write(IEBinaryToArray_ByteStr_Script); + +global.JSZipUtils._getBinaryFromXHR = function (xhr) { + var binary = xhr.responseBody; + var byteMapping = {}; + for ( var i = 0; i < 256; i++ ) { + for ( var j = 0; j < 256; j++ ) { + byteMapping[ String.fromCharCode( i + (j << 8) ) ] = + String.fromCharCode(i) + String.fromCharCode(j); + } + } + var rawBytes = IEBinaryToArray_ByteStr(binary); + var lastChr = IEBinaryToArray_ByteStr_Last(binary); + return rawBytes.replace(/[\s\S]/g, function( match ) { + return byteMapping[match]; + }) + lastChr; +}; + +// enforcing Stuk's coding style +// vim: set shiftwidth=4 softtabstop=4: + +},{}]},{},[1]) +; diff --git a/docs/site/apidocs/script-dir/jszip-utils/dist/jszip-utils-ie.min.js b/docs/site/apidocs/script-dir/jszip-utils/dist/jszip-utils-ie.min.js new file mode 100644 index 00000000..93d8bc8e --- /dev/null +++ b/docs/site/apidocs/script-dir/jszip-utils/dist/jszip-utils-ie.min.js @@ -0,0 +1,10 @@ +/*! + +JSZipUtils - A collection of cross-browser utilities to go along with JSZip. + + +(c) 2014 Stuart Knightley, David Duponchel +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. + +*/ +!function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g\r\n";document.write(b),a.JSZipUtils._getBinaryFromXHR=function(a){for(var b=a.responseBody,c={},d=0;256>d;d++)for(var e=0;256>e;e++)c[String.fromCharCode(d+(e<<8))]=String.fromCharCode(d)+String.fromCharCode(e);var f=IEBinaryToArray_ByteStr(b),g=IEBinaryToArray_ByteStr_Last(b);return f.replace(/[\s\S]/g,function(a){return c[a]})+g}},{}]},{},[1]); diff --git a/docs/site/apidocs/script-dir/jszip-utils/dist/jszip-utils.js b/docs/site/apidocs/script-dir/jszip-utils/dist/jszip-utils.js new file mode 100644 index 00000000..775895ec --- /dev/null +++ b/docs/site/apidocs/script-dir/jszip-utils/dist/jszip-utils.js @@ -0,0 +1,118 @@ +/*! + +JSZipUtils - A collection of cross-browser utilities to go along with JSZip. + + +(c) 2014 Stuart Knightley, David Duponchel +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. + +*/ +!function(e){"object"==typeof exports?module.exports=e():"function"==typeof define&&define.amd?define(e):"undefined"!=typeof window?window.JSZipUtils=e():"undefined"!=typeof global?global.JSZipUtils=e():"undefined"!=typeof self&&(self.JSZipUtils=e())}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o + +(c) 2014 Stuart Knightley, David Duponchel +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. + +*/ +!function(a){"object"==typeof exports?module.exports=a():"function"==typeof define&&define.amd?define(a):"undefined"!=typeof window?window.JSZipUtils=a():"undefined"!=typeof global?global.JSZipUtils=a():"undefined"!=typeof self&&(self.JSZipUtils=a())}(function(){return function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g + +(c) 2009-2016 Stuart Knightley +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/master/LICENSE.markdown. + +JSZip uses the library pako released under the MIT license : +https://github.com/nodeca/pako/blob/master/LICENSE +*/ + +(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.JSZip = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o> 2; + enc2 = ((chr1 & 3) << 4) | (chr2 >> 4); + enc3 = remainingBytes > 1 ? (((chr2 & 15) << 2) | (chr3 >> 6)) : 64; + enc4 = remainingBytes > 2 ? (chr3 & 63) : 64; + + output.push(_keyStr.charAt(enc1) + _keyStr.charAt(enc2) + _keyStr.charAt(enc3) + _keyStr.charAt(enc4)); + + } + + return output.join(""); +}; + +// public method for decoding +exports.decode = function(input) { + var chr1, chr2, chr3; + var enc1, enc2, enc3, enc4; + var i = 0, resultIndex = 0; + + var dataUrlPrefix = "data:"; + + if (input.substr(0, dataUrlPrefix.length) === dataUrlPrefix) { + // This is a common error: people give a data url + // (data:image/png;base64,iVBOR...) with a {base64: true} and + // wonders why things don't work. + // We can detect that the string input looks like a data url but we + // *can't* be sure it is one: removing everything up to the comma would + // be too dangerous. + throw new Error("Invalid base64 input, it looks like a data url."); + } + + input = input.replace(/[^A-Za-z0-9\+\/\=]/g, ""); + + var totalLength = input.length * 3 / 4; + if(input.charAt(input.length - 1) === _keyStr.charAt(64)) { + totalLength--; + } + if(input.charAt(input.length - 2) === _keyStr.charAt(64)) { + totalLength--; + } + if (totalLength % 1 !== 0) { + // totalLength is not an integer, the length does not match a valid + // base64 content. That can happen if: + // - the input is not a base64 content + // - the input is *almost* a base64 content, with a extra chars at the + // beginning or at the end + // - the input uses a base64 variant (base64url for example) + throw new Error("Invalid base64 input, bad content length."); + } + var output; + if (support.uint8array) { + output = new Uint8Array(totalLength|0); + } else { + output = new Array(totalLength|0); + } + + while (i < input.length) { + + enc1 = _keyStr.indexOf(input.charAt(i++)); + enc2 = _keyStr.indexOf(input.charAt(i++)); + enc3 = _keyStr.indexOf(input.charAt(i++)); + enc4 = _keyStr.indexOf(input.charAt(i++)); + + chr1 = (enc1 << 2) | (enc2 >> 4); + chr2 = ((enc2 & 15) << 4) | (enc3 >> 2); + chr3 = ((enc3 & 3) << 6) | enc4; + + output[resultIndex++] = chr1; + + if (enc3 !== 64) { + output[resultIndex++] = chr2; + } + if (enc4 !== 64) { + output[resultIndex++] = chr3; + } + + } + + return output; +}; + +},{"./support":30,"./utils":32}],2:[function(require,module,exports){ +'use strict'; + +var external = require("./external"); +var DataWorker = require('./stream/DataWorker'); +var DataLengthProbe = require('./stream/DataLengthProbe'); +var Crc32Probe = require('./stream/Crc32Probe'); +var DataLengthProbe = require('./stream/DataLengthProbe'); + +/** + * Represent a compressed object, with everything needed to decompress it. + * @constructor + * @param {number} compressedSize the size of the data compressed. + * @param {number} uncompressedSize the size of the data after decompression. + * @param {number} crc32 the crc32 of the decompressed file. + * @param {object} compression the type of compression, see lib/compressions.js. + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the compressed data. + */ +function CompressedObject(compressedSize, uncompressedSize, crc32, compression, data) { + this.compressedSize = compressedSize; + this.uncompressedSize = uncompressedSize; + this.crc32 = crc32; + this.compression = compression; + this.compressedContent = data; +} + +CompressedObject.prototype = { + /** + * Create a worker to get the uncompressed content. + * @return {GenericWorker} the worker. + */ + getContentWorker : function () { + var worker = new DataWorker(external.Promise.resolve(this.compressedContent)) + .pipe(this.compression.uncompressWorker()) + .pipe(new DataLengthProbe("data_length")); + + var that = this; + worker.on("end", function () { + if(this.streamInfo['data_length'] !== that.uncompressedSize) { + throw new Error("Bug : uncompressed data size mismatch"); + } + }); + return worker; + }, + /** + * Create a worker to get the compressed content. + * @return {GenericWorker} the worker. + */ + getCompressedWorker : function () { + return new DataWorker(external.Promise.resolve(this.compressedContent)) + .withStreamInfo("compressedSize", this.compressedSize) + .withStreamInfo("uncompressedSize", this.uncompressedSize) + .withStreamInfo("crc32", this.crc32) + .withStreamInfo("compression", this.compression) + ; + } +}; + +/** + * Chain the given worker with other workers to compress the content with the + * given compresion. + * @param {GenericWorker} uncompressedWorker the worker to pipe. + * @param {Object} compression the compression object. + * @param {Object} compressionOptions the options to use when compressing. + * @return {GenericWorker} the new worker compressing the content. + */ +CompressedObject.createWorkerFrom = function (uncompressedWorker, compression, compressionOptions) { + return uncompressedWorker + .pipe(new Crc32Probe()) + .pipe(new DataLengthProbe("uncompressedSize")) + .pipe(compression.compressWorker(compressionOptions)) + .pipe(new DataLengthProbe("compressedSize")) + .withStreamInfo("compression", compression); +}; + +module.exports = CompressedObject; + +},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(require,module,exports){ +'use strict'; + +var GenericWorker = require("./stream/GenericWorker"); + +exports.STORE = { + magic: "\x00\x00", + compressWorker : function (compressionOptions) { + return new GenericWorker("STORE compression"); + }, + uncompressWorker : function () { + return new GenericWorker("STORE decompression"); + } +}; +exports.DEFLATE = require('./flate'); + +},{"./flate":7,"./stream/GenericWorker":28}],4:[function(require,module,exports){ +'use strict'; + +var utils = require('./utils'); + +/** + * The following functions come from pako, from pako/lib/zlib/crc32.js + * released under the MIT license, see pako https://github.com/nodeca/pako/ + */ + +// Use ordinary array, since untyped makes no boost here +function makeTable() { + var c, table = []; + + for(var n =0; n < 256; n++){ + c = n; + for(var k =0; k < 8; k++){ + c = ((c&1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1)); + } + table[n] = c; + } + + return table; +} + +// Create table on load. Just 255 signed longs. Not a problem. +var crcTable = makeTable(); + + +function crc32(crc, buf, len, pos) { + var t = crcTable, end = pos + len; + + crc = crc ^ (-1); + + for (var i = pos; i < end; i++ ) { + crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF]; + } + + return (crc ^ (-1)); // >>> 0; +} + +// That's all for the pako functions. + +/** + * Compute the crc32 of a string. + * This is almost the same as the function crc32, but for strings. Using the + * same function for the two use cases leads to horrible performances. + * @param {Number} crc the starting value of the crc. + * @param {String} str the string to use. + * @param {Number} len the length of the string. + * @param {Number} pos the starting position for the crc32 computation. + * @return {Number} the computed crc32. + */ +function crc32str(crc, str, len, pos) { + var t = crcTable, end = pos + len; + + crc = crc ^ (-1); + + for (var i = pos; i < end; i++ ) { + crc = (crc >>> 8) ^ t[(crc ^ str.charCodeAt(i)) & 0xFF]; + } + + return (crc ^ (-1)); // >>> 0; +} + +module.exports = function crc32wrapper(input, crc) { + if (typeof input === "undefined" || !input.length) { + return 0; + } + + var isArray = utils.getTypeOf(input) !== "string"; + + if(isArray) { + return crc32(crc|0, input, input.length, 0); + } else { + return crc32str(crc|0, input, input.length, 0); + } +}; + +},{"./utils":32}],5:[function(require,module,exports){ +'use strict'; +exports.base64 = false; +exports.binary = false; +exports.dir = false; +exports.createFolders = true; +exports.date = null; +exports.compression = null; +exports.compressionOptions = null; +exports.comment = null; +exports.unixPermissions = null; +exports.dosPermissions = null; + +},{}],6:[function(require,module,exports){ +/* global Promise */ +'use strict'; + +// load the global object first: +// - it should be better integrated in the system (unhandledRejection in node) +// - the environment may have a custom Promise implementation (see zone.js) +var ES6Promise = null; +if (typeof Promise !== "undefined") { + ES6Promise = Promise; +} else { + ES6Promise = require("lie"); +} + +/** + * Let the user use/change some implementations. + */ +module.exports = { + Promise: ES6Promise +}; + +},{"lie":37}],7:[function(require,module,exports){ +'use strict'; +var USE_TYPEDARRAY = (typeof Uint8Array !== 'undefined') && (typeof Uint16Array !== 'undefined') && (typeof Uint32Array !== 'undefined'); + +var pako = require("pako"); +var utils = require("./utils"); +var GenericWorker = require("./stream/GenericWorker"); + +var ARRAY_TYPE = USE_TYPEDARRAY ? "uint8array" : "array"; + +exports.magic = "\x08\x00"; + +/** + * Create a worker that uses pako to inflate/deflate. + * @constructor + * @param {String} action the name of the pako function to call : either "Deflate" or "Inflate". + * @param {Object} options the options to use when (de)compressing. + */ +function FlateWorker(action, options) { + GenericWorker.call(this, "FlateWorker/" + action); + + this._pako = null; + this._pakoAction = action; + this._pakoOptions = options; + // the `meta` object from the last chunk received + // this allow this worker to pass around metadata + this.meta = {}; +} + +utils.inherits(FlateWorker, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +FlateWorker.prototype.processChunk = function (chunk) { + this.meta = chunk.meta; + if (this._pako === null) { + this._createPako(); + } + this._pako.push(utils.transformTo(ARRAY_TYPE, chunk.data), false); +}; + +/** + * @see GenericWorker.flush + */ +FlateWorker.prototype.flush = function () { + GenericWorker.prototype.flush.call(this); + if (this._pako === null) { + this._createPako(); + } + this._pako.push([], true); +}; +/** + * @see GenericWorker.cleanUp + */ +FlateWorker.prototype.cleanUp = function () { + GenericWorker.prototype.cleanUp.call(this); + this._pako = null; +}; + +/** + * Create the _pako object. + * TODO: lazy-loading this object isn't the best solution but it's the + * quickest. The best solution is to lazy-load the worker list. See also the + * issue #446. + */ +FlateWorker.prototype._createPako = function () { + this._pako = new pako[this._pakoAction]({ + raw: true, + level: this._pakoOptions.level || -1 // default compression + }); + var self = this; + this._pako.onData = function(data) { + self.push({ + data : data, + meta : self.meta + }); + }; +}; + +exports.compressWorker = function (compressionOptions) { + return new FlateWorker("Deflate", compressionOptions); +}; +exports.uncompressWorker = function () { + return new FlateWorker("Inflate", {}); +}; + +},{"./stream/GenericWorker":28,"./utils":32,"pako":38}],8:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var GenericWorker = require('../stream/GenericWorker'); +var utf8 = require('../utf8'); +var crc32 = require('../crc32'); +var signature = require('../signature'); + +/** + * Transform an integer into a string in hexadecimal. + * @private + * @param {number} dec the number to convert. + * @param {number} bytes the number of bytes to generate. + * @returns {string} the result. + */ +var decToHex = function(dec, bytes) { + var hex = "", i; + for (i = 0; i < bytes; i++) { + hex += String.fromCharCode(dec & 0xff); + dec = dec >>> 8; + } + return hex; +}; + +/** + * Generate the UNIX part of the external file attributes. + * @param {Object} unixPermissions the unix permissions or null. + * @param {Boolean} isDir true if the entry is a directory, false otherwise. + * @return {Number} a 32 bit integer. + * + * adapted from http://unix.stackexchange.com/questions/14705/the-zip-formats-external-file-attribute : + * + * TTTTsstrwxrwxrwx0000000000ADVSHR + * ^^^^____________________________ file type, see zipinfo.c (UNX_*) + * ^^^_________________________ setuid, setgid, sticky + * ^^^^^^^^^________________ permissions + * ^^^^^^^^^^______ not used ? + * ^^^^^^ DOS attribute bits : Archive, Directory, Volume label, System file, Hidden, Read only + */ +var generateUnixExternalFileAttr = function (unixPermissions, isDir) { + + var result = unixPermissions; + if (!unixPermissions) { + // I can't use octal values in strict mode, hence the hexa. + // 040775 => 0x41fd + // 0100664 => 0x81b4 + result = isDir ? 0x41fd : 0x81b4; + } + return (result & 0xFFFF) << 16; +}; + +/** + * Generate the DOS part of the external file attributes. + * @param {Object} dosPermissions the dos permissions or null. + * @param {Boolean} isDir true if the entry is a directory, false otherwise. + * @return {Number} a 32 bit integer. + * + * Bit 0 Read-Only + * Bit 1 Hidden + * Bit 2 System + * Bit 3 Volume Label + * Bit 4 Directory + * Bit 5 Archive + */ +var generateDosExternalFileAttr = function (dosPermissions, isDir) { + + // the dir flag is already set for compatibility + return (dosPermissions || 0) & 0x3F; +}; + +/** + * Generate the various parts used in the construction of the final zip file. + * @param {Object} streamInfo the hash with informations about the compressed file. + * @param {Boolean} streamedContent is the content streamed ? + * @param {Boolean} streamingEnded is the stream finished ? + * @param {number} offset the current offset from the start of the zip file. + * @param {String} platform let's pretend we are this platform (change platform dependents fields) + * @param {Function} encodeFileName the function to encode the file name / comment. + * @return {Object} the zip parts. + */ +var generateZipParts = function(streamInfo, streamedContent, streamingEnded, offset, platform, encodeFileName) { + var file = streamInfo['file'], + compression = streamInfo['compression'], + useCustomEncoding = encodeFileName !== utf8.utf8encode, + encodedFileName = utils.transformTo("string", encodeFileName(file.name)), + utfEncodedFileName = utils.transformTo("string", utf8.utf8encode(file.name)), + comment = file.comment, + encodedComment = utils.transformTo("string", encodeFileName(comment)), + utfEncodedComment = utils.transformTo("string", utf8.utf8encode(comment)), + useUTF8ForFileName = utfEncodedFileName.length !== file.name.length, + useUTF8ForComment = utfEncodedComment.length !== comment.length, + dosTime, + dosDate, + extraFields = "", + unicodePathExtraField = "", + unicodeCommentExtraField = "", + dir = file.dir, + date = file.date; + + + var dataInfo = { + crc32 : 0, + compressedSize : 0, + uncompressedSize : 0 + }; + + // if the content is streamed, the sizes/crc32 are only available AFTER + // the end of the stream. + if (!streamedContent || streamingEnded) { + dataInfo.crc32 = streamInfo['crc32']; + dataInfo.compressedSize = streamInfo['compressedSize']; + dataInfo.uncompressedSize = streamInfo['uncompressedSize']; + } + + var bitflag = 0; + if (streamedContent) { + // Bit 3: the sizes/crc32 are set to zero in the local header. + // The correct values are put in the data descriptor immediately + // following the compressed data. + bitflag |= 0x0008; + } + if (!useCustomEncoding && (useUTF8ForFileName || useUTF8ForComment)) { + // Bit 11: Language encoding flag (EFS). + bitflag |= 0x0800; + } + + + var extFileAttr = 0; + var versionMadeBy = 0; + if (dir) { + // dos or unix, we set the dos dir flag + extFileAttr |= 0x00010; + } + if(platform === "UNIX") { + versionMadeBy = 0x031E; // UNIX, version 3.0 + extFileAttr |= generateUnixExternalFileAttr(file.unixPermissions, dir); + } else { // DOS or other, fallback to DOS + versionMadeBy = 0x0014; // DOS, version 2.0 + extFileAttr |= generateDosExternalFileAttr(file.dosPermissions, dir); + } + + // date + // @see http://www.delorie.com/djgpp/doc/rbinter/it/52/13.html + // @see http://www.delorie.com/djgpp/doc/rbinter/it/65/16.html + // @see http://www.delorie.com/djgpp/doc/rbinter/it/66/16.html + + dosTime = date.getUTCHours(); + dosTime = dosTime << 6; + dosTime = dosTime | date.getUTCMinutes(); + dosTime = dosTime << 5; + dosTime = dosTime | date.getUTCSeconds() / 2; + + dosDate = date.getUTCFullYear() - 1980; + dosDate = dosDate << 4; + dosDate = dosDate | (date.getUTCMonth() + 1); + dosDate = dosDate << 5; + dosDate = dosDate | date.getUTCDate(); + + if (useUTF8ForFileName) { + // set the unicode path extra field. unzip needs at least one extra + // field to correctly handle unicode path, so using the path is as good + // as any other information. This could improve the situation with + // other archive managers too. + // This field is usually used without the utf8 flag, with a non + // unicode path in the header (winrar, winzip). This helps (a bit) + // with the messy Windows' default compressed folders feature but + // breaks on p7zip which doesn't seek the unicode path extra field. + // So for now, UTF-8 everywhere ! + unicodePathExtraField = + // Version + decToHex(1, 1) + + // NameCRC32 + decToHex(crc32(encodedFileName), 4) + + // UnicodeName + utfEncodedFileName; + + extraFields += + // Info-ZIP Unicode Path Extra Field + "\x75\x70" + + // size + decToHex(unicodePathExtraField.length, 2) + + // content + unicodePathExtraField; + } + + if(useUTF8ForComment) { + + unicodeCommentExtraField = + // Version + decToHex(1, 1) + + // CommentCRC32 + decToHex(crc32(encodedComment), 4) + + // UnicodeName + utfEncodedComment; + + extraFields += + // Info-ZIP Unicode Path Extra Field + "\x75\x63" + + // size + decToHex(unicodeCommentExtraField.length, 2) + + // content + unicodeCommentExtraField; + } + + var header = ""; + + // version needed to extract + header += "\x0A\x00"; + // general purpose bit flag + header += decToHex(bitflag, 2); + // compression method + header += compression.magic; + // last mod file time + header += decToHex(dosTime, 2); + // last mod file date + header += decToHex(dosDate, 2); + // crc-32 + header += decToHex(dataInfo.crc32, 4); + // compressed size + header += decToHex(dataInfo.compressedSize, 4); + // uncompressed size + header += decToHex(dataInfo.uncompressedSize, 4); + // file name length + header += decToHex(encodedFileName.length, 2); + // extra field length + header += decToHex(extraFields.length, 2); + + + var fileRecord = signature.LOCAL_FILE_HEADER + header + encodedFileName + extraFields; + + var dirRecord = signature.CENTRAL_FILE_HEADER + + // version made by (00: DOS) + decToHex(versionMadeBy, 2) + + // file header (common to file and central directory) + header + + // file comment length + decToHex(encodedComment.length, 2) + + // disk number start + "\x00\x00" + + // internal file attributes TODO + "\x00\x00" + + // external file attributes + decToHex(extFileAttr, 4) + + // relative offset of local header + decToHex(offset, 4) + + // file name + encodedFileName + + // extra field + extraFields + + // file comment + encodedComment; + + return { + fileRecord: fileRecord, + dirRecord: dirRecord + }; +}; + +/** + * Generate the EOCD record. + * @param {Number} entriesCount the number of entries in the zip file. + * @param {Number} centralDirLength the length (in bytes) of the central dir. + * @param {Number} localDirLength the length (in bytes) of the local dir. + * @param {String} comment the zip file comment as a binary string. + * @param {Function} encodeFileName the function to encode the comment. + * @return {String} the EOCD record. + */ +var generateCentralDirectoryEnd = function (entriesCount, centralDirLength, localDirLength, comment, encodeFileName) { + var dirEnd = ""; + var encodedComment = utils.transformTo("string", encodeFileName(comment)); + + // end of central dir signature + dirEnd = signature.CENTRAL_DIRECTORY_END + + // number of this disk + "\x00\x00" + + // number of the disk with the start of the central directory + "\x00\x00" + + // total number of entries in the central directory on this disk + decToHex(entriesCount, 2) + + // total number of entries in the central directory + decToHex(entriesCount, 2) + + // size of the central directory 4 bytes + decToHex(centralDirLength, 4) + + // offset of start of central directory with respect to the starting disk number + decToHex(localDirLength, 4) + + // .ZIP file comment length + decToHex(encodedComment.length, 2) + + // .ZIP file comment + encodedComment; + + return dirEnd; +}; + +/** + * Generate data descriptors for a file entry. + * @param {Object} streamInfo the hash generated by a worker, containing informations + * on the file entry. + * @return {String} the data descriptors. + */ +var generateDataDescriptors = function (streamInfo) { + var descriptor = ""; + descriptor = signature.DATA_DESCRIPTOR + + // crc-32 4 bytes + decToHex(streamInfo['crc32'], 4) + + // compressed size 4 bytes + decToHex(streamInfo['compressedSize'], 4) + + // uncompressed size 4 bytes + decToHex(streamInfo['uncompressedSize'], 4); + + return descriptor; +}; + + +/** + * A worker to concatenate other workers to create a zip file. + * @param {Boolean} streamFiles `true` to stream the content of the files, + * `false` to accumulate it. + * @param {String} comment the comment to use. + * @param {String} platform the platform to use, "UNIX" or "DOS". + * @param {Function} encodeFileName the function to encode file names and comments. + */ +function ZipFileWorker(streamFiles, comment, platform, encodeFileName) { + GenericWorker.call(this, "ZipFileWorker"); + // The number of bytes written so far. This doesn't count accumulated chunks. + this.bytesWritten = 0; + // The comment of the zip file + this.zipComment = comment; + // The platform "generating" the zip file. + this.zipPlatform = platform; + // the function to encode file names and comments. + this.encodeFileName = encodeFileName; + // Should we stream the content of the files ? + this.streamFiles = streamFiles; + // If `streamFiles` is false, we will need to accumulate the content of the + // files to calculate sizes / crc32 (and write them *before* the content). + // This boolean indicates if we are accumulating chunks (it will change a lot + // during the lifetime of this worker). + this.accumulate = false; + // The buffer receiving chunks when accumulating content. + this.contentBuffer = []; + // The list of generated directory records. + this.dirRecords = []; + // The offset (in bytes) from the beginning of the zip file for the current source. + this.currentSourceOffset = 0; + // The total number of entries in this zip file. + this.entriesCount = 0; + // the name of the file currently being added, null when handling the end of the zip file. + // Used for the emited metadata. + this.currentFile = null; + + + + this._sources = []; +} +utils.inherits(ZipFileWorker, GenericWorker); + +/** + * @see GenericWorker.push + */ +ZipFileWorker.prototype.push = function (chunk) { + + var currentFilePercent = chunk.meta.percent || 0; + var entriesCount = this.entriesCount; + var remainingFiles = this._sources.length; + + if(this.accumulate) { + this.contentBuffer.push(chunk); + } else { + this.bytesWritten += chunk.data.length; + + GenericWorker.prototype.push.call(this, { + data : chunk.data, + meta : { + currentFile : this.currentFile, + percent : entriesCount ? (currentFilePercent + 100 * (entriesCount - remainingFiles - 1)) / entriesCount : 100 + } + }); + } +}; + +/** + * The worker started a new source (an other worker). + * @param {Object} streamInfo the streamInfo object from the new source. + */ +ZipFileWorker.prototype.openedSource = function (streamInfo) { + this.currentSourceOffset = this.bytesWritten; + this.currentFile = streamInfo['file'].name; + + var streamedContent = this.streamFiles && !streamInfo['file'].dir; + + // don't stream folders (because they don't have any content) + if(streamedContent) { + var record = generateZipParts(streamInfo, streamedContent, false, this.currentSourceOffset, this.zipPlatform, this.encodeFileName); + this.push({ + data : record.fileRecord, + meta : {percent:0} + }); + } else { + // we need to wait for the whole file before pushing anything + this.accumulate = true; + } +}; + +/** + * The worker finished a source (an other worker). + * @param {Object} streamInfo the streamInfo object from the finished source. + */ +ZipFileWorker.prototype.closedSource = function (streamInfo) { + this.accumulate = false; + var streamedContent = this.streamFiles && !streamInfo['file'].dir; + var record = generateZipParts(streamInfo, streamedContent, true, this.currentSourceOffset, this.zipPlatform, this.encodeFileName); + + this.dirRecords.push(record.dirRecord); + if(streamedContent) { + // after the streamed file, we put data descriptors + this.push({ + data : generateDataDescriptors(streamInfo), + meta : {percent:100} + }); + } else { + // the content wasn't streamed, we need to push everything now + // first the file record, then the content + this.push({ + data : record.fileRecord, + meta : {percent:0} + }); + while(this.contentBuffer.length) { + this.push(this.contentBuffer.shift()); + } + } + this.currentFile = null; +}; + +/** + * @see GenericWorker.flush + */ +ZipFileWorker.prototype.flush = function () { + + var localDirLength = this.bytesWritten; + for(var i = 0; i < this.dirRecords.length; i++) { + this.push({ + data : this.dirRecords[i], + meta : {percent:100} + }); + } + var centralDirLength = this.bytesWritten - localDirLength; + + var dirEnd = generateCentralDirectoryEnd(this.dirRecords.length, centralDirLength, localDirLength, this.zipComment, this.encodeFileName); + + this.push({ + data : dirEnd, + meta : {percent:100} + }); +}; + +/** + * Prepare the next source to be read. + */ +ZipFileWorker.prototype.prepareNextSource = function () { + this.previous = this._sources.shift(); + this.openedSource(this.previous.streamInfo); + if (this.isPaused) { + this.previous.pause(); + } else { + this.previous.resume(); + } +}; + +/** + * @see GenericWorker.registerPrevious + */ +ZipFileWorker.prototype.registerPrevious = function (previous) { + this._sources.push(previous); + var self = this; + + previous.on('data', function (chunk) { + self.processChunk(chunk); + }); + previous.on('end', function () { + self.closedSource(self.previous.streamInfo); + if(self._sources.length) { + self.prepareNextSource(); + } else { + self.end(); + } + }); + previous.on('error', function (e) { + self.error(e); + }); + return this; +}; + +/** + * @see GenericWorker.resume + */ +ZipFileWorker.prototype.resume = function () { + if(!GenericWorker.prototype.resume.call(this)) { + return false; + } + + if (!this.previous && this._sources.length) { + this.prepareNextSource(); + return true; + } + if (!this.previous && !this._sources.length && !this.generatedError) { + this.end(); + return true; + } +}; + +/** + * @see GenericWorker.error + */ +ZipFileWorker.prototype.error = function (e) { + var sources = this._sources; + if(!GenericWorker.prototype.error.call(this, e)) { + return false; + } + for(var i = 0; i < sources.length; i++) { + try { + sources[i].error(e); + } catch(e) { + // the `error` exploded, nothing to do + } + } + return true; +}; + +/** + * @see GenericWorker.lock + */ +ZipFileWorker.prototype.lock = function () { + GenericWorker.prototype.lock.call(this); + var sources = this._sources; + for(var i = 0; i < sources.length; i++) { + sources[i].lock(); + } +}; + +module.exports = ZipFileWorker; + +},{"../crc32":4,"../signature":23,"../stream/GenericWorker":28,"../utf8":31,"../utils":32}],9:[function(require,module,exports){ +'use strict'; + +var compressions = require('../compressions'); +var ZipFileWorker = require('./ZipFileWorker'); + +/** + * Find the compression to use. + * @param {String} fileCompression the compression defined at the file level, if any. + * @param {String} zipCompression the compression defined at the load() level. + * @return {Object} the compression object to use. + */ +var getCompression = function (fileCompression, zipCompression) { + + var compressionName = fileCompression || zipCompression; + var compression = compressions[compressionName]; + if (!compression) { + throw new Error(compressionName + " is not a valid compression method !"); + } + return compression; +}; + +/** + * Create a worker to generate a zip file. + * @param {JSZip} zip the JSZip instance at the right root level. + * @param {Object} options to generate the zip file. + * @param {String} comment the comment to use. + */ +exports.generateWorker = function (zip, options, comment) { + + var zipFileWorker = new ZipFileWorker(options.streamFiles, comment, options.platform, options.encodeFileName); + var entriesCount = 0; + try { + + zip.forEach(function (relativePath, file) { + entriesCount++; + var compression = getCompression(file.options.compression, options.compression); + var compressionOptions = file.options.compressionOptions || options.compressionOptions || {}; + var dir = file.dir, date = file.date; + + file._compressWorker(compression, compressionOptions) + .withStreamInfo("file", { + name : relativePath, + dir : dir, + date : date, + comment : file.comment || "", + unixPermissions : file.unixPermissions, + dosPermissions : file.dosPermissions + }) + .pipe(zipFileWorker); + }); + zipFileWorker.entriesCount = entriesCount; + } catch (e) { + zipFileWorker.error(e); + } + + return zipFileWorker; +}; + +},{"../compressions":3,"./ZipFileWorker":8}],10:[function(require,module,exports){ +'use strict'; + +/** + * Representation a of zip file in js + * @constructor + */ +function JSZip() { + // if this constructor is used without `new`, it adds `new` before itself: + if(!(this instanceof JSZip)) { + return new JSZip(); + } + + if(arguments.length) { + throw new Error("The constructor with parameters has been removed in JSZip 3.0, please check the upgrade guide."); + } + + // object containing the files : + // { + // "folder/" : {...}, + // "folder/data.txt" : {...} + // } + this.files = {}; + + this.comment = null; + + // Where we are in the hierarchy + this.root = ""; + this.clone = function() { + var newObj = new JSZip(); + for (var i in this) { + if (typeof this[i] !== "function") { + newObj[i] = this[i]; + } + } + return newObj; + }; +} +JSZip.prototype = require('./object'); +JSZip.prototype.loadAsync = require('./load'); +JSZip.support = require('./support'); +JSZip.defaults = require('./defaults'); + +// TODO find a better way to handle this version, +// a require('package.json').version doesn't work with webpack, see #327 +JSZip.version = "3.2.0"; + +JSZip.loadAsync = function (content, options) { + return new JSZip().loadAsync(content, options); +}; + +JSZip.external = require("./external"); +module.exports = JSZip; + +},{"./defaults":5,"./external":6,"./load":11,"./object":15,"./support":30}],11:[function(require,module,exports){ +'use strict'; +var utils = require('./utils'); +var external = require("./external"); +var utf8 = require('./utf8'); +var utils = require('./utils'); +var ZipEntries = require('./zipEntries'); +var Crc32Probe = require('./stream/Crc32Probe'); +var nodejsUtils = require("./nodejsUtils"); + +/** + * Check the CRC32 of an entry. + * @param {ZipEntry} zipEntry the zip entry to check. + * @return {Promise} the result. + */ +function checkEntryCRC32(zipEntry) { + return new external.Promise(function (resolve, reject) { + var worker = zipEntry.decompressed.getContentWorker().pipe(new Crc32Probe()); + worker.on("error", function (e) { + reject(e); + }) + .on("end", function () { + if (worker.streamInfo.crc32 !== zipEntry.decompressed.crc32) { + reject(new Error("Corrupted zip : CRC32 mismatch")); + } else { + resolve(); + } + }) + .resume(); + }); +} + +module.exports = function(data, options) { + var zip = this; + options = utils.extend(options || {}, { + base64: false, + checkCRC32: false, + optimizedBinaryString: false, + createFolders: false, + decodeFileName: utf8.utf8decode + }); + + if (nodejsUtils.isNode && nodejsUtils.isStream(data)) { + return external.Promise.reject(new Error("JSZip can't accept a stream when loading a zip file.")); + } + + return utils.prepareContent("the loaded zip file", data, true, options.optimizedBinaryString, options.base64) + .then(function(data) { + var zipEntries = new ZipEntries(options); + zipEntries.load(data); + return zipEntries; + }).then(function checkCRC32(zipEntries) { + var promises = [external.Promise.resolve(zipEntries)]; + var files = zipEntries.files; + if (options.checkCRC32) { + for (var i = 0; i < files.length; i++) { + promises.push(checkEntryCRC32(files[i])); + } + } + return external.Promise.all(promises); + }).then(function addFiles(results) { + var zipEntries = results.shift(); + var files = zipEntries.files; + for (var i = 0; i < files.length; i++) { + var input = files[i]; + zip.file(input.fileNameStr, input.decompressed, { + binary: true, + optimizedBinaryString: true, + date: input.date, + dir: input.dir, + comment : input.fileCommentStr.length ? input.fileCommentStr : null, + unixPermissions : input.unixPermissions, + dosPermissions : input.dosPermissions, + createFolders: options.createFolders + }); + } + if (zipEntries.zipComment.length) { + zip.comment = zipEntries.zipComment; + } + + return zip; + }); +}; + +},{"./external":6,"./nodejsUtils":14,"./stream/Crc32Probe":25,"./utf8":31,"./utils":32,"./zipEntries":33}],12:[function(require,module,exports){ +"use strict"; + +var utils = require('../utils'); +var GenericWorker = require('../stream/GenericWorker'); + +/** + * A worker that use a nodejs stream as source. + * @constructor + * @param {String} filename the name of the file entry for this stream. + * @param {Readable} stream the nodejs stream. + */ +function NodejsStreamInputAdapter(filename, stream) { + GenericWorker.call(this, "Nodejs stream input adapter for " + filename); + this._upstreamEnded = false; + this._bindStream(stream); +} + +utils.inherits(NodejsStreamInputAdapter, GenericWorker); + +/** + * Prepare the stream and bind the callbacks on it. + * Do this ASAP on node 0.10 ! A lazy binding doesn't always work. + * @param {Stream} stream the nodejs stream to use. + */ +NodejsStreamInputAdapter.prototype._bindStream = function (stream) { + var self = this; + this._stream = stream; + stream.pause(); + stream + .on("data", function (chunk) { + self.push({ + data: chunk, + meta : { + percent : 0 + } + }); + }) + .on("error", function (e) { + if(self.isPaused) { + this.generatedError = e; + } else { + self.error(e); + } + }) + .on("end", function () { + if(self.isPaused) { + self._upstreamEnded = true; + } else { + self.end(); + } + }); +}; +NodejsStreamInputAdapter.prototype.pause = function () { + if(!GenericWorker.prototype.pause.call(this)) { + return false; + } + this._stream.pause(); + return true; +}; +NodejsStreamInputAdapter.prototype.resume = function () { + if(!GenericWorker.prototype.resume.call(this)) { + return false; + } + + if(this._upstreamEnded) { + this.end(); + } else { + this._stream.resume(); + } + + return true; +}; + +module.exports = NodejsStreamInputAdapter; + +},{"../stream/GenericWorker":28,"../utils":32}],13:[function(require,module,exports){ +'use strict'; + +var Readable = require('readable-stream').Readable; + +var utils = require('../utils'); +utils.inherits(NodejsStreamOutputAdapter, Readable); + +/** +* A nodejs stream using a worker as source. +* @see the SourceWrapper in http://nodejs.org/api/stream.html +* @constructor +* @param {StreamHelper} helper the helper wrapping the worker +* @param {Object} options the nodejs stream options +* @param {Function} updateCb the update callback. +*/ +function NodejsStreamOutputAdapter(helper, options, updateCb) { + Readable.call(this, options); + this._helper = helper; + + var self = this; + helper.on("data", function (data, meta) { + if (!self.push(data)) { + self._helper.pause(); + } + if(updateCb) { + updateCb(meta); + } + }) + .on("error", function(e) { + self.emit('error', e); + }) + .on("end", function () { + self.push(null); + }); +} + + +NodejsStreamOutputAdapter.prototype._read = function() { + this._helper.resume(); +}; + +module.exports = NodejsStreamOutputAdapter; + +},{"../utils":32,"readable-stream":16}],14:[function(require,module,exports){ +'use strict'; + +module.exports = { + /** + * True if this is running in Nodejs, will be undefined in a browser. + * In a browser, browserify won't include this file and the whole module + * will be resolved an empty object. + */ + isNode : typeof Buffer !== "undefined", + /** + * Create a new nodejs Buffer from an existing content. + * @param {Object} data the data to pass to the constructor. + * @param {String} encoding the encoding to use. + * @return {Buffer} a new Buffer. + */ + newBufferFrom: function(data, encoding) { + if (Buffer.from && Buffer.from !== Uint8Array.from) { + return Buffer.from(data, encoding); + } else { + if (typeof data === "number") { + // Safeguard for old Node.js versions. On newer versions, + // Buffer.from(number) / Buffer(number, encoding) already throw. + throw new Error("The \"data\" argument must not be a number"); + } + return new Buffer(data, encoding); + } + }, + /** + * Create a new nodejs Buffer with the specified size. + * @param {Integer} size the size of the buffer. + * @return {Buffer} a new Buffer. + */ + allocBuffer: function (size) { + if (Buffer.alloc) { + return Buffer.alloc(size); + } else { + var buf = new Buffer(size); + buf.fill(0); + return buf; + } + }, + /** + * Find out if an object is a Buffer. + * @param {Object} b the object to test. + * @return {Boolean} true if the object is a Buffer, false otherwise. + */ + isBuffer : function(b){ + return Buffer.isBuffer(b); + }, + + isStream : function (obj) { + return obj && + typeof obj.on === "function" && + typeof obj.pause === "function" && + typeof obj.resume === "function"; + } +}; + +},{}],15:[function(require,module,exports){ +'use strict'; +var utf8 = require('./utf8'); +var utils = require('./utils'); +var GenericWorker = require('./stream/GenericWorker'); +var StreamHelper = require('./stream/StreamHelper'); +var defaults = require('./defaults'); +var CompressedObject = require('./compressedObject'); +var ZipObject = require('./zipObject'); +var generate = require("./generate"); +var nodejsUtils = require("./nodejsUtils"); +var NodejsStreamInputAdapter = require("./nodejs/NodejsStreamInputAdapter"); + + +/** + * Add a file in the current folder. + * @private + * @param {string} name the name of the file + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data of the file + * @param {Object} originalOptions the options of the file + * @return {Object} the new file. + */ +var fileAdd = function(name, data, originalOptions) { + // be sure sub folders exist + var dataType = utils.getTypeOf(data), + parent; + + + /* + * Correct options. + */ + + var o = utils.extend(originalOptions || {}, defaults); + o.date = o.date || new Date(); + if (o.compression !== null) { + o.compression = o.compression.toUpperCase(); + } + + if (typeof o.unixPermissions === "string") { + o.unixPermissions = parseInt(o.unixPermissions, 8); + } + + // UNX_IFDIR 0040000 see zipinfo.c + if (o.unixPermissions && (o.unixPermissions & 0x4000)) { + o.dir = true; + } + // Bit 4 Directory + if (o.dosPermissions && (o.dosPermissions & 0x0010)) { + o.dir = true; + } + + if (o.dir) { + name = forceTrailingSlash(name); + } + if (o.createFolders && (parent = parentFolder(name))) { + folderAdd.call(this, parent, true); + } + + var isUnicodeString = dataType === "string" && o.binary === false && o.base64 === false; + if (!originalOptions || typeof originalOptions.binary === "undefined") { + o.binary = !isUnicodeString; + } + + + var isCompressedEmpty = (data instanceof CompressedObject) && data.uncompressedSize === 0; + + if (isCompressedEmpty || o.dir || !data || data.length === 0) { + o.base64 = false; + o.binary = true; + data = ""; + o.compression = "STORE"; + dataType = "string"; + } + + /* + * Convert content to fit. + */ + + var zipObjectContent = null; + if (data instanceof CompressedObject || data instanceof GenericWorker) { + zipObjectContent = data; + } else if (nodejsUtils.isNode && nodejsUtils.isStream(data)) { + zipObjectContent = new NodejsStreamInputAdapter(name, data); + } else { + zipObjectContent = utils.prepareContent(name, data, o.binary, o.optimizedBinaryString, o.base64); + } + + var object = new ZipObject(name, zipObjectContent, o); + this.files[name] = object; + /* + TODO: we can't throw an exception because we have async promises + (we can have a promise of a Date() for example) but returning a + promise is useless because file(name, data) returns the JSZip + object for chaining. Should we break that to allow the user + to catch the error ? + + return external.Promise.resolve(zipObjectContent) + .then(function () { + return object; + }); + */ +}; + +/** + * Find the parent folder of the path. + * @private + * @param {string} path the path to use + * @return {string} the parent folder, or "" + */ +var parentFolder = function (path) { + if (path.slice(-1) === '/') { + path = path.substring(0, path.length - 1); + } + var lastSlash = path.lastIndexOf('/'); + return (lastSlash > 0) ? path.substring(0, lastSlash) : ""; +}; + +/** + * Returns the path with a slash at the end. + * @private + * @param {String} path the path to check. + * @return {String} the path with a trailing slash. + */ +var forceTrailingSlash = function(path) { + // Check the name ends with a / + if (path.slice(-1) !== "/") { + path += "/"; // IE doesn't like substr(-1) + } + return path; +}; + +/** + * Add a (sub) folder in the current folder. + * @private + * @param {string} name the folder's name + * @param {boolean=} [createFolders] If true, automatically create sub + * folders. Defaults to false. + * @return {Object} the new folder. + */ +var folderAdd = function(name, createFolders) { + createFolders = (typeof createFolders !== 'undefined') ? createFolders : defaults.createFolders; + + name = forceTrailingSlash(name); + + // Does this folder already exist? + if (!this.files[name]) { + fileAdd.call(this, name, null, { + dir: true, + createFolders: createFolders + }); + } + return this.files[name]; +}; + +/** +* Cross-window, cross-Node-context regular expression detection +* @param {Object} object Anything +* @return {Boolean} true if the object is a regular expression, +* false otherwise +*/ +function isRegExp(object) { + return Object.prototype.toString.call(object) === "[object RegExp]"; +} + +// return the actual prototype of JSZip +var out = { + /** + * @see loadAsync + */ + load: function() { + throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide."); + }, + + + /** + * Call a callback function for each entry at this folder level. + * @param {Function} cb the callback function: + * function (relativePath, file) {...} + * It takes 2 arguments : the relative path and the file. + */ + forEach: function(cb) { + var filename, relativePath, file; + for (filename in this.files) { + if (!this.files.hasOwnProperty(filename)) { + continue; + } + file = this.files[filename]; + relativePath = filename.slice(this.root.length, filename.length); + if (relativePath && filename.slice(0, this.root.length) === this.root) { // the file is in the current root + cb(relativePath, file); // TODO reverse the parameters ? need to be clean AND consistent with the filter search fn... + } + } + }, + + /** + * Filter nested files/folders with the specified function. + * @param {Function} search the predicate to use : + * function (relativePath, file) {...} + * It takes 2 arguments : the relative path and the file. + * @return {Array} An array of matching elements. + */ + filter: function(search) { + var result = []; + this.forEach(function (relativePath, entry) { + if (search(relativePath, entry)) { // the file matches the function + result.push(entry); + } + + }); + return result; + }, + + /** + * Add a file to the zip file, or search a file. + * @param {string|RegExp} name The name of the file to add (if data is defined), + * the name of the file to find (if no data) or a regex to match files. + * @param {String|ArrayBuffer|Uint8Array|Buffer} data The file data, either raw or base64 encoded + * @param {Object} o File options + * @return {JSZip|Object|Array} this JSZip object (when adding a file), + * a file (when searching by string) or an array of files (when searching by regex). + */ + file: function(name, data, o) { + if (arguments.length === 1) { + if (isRegExp(name)) { + var regexp = name; + return this.filter(function(relativePath, file) { + return !file.dir && regexp.test(relativePath); + }); + } + else { // text + var obj = this.files[this.root + name]; + if (obj && !obj.dir) { + return obj; + } else { + return null; + } + } + } + else { // more than one argument : we have data ! + name = this.root + name; + fileAdd.call(this, name, data, o); + } + return this; + }, + + /** + * Add a directory to the zip file, or search. + * @param {String|RegExp} arg The name of the directory to add, or a regex to search folders. + * @return {JSZip} an object with the new directory as the root, or an array containing matching folders. + */ + folder: function(arg) { + if (!arg) { + return this; + } + + if (isRegExp(arg)) { + return this.filter(function(relativePath, file) { + return file.dir && arg.test(relativePath); + }); + } + + // else, name is a new folder + var name = this.root + arg; + var newFolder = folderAdd.call(this, name); + + // Allow chaining by returning a new object with this folder as the root + var ret = this.clone(); + ret.root = newFolder.name; + return ret; + }, + + /** + * Delete a file, or a directory and all sub-files, from the zip + * @param {string} name the name of the file to delete + * @return {JSZip} this JSZip object + */ + remove: function(name) { + name = this.root + name; + var file = this.files[name]; + if (!file) { + // Look for any folders + if (name.slice(-1) !== "/") { + name += "/"; + } + file = this.files[name]; + } + + if (file && !file.dir) { + // file + delete this.files[name]; + } else { + // maybe a folder, delete recursively + var kids = this.filter(function(relativePath, file) { + return file.name.slice(0, name.length) === name; + }); + for (var i = 0; i < kids.length; i++) { + delete this.files[kids[i].name]; + } + } + + return this; + }, + + /** + * Generate the complete zip file + * @param {Object} options the options to generate the zip file : + * - compression, "STORE" by default. + * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob. + * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the zip file + */ + generate: function(options) { + throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide."); + }, + + /** + * Generate the complete zip file as an internal stream. + * @param {Object} options the options to generate the zip file : + * - compression, "STORE" by default. + * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob. + * @return {StreamHelper} the streamed zip file. + */ + generateInternalStream: function(options) { + var worker, opts = {}; + try { + opts = utils.extend(options || {}, { + streamFiles: false, + compression: "STORE", + compressionOptions : null, + type: "", + platform: "DOS", + comment: null, + mimeType: 'application/zip', + encodeFileName: utf8.utf8encode + }); + + opts.type = opts.type.toLowerCase(); + opts.compression = opts.compression.toUpperCase(); + + // "binarystring" is prefered but the internals use "string". + if(opts.type === "binarystring") { + opts.type = "string"; + } + + if (!opts.type) { + throw new Error("No output type specified."); + } + + utils.checkSupport(opts.type); + + // accept nodejs `process.platform` + if( + opts.platform === 'darwin' || + opts.platform === 'freebsd' || + opts.platform === 'linux' || + opts.platform === 'sunos' + ) { + opts.platform = "UNIX"; + } + if (opts.platform === 'win32') { + opts.platform = "DOS"; + } + + var comment = opts.comment || this.comment || ""; + worker = generate.generateWorker(this, opts, comment); + } catch (e) { + worker = new GenericWorker("error"); + worker.error(e); + } + return new StreamHelper(worker, opts.type || "string", opts.mimeType); + }, + /** + * Generate the complete zip file asynchronously. + * @see generateInternalStream + */ + generateAsync: function(options, onUpdate) { + return this.generateInternalStream(options).accumulate(onUpdate); + }, + /** + * Generate the complete zip file asynchronously. + * @see generateInternalStream + */ + generateNodeStream: function(options, onUpdate) { + options = options || {}; + if (!options.type) { + options.type = "nodebuffer"; + } + return this.generateInternalStream(options).toNodejsStream(onUpdate); + } +}; +module.exports = out; + +},{"./compressedObject":2,"./defaults":5,"./generate":9,"./nodejs/NodejsStreamInputAdapter":12,"./nodejsUtils":14,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31,"./utils":32,"./zipObject":35}],16:[function(require,module,exports){ +/* + * This file is used by module bundlers (browserify/webpack/etc) when + * including a stream implementation. We use "readable-stream" to get a + * consistent behavior between nodejs versions but bundlers often have a shim + * for "stream". Using this shim greatly improve the compatibility and greatly + * reduce the final size of the bundle (only one stream implementation, not + * two). + */ +module.exports = require("stream"); + +},{"stream":undefined}],17:[function(require,module,exports){ +'use strict'; +var DataReader = require('./DataReader'); +var utils = require('../utils'); + +function ArrayReader(data) { + DataReader.call(this, data); + for(var i = 0; i < this.data.length; i++) { + data[i] = data[i] & 0xFF; + } +} +utils.inherits(ArrayReader, DataReader); +/** + * @see DataReader.byteAt + */ +ArrayReader.prototype.byteAt = function(i) { + return this.data[this.zero + i]; +}; +/** + * @see DataReader.lastIndexOfSignature + */ +ArrayReader.prototype.lastIndexOfSignature = function(sig) { + var sig0 = sig.charCodeAt(0), + sig1 = sig.charCodeAt(1), + sig2 = sig.charCodeAt(2), + sig3 = sig.charCodeAt(3); + for (var i = this.length - 4; i >= 0; --i) { + if (this.data[i] === sig0 && this.data[i + 1] === sig1 && this.data[i + 2] === sig2 && this.data[i + 3] === sig3) { + return i - this.zero; + } + } + + return -1; +}; +/** + * @see DataReader.readAndCheckSignature + */ +ArrayReader.prototype.readAndCheckSignature = function (sig) { + var sig0 = sig.charCodeAt(0), + sig1 = sig.charCodeAt(1), + sig2 = sig.charCodeAt(2), + sig3 = sig.charCodeAt(3), + data = this.readData(4); + return sig0 === data[0] && sig1 === data[1] && sig2 === data[2] && sig3 === data[3]; +}; +/** + * @see DataReader.readData + */ +ArrayReader.prototype.readData = function(size) { + this.checkOffset(size); + if(size === 0) { + return []; + } + var result = this.data.slice(this.zero + this.index, this.zero + this.index + size); + this.index += size; + return result; +}; +module.exports = ArrayReader; + +},{"../utils":32,"./DataReader":18}],18:[function(require,module,exports){ +'use strict'; +var utils = require('../utils'); + +function DataReader(data) { + this.data = data; // type : see implementation + this.length = data.length; + this.index = 0; + this.zero = 0; +} +DataReader.prototype = { + /** + * Check that the offset will not go too far. + * @param {string} offset the additional offset to check. + * @throws {Error} an Error if the offset is out of bounds. + */ + checkOffset: function(offset) { + this.checkIndex(this.index + offset); + }, + /** + * Check that the specified index will not be too far. + * @param {string} newIndex the index to check. + * @throws {Error} an Error if the index is out of bounds. + */ + checkIndex: function(newIndex) { + if (this.length < this.zero + newIndex || newIndex < 0) { + throw new Error("End of data reached (data length = " + this.length + ", asked index = " + (newIndex) + "). Corrupted zip ?"); + } + }, + /** + * Change the index. + * @param {number} newIndex The new index. + * @throws {Error} if the new index is out of the data. + */ + setIndex: function(newIndex) { + this.checkIndex(newIndex); + this.index = newIndex; + }, + /** + * Skip the next n bytes. + * @param {number} n the number of bytes to skip. + * @throws {Error} if the new index is out of the data. + */ + skip: function(n) { + this.setIndex(this.index + n); + }, + /** + * Get the byte at the specified index. + * @param {number} i the index to use. + * @return {number} a byte. + */ + byteAt: function(i) { + // see implementations + }, + /** + * Get the next number with a given byte size. + * @param {number} size the number of bytes to read. + * @return {number} the corresponding number. + */ + readInt: function(size) { + var result = 0, + i; + this.checkOffset(size); + for (i = this.index + size - 1; i >= this.index; i--) { + result = (result << 8) + this.byteAt(i); + } + this.index += size; + return result; + }, + /** + * Get the next string with a given byte size. + * @param {number} size the number of bytes to read. + * @return {string} the corresponding string. + */ + readString: function(size) { + return utils.transformTo("string", this.readData(size)); + }, + /** + * Get raw data without conversion, bytes. + * @param {number} size the number of bytes to read. + * @return {Object} the raw data, implementation specific. + */ + readData: function(size) { + // see implementations + }, + /** + * Find the last occurence of a zip signature (4 bytes). + * @param {string} sig the signature to find. + * @return {number} the index of the last occurence, -1 if not found. + */ + lastIndexOfSignature: function(sig) { + // see implementations + }, + /** + * Read the signature (4 bytes) at the current position and compare it with sig. + * @param {string} sig the expected signature + * @return {boolean} true if the signature matches, false otherwise. + */ + readAndCheckSignature: function(sig) { + // see implementations + }, + /** + * Get the next date. + * @return {Date} the date. + */ + readDate: function() { + var dostime = this.readInt(4); + return new Date(Date.UTC( + ((dostime >> 25) & 0x7f) + 1980, // year + ((dostime >> 21) & 0x0f) - 1, // month + (dostime >> 16) & 0x1f, // day + (dostime >> 11) & 0x1f, // hour + (dostime >> 5) & 0x3f, // minute + (dostime & 0x1f) << 1)); // second + } +}; +module.exports = DataReader; + +},{"../utils":32}],19:[function(require,module,exports){ +'use strict'; +var Uint8ArrayReader = require('./Uint8ArrayReader'); +var utils = require('../utils'); + +function NodeBufferReader(data) { + Uint8ArrayReader.call(this, data); +} +utils.inherits(NodeBufferReader, Uint8ArrayReader); + +/** + * @see DataReader.readData + */ +NodeBufferReader.prototype.readData = function(size) { + this.checkOffset(size); + var result = this.data.slice(this.zero + this.index, this.zero + this.index + size); + this.index += size; + return result; +}; +module.exports = NodeBufferReader; + +},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(require,module,exports){ +'use strict'; +var DataReader = require('./DataReader'); +var utils = require('../utils'); + +function StringReader(data) { + DataReader.call(this, data); +} +utils.inherits(StringReader, DataReader); +/** + * @see DataReader.byteAt + */ +StringReader.prototype.byteAt = function(i) { + return this.data.charCodeAt(this.zero + i); +}; +/** + * @see DataReader.lastIndexOfSignature + */ +StringReader.prototype.lastIndexOfSignature = function(sig) { + return this.data.lastIndexOf(sig) - this.zero; +}; +/** + * @see DataReader.readAndCheckSignature + */ +StringReader.prototype.readAndCheckSignature = function (sig) { + var data = this.readData(4); + return sig === data; +}; +/** + * @see DataReader.readData + */ +StringReader.prototype.readData = function(size) { + this.checkOffset(size); + // this will work because the constructor applied the "& 0xff" mask. + var result = this.data.slice(this.zero + this.index, this.zero + this.index + size); + this.index += size; + return result; +}; +module.exports = StringReader; + +},{"../utils":32,"./DataReader":18}],21:[function(require,module,exports){ +'use strict'; +var ArrayReader = require('./ArrayReader'); +var utils = require('../utils'); + +function Uint8ArrayReader(data) { + ArrayReader.call(this, data); +} +utils.inherits(Uint8ArrayReader, ArrayReader); +/** + * @see DataReader.readData + */ +Uint8ArrayReader.prototype.readData = function(size) { + this.checkOffset(size); + if(size === 0) { + // in IE10, when using subarray(idx, idx), we get the array [0x00] instead of []. + return new Uint8Array(0); + } + var result = this.data.subarray(this.zero + this.index, this.zero + this.index + size); + this.index += size; + return result; +}; +module.exports = Uint8ArrayReader; + +},{"../utils":32,"./ArrayReader":17}],22:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var support = require('../support'); +var ArrayReader = require('./ArrayReader'); +var StringReader = require('./StringReader'); +var NodeBufferReader = require('./NodeBufferReader'); +var Uint8ArrayReader = require('./Uint8ArrayReader'); + +/** + * Create a reader adapted to the data. + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data to read. + * @return {DataReader} the data reader. + */ +module.exports = function (data) { + var type = utils.getTypeOf(data); + utils.checkSupport(type); + if (type === "string" && !support.uint8array) { + return new StringReader(data); + } + if (type === "nodebuffer") { + return new NodeBufferReader(data); + } + if (support.uint8array) { + return new Uint8ArrayReader(utils.transformTo("uint8array", data)); + } + return new ArrayReader(utils.transformTo("array", data)); +}; + +},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(require,module,exports){ +'use strict'; +exports.LOCAL_FILE_HEADER = "PK\x03\x04"; +exports.CENTRAL_FILE_HEADER = "PK\x01\x02"; +exports.CENTRAL_DIRECTORY_END = "PK\x05\x06"; +exports.ZIP64_CENTRAL_DIRECTORY_LOCATOR = "PK\x06\x07"; +exports.ZIP64_CENTRAL_DIRECTORY_END = "PK\x06\x06"; +exports.DATA_DESCRIPTOR = "PK\x07\x08"; + +},{}],24:[function(require,module,exports){ +'use strict'; + +var GenericWorker = require('./GenericWorker'); +var utils = require('../utils'); + +/** + * A worker which convert chunks to a specified type. + * @constructor + * @param {String} destType the destination type. + */ +function ConvertWorker(destType) { + GenericWorker.call(this, "ConvertWorker to " + destType); + this.destType = destType; +} +utils.inherits(ConvertWorker, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +ConvertWorker.prototype.processChunk = function (chunk) { + this.push({ + data : utils.transformTo(this.destType, chunk.data), + meta : chunk.meta + }); +}; +module.exports = ConvertWorker; + +},{"../utils":32,"./GenericWorker":28}],25:[function(require,module,exports){ +'use strict'; + +var GenericWorker = require('./GenericWorker'); +var crc32 = require('../crc32'); +var utils = require('../utils'); + +/** + * A worker which calculate the crc32 of the data flowing through. + * @constructor + */ +function Crc32Probe() { + GenericWorker.call(this, "Crc32Probe"); + this.withStreamInfo("crc32", 0); +} +utils.inherits(Crc32Probe, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +Crc32Probe.prototype.processChunk = function (chunk) { + this.streamInfo.crc32 = crc32(chunk.data, this.streamInfo.crc32 || 0); + this.push(chunk); +}; +module.exports = Crc32Probe; + +},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var GenericWorker = require('./GenericWorker'); + +/** + * A worker which calculate the total length of the data flowing through. + * @constructor + * @param {String} propName the name used to expose the length + */ +function DataLengthProbe(propName) { + GenericWorker.call(this, "DataLengthProbe for " + propName); + this.propName = propName; + this.withStreamInfo(propName, 0); +} +utils.inherits(DataLengthProbe, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +DataLengthProbe.prototype.processChunk = function (chunk) { + if(chunk) { + var length = this.streamInfo[this.propName] || 0; + this.streamInfo[this.propName] = length + chunk.data.length; + } + GenericWorker.prototype.processChunk.call(this, chunk); +}; +module.exports = DataLengthProbe; + + +},{"../utils":32,"./GenericWorker":28}],27:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var GenericWorker = require('./GenericWorker'); + +// the size of the generated chunks +// TODO expose this as a public variable +var DEFAULT_BLOCK_SIZE = 16 * 1024; + +/** + * A worker that reads a content and emits chunks. + * @constructor + * @param {Promise} dataP the promise of the data to split + */ +function DataWorker(dataP) { + GenericWorker.call(this, "DataWorker"); + var self = this; + this.dataIsReady = false; + this.index = 0; + this.max = 0; + this.data = null; + this.type = ""; + + this._tickScheduled = false; + + dataP.then(function (data) { + self.dataIsReady = true; + self.data = data; + self.max = data && data.length || 0; + self.type = utils.getTypeOf(data); + if(!self.isPaused) { + self._tickAndRepeat(); + } + }, function (e) { + self.error(e); + }); +} + +utils.inherits(DataWorker, GenericWorker); + +/** + * @see GenericWorker.cleanUp + */ +DataWorker.prototype.cleanUp = function () { + GenericWorker.prototype.cleanUp.call(this); + this.data = null; +}; + +/** + * @see GenericWorker.resume + */ +DataWorker.prototype.resume = function () { + if(!GenericWorker.prototype.resume.call(this)) { + return false; + } + + if (!this._tickScheduled && this.dataIsReady) { + this._tickScheduled = true; + utils.delay(this._tickAndRepeat, [], this); + } + return true; +}; + +/** + * Trigger a tick a schedule an other call to this function. + */ +DataWorker.prototype._tickAndRepeat = function() { + this._tickScheduled = false; + if(this.isPaused || this.isFinished) { + return; + } + this._tick(); + if(!this.isFinished) { + utils.delay(this._tickAndRepeat, [], this); + this._tickScheduled = true; + } +}; + +/** + * Read and push a chunk. + */ +DataWorker.prototype._tick = function() { + + if(this.isPaused || this.isFinished) { + return false; + } + + var size = DEFAULT_BLOCK_SIZE; + var data = null, nextIndex = Math.min(this.max, this.index + size); + if (this.index >= this.max) { + // EOF + return this.end(); + } else { + switch(this.type) { + case "string": + data = this.data.substring(this.index, nextIndex); + break; + case "uint8array": + data = this.data.subarray(this.index, nextIndex); + break; + case "array": + case "nodebuffer": + data = this.data.slice(this.index, nextIndex); + break; + } + this.index = nextIndex; + return this.push({ + data : data, + meta : { + percent : this.max ? this.index / this.max * 100 : 0 + } + }); + } +}; + +module.exports = DataWorker; + +},{"../utils":32,"./GenericWorker":28}],28:[function(require,module,exports){ +'use strict'; + +/** + * A worker that does nothing but passing chunks to the next one. This is like + * a nodejs stream but with some differences. On the good side : + * - it works on IE 6-9 without any issue / polyfill + * - it weights less than the full dependencies bundled with browserify + * - it forwards errors (no need to declare an error handler EVERYWHERE) + * + * A chunk is an object with 2 attributes : `meta` and `data`. The former is an + * object containing anything (`percent` for example), see each worker for more + * details. The latter is the real data (String, Uint8Array, etc). + * + * @constructor + * @param {String} name the name of the stream (mainly used for debugging purposes) + */ +function GenericWorker(name) { + // the name of the worker + this.name = name || "default"; + // an object containing metadata about the workers chain + this.streamInfo = {}; + // an error which happened when the worker was paused + this.generatedError = null; + // an object containing metadata to be merged by this worker into the general metadata + this.extraStreamInfo = {}; + // true if the stream is paused (and should not do anything), false otherwise + this.isPaused = true; + // true if the stream is finished (and should not do anything), false otherwise + this.isFinished = false; + // true if the stream is locked to prevent further structure updates (pipe), false otherwise + this.isLocked = false; + // the event listeners + this._listeners = { + 'data':[], + 'end':[], + 'error':[] + }; + // the previous worker, if any + this.previous = null; +} + +GenericWorker.prototype = { + /** + * Push a chunk to the next workers. + * @param {Object} chunk the chunk to push + */ + push : function (chunk) { + this.emit("data", chunk); + }, + /** + * End the stream. + * @return {Boolean} true if this call ended the worker, false otherwise. + */ + end : function () { + if (this.isFinished) { + return false; + } + + this.flush(); + try { + this.emit("end"); + this.cleanUp(); + this.isFinished = true; + } catch (e) { + this.emit("error", e); + } + return true; + }, + /** + * End the stream with an error. + * @param {Error} e the error which caused the premature end. + * @return {Boolean} true if this call ended the worker with an error, false otherwise. + */ + error : function (e) { + if (this.isFinished) { + return false; + } + + if(this.isPaused) { + this.generatedError = e; + } else { + this.isFinished = true; + + this.emit("error", e); + + // in the workers chain exploded in the middle of the chain, + // the error event will go downward but we also need to notify + // workers upward that there has been an error. + if(this.previous) { + this.previous.error(e); + } + + this.cleanUp(); + } + return true; + }, + /** + * Add a callback on an event. + * @param {String} name the name of the event (data, end, error) + * @param {Function} listener the function to call when the event is triggered + * @return {GenericWorker} the current object for chainability + */ + on : function (name, listener) { + this._listeners[name].push(listener); + return this; + }, + /** + * Clean any references when a worker is ending. + */ + cleanUp : function () { + this.streamInfo = this.generatedError = this.extraStreamInfo = null; + this._listeners = []; + }, + /** + * Trigger an event. This will call registered callback with the provided arg. + * @param {String} name the name of the event (data, end, error) + * @param {Object} arg the argument to call the callback with. + */ + emit : function (name, arg) { + if (this._listeners[name]) { + for(var i = 0; i < this._listeners[name].length; i++) { + this._listeners[name][i].call(this, arg); + } + } + }, + /** + * Chain a worker with an other. + * @param {Worker} next the worker receiving events from the current one. + * @return {worker} the next worker for chainability + */ + pipe : function (next) { + return next.registerPrevious(this); + }, + /** + * Same as `pipe` in the other direction. + * Using an API with `pipe(next)` is very easy. + * Implementing the API with the point of view of the next one registering + * a source is easier, see the ZipFileWorker. + * @param {Worker} previous the previous worker, sending events to this one + * @return {Worker} the current worker for chainability + */ + registerPrevious : function (previous) { + if (this.isLocked) { + throw new Error("The stream '" + this + "' has already been used."); + } + + // sharing the streamInfo... + this.streamInfo = previous.streamInfo; + // ... and adding our own bits + this.mergeStreamInfo(); + this.previous = previous; + var self = this; + previous.on('data', function (chunk) { + self.processChunk(chunk); + }); + previous.on('end', function () { + self.end(); + }); + previous.on('error', function (e) { + self.error(e); + }); + return this; + }, + /** + * Pause the stream so it doesn't send events anymore. + * @return {Boolean} true if this call paused the worker, false otherwise. + */ + pause : function () { + if(this.isPaused || this.isFinished) { + return false; + } + this.isPaused = true; + + if(this.previous) { + this.previous.pause(); + } + return true; + }, + /** + * Resume a paused stream. + * @return {Boolean} true if this call resumed the worker, false otherwise. + */ + resume : function () { + if(!this.isPaused || this.isFinished) { + return false; + } + this.isPaused = false; + + // if true, the worker tried to resume but failed + var withError = false; + if(this.generatedError) { + this.error(this.generatedError); + withError = true; + } + if(this.previous) { + this.previous.resume(); + } + + return !withError; + }, + /** + * Flush any remaining bytes as the stream is ending. + */ + flush : function () {}, + /** + * Process a chunk. This is usually the method overridden. + * @param {Object} chunk the chunk to process. + */ + processChunk : function(chunk) { + this.push(chunk); + }, + /** + * Add a key/value to be added in the workers chain streamInfo once activated. + * @param {String} key the key to use + * @param {Object} value the associated value + * @return {Worker} the current worker for chainability + */ + withStreamInfo : function (key, value) { + this.extraStreamInfo[key] = value; + this.mergeStreamInfo(); + return this; + }, + /** + * Merge this worker's streamInfo into the chain's streamInfo. + */ + mergeStreamInfo : function () { + for(var key in this.extraStreamInfo) { + if (!this.extraStreamInfo.hasOwnProperty(key)) { + continue; + } + this.streamInfo[key] = this.extraStreamInfo[key]; + } + }, + + /** + * Lock the stream to prevent further updates on the workers chain. + * After calling this method, all calls to pipe will fail. + */ + lock: function () { + if (this.isLocked) { + throw new Error("The stream '" + this + "' has already been used."); + } + this.isLocked = true; + if (this.previous) { + this.previous.lock(); + } + }, + + /** + * + * Pretty print the workers chain. + */ + toString : function () { + var me = "Worker " + this.name; + if (this.previous) { + return this.previous + " -> " + me; + } else { + return me; + } + } +}; + +module.exports = GenericWorker; + +},{}],29:[function(require,module,exports){ +'use strict'; + +var utils = require('../utils'); +var ConvertWorker = require('./ConvertWorker'); +var GenericWorker = require('./GenericWorker'); +var base64 = require('../base64'); +var support = require("../support"); +var external = require("../external"); + +var NodejsStreamOutputAdapter = null; +if (support.nodestream) { + try { + NodejsStreamOutputAdapter = require('../nodejs/NodejsStreamOutputAdapter'); + } catch(e) {} +} + +/** + * Apply the final transformation of the data. If the user wants a Blob for + * example, it's easier to work with an U8intArray and finally do the + * ArrayBuffer/Blob conversion. + * @param {String} type the name of the final type + * @param {String|Uint8Array|Buffer} content the content to transform + * @param {String} mimeType the mime type of the content, if applicable. + * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the content in the right format. + */ +function transformZipOutput(type, content, mimeType) { + switch(type) { + case "blob" : + return utils.newBlob(utils.transformTo("arraybuffer", content), mimeType); + case "base64" : + return base64.encode(content); + default : + return utils.transformTo(type, content); + } +} + +/** + * Concatenate an array of data of the given type. + * @param {String} type the type of the data in the given array. + * @param {Array} dataArray the array containing the data chunks to concatenate + * @return {String|Uint8Array|Buffer} the concatenated data + * @throws Error if the asked type is unsupported + */ +function concat (type, dataArray) { + var i, index = 0, res = null, totalLength = 0; + for(i = 0; i < dataArray.length; i++) { + totalLength += dataArray[i].length; + } + switch(type) { + case "string": + return dataArray.join(""); + case "array": + return Array.prototype.concat.apply([], dataArray); + case "uint8array": + res = new Uint8Array(totalLength); + for(i = 0; i < dataArray.length; i++) { + res.set(dataArray[i], index); + index += dataArray[i].length; + } + return res; + case "nodebuffer": + return Buffer.concat(dataArray); + default: + throw new Error("concat : unsupported type '" + type + "'"); + } +} + +/** + * Listen a StreamHelper, accumulate its content and concatenate it into a + * complete block. + * @param {StreamHelper} helper the helper to use. + * @param {Function} updateCallback a callback called on each update. Called + * with one arg : + * - the metadata linked to the update received. + * @return Promise the promise for the accumulation. + */ +function accumulate(helper, updateCallback) { + return new external.Promise(function (resolve, reject){ + var dataArray = []; + var chunkType = helper._internalType, + resultType = helper._outputType, + mimeType = helper._mimeType; + helper + .on('data', function (data, meta) { + dataArray.push(data); + if(updateCallback) { + updateCallback(meta); + } + }) + .on('error', function(err) { + dataArray = []; + reject(err); + }) + .on('end', function (){ + try { + var result = transformZipOutput(resultType, concat(chunkType, dataArray), mimeType); + resolve(result); + } catch (e) { + reject(e); + } + dataArray = []; + }) + .resume(); + }); +} + +/** + * An helper to easily use workers outside of JSZip. + * @constructor + * @param {Worker} worker the worker to wrap + * @param {String} outputType the type of data expected by the use + * @param {String} mimeType the mime type of the content, if applicable. + */ +function StreamHelper(worker, outputType, mimeType) { + var internalType = outputType; + switch(outputType) { + case "blob": + case "arraybuffer": + internalType = "uint8array"; + break; + case "base64": + internalType = "string"; + break; + } + + try { + // the type used internally + this._internalType = internalType; + // the type used to output results + this._outputType = outputType; + // the mime type + this._mimeType = mimeType; + utils.checkSupport(internalType); + this._worker = worker.pipe(new ConvertWorker(internalType)); + // the last workers can be rewired without issues but we need to + // prevent any updates on previous workers. + worker.lock(); + } catch(e) { + this._worker = new GenericWorker("error"); + this._worker.error(e); + } +} + +StreamHelper.prototype = { + /** + * Listen a StreamHelper, accumulate its content and concatenate it into a + * complete block. + * @param {Function} updateCb the update callback. + * @return Promise the promise for the accumulation. + */ + accumulate : function (updateCb) { + return accumulate(this, updateCb); + }, + /** + * Add a listener on an event triggered on a stream. + * @param {String} evt the name of the event + * @param {Function} fn the listener + * @return {StreamHelper} the current helper. + */ + on : function (evt, fn) { + var self = this; + + if(evt === "data") { + this._worker.on(evt, function (chunk) { + fn.call(self, chunk.data, chunk.meta); + }); + } else { + this._worker.on(evt, function () { + utils.delay(fn, arguments, self); + }); + } + return this; + }, + /** + * Resume the flow of chunks. + * @return {StreamHelper} the current helper. + */ + resume : function () { + utils.delay(this._worker.resume, [], this._worker); + return this; + }, + /** + * Pause the flow of chunks. + * @return {StreamHelper} the current helper. + */ + pause : function () { + this._worker.pause(); + return this; + }, + /** + * Return a nodejs stream for this helper. + * @param {Function} updateCb the update callback. + * @return {NodejsStreamOutputAdapter} the nodejs stream. + */ + toNodejsStream : function (updateCb) { + utils.checkSupport("nodestream"); + if (this._outputType !== "nodebuffer") { + // an object stream containing blob/arraybuffer/uint8array/string + // is strange and I don't know if it would be useful. + // I you find this comment and have a good usecase, please open a + // bug report ! + throw new Error(this._outputType + " is not supported by this method"); + } + + return new NodejsStreamOutputAdapter(this, { + objectMode : this._outputType !== "nodebuffer" + }, updateCb); + } +}; + + +module.exports = StreamHelper; + +},{"../base64":1,"../external":6,"../nodejs/NodejsStreamOutputAdapter":13,"../support":30,"../utils":32,"./ConvertWorker":24,"./GenericWorker":28}],30:[function(require,module,exports){ +'use strict'; + +exports.base64 = true; +exports.array = true; +exports.string = true; +exports.arraybuffer = typeof ArrayBuffer !== "undefined" && typeof Uint8Array !== "undefined"; +exports.nodebuffer = typeof Buffer !== "undefined"; +// contains true if JSZip can read/generate Uint8Array, false otherwise. +exports.uint8array = typeof Uint8Array !== "undefined"; + +if (typeof ArrayBuffer === "undefined") { + exports.blob = false; +} +else { + var buffer = new ArrayBuffer(0); + try { + exports.blob = new Blob([buffer], { + type: "application/zip" + }).size === 0; + } + catch (e) { + try { + var Builder = self.BlobBuilder || self.WebKitBlobBuilder || self.MozBlobBuilder || self.MSBlobBuilder; + var builder = new Builder(); + builder.append(buffer); + exports.blob = builder.getBlob('application/zip').size === 0; + } + catch (e) { + exports.blob = false; + } + } +} + +try { + exports.nodestream = !!require('readable-stream').Readable; +} catch(e) { + exports.nodestream = false; +} + +},{"readable-stream":16}],31:[function(require,module,exports){ +'use strict'; + +var utils = require('./utils'); +var support = require('./support'); +var nodejsUtils = require('./nodejsUtils'); +var GenericWorker = require('./stream/GenericWorker'); + +/** + * The following functions come from pako, from pako/lib/utils/strings + * released under the MIT license, see pako https://github.com/nodeca/pako/ + */ + +// Table with utf8 lengths (calculated by first byte of sequence) +// Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS, +// because max possible codepoint is 0x10ffff +var _utf8len = new Array(256); +for (var i=0; i<256; i++) { + _utf8len[i] = (i >= 252 ? 6 : i >= 248 ? 5 : i >= 240 ? 4 : i >= 224 ? 3 : i >= 192 ? 2 : 1); +} +_utf8len[254]=_utf8len[254]=1; // Invalid sequence start + +// convert string to array (typed, when possible) +var string2buf = function (str) { + var buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0; + + // count binary size + for (m_pos = 0; m_pos < str_len; m_pos++) { + c = str.charCodeAt(m_pos); + if ((c & 0xfc00) === 0xd800 && (m_pos+1 < str_len)) { + c2 = str.charCodeAt(m_pos+1); + if ((c2 & 0xfc00) === 0xdc00) { + c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00); + m_pos++; + } + } + buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4; + } + + // allocate buffer + if (support.uint8array) { + buf = new Uint8Array(buf_len); + } else { + buf = new Array(buf_len); + } + + // convert + for (i=0, m_pos = 0; i < buf_len; m_pos++) { + c = str.charCodeAt(m_pos); + if ((c & 0xfc00) === 0xd800 && (m_pos+1 < str_len)) { + c2 = str.charCodeAt(m_pos+1); + if ((c2 & 0xfc00) === 0xdc00) { + c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00); + m_pos++; + } + } + if (c < 0x80) { + /* one byte */ + buf[i++] = c; + } else if (c < 0x800) { + /* two bytes */ + buf[i++] = 0xC0 | (c >>> 6); + buf[i++] = 0x80 | (c & 0x3f); + } else if (c < 0x10000) { + /* three bytes */ + buf[i++] = 0xE0 | (c >>> 12); + buf[i++] = 0x80 | (c >>> 6 & 0x3f); + buf[i++] = 0x80 | (c & 0x3f); + } else { + /* four bytes */ + buf[i++] = 0xf0 | (c >>> 18); + buf[i++] = 0x80 | (c >>> 12 & 0x3f); + buf[i++] = 0x80 | (c >>> 6 & 0x3f); + buf[i++] = 0x80 | (c & 0x3f); + } + } + + return buf; +}; + +// Calculate max possible position in utf8 buffer, +// that will not break sequence. If that's not possible +// - (very small limits) return max size as is. +// +// buf[] - utf8 bytes array +// max - length limit (mandatory); +var utf8border = function(buf, max) { + var pos; + + max = max || buf.length; + if (max > buf.length) { max = buf.length; } + + // go back from last position, until start of sequence found + pos = max-1; + while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; } + + // Fuckup - very small and broken sequence, + // return max, because we should return something anyway. + if (pos < 0) { return max; } + + // If we came to start of buffer - that means vuffer is too small, + // return max too. + if (pos === 0) { return max; } + + return (pos + _utf8len[buf[pos]] > max) ? pos : max; +}; + +// convert array to string +var buf2string = function (buf) { + var str, i, out, c, c_len; + var len = buf.length; + + // Reserve max possible length (2 words per char) + // NB: by unknown reasons, Array is significantly faster for + // String.fromCharCode.apply than Uint16Array. + var utf16buf = new Array(len*2); + + for (out=0, i=0; i 4) { utf16buf[out++] = 0xfffd; i += c_len-1; continue; } + + // apply mask on first byte + c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07; + // join the rest + while (c_len > 1 && i < len) { + c = (c << 6) | (buf[i++] & 0x3f); + c_len--; + } + + // terminated by end of string? + if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; } + + if (c < 0x10000) { + utf16buf[out++] = c; + } else { + c -= 0x10000; + utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff); + utf16buf[out++] = 0xdc00 | (c & 0x3ff); + } + } + + // shrinkBuf(utf16buf, out) + if (utf16buf.length !== out) { + if(utf16buf.subarray) { + utf16buf = utf16buf.subarray(0, out); + } else { + utf16buf.length = out; + } + } + + // return String.fromCharCode.apply(null, utf16buf); + return utils.applyFromCharCode(utf16buf); +}; + + +// That's all for the pako functions. + + +/** + * Transform a javascript string into an array (typed if possible) of bytes, + * UTF-8 encoded. + * @param {String} str the string to encode + * @return {Array|Uint8Array|Buffer} the UTF-8 encoded string. + */ +exports.utf8encode = function utf8encode(str) { + if (support.nodebuffer) { + return nodejsUtils.newBufferFrom(str, "utf-8"); + } + + return string2buf(str); +}; + + +/** + * Transform a bytes array (or a representation) representing an UTF-8 encoded + * string into a javascript string. + * @param {Array|Uint8Array|Buffer} buf the data de decode + * @return {String} the decoded string. + */ +exports.utf8decode = function utf8decode(buf) { + if (support.nodebuffer) { + return utils.transformTo("nodebuffer", buf).toString("utf-8"); + } + + buf = utils.transformTo(support.uint8array ? "uint8array" : "array", buf); + + return buf2string(buf); +}; + +/** + * A worker to decode utf8 encoded binary chunks into string chunks. + * @constructor + */ +function Utf8DecodeWorker() { + GenericWorker.call(this, "utf-8 decode"); + // the last bytes if a chunk didn't end with a complete codepoint. + this.leftOver = null; +} +utils.inherits(Utf8DecodeWorker, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +Utf8DecodeWorker.prototype.processChunk = function (chunk) { + + var data = utils.transformTo(support.uint8array ? "uint8array" : "array", chunk.data); + + // 1st step, re-use what's left of the previous chunk + if (this.leftOver && this.leftOver.length) { + if(support.uint8array) { + var previousData = data; + data = new Uint8Array(previousData.length + this.leftOver.length); + data.set(this.leftOver, 0); + data.set(previousData, this.leftOver.length); + } else { + data = this.leftOver.concat(data); + } + this.leftOver = null; + } + + var nextBoundary = utf8border(data); + var usableData = data; + if (nextBoundary !== data.length) { + if (support.uint8array) { + usableData = data.subarray(0, nextBoundary); + this.leftOver = data.subarray(nextBoundary, data.length); + } else { + usableData = data.slice(0, nextBoundary); + this.leftOver = data.slice(nextBoundary, data.length); + } + } + + this.push({ + data : exports.utf8decode(usableData), + meta : chunk.meta + }); +}; + +/** + * @see GenericWorker.flush + */ +Utf8DecodeWorker.prototype.flush = function () { + if(this.leftOver && this.leftOver.length) { + this.push({ + data : exports.utf8decode(this.leftOver), + meta : {} + }); + this.leftOver = null; + } +}; +exports.Utf8DecodeWorker = Utf8DecodeWorker; + +/** + * A worker to endcode string chunks into utf8 encoded binary chunks. + * @constructor + */ +function Utf8EncodeWorker() { + GenericWorker.call(this, "utf-8 encode"); +} +utils.inherits(Utf8EncodeWorker, GenericWorker); + +/** + * @see GenericWorker.processChunk + */ +Utf8EncodeWorker.prototype.processChunk = function (chunk) { + this.push({ + data : exports.utf8encode(chunk.data), + meta : chunk.meta + }); +}; +exports.Utf8EncodeWorker = Utf8EncodeWorker; + +},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(require,module,exports){ +'use strict'; + +var support = require('./support'); +var base64 = require('./base64'); +var nodejsUtils = require('./nodejsUtils'); +var setImmediate = require('set-immediate-shim'); +var external = require("./external"); + + +/** + * Convert a string that pass as a "binary string": it should represent a byte + * array but may have > 255 char codes. Be sure to take only the first byte + * and returns the byte array. + * @param {String} str the string to transform. + * @return {Array|Uint8Array} the string in a binary format. + */ +function string2binary(str) { + var result = null; + if (support.uint8array) { + result = new Uint8Array(str.length); + } else { + result = new Array(str.length); + } + return stringToArrayLike(str, result); +} + +/** + * Create a new blob with the given content and the given type. + * @param {String|ArrayBuffer} part the content to put in the blob. DO NOT use + * an Uint8Array because the stock browser of android 4 won't accept it (it + * will be silently converted to a string, "[object Uint8Array]"). + * + * Use only ONE part to build the blob to avoid a memory leak in IE11 / Edge: + * when a large amount of Array is used to create the Blob, the amount of + * memory consumed is nearly 100 times the original data amount. + * + * @param {String} type the mime type of the blob. + * @return {Blob} the created blob. + */ +exports.newBlob = function(part, type) { + exports.checkSupport("blob"); + + try { + // Blob constructor + return new Blob([part], { + type: type + }); + } + catch (e) { + + try { + // deprecated, browser only, old way + var Builder = self.BlobBuilder || self.WebKitBlobBuilder || self.MozBlobBuilder || self.MSBlobBuilder; + var builder = new Builder(); + builder.append(part); + return builder.getBlob(type); + } + catch (e) { + + // well, fuck ?! + throw new Error("Bug : can't construct the Blob."); + } + } + + +}; +/** + * The identity function. + * @param {Object} input the input. + * @return {Object} the same input. + */ +function identity(input) { + return input; +} + +/** + * Fill in an array with a string. + * @param {String} str the string to use. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to fill in (will be mutated). + * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated array. + */ +function stringToArrayLike(str, array) { + for (var i = 0; i < str.length; ++i) { + array[i] = str.charCodeAt(i) & 0xFF; + } + return array; +} + +/** + * An helper for the function arrayLikeToString. + * This contains static informations and functions that + * can be optimized by the browser JIT compiler. + */ +var arrayToStringHelper = { + /** + * Transform an array of int into a string, chunk by chunk. + * See the performances notes on arrayLikeToString. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform. + * @param {String} type the type of the array. + * @param {Integer} chunk the chunk size. + * @return {String} the resulting string. + * @throws Error if the chunk is too big for the stack. + */ + stringifyByChunk: function(array, type, chunk) { + var result = [], k = 0, len = array.length; + // shortcut + if (len <= chunk) { + return String.fromCharCode.apply(null, array); + } + while (k < len) { + if (type === "array" || type === "nodebuffer") { + result.push(String.fromCharCode.apply(null, array.slice(k, Math.min(k + chunk, len)))); + } + else { + result.push(String.fromCharCode.apply(null, array.subarray(k, Math.min(k + chunk, len)))); + } + k += chunk; + } + return result.join(""); + }, + /** + * Call String.fromCharCode on every item in the array. + * This is the naive implementation, which generate A LOT of intermediate string. + * This should be used when everything else fail. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform. + * @return {String} the result. + */ + stringifyByChar: function(array){ + var resultStr = ""; + for(var i = 0; i < array.length; i++) { + resultStr += String.fromCharCode(array[i]); + } + return resultStr; + }, + applyCanBeUsed : { + /** + * true if the browser accepts to use String.fromCharCode on Uint8Array + */ + uint8array : (function () { + try { + return support.uint8array && String.fromCharCode.apply(null, new Uint8Array(1)).length === 1; + } catch (e) { + return false; + } + })(), + /** + * true if the browser accepts to use String.fromCharCode on nodejs Buffer. + */ + nodebuffer : (function () { + try { + return support.nodebuffer && String.fromCharCode.apply(null, nodejsUtils.allocBuffer(1)).length === 1; + } catch (e) { + return false; + } + })() + } +}; + +/** + * Transform an array-like object to a string. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform. + * @return {String} the result. + */ +function arrayLikeToString(array) { + // Performances notes : + // -------------------- + // String.fromCharCode.apply(null, array) is the fastest, see + // see http://jsperf.com/converting-a-uint8array-to-a-string/2 + // but the stack is limited (and we can get huge arrays !). + // + // result += String.fromCharCode(array[i]); generate too many strings ! + // + // This code is inspired by http://jsperf.com/arraybuffer-to-string-apply-performance/2 + // TODO : we now have workers that split the work. Do we still need that ? + var chunk = 65536, + type = exports.getTypeOf(array), + canUseApply = true; + if (type === "uint8array") { + canUseApply = arrayToStringHelper.applyCanBeUsed.uint8array; + } else if (type === "nodebuffer") { + canUseApply = arrayToStringHelper.applyCanBeUsed.nodebuffer; + } + + if (canUseApply) { + while (chunk > 1) { + try { + return arrayToStringHelper.stringifyByChunk(array, type, chunk); + } catch (e) { + chunk = Math.floor(chunk / 2); + } + } + } + + // no apply or chunk error : slow and painful algorithm + // default browser on android 4.* + return arrayToStringHelper.stringifyByChar(array); +} + +exports.applyFromCharCode = arrayLikeToString; + + +/** + * Copy the data from an array-like to an other array-like. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayFrom the origin array. + * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayTo the destination array which will be mutated. + * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated destination array. + */ +function arrayLikeToArrayLike(arrayFrom, arrayTo) { + for (var i = 0; i < arrayFrom.length; i++) { + arrayTo[i] = arrayFrom[i]; + } + return arrayTo; +} + +// a matrix containing functions to transform everything into everything. +var transform = {}; + +// string to ? +transform["string"] = { + "string": identity, + "array": function(input) { + return stringToArrayLike(input, new Array(input.length)); + }, + "arraybuffer": function(input) { + return transform["string"]["uint8array"](input).buffer; + }, + "uint8array": function(input) { + return stringToArrayLike(input, new Uint8Array(input.length)); + }, + "nodebuffer": function(input) { + return stringToArrayLike(input, nodejsUtils.allocBuffer(input.length)); + } +}; + +// array to ? +transform["array"] = { + "string": arrayLikeToString, + "array": identity, + "arraybuffer": function(input) { + return (new Uint8Array(input)).buffer; + }, + "uint8array": function(input) { + return new Uint8Array(input); + }, + "nodebuffer": function(input) { + return nodejsUtils.newBufferFrom(input); + } +}; + +// arraybuffer to ? +transform["arraybuffer"] = { + "string": function(input) { + return arrayLikeToString(new Uint8Array(input)); + }, + "array": function(input) { + return arrayLikeToArrayLike(new Uint8Array(input), new Array(input.byteLength)); + }, + "arraybuffer": identity, + "uint8array": function(input) { + return new Uint8Array(input); + }, + "nodebuffer": function(input) { + return nodejsUtils.newBufferFrom(new Uint8Array(input)); + } +}; + +// uint8array to ? +transform["uint8array"] = { + "string": arrayLikeToString, + "array": function(input) { + return arrayLikeToArrayLike(input, new Array(input.length)); + }, + "arraybuffer": function(input) { + return input.buffer; + }, + "uint8array": identity, + "nodebuffer": function(input) { + return nodejsUtils.newBufferFrom(input); + } +}; + +// nodebuffer to ? +transform["nodebuffer"] = { + "string": arrayLikeToString, + "array": function(input) { + return arrayLikeToArrayLike(input, new Array(input.length)); + }, + "arraybuffer": function(input) { + return transform["nodebuffer"]["uint8array"](input).buffer; + }, + "uint8array": function(input) { + return arrayLikeToArrayLike(input, new Uint8Array(input.length)); + }, + "nodebuffer": identity +}; + +/** + * Transform an input into any type. + * The supported output type are : string, array, uint8array, arraybuffer, nodebuffer. + * If no output type is specified, the unmodified input will be returned. + * @param {String} outputType the output type. + * @param {String|Array|ArrayBuffer|Uint8Array|Buffer} input the input to convert. + * @throws {Error} an Error if the browser doesn't support the requested output type. + */ +exports.transformTo = function(outputType, input) { + if (!input) { + // undefined, null, etc + // an empty string won't harm. + input = ""; + } + if (!outputType) { + return input; + } + exports.checkSupport(outputType); + var inputType = exports.getTypeOf(input); + var result = transform[inputType][outputType](input); + return result; +}; + +/** + * Return the type of the input. + * The type will be in a format valid for JSZip.utils.transformTo : string, array, uint8array, arraybuffer. + * @param {Object} input the input to identify. + * @return {String} the (lowercase) type of the input. + */ +exports.getTypeOf = function(input) { + if (typeof input === "string") { + return "string"; + } + if (Object.prototype.toString.call(input) === "[object Array]") { + return "array"; + } + if (support.nodebuffer && nodejsUtils.isBuffer(input)) { + return "nodebuffer"; + } + if (support.uint8array && input instanceof Uint8Array) { + return "uint8array"; + } + if (support.arraybuffer && input instanceof ArrayBuffer) { + return "arraybuffer"; + } +}; + +/** + * Throw an exception if the type is not supported. + * @param {String} type the type to check. + * @throws {Error} an Error if the browser doesn't support the requested type. + */ +exports.checkSupport = function(type) { + var supported = support[type.toLowerCase()]; + if (!supported) { + throw new Error(type + " is not supported by this platform"); + } +}; + +exports.MAX_VALUE_16BITS = 65535; +exports.MAX_VALUE_32BITS = -1; // well, "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" is parsed as -1 + +/** + * Prettify a string read as binary. + * @param {string} str the string to prettify. + * @return {string} a pretty string. + */ +exports.pretty = function(str) { + var res = '', + code, i; + for (i = 0; i < (str || "").length; i++) { + code = str.charCodeAt(i); + res += '\\x' + (code < 16 ? "0" : "") + code.toString(16).toUpperCase(); + } + return res; +}; + +/** + * Defer the call of a function. + * @param {Function} callback the function to call asynchronously. + * @param {Array} args the arguments to give to the callback. + */ +exports.delay = function(callback, args, self) { + setImmediate(function () { + callback.apply(self || null, args || []); + }); +}; + +/** + * Extends a prototype with an other, without calling a constructor with + * side effects. Inspired by nodejs' `utils.inherits` + * @param {Function} ctor the constructor to augment + * @param {Function} superCtor the parent constructor to use + */ +exports.inherits = function (ctor, superCtor) { + var Obj = function() {}; + Obj.prototype = superCtor.prototype; + ctor.prototype = new Obj(); +}; + +/** + * Merge the objects passed as parameters into a new one. + * @private + * @param {...Object} var_args All objects to merge. + * @return {Object} a new object with the data of the others. + */ +exports.extend = function() { + var result = {}, i, attr; + for (i = 0; i < arguments.length; i++) { // arguments is not enumerable in some browsers + for (attr in arguments[i]) { + if (arguments[i].hasOwnProperty(attr) && typeof result[attr] === "undefined") { + result[attr] = arguments[i][attr]; + } + } + } + return result; +}; + +/** + * Transform arbitrary content into a Promise. + * @param {String} name a name for the content being processed. + * @param {Object} inputData the content to process. + * @param {Boolean} isBinary true if the content is not an unicode string + * @param {Boolean} isOptimizedBinaryString true if the string content only has one byte per character. + * @param {Boolean} isBase64 true if the string content is encoded with base64. + * @return {Promise} a promise in a format usable by JSZip. + */ +exports.prepareContent = function(name, inputData, isBinary, isOptimizedBinaryString, isBase64) { + + // if inputData is already a promise, this flatten it. + var promise = external.Promise.resolve(inputData).then(function(data) { + + + var isBlob = support.blob && (data instanceof Blob || ['[object File]', '[object Blob]'].indexOf(Object.prototype.toString.call(data)) !== -1); + + if (isBlob && typeof FileReader !== "undefined") { + return new external.Promise(function (resolve, reject) { + var reader = new FileReader(); + + reader.onload = function(e) { + resolve(e.target.result); + }; + reader.onerror = function(e) { + reject(e.target.error); + }; + reader.readAsArrayBuffer(data); + }); + } else { + return data; + } + }); + + return promise.then(function(data) { + var dataType = exports.getTypeOf(data); + + if (!dataType) { + return external.Promise.reject( + new Error("Can't read the data of '" + name + "'. Is it " + + "in a supported JavaScript type (String, Blob, ArrayBuffer, etc) ?") + ); + } + // special case : it's way easier to work with Uint8Array than with ArrayBuffer + if (dataType === "arraybuffer") { + data = exports.transformTo("uint8array", data); + } else if (dataType === "string") { + if (isBase64) { + data = base64.decode(data); + } + else if (isBinary) { + // optimizedBinaryString === true means that the file has already been filtered with a 0xFF mask + if (isOptimizedBinaryString !== true) { + // this is a string, not in a base64 format. + // Be sure that this is a correct "binary string" + data = string2binary(data); + } + } + } + return data; + }); +}; + +},{"./base64":1,"./external":6,"./nodejsUtils":14,"./support":30,"set-immediate-shim":54}],33:[function(require,module,exports){ +'use strict'; +var readerFor = require('./reader/readerFor'); +var utils = require('./utils'); +var sig = require('./signature'); +var ZipEntry = require('./zipEntry'); +var utf8 = require('./utf8'); +var support = require('./support'); +// class ZipEntries {{{ +/** + * All the entries in the zip file. + * @constructor + * @param {Object} loadOptions Options for loading the stream. + */ +function ZipEntries(loadOptions) { + this.files = []; + this.loadOptions = loadOptions; +} +ZipEntries.prototype = { + /** + * Check that the reader is on the specified signature. + * @param {string} expectedSignature the expected signature. + * @throws {Error} if it is an other signature. + */ + checkSignature: function(expectedSignature) { + if (!this.reader.readAndCheckSignature(expectedSignature)) { + this.reader.index -= 4; + var signature = this.reader.readString(4); + throw new Error("Corrupted zip or bug: unexpected signature " + "(" + utils.pretty(signature) + ", expected " + utils.pretty(expectedSignature) + ")"); + } + }, + /** + * Check if the given signature is at the given index. + * @param {number} askedIndex the index to check. + * @param {string} expectedSignature the signature to expect. + * @return {boolean} true if the signature is here, false otherwise. + */ + isSignature: function(askedIndex, expectedSignature) { + var currentIndex = this.reader.index; + this.reader.setIndex(askedIndex); + var signature = this.reader.readString(4); + var result = signature === expectedSignature; + this.reader.setIndex(currentIndex); + return result; + }, + /** + * Read the end of the central directory. + */ + readBlockEndOfCentral: function() { + this.diskNumber = this.reader.readInt(2); + this.diskWithCentralDirStart = this.reader.readInt(2); + this.centralDirRecordsOnThisDisk = this.reader.readInt(2); + this.centralDirRecords = this.reader.readInt(2); + this.centralDirSize = this.reader.readInt(4); + this.centralDirOffset = this.reader.readInt(4); + + this.zipCommentLength = this.reader.readInt(2); + // warning : the encoding depends of the system locale + // On a linux machine with LANG=en_US.utf8, this field is utf8 encoded. + // On a windows machine, this field is encoded with the localized windows code page. + var zipComment = this.reader.readData(this.zipCommentLength); + var decodeParamType = support.uint8array ? "uint8array" : "array"; + // To get consistent behavior with the generation part, we will assume that + // this is utf8 encoded unless specified otherwise. + var decodeContent = utils.transformTo(decodeParamType, zipComment); + this.zipComment = this.loadOptions.decodeFileName(decodeContent); + }, + /** + * Read the end of the Zip 64 central directory. + * Not merged with the method readEndOfCentral : + * The end of central can coexist with its Zip64 brother, + * I don't want to read the wrong number of bytes ! + */ + readBlockZip64EndOfCentral: function() { + this.zip64EndOfCentralSize = this.reader.readInt(8); + this.reader.skip(4); + // this.versionMadeBy = this.reader.readString(2); + // this.versionNeeded = this.reader.readInt(2); + this.diskNumber = this.reader.readInt(4); + this.diskWithCentralDirStart = this.reader.readInt(4); + this.centralDirRecordsOnThisDisk = this.reader.readInt(8); + this.centralDirRecords = this.reader.readInt(8); + this.centralDirSize = this.reader.readInt(8); + this.centralDirOffset = this.reader.readInt(8); + + this.zip64ExtensibleData = {}; + var extraDataSize = this.zip64EndOfCentralSize - 44, + index = 0, + extraFieldId, + extraFieldLength, + extraFieldValue; + while (index < extraDataSize) { + extraFieldId = this.reader.readInt(2); + extraFieldLength = this.reader.readInt(4); + extraFieldValue = this.reader.readData(extraFieldLength); + this.zip64ExtensibleData[extraFieldId] = { + id: extraFieldId, + length: extraFieldLength, + value: extraFieldValue + }; + } + }, + /** + * Read the end of the Zip 64 central directory locator. + */ + readBlockZip64EndOfCentralLocator: function() { + this.diskWithZip64CentralDirStart = this.reader.readInt(4); + this.relativeOffsetEndOfZip64CentralDir = this.reader.readInt(8); + this.disksCount = this.reader.readInt(4); + if (this.disksCount > 1) { + throw new Error("Multi-volumes zip are not supported"); + } + }, + /** + * Read the local files, based on the offset read in the central part. + */ + readLocalFiles: function() { + var i, file; + for (i = 0; i < this.files.length; i++) { + file = this.files[i]; + this.reader.setIndex(file.localHeaderOffset); + this.checkSignature(sig.LOCAL_FILE_HEADER); + file.readLocalPart(this.reader); + file.handleUTF8(); + file.processAttributes(); + } + }, + /** + * Read the central directory. + */ + readCentralDir: function() { + var file; + + this.reader.setIndex(this.centralDirOffset); + while (this.reader.readAndCheckSignature(sig.CENTRAL_FILE_HEADER)) { + file = new ZipEntry({ + zip64: this.zip64 + }, this.loadOptions); + file.readCentralPart(this.reader); + this.files.push(file); + } + + if (this.centralDirRecords !== this.files.length) { + if (this.centralDirRecords !== 0 && this.files.length === 0) { + // We expected some records but couldn't find ANY. + // This is really suspicious, as if something went wrong. + throw new Error("Corrupted zip or bug: expected " + this.centralDirRecords + " records in central dir, got " + this.files.length); + } else { + // We found some records but not all. + // Something is wrong but we got something for the user: no error here. + // console.warn("expected", this.centralDirRecords, "records in central dir, got", this.files.length); + } + } + }, + /** + * Read the end of central directory. + */ + readEndOfCentral: function() { + var offset = this.reader.lastIndexOfSignature(sig.CENTRAL_DIRECTORY_END); + if (offset < 0) { + // Check if the content is a truncated zip or complete garbage. + // A "LOCAL_FILE_HEADER" is not required at the beginning (auto + // extractible zip for example) but it can give a good hint. + // If an ajax request was used without responseType, we will also + // get unreadable data. + var isGarbage = !this.isSignature(0, sig.LOCAL_FILE_HEADER); + + if (isGarbage) { + throw new Error("Can't find end of central directory : is this a zip file ? " + + "If it is, see https://stuk.github.io/jszip/documentation/howto/read_zip.html"); + } else { + throw new Error("Corrupted zip: can't find end of central directory"); + } + + } + this.reader.setIndex(offset); + var endOfCentralDirOffset = offset; + this.checkSignature(sig.CENTRAL_DIRECTORY_END); + this.readBlockEndOfCentral(); + + + /* extract from the zip spec : + 4) If one of the fields in the end of central directory + record is too small to hold required data, the field + should be set to -1 (0xFFFF or 0xFFFFFFFF) and the + ZIP64 format record should be created. + 5) The end of central directory record and the + Zip64 end of central directory locator record must + reside on the same disk when splitting or spanning + an archive. + */ + if (this.diskNumber === utils.MAX_VALUE_16BITS || this.diskWithCentralDirStart === utils.MAX_VALUE_16BITS || this.centralDirRecordsOnThisDisk === utils.MAX_VALUE_16BITS || this.centralDirRecords === utils.MAX_VALUE_16BITS || this.centralDirSize === utils.MAX_VALUE_32BITS || this.centralDirOffset === utils.MAX_VALUE_32BITS) { + this.zip64 = true; + + /* + Warning : the zip64 extension is supported, but ONLY if the 64bits integer read from + the zip file can fit into a 32bits integer. This cannot be solved : JavaScript represents + all numbers as 64-bit double precision IEEE 754 floating point numbers. + So, we have 53bits for integers and bitwise operations treat everything as 32bits. + see https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Operators/Bitwise_Operators + and http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf section 8.5 + */ + + // should look for a zip64 EOCD locator + offset = this.reader.lastIndexOfSignature(sig.ZIP64_CENTRAL_DIRECTORY_LOCATOR); + if (offset < 0) { + throw new Error("Corrupted zip: can't find the ZIP64 end of central directory locator"); + } + this.reader.setIndex(offset); + this.checkSignature(sig.ZIP64_CENTRAL_DIRECTORY_LOCATOR); + this.readBlockZip64EndOfCentralLocator(); + + // now the zip64 EOCD record + if (!this.isSignature(this.relativeOffsetEndOfZip64CentralDir, sig.ZIP64_CENTRAL_DIRECTORY_END)) { + // console.warn("ZIP64 end of central directory not where expected."); + this.relativeOffsetEndOfZip64CentralDir = this.reader.lastIndexOfSignature(sig.ZIP64_CENTRAL_DIRECTORY_END); + if (this.relativeOffsetEndOfZip64CentralDir < 0) { + throw new Error("Corrupted zip: can't find the ZIP64 end of central directory"); + } + } + this.reader.setIndex(this.relativeOffsetEndOfZip64CentralDir); + this.checkSignature(sig.ZIP64_CENTRAL_DIRECTORY_END); + this.readBlockZip64EndOfCentral(); + } + + var expectedEndOfCentralDirOffset = this.centralDirOffset + this.centralDirSize; + if (this.zip64) { + expectedEndOfCentralDirOffset += 20; // end of central dir 64 locator + expectedEndOfCentralDirOffset += 12 /* should not include the leading 12 bytes */ + this.zip64EndOfCentralSize; + } + + var extraBytes = endOfCentralDirOffset - expectedEndOfCentralDirOffset; + + if (extraBytes > 0) { + // console.warn(extraBytes, "extra bytes at beginning or within zipfile"); + if (this.isSignature(endOfCentralDirOffset, sig.CENTRAL_FILE_HEADER)) { + // The offsets seem wrong, but we have something at the specified offset. + // So… we keep it. + } else { + // the offset is wrong, update the "zero" of the reader + // this happens if data has been prepended (crx files for example) + this.reader.zero = extraBytes; + } + } else if (extraBytes < 0) { + throw new Error("Corrupted zip: missing " + Math.abs(extraBytes) + " bytes."); + } + }, + prepareReader: function(data) { + this.reader = readerFor(data); + }, + /** + * Read a zip file and create ZipEntries. + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the binary string representing a zip file. + */ + load: function(data) { + this.prepareReader(data); + this.readEndOfCentral(); + this.readCentralDir(); + this.readLocalFiles(); + } +}; +// }}} end of ZipEntries +module.exports = ZipEntries; + +},{"./reader/readerFor":22,"./signature":23,"./support":30,"./utf8":31,"./utils":32,"./zipEntry":34}],34:[function(require,module,exports){ +'use strict'; +var readerFor = require('./reader/readerFor'); +var utils = require('./utils'); +var CompressedObject = require('./compressedObject'); +var crc32fn = require('./crc32'); +var utf8 = require('./utf8'); +var compressions = require('./compressions'); +var support = require('./support'); + +var MADE_BY_DOS = 0x00; +var MADE_BY_UNIX = 0x03; + +/** + * Find a compression registered in JSZip. + * @param {string} compressionMethod the method magic to find. + * @return {Object|null} the JSZip compression object, null if none found. + */ +var findCompression = function(compressionMethod) { + for (var method in compressions) { + if (!compressions.hasOwnProperty(method)) { + continue; + } + if (compressions[method].magic === compressionMethod) { + return compressions[method]; + } + } + return null; +}; + +// class ZipEntry {{{ +/** + * An entry in the zip file. + * @constructor + * @param {Object} options Options of the current file. + * @param {Object} loadOptions Options for loading the stream. + */ +function ZipEntry(options, loadOptions) { + this.options = options; + this.loadOptions = loadOptions; +} +ZipEntry.prototype = { + /** + * say if the file is encrypted. + * @return {boolean} true if the file is encrypted, false otherwise. + */ + isEncrypted: function() { + // bit 1 is set + return (this.bitFlag & 0x0001) === 0x0001; + }, + /** + * say if the file has utf-8 filename/comment. + * @return {boolean} true if the filename/comment is in utf-8, false otherwise. + */ + useUTF8: function() { + // bit 11 is set + return (this.bitFlag & 0x0800) === 0x0800; + }, + /** + * Read the local part of a zip file and add the info in this object. + * @param {DataReader} reader the reader to use. + */ + readLocalPart: function(reader) { + var compression, localExtraFieldsLength; + + // we already know everything from the central dir ! + // If the central dir data are false, we are doomed. + // On the bright side, the local part is scary : zip64, data descriptors, both, etc. + // The less data we get here, the more reliable this should be. + // Let's skip the whole header and dash to the data ! + reader.skip(22); + // in some zip created on windows, the filename stored in the central dir contains \ instead of /. + // Strangely, the filename here is OK. + // I would love to treat these zip files as corrupted (see http://www.info-zip.org/FAQ.html#backslashes + // or APPNOTE#4.4.17.1, "All slashes MUST be forward slashes '/'") but there are a lot of bad zip generators... + // Search "unzip mismatching "local" filename continuing with "central" filename version" on + // the internet. + // + // I think I see the logic here : the central directory is used to display + // content and the local directory is used to extract the files. Mixing / and \ + // may be used to display \ to windows users and use / when extracting the files. + // Unfortunately, this lead also to some issues : http://seclists.org/fulldisclosure/2009/Sep/394 + this.fileNameLength = reader.readInt(2); + localExtraFieldsLength = reader.readInt(2); // can't be sure this will be the same as the central dir + // the fileName is stored as binary data, the handleUTF8 method will take care of the encoding. + this.fileName = reader.readData(this.fileNameLength); + reader.skip(localExtraFieldsLength); + + if (this.compressedSize === -1 || this.uncompressedSize === -1) { + throw new Error("Bug or corrupted zip : didn't get enough informations from the central directory " + "(compressedSize === -1 || uncompressedSize === -1)"); + } + + compression = findCompression(this.compressionMethod); + if (compression === null) { // no compression found + throw new Error("Corrupted zip : compression " + utils.pretty(this.compressionMethod) + " unknown (inner file : " + utils.transformTo("string", this.fileName) + ")"); + } + this.decompressed = new CompressedObject(this.compressedSize, this.uncompressedSize, this.crc32, compression, reader.readData(this.compressedSize)); + }, + + /** + * Read the central part of a zip file and add the info in this object. + * @param {DataReader} reader the reader to use. + */ + readCentralPart: function(reader) { + this.versionMadeBy = reader.readInt(2); + reader.skip(2); + // this.versionNeeded = reader.readInt(2); + this.bitFlag = reader.readInt(2); + this.compressionMethod = reader.readString(2); + this.date = reader.readDate(); + this.crc32 = reader.readInt(4); + this.compressedSize = reader.readInt(4); + this.uncompressedSize = reader.readInt(4); + var fileNameLength = reader.readInt(2); + this.extraFieldsLength = reader.readInt(2); + this.fileCommentLength = reader.readInt(2); + this.diskNumberStart = reader.readInt(2); + this.internalFileAttributes = reader.readInt(2); + this.externalFileAttributes = reader.readInt(4); + this.localHeaderOffset = reader.readInt(4); + + if (this.isEncrypted()) { + throw new Error("Encrypted zip are not supported"); + } + + // will be read in the local part, see the comments there + reader.skip(fileNameLength); + this.readExtraFields(reader); + this.parseZIP64ExtraField(reader); + this.fileComment = reader.readData(this.fileCommentLength); + }, + + /** + * Parse the external file attributes and get the unix/dos permissions. + */ + processAttributes: function () { + this.unixPermissions = null; + this.dosPermissions = null; + var madeBy = this.versionMadeBy >> 8; + + // Check if we have the DOS directory flag set. + // We look for it in the DOS and UNIX permissions + // but some unknown platform could set it as a compatibility flag. + this.dir = this.externalFileAttributes & 0x0010 ? true : false; + + if(madeBy === MADE_BY_DOS) { + // first 6 bits (0 to 5) + this.dosPermissions = this.externalFileAttributes & 0x3F; + } + + if(madeBy === MADE_BY_UNIX) { + this.unixPermissions = (this.externalFileAttributes >> 16) & 0xFFFF; + // the octal permissions are in (this.unixPermissions & 0x01FF).toString(8); + } + + // fail safe : if the name ends with a / it probably means a folder + if (!this.dir && this.fileNameStr.slice(-1) === '/') { + this.dir = true; + } + }, + + /** + * Parse the ZIP64 extra field and merge the info in the current ZipEntry. + * @param {DataReader} reader the reader to use. + */ + parseZIP64ExtraField: function(reader) { + + if (!this.extraFields[0x0001]) { + return; + } + + // should be something, preparing the extra reader + var extraReader = readerFor(this.extraFields[0x0001].value); + + // I really hope that these 64bits integer can fit in 32 bits integer, because js + // won't let us have more. + if (this.uncompressedSize === utils.MAX_VALUE_32BITS) { + this.uncompressedSize = extraReader.readInt(8); + } + if (this.compressedSize === utils.MAX_VALUE_32BITS) { + this.compressedSize = extraReader.readInt(8); + } + if (this.localHeaderOffset === utils.MAX_VALUE_32BITS) { + this.localHeaderOffset = extraReader.readInt(8); + } + if (this.diskNumberStart === utils.MAX_VALUE_32BITS) { + this.diskNumberStart = extraReader.readInt(4); + } + }, + /** + * Read the central part of a zip file and add the info in this object. + * @param {DataReader} reader the reader to use. + */ + readExtraFields: function(reader) { + var end = reader.index + this.extraFieldsLength, + extraFieldId, + extraFieldLength, + extraFieldValue; + + if (!this.extraFields) { + this.extraFields = {}; + } + + while (reader.index < end) { + extraFieldId = reader.readInt(2); + extraFieldLength = reader.readInt(2); + extraFieldValue = reader.readData(extraFieldLength); + + this.extraFields[extraFieldId] = { + id: extraFieldId, + length: extraFieldLength, + value: extraFieldValue + }; + } + }, + /** + * Apply an UTF8 transformation if needed. + */ + handleUTF8: function() { + var decodeParamType = support.uint8array ? "uint8array" : "array"; + if (this.useUTF8()) { + this.fileNameStr = utf8.utf8decode(this.fileName); + this.fileCommentStr = utf8.utf8decode(this.fileComment); + } else { + var upath = this.findExtraFieldUnicodePath(); + if (upath !== null) { + this.fileNameStr = upath; + } else { + // ASCII text or unsupported code page + var fileNameByteArray = utils.transformTo(decodeParamType, this.fileName); + this.fileNameStr = this.loadOptions.decodeFileName(fileNameByteArray); + } + + var ucomment = this.findExtraFieldUnicodeComment(); + if (ucomment !== null) { + this.fileCommentStr = ucomment; + } else { + // ASCII text or unsupported code page + var commentByteArray = utils.transformTo(decodeParamType, this.fileComment); + this.fileCommentStr = this.loadOptions.decodeFileName(commentByteArray); + } + } + }, + + /** + * Find the unicode path declared in the extra field, if any. + * @return {String} the unicode path, null otherwise. + */ + findExtraFieldUnicodePath: function() { + var upathField = this.extraFields[0x7075]; + if (upathField) { + var extraReader = readerFor(upathField.value); + + // wrong version + if (extraReader.readInt(1) !== 1) { + return null; + } + + // the crc of the filename changed, this field is out of date. + if (crc32fn(this.fileName) !== extraReader.readInt(4)) { + return null; + } + + return utf8.utf8decode(extraReader.readData(upathField.length - 5)); + } + return null; + }, + + /** + * Find the unicode comment declared in the extra field, if any. + * @return {String} the unicode comment, null otherwise. + */ + findExtraFieldUnicodeComment: function() { + var ucommentField = this.extraFields[0x6375]; + if (ucommentField) { + var extraReader = readerFor(ucommentField.value); + + // wrong version + if (extraReader.readInt(1) !== 1) { + return null; + } + + // the crc of the comment changed, this field is out of date. + if (crc32fn(this.fileComment) !== extraReader.readInt(4)) { + return null; + } + + return utf8.utf8decode(extraReader.readData(ucommentField.length - 5)); + } + return null; + } +}; +module.exports = ZipEntry; + +},{"./compressedObject":2,"./compressions":3,"./crc32":4,"./reader/readerFor":22,"./support":30,"./utf8":31,"./utils":32}],35:[function(require,module,exports){ +'use strict'; + +var StreamHelper = require('./stream/StreamHelper'); +var DataWorker = require('./stream/DataWorker'); +var utf8 = require('./utf8'); +var CompressedObject = require('./compressedObject'); +var GenericWorker = require('./stream/GenericWorker'); + +/** + * A simple object representing a file in the zip file. + * @constructor + * @param {string} name the name of the file + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data + * @param {Object} options the options of the file + */ +var ZipObject = function(name, data, options) { + this.name = name; + this.dir = options.dir; + this.date = options.date; + this.comment = options.comment; + this.unixPermissions = options.unixPermissions; + this.dosPermissions = options.dosPermissions; + + this._data = data; + this._dataBinary = options.binary; + // keep only the compression + this.options = { + compression : options.compression, + compressionOptions : options.compressionOptions + }; +}; + +ZipObject.prototype = { + /** + * Create an internal stream for the content of this object. + * @param {String} type the type of each chunk. + * @return StreamHelper the stream. + */ + internalStream: function (type) { + var result = null, outputType = "string"; + try { + if (!type) { + throw new Error("No output type specified."); + } + outputType = type.toLowerCase(); + var askUnicodeString = outputType === "string" || outputType === "text"; + if (outputType === "binarystring" || outputType === "text") { + outputType = "string"; + } + result = this._decompressWorker(); + + var isUnicodeString = !this._dataBinary; + + if (isUnicodeString && !askUnicodeString) { + result = result.pipe(new utf8.Utf8EncodeWorker()); + } + if (!isUnicodeString && askUnicodeString) { + result = result.pipe(new utf8.Utf8DecodeWorker()); + } + } catch (e) { + result = new GenericWorker("error"); + result.error(e); + } + + return new StreamHelper(result, outputType, ""); + }, + + /** + * Prepare the content in the asked type. + * @param {String} type the type of the result. + * @param {Function} onUpdate a function to call on each internal update. + * @return Promise the promise of the result. + */ + async: function (type, onUpdate) { + return this.internalStream(type).accumulate(onUpdate); + }, + + /** + * Prepare the content as a nodejs stream. + * @param {String} type the type of each chunk. + * @param {Function} onUpdate a function to call on each internal update. + * @return Stream the stream. + */ + nodeStream: function (type, onUpdate) { + return this.internalStream(type || "nodebuffer").toNodejsStream(onUpdate); + }, + + /** + * Return a worker for the compressed content. + * @private + * @param {Object} compression the compression object to use. + * @param {Object} compressionOptions the options to use when compressing. + * @return Worker the worker. + */ + _compressWorker: function (compression, compressionOptions) { + if ( + this._data instanceof CompressedObject && + this._data.compression.magic === compression.magic + ) { + return this._data.getCompressedWorker(); + } else { + var result = this._decompressWorker(); + if(!this._dataBinary) { + result = result.pipe(new utf8.Utf8EncodeWorker()); + } + return CompressedObject.createWorkerFrom(result, compression, compressionOptions); + } + }, + /** + * Return a worker for the decompressed content. + * @private + * @return Worker the worker. + */ + _decompressWorker : function () { + if (this._data instanceof CompressedObject) { + return this._data.getContentWorker(); + } else if (this._data instanceof GenericWorker) { + return this._data; + } else { + return new DataWorker(this._data); + } + } +}; + +var removedMethods = ["asText", "asBinary", "asNodeBuffer", "asUint8Array", "asArrayBuffer"]; +var removedFn = function () { + throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide."); +}; + +for(var i = 0; i < removedMethods.length; i++) { + ZipObject.prototype[removedMethods[i]] = removedFn; +} +module.exports = ZipObject; + +},{"./compressedObject":2,"./stream/DataWorker":27,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31}],36:[function(require,module,exports){ +(function (global){ +'use strict'; +var Mutation = global.MutationObserver || global.WebKitMutationObserver; + +var scheduleDrain; + +{ + if (Mutation) { + var called = 0; + var observer = new Mutation(nextTick); + var element = global.document.createTextNode(''); + observer.observe(element, { + characterData: true + }); + scheduleDrain = function () { + element.data = (called = ++called % 2); + }; + } else if (!global.setImmediate && typeof global.MessageChannel !== 'undefined') { + var channel = new global.MessageChannel(); + channel.port1.onmessage = nextTick; + scheduleDrain = function () { + channel.port2.postMessage(0); + }; + } else if ('document' in global && 'onreadystatechange' in global.document.createElement('script')) { + scheduleDrain = function () { + + // Create a + + + + + + +
    + +
    +
    +
    +

    Serialized Form

    +
    + +
    + +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/BinaryPrefix.html b/docs/site/apidocs/src-html/javax/measure/BinaryPrefix.html new file mode 100644 index 00000000..4b7d9af5 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/BinaryPrefix.html @@ -0,0 +1,324 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032/**
    +033 * Provides support for common binary prefixes to be used by units. For example:
    +034 * <pre>
    +035 * {@code import static systems.uom.unicode.CLDR.*;  // Static import (from Unicode System).
    +036 * import static javax.measure.BinaryPrefix.*; // Static import.
    +037 * import javax.measure.*;
    +038 * import systems.uom.quantity.Information; // (from Systems Quantities)
    +039 * ...
    +040 * Unit<Information> MEBIT  = MEBI(BIT);
    +041 * Unit<Information> GIBYTE = GIBI(BYTE);} 
    +042 * </pre>
    +043 * You could also apply <code>Unit.prefix</code>:
    +044 * <pre>
    +045 * {@code ...
    +046 * Unit<Information> MEBIT  = BIT.prefix(MEBI);
    +047 * Unit<Information> GIBYTE = BYTE.prefix(GIBI);}
    +048 * </pre>
    +049 * 
    +050 * <p>
    +051 * <b>Do not use ordinal() to obtain the numeric representation of BinaryPrefix. Use getValue() and getExponent() instead.</b>
    +052 * </p>
    +053 * 
    +054 * <dl>
    +055 * <dt><span class="strong">Implementation Requirements</span></dt><dd>This is an immutable and thread-safe enum.</dd>
    +056 * </dl> 
    +057 *
    +058 * @author <a href="mailto:werner@units.tech">Werner Keil</a>
    +059 * @version 2.3, October 31, 2023
    +060 * @see <a href="https://en.wikipedia.org/wiki/Binary_prefix">Wikipedia: Binary Prefix</a>
    +061 * @since 2.0
    +062 */
    +063public enum BinaryPrefix implements Prefix {
    +064    /** Prefix for 1024. */
    +065    KIBI("Ki", 1),
    +066    /** Prefix for 1024<sup>2</sup>. */
    +067    MEBI("Mi", 2),
    +068    /** Prefix for 1024<sup>3</sup>. */
    +069    GIBI("Gi", 3),
    +070    /** Prefix for 1024<sup>4</sup>. */
    +071    TEBI("Ti", 4),
    +072    /** Prefix for 1024<sup>5</sup>. */
    +073    PEBI("Pi", 5),
    +074    /** Prefix for 1024<sup>6</sup>. */
    +075    EXBI("Ei", 6),
    +076    /** Prefix for 1024<sup>7</sup>. */
    +077    ZEBI("Zi", 7),
    +078    /** Prefix for 1024<sup>8</sup>. */
    +079    YOBI("Yi", 8);
    +080
    +081    /**
    +082     * The symbol of this prefix, as returned by {@link #getSymbol}.
    +083     *
    +084     * @serial
    +085     * @see #getSymbol()
    +086     */
    +087    private final String symbol;
    +088
    +089    /**
    +090     * Exponent part of the associated factor in base^exponent representation.
    +091     */
    +092    private final int exponent;
    +093
    +094    /**
    +095     * Creates a new prefix.
    +096     *
    +097     * @param symbol
    +098     *          the symbol of this prefix.
    +099     * @param exponent
    +100     *          part of the associated factor in base^exponent representation.
    +101     */
    +102    private BinaryPrefix(String symbol, int exponent) {
    +103        this.symbol = symbol;
    +104        this.exponent = exponent;
    +105    }
    +106
    +107    /**
    +108     * Returns the specified unit multiplied by the factor <code>1024</code> (binary prefix).
    +109     *
    +110     * @param <Q>
    +111     *          type of the quantity measured by the unit.
    +112     * @param unit
    +113     *          any unit.
    +114     * @return <code>unit.prefix(1024)</code>.
    +115     */
    +116    public static <Q extends Quantity<Q>> Unit<Q> KIBI(Unit<Q> unit) {
    +117        return unit.prefix(KIBI);
    +118    }
    +119
    +120    /**
    +121     * Returns the specified unit multiplied by the factor <code>1024<sup>2</sup></code> (binary prefix).
    +122     *
    +123     * @param <Q>
    +124     *          type of the quantity measured by the unit.
    +125     * @param unit
    +126     *          any unit.
    +127     * @return <code>unit.prefix(1024<sup>2</sup>)</code>.
    +128     */
    +129    public static <Q extends Quantity<Q>> Unit<Q> MEBI(Unit<Q> unit) {
    +130        return unit.prefix(MEBI);
    +131    }
    +132
    +133    /**
    +134     * Returns the specified unit multiplied by the factor <code>1024<sup>3</sup></code> (binary prefix).
    +135     *
    +136     * @param <Q>
    +137     *          type of the quantity measured by the unit.
    +138     * @param unit
    +139     *          any unit.
    +140     * @return <code>unit.prefix(1024<sup>3</sup>)</code>.
    +141     */
    +142    public static <Q extends Quantity<Q>> Unit<Q> GIBI(Unit<Q> unit) {
    +143        return unit.prefix(GIBI);
    +144    }
    +145
    +146    /**
    +147     * Returns the specified unit multiplied by the factor <code>1024<sup>4</sup></code> (binary prefix).
    +148     *
    +149     * @param <Q>
    +150     *          type of the quantity measured by the unit.
    +151     * @param unit
    +152     *          any unit.
    +153     * @return <code>unit.prefix(1024<sup>4</sup>)</code>.
    +154     */
    +155    public static <Q extends Quantity<Q>> Unit<Q> TEBI(Unit<Q> unit) {
    +156        return unit.prefix(TEBI);
    +157    }
    +158
    +159    /**
    +160     * Returns the specified unit multiplied by the factor <code>1024<sup>5</sup></code> (binary prefix).
    +161     *
    +162     * @param <Q>
    +163     *          type of the quantity measured by the unit.
    +164     * @param unit
    +165     *          any unit.
    +166     * @return <code>unit.prefix(1024<sup>5</sup>)</code>.
    +167     */
    +168    public static <Q extends Quantity<Q>> Unit<Q> PEBI(Unit<Q> unit) {
    +169        return unit.prefix(PEBI);
    +170    }
    +171
    +172    /**
    +173     * Returns the specified unit multiplied by the factor <code>1024<sup>6</sup></code> (binary prefix).
    +174     *
    +175     * @param <Q>
    +176     *          type of the quantity measured by the unit.
    +177     * @param unit
    +178     *          any unit.
    +179     * @return <code>unit.prefix(1024<sup>6</sup>)</code>.
    +180     */
    +181    public static <Q extends Quantity<Q>> Unit<Q> EXBI(Unit<Q> unit) {
    +182        return unit.prefix(EXBI);
    +183    }
    +184
    +185    /**
    +186     * Returns the specified unit multiplied by the factor <code>1024<sup>7</sup></code> (binary prefix).
    +187     *
    +188     * @param <Q>
    +189     *          type of the quantity measured by the unit.
    +190     * @param unit
    +191     *          any unit.
    +192     * @return <code>unit.prefix(1024<sup>7</sup>)</code>.
    +193     */
    +194    public static <Q extends Quantity<Q>> Unit<Q> ZEBI(Unit<Q> unit) {
    +195        return unit.prefix(ZEBI);
    +196    }
    +197
    +198    /**
    +199     * Returns the specified unit multiplied by the factor <code>1024<sup>8</sup></code> (binary prefix).
    +200     *
    +201     * @param <Q>
    +202     *          type of the quantity measured by the unit.
    +203     * @param unit
    +204     *          any unit.
    +205     * @return <code>unit.prefix(1024<sup>8</sup>)</code>.
    +206     */
    +207    public static <Q extends Quantity<Q>> Unit<Q> YOBI(Unit<Q> unit) {
    +208        return unit.prefix(YOBI);
    +209    }
    +210
    +211    /**
    +212     * Returns the symbol of this prefix.
    +213     *
    +214     * @return this prefix symbol, not {@code null}.
    +215     */
    +216    @Override
    +217    public String getSymbol() {
    +218        return symbol;
    +219    }
    +220
    +221    /**
    +222     * Base part of the associated factor in {@code base^exponent} representation. For binary prefix, this is always 1024.
    +223     */
    +224    @Override
    +225    public Integer getValue() {
    +226        return 1024;
    +227    }
    +228
    +229    /**
    +230     * Exponent part of the associated factor in {@code base^exponent} representation.
    +231     */
    +232    @Override
    +233    public int getExponent() {
    +234        return exponent;
    +235    }
    +236
    +237    /**
    +238     * Returns the name of this prefix.
    +239     *
    +240     * @return this prefix name, not {@code null}.
    +241     */
    +242    @Override
    +243    public String getName() {
    +244        return name();
    +245    }
    +246}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/Dimension.html b/docs/site/apidocs/src-html/javax/measure/Dimension.html new file mode 100644 index 00000000..7f2b0813 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/Dimension.html @@ -0,0 +1,177 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032import java.util.Map;
    +033
    +034/**
    +035 * Represents the dimension of a unit.
    +036 *
    +037 * <p>
    +038 * Concrete dimensions are obtained through the {@link Unit#getDimension()} method.
    +039 * </p>
    +040 *
    +041 * <p>
    +042 * Two units {@code u1} and {@code u2} are {@linkplain Unit#isCompatible(Unit) compatible} if and only if
    +043 * {@code u1.getDimension().equals(u2.getDimension())}.
    +044 * </p>
    +045 *
    +046 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +047 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +048 * @version 1.0, August 8, 2016
    +049 * @since 1.0
    +050 * @see Unit
    +051 * @see <a href="http://en.wikipedia.org/wiki/Dimensional_analysis">Wikipedia: Dimensional Analysis</a>
    +052 */
    +053public interface Dimension {
    +054    /**
    +055     * Returns the product of this dimension with the one specified.
    +056     *
    +057     * @param multiplicand
    +058     *          the dimension multiplicand.
    +059     * @return {@code this * multiplicand}
    +060     */
    +061    Dimension multiply(Dimension multiplicand);
    +062
    +063    /**
    +064     * Returns the quotient of this dimension with the one specified.
    +065     *
    +066     * @param divisor
    +067     *          the dimension divisor.
    +068     * @return {@code this / divisor}
    +069     */
    +070    Dimension divide(Dimension divisor);
    +071
    +072    /**
    +073     * Returns this dimension raised to an exponent. <code>(this<sup>n</sup>)</code>
    +074     *
    +075     * @param n
    +076     *          power to raise this {@code Dimension} to.
    +077     * @return <code>this<sup>n</sup></code>
    +078     */
    +079    Dimension pow(int n);
    +080
    +081    /**
    +082     * Returns the given root of this dimension.
    +083     *
    +084     * @param n
    +085     *          the root's order.
    +086     * @return the result of taking the given root of this dimension.
    +087     * @throws ArithmeticException
    +088     *           if {@code n == 0}.
    +089     */
    +090    Dimension root(int n);
    +091
    +092    /**
    +093     * Returns the (fundamental) base dimensions and their exponent whose product is this dimension, or {@code null} if this dimension is a base
    +094     * dimension.
    +095     *
    +096     * @return the mapping between the fundamental dimensions and their exponent.
    +097     */
    +098    Map<? extends Dimension, Integer> getBaseDimensions();
    +099}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/IncommensurableException.html b/docs/site/apidocs/src-html/javax/measure/IncommensurableException.html new file mode 100644 index 00000000..b06a0b3f --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/IncommensurableException.html @@ -0,0 +1,164 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032/**
    +033 * Signals that a problem of some sort has occurred due to incommensurable of some quantities/units. Only commensurable quantity (quantities with the
    +034 * same dimensions) may be compared, equated, added, or subtracted. Also, one unit can be converted to another unit only if both units are
    +035 * commensurable.
    +036 * <p>
    +037 * This is a <strong>checked</strong> exception, so it deliberately doesn't inherit from <code>MeasurementException</code> like most other exceptions.
    +038 * </p>
    +039 *
    +040 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +041 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +042 * @version 1.0, August 8, 2016
    +043 * @since 1.0
    +044 *
    +045 * @see <a href="http://en.wikipedia.org/wiki/Unit_commensurability#Commensurability">Wikipedia: Unit Commensurability</a>
    +046 */
    +047public class IncommensurableException extends Exception {
    +048    /**
    +049     * For cross-version compatibility.
    +050     */
    +051    private static final long serialVersionUID = -3676414292638136515L;
    +052
    +053    /**
    +054     * Constructs a {@code IncommensurableException} with the given message.
    +055     *
    +056     * @param message
    +057     *            the detail message, or {@code null} if none.
    +058     */
    +059    public IncommensurableException(final String message) {
    +060        super(message);
    +061    }
    +062
    +063    /**
    +064     * Constructs a {@code IncommensurableException} with the given cause.
    +065     *
    +066     * @param cause
    +067     *            the cause of this exception, or {@code null} if none.
    +068     *
    +069     */
    +070    public IncommensurableException(final Throwable cause) {
    +071        super(cause);
    +072    }
    +073
    +074    /**
    +075     * Constructs a {@code IncommensurableException} with the given message and cause.
    +076     *
    +077     * @param message
    +078     *            the detail message, or {@code null} if none.
    +079     * @param cause
    +080     *            the cause of this exception, or {@code null} if none.
    +081     *
    +082     */
    +083    public IncommensurableException(final String message, final Throwable cause) {
    +084        super(message, cause);
    +085    }
    +086}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/MeasurementError.html b/docs/site/apidocs/src-html/javax/measure/MeasurementError.html new file mode 100644 index 00000000..e742aa79 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/MeasurementError.html @@ -0,0 +1,167 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032/**
    +033 * This error is used to indicate serious problems with creating, retrieving and manipulating units of measurement objects.
    +034 *
    +035 * <dl>
    +036 * <dt><span class="strong">Implementation Requirements:</span></dt>
    +037 * <dd>This class is intended for use in a single thread. Exception thrown when errors occur during Units of Measurement operations.</dd>
    +038 * </dl>
    +039 * 
    +040 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +041 * @version 2.2, Feb 3, 2021
    +042 * @since 2.1
    +043 */
    +044public class MeasurementError extends Error {
    +045
    +046    /**
    +047         * 
    +048         */
    +049    private static final long serialVersionUID = -412360965273525777L;
    +050
    +051    /**
    +052     * Constructs a {@code MeasurementError} with no detail message.
    +053     */
    +054    public MeasurementError() {
    +055        super();
    +056    }
    +057
    +058    /**
    +059     * Constructs a {@code MeasurementError} with the specified detail message.
    +060     *
    +061     * @param message
    +062     *            the detail message.
    +063     */
    +064    public MeasurementError(final String message) {
    +065        super(message);
    +066    }
    +067
    +068    /**
    +069     * Constructs a {@code MeasurementError} with the given cause.
    +070     *
    +071     * @param cause
    +072     *            the cause of this exception, or {@code null} if none.
    +073     */
    +074    public MeasurementError(final Throwable cause) {
    +075        super(cause);
    +076    }
    +077
    +078    /**
    +079     * Constructs a {@code MeasurementError} with the specified detail message and cause.
    +080     *
    +081     * @param message
    +082     *            the detail message.
    +083     * @param cause
    +084     *            the cause, may be {@code null}
    +085     */
    +086    public MeasurementError(final String message, final Throwable cause) {
    +087        super(message, cause);
    +088    }
    +089}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/MeasurementException.html b/docs/site/apidocs/src-html/javax/measure/MeasurementException.html new file mode 100644 index 00000000..63db532c --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/MeasurementException.html @@ -0,0 +1,177 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030//
    +031// This source code implements specifications defined by the Java
    +032// Community Process. In order to remain compliant with the specification
    +033// DO NOT add / change / or delete method signatures!
    +034//
    +035package javax.measure;
    +036
    +037/**
    +038 * Exception used to indicate a problem while dealing with units of measurement.
    +039 * <p>
    +040 * This exception is used to indicate problems with creating, retrieving and manipulating units of measurement objects.
    +041 * </p>
    +042 *
    +043 * <dl>
    +044 * <dt><span class="strong">Implementation Requirements:</span></dt>
    +045 * <dd>This class is intended for use in a single thread. Exception thrown when errors occur during Units of Measurement operations.</dd>
    +046 * </dl>
    +047 *
    +048 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +049 * @version 2.0, Jul 4, 2020
    +050 * @since 1.0
    +051 */
    +052public class MeasurementException extends RuntimeException {
    +053
    +054    /**
    +055     * For cross-version compatibility.
    +056     */
    +057    private static final long serialVersionUID = 8959937033300443361L;
    +058
    +059    /**
    +060     * Constructs a {@code MeasurementException} with the given message.
    +061     *
    +062     * @param message
    +063     *            the detail message, or {@code null} if none.
    +064     */
    +065    public MeasurementException(final String message) {
    +066        super(message);
    +067    }
    +068
    +069    /**
    +070     * Constructs a {@code MeasurementException} with the given cause.
    +071     *
    +072     * @param cause
    +073     *            the cause of this exception, or {@code null} if none.
    +074     */
    +075    public MeasurementException(final Throwable cause) {
    +076        super(cause);
    +077    }
    +078
    +079    /**
    +080     * Constructs a {@code MeasurementException} with the given message and cause.
    +081     *
    +082     * @param message
    +083     *            the detail message, or {@code null} if none.
    +084     * @param cause
    +085     *            the cause of this exception, or {@code null} if none.
    +086     *
    +087     */
    +088    public MeasurementException(final String message, final Throwable cause) {
    +089        super(message, cause);
    +090    }
    +091
    +092    /**
    +093     * Constructs a {@code MeasurementException} with no given message.
    +094     *
    +095     */
    +096    protected MeasurementException() {
    +097        super();
    +098    }
    +099}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/MetricPrefix.html b/docs/site/apidocs/src-html/javax/measure/MetricPrefix.html new file mode 100644 index 00000000..b6d3ea10 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/MetricPrefix.html @@ -0,0 +1,616 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032/**
    +033 * Provides support for the 24 prefixes used in the metric system (decimal multiples and submultiples of units). For example:
    +034 *
    +035 * <pre>
    +036 * {@code import static tech.units.indriya.unit.Units.*;  // Static import (from the RI).
    +037 * import static javax.measure.MetricPrefix.*; // Static import.
    +038 * import javax.measure.*;
    +039 * import javax.measure.quantity.*;
    +040 * ...
    +041 * Unit<Pressure> HECTOPASCAL = HECTO(PASCAL);
    +042 * Unit<Length> KILOMETRE = KILO(METRE);} 
    +043 * </pre>
    +044 * You could also apply <code>Unit.prefix</code>:
    +045 * <pre>
    +046 * {@code ...
    +047 * Unit<Pressure> HECTOPASCAL = PASCAL.prefix(HECTO);
    +048 * Unit<Length> KILOMETRE = METRE.prefix(KILO);}
    +049 * </pre>
    +050 * 
    +051 * <p>
    +052 * <b>Do not use ordinal() to obtain the numeric representation of MetricPrefix. Use getValue() and getExponent() instead.</b>
    +053 * </p>
    +054 * 
    +055 * <dl>
    +056 * <dt><span class="strong">Implementation Requirements</span></dt><dd>This is an immutable and thread-safe enum.</dd>
    +057 * </dl>
    +058 * 
    +059 * @see <a href="https://en.wikipedia.org/wiki/Metric_prefix">Wikipedia: Metric Prefix</a>
    +060 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +061 * @author <a href="mailto:werner@units.tech">Werner Keil</a>
    +062 * @version 2.4, October 31, 2023
    +063 * @since 2.0
    +064 */
    +065public enum MetricPrefix implements Prefix {
    +066        /** Prefix for 10<sup>30</sup>. */
    +067    QUETTA("Q", 30),
    +068        /** Prefix for 10<sup>27</sup>. */
    +069    RONNA("R", 27),
    +070        /** Prefix for 10<sup>24</sup>. */
    +071    YOTTA("Y", 24),
    +072    /** Prefix for 10<sup>21</sup>. */
    +073    ZETTA("Z", 21),
    +074    /** Prefix for 10<sup>18</sup>. */
    +075    EXA("E", 18),
    +076    /** Prefix for 10<sup>15</sup>. */
    +077    PETA("P", 15),
    +078    /** Prefix for 10<sup>12</sup>. */
    +079    TERA("T", 12),
    +080    /** Prefix for 10<sup>9</sup>.
    +081     * @see <a href="https://en.wikipedia.org/wiki/Giga-">Wikipedia: Giga</a>  
    +082     */
    +083    GIGA("G", 9),
    +084    /** Prefix for 10<sup>6</sup>. 
    +085     * @see <a href="https://en.wikipedia.org/wiki/Mega-">Wikipedia: Mega</a> */
    +086    MEGA("M", 6),
    +087    /** Prefix for 10<sup>3</sup>.
    +088     * @see <a href="https://en.wikipedia.org/wiki/Kilo-">Wikipedia: Kilo</a> 
    +089     */
    +090    KILO("k", 3),
    +091    /** Prefix for 10<sup>2</sup>. 
    +092     * @see <a href="https://en.wikipedia.org/wiki/Hecto-">Wikipedia: Hecto</a> */
    +093    HECTO("h", 2),
    +094    /** Prefix for 10<sup>1</sup>. 
    +095     * @see <a href="https://en.wikipedia.org/wiki/Deca-">Wikipedia: Deca</a> */
    +096    DECA("da", 1),
    +097    /** Prefix for 10<sup>-1</sup>. 
    +098     * @see <a href="https://en.wikipedia.org/wiki/Deci-">Wikipedia: Deci</a> */
    +099    DECI("d", -1),
    +100    /** Prefix for 10<sup>-2</sup>.
    +101     * @see <a href="https://en.wikipedia.org/wiki/Centi-">Wikipedia: Centi</a> */     
    +102    CENTI("c", -2),
    +103    /** Prefix for 10<sup>-3</sup>.
    +104     * @see <a href="https://en.wikipedia.org/wiki/Milli-">Wikipedia: Milli</a> */
    +105    MILLI("m", -3),
    +106    /** Prefix for 10<sup>-6</sup>.
    +107     * @see <a href="https://en.wikipedia.org/wiki/Micro-">Wikipedia: Micro</a> */
    +108    MICRO("\u00b5", -6),
    +109    /** Prefix for 10<sup>-9</sup>.
    +110     * @see <a href="https://en.wikipedia.org/wiki/Nano-">Wikipedia: Nano</a> */
    +111    NANO("n", -9),
    +112    /** Prefix for 10<sup>-12</sup>. */
    +113    PICO("p", -12),
    +114    /** Prefix for 10<sup>-15</sup>. */
    +115    FEMTO("f", -15),
    +116    /** Prefix for 10<sup>-18</sup>. */
    +117    ATTO("a", -18),
    +118    /** Prefix for 10<sup>-21</sup>. */
    +119    ZEPTO("z", -21),
    +120    /** Prefix for 10<sup>-24</sup>. */
    +121    YOCTO("y", -24),
    +122        /** Prefix for 10<sup>-27</sup>. */
    +123    RONTO("r", -27),
    +124    /** Prefix for 10<sup>-30</sup>. */
    +125    QUECTO("q", -30);
    +126
    +127    /**
    +128     * The symbol of this prefix, as returned by {@link #getSymbol}.
    +129     *
    +130     * @serial
    +131     * @see #getSymbol()
    +132     */
    +133    private final String symbol;
    +134
    +135    /**
    +136     * Exponent part of the associated factor in base^exponent representation.
    +137     */
    +138    private final int exponent;
    +139
    +140    /**
    +141     * Creates a new prefix.
    +142     *
    +143     * @param symbol
    +144     *          the symbol of this prefix.
    +145     * @param exponent
    +146     *          part of the associated factor in base^exponent representation.
    +147     */
    +148    private MetricPrefix(String symbol, int exponent) {
    +149        this.symbol = symbol;
    +150        this.exponent = exponent;
    +151    }
    +152    
    +153    /**
    +154     * Returns the specified unit multiplied by the factor <code>10<sup>30</sup></code>
    +155     *
    +156     * @param <Q>
    +157     *          type of the quantity measured by the unit.
    +158     * @param unit
    +159     *          any unit.
    +160     * @return <code>unit.prefix(1e30)</code>.
    +161     * @see #QUETTA
    +162     */
    +163    public static <Q extends Quantity<Q>> Unit<Q> QUETTA(Unit<Q> unit) {
    +164        return unit.prefix(QUETTA);
    +165    }
    +166    
    +167    /**
    +168     * Returns the specified unit multiplied by the factor <code>10<sup>27</sup></code>
    +169     *
    +170     * @param <Q>
    +171     *          type of the quantity measured by the unit.
    +172     * @param unit
    +173     *          any unit.
    +174     * @return <code>unit.prefix(1e27)</code>.
    +175     * @see #RONNA
    +176     */
    +177    public static <Q extends Quantity<Q>> Unit<Q> RONNA(Unit<Q> unit) {
    +178        return unit.prefix(RONNA);
    +179    }
    +180
    +181    /**
    +182     * Returns the specified unit multiplied by the factor <code>10<sup>24</sup></code>
    +183     *
    +184     * @param <Q>
    +185     *          type of the quantity measured by the unit.
    +186     * @param unit
    +187     *          any unit.
    +188     * @return <code>unit.prefix(1e24)</code>.
    +189     * @see #YOTTA
    +190     */
    +191    public static <Q extends Quantity<Q>> Unit<Q> YOTTA(Unit<Q> unit) {
    +192        return unit.prefix(YOTTA);
    +193    }
    +194
    +195    /**
    +196     * Returns the specified unit multiplied by the factor <code>10<sup>21</sup></code>
    +197     *
    +198     * @param <Q>
    +199     *          type of the quantity measured by the unit.
    +200     * @param unit
    +201     *          any unit.
    +202     * @return <code>unit.prefix(1e21)</code>.
    +203     * @see #ZETTA
    +204     */
    +205    public static <Q extends Quantity<Q>> Unit<Q> ZETTA(Unit<Q> unit) {
    +206        return unit.prefix(ZETTA);
    +207    }
    +208
    +209    /**
    +210     * Returns the specified unit multiplied by the factor <code>10<sup>18</sup></code>
    +211     *
    +212     * @param <Q>
    +213     *          type of the quantity measured by the unit.
    +214     * @param unit
    +215     *          any unit.
    +216     * @return <code>unit.prefix(1e18)</code>.
    +217     * @see #EXA
    +218     */
    +219    public static <Q extends Quantity<Q>> Unit<Q> EXA(Unit<Q> unit) {
    +220        return unit.prefix(EXA);
    +221    }
    +222
    +223    /**
    +224     * Returns the specified unit multiplied by the factor <code>10<sup>15</sup></code>
    +225     *
    +226     * @param <Q>
    +227     *          type of the quantity measured by the unit.
    +228     * @param unit
    +229     *          any unit.
    +230     * @return <code>unit.prefix(1e15)</code>.
    +231     * @see #PETA
    +232     */
    +233    public static <Q extends Quantity<Q>> Unit<Q> PETA(Unit<Q> unit) {
    +234        return unit.prefix(PETA);
    +235    }
    +236
    +237    /**
    +238     * Returns the specified unit multiplied by the factor <code>10<sup>12</sup></code>
    +239     *
    +240     * @param <Q>
    +241     *          type of the quantity measured by the unit.
    +242     * @param unit
    +243     *          any unit.
    +244     * @return <code>unit.prefix(1e12)</code>.
    +245     * @see #TERA
    +246     */
    +247    public static <Q extends Quantity<Q>> Unit<Q> TERA(Unit<Q> unit) {
    +248        return unit.prefix(TERA);
    +249    }
    +250
    +251    /**
    +252     * Returns the specified unit multiplied by the factor <code>10<sup>9</sup></code>
    +253     *
    +254     * @param <Q>
    +255     *          type of the quantity measured by the unit.
    +256     * @param unit
    +257     *          any unit.
    +258     * @return <code>unit.prefix(1e9)</code>.
    +259     * @see #GIGA
    +260     */
    +261    public static <Q extends Quantity<Q>> Unit<Q> GIGA(Unit<Q> unit) {
    +262        return unit.prefix(GIGA);
    +263    }
    +264
    +265    /**
    +266     * Returns the specified unit multiplied by the factor <code>10<sup>6</sup></code>
    +267     *
    +268     * @param <Q>
    +269     *          type of the quantity measured by the unit.
    +270     * @param unit
    +271     *          any unit.
    +272     * @return <code>unit.prefix(1e6)</code>.
    +273     * @see #MEGA
    +274     */
    +275    public static <Q extends Quantity<Q>> Unit<Q> MEGA(Unit<Q> unit) {
    +276        return unit.prefix(MEGA);
    +277    }
    +278
    +279    /**
    +280     * Returns the specified unit multiplied by the factor <code>10<sup>3</sup></code>
    +281     *
    +282     * @param <Q>
    +283     *          type of the quantity measured by the unit.
    +284     * @param unit
    +285     *          any unit.
    +286     * @return <code>unit.prefix(1e3)</code>.
    +287     * @see #KILO
    +288     */
    +289    public static <Q extends Quantity<Q>> Unit<Q> KILO(Unit<Q> unit) {
    +290        return unit.prefix(KILO);
    +291    }
    +292
    +293    /**
    +294     * Returns the specified unit multiplied by the factor <code>10<sup>2</sup></code>
    +295     *
    +296     * @param <Q>
    +297     *          type of the quantity measured by the unit.
    +298     * @param unit
    +299     *          any unit.
    +300     * @return <code>unit.prefix(1e2)</code>.
    +301     * @see #HECTO
    +302     */
    +303    public static <Q extends Quantity<Q>> Unit<Q> HECTO(Unit<Q> unit) {
    +304        return unit.prefix(HECTO);
    +305    }
    +306
    +307    /**
    +308     * Returns the specified unit multiplied by the factor <code>10<sup>1</sup></code>
    +309     *
    +310     * @param <Q>
    +311     *          type of the quantity measured by the unit.
    +312     * @param unit
    +313     *          any unit.
    +314     * @return <code>unit.prefix(1e1)</code>.
    +315     * @see #DECA
    +316     */
    +317    public static <Q extends Quantity<Q>> Unit<Q> DECA(Unit<Q> unit) {
    +318        return unit.prefix(DECA);
    +319    }
    +320    
    +321    /**
    +322     * US alias for <code>DECA</code>.
    +323     *
    +324     * @param <Q>
    +325     *          type of the quantity measured by the unit.
    +326     * @param unit
    +327     *          any unit.
    +328     * @return <code>unit.prefix(1e1)</code>.
    +329     * @see #DECA
    +330     */
    +331    public static <Q extends Quantity<Q>> Unit<Q> DEKA(Unit<Q> unit) {
    +332        return unit.prefix(DECA);
    +333    }
    +334
    +335    /**
    +336     * Returns the specified unit multiplied by the factor <code>10<sup>-1</sup></code>
    +337     *
    +338     * @param <Q>
    +339     *          type of the quantity measured by the unit.
    +340     * @param unit
    +341     *          any unit.
    +342     * @return <code>unit.prefix(1e-1)</code>.
    +343     * @see #DECI 
    +344     */
    +345    public static <Q extends Quantity<Q>> Unit<Q> DECI(Unit<Q> unit) {
    +346        return unit.prefix(DECI);
    +347    }
    +348
    +349    /**
    +350     * Returns the specified unit multiplied by the factor <code>10<sup>-2</sup></code>
    +351     *
    +352     * @param <Q>
    +353     *          type of the quantity measured by the unit.
    +354     * @param unit
    +355     *          any unit.
    +356     * @return <code>unit.prefix(1e-2)</code>.
    +357     * @see #CENTI
    +358     */
    +359    public static <Q extends Quantity<Q>> Unit<Q> CENTI(Unit<Q> unit) {
    +360        return unit.prefix(CENTI);
    +361    }
    +362
    +363    /**
    +364     * Returns the specified unit multiplied by the factor <code>10<sup>-3</sup></code>
    +365     *
    +366     * @param <Q>
    +367     *          type of the quantity measured by the unit.
    +368     * @param unit
    +369     *          any unit.
    +370     * @return <code>unit.prefix(1e-3)</code>.
    +371     * @see #MILLI
    +372     */
    +373    public static <Q extends Quantity<Q>> Unit<Q> MILLI(Unit<Q> unit) {
    +374        return unit.prefix(MILLI);
    +375    }
    +376
    +377    /**
    +378     * Returns the specified unit multiplied by the factor <code>10<sup>-6</sup></code>
    +379     *
    +380     * @param <Q>
    +381     *          type of the quantity measured by the unit.
    +382     * @param unit
    +383     *          any unit.
    +384     * @return <code>unit.prefix(1e-6)</code>.
    +385     * @see #MICRO 
    +386     */
    +387    public static <Q extends Quantity<Q>> Unit<Q> MICRO(Unit<Q> unit) {
    +388        return unit.prefix(MICRO);
    +389    }
    +390
    +391    /**
    +392     * Returns the specified unit multiplied by the factor <code>10<sup>-9</sup></code>
    +393     *
    +394     * @param <Q>
    +395     *          type of the quantity measured by the unit.
    +396     * @param unit
    +397     *          any unit.
    +398     * @return <code>unit.prefix(1e-9)</code>.
    +399     * @see #NANO 
    +400     */
    +401    public static <Q extends Quantity<Q>> Unit<Q> NANO(Unit<Q> unit) {
    +402        return unit.prefix(NANO);
    +403    }
    +404
    +405    /**
    +406     * Returns the specified unit multiplied by the factor <code>10<sup>-12</sup></code>
    +407     *
    +408     * @param <Q>
    +409     *          type of the quantity measured by the unit.
    +410     * @param unit
    +411     *          any unit.
    +412     * @return <code>unit.prefix(1e-12)</code>.
    +413     * @see #PICO
    +414     */
    +415    public static <Q extends Quantity<Q>> Unit<Q> PICO(Unit<Q> unit) {
    +416        return unit.prefix(PICO);
    +417    }
    +418
    +419    /**
    +420     * Returns the specified unit multiplied by the factor <code>10<sup>-15</sup></code>
    +421     *
    +422     * @param <Q>
    +423     *          type of the quantity measured by the unit.
    +424     * @param unit
    +425     *          any unit.
    +426     * @return <code>unit.prefix(1e-15)</code>.
    +427     * @see #FEMTO
    +428     */
    +429    public static <Q extends Quantity<Q>> Unit<Q> FEMTO(Unit<Q> unit) {
    +430        return unit.prefix(FEMTO);
    +431    }
    +432
    +433    /**
    +434     * Returns the specified unit multiplied by the factor <code>10<sup>-18</sup></code>
    +435     *
    +436     * @param <Q>
    +437     *          type of the quantity measured by the unit.
    +438     * @param unit
    +439     *          any unit.
    +440     * @return <code>unit.prefix(1e-18)</code>.
    +441     * @see #ATTO 
    +442     */
    +443    public static <Q extends Quantity<Q>> Unit<Q> ATTO(Unit<Q> unit) {
    +444        return unit.prefix(ATTO);
    +445    }
    +446
    +447    /**
    +448     * Returns the specified unit multiplied by the factor <code>10<sup>-21</sup></code>
    +449     *
    +450     * @param <Q>
    +451     *          type of the quantity measured by the unit.
    +452     * @param unit
    +453     *          any unit.
    +454     * @return <code>unit.prefix(1e-21)</code>.
    +455     * #see ZEPTO
    +456     */
    +457    public static <Q extends Quantity<Q>> Unit<Q> ZEPTO(Unit<Q> unit) {
    +458        return unit.prefix(ZEPTO);
    +459    }
    +460
    +461    /**
    +462     * Returns the specified unit multiplied by the factor <code>10<sup>-24</sup></code>
    +463     *
    +464     * @param <Q>
    +465     *          type of the quantity measured by the unit.
    +466     * @param unit
    +467     *          any unit.
    +468     * @return <code>unit.prefix(1e-24)</code>.
    +469     * @see #YOCTO
    +470     */
    +471    public static <Q extends Quantity<Q>> Unit<Q> YOCTO(Unit<Q> unit) {
    +472        return unit.prefix(YOCTO);
    +473    }
    +474    
    +475    /**
    +476     * Returns the specified unit multiplied by the factor <code>10<sup>-27</sup></code>
    +477     *
    +478     * @param <Q>
    +479     *          type of the quantity measured by the unit.
    +480     * @param unit
    +481     *          any unit.
    +482     * @return <code>unit.prefix(1e-27)</code>.
    +483     * @see #RONTO
    +484     */
    +485    public static <Q extends Quantity<Q>> Unit<Q> RONTO(Unit<Q> unit) {
    +486        return unit.prefix(RONTO);
    +487    }
    +488
    +489    /**
    +490     * Returns the specified unit multiplied by the factor <code>10<sup>-30</sup></code>
    +491     *
    +492     * @param <Q>
    +493     *          type of the quantity measured by the unit.
    +494     * @param unit
    +495     *          any unit.
    +496     * @return <code>unit.prefix(1e-30)</code>.
    +497     * @see #QUECTO
    +498     */
    +499    public static <Q extends Quantity<Q>> Unit<Q> QUECTO(Unit<Q> unit) {
    +500        return unit.prefix(QUECTO);
    +501    }
    +502    
    +503    /**
    +504     * Returns the symbol of this prefix.
    +505     *
    +506     * @return this prefix symbol, not {@code null}.
    +507     */
    +508    @Override
    +509    public String getSymbol() {
    +510        return symbol;
    +511    }
    +512
    +513    /**
    +514     * Base part of the associated factor in {@code base^exponent} representation. For metric prefix, this is always 10.
    +515     */
    +516    @Override
    +517    public Integer getValue() {
    +518        return 10;
    +519    }
    +520
    +521    /**
    +522     * Exponent part of the associated factor in {@code base^exponent} representation.
    +523     */
    +524    @Override
    +525    public int getExponent() {
    +526        return exponent;
    +527    }
    +528
    +529    /**
    +530     * Returns the name of this prefix.
    +531     *
    +532     * @return this prefix name, not {@code null}.
    +533     */
    +534    @Override
    +535    public String getName() {
    +536        return name();
    +537    }
    +538}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/Prefix.html b/docs/site/apidocs/src-html/javax/measure/Prefix.html new file mode 100644 index 00000000..e773cfe2 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/Prefix.html @@ -0,0 +1,148 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032/**
    +033 * A unit prefix is a specifier or mnemonic that is prepended to units of measurement to indicate multiples or fractions of the units.
    +034 *
    +035 * @see <a href="https://en.wikipedia.org/wiki/Unit_prefix">Wikipedia: Unit Prefix</a>
    +036 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +037 * @version 1.4, April 3, 2023
    +038 * @since 2.0
    +039 */
    +040public interface Prefix {
    +041    /**
    +042     * Returns the name of this prefix.
    +043     *
    +044     * @return this prefix name, not {@code null}.
    +045     */
    +046    String getName();
    +047
    +048    /**
    +049     * Returns the symbol of this prefix.
    +050     *
    +051     * @return this prefix symbol, not {@code null}.
    +052     */
    +053    public String getSymbol();
    +054
    +055    /**
    +056     * Returns the value of this prefix. If the {@code exponent} is different from {@code 1}, this value is the {@code base} part of the associated
    +057     * factor in {@code base^exponent} representation.
    +058     * 
    +059     * @return The prefix value.
    +060     */
    +061    Number getValue();
    +062
    +063    /**
    +064     * Exponent part of the associated factor in {@code base^exponent} representation. For different factors, e.g. rational numbers like {@code 1/4}
    +065     * the exponent is always {@code 1}.
    +066     *
    +067     * @return the exponent part of this prefix.
    +068     */
    +069    int getExponent();
    +070}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/Quantity.Scale.html b/docs/site/apidocs/src-html/javax/measure/Quantity.Scale.html new file mode 100644 index 00000000..2d2c44f4 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/Quantity.Scale.html @@ -0,0 +1,394 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032/**
    +033 * Represents a quantitative property of a phenomenon, body, or substance, that
    +034 * can be quantified by measurement. {@link javax.measure.quantity.Mass Mass},
    +035 * time, distance, heat, and angular separation are among the familiar examples
    +036 * of quantitative properties.
    +037 * <p>
    +038 * <code> {@literal Unit<Mass>} pound = ... {@literal Quantity<Length>} size = ... {@literal Sensor<Temperature>}<br>
    +039 * thermometer = ... {@literal Vector3D<Speed>} aircraftSpeed = ... </code>
    +040 * </p>
    +041 *
    +042 * <dl>
    +043 * <dt><span class="strong">Arithmetic operations</span></dt>
    +044 * </dl> 
    +045 * This interface defines some arithmetic operations between {@code Quantity}
    +046 * instances. All implementations shall produce <em>equivalent</em> results for
    +047 * the same operation applied on equivalent quantities. Two quantities are
    +048 * equivalent if, after conversion to the same unit of measurement, they have
    +049 * the same numerical value (ignoring rounding errors). For example 2000 metres
    +050 * is equivalent to 2 km, but 2°C is not equivalent to 2 K; it is equivalent to
    +051 * 275.15 K instead. Above requirement applied to addition means that 2°C + 2 K
    +052 * shall be equivalent to 275.15 K + 2 K.
    +053 *
    +054 * <p>All operations shall preserve the
    +055 * <a href="https://en.wikiversity.org/wiki/Basic_Laws_of_Algebra">basic laws
    +056 * of algebra</a>, in particular <b>commutativity</b> of addition and
    +057 * multiplication (<var>A</var> + <var>B</var> = <var>B</var> + <var>A</var>)
    +058 * and <b>associativity</b> of addition and multiplication (<var>A</var> +
    +059 * <var>B</var>) + <var>C</var> = <var>A</var> + (<var>B</var> + <var>C</var>).
    +060 * In order to preserve those algebra laws, this specification requires all
    +061 * arithmetic operations to execute <em>as is</em> all operands were converted
    +062 * to {@linkplain Unit#getSystemUnit() system unit} before the operation is
    +063 * carried out, and the result converted back to any compatible unit at
    +064 * implementation choice. For example 4 cm + 1 inch shall produce any result
    +065 * <em>equivalent</em> to 0.04 m + 0.0254 m.</p>
    +066 *
    +067 * <p>Implementations are allowed to avoid conversion to system unit if the
    +068 * result is guaranteed to be equivalent. This is often the case when the
    +069 * conversion between quantity unit and system unit is only a
    +070 * {@linkplain UnitConverter#isLinear() scale factor}. However this is not
    +071 * the case for conversions applying an offset or more complex formula.
    +072 * For example 2°C + 1°C = 274.15°C, not 3°C. This counter-intuitive result
    +073 * is essential for preserving algebra laws like associativity, and is also
    +074 * the expected result from a thermodynamic point of view.</p>
    +075 *
    +076 * <dl>
    +077 * <dt><span class="strong">API Note:</span></dt><dd>This interface places no restrictions on the mutability of
    +078 *          implementations, however immutability is strongly recommended. All
    +079 *          implementations must be {@link Comparable}.</dd>
    +080 * </dl>
    +081 *
    +082 * @param <Q>
    +083 *            The type of the quantity.
    +084 *
    +085 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +086 * @author <a href="mailto:martin.desruisseaux@geomatys.com">Martin
    +087 *         Desruisseaux</a>
    +088 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +089 * @author <a href="mailto:otaviopolianasantana@gmail.com">Otavio Santana</a>
    +090 * @see Unit
    +091 * @see <a href="http://en.wikipedia.org/wiki/Quantity">Wikipedia: Quantity</a>
    +092 * @see <a href="http://martinfowler.com/eaaDev/quantity.html">Martin Fowler -
    +093 *      Quantity</a>
    +094 * @version 2.5, May 20, 2023
    +095 * @since 1.0
    +096 */
    +097public interface Quantity<Q extends Quantity<Q>> {
    +098    
    +099   /**
    +100    * The scale of a {@link Quantity}, either {@code ABSOLUTE} or {@code RELATIVE}.
    +101    *
    +102    * @since 2.0
    +103    * @see <a href="https://en.wikipedia.org/wiki/Absolute_scale">Wikipedia: Absolute scale</a>
    +104    */
    +105    public static enum Scale {
    +106        /** 
    +107         * Absolute scale
    +108         * @see <a href="https://en.wikipedia.org/wiki/Absolute_scale">Wikipedia: Absolute scale</a> 
    +109         */
    +110        ABSOLUTE, 
    +111        /** 
    +112         * Relative scale 
    +113         */
    +114        RELATIVE
    +115    }
    +116       
    +117    /**
    +118     * Returns the sum of this {@code Quantity} with the one specified.
    +119     * The result shall be as if this quantity and the given addend were
    +120     * converted to {@linkplain Unit#getSystemUnit() system unit} before
    +121     * to be added, and the result converted back to the unit of this
    +122     * quantity or any other compatible unit at implementation choice.
    +123     *
    +124     * @param addend
    +125     *            the {@code Quantity} to be added.
    +126     * @return {@code this + addend}.
    +127     */
    +128    Quantity<Q> add(Quantity<Q> addend);
    +129
    +130    /**
    +131     * Returns the difference between this {@code Quantity} and the one specified.
    +132     * The result shall be as if this quantity and the given subtrahend were
    +133     * converted to {@linkplain Unit#getSystemUnit() system unit} before
    +134     * to be subtracted, and the result converted back to the unit of this
    +135     * quantity or any other compatible unit at implementation choice.
    +136     *
    +137     * @param subtrahend
    +138     *            the {@code Quantity} to be subtracted.
    +139     * @return <code>this - subtrahend</code>.
    +140     */
    +141    Quantity<Q> subtract(Quantity<Q> subtrahend);
    +142
    +143    /**
    +144     * Returns the quotient of this {@code Quantity} divided by the {@code Quantity}
    +145     * specified.
    +146     * The result shall be as if this quantity and the given divisor were
    +147     * converted to {@linkplain Unit#getSystemUnit() system unit} before
    +148     * to be divided, and the result converted back to the unit of this
    +149     * quantity or any other compatible unit at implementation choice.
    +150     *
    +151     * @throws ClassCastException
    +152     *             if the type of an element in the specified operation is
    +153     *             incompatible with this quantity
    +154     *
    +155     * @param divisor
    +156     *            the {@code Quantity} divisor.
    +157     * @return <code>this / divisor</code>.
    +158     */
    +159    Quantity<?> divide(Quantity<?> divisor);
    +160
    +161    /**
    +162     * Returns the quotient of this {@code Quantity} divided by the {@code Number}
    +163     * specified.
    +164     * The result shall be as if this quantity was converted to
    +165     * {@linkplain Unit#getSystemUnit() system unit} before to be divided,
    +166     * and the result converted back to the unit of this quantity or any
    +167     * other compatible unit at implementation choice.
    +168     *
    +169     * @param divisor
    +170     *            the {@code Number} divisor.
    +171     * @return <code>this / divisor</code>.
    +172     */
    +173    Quantity<Q> divide(Number divisor);
    +174
    +175    /**
    +176     * Returns the product of this {@code Quantity} with the one specified.
    +177     * The result shall be as if this quantity and the given multiplicand were
    +178     * converted to {@linkplain Unit#getSystemUnit() system unit} before
    +179     * to be multiplied, and the result converted back to the unit of this
    +180     * quantity or any other compatible unit at implementation choice.
    +181     *
    +182     * @throws ClassCastException
    +183     *             if the type of an element in the specified operation is
    +184     *             incompatible with this quantity
    +185     *
    +186     * @param multiplicand
    +187     *            the {@code Quantity} multiplicand.
    +188     * @return <code>this * multiplicand</code>.
    +189     */
    +190    Quantity<?> multiply(Quantity<?> multiplicand);
    +191
    +192    /**
    +193     * Returns the product of this {@code Quantity} with the {@code Number} value
    +194     * specified.
    +195     * The result shall be as if this quantity was converted to
    +196     * {@linkplain Unit#getSystemUnit() system unit} before to be multiplied,
    +197     * and the result converted back to the unit of this quantity or any
    +198     * other compatible unit at implementation choice.
    +199     *
    +200     * @param multiplicand
    +201     *            the {@code Number} multiplicand.
    +202     * @return <code>this * multiplicand</code>.
    +203     */
    +204    Quantity<Q> multiply(Number multiplicand);
    +205
    +206    /**
    +207     * Returns this {@code Quantity} converted into another (compatible)
    +208     * {@code Unit}.
    +209     *
    +210     * @param unit
    +211     *            the {@code Unit unit} in which the returned quantity is stated.
    +212     * @return this quantity or a new quantity equivalent to this quantity stated in the specified unit.
    +213     * @throws ArithmeticException
    +214     *             if the result is inexact and the quotient has a non-terminating decimal expansion.
    +215     */
    +216    Quantity<Q> to(Unit<Q> unit);
    +217
    +218    /**
    +219     * Returns a {@code Quantity} that is the multiplicative inverse of this
    +220     * {@code Quantity}, having reciprocal value and reciprocal unit as given by
    +221     * {@code this.getUnit().inverse()}.
    +222     *
    +223     * @return reciprocal {@code Quantity}
    +224     * @see <a href=
    +225     *      "https://en.wikipedia.org/wiki/Multiplicative_inverse">Wikipedia:
    +226     *      Multiplicative inverse</a>
    +227     */
    +228    Quantity<?> inverse();
    +229
    +230    /**
    +231     * Returns a {@code Quantity} whose value is {@code (-this.getValue())}.
    +232     *
    +233     * @return {@code -this}.
    +234     */
    +235    Quantity<Q> negate();
    +236
    +237    /**
    +238     * Casts this quantity to a parameterized unit of specified nature or throw a
    +239     * <code>ClassCastException</code> if the dimension of the specified quantity
    +240     * and this measure unit's dimension do not match. For example:
    +241     * <p>
    +242     * <code>
    +243     *     {@literal Quantity<Length>} length = Quantities.getQuantity("2 km").asType(Length.class);
    +244     * </code> or <code>
    +245     *     {@literal Quantity<Speed>} C = length.multiply(299792458).divide(second).asType(Speed.class);
    +246     * </code>
    +247     * </p>
    +248     *
    +249     * @param <T>
    +250     *            The type of the quantity.
    +251     * @param type
    +252     *            the quantity class identifying the nature of the quantity.
    +253     * @return this quantity parameterized with the specified type.
    +254     * @throws ClassCastException
    +255     *             if the dimension of this unit is different from the specified
    +256     *             quantity dimension.
    +257     * @throws UnsupportedOperationException
    +258     *             if the specified quantity class does not have a SI unit for the
    +259     *             quantity.
    +260     * @see Unit#asType(Class)
    +261     */
    +262    <T extends Quantity<T>> Quantity<T> asType(Class<T> type) throws ClassCastException;
    +263
    +264    /**
    +265     * Returns the value of this {@code Quantity}.
    +266     *
    +267     * @return a value.
    +268     */
    +269    Number getValue();
    +270
    +271    /**
    +272     * Returns the unit of this {@code Quantity}.
    +273     *
    +274     * @return the unit (shall not be {@code null}).
    +275     */
    +276    Unit<Q> getUnit();
    +277    
    +278    /**
    +279     * Convenient method equivalent to {@link #to(javax.measure.Unit)
    +280     * to(getUnit().toSystemUnit())}.
    +281     *
    +282     * @return this quantity or a new quantity equivalent to this quantity stated in
    +283     *         SI units.
    +284     * @throws ArithmeticException
    +285     *             if the result is inexact and the quotient has a non-terminating
    +286     *             decimal expansion.
    +287     */
    +288    default Quantity<Q> toSystemUnit() {
    +289        return to(getUnit().getSystemUnit());
    +290    }
    +291      
    +292    /**
    +293     * Returns the {@code Scale} of this {@code Quantity}, if it's absolute or relative.
    +294     *
    +295     * @return the scale, if it's an absolute or relative quantity.
    +296     * @since 2.0
    +297     
    +298     * @see <a href="https://en.wikipedia.org/wiki/Absolute_scale">Wikipedia: Absolute scale</a>
    +299     */
    +300    Scale getScale();
    +301    
    +302    /**
    +303     * Compares two instances of {@code Quantity <Q>}, performing the conversion of units if necessary.
    +304     *
    +305     * @param that
    +306     *          the {@code quantity<Q>} to be compared with this instance.
    +307     * @return {@code true} if {@code that \u2261 this}.
    +308     * @throws NullPointerException
    +309     *           if the quantity is null
    +310     *           
    +311     * @see <a href= "https://dictionary.cambridge.org/dictionary/english/equivalent">Cambridge Dictionary: equivalent</a>
    +312     * @see <a href= "https://www.lexico.com/en/definition/equivalent">LEXICO: equivalent</a>
    +313     * @since 2.1       
    +314     */
    +315    boolean isEquivalentTo(Quantity<Q> that);
    +316}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/Quantity.html b/docs/site/apidocs/src-html/javax/measure/Quantity.html new file mode 100644 index 00000000..8645a2a0 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/Quantity.html @@ -0,0 +1,394 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032/**
    +033 * Represents a quantitative property of a phenomenon, body, or substance, that
    +034 * can be quantified by measurement. {@link javax.measure.quantity.Mass Mass},
    +035 * time, distance, heat, and angular separation are among the familiar examples
    +036 * of quantitative properties.
    +037 * <p>
    +038 * <code> {@literal Unit<Mass>} pound = ... {@literal Quantity<Length>} size = ... {@literal Sensor<Temperature>}<br>
    +039 * thermometer = ... {@literal Vector3D<Speed>} aircraftSpeed = ... </code>
    +040 * </p>
    +041 *
    +042 * <dl>
    +043 * <dt><span class="strong">Arithmetic operations</span></dt>
    +044 * </dl> 
    +045 * This interface defines some arithmetic operations between {@code Quantity}
    +046 * instances. All implementations shall produce <em>equivalent</em> results for
    +047 * the same operation applied on equivalent quantities. Two quantities are
    +048 * equivalent if, after conversion to the same unit of measurement, they have
    +049 * the same numerical value (ignoring rounding errors). For example 2000 metres
    +050 * is equivalent to 2 km, but 2°C is not equivalent to 2 K; it is equivalent to
    +051 * 275.15 K instead. Above requirement applied to addition means that 2°C + 2 K
    +052 * shall be equivalent to 275.15 K + 2 K.
    +053 *
    +054 * <p>All operations shall preserve the
    +055 * <a href="https://en.wikiversity.org/wiki/Basic_Laws_of_Algebra">basic laws
    +056 * of algebra</a>, in particular <b>commutativity</b> of addition and
    +057 * multiplication (<var>A</var> + <var>B</var> = <var>B</var> + <var>A</var>)
    +058 * and <b>associativity</b> of addition and multiplication (<var>A</var> +
    +059 * <var>B</var>) + <var>C</var> = <var>A</var> + (<var>B</var> + <var>C</var>).
    +060 * In order to preserve those algebra laws, this specification requires all
    +061 * arithmetic operations to execute <em>as is</em> all operands were converted
    +062 * to {@linkplain Unit#getSystemUnit() system unit} before the operation is
    +063 * carried out, and the result converted back to any compatible unit at
    +064 * implementation choice. For example 4 cm + 1 inch shall produce any result
    +065 * <em>equivalent</em> to 0.04 m + 0.0254 m.</p>
    +066 *
    +067 * <p>Implementations are allowed to avoid conversion to system unit if the
    +068 * result is guaranteed to be equivalent. This is often the case when the
    +069 * conversion between quantity unit and system unit is only a
    +070 * {@linkplain UnitConverter#isLinear() scale factor}. However this is not
    +071 * the case for conversions applying an offset or more complex formula.
    +072 * For example 2°C + 1°C = 274.15°C, not 3°C. This counter-intuitive result
    +073 * is essential for preserving algebra laws like associativity, and is also
    +074 * the expected result from a thermodynamic point of view.</p>
    +075 *
    +076 * <dl>
    +077 * <dt><span class="strong">API Note:</span></dt><dd>This interface places no restrictions on the mutability of
    +078 *          implementations, however immutability is strongly recommended. All
    +079 *          implementations must be {@link Comparable}.</dd>
    +080 * </dl>
    +081 *
    +082 * @param <Q>
    +083 *            The type of the quantity.
    +084 *
    +085 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +086 * @author <a href="mailto:martin.desruisseaux@geomatys.com">Martin
    +087 *         Desruisseaux</a>
    +088 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +089 * @author <a href="mailto:otaviopolianasantana@gmail.com">Otavio Santana</a>
    +090 * @see Unit
    +091 * @see <a href="http://en.wikipedia.org/wiki/Quantity">Wikipedia: Quantity</a>
    +092 * @see <a href="http://martinfowler.com/eaaDev/quantity.html">Martin Fowler -
    +093 *      Quantity</a>
    +094 * @version 2.5, May 20, 2023
    +095 * @since 1.0
    +096 */
    +097public interface Quantity<Q extends Quantity<Q>> {
    +098    
    +099   /**
    +100    * The scale of a {@link Quantity}, either {@code ABSOLUTE} or {@code RELATIVE}.
    +101    *
    +102    * @since 2.0
    +103    * @see <a href="https://en.wikipedia.org/wiki/Absolute_scale">Wikipedia: Absolute scale</a>
    +104    */
    +105    public static enum Scale {
    +106        /** 
    +107         * Absolute scale
    +108         * @see <a href="https://en.wikipedia.org/wiki/Absolute_scale">Wikipedia: Absolute scale</a> 
    +109         */
    +110        ABSOLUTE, 
    +111        /** 
    +112         * Relative scale 
    +113         */
    +114        RELATIVE
    +115    }
    +116       
    +117    /**
    +118     * Returns the sum of this {@code Quantity} with the one specified.
    +119     * The result shall be as if this quantity and the given addend were
    +120     * converted to {@linkplain Unit#getSystemUnit() system unit} before
    +121     * to be added, and the result converted back to the unit of this
    +122     * quantity or any other compatible unit at implementation choice.
    +123     *
    +124     * @param addend
    +125     *            the {@code Quantity} to be added.
    +126     * @return {@code this + addend}.
    +127     */
    +128    Quantity<Q> add(Quantity<Q> addend);
    +129
    +130    /**
    +131     * Returns the difference between this {@code Quantity} and the one specified.
    +132     * The result shall be as if this quantity and the given subtrahend were
    +133     * converted to {@linkplain Unit#getSystemUnit() system unit} before
    +134     * to be subtracted, and the result converted back to the unit of this
    +135     * quantity or any other compatible unit at implementation choice.
    +136     *
    +137     * @param subtrahend
    +138     *            the {@code Quantity} to be subtracted.
    +139     * @return <code>this - subtrahend</code>.
    +140     */
    +141    Quantity<Q> subtract(Quantity<Q> subtrahend);
    +142
    +143    /**
    +144     * Returns the quotient of this {@code Quantity} divided by the {@code Quantity}
    +145     * specified.
    +146     * The result shall be as if this quantity and the given divisor were
    +147     * converted to {@linkplain Unit#getSystemUnit() system unit} before
    +148     * to be divided, and the result converted back to the unit of this
    +149     * quantity or any other compatible unit at implementation choice.
    +150     *
    +151     * @throws ClassCastException
    +152     *             if the type of an element in the specified operation is
    +153     *             incompatible with this quantity
    +154     *
    +155     * @param divisor
    +156     *            the {@code Quantity} divisor.
    +157     * @return <code>this / divisor</code>.
    +158     */
    +159    Quantity<?> divide(Quantity<?> divisor);
    +160
    +161    /**
    +162     * Returns the quotient of this {@code Quantity} divided by the {@code Number}
    +163     * specified.
    +164     * The result shall be as if this quantity was converted to
    +165     * {@linkplain Unit#getSystemUnit() system unit} before to be divided,
    +166     * and the result converted back to the unit of this quantity or any
    +167     * other compatible unit at implementation choice.
    +168     *
    +169     * @param divisor
    +170     *            the {@code Number} divisor.
    +171     * @return <code>this / divisor</code>.
    +172     */
    +173    Quantity<Q> divide(Number divisor);
    +174
    +175    /**
    +176     * Returns the product of this {@code Quantity} with the one specified.
    +177     * The result shall be as if this quantity and the given multiplicand were
    +178     * converted to {@linkplain Unit#getSystemUnit() system unit} before
    +179     * to be multiplied, and the result converted back to the unit of this
    +180     * quantity or any other compatible unit at implementation choice.
    +181     *
    +182     * @throws ClassCastException
    +183     *             if the type of an element in the specified operation is
    +184     *             incompatible with this quantity
    +185     *
    +186     * @param multiplicand
    +187     *            the {@code Quantity} multiplicand.
    +188     * @return <code>this * multiplicand</code>.
    +189     */
    +190    Quantity<?> multiply(Quantity<?> multiplicand);
    +191
    +192    /**
    +193     * Returns the product of this {@code Quantity} with the {@code Number} value
    +194     * specified.
    +195     * The result shall be as if this quantity was converted to
    +196     * {@linkplain Unit#getSystemUnit() system unit} before to be multiplied,
    +197     * and the result converted back to the unit of this quantity or any
    +198     * other compatible unit at implementation choice.
    +199     *
    +200     * @param multiplicand
    +201     *            the {@code Number} multiplicand.
    +202     * @return <code>this * multiplicand</code>.
    +203     */
    +204    Quantity<Q> multiply(Number multiplicand);
    +205
    +206    /**
    +207     * Returns this {@code Quantity} converted into another (compatible)
    +208     * {@code Unit}.
    +209     *
    +210     * @param unit
    +211     *            the {@code Unit unit} in which the returned quantity is stated.
    +212     * @return this quantity or a new quantity equivalent to this quantity stated in the specified unit.
    +213     * @throws ArithmeticException
    +214     *             if the result is inexact and the quotient has a non-terminating decimal expansion.
    +215     */
    +216    Quantity<Q> to(Unit<Q> unit);
    +217
    +218    /**
    +219     * Returns a {@code Quantity} that is the multiplicative inverse of this
    +220     * {@code Quantity}, having reciprocal value and reciprocal unit as given by
    +221     * {@code this.getUnit().inverse()}.
    +222     *
    +223     * @return reciprocal {@code Quantity}
    +224     * @see <a href=
    +225     *      "https://en.wikipedia.org/wiki/Multiplicative_inverse">Wikipedia:
    +226     *      Multiplicative inverse</a>
    +227     */
    +228    Quantity<?> inverse();
    +229
    +230    /**
    +231     * Returns a {@code Quantity} whose value is {@code (-this.getValue())}.
    +232     *
    +233     * @return {@code -this}.
    +234     */
    +235    Quantity<Q> negate();
    +236
    +237    /**
    +238     * Casts this quantity to a parameterized unit of specified nature or throw a
    +239     * <code>ClassCastException</code> if the dimension of the specified quantity
    +240     * and this measure unit's dimension do not match. For example:
    +241     * <p>
    +242     * <code>
    +243     *     {@literal Quantity<Length>} length = Quantities.getQuantity("2 km").asType(Length.class);
    +244     * </code> or <code>
    +245     *     {@literal Quantity<Speed>} C = length.multiply(299792458).divide(second).asType(Speed.class);
    +246     * </code>
    +247     * </p>
    +248     *
    +249     * @param <T>
    +250     *            The type of the quantity.
    +251     * @param type
    +252     *            the quantity class identifying the nature of the quantity.
    +253     * @return this quantity parameterized with the specified type.
    +254     * @throws ClassCastException
    +255     *             if the dimension of this unit is different from the specified
    +256     *             quantity dimension.
    +257     * @throws UnsupportedOperationException
    +258     *             if the specified quantity class does not have a SI unit for the
    +259     *             quantity.
    +260     * @see Unit#asType(Class)
    +261     */
    +262    <T extends Quantity<T>> Quantity<T> asType(Class<T> type) throws ClassCastException;
    +263
    +264    /**
    +265     * Returns the value of this {@code Quantity}.
    +266     *
    +267     * @return a value.
    +268     */
    +269    Number getValue();
    +270
    +271    /**
    +272     * Returns the unit of this {@code Quantity}.
    +273     *
    +274     * @return the unit (shall not be {@code null}).
    +275     */
    +276    Unit<Q> getUnit();
    +277    
    +278    /**
    +279     * Convenient method equivalent to {@link #to(javax.measure.Unit)
    +280     * to(getUnit().toSystemUnit())}.
    +281     *
    +282     * @return this quantity or a new quantity equivalent to this quantity stated in
    +283     *         SI units.
    +284     * @throws ArithmeticException
    +285     *             if the result is inexact and the quotient has a non-terminating
    +286     *             decimal expansion.
    +287     */
    +288    default Quantity<Q> toSystemUnit() {
    +289        return to(getUnit().getSystemUnit());
    +290    }
    +291      
    +292    /**
    +293     * Returns the {@code Scale} of this {@code Quantity}, if it's absolute or relative.
    +294     *
    +295     * @return the scale, if it's an absolute or relative quantity.
    +296     * @since 2.0
    +297     
    +298     * @see <a href="https://en.wikipedia.org/wiki/Absolute_scale">Wikipedia: Absolute scale</a>
    +299     */
    +300    Scale getScale();
    +301    
    +302    /**
    +303     * Compares two instances of {@code Quantity <Q>}, performing the conversion of units if necessary.
    +304     *
    +305     * @param that
    +306     *          the {@code quantity<Q>} to be compared with this instance.
    +307     * @return {@code true} if {@code that \u2261 this}.
    +308     * @throws NullPointerException
    +309     *           if the quantity is null
    +310     *           
    +311     * @see <a href= "https://dictionary.cambridge.org/dictionary/english/equivalent">Cambridge Dictionary: equivalent</a>
    +312     * @see <a href= "https://www.lexico.com/en/definition/equivalent">LEXICO: equivalent</a>
    +313     * @since 2.1       
    +314     */
    +315    boolean isEquivalentTo(Quantity<Q> that);
    +316}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/UnconvertibleException.html b/docs/site/apidocs/src-html/javax/measure/UnconvertibleException.html new file mode 100644 index 00000000..0b36489d --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/UnconvertibleException.html @@ -0,0 +1,157 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032/**
    +033 * Signals that a problem of some sort has occurred due to the impossibility of constructing a converter between two units. For example, the
    +034 * multiplication of offset units are usually units not convertible to their {@linkplain Unit#getSystemUnit() system unit}.
    +035 *
    +036 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +037 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +038 * @version 1.0, Aug 8, 2016
    +039 *
    +040 */
    +041public class UnconvertibleException extends MeasurementException {
    +042    /**
    +043     * For cross-version compatibility.
    +044     */
    +045    private static final long serialVersionUID = -4623551240019830166L;
    +046
    +047    /**
    +048     * Constructs a {@code UnconvertibleException} with the given message.
    +049     *
    +050     * @param message
    +051     *            the detail message, or {@code null} if none.
    +052     */
    +053    public UnconvertibleException(final String message) {
    +054        super(message);
    +055    }
    +056
    +057    /**
    +058     * Constructs a {@code UnconvertibleException} with the given cause.
    +059     *
    +060     * @param cause
    +061     *            the cause of this exception, or {@code null} if none.
    +062     */
    +063    public UnconvertibleException(final Throwable cause) {
    +064        super(cause);
    +065    }
    +066
    +067    /**
    +068     * Constructs a {@code UnconvertibleException} with the given message and cause.
    +069     *
    +070     * @param message
    +071     *            the detail message, or {@code null} if none.
    +072     * @param cause
    +073     *            the cause of this exception, or {@code null} if none.
    +074     *
    +075     */
    +076    public UnconvertibleException(final String message, final Throwable cause) {
    +077        super(message, cause);
    +078    }
    +079}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/Unit.html b/docs/site/apidocs/src-html/javax/measure/Unit.html new file mode 100644 index 00000000..a58f31d6 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/Unit.html @@ -0,0 +1,512 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030//
    +031// This source code implements specifications defined by the Java
    +032// Community Process. In order to remain compliant with the specification
    +033// DO NOT add / change / or delete method signatures!
    +034//
    +035package javax.measure;
    +036
    +037import java.util.Map;
    +038
    +039/**
    +040 * Represents a determinate {@linkplain Quantity quantity} (as of length, time, heat, or value) adopted as a standard of measurement.
    +041 *
    +042 * <p>
    +043 * It is helpful to think of instances of this class as recording the history by which they are created. Thus, for example, the string {@code "g/kg"}
    +044 * (which is a dimensionless unit) would result from invoking the method {@link #toString()} on a unit that was created by dividing a gram unit by a
    +045 * kilogram unit.
    +046 * </p>
    +047 *
    +048 * <p>
    +049 * This interface supports the multiplication of offsets units. The result is usually a unit not convertible to its {@linkplain #getSystemUnit()
    +050 * system unit}. Such units may appear in derivative quantities. For example Celsius per meter is an unit of gradient, which is common in atmospheric
    +051 * and oceanographic research.
    +052 * </p>
    +053 *
    +054 * <p>
    +055 * Units raised at non-integral powers are not supported. For example, {@code LITRE.root(2)} raises an {@code ArithmeticException}, but
    +056 * {@code HECTARE.root(2)} returns {@code HECTOMETRE} (100 metres).
    +057 * </p>
    +058 *
    +059 * <p>
    +060 * Unit instances shall be immutable.
    +061 * </p>
    +062 *
    +063 * @param <Q>
    +064 *          The type of the quantity measured by this unit.
    +065 *
    +066 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +067 * @author <a href="mailto:steve@unidata.ucar.edu">Steve Emmerson</a>
    +068 * @author <a href="mailto:martin.desruisseaux@geomatys.com">Martin Desruisseaux</a>
    +069 * @author <a href="mailto:werner@units.tech">Werner Keil</a>
    +070 * @version 2.4, November 11, 2020
    +071 * @since 1.0
    +072 *
    +073 * @see <a href="http://en.wikipedia.org/wiki/Units_of_measurement">Wikipedia: Units of measurement</a>
    +074 */
    +075public interface Unit<Q extends Quantity<Q>> {
    +076
    +077    /*******************/
    +078    /** Units Queries **/
    +079    /*******************/
    +080
    +081    /**
    +082     * Returns the symbol (if any) of this unit. This method returns {@code null} if this unit has no specific symbol associated with.
    +083     *
    +084     * @return this unit symbol, or {@code null} if this unit has not specific symbol associated with (e.g. product of units).
    +085     *
    +086     * @see #toString()
    +087     * @see javax.measure.format.UnitFormat
    +088     */
    +089    String getSymbol();
    +090
    +091    /**
    +092     * Returns the name (if any) of this unit. This method returns {@code null} if this unit has no specific name associated with.
    +093     *
    +094     * @return this unit name, or {@code null} if this unit has not specific name associated with (e.g. product of units).
    +095     *
    +096     * @see #toString()
    +097     * @see javax.measure.format.UnitFormat
    +098     */
    +099    String getName();
    +100
    +101    /**
    +102     * Returns the dimension of this unit. Two units {@code u1} and {@code u2} are {@linkplain #isCompatible(Unit) compatible} if and only if
    +103     * {@code u1.getDimension().equals(u2.getDimension())}.
    +104     *
    +105     * @return the dimension of this unit.
    +106     *
    +107     * @see #isCompatible(Unit)
    +108     */
    +109    Dimension getDimension();
    +110
    +111    /**
    +112     * Returns the unscaled system unit from which this unit is derived. System units are either base units, {@linkplain #alternate(String) alternate}
    +113     * units or product of rational powers of system units.
    +114     *
    +115     * <p>
    +116     * Because the system unit is unique by quantity type, it can be be used to identify the quantity given the unit. For example:
    +117     * </p>
    +118     * <code>
    +119     *     static boolean isAngularSpeed(Unit&lt;?&gt; unit) {<br>
    +120     *     &nbsp;&nbsp;    return unit.getSystemUnit().equals(RADIAN.divide(SECOND));<br>
    +121     *     }<br>
    +122     *     assert isAngularSpeed(REVOLUTION.divide(MINUTE)); // Returns true.<br><br>
    +123     * </code>
    +124     *
    +125     * @return the system unit this unit is derived from, or {@code this} if this unit is a system unit.
    +126     */
    +127    Unit<Q> getSystemUnit();
    +128
    +129    /**
    +130     * Returns the base units and their exponent whose product is this unit, or {@code null} if this unit is a base unit (not a product of existing
    +131     * units).
    +132     *
    +133     * @return the base units and their exponent making up this unit.
    +134     */
    +135    Map<? extends Unit<?>, Integer> getBaseUnits();
    +136
    +137    /**
    +138     * Indicates if this unit is compatible with the unit specified. Units don't need to be equal to be compatible. For example (assuming {@code ONE}
    +139     * is a dimensionless unit):<br>
    +140     *
    +141     * <code>
    +142     *     RADIAN.equals(ONE) == false<br>
    +143     *     RADIAN.isCompatible(ONE) == true<br>
    +144     *     RADIAN.isEquivalentTo(ONE) <b>doesn't compile</b><br>
    +145     * </code>
    +146     *
    +147     * @param that
    +148     *          the other unit to compare for compatibility.
    +149     * @return {@code this.getDimension().equals(that.getDimension())}
    +150     *
    +151     * @see #getDimension()
    +152     */
    +153    boolean isCompatible(Unit<?> that);
    +154
    +155    /**
    +156     * Indicates if this unit represents the same quantity than the given unit, ignoring name and symbols.
    +157     * Two units are equivalent if the {@linkplain #getConverterTo(Unit) conversion} between them is identity.
    +158     *
    +159     * <p>
    +160     * Unlike {@link #isCompatible(Unit)} an equivalence check requires both units to be strictly type-compatible,
    +161     * because it makes no sense to compare e.g. {@code gram} and {@code mm} for equivalence.
    +162     * By contrast, the compatibility check can works across different quantity types.
    +163     * </p>
    +164     *
    +165     * @param that the {@code Unit<Q>} to be compared with this instance.
    +166     * @return {@code true} if {@code that \u2261 this}.
    +167     * @throws NullPointerException if the unit is null
    +168     *
    +169     * @see <a href= "https://dictionary.cambridge.org/dictionary/english/equivalent">Cambridge Dictionary: equivalent</a>
    +170     * @see <a href= "https://www.lexico.com/en/definition/equivalent">LEXICO: equivalent</a>
    +171     * @since 2.1
    +172     */
    +173    boolean isEquivalentTo(Unit<Q> that);
    +174
    +175    /**
    +176     * Casts this unit to a parameterized unit of specified nature or throw a {@code ClassCastException} if the dimension of the specified quantity and
    +177     * this unit's dimension do not match. For example:<br>
    +178     *
    +179     * <code>
    +180     *      {@literal Unit<Speed>} C = METRE.multiply(299792458).divide(SECOND).asType(Speed.class);
    +181     * </code>
    +182     *
    +183     * @param <T>
    +184     *          The type of the quantity measured by the unit.
    +185     * @param type
    +186     *          the quantity class identifying the nature of the unit.
    +187     * @return this unit parameterized with the specified type.
    +188     * @throws ClassCastException
    +189     *           if the dimension of this unit is different from the specified quantity dimension.
    +190     */
    +191    <T extends Quantity<T>> Unit<T> asType(Class<T> type) throws ClassCastException;
    +192
    +193    /**
    +194     * Returns a converter of numeric values from this unit to another unit of same type. This method performs the same work as
    +195     * {@link #getConverterToAny(Unit)} without raising checked exception.
    +196     *
    +197     * @param that
    +198     *          the unit of same type to which to convert the numeric values.
    +199     * @return the converter from this unit to {@code that} unit.
    +200     * @throws UnconvertibleException
    +201     *           if a converter cannot be constructed.
    +202     *
    +203     * @see #getConverterToAny(Unit)
    +204     */
    +205    UnitConverter getConverterTo(Unit<Q> that) throws UnconvertibleException;
    +206
    +207    /**
    +208     * Returns a converter from this unit to the specified unit of type unknown. This method can be used when the quantity type of the specified unit is
    +209     * unknown at compile-time or when dimensional analysis allows for conversion between units of different type.
    +210     *
    +211     * <p>
    +212     * To convert to a unit having the same parameterized type, {@link #getConverterTo(Unit)} is preferred (no checked exception raised).
    +213     * </p>
    +214     *
    +215     * @param that
    +216     *          the unit to which to convert the numeric values.
    +217     * @return the converter from this unit to {@code that} unit.
    +218     * @throws IncommensurableException
    +219     *           if this unit is not {@linkplain #isCompatible(Unit) compatible} with {@code that} unit.
    +220     * @throws UnconvertibleException
    +221     *           if a converter cannot be constructed.
    +222     *
    +223     * @see #getConverterTo(Unit)
    +224     * @see #isCompatible(Unit)
    +225     */
    +226    UnitConverter getConverterToAny(Unit<?> that) throws IncommensurableException, UnconvertibleException;
    +227
    +228    /**********************/
    +229    /** Units Operations **/
    +230    /**********************/
    +231
    +232    /**
    +233     * Returns a system unit equivalent to this unscaled standard unit but used in expressions to distinguish between quantities of a different nature
    +234     * but of the same dimensions.
    +235     *
    +236     * <p>
    +237     * Examples of alternate units:
    +238     * </p>
    +239     *
    +240     * <code>
    +241     *     {@literal Unit<Angle>} RADIAN = ONE.alternate("rad").asType(Angle.class);<br>
    +242     *     {@literal Unit<Force>} NEWTON = METRE.multiply(KILOGRAM).divide(SECOND.pow(2)).alternate("N").asType(Force.class);<br>
    +243     *     {@literal Unit<Pressure>} PASCAL = NEWTON.divide(METRE.pow(2)).alternate("Pa").asType(Pressure.class);<br>
    +244     * </code>
    +245     *
    +246     * @param symbol
    +247     *          the new symbol for the alternate unit.
    +248     * @return the alternate unit.
    +249     * @throws IllegalArgumentException
    +250     *           if this unit is not an unscaled standard unit.
    +251     * @throws MeasurementException
    +252     *           if the specified symbol is not valid or is already associated to a different unit.
    +253     */
    +254    Unit<Q> alternate(String symbol);
    +255
    +256    /**
    +257     * Returns the result of setting the origin of the scale of measurement to the given value. The returned unit is convertible with all units that are
    +258     * convertible with this unit. For example the following code:<br>
    +259     *
    +260     * <code>
    +261     *    CELSIUS = KELVIN.shift(273.15);
    +262     * </code>
    +263     *
    +264     * creates a new unit where 0°C (the origin of the new unit) is equals to 273.15 K. Converting from the old unit to the new one is equivalent to
    +265     * <em>subtracting</em> the offset to the value in the old unit.
    +266     *
    +267     * @param offset
    +268     *          the offset added (expressed in this unit).
    +269     * @return this unit offset by the specified value.
    +270     * @since 2.0
    +271     */
    +272    Unit<Q> shift(Number offset);
    +273
    +274    /**
    +275     * Returns the result of setting the origin of the scale of measurement to the given value. The returned unit is convertible with all units that are
    +276     * convertible with this unit. For example the following code:<br>
    +277     *
    +278     * <code>
    +279     *    CELSIUS = KELVIN.shift(273.15);
    +280     * </code>
    +281     *
    +282     * creates a new unit where 0°C (the origin of the new unit) is equals to 273.15 K. Converting from the old unit to the new one is equivalent to
    +283     * <em>subtracting</em> the offset to the value in the old unit.
    +284     *
    +285     * @param offset
    +286     *          the offset added (expressed in this unit).
    +287     * @return this unit offset by the specified value.
    +288     */
    +289    Unit<Q> shift(double offset);
    +290
    +291    /**
    +292     * Returns the result of multiplying this unit by the specified factor. If the factor is an integer value, the multiplication is exact
    +293     * (recommended). For example:<br>
    +294     *
    +295     * <code>
    +296     *    FOOT = METRE.multiply(3048).divide(10000); // Exact definition.<br>
    +297     *    ELECTRON_MASS = KILOGRAM.multiply(9.10938188e-31); // Approximation.
    +298     * </code>
    +299     *
    +300     * @param multiplier
    +301     *          the multiplier
    +302     * @return this unit scaled by the specified multiplier.
    +303     * @since 2.0
    +304     */
    +305    Unit<Q> multiply(Number multiplier);
    +306
    +307    /**
    +308     * Returns the result of multiplying this unit by the specified factor. For example:<br>
    +309     *
    +310     * <code>
    +311     *    FOOT = METRE.multiply(3048).divide(10000); // Exact definition.<br>
    +312     *    ELECTRON_MASS = KILOGRAM.multiply(9.10938188e-31); // Approximation.
    +313     * </code>
    +314     *
    +315     * @param multiplier
    +316     *          the multiplier
    +317     * @return this unit scaled by the specified multiplier.
    +318     */
    +319    Unit<Q> multiply(double multiplier);
    +320
    +321    /**
    +322     * Returns the product of this unit with the one specified.
    +323     *
    +324     * @param multiplier
    +325     *          the unit multiplier.
    +326     * @return {@code this * multiplier}
    +327     */
    +328    Unit<?> multiply(Unit<?> multiplier);
    +329
    +330    /**
    +331     * Returns the reciprocal (multiplicative inverse) of this unit.
    +332     *
    +333     * @return {@code 1 / this}
    +334     * @see <a href="https://en.wikipedia.org/wiki/Multiplicative_inverse">Wikipedia: Multiplicative inverse</a>
    +335     */
    +336    Unit<?> inverse();
    +337
    +338    /**
    +339     * Returns the result of dividing this unit by a divisor. If the factor is an integer value, the division is exact. For example:<br>
    +340     *
    +341     * <code>
    +342     *    GRAM = KILOGRAM.divide(1000); // Exact definition.
    +343     * </code>
    +344     *
    +345     * @param divisor
    +346     *          the divisor value.
    +347     * @return this unit divided by the specified divisor.
    +348     * @since 2.0
    +349     */
    +350    Unit<Q> divide(Number divisor);
    +351
    +352    /**
    +353     * Returns the result of dividing this unit by an approximate divisor. For example:<br>
    +354     *
    +355     * <code>
    +356     *    GRAM = KILOGRAM.divide(1000d);
    +357     * </code>
    +358     *
    +359     * @param divisor
    +360     *          the divisor value.
    +361     * @return this unit divided by the specified divisor.
    +362     */
    +363    Unit<Q> divide(double divisor);
    +364
    +365    /**
    +366     * Returns the quotient of this unit with the one specified.
    +367     *
    +368     * @param divisor
    +369     *          the unit divisor.
    +370     * @return {@code this / divisor}
    +371     */
    +372    Unit<?> divide(Unit<?> divisor);
    +373
    +374    /**
    +375     * Returns an unit that is the n-th (integer) root of this unit. Equivalent to the mathematical expression {@code unit^(1/n)}.
    +376     *
    +377     * @param n
    +378     *          an integer giving the root's order as in 'n-th root'
    +379     * @return the n-th root of this unit.
    +380     * @throws ArithmeticException
    +381     *           if {@code n == 0} or if this operation would result in an unit with a fractional exponent.
    +382     */
    +383    Unit<?> root(int n);
    +384
    +385    /**
    +386     * Returns an unit raised to the n-th (integer) power of this unit. Equivalent to the mathematical expression {@code unit^n}.
    +387     *
    +388     * @param n
    +389     *          the exponent.
    +390     * @return the result of raising this unit to the exponent.
    +391     */
    +392    Unit<?> pow(int n);
    +393
    +394    /**
    +395     * Returns the unit derived from this unit using the specified converter. The converter does not need to be linear. For example:<br>
    +396     *
    +397     * <pre>
    +398     *     {@literal Unit<Dimensionless>} DECIBEL = Unit.ONE.transform(
    +399     *         new LogConverter(10).inverse().concatenate(
    +400     *             new RationalConverter(1, 10)));
    +401     * </pre>
    +402     *
    +403     * @param operation
    +404     *          the converter from the transformed unit to this unit.
    +405     * @return the unit after the specified transformation.
    +406     */
    +407    Unit<Q> transform(UnitConverter operation);
    +408
    +409    /**
    +410     * Returns a string representation of this unit. The string representation may be the unit {@linkplain #getSymbol() symbol}, or may be some
    +411     * representation of {@linkplain #getBaseUnits() product units}, multiplication factor and offset if any.
    +412     *
    +413     * <p>
    +414     * The string may be localized at implementation choice by the means of a particular device and platform.
    +415     * </p>
    +416     *
    +417     * @return the string representation of this unit.
    +418     *
    +419     * @see #getSymbol()
    +420     * @see javax.measure.format.UnitFormat
    +421     */
    +422    @Override
    +423    String toString();
    +424
    +425    /**
    +426     * Returns a new unit equal to this unit prefixed by the specified {@code prefix}.
    +427     *
    +428     * @param prefix
    +429     *          the prefix to apply on this unit.
    +430     * @return the unit with the given prefix applied.
    +431     * @since 2.0
    +432     */
    +433    Unit<Q> prefix(Prefix prefix);
    +434}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/UnitConverter.html b/docs/site/apidocs/src-html/javax/measure/UnitConverter.html new file mode 100644 index 00000000..f6d90313 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/UnitConverter.html @@ -0,0 +1,228 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure;
    +031
    +032import java.util.List;
    +033
    +034/**
    +035 * A converter of numeric values between different units.
    +036 *
    +037 * <p>
    +038 * Instances of this class are usually obtained through the {@link Unit#getConverterTo(Unit)} method.
    +039 * </p>
    +040 *
    +041 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +042 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +043 * @author <a href="mailto:martin.desruisseaux@geomatys.com">Martin
    +044 *         Desruisseaux</a>
    +045 * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
    +046 * @author <a href="mailto:ahuber@apache.org">Andi Huber</a>
    +047 * @version 1.4, May 12, 2019
    +048 * @since 1.0
    +049 *
    +050 * @see Unit
    +051 * @see <a href="http://en.wikipedia.org/wiki/Conversion_of_units"> Wikipedia: Conversion of units</a>
    +052 */
    +053public interface UnitConverter {
    +054
    +055    /**
    +056     * Indicates if this converter is an identity converter. The identity converter returns its input argument ({@code convert(x) == x}).
    +057     * <p>
    +058     * Note: Identity converters are also always 'linear', see {@link UnitConverter#isLinear()}.
    +059     * </p>
    +060     *
    +061     * @return {@code true} if this converter is an identity converter.
    +062     */
    +063    boolean isIdentity();
    +064
    +065    /**
    +066     * Indicates whether this converter represents a (one-dimensional) linear transformation, that is
    +067     * a <a href="https://en.wikipedia.org/wiki/Linear_map">linear map (wikipedia)</a> from a one-dimensional 
    +068     * vector space (a scalar) to a one-dimensional vector space. Typically from 'R' to 'R', with 'R' the 
    +069     * real numbers.  
    +070     *
    +071     * <p>
    +072     * Given such a 'linear' converter 'A', let 'u', 'v' and 'r' be arbitrary numbers, then the following 
    +073     * must hold by definition: 
    +074     *
    +075     * <ul>
    +076     * <li>{@code A(u + v) == A(u) + A(v)}</li>
    +077     * <li>{@code A(r * u) == r * A(u)}</li>
    +078     * </ul>
    +079     *
    +080     * <p>
    +081     * Given a second 'linear' converter 'B', commutativity of composition follows by above definition:
    +082     *
    +083     * <ul>
    +084     * <li>{@code (A o B) (u) == (B o A) (u)}</li>
    +085     * </ul>
    +086     * 
    +087     * In other words, two 'linear' converters do have the property that {@code A(B(u)) == B(A(u))}, meaning 
    +088     * for 'A' and 'B' the order of their composition does not matter. Expressed as Java code:
    +089     *
    +090     * <p>
    +091     *{@code A.concatenate(B).convert(u) == B.concatenate(A).convert(u)}
    +092     * </p>
    +093     * 
    +094     * Note: For composing UnitConverters see also {@link UnitConverter#concatenate(UnitConverter)}.
    +095     *
    +096     * @return {@code true} if this converter represents a linear transformation; 
    +097     * {@code false} otherwise.
    +098     * 
    +099     */
    +100    boolean isLinear();
    +101
    +102    /**
    +103     * Returns the inverse of this converter. If {@code x} is a valid value, then {@code x == inverse().convert(convert(x))} to within the accuracy of
    +104     * computer arithmetic.
    +105     *
    +106     * @return the inverse of this converter.
    +107     */
    +108    UnitConverter inverse();
    +109
    +110    /**
    +111     * Converts a {@code Number} value.
    +112     *
    +113     * @param value
    +114     *          the {@code Number} value to convert.
    +115     * @return the {@code Number} value after conversion.
    +116     */
    +117    Number convert(Number value);
    +118
    +119    /**
    +120     * Converts a {@code double} value.
    +121     *
    +122     * @param value
    +123     *          the numeric value to convert.
    +124     * @return the {@code double} value after conversion.
    +125     */
    +126    double convert(double value);
    +127
    +128    /**
    +129     * Concatenates this converter with another converter. The resulting converter is equivalent to first converting by the specified converter (right
    +130     * converter), and then converting by this converter (left converter).
    +131     *
    +132     * @param converter
    +133     *          the other converter to concatenate with this converter.
    +134     * @return the concatenation of this converter with the other converter.
    +135     */
    +136    UnitConverter concatenate(UnitConverter converter);
    +137
    +138    /**
    +139     * <p>
    +140     * Returns the steps of fundamental converters making up this converter or {@code this} if the converter is a fundamental converter.
    +141     * </p>
    +142     * <p>
    +143     * For example, {@code converter1.getConversionSteps()} returns {@code converter1} while
    +144     * {@code converter1.concatenate(converter2).getConversionSteps()} returns {@code converter1, converter2}.
    +145     * </p>
    +146     *
    +147     * @return the list of fundamental converters which concatenated make up this converter.
    +148     */
    +149    List<? extends UnitConverter> getConversionSteps();
    +150}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/format/MeasurementParseException.html b/docs/site/apidocs/src-html/javax/measure/format/MeasurementParseException.html new file mode 100644 index 00000000..259fb2bb --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/format/MeasurementParseException.html @@ -0,0 +1,205 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.format;
    +031
    +032import javax.measure.MeasurementException;
    +033
    +034/**
    +035 * Signals that an error has been reached unexpectedly while parsing.
    +036 *
    +037 * @author Werner Keil
    +038 * @version 1.1, March 27, 2018
    +039 * @since 2.0
    +040 */
    +041public class MeasurementParseException extends MeasurementException {
    +042
    +043    /**
    +044     * For cross-version compatibility.
    +045     */
    +046    private static final long serialVersionUID = 2727457045794254852L;
    +047
    +048    /**
    +049     * The zero-based character position in the string being parsed at which the error was found while parsing.
    +050     *
    +051     * @serial
    +052     */
    +053    private int position;
    +054
    +055    /** The original input data. */
    +056    private CharSequence data;
    +057
    +058    /**
    +059     * Constructs a MeasurementParseException with the specified detail message, parsed text and index. A detail message is a String that describes
    +060     * this particular exception.
    +061     *
    +062     * @param message
    +063     *            the detail message
    +064     * @param parsedData
    +065     *            the parsed text, should not be null
    +066     * @param position
    +067     *            the position where the error was found while parsing.
    +068     */
    +069    public MeasurementParseException(String message, CharSequence parsedData, int position) {
    +070        super(message);
    +071        this.data = parsedData;
    +072        this.position = position;
    +073    }
    +074
    +075    /**
    +076     * Constructs a MeasurementParseException with the parsed text and offset. A detail message is a String that describes this particular exception.
    +077     *
    +078     * @param parsedData
    +079     *            the parsed text, should not be null
    +080     * @param position
    +081     *            the position where the error is found while parsing.
    +082     */
    +083    public MeasurementParseException(CharSequence parsedData, int position) {
    +084        this("Parse Error", parsedData, position);
    +085    }
    +086
    +087    /**
    +088     * Constructs a MeasurementParseException with the specified cause.
    +089     *
    +090     * @param cause
    +091     *            the root cause
    +092     */
    +093    public MeasurementParseException(Throwable cause) {
    +094        super(cause);
    +095    }
    +096
    +097    /**
    +098     * Constructs a MeasurementParseException with the specified detail message.
    +099     *
    +100     * @param message
    +101     *            the detail message
    +102     */
    +103    public MeasurementParseException(String message) {
    +104        super(message);
    +105    }
    +106
    +107    /**
    +108     * Returns the position where the error was found.
    +109     *
    +110     * @return the position of the error
    +111     */
    +112    public int getPosition() {
    +113        return position;
    +114    }
    +115
    +116    /**
    +117     * Returns the string that was being parsed.
    +118     *
    +119     * @return the parsed string, or {@code null}, if {@code null} was passed as input.
    +120     */
    +121    public String getParsedString() {
    +122        if (data == null) {
    +123            return null;
    +124        }
    +125        return data.toString();
    +126    }
    +127}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/format/QuantityFormat.html b/docs/site/apidocs/src-html/javax/measure/format/QuantityFormat.html new file mode 100644 index 00000000..0fc1469d --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/format/QuantityFormat.html @@ -0,0 +1,196 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.format;
    +031
    +032import java.io.IOException;
    +033import java.text.ParsePosition;
    +034
    +035import javax.measure.Quantity;
    +036
    +037/**
    +038 * Formats instances of {@link Quantity}.
    +039 *
    +040 * <dl>
    +041 * <dt><span class="strong"><a id="synchronization">Synchronization</a></span></dt>
    +042 * </dl>
    +043 * Instances of this class are not required to be thread-safe. It is recommended to use separate format instances for each thread. If multiple threads
    +044 * access a format concurrently, it must be synchronized externally.
    +045 *
    +046 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +047 * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
    +048 *
    +049 * @version 1.1, 20 May, 2023
    +050 * @since 2.0
    +051 *
    +052 * @see Quantity
    +053 */
    +054public interface QuantityFormat {
    +055
    +056    /**
    +057     * Formats the specified quantity into an {@code Appendable}.
    +058     *
    +059     * @param quantity
    +060     *          the quantity to format.
    +061     * @param destination
    +062     *          the appendable destination.
    +063     * @return the specified {@code Appendable}.
    +064     * @throws IOException
    +065     *           if an I/O exception occurs.
    +066     */
    +067    public Appendable format(Quantity<?> quantity, Appendable destination) throws IOException;
    +068
    +069    /**
    +070     * Formats the specified {@link Quantity}.
    +071     *
    +072     * @param quantity
    +073     *            the {@link Quantity} to format, not {@code null}
    +074     * @return the string representation using the settings of this {@link QuantityFormat}.
    +075     */
    +076    String format(Quantity<?> quantity);
    +077
    +078    /**
    +079     * Parses a portion of the specified {@code CharSequence} from the specified position to produce a {@link Quantity}.
    +080     * If parsing succeeds, then the index of the {@code pos} argument is updated to the index after the last character used.
    +081     *
    +082     * @param csq
    +083     *          the {@code CharSequence} to parse.
    +084     * @param pos
    +085     *          a ParsePosition object holding the current parsing index and error parsing index information as described above.
    +086     * @return the quantity parsed from the specified character sub-sequence.
    +087     * @throws MeasurementParseException
    +088     *           if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
    +089     */
    +090    public Quantity<?> parse(CharSequence csq, ParsePosition pos) throws MeasurementParseException;
    +091
    +092    /**
    +093     * Parses the specified {@code CharSequence} to produce a {@link Quantity}.
    +094     * <p>
    +095     * The parse must complete normally and parse the entire text. If the parse completes without reading the entire length of the text, an exception
    +096     * is thrown. If any other problem occurs during parsing, an exception is thrown.
    +097     * </p>
    +098     *
    +099     * @param csq
    +100     *          the {@code CharSequence} to parse.
    +101     * @return the quantity parsed from the specified character sub-sequence.
    +102     * @throws MeasurementParseException
    +103     *           if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
    +104     */
    +105    public Quantity<?> parse(CharSequence csq) throws MeasurementParseException;
    +106
    +107    /**
    +108     * Returns {@code true} if this {@link QuantityFormat} depends on a {@code Locale} to perform its tasks.
    +109     * <p>
    +110     * In environments that do not support a {@code Locale}, e.g. Java ME, this usually returns {@code false}.
    +111     * </p>
    +112     *
    +113     * @return whether this format depends on the locale.
    +114     */
    +115    default boolean isLocaleSensitive() {
    +116        return false;
    +117    }
    +118}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/format/UnitFormat.html b/docs/site/apidocs/src-html/javax/measure/format/UnitFormat.html new file mode 100644 index 00000000..f7aceb6b --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/format/UnitFormat.html @@ -0,0 +1,228 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.format;
    +031
    +032import java.io.IOException;
    +033import java.text.ParsePosition;
    +034
    +035import javax.measure.Unit;
    +036
    +037/**
    +038 * Formats instances of {@link Unit} to a {@link String} or {@link Appendable} and parses a {@link CharSequence} to a {@link Unit}.
    +039 *
    +040 * <dl>
    +041 * <dt><span class="strong"><a id="synchronization">Synchronization</a></span></dt>
    +042 * </dl>
    +043 * <p>
    +044 * Instances of this class are not required to be thread-safe. It is recommended to use separate format instances for each thread. If multiple threads
    +045 * access a format concurrently, it must be synchronized externally.
    +046 * </p>
    +047 *
    +048 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +049 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +050 *
    +051 * @version 2.2, May 20, 2023
    +052 * @since 1.0
    +053 *
    +054 * @see Unit
    +055 */
    +056public interface UnitFormat {
    +057    /**
    +058     * Formats the specified {@link Unit}.
    +059     *
    +060     * @param unit
    +061     *            the {@link Unit} to format, not {@code null}
    +062     * @param appendable
    +063     *            the appendable destination.
    +064     * @return the appendable destination passed in with formatted text appended.
    +065     * @throws IOException
    +066     *             if an error occurs while writing to the destination.
    +067     */
    +068    Appendable format(Unit<?> unit, Appendable appendable) throws IOException;
    +069
    +070    /**
    +071     * Formats the specified {@link Unit}.
    +072     *
    +073     * @param unit
    +074     *            the {@link Unit} to format, not {@code null}
    +075     * @return the string representation using the settings of this {@link UnitFormat}.
    +076     */
    +077    String format(Unit<?> unit);
    +078
    +079    /**
    +080     * Attaches a system-wide label to the specified {@link Unit}.
    +081     * <p>
    +082     * This method overrides the previous unit's label (e.g. label from unit database or unit system) as units may only have one label. Depending on the
    +083     * {@link UnitFormat} implementation, this call may be ignored if the particular unit already has a label.
    +084     * </p>
    +085     * If a {@link UnitFormat} implementation is explicitly <b>immutable</b>, similar to e.g. the result of <code>Collections.unmodifiableList()</code>,
    +086     * then an {@linkplain UnsupportedOperationException} may be thrown upon this call.
    +087     * <p>
    +088     * Since <code>UnitFormat</code> implementations often apply the Singleton pattern, <b>system-wide</b> means, the label applies to every instance of
    +089     * <code>UnitFormatA</code> implementing <code>UnitFormat</code> in this case, but not every instance of <code>UnitFormatB</code> or <code>UnitFormatC</code> both
    +090     * also implementing <code>UnitFormat</code>. If a <code>UnitFormat</code> #isLocaleSensitive() it is up to the implementation, whether the label is
    +091     * ignored, applied in a local-neutral manner (in addition to its local-sensitive information) or locale-specific.
    +092     * </p>
    +093     *
    +094     * @param unit
    +095     *            the unit being labeled.
    +096     * @param label
    +097     *            the new label for this unit.
    +098     * @throws IllegalArgumentException
    +099     *             if the label is not a valid identifier. This may include characters not supported by a particular {@link UnitFormat} implementation
    +100     *             (e.g. only <b>ASCII</b> characters for certain devices)
    +101     * @throws UnsupportedOperationException
    +102     *             if the <code>label</code> operation is not supported by this {@link UnitFormat}
    +103     */
    +104    void label(Unit<?> unit, String label);
    +105
    +106    /**
    +107     * Returns <code>true</code> if this {@link UnitFormat} depends on a <code>Locale</code> to perform its tasks.
    +108     * <p>
    +109     * In environments that do not support a <code>Locale</code>, e.g. Java ME, this usually returns <code>false</code>.
    +110     * </p>
    +111     *
    +112     * @return Whether this format depends on a locale.
    +113     */
    +114    default boolean isLocaleSensitive() {
    +115        return false;
    +116    }
    +117
    +118    /**
    +119     * Parses a portion of the specified <code>CharSequence</code> from the specified position to produce a {@link Unit}.
    +120     * If parsing succeeds, then the index of the <code>pos</code> argument is updated to the index after the last character used.
    +121     *
    +122     * @param csq
    +123     *            the <code>CharSequence</code> to parse.
    +124     * @param pos
    +125     *            a ParsePosition object holding the current parsing index and error parsing index information as described above.
    +126     * @return the unit parsed from the specified character sub-sequence.
    +127     * @throws MeasurementParseException
    +128     *             if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
    +129     * @since 2.0
    +130     */
    +131    Unit<?> parse(CharSequence csq, ParsePosition pos) throws MeasurementParseException;
    +132
    +133    /**
    +134     * Parses the text into an instance of {@link Unit}.
    +135     * <p>
    +136     * The parse must complete normally and parse the entire text. If the parse completes without reading the entire length of the text, an exception
    +137     * is thrown. If any other problem occurs during parsing, an exception is thrown.
    +138     * </p>
    +139     *
    +140     * @param csq
    +141     *            the {@code CharSequence} to parse.
    +142     * @return the unit parsed from the specified character sequence.
    +143     * @throws MeasurementParseException
    +144     *             if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
    +145     * @throws UnsupportedOperationException
    +146     *             if the {@link UnitFormat} is unable to parse.
    +147     * @since 2.0
    +148     */
    +149    Unit<?> parse(CharSequence csq) throws MeasurementParseException;
    +150}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/Acceleration.html b/docs/site/apidocs/src-html/javax/measure/quantity/Acceleration.html new file mode 100644 index 00000000..92505c34 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/Acceleration.html @@ -0,0 +1,126 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Rate of change of velocity with respect to time. The metric system unit for this quantity is "m/s²" (metre per square second).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +039 * @version 1.2
    +040 * @since 1.0
    +041 * @see <a href="https://en.wikipedia.org/wiki/Acceleration">Wikipedia: Acceleration</a>
    +042 *
    +043 * @see Length
    +044 * @see Speed
    +045 * @see Time
    +046 */
    +047public interface Acceleration extends Quantity<Acceleration> {
    +048}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/AmountOfSubstance.html b/docs/site/apidocs/src-html/javax/measure/quantity/AmountOfSubstance.html new file mode 100644 index 00000000..6de37862 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/AmountOfSubstance.html @@ -0,0 +1,142 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Number of elementary entities (molecules, for example) of a substance. The metric system unit for this quantity is "mol" (mole).
    +036 *
    +037 * The mole, symbol mol, is the SI unit of amount of substance. One mole contains
    +038 * exactly 6.022 140 76 × 10²³ elementary entities. This number is the fixed numerical
    +039 * value of the Avogadro constant, NA, when expressed in the unit mol⁻¹ and is called
    +040 * the Avogadro number.
    +041 *
    +042 * The amount of substance, symbol n, of a system is a measure of the number of
    +043 * specified elementary entities. An elementary entity may be an atom, a molecule, an
    +044 * ion, an electron, any other particle or specified group of particles.
    +045 * This definition implies the exact relation Nₐ = 6.022 140 76 × 10²³ mol⁻¹.
    +046 *
    +047 * Inverting this relation gives an exact expression for the mole in terms of the defining constant NA:
    +048 *
    +049 * 1 mol = 6.02214076 × 10²³ / Nₐ
    +050 * <br>
    +051 * <dl>
    +052 * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
    +053 * </dl>
    +054 * 
    +055 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +056 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +057 * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
    +058 * @version 2.1
    +059 * @since 1.0
    +060 *
    +061 * @see <a href="http://en.wikipedia.org/wiki/Amount_of_substance">Wikipedia: Amount of Substance</a>
    +062 */
    +063public interface AmountOfSubstance extends Quantity<AmountOfSubstance> {
    +064}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/Angle.html b/docs/site/apidocs/src-html/javax/measure/quantity/Angle.html new file mode 100644 index 00000000..08a9b261 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/Angle.html @@ -0,0 +1,130 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Figure formed by two lines diverging from a common point. The metric system unit for this quantity is "rad" (radian).
    +036 * <br>
    +037 * <dl>
    +038 * <dt><span class="strong">API Note:</span></dt><dd>SI Derived Unit with special name and symbol</dd>
    +039 * </dl>
    +040 * 
    +041 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +042 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +043 * @version 2.0
    +044 * @since 1.0
    +045 *
    +046 * @see <a href="http://en.wikipedia.org/wiki/Angle">Wikipedia: Angle</a>
    +047 *
    +048 * @see SolidAngle
    +049 * @see Length
    +050 */
    +051public interface Angle extends Quantity<Angle> {
    +052}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/Area.html b/docs/site/apidocs/src-html/javax/measure/quantity/Area.html new file mode 100644 index 00000000..ba32762f --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/Area.html @@ -0,0 +1,129 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Extent of a planar region or of the surface of a solid measured in square units. The metric system unit for this quantity is "m²" (square metre).
    +036 * <br>
    +037 * <dl>
    +038 * <dt><span class="strong">API Note:</span></dt><dd>SI Derived Unit</dd>
    +039 * </dl>
    +040 * 
    +041 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +042 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +043 * @version 2.0
    +044 * @since 1.0
    +045 *
    +046 * @see Length
    +047 * @see Volume
    +048 * @see Pressure
    +049 */
    +050public interface Area extends Quantity<Area> {
    +051}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/CatalyticActivity.html b/docs/site/apidocs/src-html/javax/measure/quantity/CatalyticActivity.html new file mode 100644 index 00000000..c680c97f --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/CatalyticActivity.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Catalytic activity. The metric system unit for this quantity is "kat" (katal).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface CatalyticActivity extends Quantity<CatalyticActivity> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/Dimensionless.html b/docs/site/apidocs/src-html/javax/measure/quantity/Dimensionless.html new file mode 100644 index 00000000..154b9b42 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/Dimensionless.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Dimensionless quantity.
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface Dimensionless extends Quantity<Dimensionless> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/ElectricCapacitance.html b/docs/site/apidocs/src-html/javax/measure/quantity/ElectricCapacitance.html new file mode 100644 index 00000000..4e9e9773 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/ElectricCapacitance.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Electric capacitance. The metric system unit for this quantity is "F" (Farad).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface ElectricCapacitance extends Quantity<ElectricCapacitance> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/ElectricCharge.html b/docs/site/apidocs/src-html/javax/measure/quantity/ElectricCharge.html new file mode 100644 index 00000000..171bf18f --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/ElectricCharge.html @@ -0,0 +1,122 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Electric charge. The metric system unit for this quantity is "C" (Coulomb).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 *
    +041 * @see ElectricCurrent
    +042 */
    +043public interface ElectricCharge extends Quantity<ElectricCharge> {
    +044}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/ElectricConductance.html b/docs/site/apidocs/src-html/javax/measure/quantity/ElectricConductance.html new file mode 100644 index 00000000..99df8988 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/ElectricConductance.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Electric conductance. The metric system unit for this quantity "S" (Siemens).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface ElectricConductance extends Quantity<ElectricConductance> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/ElectricCurrent.html b/docs/site/apidocs/src-html/javax/measure/quantity/ElectricCurrent.html new file mode 100644 index 00000000..4c35c7c3 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/ElectricCurrent.html @@ -0,0 +1,140 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Amount of electric charge flowing past a specified circuit point per unit time. The metric system unit for this quantity is "A" (Ampere).
    +036 *
    +037 * The ampere, symbol A, is the SI unit of electric current. It is defined by taking the
    +038 * fixed numerical value of the elementary charge e to be 1.602 176 634 × 10⁻¹⁹ when
    +039 * expressed in the unit C, which is equal to A s, where the second is defined in terms
    +040 * of ∆νCs.
    +041 *
    +042 * This definition implies the exact relation e = 1.602 176 634 × 10⁻¹⁹ A s. Inverting this
    +043 * relation gives an exact expression for the unit ampere in terms of the defining constants e
    +044 * and ∆νCs:
    +045 *
    +046 * 1 A = (e / 1.602 176 634 × 10⁻¹⁹) s⁻¹
    +047 * <br>
    +048 * <dl>
    +049 * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
    +050 * </dl>
    +051 * 
    +052 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +053 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +054 * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
    +055 * @version 2.1
    +056 * @since 1.0
    +057 * @see <a href="https://en.wikipedia.org/wiki/Electric_current">Wikipedia: Electric Current</a>
    +058 * @see ElectricCharge
    +059 * @see Time
    +060 */
    +061public interface ElectricCurrent extends Quantity<ElectricCurrent> {
    +062}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/ElectricInductance.html b/docs/site/apidocs/src-html/javax/measure/quantity/ElectricInductance.html new file mode 100644 index 00000000..320b0eda --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/ElectricInductance.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Electric inductance. The metric system unit for this quantity is "H" (Henry).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface ElectricInductance extends Quantity<ElectricInductance> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/ElectricPotential.html b/docs/site/apidocs/src-html/javax/measure/quantity/ElectricPotential.html new file mode 100644 index 00000000..2a3dc840 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/ElectricPotential.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Electric potential or electromotive force. The metric system unit for this quantity is "V" (Volt).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface ElectricPotential extends Quantity<ElectricPotential> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/ElectricResistance.html b/docs/site/apidocs/src-html/javax/measure/quantity/ElectricResistance.html new file mode 100644 index 00000000..980f1185 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/ElectricResistance.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Electric resistance. The metric system unit for this quantity is "Ohm" (Ω).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface ElectricResistance extends Quantity<ElectricResistance> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/Energy.html b/docs/site/apidocs/src-html/javax/measure/quantity/Energy.html new file mode 100644 index 00000000..0ba496b3 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/Energy.html @@ -0,0 +1,124 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Capacity of a physical system to do work. The metric system unit for this quantity "J" (Joule).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 *
    +041 * @see Force
    +042 * @see Power
    +043 * @see Time
    +044 */
    +045public interface Energy extends Quantity<Energy> {
    +046}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/Force.html b/docs/site/apidocs/src-html/javax/measure/quantity/Force.html new file mode 100644 index 00000000..437a66a9 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/Force.html @@ -0,0 +1,124 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Quantity that tends to produce an acceleration of a body in the direction of its application. The metric system unit for this quantity is "N"
    +036 * (Newton).
    +037 *
    +038 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +039 * @version 1.1
    +040 * @since 1.0
    +041 *
    +042 * @see Energy
    +043 * @see Pressure
    +044 */
    +045public interface Force extends Quantity<Force> {
    +046}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/Frequency.html b/docs/site/apidocs/src-html/javax/measure/quantity/Frequency.html new file mode 100644 index 00000000..4f4e2741 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/Frequency.html @@ -0,0 +1,122 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Number of times a specified phenomenon occurs within a specified interval. The metric system unit for this quantity is "Hz" (Hertz).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 *
    +041 * @see Time
    +042 */
    +043public interface Frequency extends Quantity<Frequency> {
    +044}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/Illuminance.html b/docs/site/apidocs/src-html/javax/measure/quantity/Illuminance.html new file mode 100644 index 00000000..71f950b0 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/Illuminance.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Illuminance. The metric system unit for this quantity is "lx" (lux).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface Illuminance extends Quantity<Illuminance> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/Length.html b/docs/site/apidocs/src-html/javax/measure/quantity/Length.html new file mode 100644 index 00000000..da6a9cb9 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/Length.html @@ -0,0 +1,144 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Extent of something along its greatest dimension or the extent of space between two objects or places.
    +036 * The metric system unit for this quantity is "m" (metre).
    +037 *
    +038 * The metre, symbol m, is the SI unit of length. It is defined by taking the fixed
    +039 * numerical value of the speed of light in vacuum c to be 299 792 458 when expressed
    +040 * in the unit m s⁻¹, where the second is defined in terms of the caesium frequency
    +041 * ∆νCs.
    +042 *
    +043 * This definition implies the exact relation c = 299 792 458 m s⁻¹. Inverting this relation
    +044 * gives an exact expression for the metre in terms of the defining constants c and ∆νCs:
    +045 *
    +046 * 1 m = (c / 299 792 458)s = 9 192 631 770 c / 299 792 458 ∆νCs ≈ 30.663 319 c / ∆νCs
    +047 * <br>
    +048 * <dl>
    +049 * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
    +050 * </dl>
    +051 * 
    +052 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +053 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +054 * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
    +055 * @version 2.1
    +056 * @since 1.0
    +057 * 
    +058 * @see <a href="https://en.wikipedia.org/wiki/Length">Wikipedia: Length</a>
    +059 * @see Area
    +060 * @see Volume
    +061 * @see Angle
    +062 * @see SolidAngle
    +063 * @see Speed
    +064 */
    +065public interface Length extends Quantity<Length> {
    +066}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/LuminousFlux.html b/docs/site/apidocs/src-html/javax/measure/quantity/LuminousFlux.html new file mode 100644 index 00000000..60d90c39 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/LuminousFlux.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Luminous flux. The metric system unit for this quantity is "lm" (lumen).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.1
    +039 * @since 1.0
    +040 */
    +041public interface LuminousFlux extends Quantity<LuminousFlux> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/LuminousIntensity.html b/docs/site/apidocs/src-html/javax/measure/quantity/LuminousIntensity.html new file mode 100644 index 00000000..0cddbf0c --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/LuminousIntensity.html @@ -0,0 +1,141 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Luminous flux density per solid angle as measured in a given direction relative to the emitting source.
    +036 * The metric system unit for this quantity is "cd" (candela).
    +037 *
    +038 * The candela, symbol cd, is the SI unit of luminous intensity in a given direction. It is
    +039 * defined by taking the fixed numerical value of the luminous efficacy of
    +040 * monochromatic radiation of frequency 540 × 10¹² Hz, Kcd, to be 683 when expressed
    +041 * in the unit lm W−1, which is equal to cd sr W⁻¹, or cd sr kg⁻¹ m⁻² s³, where the kilogram,
    +042 * metre and second are defined in terms of h, c and ∆νCs.
    +043 *
    +044 * This definition implies the exact relation Kcd = 683 cd sr kg⁻¹ m⁻² s³ for monochromatic
    +045 * radiation of frequency ν = 540 × 10¹² Hz. Inverting this relation gives an exact expression
    +046 * for the candela in terms of the defining constants Kcd, h and ∆νCs:
    +047 *
    +048 * 1 cd = (Kcd / 683) kg m² s⁻³ sr⁻¹
    +049 * <br>
    +050 * <dl>
    +051 * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
    +052 * </dl>
    +053 * 
    +054 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +055 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +056 * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
    +057 * @version 2.1
    +058 * @since 1.0
    +059 * 
    +060 * @see <a href="https://en.wikipedia.org/wiki/Luminous_intensity">Wikipedia: Luminous intensity</a>
    +061 */
    +062public interface LuminousIntensity extends Quantity<LuminousIntensity> {
    +063}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/MagneticFlux.html b/docs/site/apidocs/src-html/javax/measure/quantity/MagneticFlux.html new file mode 100644 index 00000000..fe5285a3 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/MagneticFlux.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Magnetic flux. The metric system unit for this quantity is "Wb" (Weber).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface MagneticFlux extends Quantity<MagneticFlux> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/MagneticFluxDensity.html b/docs/site/apidocs/src-html/javax/measure/quantity/MagneticFluxDensity.html new file mode 100644 index 00000000..761c1ef8 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/MagneticFluxDensity.html @@ -0,0 +1,120 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Magnetic flux density. The metric system unit for this quantity is "T" (Tesla).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 */
    +041public interface MagneticFluxDensity extends Quantity<MagneticFluxDensity> {
    +042}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/Mass.html b/docs/site/apidocs/src-html/javax/measure/quantity/Mass.html new file mode 100644 index 00000000..4591a007 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/Mass.html @@ -0,0 +1,141 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Measure of the quantity of matter that a body or an object contains. The mass of the body is not dependent on gravity and therefore is different
    +036 * from but proportional to its weight. The metric system unit for this quantity is "kg" (kilogram).
    +037 *
    +038 * The kilogram, symbol kg, is the SI unit of mass. It is defined by taking the fixed
    +039 * numerical value of the Planck constant h to be 6.626 070 15 × 10⁻³⁴ when expressed
    +040 * in the unit J s, which is equal to kg m² s−1, where the metre and the second are
    +041 * defined in terms of c and ∆νCs.
    +042 *
    +043 * This definition implies the exact relation h = 6.626 070 15 × 10−34 kg m² s⁻¹. Inverting this
    +044 * relation gives an exact expression for the kilogram in terms of the three defining constants
    +045 * h, ∆νCs and c:
    +046 *
    +047 * 1 kg = (h / 6.626 070 15 × 10⁻³⁴) m⁻² s
    +048 * <br>
    +049 * <dl>
    +050 * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
    +051 * </dl>
    +052 *
    +053 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +054 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +055 * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
    +056 * @version 2.0
    +057 * @since 1.0
    +058 *
    +059 * @see <a href="https://en.wikipedia.org/wiki/Mass">Wikipedia: Mass</a>
    +060 * @see RadiationDoseAbsorbed
    +061 */
    +062public interface Mass extends Quantity<Mass> {
    +063}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/Power.html b/docs/site/apidocs/src-html/javax/measure/quantity/Power.html new file mode 100644 index 00000000..a8760341 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/Power.html @@ -0,0 +1,123 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Rate at which work is done. The metric system unit for this quantity is "W" (Watt).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 *
    +041 * @see Energy
    +042 * @see Time
    +043 */
    +044public interface Power extends Quantity<Power> {
    +045}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/Pressure.html b/docs/site/apidocs/src-html/javax/measure/quantity/Pressure.html new file mode 100644 index 00000000..eb0dca7f --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/Pressure.html @@ -0,0 +1,123 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Force applied uniformly over a surface. The metric system unit for this quantity is "Pa" (Pascal).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.0
    +039 * @since 1.0
    +040 *
    +041 * @see Force
    +042 * @see Area
    +043 */
    +044public interface Pressure extends Quantity<Pressure> {
    +045}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/RadiationDoseAbsorbed.html b/docs/site/apidocs/src-html/javax/measure/quantity/RadiationDoseAbsorbed.html new file mode 100644 index 00000000..e6260c6d --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/RadiationDoseAbsorbed.html @@ -0,0 +1,122 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Amount of energy deposited per unit of mass. The system unit for this quantity is "Gy" (Gray).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @version 1.1
    +039 * @since 1.0
    +040 *
    +041 * @see Mass
    +042 */
    +043public interface RadiationDoseAbsorbed extends Quantity<RadiationDoseAbsorbed> {
    +044}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/RadiationDoseEffective.html b/docs/site/apidocs/src-html/javax/measure/quantity/RadiationDoseEffective.html new file mode 100644 index 00000000..040e0438 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/RadiationDoseEffective.html @@ -0,0 +1,121 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Effective (or "equivalent") dose of radiation received by a human or some other living organism. The metric system unit for this quantity is "Sv"
    +036 * (Sievert).
    +037 *
    +038 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +039 * @version 1.0
    +040 * @since 1.0
    +041 */
    +042public interface RadiationDoseEffective extends Quantity<RadiationDoseEffective> {
    +043}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/Radioactivity.html b/docs/site/apidocs/src-html/javax/measure/quantity/Radioactivity.html new file mode 100644 index 00000000..237b2ab2 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/Radioactivity.html @@ -0,0 +1,122 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Radioactive activity. The metric system unit for this quantity is "Bq" (Becquerel).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +039 * @author Martin Desruisseaux
    +040 * @version 1.2
    +041 * @since 1.0
    +042 */
    +043public interface Radioactivity extends Quantity<Radioactivity> {
    +044}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/SolidAngle.html b/docs/site/apidocs/src-html/javax/measure/quantity/SolidAngle.html new file mode 100644 index 00000000..76817d73 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/SolidAngle.html @@ -0,0 +1,123 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Angle formed by three or more planes intersecting at a common point. The metric system unit for this quantity is "sr" (steradian).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +039 * @version 1.3
    +040 * @since 1.0
    +041 *
    +042 * @see Angle
    +043 */
    +044public interface SolidAngle extends Quantity<SolidAngle> {
    +045}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/Speed.html b/docs/site/apidocs/src-html/javax/measure/quantity/Speed.html new file mode 100644 index 00000000..8bc1931c --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/Speed.html @@ -0,0 +1,131 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Distance traveled divided by the time of travel. The metric system unit for this quantity is "m/s" (metre per second).
    +036 *
    +037 * <p>
    +038 * <cite>Speed</cite> is a scalar value, while <cite>velocity</cite> is a vector. Speed is the magnitude of the velocity vector, or the components of
    +039 * the velocity vector.
    +040 * </p>
    +041 *
    +042 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +043 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +044 * @version 1.2
    +045 * @since 1.0
    +046 *
    +047 * @see Length
    +048 * @see Time
    +049 * @see Acceleration
    +050 * @see <a href="http://en.wikipedia.org/wiki/Speed">Wikipedia: Speed</a>
    +051 */
    +052public interface Speed extends Quantity<Speed> {
    +053}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/Temperature.html b/docs/site/apidocs/src-html/javax/measure/quantity/Temperature.html new file mode 100644 index 00000000..51c03187 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/Temperature.html @@ -0,0 +1,139 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Degree of hotness or coldness of a body or an environment. The metric system unit for this quantity is "K" (Kelvin).
    +036 *
    +037 * The kelvin, symbol K, is the SI unit of thermodynamic temperature. It is defined by
    +038 * taking the fixed numerical value of the Boltzmann constant k to be 1.380 649 × 10−²³
    +039 * when expressed in the unit J K⁻¹, which is equal to kg m² s⁻² K⁻¹, where the
    +040 * kilogram, metre and second are defined in terms of h, c and ∆νCs.
    +041 *
    +042 * This definition implies the exact relation k = 1.380 649 × 10⁻²³ kg m² s⁻² K⁻¹. Inverting this
    +043 * relation gives an exact expression for the kelvin in terms of the defining constants k, h and
    +044 * ∆νCs:
    +045 *
    +046 * 1 K = (1.380 649 / k) × 10⁻²³ kg m² s⁻²
    +047 * <br>
    +048 * <dl>
    +049 * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
    +050 * </dl>
    +051 * 
    +052 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +053 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +054 * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
    +055 * @version 2.1
    +056 * @since 1.0
    +057 *
    +058 * @see <a href="https://en.wikipedia.org/wiki/Temperature">Wikipedia: Temperature</a>
    +059 */
    +060public interface Temperature extends Quantity<Temperature> {
    +061}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/Time.html b/docs/site/apidocs/src-html/javax/measure/quantity/Time.html new file mode 100644 index 00000000..254b0176 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/Time.html @@ -0,0 +1,142 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Period of existence or persistence. The metric system unit for this quantity is "s" (second).
    +036 *
    +037 * The second, symbol s, is the SI unit of time. It is defined by taking the fixed
    +038 * numerical value of the caesium frequency ∆νCs, the unperturbed ground-state
    +039 * hyperfine transition frequency of the caesium 133 atom, to be 9 192 631 770 when
    +040 * expressed in the unit Hz, which is equal to s⁻¹.
    +041 *
    +042 * This definition implies the exact relation ∆νCs = 9 192 631 770 Hz. Inverting this relation
    +043 * gives an expression for the unit second in terms of the defining constant ∆νCs:
    +044 *
    +045 * 1 Hz = ∆νCs / 9 192 631 770  or  1 s = 9 192 631 770 / ∆νCs
    +046 * <br>
    +047 * <dl>
    +048 * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
    +049 * </dl>
    +050 * 
    +051 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +052 * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
    +053 * @version 2.1
    +054 * @since 1.0
    +055 *
    +056 * @see Frequency
    +057 * @see Speed
    +058 * @see Acceleration
    +059 * @see ElectricCurrent
    +060 * @see Power
    +061 * @see <a href="https://en.wikipedia.org/wiki/Unit_of_time">Wikipedia: Unit of time</a>
    +062 */
    +063public interface Time extends Quantity<Time> {
    +064}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/quantity/Volume.html b/docs/site/apidocs/src-html/javax/measure/quantity/Volume.html new file mode 100644 index 00000000..3eaa49c1 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/quantity/Volume.html @@ -0,0 +1,124 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.quantity;
    +031
    +032import javax.measure.Quantity;
    +033
    +034/**
    +035 * Amount of space occupied by a three-dimensional object or region of space. The metric system unit for this quantity is "m³" (cubic metre).
    +036 *
    +037 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +038 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +039 * @version 1.3
    +040 * @since 1.0
    +041 *
    +042 * @see Length
    +043 * @see Area
    +044 */
    +045public interface Volume extends Quantity<Volume> {
    +046}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/spi/FormatService.FormatType.html b/docs/site/apidocs/src-html/javax/measure/spi/FormatService.FormatType.html new file mode 100644 index 00000000..a5b653db --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/spi/FormatService.FormatType.html @@ -0,0 +1,197 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.spi;
    +031
    +032import java.util.Set;
    +033
    +034import javax.measure.format.QuantityFormat;
    +035import javax.measure.format.UnitFormat;
    +036
    +037/**
    +038 * This interface represents the service to obtain instances of {@link UnitFormat} and {@link QuantityFormat}.
    +039 *
    +040 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +041 * @version 2.3, May 20, 2023
    +042 * @since 2.0
    +043 */
    +044public interface FormatService {
    +045
    +046        /** The type of format, either a {@link UnitFormat} or {@link QuantityFormat} */
    +047    public static enum FormatType {
    +048        /** Format of type {@link UnitFormat} */
    +049        UNIT_FORMAT, 
    +050        /** Format of type {@link QuantityFormat} */
    +051        QUANTITY_FORMAT
    +052    }
    +053
    +054    /**
    +055     * Returns the default quantity format.
    +056     *
    +057     * It is up to implementations what to consider a suitable default. For some (locale-sensitive) implementations it may be a quantity format based on
    +058     * {@code Locale.current()} while others may return {@code getQuantityFormat("Simple")} or {@code getQuantityFormat("ISO")}.
    +059     *
    +060     * @return the default {@link QuantityFormat} implementation.
    +061     */
    +062    QuantityFormat getQuantityFormat();
    +063
    +064    /**
    +065     * Returns the quantity format having the specified name or {@code null} if none.
    +066     *
    +067     * For example (@code getQuantityFormat("Simple")} to return the simple {@link QuantityFormat} implementation.
    +068     *
    +069     * @param name
    +070     *          the name of the format.
    +071     * @return the corresponding quantity format.
    +072     */
    +073    QuantityFormat getQuantityFormat(String name);
    +074
    +075    /**
    +076     * Returns the default unit format.
    +077     *
    +078     * It is up to implementations what to consider a suitable default. For some (locale-sensitive) implementations it may be a unit format based on
    +079     * {@code Locale.current()} while others may return {@code getUnitFormat("Simple")} or {@code getUnitFormat("ISO")}.
    +080     *
    +081     * @return the default {@link UnitFormat} implementation.
    +082     */
    +083    UnitFormat getUnitFormat();
    +084
    +085    /**
    +086     * Returns the unit format having the specified name or {@code null} if none.
    +087     *
    +088     * For example {@code getUnitFormat("Simple")} to return a simple {@link UnitFormat} implementation.
    +089     *
    +090     * @param name
    +091     *          the name of the format.
    +092     * @return the corresponding unit format.
    +093     */
    +094    UnitFormat getUnitFormat(String name);
    +095    
    +096    /**
    +097     * Returns the unit format having the specified name or {@code null} if none.
    +098     *
    +099     * For example {@code getUnitFormat("Simple")} to return a simple {@link UnitFormat} implementation.<br>
    +100     * The variant is an arbitrary value to allow a variation of a {@link UnitFormat}, 
    +101     * for example <code>UTF</code> vs. <code>ASCII</code> encoding of the simple <code>UnitFormat</code> 
    +102     * or <code>case sensitive</code> vs. <code>case insensitive</code> <a href="https://ucum.org/ucum.html">UCUM</a> format.
    +103     * <p>If no variant is applicable, the <code>UnitFormat</code> matching the name only is returned.</p> 
    +104     * @param name
    +105     *          the name of the format.
    +106     * @param variant any arbitrary value used to indicate a variation of a <code>UnitFormat</code>.
    +107     * @return the corresponding unit format.
    +108     */
    +109    UnitFormat getUnitFormat(String name, String variant);
    +110    
    +111    /**
    +112     * Gets a list with available format names of a given type for this format service.
    +113     *
    +114     * @param type
    +115     *          the {@link FormatType}
    +116     * @return list of available formats, never null.
    +117     */
    +118    Set<String> getAvailableFormatNames(FormatType type);
    +119}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/spi/FormatService.html b/docs/site/apidocs/src-html/javax/measure/spi/FormatService.html new file mode 100644 index 00000000..754e29ce --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/spi/FormatService.html @@ -0,0 +1,197 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.spi;
    +031
    +032import java.util.Set;
    +033
    +034import javax.measure.format.QuantityFormat;
    +035import javax.measure.format.UnitFormat;
    +036
    +037/**
    +038 * This interface represents the service to obtain instances of {@link UnitFormat} and {@link QuantityFormat}.
    +039 *
    +040 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +041 * @version 2.3, May 20, 2023
    +042 * @since 2.0
    +043 */
    +044public interface FormatService {
    +045
    +046        /** The type of format, either a {@link UnitFormat} or {@link QuantityFormat} */
    +047    public static enum FormatType {
    +048        /** Format of type {@link UnitFormat} */
    +049        UNIT_FORMAT, 
    +050        /** Format of type {@link QuantityFormat} */
    +051        QUANTITY_FORMAT
    +052    }
    +053
    +054    /**
    +055     * Returns the default quantity format.
    +056     *
    +057     * It is up to implementations what to consider a suitable default. For some (locale-sensitive) implementations it may be a quantity format based on
    +058     * {@code Locale.current()} while others may return {@code getQuantityFormat("Simple")} or {@code getQuantityFormat("ISO")}.
    +059     *
    +060     * @return the default {@link QuantityFormat} implementation.
    +061     */
    +062    QuantityFormat getQuantityFormat();
    +063
    +064    /**
    +065     * Returns the quantity format having the specified name or {@code null} if none.
    +066     *
    +067     * For example (@code getQuantityFormat("Simple")} to return the simple {@link QuantityFormat} implementation.
    +068     *
    +069     * @param name
    +070     *          the name of the format.
    +071     * @return the corresponding quantity format.
    +072     */
    +073    QuantityFormat getQuantityFormat(String name);
    +074
    +075    /**
    +076     * Returns the default unit format.
    +077     *
    +078     * It is up to implementations what to consider a suitable default. For some (locale-sensitive) implementations it may be a unit format based on
    +079     * {@code Locale.current()} while others may return {@code getUnitFormat("Simple")} or {@code getUnitFormat("ISO")}.
    +080     *
    +081     * @return the default {@link UnitFormat} implementation.
    +082     */
    +083    UnitFormat getUnitFormat();
    +084
    +085    /**
    +086     * Returns the unit format having the specified name or {@code null} if none.
    +087     *
    +088     * For example {@code getUnitFormat("Simple")} to return a simple {@link UnitFormat} implementation.
    +089     *
    +090     * @param name
    +091     *          the name of the format.
    +092     * @return the corresponding unit format.
    +093     */
    +094    UnitFormat getUnitFormat(String name);
    +095    
    +096    /**
    +097     * Returns the unit format having the specified name or {@code null} if none.
    +098     *
    +099     * For example {@code getUnitFormat("Simple")} to return a simple {@link UnitFormat} implementation.<br>
    +100     * The variant is an arbitrary value to allow a variation of a {@link UnitFormat}, 
    +101     * for example <code>UTF</code> vs. <code>ASCII</code> encoding of the simple <code>UnitFormat</code> 
    +102     * or <code>case sensitive</code> vs. <code>case insensitive</code> <a href="https://ucum.org/ucum.html">UCUM</a> format.
    +103     * <p>If no variant is applicable, the <code>UnitFormat</code> matching the name only is returned.</p> 
    +104     * @param name
    +105     *          the name of the format.
    +106     * @param variant any arbitrary value used to indicate a variation of a <code>UnitFormat</code>.
    +107     * @return the corresponding unit format.
    +108     */
    +109    UnitFormat getUnitFormat(String name, String variant);
    +110    
    +111    /**
    +112     * Gets a list with available format names of a given type for this format service.
    +113     *
    +114     * @param type
    +115     *          the {@link FormatType}
    +116     * @return list of available formats, never null.
    +117     */
    +118    Set<String> getAvailableFormatNames(FormatType type);
    +119}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/spi/QuantityFactory.html b/docs/site/apidocs/src-html/javax/measure/spi/QuantityFactory.html new file mode 100644 index 00000000..9db410c9 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/spi/QuantityFactory.html @@ -0,0 +1,174 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.spi;
    +031
    +032import javax.measure.Quantity;
    +033import javax.measure.Quantity.Scale;
    +034import javax.measure.Unit;
    +035
    +036/**
    +037 * Represents a factory that accepts {@link Number} and {@link Unit} arguments to create {@link Quantity} results.
    +038 *
    +039 * @param <Q>
    +040 *          the type of the {@link Quantity} result
    +041 *
    +042 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +043 * @author <a href="mailto:otaviopolianasantana@gmail.com">Otavio Santana</a>
    +044 * @version 1.4, December 18, 2018
    +045 * @since 1.0
    +046 *
    +047 * @see <a href="https://en.wikipedia.org/wiki/Factory_method_pattern"> Wikipedia: Factory method pattern</a>
    +048 * @see Quantity
    +049 * @see Unit
    +050 */
    +051public interface QuantityFactory<Q extends Quantity<Q>> {
    +052
    +053    /**
    +054     * Returns the quantity for the specified number stated in the specified unit and scale.
    +055     *
    +056     * @param value
    +057     *          the numeric value stated in the specified unit
    +058     * @param unit
    +059     *          the unit
    +060     * @param scale
    +061     *          The {@code ABSOLUTE} / {@code RELATIVE} {@code scale} of this quantity
    +062     * @return the corresponding quantity
    +063     * @since 2.0
    +064     */
    +065    Quantity<Q> create(Number value, Unit<Q> unit, Scale scale);
    +066    
    +067    /**
    +068     * Returns the quantity for the specified number stated in the specified unit.
    +069     *
    +070     * @param value
    +071     *          the numeric value stated in the specified unit
    +072     * @param unit
    +073     *          the unit
    +074     * @return the corresponding quantity
    +075     */
    +076    Quantity<Q> create(Number value, Unit<Q> unit);
    +077
    +078    /**
    +079     * Returns the system unit for quantities produced by this factory or {@code null} if unknown.
    +080     *
    +081     * <p>
    +082     * Because the system unit is unique by quantity type, it can be be used to identify the quantity given the unit. For example:
    +083     * </p>
    +084     *
    +085     * <pre>
    +086     *     static boolean isAngularSpeed({@literal Unit<?>} unit) {
    +087     *         return unit.getSystemUnit().equals(RADIAN.divide(SECOND));
    +088     *     }
    +089     *     assert isAngularSpeed(REVOLUTION.divide(MINUTE)); // Returns true.
    +090     * </pre>
    +091     *
    +092     * @return the system unit for this factory.
    +093     * @see Unit#getSystemUnit()
    +094     */
    +095    Unit<Q> getSystemUnit();
    +096}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/spi/ServiceProvider.html b/docs/site/apidocs/src-html/javax/measure/spi/ServiceProvider.html new file mode 100644 index 00000000..a028709d --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/spi/ServiceProvider.html @@ -0,0 +1,491 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.spi;
    +031
    +032import java.lang.annotation.Annotation;
    +033import java.lang.reflect.InvocationTargetException;
    +034import java.lang.reflect.Method;
    +035import java.util.ArrayList;
    +036import java.util.Comparator;
    +037import java.util.List;
    +038import java.util.Objects;
    +039import java.util.Optional;
    +040import java.util.ServiceConfigurationError;
    +041import java.util.ServiceLoader;
    +042import java.util.concurrent.atomic.AtomicReference;
    +043import java.util.function.Predicate;
    +044import java.util.logging.Level;
    +045import java.util.logging.Logger;
    +046import java.util.stream.Collectors;
    +047import java.util.stream.Stream;
    +048import java.util.stream.StreamSupport;
    +049import javax.measure.Quantity;
    +050import javax.measure.format.QuantityFormat;
    +051import javax.measure.format.UnitFormat;
    +052
    +053/**
    +054 * Service Provider for Units of Measurement services.
    +055 * <p>
    +056 * All the methods in this class are safe to use by multiple concurrent threads.
    +057 * </p>
    +058 *
    +059 * @version 2.3, May 19, 2023
    +060 * @author Werner Keil
    +061 * @author Martin Desruisseaux
    +062 * @since 1.0
    +063 */
    +064public abstract class ServiceProvider {
    +065    /**
    +066     * Class name of JSR-330 annotation for naming a service provider.
    +067     * We use reflection for keeping JSR-330 an optional dependency.
    +068     */
    +069    private static final String LEGACY_NAMED_ANNOTATION = "javax.inject.Named";
    +070
    +071    /**
    +072     * Class name of JSR-250 annotation for assigning a priority level to a service provider.
    +073     * We use reflection for keeping JSR-250 an optional dependency.
    +074     */
    +075    private static final String LEGACY_PRIORITY_ANNOTATION = "javax.annotation.Priority";
    +076
    +077    /**
    +078     * Class name of Jakarta Dependency Injection annotation for naming a service provider.
    +079     * We use reflection for keeping Jakata Injection an optional dependency.
    +080     */
    +081    private static final String NAMED_ANNOTATION = "jakarta.inject.Named";
    +082
    +083    /**
    +084     * Class name of Jakarta Common Annotation for assigning a priority level to a service provider.
    +085     * We use reflection for keeping Jakarta Annotations an optional dependency.
    +086     */
    +087    private static final String PRIORITY_ANNOTATION = "jakarta.annotation.Priority";
    +088
    +089    /**
    +090     * The current service provider, or {@code null} if not yet determined.
    +091     *
    +092     * <p>Implementation Note: We do not cache a list of all service providers because that list depends
    +093     * indirectly on the thread invoking the {@link #available()} method. More specifically, it depends
    +094     * on the context class loader. Furthermore caching the {@code ServiceProvider}s can be a source of
    +095     * memory leaks. See {@link ServiceLoader#load(Class)} API note for reference.</p>
    +096     */
    +097    private static final AtomicReference<ServiceProvider> current = new AtomicReference<>();
    +098
    +099    /**
    +100     * Creates a new service provider. Only to be used by subclasses.
    +101     */
    +102    protected ServiceProvider() {
    +103    }
    +104
    +105    /**
    +106     * Allows to define a priority for a registered {@code ServiceProvider} instance.
    +107     * When multiple providers are registered in the system, the provider with the highest priority value is taken.
    +108     *
    +109     * <p>If the {@value #PRIORITY_ANNOTATION} annotation (from Jakarta Annotations)
    +110     * or {@value #LEGACY_PRIORITY_ANNOTATION} annotation (from JSR-250) is present on the {@code ServiceProvider}
    +111     * implementation class, then that annotation (first if both were present) is taken and this {@code getPriority()} method is ignored.
    +112     * Otherwise – if a {@code Priority} annotation is absent – this method is used as a fallback.</p>
    +113     *
    +114     * @return the provider's priority (default is 0).
    +115     */
    +116    public int getPriority() {
    +117        return 0;
    +118    }
    +119
    +120    /**
    +121     * Returns the service to obtain a {@link SystemOfUnits}, or {@code null} if none.
    +122     *
    +123     * @return the service to obtain a {@link SystemOfUnits}, or {@code null}.
    +124     */
    +125    public abstract SystemOfUnitsService getSystemOfUnitsService();
    +126
    +127    /**
    +128     * Returns the service to obtain {@link UnitFormat} and {@link QuantityFormat} or {@code null} if none.
    +129     *
    +130     * @return the service to obtain a {@link UnitFormat} and {@link QuantityFormat}, or {@code null}.
    +131     * @since 2.0
    +132     */
    +133    public abstract FormatService getFormatService();
    +134
    +135    /**
    +136     * Returns a factory for the given {@link Quantity} type.
    +137     *
    +138     * @param <Q>
    +139     *            the type of the {@link Quantity} instances created by the factory
    +140     * @param quantity
    +141     *            the quantity type
    +142     * @return the {@link QuantityFactory} for the given type
    +143     */
    +144    public abstract <Q extends Quantity<Q>> QuantityFactory<Q> getQuantityFactory(Class<Q> quantity);
    +145
    +146    /**
    +147     * A filter and a comparator for processing the stream of service providers.
    +148     * The two tasks (filtering and sorting) are implemented by the same class,
    +149     * but the filter task shall be used only if the name to search is non-null.
    +150     * The comparator is used in all cases, for sorting providers with higher priority first.
    +151     */
    +152    private static final class Selector implements Predicate<ServiceProvider>, Comparator<ServiceProvider> {
    +153        /**
    +154         * The name of the provider to search, or {@code null} if no filtering by name is applied.
    +155         */
    +156        private final String toSearch;
    +157
    +158        /**
    +159         * The {@code value()} method in the {@value #NAMED_ANNOTATION} annotation,
    +160         * or {@code null} if that class is not on the classpath.
    +161         */
    +162        private final Method nameGetter;
    +163
    +164        /**
    +165         * The {@code value()} method in the {@value #PRIORITY_ANNOTATION} annotation,
    +166         * or {@code null} if that class is not on the classpath.
    +167         */
    +168        private final Method priorityGetter;
    +169
    +170        /**
    +171         * The {@code value()} method in the {@value #LEGACY_NAMED_ANNOTATION} annotation,
    +172         * or {@code null} if that class is not on the classpath.
    +173         */
    +174        private final Method legacyNameGetter;
    +175
    +176        /**
    +177         * The {@code value()} method in the {@value #LEGACY_PRIORITY_ANNOTATION} annotation,
    +178         * or {@code null} if that class is not on the classpath.
    +179         */
    +180        private final Method legacyPriorityGetter;
    +181
    +182        /**
    +183         * Creates a new filter and comparator for a stream of service providers.
    +184         *
    +185         * @param name  name of the desired service provider, or {@code null} if no filtering by name is applied.
    +186         */
    +187        Selector(String name) {
    +188            toSearch = name;
    +189            try {
    +190                if (name != null) {
    +191                    nameGetter       = getValueMethod(NAMED_ANNOTATION);
    +192                    legacyNameGetter = getValueMethod(LEGACY_NAMED_ANNOTATION);
    +193                } else {
    +194                    nameGetter       = null;
    +195                    legacyNameGetter = null;
    +196                }
    +197                priorityGetter       = getValueMethod(PRIORITY_ANNOTATION);
    +198                legacyPriorityGetter = getValueMethod(LEGACY_PRIORITY_ANNOTATION);
    +199            } catch (NoSuchMethodException e) {
    +200                // Should never happen since value() is a standard public method of those annotations.
    +201                throw new ServiceConfigurationError("Cannot get annotation value", e);
    +202            }
    +203        }
    +204
    +205        /**
    +206         * Returns the {@code value()} method in the given annotation class.
    +207         *
    +208         * @param  classname  name of the class from which to get the {@code value()} method.
    +209         * @return the {@code value()} method, or {@code null} if the annotation class was not found.
    +210         */
    +211        private static Method getValueMethod(final String classname) throws NoSuchMethodException {
    +212            try {
    +213                return Class.forName(classname).getMethod("value", (Class[]) null);
    +214            } catch (ClassNotFoundException e) {
    +215                // Ignore because JSR-330, JSR-250 and Jakarta are optional dependencies.
    +216                return null;
    +217            }
    +218        }
    +219
    +220        /**
    +221         * Invokes the {@code value()} method on the annotation of the given class.
    +222         * The annotation on which to invoke the method is given by {@link Method#getDeclaringClass()}.
    +223         *
    +224         * @param  provider   class of the provider on which to invoke annotation {@code value()}.
    +225         * @param  getter     the preferred  {@code value()} method to invoke, or {@code null}.
    +226         * @param  fallback   an alternative {@code value()} method to invoke, or {@code null}.
    +227         * @return the value, or {@code null} if none.
    +228         */
    +229        private static Object getValue(final Class<?> provider, Method getter, Method fallback) {
    +230            if (getter == null) {
    +231                getter = fallback;
    +232                fallback = null;
    +233            }
    +234            while (getter != null) {
    +235                final Annotation a = provider.getAnnotation(getter.getDeclaringClass().asSubclass(Annotation.class));
    +236                if (a != null) try {
    +237                    return getter.invoke(a, (Object[]) null);
    +238                } catch (IllegalAccessException | InvocationTargetException e) {
    +239                    // Should never happen since value() is a public method and should not throw exception.
    +240                    throw new ServiceConfigurationError("Cannot get annotation value", e);
    +241                }
    +242                getter = fallback;
    +243                fallback = null;
    +244            }
    +245            return null;
    +246        }
    +247
    +248        /**
    +249         * Returns {@code true} if the given service provider has the name we are looking for.
    +250         * This method shall be invoked only if a non-null name has been specified to the constructor.
    +251         * This method looks for the {@value #NAMED_ANNOTATION} and {@value #LEGACY_NAMED_ANNOTATION}
    +252         * annotations in that order, and if none are found fallbacks on {@link ServiceProvider#toString()}.
    +253         */
    +254        @Override
    +255        public boolean test(final ServiceProvider provider) {
    +256            Object value = getValue(provider.getClass(), nameGetter, legacyNameGetter);
    +257            if (value == null) {
    +258                value = provider.toString();
    +259            }
    +260            return toSearch.equals(value);
    +261        }
    +262
    +263        /**
    +264         * Returns the priority of the given service provider.
    +265         * This method looks for the {@value #PRIORITY_ANNOTATION} and {@value #LEGACY_PRIORITY_ANNOTATION}
    +266         * annotations in that order, and if none are found falls back on {@link ServiceProvider#getPriority()}.
    +267         */
    +268        private int priority(final ServiceProvider provider) {
    +269            Object value = getValue(provider.getClass(), priorityGetter, legacyPriorityGetter);
    +270            if (value != null) {
    +271                return (Integer) value;
    +272            }
    +273            return provider.getPriority();
    +274        }
    +275
    +276        /**
    +277         * Compares the given service providers for order based on their priority.
    +278         * The priority of each provider is determined as documented by {@link ServiceProvider#getPriority()}.
    +279         */
    +280        @Override
    +281        public int compare(final ServiceProvider p1, final ServiceProvider p2) {
    +282            return Integer.compare(priority(p2), priority(p1)); // reverse order, higher number first.
    +283        }
    +284
    +285        /**
    +286         * Gets all {@link ServiceProvider}s sorted by priority and optionally filtered by the name in this selector.
    +287         * The list of service providers is <strong>not</strong> cached because it depends on the context class loader,
    +288         * which itself depends on which thread is invoking this method.
    +289         */
    +290        private Stream<ServiceProvider> stream() {
    +291            Stream<ServiceProvider> stream = StreamSupport.stream(ServiceLoader.load(ServiceProvider.class).spliterator(), false);
    +292            if (toSearch != null) {
    +293                stream = stream.filter(this);
    +294            }
    +295            return stream.sorted(this);
    +296        }
    +297    }
    +298
    +299    /**
    +300     * Returns the list of all service providers available for the current thread's context class loader.
    +301     * The {@linkplain #current() current} service provider is always the first item in the returned list.
    +302     * Other service providers after the first item may depend on the caller thread
    +303     * (see {@linkplain ServiceLoader#load(Class) service loader API note}).
    +304     *
    +305     * @return all service providers available for the current thread's context class loader.
    +306     */
    +307    public static final List<ServiceProvider> available() {
    +308        ArrayList<ServiceProvider> providers = new Selector(null).stream().collect(Collectors.toCollection(ArrayList::new));
    +309        final ServiceProvider first = current.get();
    +310        /*
    +311         * Make sure that 'first' is the first item in the 'providers' list. If that item appears
    +312         * somewhere else, we have to remove the second occurrence for avoiding duplicated elements.
    +313         * We compare the classes, not the instances, because new instances may be created each time
    +314         * this method is invoked and we have no guaranteed that implementors overrode 'equals'.
    +315         */
    +316setcur: if (first != null) {
    +317            final Class<?> cf = first.getClass();
    +318            final int size = providers.size();
    +319            for (int i=0; i<size; i++) {
    +320                if (cf.equals(providers.get(i).getClass())) {
    +321                    if (i == 0) break setcur;       // No change needed (note: labeled breaks on if statements are legal).
    +322                    providers.remove(i);
    +323                    break;
    +324                }
    +325            }
    +326            providers.add(0, first);
    +327        }
    +328        return providers;
    +329    }
    +330
    +331    /**
    +332     * Returns the {@link ServiceProvider} with the specified name.
    +333     * The given name must match the name of at least one service provider available in the current thread's
    +334     * context class loader.
    +335     * The service provider names are the values of {@value #NAMED_ANNOTATION} (from Jakarta Annotations) or
    +336     * {@value #LEGACY_NAMED_ANNOTATION} (from JSR-330) annotations when present (first if both were present),
    +337     * or the value of {@link #toString()} method for providers without {@code Named} annotation.
    +338     *
    +339     * <p>Implementors are encouraged to provide an {@code Named} annotation or to override {@link #toString()}
    +340     * and use a unique enough name, e.g. the class name or other distinct attributes.
    +341     * Should multiple service providers nevertheless use the same name, the one with the highest
    +342     * {@linkplain #getPriority() priority} wins.</p>
    +343     *
    +344     * @param name
    +345     *            the name of the service provider to return
    +346     * @return the {@link ServiceProvider} with the specified name
    +347     * @throws IllegalArgumentException
    +348     *             if available service providers do not contain a provider with the specified name
    +349     * @throws NullPointerException
    +350     *             if {@code name} is null
    +351     * @see #toString()
    +352     * @since 2.0
    +353     */
    +354    public static ServiceProvider of(String name) {
    +355        Objects.requireNonNull(name);
    +356        Selector select = new Selector(name);
    +357        ServiceProvider p = current.get();
    +358        if (p != null && select.test(p)) {
    +359            return p;
    +360        }
    +361        Optional<ServiceProvider> first = select.stream().findFirst();
    +362        if (first.isPresent()) {
    +363            return first.get();
    +364        } else {
    +365            throw new IllegalArgumentException("No Measurement ServiceProvider " + name + " found .");
    +366        }
    +367    }
    +368
    +369    /**
    +370     * Returns the current {@link ServiceProvider}. If necessary the {@link ServiceProvider} will be lazily loaded.
    +371     * <p>
    +372     * If there are no providers available, an {@linkplain IllegalStateException} is thrown.
    +373     * Otherwise the provider with the highest priority is used
    +374     * or the one explicitly designated via {@link #setCurrent(ServiceProvider)}.
    +375     * </p>
    +376     *
    +377     * @return the {@link ServiceProvider} used.
    +378     * @throws IllegalStateException
    +379     *             if no {@link ServiceProvider} has been found.
    +380     * @see #getPriority()
    +381     * @see #setCurrent(ServiceProvider)
    +382     */
    +383    public static final ServiceProvider current() {
    +384        ServiceProvider p = current.get();
    +385        if (p == null) {
    +386            Optional<ServiceProvider> first = new Selector(null).stream().findFirst();
    +387            if (first.isPresent()) {
    +388                p = first.get();
    +389            } else {
    +390                throw new IllegalStateException("No Measurement ServiceProvider found.");
    +391            }
    +392        }
    +393        return p;
    +394    }
    +395
    +396    /**
    +397     * Replaces the current {@link ServiceProvider}.
    +398     *
    +399     * @param provider
    +400     *            the new {@link ServiceProvider}
    +401     * @return the replaced provider, or null.
    +402     */
    +403    public static final ServiceProvider setCurrent(ServiceProvider provider) {
    +404        Objects.requireNonNull(provider);
    +405        ServiceProvider old = current.getAndSet(provider);
    +406        if (old != provider) {
    +407            Logger.getLogger("javax.measure.spi").log(Level.CONFIG,
    +408                    "Measurement ServiceProvider {1,choice,0#set to|1#replaced by} {0}.",
    +409                    new Object[] {provider.getClass().getName(), (old == null) ? 0 : 1});
    +410        }
    +411        return old;
    +412    }
    +413}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/spi/SystemOfUnits.html b/docs/site/apidocs/src-html/javax/measure/spi/SystemOfUnits.html new file mode 100644 index 00000000..27dda749 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/spi/SystemOfUnits.html @@ -0,0 +1,174 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.spi;
    +031
    +032import java.util.Set;
    +033
    +034import javax.measure.Dimension;
    +035import javax.measure.Quantity;
    +036import javax.measure.Unit;
    +037
    +038/**
    +039 * A system of units grouped together for historical or cultural reasons.<br>
    +040 * Common system of units are "SI" (System International), "Imperial" (British), "US" (US Customary). Nothing prevents a unit from belonging to
    +041 * several systems of units at the same time (for example an {@code Imperial} system would have many of the units held by the {@code US} Customary
    +042 * system).
    +043 *
    +044 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +045 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +046 * @version 1.1, June 21, 2018
    +047 * @since 1.0
    +048 *
    +049 * @see <a href="http://en.wikipedia.org/wiki/International_System_of_Units"> Wikipedia: International System of Units</a>
    +050 * @see <a href="http://en.wikipedia.org/wiki/Systems_of_measurement"> Wikipedia: System of measurement</a>
    +051 */
    +052public interface SystemOfUnits {
    +053
    +054    /**
    +055     * @return a name
    +056     */
    +057    String getName();
    +058
    +059    /**
    +060     * Returns the default unit for the specified quantity or {@code null} if none is defined for the given quantity in this unit system.
    +061     *
    +062     * @param <Q>
    +063     *          the compile-time quantity type.
    +064     * @param quantityType
    +065     *          the quantity type.
    +066     * @return the unit for the specified quantity.
    +067     */
    +068    <Q extends Quantity<Q>> Unit<Q> getUnit(Class<Q> quantityType);
    +069
    +070    /**
    +071     * Returns a unit with the given {@linkplain String string} representation or {@code null} if none is found in this unit system.
    +072     *
    +073     * @param string
    +074     *          the string representation of a unit, not {@code null}.
    +075     * @return the unit with the given string representation.
    +076     * @since 2.0
    +077     */
    +078    Unit<?> getUnit(String string);
    +079
    +080    /**
    +081     * Returns a read only view over the units explicitly defined by this system. This include the base and derived units which are assigned a special
    +082     * name and symbol. This set does not include new units created by arithmetic or other operations.
    +083     *
    +084     * @return the defined collection of units.
    +085     */
    +086    Set<? extends Unit<?>> getUnits();
    +087
    +088    /**
    +089     * Returns the units defined in this system having the specified dimension (convenience method).
    +090     *
    +091     * @param dimension
    +092     *          the dimension of the units to be returned.
    +093     * @return the collection of units of specified dimension.
    +094     */
    +095    Set<? extends Unit<?>> getUnits(Dimension dimension);
    +096}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/src-html/javax/measure/spi/SystemOfUnitsService.html b/docs/site/apidocs/src-html/javax/measure/spi/SystemOfUnitsService.html new file mode 100644 index 00000000..fb2aeb34 --- /dev/null +++ b/docs/site/apidocs/src-html/javax/measure/spi/SystemOfUnitsService.html @@ -0,0 +1,205 @@ + + + + +Source code + + + + + + +
    +
    +
    001/*
    +002 * Units of Measurement API
    +003 * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
    +004 *
    +005 * All rights reserved.
    +006 *
    +007 * Redistribution and use in source and binary forms, with or without modification,
    +008 * are permitted provided that the following conditions are met:
    +009 *
    +010 * 1. Redistributions of source code must retain the above copyright notice,
    +011 *    this list of conditions and the following disclaimer.
    +012 *
    +013 * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
    +014 *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
    +015 *
    +016 * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
    +017 *    derived from this software without specific prior written permission.
    +018 *
    +019 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +020 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    +021 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    +022 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +023 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    +024 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    +025 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    +026 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    +027 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
    +028 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +029 */
    +030package javax.measure.spi;
    +031
    +032import java.util.Collection;
    +033import java.util.EnumSet;
    +034import java.util.Set;
    +035import javax.measure.Prefix;
    +036
    +037/**
    +038 * This interface represents the service to obtain a {@link SystemOfUnits system
    +039 * of units}.
    +040 *
    +041 * <p>
    +042 * Common systems of units are "SI" (System International) or Metric system,
    +043 * "Imperial" (British), or "US" (US Customary).
    +044 * </p>
    +045 *
    +046 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
    +047 * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
    +048 * @author <a href="mailto:martin.desruisseaux@geomatys.com">Martin
    +049 *         Desruisseaux</a>
    +050 * @version 1.8, April 3, 2023
    +051 * @since 1.0
    +052 *
    +053 * @see <a href=
    +054 *      "https://en.wikipedia.org/wiki/International_System_of_Units">Wikipedia:
    +055 *      International System of Units</a>
    +056 */
    +057public interface SystemOfUnitsService {
    +058
    +059    /**
    +060     * Returns the default {@link SystemOfUnits system of units}. Depending on the
    +061     * implementation this may be the <a href="https://en.wikipedia.org/wiki/International_System_of_Units">International
    +062     * System of Units</a> or another default system.
    +063     *
    +064     * @return the default system of units.
    +065     */
    +066    SystemOfUnits getSystemOfUnits();
    +067
    +068    /**
    +069     * Returns the system of units having the specified name or {@code null} if
    +070     * none is found.
    +071     *
    +072     * @param name the system of unit name.
    +073     * @return the system of units for the given name.
    +074     */
    +075    SystemOfUnits getSystemOfUnits(String name);
    +076
    +077    /**
    +078     * Gets a list with available systems for this {@link SystemOfUnitsService}.
    +079     *
    +080     * @return list of available systems of units, never null.
    +081     */
    +082    Collection<SystemOfUnits> getAvailableSystemsOfUnits();
    +083
    +084    /**
    +085     * Returns a {@link Set} containing the values of a particular {@link Prefix}
    +086     * type.
    +087     *
    +088     * <p>
    +089     * This method may be used to iterate over certain prefixes as follows:
    +090     * </p>
    +091     * <pre>{@code
    +092     *    for(MetricPrefix mp : service.getPrefixes(MetricPrefix.class))
    +093     *        System.out.println(p);
    +094     * }</pre>
    +095     *
    +096     * The default implementation assumes that prefixes of the given type are implemented as an enumeration.
    +097     * This is the case of the two default prefix implementations provided in JSR 385,
    +098     * namely {@link javax.measure.MetricPrefix} and {@link javax.measure.BinaryPrefix}.
    +099     * Implementors shall override this method if they provide prefixes implemented in a different way.
    +100     *
    +101     * @param <P> compile-time value of the {@code prefixType} argument
    +102     * @param prefixType the {@link Prefix} type
    +103     * @return a set containing the constant values of this Prefix type, in the
    +104     *         order they're declared
    +105     * @throws ClassCastException if the class is not compatible with the desired
    +106     *                            Prefix implementation or does not implement Prefix at all.
    +107     * @since 2.0
    +108     */
    +109    @SuppressWarnings({"unchecked", "rawtypes"})
    +110    default <P extends Prefix> Set<P> getPrefixes(Class<P> prefixType) {
    +111        // Following check is redundant with parameterized type but nevertheless applied as a safety.
    +112        if (Prefix.class.isAssignableFrom(prefixType)) {
    +113            EnumSet<? extends Enum<?>> prefixes = EnumSet.allOf(prefixType.asSubclass(Enum.class));
    +114            /*
    +115             * Following unchecked cast is safe for read operations because the given class implements
    +116             * 'prefixType' in addition of being an enumeration.  It is also safe for write operations
    +117             * because all enumerations are closed universes (so users can not add an instance unknown
    +118             * to EnumSet) and we would have got an exception before this point if 'prefixType' was not
    +119             * an enumeration in the sense of Class.isEnum().
    +120             */
    +121            return (EnumSet) prefixes;
    +122        } else {
    +123            throw new ClassCastException(String.format("%s does not implement Prefix", prefixType));
    +124            // TODO or should we throw a different exception here, MeasurementException or IllegalArgumentException?
    +125        }
    +126    }
    +127}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/docs/site/apidocs/stylesheet.css b/docs/site/apidocs/stylesheet.css new file mode 100644 index 00000000..93810d9a --- /dev/null +++ b/docs/site/apidocs/stylesheet.css @@ -0,0 +1,869 @@ +/* + * Javadoc style sheet + */ + +@import url('resources/fonts/dejavu.css'); + +/* + * Styles for individual HTML elements. + * + * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular + * HTML element throughout the page. + */ + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; + padding:0; + height:100%; + width:100%; +} +iframe { + margin:0; + padding:0; + height:100%; + width:100%; + overflow-y:scroll; + border:none; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a[href]:hover, a[href]:focus { + text-decoration:none; + color:#bb7a2a; +} +a[name] { + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; +} +h4 { + font-size:15px; +} +h5 { + font-size:14px; +} +h6 { + font-size:13px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; +} +:not(h1, h2, h3, h4, h5, h6) > code, +:not(h1, h2, h3, h4, h5, h6) > tt { + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +.summary-table dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +button { + font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size: 14px; +} +/* + * Styles for HTML generated by javadoc. + * + * These are style classes that are used by the standard doclet to generate HTML documentation. + */ + +/* + * Styles for document title and copyright. + */ +.clear { + clear:both; + height:0; + overflow:hidden; +} +.about-language { + float:right; + padding:0 21px 8px 8px; + font-size:11px; + margin-top:-9px; + height:2.9em; +} +.legal-copy { + margin-left:.5em; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* + * Styles for navigation bar. + */ +@media screen { + .flex-box { + position:fixed; + display:flex; + flex-direction:column; + height: 100%; + width: 100%; + } + .flex-header { + flex: 0 0 auto; + } + .flex-content { + flex: 1 1 auto; + overflow-y: auto; + } +} +.top-nav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + min-height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.sub-nav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.sub-nav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +.sub-nav .nav-list { + padding-top:5px; +} +ul.nav-list { + display:block; + margin:0 25px 0 0; + padding:0; +} +ul.sub-nav-list { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.nav-list li { + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +.sub-nav .nav-list-search { + float:right; + margin:0 0 0 0; + padding:5px 6px; + clear:none; +} +.nav-list-search label { + position:relative; + right:-16px; +} +ul.sub-nav-list li { + list-style:none; + float:left; + padding-top:10px; +} +.top-nav a:link, .top-nav a:active, .top-nav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.top-nav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.nav-bar-cell1-rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skip-nav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* + * Hide navigation links and search box in print layout + */ +@media print { + ul.nav-list, div.sub-nav { + display:none; + } +} +/* + * Styles for page header and footer. + */ +.title { + color:#2c4557; + margin:10px 0; +} +.sub-title { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* + * Styles for headings. + */ +body.class-declaration-page .summary h2, +body.class-declaration-page .details h2, +body.class-use-page h2, +body.module-declaration-page .block-list h2 { + font-style: italic; + padding:0; + margin:15px 0; +} +body.class-declaration-page .summary h3, +body.class-declaration-page .details h3, +body.class-declaration-page .summary .inherited-list h2 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +/* + * Styles for page layout containers. + */ +main { + clear:both; + padding:10px 20px; + position:relative; +} +dl.notes > dt { + font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +dl.notes > dd { + margin:5px 10px 10px 0; + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} +dl.name-value > dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +dl.name-value > dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* + * Styles for lists. + */ +li.circle { + list-style:circle; +} +ul.horizontal li { + display:inline; + font-size:0.9em; +} +div.inheritance { + margin:0; + padding:0; +} +div.inheritance div.inheritance { + margin-left:2em; +} +ul.block-list, +ul.details-list, +ul.member-list, +ul.summary-list { + margin:10px 0 10px 0; + padding:0; +} +ul.block-list > li, +ul.details-list > li, +ul.member-list > li, +ul.summary-list > li { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +.summary-table dl, .summary-table dl dt, .summary-table dl dd { + margin-top:0; + margin-bottom:1px; +} +ul.see-list, ul.see-list-long { + padding-left: 0; + list-style: none; +} +ul.see-list li { + display: inline; +} +ul.see-list li:not(:last-child):after, +ul.see-list-long li:not(:last-child):after { + content: ", "; + white-space: pre-wrap; +} +/* + * Styles for tables. + */ +.summary-table, .details-table { + width:100%; + border-spacing:0; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; + padding:0; +} +.caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0; + padding-top:10px; + padding-left:1px; + margin:0; + white-space:pre; +} +.caption a:link, .caption a:visited { + color:#1f389c; +} +.caption a:hover, +.caption a:active { + color:#FFFFFF; +} +.caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +div.table-tabs { + padding:10px 0 0 1px; + margin:0; +} +div.table-tabs > button { + border: none; + cursor: pointer; + padding: 5px 12px 7px 12px; + font-weight: bold; + margin-right: 3px; +} +div.table-tabs > button.active-table-tab { + background: #F8981D; + color: #253441; +} +div.table-tabs > button.table-tab { + background: #4D7A97; + color: #FFFFFF; +} +.two-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(15%, auto); +} +.three-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, auto); +} +.four-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(10%, max-content) minmax(10%, max-content) minmax(10%, auto); +} +@media screen and (max-width: 600px) { + .two-column-summary { + display: grid; + grid-template-columns: 1fr; + } +} +@media screen and (max-width: 800px) { + .three-column-summary { + display: grid; + grid-template-columns: minmax(10%, max-content) minmax(25%, auto); + } + .three-column-summary .col-last { + grid-column-end: span 2; + } +} +@media screen and (max-width: 1000px) { + .four-column-summary { + display: grid; + grid-template-columns: minmax(15%, max-content) minmax(15%, auto); + } +} +.summary-table > div, .details-table > div { + text-align:left; + padding: 8px 3px 3px 7px; +} +.col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name { + vertical-align:top; + padding-right:0; + padding-top:8px; + padding-bottom:3px; +} +.table-header { + background:#dee3e9; + font-weight: bold; +} +.col-first, .col-first { + font-size:13px; +} +.col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last { + font-size:13px; +} +.col-first, .col-second, .col-constructor-name { + vertical-align:top; + overflow: auto; +} +.col-last { + white-space:normal; +} +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-first a:link, .col-first a:visited, +.col-second a:link, .col-second a:visited, +.col-constructor-name a:link, .col-constructor-name a:visited, +.col-summary-item-name a:link, .col-summary-item-name a:visited, +.constant-values-container a:link, .constant-values-container a:visited, +.all-classes-container a:link, .all-classes-container a:visited, +.all-packages-container a:link, .all-packages-container a:visited { + font-weight:bold; +} +.table-sub-heading-color { + background-color:#EEEEFF; +} +.even-row-color, .even-row-color .table-header { + background-color:#FFFFFF; +} +.odd-row-color, .odd-row-color .table-header { + background-color:#EEEEEF; +} +/* + * Styles for contents. + */ +.deprecated-content { + margin:0; + padding:10px 0; +} +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} +.col-last div { + padding-top:0; +} +.col-last a { + padding-bottom:3px; +} +.module-signature, +.package-signature, +.type-signature, +.member-signature { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + margin:14px 0; + white-space: pre-wrap; +} +.module-signature, +.package-signature, +.type-signature { + margin-top: 0; +} +.member-signature .type-parameters-long, +.member-signature .parameters, +.member-signature .exceptions { + display: inline-block; + vertical-align: top; + white-space: pre; +} +.member-signature .type-parameters { + white-space: normal; +} +/* + * Styles for formatting effect. + */ +.source-line-no { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:0 10px 5px 0; + color:#474747; +} +.deprecated-label, .descfrm-type-label, .implementation-label, .member-name-label, .member-name-link, +.module-label-in-package, .module-label-in-type, .override-specify-label, .package-label-in-type, +.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label { + font-weight:bold; +} +.deprecation-comment, .help-footnote, .preview-comment { + font-style:italic; +} +.deprecation-block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +.preview-block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; + border-style:solid; + border-width:thin; + border-radius:10px; + padding:10px; + margin-bottom:10px; + margin-right:10px; + display:inline-block; +} +div.block div.deprecation-comment { + font-style:normal; +} +/* + * Styles specific to HTML5 elements. + */ +main, nav, header, footer, section { + display:block; +} +/* + * Styles for javadoc search. + */ +.ui-autocomplete-category { + font-weight:bold; + font-size:15px; + padding:7px 0 7px 3px; + background-color:#4D7A97; + color:#FFFFFF; +} +.result-item { + font-size:13px; +} +.ui-autocomplete { + max-height:85%; + max-width:65%; + overflow-y:scroll; + overflow-x:scroll; + white-space:nowrap; + box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); +} +ul.ui-autocomplete { + position:fixed; + z-index:999999; + background-color: #FFFFFF; +} +ul.ui-autocomplete li { + float:left; + clear:both; + width:100%; +} +.result-highlight { + font-weight:bold; +} +.ui-autocomplete .result-item { + font-size: inherit; +} +#search-input { + background-image:url('resources/glass.png'); + background-size:13px; + background-repeat:no-repeat; + background-position:2px 3px; + padding-left:20px; + position:relative; + right:-18px; + width:400px; +} +#reset-button { + background-color: rgb(255,255,255); + background-image:url('resources/x.png'); + background-position:center; + background-repeat:no-repeat; + background-size:12px; + border:0 none; + width:16px; + height:16px; + position:relative; + left:-4px; + top:-4px; + font-size:0px; +} +.watermark { + color:#545454; +} +.search-tag-desc-result { + font-style:italic; + font-size:11px; +} +.search-tag-holder-result { + font-style:italic; + font-size:12px; +} +.search-tag-result:target { + background-color:yellow; +} +.module-graph span { + display:none; + position:absolute; +} +.module-graph:hover span { + display:block; + margin: -100px 0 0 100px; + z-index: 1; +} +.inherited-list { + margin: 10px 0 10px 0; +} +section.class-description { + line-height: 1.4; +} +.summary section[class$="-summary"], .details section[class$="-details"], +.class-uses .detail, .serialized-class-details { + padding: 0px 20px 5px 10px; + border: 1px solid #ededed; + background-color: #f8f8f8; +} +.inherited-list, section[class$="-details"] .detail { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +.vertical-separator { + padding: 0 5px; +} +ul.help-section-list { + margin: 0; +} +ul.help-subtoc > li { + display: inline-block; + padding-right: 5px; + font-size: smaller; +} +ul.help-subtoc > li::before { + content: "\2022" ; + padding-right:2px; +} +span.help-note { + font-style: italic; +} +/* + * Indicator icon for external links. + */ +main a[href*="://"]::after { + content:""; + display:inline-block; + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); + background-size:100% 100%; + width:7px; + height:7px; + margin-left:2px; + margin-bottom:4px; +} +main a[href*="://"]:hover::after, +main a[href*="://"]:focus::after { + background-image:url('data:image/svg+xml; utf8, \ + \ + \ + '); +} + +/* + * Styles for user-provided tables. + * + * borderless: + * No borders, vertical margins, styled caption. + * This style is provided for use with existing doc comments. + * In general, borderless tables should not be used for layout purposes. + * + * plain: + * Plain borders around table and cells, vertical margins, styled caption. + * Best for small tables or for complex tables for tables with cells that span + * rows and columns, when the "striped" style does not work well. + * + * striped: + * Borders around the table and vertical borders between cells, striped rows, + * vertical margins, styled caption. + * Best for tables that have a header row, and a body containing a series of simple rows. + */ + +table.borderless, +table.plain, +table.striped { + margin-top: 10px; + margin-bottom: 10px; +} +table.borderless > caption, +table.plain > caption, +table.striped > caption { + font-weight: bold; + font-size: smaller; +} +table.borderless th, table.borderless td, +table.plain th, table.plain td, +table.striped th, table.striped td { + padding: 2px 5px; +} +table.borderless, +table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th, +table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td { + border: none; +} +table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr { + background-color: transparent; +} +table.plain { + border-collapse: collapse; + border: 1px solid black; +} +table.plain > thead > tr, table.plain > tbody tr, table.plain > tr { + background-color: transparent; +} +table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th, +table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td { + border: 1px solid black; +} +table.striped { + border-collapse: collapse; + border: 1px solid black; +} +table.striped > thead { + background-color: #E3E3E3; +} +table.striped > thead > tr > th, table.striped > thead > tr > td { + border: 1px solid black; +} +table.striped > tbody > tr:nth-child(even) { + background-color: #EEE +} +table.striped > tbody > tr:nth-child(odd) { + background-color: #FFF +} +table.striped > tbody > tr > th, table.striped > tbody > tr > td { + border-left: 1px solid black; + border-right: 1px solid black; +} +table.striped > tbody > tr > th { + font-weight: normal; +} +/** + * Tweak font sizes and paddings for small screens. + */ +@media screen and (max-width: 1050px) { + #search-input { + width: 300px; + } +} +@media screen and (max-width: 800px) { + #search-input { + width: 200px; + } + .top-nav, + .bottom-nav { + font-size: 11px; + padding-top: 6px; + } + .sub-nav { + font-size: 11px; + } + .about-language { + padding-right: 16px; + } + ul.nav-list li, + .sub-nav .nav-list-search { + padding: 6px; + } + ul.sub-nav-list li { + padding-top: 5px; + } + main { + padding: 10px; + } + .summary section[class$="-summary"], .details section[class$="-details"], + .class-uses .detail, .serialized-class-details { + padding: 0 8px 5px 8px; + } + body { + -webkit-text-size-adjust: none; + } +} +@media screen and (max-width: 500px) { + #search-input { + width: 150px; + } + .top-nav, + .bottom-nav { + font-size: 10px; + } + .sub-nav { + font-size: 10px; + } + .about-language { + font-size: 10px; + padding-right: 12px; + } +} diff --git a/docs/site/apidocs/system-properties.html b/docs/site/apidocs/system-properties.html new file mode 100644 index 00000000..a654f91a --- /dev/null +++ b/docs/site/apidocs/system-properties.html @@ -0,0 +1,108 @@ + + + + + +System Properties (Units of Measurement API 2.1.3-SNAPSHOT API) + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    System Properties

    +
    +
    +
    + + + + + + + + +
    System Properties Summary 
    PropertyReferenced In
    +
    +
    +
    + + + diff --git a/docs/site/apidocs/tag-search-index.js b/docs/site/apidocs/tag-search-index.js new file mode 100644 index 00000000..f38b3cb3 --- /dev/null +++ b/docs/site/apidocs/tag-search-index.js @@ -0,0 +1 @@ +tagSearchIndex = [{"l":"Serialized Form","h":"","u":"serialized-form.html"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/site/apidocs/type-search-index.js b/docs/site/apidocs/type-search-index.js new file mode 100644 index 00000000..c3580118 --- /dev/null +++ b/docs/site/apidocs/type-search-index.js @@ -0,0 +1 @@ +typeSearchIndex = [{"p":"javax.measure.quantity","l":"Acceleration"},{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"javax.measure.quantity","l":"AmountOfSubstance"},{"p":"javax.measure.quantity","l":"Angle"},{"p":"javax.measure.quantity","l":"Area"},{"p":"javax.measure","l":"BinaryPrefix"},{"p":"javax.measure.quantity","l":"CatalyticActivity"},{"p":"javax.measure","l":"Dimension"},{"p":"javax.measure.quantity","l":"Dimensionless"},{"p":"javax.measure.quantity","l":"ElectricCapacitance"},{"p":"javax.measure.quantity","l":"ElectricCharge"},{"p":"javax.measure.quantity","l":"ElectricConductance"},{"p":"javax.measure.quantity","l":"ElectricCurrent"},{"p":"javax.measure.quantity","l":"ElectricInductance"},{"p":"javax.measure.quantity","l":"ElectricPotential"},{"p":"javax.measure.quantity","l":"ElectricResistance"},{"p":"javax.measure.quantity","l":"Energy"},{"p":"javax.measure.quantity","l":"Force"},{"p":"javax.measure.spi","l":"FormatService"},{"p":"javax.measure.spi","l":"FormatService.FormatType"},{"p":"javax.measure.quantity","l":"Frequency"},{"p":"javax.measure.quantity","l":"Illuminance"},{"p":"javax.measure","l":"IncommensurableException"},{"p":"javax.measure.quantity","l":"Length"},{"p":"javax.measure.quantity","l":"LuminousFlux"},{"p":"javax.measure.quantity","l":"LuminousIntensity"},{"p":"javax.measure.quantity","l":"MagneticFlux"},{"p":"javax.measure.quantity","l":"MagneticFluxDensity"},{"p":"javax.measure.quantity","l":"Mass"},{"p":"javax.measure","l":"MeasurementError"},{"p":"javax.measure","l":"MeasurementException"},{"p":"javax.measure.format","l":"MeasurementParseException"},{"p":"javax.measure","l":"MetricPrefix"},{"p":"javax.measure.quantity","l":"Power"},{"p":"javax.measure","l":"Prefix"},{"p":"javax.measure.quantity","l":"Pressure"},{"p":"javax.measure","l":"Quantity"},{"p":"javax.measure.spi","l":"QuantityFactory"},{"p":"javax.measure.format","l":"QuantityFormat"},{"p":"javax.measure.quantity","l":"RadiationDoseAbsorbed"},{"p":"javax.measure.quantity","l":"RadiationDoseEffective"},{"p":"javax.measure.quantity","l":"Radioactivity"},{"p":"javax.measure","l":"Quantity.Scale"},{"p":"javax.measure.spi","l":"ServiceProvider"},{"p":"javax.measure.quantity","l":"SolidAngle"},{"p":"javax.measure.quantity","l":"Speed"},{"p":"javax.measure.spi","l":"SystemOfUnits"},{"p":"javax.measure.spi","l":"SystemOfUnitsService"},{"p":"javax.measure.quantity","l":"Temperature"},{"p":"javax.measure.quantity","l":"Time"},{"p":"javax.measure","l":"UnconvertibleException"},{"p":"javax.measure","l":"Unit"},{"p":"javax.measure","l":"UnitConverter"},{"p":"javax.measure.format","l":"UnitFormat"},{"p":"javax.measure.quantity","l":"Volume"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/site/apidocs/type-search-index.zip b/docs/site/apidocs/type-search-index.zip new file mode 100644 index 00000000..26471fe0 Binary files /dev/null and b/docs/site/apidocs/type-search-index.zip differ diff --git a/docs/site/ci-management.html b/docs/site/ci-management.html new file mode 100644 index 00000000..cef5a5fa --- /dev/null +++ b/docs/site/ci-management.html @@ -0,0 +1,83 @@ + + + + + + + + Units of Measurement API – CI Management + + + + + + + + +
    + +
    +
    +
    +
    +

    Overview

    +

    This project uses Continuous Integration System.

    +

    Access

    +

    The following is a link to the continuous integration system used by the project:

    +
    +

    Notifiers

    +

    No notifiers are defined. Please check back at a later date.

    +
    +
    +
    +
    +
    + + + diff --git a/docs/site/cpd.html b/docs/site/cpd.html new file mode 100644 index 00000000..af926854 --- /dev/null +++ b/docs/site/cpd.html @@ -0,0 +1,77 @@ + + + + + + + + Units of Measurement API – CPD Results + + + + + + + + +
    + +
    +
    +
    +
    +

    CPD Results

    +

    The following document contains the results of PMD's CPD 6.21.0.

    +

    Duplications

    +

    CPD found no problems in your source code.

    +
    +
    +
    +
    +
    + + + diff --git a/docs/site/css/maven-base.css b/docs/site/css/maven-base.css new file mode 100644 index 00000000..45dc441c --- /dev/null +++ b/docs/site/css/maven-base.css @@ -0,0 +1,168 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +body { + margin: 0px; + padding: 0px; +} +table { + padding:0px; + width: 100%; + margin-left: -2px; + margin-right: -2px; +} +acronym { + cursor: help; + border-bottom: 1px dotted #feb; +} +table.bodyTable th, table.bodyTable td { + padding: 2px 4px 2px 4px; + vertical-align: top; +} +div.clear { + clear:both; + visibility: hidden; +} +div.clear hr { + display: none; +} +#bannerLeft, #bannerRight { + font-size: xx-large; + font-weight: bold; +} +#bannerLeft img, #bannerRight img { + margin: 0px; +} +.xleft, #bannerLeft img { + float:left; +} +.xright, #bannerRight { + float:right; +} +#banner { + padding: 0px; +} +#breadcrumbs { + padding: 3px 10px 3px 10px; +} +#leftColumn { + width: 170px; + float:left; + overflow: auto; +} +#bodyColumn { + margin-right: 1.5em; + margin-left: 197px; +} +#legend { + padding: 8px 0 8px 0; +} +#navcolumn { + padding: 8px 4px 0 8px; +} +#navcolumn h5 { + margin: 0; + padding: 0; + font-size: small; +} +#navcolumn ul { + margin: 0; + padding: 0; + font-size: small; +} +#navcolumn li { + list-style-type: none; + background-image: none; + background-repeat: no-repeat; + background-position: 0 0.4em; + padding-left: 16px; + list-style-position: outside; + line-height: 1.2em; + font-size: smaller; +} +#navcolumn li.expanded { + background-image: url(../images/expanded.gif); +} +#navcolumn li.collapsed { + background-image: url(../images/collapsed.gif); +} +#navcolumn li.none { + text-indent: -1em; + margin-left: 1em; +} +#poweredBy { + text-align: center; +} +#navcolumn img { + margin-top: 10px; + margin-bottom: 3px; +} +#poweredBy img { + display:block; + margin: 20px 0 20px 17px; +} +#search img { + margin: 0px; + display: block; +} +#search #q, #search #btnG { + border: 1px solid #999; + margin-bottom:10px; +} +#search form { + margin: 0px; +} +#lastPublished { + font-size: x-small; +} +.navSection { + margin-bottom: 2px; + padding: 8px; +} +.navSectionHead { + font-weight: bold; + font-size: x-small; +} +.section { + padding: 4px; +} +#footer { + padding: 3px 10px 3px 10px; + font-size: x-small; +} +#breadcrumbs { + font-size: x-small; + margin: 0pt; +} +.source { + padding: 12px; + margin: 1em 7px 1em 7px; +} +.source pre { + margin: 0px; + padding: 0px; +} +#navcolumn img.imageLink, .imageLink { + padding-left: 0px; + padding-bottom: 0px; + padding-top: 0px; + padding-right: 2px; + border: 0px; + margin: 0px; +} diff --git a/docs/site/css/maven-theme.css b/docs/site/css/maven-theme.css new file mode 100644 index 00000000..4e2bdfbe --- /dev/null +++ b/docs/site/css/maven-theme.css @@ -0,0 +1,161 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +body { + padding: 0px 0px 10px 0px; +} +body, td, select, input, li{ + font-family: Verdana, Helvetica, Arial, sans-serif; + font-size: 13px; +} +code{ + font-family: Courier, monospace; + font-size: 13px; +} +a { + text-decoration: none; +} +a:link { + color:#36a; +} +a:visited { + color:#47a; +} +a:active, a:hover { + color:#69c; +} +#legend li.externalLink { + background: url(../images/external.png) left top no-repeat; + padding-left: 18px; +} +a.externalLink, a.externalLink:link, a.externalLink:visited, a.externalLink:active, a.externalLink:hover { + background: url(../images/external.png) right center no-repeat; + padding-right: 18px; +} +#legend li.newWindow { + background: url(../images/newwindow.png) left top no-repeat; + padding-left: 18px; +} +a.newWindow, a.newWindow:link, a.newWindow:visited, a.newWindow:active, a.newWindow:hover { + background: url(../images/newwindow.png) right center no-repeat; + padding-right: 18px; +} +h2 { + padding: 4px 4px 4px 6px; + border: 1px solid #999; + color: #900; + background-color: #ddd; + font-weight:900; + font-size: x-large; +} +h3 { + padding: 4px 4px 4px 6px; + border: 1px solid #aaa; + color: #900; + background-color: #eee; + font-weight: normal; + font-size: large; +} +h4 { + padding: 4px 4px 4px 6px; + border: 1px solid #bbb; + color: #900; + background-color: #fff; + font-weight: normal; + font-size: large; +} +h5 { + padding: 4px 4px 4px 6px; + color: #900; + font-size: medium; +} +p { + line-height: 1.3em; + font-size: small; +} +#breadcrumbs { + border-top: 1px solid #aaa; + border-bottom: 1px solid #aaa; + background-color: #ccc; +} +#leftColumn { + margin: 10px 0 0 5px; + border: 1px solid #999; + background-color: #eee; + padding-bottom: 3px; /* IE-9 scrollbar-fix */ +} +#navcolumn h5 { + font-size: smaller; + border-bottom: 1px solid #aaaaaa; + padding-top: 2px; + color: #000; +} + +table.bodyTable th { + color: white; + background-color: #bbb; + text-align: left; + font-weight: bold; +} + +table.bodyTable th, table.bodyTable td { + font-size: 1em; +} + +table.bodyTable tr.a { + background-color: #ddd; +} + +table.bodyTable tr.b { + background-color: #eee; +} + +.source { + border: 1px solid #999; +} +dl { + padding: 4px 4px 4px 6px; + border: 1px solid #aaa; + background-color: #ffc; +} +dt { + color: #900; +} +#organizationLogo img, #projectLogo img, #projectLogo span{ + margin: 8px; +} +#banner { + border-bottom: 1px solid #fff; +} +.errormark, .warningmark, .donemark, .infomark { + background: url(../images/icon_error_sml.gif) no-repeat; +} + +.warningmark { + background-image: url(../images/icon_warning_sml.gif); +} + +.donemark { + background-image: url(../images/icon_success_sml.gif); +} + +.infomark { + background-image: url(../images/icon_info_sml.gif); +} + diff --git a/docs/site/css/print.css b/docs/site/css/print.css new file mode 100644 index 00000000..18fcbad7 --- /dev/null +++ b/docs/site/css/print.css @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +#banner, #footer, #leftcol, #breadcrumbs, .docs #toc, .docs .courtesylinks, #leftColumn, #navColumn { + display: none !important; +} +#bodyColumn, body.docs div.docs { + margin: 0 !important; + border: none !important +} diff --git a/docs/site/css/site.css b/docs/site/css/site.css new file mode 100644 index 00000000..055e7e28 --- /dev/null +++ b/docs/site/css/site.css @@ -0,0 +1 @@ +/* You can override this file with your own styles */ \ No newline at end of file diff --git a/docs/site/images/AbstractSystemOfUnits.PNG b/docs/site/images/AbstractSystemOfUnits.PNG new file mode 100644 index 00000000..49379b7f Binary files /dev/null and b/docs/site/images/AbstractSystemOfUnits.PNG differ diff --git a/docs/site/images/Dimension.PNG b/docs/site/images/Dimension.PNG new file mode 100644 index 00000000..3a9cae5e Binary files /dev/null and b/docs/site/images/Dimension.PNG differ diff --git a/docs/site/images/Measurement.PNG b/docs/site/images/Measurement.PNG new file mode 100644 index 00000000..cda3edeb Binary files /dev/null and b/docs/site/images/Measurement.PNG differ diff --git a/docs/site/images/Prefix.PNG b/docs/site/images/Prefix.PNG new file mode 100644 index 00000000..5ffb3b3e Binary files /dev/null and b/docs/site/images/Prefix.PNG differ diff --git a/docs/site/images/Quantity.PNG b/docs/site/images/Quantity.PNG new file mode 100644 index 00000000..5bd03d22 Binary files /dev/null and b/docs/site/images/Quantity.PNG differ diff --git a/docs/site/images/QuantityFactory.PNG b/docs/site/images/QuantityFactory.PNG new file mode 100644 index 00000000..1e1e460e Binary files /dev/null and b/docs/site/images/QuantityFactory.PNG differ diff --git a/docs/site/images/QuantityFormat.PNG b/docs/site/images/QuantityFormat.PNG new file mode 100644 index 00000000..e41a53c7 Binary files /dev/null and b/docs/site/images/QuantityFormat.PNG differ diff --git a/docs/site/images/Range.PNG b/docs/site/images/Range.PNG new file mode 100644 index 00000000..e33e9c47 Binary files /dev/null and b/docs/site/images/Range.PNG differ diff --git a/docs/site/images/SystemOfUnits.PNG b/docs/site/images/SystemOfUnits.PNG new file mode 100644 index 00000000..fb66b9bd Binary files /dev/null and b/docs/site/images/SystemOfUnits.PNG differ diff --git a/docs/site/images/Unit.PNG b/docs/site/images/Unit.PNG new file mode 100644 index 00000000..6a1652c2 Binary files /dev/null and b/docs/site/images/Unit.PNG differ diff --git a/docs/site/images/UnitFormat.PNG b/docs/site/images/UnitFormat.PNG new file mode 100644 index 00000000..91abd810 Binary files /dev/null and b/docs/site/images/UnitFormat.PNG differ diff --git a/docs/site/images/collapsed.gif b/docs/site/images/collapsed.gif new file mode 100644 index 00000000..6e710840 Binary files /dev/null and b/docs/site/images/collapsed.gif differ diff --git a/docs/site/images/duke.png b/docs/site/images/duke.png new file mode 100644 index 00000000..c77070d4 Binary files /dev/null and b/docs/site/images/duke.png differ diff --git a/docs/site/images/expanded.gif b/docs/site/images/expanded.gif new file mode 100644 index 00000000..0fef3d89 Binary files /dev/null and b/docs/site/images/expanded.gif differ diff --git a/docs/site/images/external.png b/docs/site/images/external.png new file mode 100644 index 00000000..3f999fc8 Binary files /dev/null and b/docs/site/images/external.png differ diff --git a/docs/site/images/icon.png b/docs/site/images/icon.png new file mode 100644 index 00000000..9e0a16dd Binary files /dev/null and b/docs/site/images/icon.png differ diff --git a/docs/site/images/icon_error_sml.gif b/docs/site/images/icon_error_sml.gif new file mode 100644 index 00000000..61132ef2 Binary files /dev/null and b/docs/site/images/icon_error_sml.gif differ diff --git a/docs/site/images/icon_info_sml.gif b/docs/site/images/icon_info_sml.gif new file mode 100644 index 00000000..c6cb9ad7 Binary files /dev/null and b/docs/site/images/icon_info_sml.gif differ diff --git a/docs/site/images/icon_success_sml.gif b/docs/site/images/icon_success_sml.gif new file mode 100644 index 00000000..52e85a43 Binary files /dev/null and b/docs/site/images/icon_success_sml.gif differ diff --git a/docs/site/images/icon_warning_sml.gif b/docs/site/images/icon_warning_sml.gif new file mode 100644 index 00000000..873bbb52 Binary files /dev/null and b/docs/site/images/icon_warning_sml.gif differ diff --git a/docs/site/images/logos/build-by-maven-black.png b/docs/site/images/logos/build-by-maven-black.png new file mode 100644 index 00000000..919fd0f6 Binary files /dev/null and b/docs/site/images/logos/build-by-maven-black.png differ diff --git a/docs/site/images/logos/build-by-maven-white.png b/docs/site/images/logos/build-by-maven-white.png new file mode 100644 index 00000000..7d44c9c2 Binary files /dev/null and b/docs/site/images/logos/build-by-maven-white.png differ diff --git a/docs/site/images/logos/maven-feather.png b/docs/site/images/logos/maven-feather.png new file mode 100644 index 00000000..b5ada836 Binary files /dev/null and b/docs/site/images/logos/maven-feather.png differ diff --git a/docs/site/images/newwindow.png b/docs/site/images/newwindow.png new file mode 100644 index 00000000..6287f72b Binary files /dev/null and b/docs/site/images/newwindow.png differ diff --git a/docs/site/index.html b/docs/site/index.html new file mode 100644 index 00000000..a489d847 --- /dev/null +++ b/docs/site/index.html @@ -0,0 +1,89 @@ + + + + + + + + + + Units of Measurement API – Unit API home page + + + + + + + + + +
    +
    +
    +

    The Units of Measurement API for Java

    +

    Units of Measurement Standard - This JSR specifies Java packages for modeling and working with measurement values, quantities and their corresponding units.

    +

    Copyright 2014-2023 Jean-Marie Dautelle, Werner Keil, Otavio Santana All rights reserved.

    +

    See licenses for details.

    +

    The project

    +

    The project is hosted on GitHub. It runs a public mailing list for user and developer questions, other issues, and general discussion.

    +

    Links

    +
    +
    +
    +
    +
    +
    + + + diff --git a/docs/site/issue-management.html b/docs/site/issue-management.html new file mode 100644 index 00000000..b964a7fe --- /dev/null +++ b/docs/site/issue-management.html @@ -0,0 +1,81 @@ + + + + + + + + Units of Measurement API – Issue Management + + + + + + + + +
    + +
    +
    +
    +
    +

    Overview

    +

    This project uses GitHub to manage its issues.

    +

    Issue Management

    +

    Issues, bugs, and feature requests should be submitted to the following issue management system for this project.

    +
    +
    +
    +
    +
    +
    + + + diff --git a/docs/site/jacoco/index.html b/docs/site/jacoco/index.html new file mode 100644 index 00000000..797d016f --- /dev/null +++ b/docs/site/jacoco/index.html @@ -0,0 +1 @@ +Units of Measurement API

    Units of Measurement API

    No class files specified.

    \ No newline at end of file diff --git a/docs/site/jacoco/jacoco-resources/branchfc.gif b/docs/site/jacoco/jacoco-resources/branchfc.gif new file mode 100644 index 00000000..989b46d3 Binary files /dev/null and b/docs/site/jacoco/jacoco-resources/branchfc.gif differ diff --git a/docs/site/jacoco/jacoco-resources/branchnc.gif b/docs/site/jacoco/jacoco-resources/branchnc.gif new file mode 100644 index 00000000..1933e07c Binary files /dev/null and b/docs/site/jacoco/jacoco-resources/branchnc.gif differ diff --git a/docs/site/jacoco/jacoco-resources/branchpc.gif b/docs/site/jacoco/jacoco-resources/branchpc.gif new file mode 100644 index 00000000..cbf711b7 Binary files /dev/null and b/docs/site/jacoco/jacoco-resources/branchpc.gif differ diff --git a/docs/site/jacoco/jacoco-resources/bundle.gif b/docs/site/jacoco/jacoco-resources/bundle.gif new file mode 100644 index 00000000..fca9c53e Binary files /dev/null and b/docs/site/jacoco/jacoco-resources/bundle.gif differ diff --git a/docs/site/jacoco/jacoco-resources/class.gif b/docs/site/jacoco/jacoco-resources/class.gif new file mode 100644 index 00000000..eb348fb0 Binary files /dev/null and b/docs/site/jacoco/jacoco-resources/class.gif differ diff --git a/docs/site/jacoco/jacoco-resources/down.gif b/docs/site/jacoco/jacoco-resources/down.gif new file mode 100644 index 00000000..440a14db Binary files /dev/null and b/docs/site/jacoco/jacoco-resources/down.gif differ diff --git a/docs/site/jacoco/jacoco-resources/greenbar.gif b/docs/site/jacoco/jacoco-resources/greenbar.gif new file mode 100644 index 00000000..0ba65672 Binary files /dev/null and b/docs/site/jacoco/jacoco-resources/greenbar.gif differ diff --git a/docs/site/jacoco/jacoco-resources/group.gif b/docs/site/jacoco/jacoco-resources/group.gif new file mode 100644 index 00000000..a4ea580d Binary files /dev/null and b/docs/site/jacoco/jacoco-resources/group.gif differ diff --git a/docs/site/jacoco/jacoco-resources/method.gif b/docs/site/jacoco/jacoco-resources/method.gif new file mode 100644 index 00000000..7d24707e Binary files /dev/null and b/docs/site/jacoco/jacoco-resources/method.gif differ diff --git a/docs/site/jacoco/jacoco-resources/package.gif b/docs/site/jacoco/jacoco-resources/package.gif new file mode 100644 index 00000000..131c28da Binary files /dev/null and b/docs/site/jacoco/jacoco-resources/package.gif differ diff --git a/docs/site/jacoco/jacoco-resources/prettify.css b/docs/site/jacoco/jacoco-resources/prettify.css new file mode 100644 index 00000000..be5166e0 --- /dev/null +++ b/docs/site/jacoco/jacoco-resources/prettify.css @@ -0,0 +1,13 @@ +/* Pretty printing styles. Used with prettify.js. */ + +.str { color: #2A00FF; } +.kwd { color: #7F0055; font-weight:bold; } +.com { color: #3F5FBF; } +.typ { color: #606; } +.lit { color: #066; } +.pun { color: #660; } +.pln { color: #000; } +.tag { color: #008; } +.atn { color: #606; } +.atv { color: #080; } +.dec { color: #606; } diff --git a/docs/site/jacoco/jacoco-resources/prettify.js b/docs/site/jacoco/jacoco-resources/prettify.js new file mode 100644 index 00000000..b2766fe0 --- /dev/null +++ b/docs/site/jacoco/jacoco-resources/prettify.js @@ -0,0 +1,1510 @@ +// Copyright (C) 2006 Google Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +/** + * @fileoverview + * some functions for browser-side pretty printing of code contained in html. + *

    + * + * For a fairly comprehensive set of languages see the + * README + * file that came with this source. At a minimum, the lexer should work on a + * number of languages including C and friends, Java, Python, Bash, SQL, HTML, + * XML, CSS, Javascript, and Makefiles. It works passably on Ruby, PHP and Awk + * and a subset of Perl, but, because of commenting conventions, doesn't work on + * Smalltalk, Lisp-like, or CAML-like languages without an explicit lang class. + *

    + * Usage:

      + *
    1. include this source file in an html page via + * {@code } + *
    2. define style rules. See the example page for examples. + *
    3. mark the {@code
      } and {@code } tags in your source with
      + *    {@code class=prettyprint.}
      + *    You can also use the (html deprecated) {@code } tag, but the pretty
      + *    printer needs to do more substantial DOM manipulations to support that, so
      + *    some css styles may not be preserved.
      + * </ol>
      + * That's it.  I wanted to keep the API as simple as possible, so there's no
      + * need to specify which language the code is in, but if you wish, you can add
      + * another class to the {@code <pre>} or {@code <code>} element to specify the
      + * language, as in {@code <pre class="prettyprint lang-java">}.  Any class that
      + * starts with "lang-" followed by a file extension, specifies the file type.
      + * See the "lang-*.js" files in this directory for code that implements
      + * per-language file handlers.
      + * <p>
      + * Change log:<br>
      + * cbeust, 2006/08/22
      + * <blockquote>
      + *   Java annotations (start with "@") are now captured as literals ("lit")
      + * </blockquote>
      + * @requires console
      + */
      +
      +// JSLint declarations
      +/*global console, document, navigator, setTimeout, window */
      +
      +/**
      + * Split {@code prettyPrint} into multiple timeouts so as not to interfere with
      + * UI events.
      + * If set to {@code false}, {@code prettyPrint()} is synchronous.
      + */
      +window['PR_SHOULD_USE_CONTINUATION'] = true;
      +
      +/** the number of characters between tab columns */
      +window['PR_TAB_WIDTH'] = 8;
      +
      +/** Walks the DOM returning a properly escaped version of innerHTML.
      +  * @param {Node} node
      +  * @param {Array.<string>} out output buffer that receives chunks of HTML.
      +  */
      +window['PR_normalizedHtml']
      +
      +/** Contains functions for creating and registering new language handlers.
      +  * @type {Object}
      +  */
      +  = window['PR']
      +
      +/** Pretty print a chunk of code.
      +  *
      +  * @param {string} sourceCodeHtml code as html
      +  * @return {string} code as html, but prettier
      +  */
      +  = window['prettyPrintOne']
      +/** Find all the {@code <pre>} and {@code <code>} tags in the DOM with
      +  * {@code class=prettyprint} and prettify them.
      +  * @param {Function?} opt_whenDone if specified, called when the last entry
      +  *     has been finished.
      +  */
      +  = window['prettyPrint'] = void 0;
      +
      +/** browser detection. @extern @returns false if not IE, otherwise the major version. */
      +window['_pr_isIE6'] = function () {
      +  var ieVersion = navigator && navigator.userAgent &&
      +      navigator.userAgent.match(/\bMSIE ([678])\./);
      +  ieVersion = ieVersion ? +ieVersion[1] : false;
      +  window['_pr_isIE6'] = function () { return ieVersion; };
      +  return ieVersion;
      +};
      +
      +
      +(function () {
      +  // Keyword lists for various languages.
      +  var FLOW_CONTROL_KEYWORDS =
      +      "break continue do else for if return while ";
      +  var C_KEYWORDS = FLOW_CONTROL_KEYWORDS + "auto case char const default " +
      +      "double enum extern float goto int long register short signed sizeof " +
      +      "static struct switch typedef union unsigned void volatile ";
      +  var COMMON_KEYWORDS = C_KEYWORDS + "catch class delete false import " +
      +      "new operator private protected public this throw true try typeof ";
      +  var CPP_KEYWORDS = COMMON_KEYWORDS + "alignof align_union asm axiom bool " +
      +      "concept concept_map const_cast constexpr decltype " +
      +      "dynamic_cast explicit export friend inline late_check " +
      +      "mutable namespace nullptr reinterpret_cast static_assert static_cast " +
      +      "template typeid typename using virtual wchar_t where ";
      +  var JAVA_KEYWORDS = COMMON_KEYWORDS +
      +      "abstract boolean byte extends final finally implements import " +
      +      "instanceof null native package strictfp super synchronized throws " +
      +      "transient ";
      +  var CSHARP_KEYWORDS = JAVA_KEYWORDS +
      +      "as base by checked decimal delegate descending event " +
      +      "fixed foreach from group implicit in interface internal into is lock " +
      +      "object out override orderby params partial readonly ref sbyte sealed " +
      +      "stackalloc string select uint ulong unchecked unsafe ushort var ";
      +  var JSCRIPT_KEYWORDS = COMMON_KEYWORDS +
      +      "debugger eval export function get null set undefined var with " +
      +      "Infinity NaN ";
      +  var PERL_KEYWORDS = "caller delete die do dump elsif eval exit foreach for " +
      +      "goto if import last local my next no our print package redo require " +
      +      "sub undef unless until use wantarray while BEGIN END ";
      +  var PYTHON_KEYWORDS = FLOW_CONTROL_KEYWORDS + "and as assert class def del " +
      +      "elif except exec finally from global import in is lambda " +
      +      "nonlocal not or pass print raise try with yield " +
      +      "False True None ";
      +  var RUBY_KEYWORDS = FLOW_CONTROL_KEYWORDS + "alias and begin case class def" +
      +      " defined elsif end ensure false in module next nil not or redo rescue " +
      +      "retry self super then true undef unless until when yield BEGIN END ";
      +  var SH_KEYWORDS = FLOW_CONTROL_KEYWORDS + "case done elif esac eval fi " +
      +      "function in local set then until ";
      +  var ALL_KEYWORDS = (
      +      CPP_KEYWORDS + CSHARP_KEYWORDS + JSCRIPT_KEYWORDS + PERL_KEYWORDS +
      +      PYTHON_KEYWORDS + RUBY_KEYWORDS + SH_KEYWORDS);
      +
      +  // token style names.  correspond to css classes
      +  /** token style for a string literal */
      +  var PR_STRING = 'str';
      +  /** token style for a keyword */
      +  var PR_KEYWORD = 'kwd';
      +  /** token style for a comment */
      +  var PR_COMMENT = 'com';
      +  /** token style for a type */
      +  var PR_TYPE = 'typ';
      +  /** token style for a literal value.  e.g. 1, null, true. */
      +  var PR_LITERAL = 'lit';
      +  /** token style for a punctuation string. */
      +  var PR_PUNCTUATION = 'pun';
      +  /** token style for a punctuation string. */
      +  var PR_PLAIN = 'pln';
      +
      +  /** token style for an sgml tag. */
      +  var PR_TAG = 'tag';
      +  /** token style for a markup declaration such as a DOCTYPE. */
      +  var PR_DECLARATION = 'dec';
      +  /** token style for embedded source. */
      +  var PR_SOURCE = 'src';
      +  /** token style for an sgml attribute name. */
      +  var PR_ATTRIB_NAME = 'atn';
      +  /** token style for an sgml attribute value. */
      +  var PR_ATTRIB_VALUE = 'atv';
      +
      +  /**
      +   * A class that indicates a section of markup that is not code, e.g. to allow
      +   * embedding of line numbers within code listings.
      +   */
      +  var PR_NOCODE = 'nocode';
      +
      +  /** A set of tokens that can precede a regular expression literal in
      +    * javascript.
      +    * http://www.mozilla.org/js/language/js20/rationale/syntax.html has the full
      +    * list, but I've removed ones that might be problematic when seen in
      +    * languages that don't support regular expression literals.
      +    *
      +    * <p>Specifically, I've removed any keywords that can't precede a regexp
      +    * literal in a syntactically legal javascript program, and I've removed the
      +    * "in" keyword since it's not a keyword in many languages, and might be used
      +    * as a count of inches.
      +    *
      +    * <p>The link a above does not accurately describe EcmaScript rules since
      +    * it fails to distinguish between (a=++/b/i) and (a++/b/i) but it works
      +    * very well in practice.
      +    *
      +    * @private
      +    */
      +  var REGEXP_PRECEDER_PATTERN = function () {
      +      var preceders = [
      +          "!", "!=", "!==", "#", "%", "%=", "&", "&&", "&&=",
      +          "&=", "(", "*", "*=", /* "+", */ "+=", ",", /* "-", */ "-=",
      +          "->", /*".", "..", "...", handled below */ "/", "/=", ":", "::", ";",
      +          "<", "<<", "<<=", "<=", "=", "==", "===", ">",
      +          ">=", ">>", ">>=", ">>>", ">>>=", "?", "@", "[",
      +          "^", "^=", "^^", "^^=", "{", "|", "|=", "||",
      +          "||=", "~" /* handles =~ and !~ */,
      +          "break", "case", "continue", "delete",
      +          "do", "else", "finally", "instanceof",
      +          "return", "throw", "try", "typeof"
      +          ];
      +      var pattern = '(?:^^|[+-]';
      +      for (var i = 0; i < preceders.length; ++i) {
      +        pattern += '|' + preceders[i].replace(/([^=<>:&a-z])/g, '\\$1');
      +      }
      +      pattern += ')\\s*';  // matches at end, and matches empty string
      +      return pattern;
      +      // CAVEAT: this does not properly handle the case where a regular
      +      // expression immediately follows another since a regular expression may
      +      // have flags for case-sensitivity and the like.  Having regexp tokens
      +      // adjacent is not valid in any language I'm aware of, so I'm punting.
      +      // TODO: maybe style special characters inside a regexp as punctuation.
      +    }();
      +
      +  // Define regexps here so that the interpreter doesn't have to create an
      +  // object each time the function containing them is called.
      +  // The language spec requires a new object created even if you don't access
      +  // the $1 members.
      +  var pr_amp = /&/g;
      +  var pr_lt = /</g;
      +  var pr_gt = />/g;
      +  var pr_quot = /\"/g;
      +  /** like textToHtml but escapes double quotes to be attribute safe. */
      +  function attribToHtml(str) {
      +    return str.replace(pr_amp, '&amp;')
      +        .replace(pr_lt, '&lt;')
      +        .replace(pr_gt, '&gt;')
      +        .replace(pr_quot, '&quot;');
      +  }
      +
      +  /** escapest html special characters to html. */
      +  function textToHtml(str) {
      +    return str.replace(pr_amp, '&amp;')
      +        .replace(pr_lt, '&lt;')
      +        .replace(pr_gt, '&gt;');
      +  }
      +
      +
      +  var pr_ltEnt = /&lt;/g;
      +  var pr_gtEnt = /&gt;/g;
      +  var pr_aposEnt = /&apos;/g;
      +  var pr_quotEnt = /&quot;/g;
      +  var pr_ampEnt = /&amp;/g;
      +  var pr_nbspEnt = /&nbsp;/g;
      +  /** unescapes html to plain text. */
      +  function htmlToText(html) {
      +    var pos = html.indexOf('&');
      +    if (pos < 0) { return html; }
      +    // Handle numeric entities specially.  We can't use functional substitution
      +    // since that doesn't work in older versions of Safari.
      +    // These should be rare since most browsers convert them to normal chars.
      +    for (--pos; (pos = html.indexOf('&#', pos + 1)) >= 0;) {
      +      var end = html.indexOf(';', pos);
      +      if (end >= 0) {
      +        var num = html.substring(pos + 3, end);
      +        var radix = 10;
      +        if (num && num.charAt(0) === 'x') {
      +          num = num.substring(1);
      +          radix = 16;
      +        }
      +        var codePoint = parseInt(num, radix);
      +        if (!isNaN(codePoint)) {
      +          html = (html.substring(0, pos) + String.fromCharCode(codePoint) +
      +                  html.substring(end + 1));
      +        }
      +      }
      +    }
      +
      +    return html.replace(pr_ltEnt, '<')
      +        .replace(pr_gtEnt, '>')
      +        .replace(pr_aposEnt, "'")
      +        .replace(pr_quotEnt, '"')
      +        .replace(pr_nbspEnt, ' ')
      +        .replace(pr_ampEnt, '&');
      +  }
      +
      +  /** is the given node's innerHTML normally unescaped? */
      +  function isRawContent(node) {
      +    return 'XMP' === node.tagName;
      +  }
      +
      +  var newlineRe = /[\r\n]/g;
      +  /**
      +   * Are newlines and adjacent spaces significant in the given node's innerHTML?
      +   */
      +  function isPreformatted(node, content) {
      +    // PRE means preformatted, and is a very common case, so don't create
      +    // unnecessary computed style objects.
      +    if ('PRE' === node.tagName) { return true; }
      +    if (!newlineRe.test(content)) { return true; }  // Don't care
      +    var whitespace = '';
      +    // For disconnected nodes, IE has no currentStyle.
      +    if (node.currentStyle) {
      +      whitespace = node.currentStyle.whiteSpace;
      +    } else if (window.getComputedStyle) {
      +      // Firefox makes a best guess if node is disconnected whereas Safari
      +      // returns the empty string.
      +      whitespace = window.getComputedStyle(node, null).whiteSpace;
      +    }
      +    return !whitespace || whitespace === 'pre';
      +  }
      +
      +  function normalizedHtml(node, out, opt_sortAttrs) {
      +    switch (node.nodeType) {
      +      case 1:  // an element
      +        var name = node.tagName.toLowerCase();
      +
      +        out.push('<', name);
      +        var attrs = node.attributes;
      +        var n = attrs.length;
      +        if (n) {
      +          if (opt_sortAttrs) {
      +            var sortedAttrs = [];
      +            for (var i = n; --i >= 0;) { sortedAttrs[i] = attrs[i]; }
      +            sortedAttrs.sort(function (a, b) {
      +                return (a.name < b.name) ? -1 : a.name === b.name ? 0 : 1;
      +              });
      +            attrs = sortedAttrs;
      +          }
      +          for (var i = 0; i < n; ++i) {
      +            var attr = attrs[i];
      +            if (!attr.specified) { continue; }
      +            out.push(' ', attr.name.toLowerCase(),
      +                     '="', attribToHtml(attr.value), '"');
      +          }
      +        }
      +        out.push('>');
      +        for (var child = node.firstChild; child; child = child.nextSibling) {
      +          normalizedHtml(child, out, opt_sortAttrs);
      +        }
      +        if (node.firstChild || !/^(?:br|link|img)$/.test(name)) {
      +          out.push('<\/', name, '>');
      +        }
      +        break;
      +      case 3: case 4: // text
      +        out.push(textToHtml(node.nodeValue));
      +        break;
      +    }
      +  }
      +
      +  /**
      +   * Given a group of {@link RegExp}s, returns a {@code RegExp} that globally
      +   * matches the union o the sets o strings matched d by the input RegExp.
      +   * Since it matches globally, if the input strings have a start-of-input
      +   * anchor (/^.../), it is ignored for the purposes of unioning.
      +   * @param {Array.<RegExp>} regexs non multiline, non-global regexs.
      +   * @return {RegExp} a global regex.
      +   */
      +  function combinePrefixPatterns(regexs) {
      +    var capturedGroupIndex = 0;
      +
      +    var needToFoldCase = false;
      +    var ignoreCase = false;
      +    for (var i = 0, n = regexs.length; i < n; ++i) {
      +      var regex = regexs[i];
      +      if (regex.ignoreCase) {
      +        ignoreCase = true;
      +      } else if (/[a-z]/i.test(regex.source.replace(
      +                     /\\u[0-9a-f]{4}|\\x[0-9a-f]{2}|\\[^ux]/gi, ''))) {
      +        needToFoldCase = true;
      +        ignoreCase = false;
      +        break;
      +      }
      +    }
      +
      +    function decodeEscape(charsetPart) {
      +      if (charsetPart.charAt(0) !== '\\') { return charsetPart.charCodeAt(0); }
      +      switch (charsetPart.charAt(1)) {
      +        case 'b': return 8;
      +        case 't': return 9;
      +        case 'n': return 0xa;
      +        case 'v': return 0xb;
      +        case 'f': return 0xc;
      +        case 'r': return 0xd;
      +        case 'u': case 'x':
      +          return parseInt(charsetPart.substring(2), 16)
      +              || charsetPart.charCodeAt(1);
      +        case '0': case '1': case '2': case '3': case '4':
      +        case '5': case '6': case '7':
      +          return parseInt(charsetPart.substring(1), 8);
      +        default: return charsetPart.charCodeAt(1);
      +      }
      +    }
      +
      +    function encodeEscape(charCode) {
      +      if (charCode < 0x20) {
      +        return (charCode < 0x10 ? '\\x0' : '\\x') + charCode.toString(16);
      +      }
      +      var ch = String.fromCharCode(charCode);
      +      if (ch === '\\' || ch === '-' || ch === '[' || ch === ']') {
      +        ch = '\\' + ch;
      +      }
      +      return ch;
      +    }
      +
      +    function caseFoldCharset(charSet) {
      +      var charsetParts = charSet.substring(1, charSet.length - 1).match(
      +          new RegExp(
      +              '\\\\u[0-9A-Fa-f]{4}'
      +              + '|\\\\x[0-9A-Fa-f]{2}'
      +              + '|\\\\[0-3][0-7]{0,2}'
      +              + '|\\\\[0-7]{1,2}'
      +              + '|\\\\[\\s\\S]'
      +              + '|-'
      +              + '|[^-\\\\]',
      +              'g'));
      +      var groups = [];
      +      var ranges = [];
      +      var inverse = charsetParts[0] === '^';
      +      for (var i = inverse ? 1 : 0, n = charsetParts.length; i < n; ++i) {
      +        var p = charsetParts[i];
      +        switch (p) {
      +          case '\\B': case '\\b':
      +          case '\\D': case '\\d':
      +          case '\\S': case '\\s':
      +          case '\\W': case '\\w':
      +            groups.push(p);
      +            continue;
      +        }
      +        var start = decodeEscape(p);
      +        var end;
      +        if (i + 2 < n && '-' === charsetParts[i + 1]) {
      +          end = decodeEscape(charsetParts[i + 2]);
      +          i += 2;
      +        } else {
      +          end = start;
      +        }
      +        ranges.push([start, end]);
      +        // If the range might intersect letters, then expand it.
      +        if (!(end < 65 || start > 122)) {
      +          if (!(end < 65 || start > 90)) {
      +            ranges.push([Math.max(65, start) | 32, Math.min(end, 90) | 32]);
      +          }
      +          if (!(end < 97 || start > 122)) {
      +            ranges.push([Math.max(97, start) & ~32, Math.min(end, 122) & ~32]);
      +          }
      +        }
      +      }
      +
      +      // [[1, 10], [3, 4], [8, 12], [14, 14], [16, 16], [17, 17]]
      +      // -> [[1, 12], [14, 14], [16, 17]]
      +      ranges.sort(function (a, b) { return (a[0] - b[0]) || (b[1]  - a[1]); });
      +      var consolidatedRanges = [];
      +      var lastRange = [NaN, NaN];
      +      for (var i = 0; i < ranges.length; ++i) {
      +        var range = ranges[i];
      +        if (range[0] <= lastRange[1] + 1) {
      +          lastRange[1] = Math.max(lastRange[1], range[1]);
      +        } else {
      +          consolidatedRanges.push(lastRange = range);
      +        }
      +      }
      +
      +      var out = ['['];
      +      if (inverse) { out.push('^'); }
      +      out.push.apply(out, groups);
      +      for (var i = 0; i < consolidatedRanges.length; ++i) {
      +        var range = consolidatedRanges[i];
      +        out.push(encodeEscape(range[0]));
      +        if (range[1] > range[0]) {
      +          if (range[1] + 1 > range[0]) { out.push('-'); }
      +          out.push(encodeEscape(range[1]));
      +        }
      +      }
      +      out.push(']');
      +      return out.join('');
      +    }
      +
      +    function allowAnywhereFoldCaseAndRenumberGroups(regex) {
      +      // Split into character sets, escape sequences, punctuation strings
      +      // like ('(', '(?:', ')', '^'), and runs of characters that do not
      +      // include any of the above.
      +      var parts = regex.source.match(
      +          new RegExp(
      +              '(?:'
      +              + '\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]'  // a character set
      +              + '|\\\\u[A-Fa-f0-9]{4}'  // a unicode escape
      +              + '|\\\\x[A-Fa-f0-9]{2}'  // a hex escape
      +              + '|\\\\[0-9]+'  // a back-reference or octal escape
      +              + '|\\\\[^ux0-9]'  // other escape sequence
      +              + '|\\(\\?[:!=]'  // start of a non-capturing group
      +              + '|[\\(\\)\\^]'  // start/emd of a group, or line start
      +              + '|[^\\x5B\\x5C\\(\\)\\^]+'  // run of other characters
      +              + ')',
      +              'g'));
      +      var n = parts.length;
      +
      +      // Maps captured group numbers to the number they will occupy in
      +      // the output or to -1 if that has not been determined, or to
      +      // undefined if they need not be capturing in the output.
      +      var capturedGroups = [];
      +
      +      // Walk over and identify back references to build the capturedGroups
      +      // mapping.
      +      for (var i = 0, groupIndex = 0; i < n; ++i) {
      +        var p = parts[i];
      +        if (p === '(') {
      +          // groups are 1-indexed, so max group index is count of '('
      +          ++groupIndex;
      +        } else if ('\\' === p.charAt(0)) {
      +          var decimalValue = +p.substring(1);
      +          if (decimalValue && decimalValue <= groupIndex) {
      +            capturedGroups[decimalValue] = -1;
      +          }
      +        }
      +      }
      +
      +      // Renumber groups and reduce capturing groups to non-capturing groups
      +      // where possible.
      +      for (var i = 1; i < capturedGroups.length; ++i) {
      +        if (-1 === capturedGroups[i]) {
      +          capturedGroups[i] = ++capturedGroupIndex;
      +        }
      +      }
      +      for (var i = 0, groupIndex = 0; i < n; ++i) {
      +        var p = parts[i];
      +        if (p === '(') {
      +          ++groupIndex;
      +          if (capturedGroups[groupIndex] === undefined) {
      +            parts[i] = '(?:';
      +          }
      +        } else if ('\\' === p.charAt(0)) {
      +          var decimalValue = +p.substring(1);
      +          if (decimalValue && decimalValue <= groupIndex) {
      +            parts[i] = '\\' + capturedGroups[groupIndex];
      +          }
      +        }
      +      }
      +
      +      // Remove any prefix anchors so that the output will match anywhere.
      +      // ^^ really does mean an anchored match though.
      +      for (var i = 0, groupIndex = 0; i < n; ++i) {
      +        if ('^' === parts[i] && '^' !== parts[i + 1]) { parts[i] = ''; }
      +      }
      +
      +      // Expand letters to groupts to handle mixing of case-sensitive and
      +      // case-insensitive patterns if necessary.
      +      if (regex.ignoreCase && needToFoldCase) {
      +        for (var i = 0; i < n; ++i) {
      +          var p = parts[i];
      +          var ch0 = p.charAt(0);
      +          if (p.length >= 2 && ch0 === '[') {
      +            parts[i] = caseFoldCharset(p);
      +          } else if (ch0 !== '\\') {
      +            // TODO: handle letters in numeric escapes.
      +            parts[i] = p.replace(
      +                /[a-zA-Z]/g,
      +                function (ch) {
      +                  var cc = ch.charCodeAt(0);
      +                  return '[' + String.fromCharCode(cc & ~32, cc | 32) + ']';
      +                });
      +          }
      +        }
      +      }
      +
      +      return parts.join('');
      +    }
      +
      +    var rewritten = [];
      +    for (var i = 0, n = regexs.length; i < n; ++i) {
      +      var regex = regexs[i];
      +      if (regex.global || regex.multiline) { throw new Error('' + regex); }
      +      rewritten.push(
      +          '(?:' + allowAnywhereFoldCaseAndRenumberGroups(regex) + ')');
      +    }
      +
      +    return new RegExp(rewritten.join('|'), ignoreCase ? 'gi' : 'g');
      +  }
      +
      +  var PR_innerHtmlWorks = null;
      +  function getInnerHtml(node) {
      +    // inner html is hopelessly broken in Safari 2.0.4 when the content is
      +    // an html description of well formed XML and the containing tag is a PRE
      +    // tag, so we detect that case and emulate innerHTML.
      +    if (null === PR_innerHtmlWorks) {
      +      var testNode = document.createElement('PRE');
      +      testNode.appendChild(
      +          document.createTextNode('<!DOCTYPE foo PUBLIC "foo bar">\n<foo />'));
      +      PR_innerHtmlWorks = !/</.test(testNode.innerHTML);
      +    }
      +
      +    if (PR_innerHtmlWorks) {
      +      var content = node.innerHTML;
      +      // XMP tags contain unescaped entities so require special handling.
      +      if (isRawContent(node)) {
      +        content = textToHtml(content);
      +      } else if (!isPreformatted(node, content)) {
      +        content = content.replace(/(<br\s*\/?>)[\r\n]+/g, '$1')
      +            .replace(/(?:[\r\n]+[ \t]*)+/g, ' ');
      +      }
      +      return content;
      +    }
      +
      +    var out = [];
      +    for (var child = node.firstChild; child; child = child.nextSibling) {
      +      normalizedHtml(child, out);
      +    }
      +    return out.join('');
      +  }
      +
      +  /** returns a function that expand tabs to spaces.  This function can be fed
      +    * successive chunks of text, and will maintain its own internal state to
      +    * keep track of how tabs are expanded.
      +    * @return {function (string) : string} a function that takes
      +    *   plain text and return the text with tabs expanded.
      +    * @private
      +    */
      +  function makeTabExpander(tabWidth) {
      +    var SPACES = '                ';
      +    var charInLine = 0;
      +
      +    return function (plainText) {
      +      // walk over each character looking for tabs and newlines.
      +      // On tabs, expand them.  On newlines, reset charInLine.
      +      // Otherwise increment charInLine
      +      var out = null;
      +      var pos = 0;
      +      for (var i = 0, n = plainText.length; i < n; ++i) {
      +        var ch = plainText.charAt(i);
      +
      +        switch (ch) {
      +          case '\t':
      +            if (!out) { out = []; }
      +            out.push(plainText.substring(pos, i));
      +            // calculate how much space we need in front of this part
      +            // nSpaces is the amount of padding -- the number of spaces needed
      +            // to move us to the next column, where columns occur at factors of
      +            // tabWidth.
      +            var nSpaces = tabWidth - (charInLine % tabWidth);
      +            charInLine += nSpaces;
      +            for (; nSpaces >= 0; nSpaces -= SPACES.length) {
      +              out.push(SPACES.substring(0, nSpaces));
      +            }
      +            pos = i + 1;
      +            break;
      +          case '\n':
      +            charInLine = 0;
      +            break;
      +          default:
      +            ++charInLine;
      +        }
      +      }
      +      if (!out) { return plainText; }
      +      out.push(plainText.substring(pos));
      +      return out.join('');
      +    };
      +  }
      +
      +  var pr_chunkPattern = new RegExp(
      +      '[^<]+'  // A run of characters other than '<'
      +      + '|<\!--[\\s\\S]*?--\>'  // an HTML comment
      +      + '|<!\\[CDATA\\[[\\s\\S]*?\\]\\]>'  // a CDATA section
      +      // a probable tag that should not be highlighted
      +      + '|<\/?[a-zA-Z](?:[^>\"\']|\'[^\']*\'|\"[^\"]*\")*>'
      +      + '|<',  // A '<' that does not begin a larger chunk
      +      'g');
      +  var pr_commentPrefix = /^<\!--/;
      +  var pr_cdataPrefix = /^<!\[CDATA\[/;
      +  var pr_brPrefix = /^<br\b/i;
      +  var pr_tagNameRe = /^<(\/?)([a-zA-Z][a-zA-Z0-9]*)/;
      +
      +  /** split markup into chunks of html tags (style null) and
      +    * plain text (style {@link #PR_PLAIN}), converting tags which are
      +    * significant for tokenization (<br>) into their textual equivalent.
      +    *
      +    * @param {string} s html where whitespace is considered significant.
      +    * @return {Object} source code and extracted tags.
      +    * @private
      +    */
      +  function extractTags(s) {
      +    // since the pattern has the 'g' modifier and defines no capturing groups,
      +    // this will return a list of all chunks which we then classify and wrap as
      +    // PR_Tokens
      +    var matches = s.match(pr_chunkPattern);
      +    var sourceBuf = [];
      +    var sourceBufLen = 0;
      +    var extractedTags = [];
      +    if (matches) {
      +      for (var i = 0, n = matches.length; i < n; ++i) {
      +        var match = matches[i];
      +        if (match.length > 1 && match.charAt(0) === '<') {
      +          if (pr_commentPrefix.test(match)) { continue; }
      +          if (pr_cdataPrefix.test(match)) {
      +            // strip CDATA prefix and suffix.  Don't unescape since it's CDATA
      +            sourceBuf.push(match.substring(9, match.length - 3));
      +            sourceBufLen += match.length - 12;
      +          } else if (pr_brPrefix.test(match)) {
      +            // <br> tags are lexically significant so convert them to text.
      +            // This is undone later.
      +            sourceBuf.push('\n');
      +            ++sourceBufLen;
      +          } else {
      +            if (match.indexOf(PR_NOCODE) >= 0 && isNoCodeTag(match)) {
      +              // A <span class="nocode"> will start a section that should be
      +              // ignored.  Continue walking the list until we see a matching end
      +              // tag.
      +              var name = match.match(pr_tagNameRe)[2];
      +              var depth = 1;
      +              var j;
      +              end_tag_loop:
      +              for (j = i + 1; j < n; ++j) {
      +                var name2 = matches[j].match(pr_tagNameRe);
      +                if (name2 && name2[2] === name) {
      +                  if (name2[1] === '/') {
      +                    if (--depth === 0) { break end_tag_loop; }
      +                  } else {
      +                    ++depth;
      +                  }
      +                }
      +              }
      +              if (j < n) {
      +                extractedTags.push(
      +                    sourceBufLen, matches.slice(i, j + 1).join(''));
      +                i = j;
      +              } else {  // Ignore unclosed sections.
      +                extractedTags.push(sourceBufLen, match);
      +              }
      +            } else {
      +              extractedTags.push(sourceBufLen, match);
      +            }
      +          }
      +        } else {
      +          var literalText = htmlToText(match);
      +          sourceBuf.push(literalText);
      +          sourceBufLen += literalText.length;
      +        }
      +      }
      +    }
      +    return { source: sourceBuf.join(''), tags: extractedTags };
      +  }
      +
      +  /** True if the given tag contains a class attribute with the nocode class. */
      +  function isNoCodeTag(tag) {
      +    return !!tag
      +        // First canonicalize the representation of attributes
      +        .replace(/\s(\w+)\s*=\s*(?:\"([^\"]*)\"|'([^\']*)'|(\S+))/g,
      +                 ' $1="$2$3$4"')
      +        // Then look for the attribute we want.
      +        .match(/[cC][lL][aA][sS][sS]=\"[^\"]*\bnocode\b/);
      +  }
      +
      +  /**
      +   * Apply the given language handler to sourceCode and add the resulting
      +   * decorations to out.
      +   * @param {number} basePos the index of sourceCode within the chunk of source
      +   *    whose decorations are already present on out.
      +   */
      +  function appendDecorations(basePos, sourceCode, langHandler, out) {
      +    if (!sourceCode) { return; }
      +    var job = {
      +      source: sourceCode,
      +      basePos: basePos
      +    };
      +    langHandler(job);
      +    out.push.apply(out, job.decorations);
      +  }
      +
      +  /** Given triples of [style, pattern, context] returns a lexing function,
      +    * The lexing function interprets the patterns to find token boundaries and
      +    * returns a decoration list of the form
      +    * [index_0, style_0, index_1, style_1, ..., index_n, style_n]
      +    * where index_n is an index into the sourceCode, and style_n is a style
      +    * constant like PR_PLAIN.  index_n-1 <= index_n, and style_n-1 applies to
      +    * all characters in sourceCode[index_n-1:index_n].
      +    *
      +    * The stylePatterns is a list whose elements have the form
      +    * [style : string, pattern : RegExp, DEPRECATED, shortcut : string].
      +    *
      +    * Style is a style constant like PR_PLAIN, or can be a string of the
      +    * form 'lang-FOO', where FOO is a language extension describing the
      +    * language of the portion of the token in $1 after pattern executes.
      +    * E.g., if style is 'lang-lisp', and group 1 contains the text
      +    * '(hello (world))', then that portion of the token will be passed to the
      +    * registered lisp handler for formatting.
      +    * The text before and after group 1 will be restyled using this decorator
      +    * so decorators should take care that this doesn't result in infinite
      +    * recursion.  For example, the HTML lexer rule for SCRIPT elements looks
      +    * something like ['lang-js', /<[s]cript>(.+?)<\/script>/].  This may match
      +    * '<script>foo()<\/script>', which would cause the current decorator to
      +    * be called with '<script>' which would not match the same rule since
      +    * group 1 must not be empty, so it would be instead styled as PR_TAG by
      +    * the generic tag rule.  The handler registered for the 'js' extension would
      +    * then be called with 'foo()', and finally, the current decorator would
      +    * be called with '<\/script>' which would not match the original rule and
      +    * so the generic tag rule would identify it as a tag.
      +    *
      +    * Pattern must only match prefixes, and if it matches a prefix, then that
      +    * match is considered a token with the same style.
      +    *
      +    * Context is applied to the last non-whitespace, non-comment token
      +    * recognized.
      +    *
      +    * Shortcut is an optional string of characters, any of which, if the first
      +    * character, gurantee that this pattern and only this pattern matches.
      +    *
      +    * @param {Array} shortcutStylePatterns patterns that always start with
      +    *   a known character.  Must have a shortcut string.
      +    * @param {Array} fallthroughStylePatterns patterns that will be tried in
      +    *   order if the shortcut ones fail.  May have shortcuts.
      +    *
      +    * @return {function (Object)} a
      +    *   function that takes source code and returns a list of decorations.
      +    */
      +  function createSimpleLexer(shortcutStylePatterns, fallthroughStylePatterns) {
      +    var shortcuts = {};
      +    var tokenizer;
      +    (function () {
      +      var allPatterns = shortcutStylePatterns.concat(fallthroughStylePatterns);
      +      var allRegexs = [];
      +      var regexKeys = {};
      +      for (var i = 0, n = allPatterns.length; i < n; ++i) {
      +        var patternParts = allPatterns[i];
      +        var shortcutChars = patternParts[3];
      +        if (shortcutChars) {
      +          for (var c = shortcutChars.length; --c >= 0;) {
      +            shortcuts[shortcutChars.charAt(c)] = patternParts;
      +          }
      +        }
      +        var regex = patternParts[1];
      +        var k = '' + regex;
      +        if (!regexKeys.hasOwnProperty(k)) {
      +          allRegexs.push(regex);
      +          regexKeys[k] = null;
      +        }
      +      }
      +      allRegexs.push(/[\0-\uffff]/);
      +      tokenizer = combinePrefixPatterns(allRegexs);
      +    })();
      +
      +    var nPatterns = fallthroughStylePatterns.length;
      +    var notWs = /\S/;
      +
      +    /**
      +     * Lexes job.source and produces an output array job.decorations of style
      +     * classes preceded by the position at which they start in job.source in
      +     * order.
      +     *
      +     * @param {Object} job an object like {@code
      +     *    source: {string} sourceText plain text,
      +     *    basePos: {int} position of job.source in the larger chunk of
      +     *        sourceCode.
      +     * }
      +     */
      +    var decorate = function (job) {
      +      var sourceCode = job.source, basePos = job.basePos;
      +      /** Even entries are positions in source in ascending order.  Odd enties
      +        * are style markers (e.g., PR_COMMENT) that run from that position until
      +        * the end.
      +        * @type {Array.<number|string>}
      +        */
      +      var decorations = [basePos, PR_PLAIN];
      +      var pos = 0;  // index into sourceCode
      +      var tokens = sourceCode.match(tokenizer) || [];
      +      var styleCache = {};
      +
      +      for (var ti = 0, nTokens = tokens.length; ti < nTokens; ++ti) {
      +        var token = tokens[ti];
      +        var style = styleCache[token];
      +        var match = void 0;
      +
      +        var isEmbedded;
      +        if (typeof style === 'string') {
      +          isEmbedded = false;
      +        } else {
      +          var patternParts = shortcuts[token.charAt(0)];
      +          if (patternParts) {
      +            match = token.match(patternParts[1]);
      +            style = patternParts[0];
      +          } else {
      +            for (var i = 0; i < nPatterns; ++i) {
      +              patternParts = fallthroughStylePatterns[i];
      +              match = token.match(patternParts[1]);
      +              if (match) {
      +                style = patternParts[0];
      +                break;
      +              }
      +            }
      +
      +            if (!match) {  // make sure that we make progress
      +              style = PR_PLAIN;
      +            }
      +          }
      +
      +          isEmbedded = style.length >= 5 && 'lang-' === style.substring(0, 5);
      +          if (isEmbedded && !(match && typeof match[1] === 'string')) {
      +            isEmbedded = false;
      +            style = PR_SOURCE;
      +          }
      +
      +          if (!isEmbedded) { styleCache[token] = style; }
      +        }
      +
      +        var tokenStart = pos;
      +        pos += token.length;
      +
      +        if (!isEmbedded) {
      +          decorations.push(basePos + tokenStart, style);
      +        } else {  // Treat group 1 as an embedded block of source code.
      +          var embeddedSource = match[1];
      +          var embeddedSourceStart = token.indexOf(embeddedSource);
      +          var embeddedSourceEnd = embeddedSourceStart + embeddedSource.length;
      +          if (match[2]) {
      +            // If embeddedSource can be blank, then it would match at the
      +            // beginning which would cause us to infinitely recurse on the
      +            // entire token, so we catch the right context in match[2].
      +            embeddedSourceEnd = token.length - match[2].length;
      +            embeddedSourceStart = embeddedSourceEnd - embeddedSource.length;
      +          }
      +          var lang = style.substring(5);
      +          // Decorate the left of the embedded source
      +          appendDecorations(
      +              basePos + tokenStart,
      +              token.substring(0, embeddedSourceStart),
      +              decorate, decorations);
      +          // Decorate the embedded source
      +          appendDecorations(
      +              basePos + tokenStart + embeddedSourceStart,
      +              embeddedSource,
      +              langHandlerForExtension(lang, embeddedSource),
      +              decorations);
      +          // Decorate the right of the embedded section
      +          appendDecorations(
      +              basePos + tokenStart + embeddedSourceEnd,
      +              token.substring(embeddedSourceEnd),
      +              decorate, decorations);
      +        }
      +      }
      +      job.decorations = decorations;
      +    };
      +    return decorate;
      +  }
      +
      +  /** returns a function that produces a list of decorations from source text.
      +    *
      +    * This code treats ", ', and ` as string delimiters, and \ as a string
      +    * escape.  It does not recognize perl's qq() style strings.
      +    * It has no special handling for double delimiter escapes as in basic, or
      +    * the tripled delimiters used in python, but should work on those regardless
      +    * although in those cases a single string literal may be broken up into
      +    * multiple adjacent string literals.
      +    *
      +    * It recognizes C, C++, and shell style comments.
      +    *
      +    * @param {Object} options a set of optional parameters.
      +    * @return {function (Object)} a function that examines the source code
      +    *     in the input job and builds the decoration list.
      +    */
      +  function sourceDecorator(options) {
      +    var shortcutStylePatterns = [], fallthroughStylePatterns = [];
      +    if (options['tripleQuotedStrings']) {
      +      // '''multi-line-string''', 'single-line-string', and double-quoted
      +      shortcutStylePatterns.push(
      +          [PR_STRING,  /^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,
      +           null, '\'"']);
      +    } else if (options['multiLineStrings']) {
      +      // 'multi-line-string', "multi-line-string"
      +      shortcutStylePatterns.push(
      +          [PR_STRING,  /^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,
      +           null, '\'"`']);
      +    } else {
      +      // 'single-line-string', "single-line-string"
      +      shortcutStylePatterns.push(
      +          [PR_STRING,
      +           /^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,
      +           null, '"\'']);
      +    }
      +    if (options['verbatimStrings']) {
      +      // verbatim-string-literal production from the C# grammar.  See issue 93.
      +      fallthroughStylePatterns.push(
      +          [PR_STRING, /^@\"(?:[^\"]|\"\")*(?:\"|$)/, null]);
      +    }
      +    if (options['hashComments']) {
      +      if (options['cStyleComments']) {
      +        // Stop C preprocessor declarations at an unclosed open comment
      +        shortcutStylePatterns.push(
      +            [PR_COMMENT, /^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\r\n]*)/,
      +             null, '#']);
      +        fallthroughStylePatterns.push(
      +            [PR_STRING,
      +             /^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,
      +             null]);
      +      } else {
      +        shortcutStylePatterns.push([PR_COMMENT, /^#[^\r\n]*/, null, '#']);
      +      }
      +    }
      +    if (options['cStyleComments']) {
      +      fallthroughStylePatterns.push([PR_COMMENT, /^\/\/[^\r\n]*/, null]);
      +      fallthroughStylePatterns.push(
      +          [PR_COMMENT, /^\/\*[\s\S]*?(?:\*\/|$)/, null]);
      +    }
      +    if (options['regexLiterals']) {
      +      var REGEX_LITERAL = (
      +          // A regular expression literal starts with a slash that is
      +          // not followed by * or / so that it is not confused with
      +          // comments.
      +          '/(?=[^/*])'
      +          // and then contains any number of raw characters,
      +          + '(?:[^/\\x5B\\x5C]'
      +          // escape sequences (\x5C),
      +          +    '|\\x5C[\\s\\S]'
      +          // or non-nesting character sets (\x5B\x5D);
      +          +    '|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+'
      +          // finally closed by a /.
      +          + '/');
      +      fallthroughStylePatterns.push(
      +          ['lang-regex',
      +           new RegExp('^' + REGEXP_PRECEDER_PATTERN + '(' + REGEX_LITERAL + ')')
      +           ]);
      +    }
      +
      +    var keywords = options['keywords'].replace(/^\s+|\s+$/g, '');
      +    if (keywords.length) {
      +      fallthroughStylePatterns.push(
      +          [PR_KEYWORD,
      +           new RegExp('^(?:' + keywords.replace(/\s+/g, '|') + ')\\b'), null]);
      +    }
      +
      +    shortcutStylePatterns.push([PR_PLAIN,       /^\s+/, null, ' \r\n\t\xA0']);
      +    fallthroughStylePatterns.push(
      +        // TODO(mikesamuel): recognize non-latin letters and numerals in idents
      +        [PR_LITERAL,     /^@[a-z_$][a-z_$@0-9]*/i, null],
      +        [PR_TYPE,        /^@?[A-Z]+[a-z][A-Za-z_$@0-9]*/, null],
      +        [PR_PLAIN,       /^[a-z_$][a-z_$@0-9]*/i, null],
      +        [PR_LITERAL,
      +         new RegExp(
      +             '^(?:'
      +             // A hex number
      +             + '0x[a-f0-9]+'
      +             // or an octal or decimal number,
      +             + '|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)'
      +             // possibly in scientific notation
      +             + '(?:e[+\\-]?\\d+)?'
      +             + ')'
      +             // with an optional modifier like UL for unsigned long
      +             + '[a-z]*', 'i'),
      +         null, '0123456789'],
      +        [PR_PUNCTUATION, /^.[^\s\w\.$@\'\"\`\/\#]*/, null]);
      +
      +    return createSimpleLexer(shortcutStylePatterns, fallthroughStylePatterns);
      +  }
      +
      +  var decorateSource = sourceDecorator({
      +        'keywords': ALL_KEYWORDS,
      +        'hashComments': true,
      +        'cStyleComments': true,
      +        'multiLineStrings': true,
      +        'regexLiterals': true
      +      });
      +
      +  /** Breaks {@code job.source} around style boundaries in
      +    * {@code job.decorations} while re-interleaving {@code job.extractedTags},
      +    * and leaves the result in {@code job.prettyPrintedHtml}.
      +    * @param {Object} job like {
      +    *    source: {string} source as plain text,
      +    *    extractedTags: {Array.<number|string>} extractedTags chunks of raw
      +    *                   html preceded by their position in {@code job.source}
      +    *                   in order
      +    *    decorations: {Array.<number|string} an array of style classes preceded
      +    *                 by the position at which they start in job.source in order
      +    * }
      +    * @private
      +    */
      +  function recombineTagsAndDecorations(job) {
      +    var sourceText = job.source;
      +    var extractedTags = job.extractedTags;
      +    var decorations = job.decorations;
      +
      +    var html = [];
      +    // index past the last char in sourceText written to html
      +    var outputIdx = 0;
      +
      +    var openDecoration = null;
      +    var currentDecoration = null;
      +    var tagPos = 0;  // index into extractedTags
      +    var decPos = 0;  // index into decorations
      +    var tabExpander = makeTabExpander(window['PR_TAB_WIDTH']);
      +
      +    var adjacentSpaceRe = /([\r\n ]) /g;
      +    var startOrSpaceRe = /(^| ) /gm;
      +    var newlineRe = /\r\n?|\n/g;
      +    var trailingSpaceRe = /[ \r\n]$/;
      +    var lastWasSpace = true;  // the last text chunk emitted ended with a space.
      +
      +    // See bug 71 and http://stackoverflow.com/questions/136443/why-doesnt-ie7-
      +    var isIE678 = window['_pr_isIE6']();
      +    var lineBreakHtml = (
      +        isIE678
      +        ? (job.sourceNode.tagName === 'PRE'
      +           // Use line feeds instead of <br>s so that copying and pasting works
      +           // on IE.
      +           // Doing this on other browsers breaks lots of stuff since \r\n is
      +           // treated as two newlines on Firefox.
      +           ? (isIE678 === 6 ? '&#160;\r\n' :
      +              isIE678 === 7 ? '&#160;<br>\r' : '&#160;\r')
      +           // IE collapses multiple adjacent <br>s into 1 line break.
      +           // Prefix every newline with '&#160;' to prevent such behavior.
      +           // &nbsp; is the same as &#160; but works in XML as well as HTML.
      +           : '&#160;<br />')
      +        : '<br />');
      +
      +    // Look for a class like linenums or linenums:<n> where <n> is the 1-indexed
      +    // number of the first line.
      +    var numberLines = job.sourceNode.className.match(/\blinenums\b(?::(\d+))?/);
      +    var lineBreaker;
      +    if (numberLines) {
      +      var lineBreaks = [];
      +      for (var i = 0; i < 10; ++i) {
      +        lineBreaks[i] = lineBreakHtml + '</li><li class="L' + i + '">';
      +      }
      +      var lineNum = numberLines[1] && numberLines[1].length
      +          ? numberLines[1] - 1 : 0;  // Lines are 1-indexed
      +      html.push('<ol class="linenums"><li class="L', (lineNum) % 10, '"');
      +      if (lineNum) {
      +        html.push(' value="', lineNum + 1, '"');
      +      }
      +      html.push('>');
      +      lineBreaker = function () {
      +        var lb = lineBreaks[++lineNum % 10];
      +        // If a decoration is open, we need to close it before closing a list-item
      +        // and reopen it on the other side of the list item.
      +        return openDecoration
      +            ? ('</span>' + lb + '<span class="' + openDecoration + '">') : lb;
      +      };
      +    } else {
      +      lineBreaker = lineBreakHtml;
      +    }
      +
      +    // A helper function that is responsible for opening sections of decoration
      +    // and outputing properly escaped chunks of source
      +    function emitTextUpTo(sourceIdx) {
      +      if (sourceIdx > outputIdx) {
      +        if (openDecoration && openDecoration !== currentDecoration) {
      +          // Close the current decoration
      +          html.push('</span>');
      +          openDecoration = null;
      +        }
      +        if (!openDecoration && currentDecoration) {
      +          openDecoration = currentDecoration;
      +          html.push('<span class="', openDecoration, '">');
      +        }
      +        // This interacts badly with some wikis which introduces paragraph tags
      +        // into pre blocks for some strange reason.
      +        // It's necessary for IE though which seems to lose the preformattedness
      +        // of <pre> tags when their innerHTML is assigned.
      +        // http://stud3.tuwien.ac.at/~e0226430/innerHtmlQuirk.html
      +        // and it serves to undo the conversion of <br>s to newlines done in
      +        // chunkify.
      +        var htmlChunk = textToHtml(
      +            tabExpander(sourceText.substring(outputIdx, sourceIdx)))
      +            .replace(lastWasSpace
      +                     ? startOrSpaceRe
      +                     : adjacentSpaceRe, '$1&#160;');
      +        // Keep track of whether we need to escape space at the beginning of the
      +        // next chunk.
      +        lastWasSpace = trailingSpaceRe.test(htmlChunk);
      +        html.push(htmlChunk.replace(newlineRe, lineBreaker));
      +        outputIdx = sourceIdx;
      +      }
      +    }
      +
      +    while (true) {
      +      // Determine if we're going to consume a tag this time around.  Otherwise
      +      // we consume a decoration or exit.
      +      var outputTag;
      +      if (tagPos < extractedTags.length) {
      +        if (decPos < decorations.length) {
      +          // Pick one giving preference to extractedTags since we shouldn't open
      +          // a new style that we're going to have to immediately close in order
      +          // to output a tag.
      +          outputTag = extractedTags[tagPos] <= decorations[decPos];
      +        } else {
      +          outputTag = true;
      +        }
      +      } else {
      +        outputTag = false;
      +      }
      +      // Consume either a decoration or a tag or exit.
      +      if (outputTag) {
      +        emitTextUpTo(extractedTags[tagPos]);
      +        if (openDecoration) {
      +          // Close the current decoration
      +          html.push('</span>');
      +          openDecoration = null;
      +        }
      +        html.push(extractedTags[tagPos + 1]);
      +        tagPos += 2;
      +      } else if (decPos < decorations.length) {
      +        emitTextUpTo(decorations[decPos]);
      +        currentDecoration = decorations[decPos + 1];
      +        decPos += 2;
      +      } else {
      +        break;
      +      }
      +    }
      +    emitTextUpTo(sourceText.length);
      +    if (openDecoration) {
      +      html.push('</span>');
      +    }
      +    if (numberLines) { html.push('</li></ol>'); }
      +    job.prettyPrintedHtml = html.join('');
      +  }
      +
      +  /** Maps language-specific file extensions to handlers. */
      +  var langHandlerRegistry = {};
      +  /** Register a language handler for the given file extensions.
      +    * @param {function (Object)} handler a function from source code to a list
      +    *      of decorations.  Takes a single argument job which describes the
      +    *      state of the computation.   The single parameter has the form
      +    *      {@code {
      +    *        source: {string} as plain text.
      +    *        decorations: {Array.<number|string>} an array of style classes
      +    *                     preceded by the position at which they start in
      +    *                     job.source in order.
      +    *                     The language handler should assigned this field.
      +    *        basePos: {int} the position of source in the larger source chunk.
      +    *                 All positions in the output decorations array are relative
      +    *                 to the larger source chunk.
      +    *      } }
      +    * @param {Array.<string>} fileExtensions
      +    */
      +  function registerLangHandler(handler, fileExtensions) {
      +    for (var i = fileExtensions.length; --i >= 0;) {
      +      var ext = fileExtensions[i];
      +      if (!langHandlerRegistry.hasOwnProperty(ext)) {
      +        langHandlerRegistry[ext] = handler;
      +      } else if ('console' in window) {
      +        console['warn']('cannot override language handler %s', ext);
      +      }
      +    }
      +  }
      +  function langHandlerForExtension(extension, source) {
      +    if (!(extension && langHandlerRegistry.hasOwnProperty(extension))) {
      +      // Treat it as markup if the first non whitespace character is a < and
      +      // the last non-whitespace character is a >.
      +      extension = /^\s*</.test(source)
      +          ? 'default-markup'
      +          : 'default-code';
      +    }
      +    return langHandlerRegistry[extension];
      +  }
      +  registerLangHandler(decorateSource, ['default-code']);
      +  registerLangHandler(
      +      createSimpleLexer(
      +          [],
      +          [
      +           [PR_PLAIN,       /^[^<?]+/],
      +           [PR_DECLARATION, /^<!\w[^>]*(?:>|$)/],
      +           [PR_COMMENT,     /^<\!--[\s\S]*?(?:-\->|$)/],
      +           // Unescaped content in an unknown language
      +           ['lang-',        /^<\?([\s\S]+?)(?:\?>|$)/],
      +           ['lang-',        /^<%([\s\S]+?)(?:%>|$)/],
      +           [PR_PUNCTUATION, /^(?:<[%?]|[%?]>)/],
      +           ['lang-',        /^<xmp\b[^>]*>([\s\S]+?)<\/xmp\b[^>]*>/i],
      +           // Unescaped content in javascript.  (Or possibly vbscript).
      +           ['lang-js',      /^<script\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],
      +           // Contains unescaped stylesheet content
      +           ['lang-css',     /^<style\b[^>]*>([\s\S]*?)(<\/style\b[^>]*>)/i],
      +           ['lang-in.tag',  /^(<\/?[a-z][^<>]*>)/i]
      +          ]),
      +      ['default-markup', 'htm', 'html', 'mxml', 'xhtml', 'xml', 'xsl']);
      +  registerLangHandler(
      +      createSimpleLexer(
      +          [
      +           [PR_PLAIN,        /^[\s]+/, null, ' \t\r\n'],
      +           [PR_ATTRIB_VALUE, /^(?:\"[^\"]*\"?|\'[^\']*\'?)/, null, '\"\'']
      +           ],
      +          [
      +           [PR_TAG,          /^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],
      +           [PR_ATTRIB_NAME,  /^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],
      +           ['lang-uq.val',   /^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],
      +           [PR_PUNCTUATION,  /^[=<>\/]+/],
      +           ['lang-js',       /^on\w+\s*=\s*\"([^\"]+)\"/i],
      +           ['lang-js',       /^on\w+\s*=\s*\'([^\']+)\'/i],
      +           ['lang-js',       /^on\w+\s*=\s*([^\"\'>\s]+)/i],
      +           ['lang-css',      /^style\s*=\s*\"([^\"]+)\"/i],
      +           ['lang-css',      /^style\s*=\s*\'([^\']+)\'/i],
      +           ['lang-css',      /^style\s*=\s*([^\"\'>\s]+)/i]
      +           ]),
      +      ['in.tag']);
      +  registerLangHandler(
      +      createSimpleLexer([], [[PR_ATTRIB_VALUE, /^[\s\S]+/]]), ['uq.val']);
      +  registerLangHandler(sourceDecorator({
      +          'keywords': CPP_KEYWORDS,
      +          'hashComments': true,
      +          'cStyleComments': true
      +        }), ['c', 'cc', 'cpp', 'cxx', 'cyc', 'm']);
      +  registerLangHandler(sourceDecorator({
      +          'keywords': 'null true false'
      +        }), ['json']);
      +  registerLangHandler(sourceDecorator({
      +          'keywords': CSHARP_KEYWORDS,
      +          'hashComments': true,
      +          'cStyleComments': true,
      +          'verbatimStrings': true
      +        }), ['cs']);
      +  registerLangHandler(sourceDecorator({
      +          'keywords': JAVA_KEYWORDS,
      +          'cStyleComments': true
      +        }), ['java']);
      +  registerLangHandler(sourceDecorator({
      +          'keywords': SH_KEYWORDS,
      +          'hashComments': true,
      +          'multiLineStrings': true
      +        }), ['bsh', 'csh', 'sh']);
      +  registerLangHandler(sourceDecorator({
      +          'keywords': PYTHON_KEYWORDS,
      +          'hashComments': true,
      +          'multiLineStrings': true,
      +          'tripleQuotedStrings': true
      +        }), ['cv', 'py']);
      +  registerLangHandler(sourceDecorator({
      +          'keywords': PERL_KEYWORDS,
      +          'hashComments': true,
      +          'multiLineStrings': true,
      +          'regexLiterals': true
      +        }), ['perl', 'pl', 'pm']);
      +  registerLangHandler(sourceDecorator({
      +          'keywords': RUBY_KEYWORDS,
      +          'hashComments': true,
      +          'multiLineStrings': true,
      +          'regexLiterals': true
      +        }), ['rb']);
      +  registerLangHandler(sourceDecorator({
      +          'keywords': JSCRIPT_KEYWORDS,
      +          'cStyleComments': true,
      +          'regexLiterals': true
      +        }), ['js']);
      +  registerLangHandler(
      +      createSimpleLexer([], [[PR_STRING, /^[\s\S]+/]]), ['regex']);
      +
      +  function applyDecorator(job) {
      +    var sourceCodeHtml = job.sourceCodeHtml;
      +    var opt_langExtension = job.langExtension;
      +
      +    // Prepopulate output in case processing fails with an exception.
      +    job.prettyPrintedHtml = sourceCodeHtml;
      +
      +    try {
      +      // Extract tags, and convert the source code to plain text.
      +      var sourceAndExtractedTags = extractTags(sourceCodeHtml);
      +      /** Plain text. @type {string} */
      +      var source = sourceAndExtractedTags.source;
      +      job.source = source;
      +      job.basePos = 0;
      +
      +      /** Even entries are positions in source in ascending order.  Odd entries
      +        * are tags that were extracted at that position.
      +        * @type {Array.<number|string>}
      +        */
      +      job.extractedTags = sourceAndExtractedTags.tags;
      +
      +      // Apply the appropriate language handler
      +      langHandlerForExtension(opt_langExtension, source)(job);
      +      // Integrate the decorations and tags back into the source code to produce
      +      // a decorated html string which is left in job.prettyPrintedHtml.
      +      recombineTagsAndDecorations(job);
      +    } catch (e) {
      +      if ('console' in window) {
      +        console['log'](e && e['stack'] ? e['stack'] : e);
      +      }
      +    }
      +  }
      +
      +  function prettyPrintOne(sourceCodeHtml, opt_langExtension) {
      +    var job = {
      +      sourceCodeHtml: sourceCodeHtml,
      +      langExtension: opt_langExtension
      +    };
      +    applyDecorator(job);
      +    return job.prettyPrintedHtml;
      +  }
      +
      +  function prettyPrint(opt_whenDone) {
      +    function byTagName(tn) { return document.getElementsByTagName(tn); }
      +    // fetch a list of nodes to rewrite
      +    var codeSegments = [byTagName('pre'), byTagName('code'), byTagName('xmp')];
      +    var elements = [];
      +    for (var i = 0; i < codeSegments.length; ++i) {
      +      for (var j = 0, n = codeSegments[i].length; j < n; ++j) {
      +        elements.push(codeSegments[i][j]);
      +      }
      +    }
      +    codeSegments = null;
      +
      +    var clock = Date;
      +    if (!clock['now']) {
      +      clock = { 'now': function () { return (new Date).getTime(); } };
      +    }
      +
      +    // The loop is broken into a series of continuations to make sure that we
      +    // don't make the browser unresponsive when rewriting a large page.
      +    var k = 0;
      +    var prettyPrintingJob;
      +
      +    function doWork() {
      +      var endTime = (window['PR_SHOULD_USE_CONTINUATION'] ?
      +                     clock.now() + 250 /* ms */ :
      +                     Infinity);
      +      for (; k < elements.length && clock.now() < endTime; k++) {
      +        var cs = elements[k];
      +        // [JACOCO] 'prettyprint' -> 'source'
      +        if (cs.className && cs.className.indexOf('source') >= 0) {
      +          // If the classes includes a language extensions, use it.
      +          // Language extensions can be specified like
      +          //     <pre class="prettyprint lang-cpp">
      +          // the language extension "cpp" is used to find a language handler as
      +          // passed to PR_registerLangHandler.
      +          var langExtension = cs.className.match(/\blang-(\w+)\b/);
      +          if (langExtension) { langExtension = langExtension[1]; }
      +
      +          // make sure this is not nested in an already prettified element
      +          var nested = false;
      +          for (var p = cs.parentNode; p; p = p.parentNode) {
      +            if ((p.tagName === 'pre' || p.tagName === 'code' ||
      +                 p.tagName === 'xmp') &&
      +                // [JACOCO] 'prettyprint' -> 'source'
      +                p.className && p.className.indexOf('source') >= 0) {
      +              nested = true;
      +              break;
      +            }
      +          }
      +          if (!nested) {
      +            // fetch the content as a snippet of properly escaped HTML.
      +            // Firefox adds newlines at the end.
      +            var content = getInnerHtml(cs);
      +            content = content.replace(/(?:\r\n?|\n)$/, '');
      +
      +            // do the pretty printing
      +            prettyPrintingJob = {
      +              sourceCodeHtml: content,
      +              langExtension: langExtension,
      +              sourceNode: cs
      +            };
      +            applyDecorator(prettyPrintingJob);
      +            replaceWithPrettyPrintedHtml();
      +          }
      +        }
      +      }
      +      if (k < elements.length) {
      +        // finish up in a continuation
      +        setTimeout(doWork, 250);
      +      } else if (opt_whenDone) {
      +        opt_whenDone();
      +      }
      +    }
      +
      +    function replaceWithPrettyPrintedHtml() {
      +      var newContent = prettyPrintingJob.prettyPrintedHtml;
      +      if (!newContent) { return; }
      +      var cs = prettyPrintingJob.sourceNode;
      +
      +      // push the prettified html back into the tag.
      +      if (!isRawContent(cs)) {
      +        // just replace the old html with the new
      +        cs.innerHTML = newContent;
      +      } else {
      +        // we need to change the tag to a <pre> since <xmp>s do not allow
      +        // embedded tags such as the span tags used to attach styles to
      +        // sections of source code.
      +        var pre = document.createElement('PRE');
      +        for (var i = 0; i < cs.attributes.length; ++i) {
      +          var a = cs.attributes[i];
      +          if (a.specified) {
      +            var aname = a.name.toLowerCase();
      +            if (aname === 'class') {
      +              pre.className = a.value;  // For IE 6
      +            } else {
      +              pre.setAttribute(a.name, a.value);
      +            }
      +          }
      +        }
      +        pre.innerHTML = newContent;
      +
      +        // remove the old
      +        cs.parentNode.replaceChild(pre, cs);
      +        cs = pre;
      +      }
      +    }
      +
      +    doWork();
      +  }
      +
      +  window['PR_normalizedHtml'] = normalizedHtml;
      +  window['prettyPrintOne'] = prettyPrintOne;
      +  window['prettyPrint'] = prettyPrint;
      +  window['PR'] = {
      +        'combinePrefixPatterns': combinePrefixPatterns,
      +        'createSimpleLexer': createSimpleLexer,
      +        'registerLangHandler': registerLangHandler,
      +        'sourceDecorator': sourceDecorator,
      +        'PR_ATTRIB_NAME': PR_ATTRIB_NAME,
      +        'PR_ATTRIB_VALUE': PR_ATTRIB_VALUE,
      +        'PR_COMMENT': PR_COMMENT,
      +        'PR_DECLARATION': PR_DECLARATION,
      +        'PR_KEYWORD': PR_KEYWORD,
      +        'PR_LITERAL': PR_LITERAL,
      +        'PR_NOCODE': PR_NOCODE,
      +        'PR_PLAIN': PR_PLAIN,
      +        'PR_PUNCTUATION': PR_PUNCTUATION,
      +        'PR_SOURCE': PR_SOURCE,
      +        'PR_STRING': PR_STRING,
      +        'PR_TAG': PR_TAG,
      +        'PR_TYPE': PR_TYPE
      +      };
      +})();
      diff --git a/docs/site/jacoco/jacoco-resources/redbar.gif b/docs/site/jacoco/jacoco-resources/redbar.gif
      new file mode 100644
      index 00000000..c2f71469
      Binary files /dev/null and b/docs/site/jacoco/jacoco-resources/redbar.gif differ
      diff --git a/docs/site/jacoco/jacoco-resources/report.css b/docs/site/jacoco/jacoco-resources/report.css
      new file mode 100644
      index 00000000..dd936bca
      --- /dev/null
      +++ b/docs/site/jacoco/jacoco-resources/report.css
      @@ -0,0 +1,243 @@
      +body, td {
      +  font-family:sans-serif;
      +  font-size:10pt;
      +}
      +
      +h1 {
      +  font-weight:bold;
      +  font-size:18pt;
      +}
      +
      +.breadcrumb {
      +  border:#d6d3ce 1px solid;
      +  padding:2px 4px 2px 4px;
      +}
      +
      +.breadcrumb .info {
      +  float:right;
      +}
      +
      +.breadcrumb .info a {
      +  margin-left:8px;
      +}
      +
      +.el_report {
      +  padding-left:18px;
      +  background-image:url(report.gif);
      +  background-position:left center;
      +  background-repeat:no-repeat;
      +}
      +
      +.el_group {
      +  padding-left:18px;
      +  background-image:url(group.gif);
      +  background-position:left center;
      +  background-repeat:no-repeat;
      +}
      +
      +.el_bundle {
      +  padding-left:18px;
      +  background-image:url(bundle.gif);
      +  background-position:left center;
      +  background-repeat:no-repeat;
      +}
      +
      +.el_package {
      +  padding-left:18px;
      +  background-image:url(package.gif);
      +  background-position:left center;
      +  background-repeat:no-repeat;
      +}
      +
      +.el_class {
      +  padding-left:18px;
      +  background-image:url(class.gif);
      +  background-position:left center;
      +  background-repeat:no-repeat;
      +}
      +
      +.el_source {
      +  padding-left:18px;
      +  background-image:url(source.gif);
      +  background-position:left center;
      +  background-repeat:no-repeat;
      +}
      +
      +.el_method {
      +  padding-left:18px;
      +  background-image:url(method.gif);
      +  background-position:left center;
      +  background-repeat:no-repeat;
      +}
      +
      +.el_session {
      +  padding-left:18px;
      +  background-image:url(session.gif);
      +  background-position:left center;
      +  background-repeat:no-repeat;
      +}
      +
      +pre.source {
      +  border:#d6d3ce 1px solid;
      +  font-family:monospace;
      +}
      +
      +pre.source ol {
      +  margin-bottom: 0px;
      +  margin-top: 0px;
      +}
      +
      +pre.source li {
      +  border-left: 1px solid #D6D3CE;
      +  color: #A0A0A0;
      +  padding-left: 0px;
      +}
      +
      +pre.source span.fc {
      +  background-color:#ccffcc;
      +}
      +
      +pre.source span.nc {
      +  background-color:#ffaaaa;
      +}
      +
      +pre.source span.pc {
      +  background-color:#ffffcc;
      +}
      +
      +pre.source span.bfc {
      +  background-image: url(branchfc.gif);
      +  background-repeat: no-repeat;
      +  background-position: 2px center;
      +}
      +
      +pre.source span.bfc:hover {
      +  background-color:#80ff80;
      +}
      +
      +pre.source span.bnc {
      +  background-image: url(branchnc.gif);
      +  background-repeat: no-repeat;
      +  background-position: 2px center;
      +}
      +
      +pre.source span.bnc:hover {
      +  background-color:#ff8080;
      +}
      +
      +pre.source span.bpc {
      +  background-image: url(branchpc.gif);
      +  background-repeat: no-repeat;
      +  background-position: 2px center;
      +}
      +
      +pre.source span.bpc:hover {
      +  background-color:#ffff80;
      +}
      +
      +table.coverage {
      +  empty-cells:show;
      +  border-collapse:collapse;
      +}
      +
      +table.coverage thead {
      +  background-color:#e0e0e0;
      +}
      +
      +table.coverage thead td {
      +  white-space:nowrap;
      +  padding:2px 14px 0px 6px;
      +  border-bottom:#b0b0b0 1px solid;
      +}
      +
      +table.coverage thead td.bar {
      +  border-left:#cccccc 1px solid;
      +}
      +
      +table.coverage thead td.ctr1 {
      +  text-align:right;
      +  border-left:#cccccc 1px solid;
      +}
      +
      +table.coverage thead td.ctr2 {
      +  text-align:right;
      +  padding-left:2px;
      +}
      +
      +table.coverage thead td.sortable {
      +  cursor:pointer;
      +  background-image:url(sort.gif);
      +  background-position:right center;
      +  background-repeat:no-repeat;
      +}
      +
      +table.coverage thead td.up {
      +  background-image:url(up.gif);
      +}
      +
      +table.coverage thead td.down {
      +  background-image:url(down.gif);
      +}
      +
      +table.coverage tbody td {
      +  white-space:nowrap;
      +  padding:2px 6px 2px 6px;
      +  border-bottom:#d6d3ce 1px solid;
      +}
      +
      +table.coverage tbody tr:hover {
      +  background: #f0f0d0 !important;
      +}
      +
      +table.coverage tbody td.bar {
      +  border-left:#e8e8e8 1px solid;
      +}
      +
      +table.coverage tbody td.ctr1 {
      +  text-align:right;
      +  padding-right:14px;
      +  border-left:#e8e8e8 1px solid;
      +}
      +
      +table.coverage tbody td.ctr2 {
      +  text-align:right;
      +  padding-right:14px;
      +  padding-left:2px;
      +}
      +
      +table.coverage tfoot td {
      +  white-space:nowrap;
      +  padding:2px 6px 2px 6px;
      +}
      +
      +table.coverage tfoot td.bar {
      +  border-left:#e8e8e8 1px solid;
      +}
      +
      +table.coverage tfoot td.ctr1 {
      +  text-align:right;
      +  padding-right:14px;
      +  border-left:#e8e8e8 1px solid;
      +}
      +
      +table.coverage tfoot td.ctr2 {
      +  text-align:right;
      +  padding-right:14px;
      +  padding-left:2px;
      +}
      +
      +.footer {
      +  margin-top:20px;
      +  border-top:#d6d3ce 1px solid;
      +  padding-top:2px;
      +  font-size:8pt;
      +  color:#a0a0a0;
      +}
      +
      +.footer a {
      +  color:#a0a0a0;
      +}
      +
      +.right {
      +  float:right;
      +}
      diff --git a/docs/site/jacoco/jacoco-resources/report.gif b/docs/site/jacoco/jacoco-resources/report.gif
      new file mode 100644
      index 00000000..8547be50
      Binary files /dev/null and b/docs/site/jacoco/jacoco-resources/report.gif differ
      diff --git a/docs/site/jacoco/jacoco-resources/session.gif b/docs/site/jacoco/jacoco-resources/session.gif
      new file mode 100644
      index 00000000..0151bad8
      Binary files /dev/null and b/docs/site/jacoco/jacoco-resources/session.gif differ
      diff --git a/docs/site/jacoco/jacoco-resources/sort.gif b/docs/site/jacoco/jacoco-resources/sort.gif
      new file mode 100644
      index 00000000..6757c2c3
      Binary files /dev/null and b/docs/site/jacoco/jacoco-resources/sort.gif differ
      diff --git a/docs/site/jacoco/jacoco-resources/sort.js b/docs/site/jacoco/jacoco-resources/sort.js
      new file mode 100644
      index 00000000..65f8d0e5
      --- /dev/null
      +++ b/docs/site/jacoco/jacoco-resources/sort.js
      @@ -0,0 +1,148 @@
      +/*******************************************************************************
      + * Copyright (c) 2009, 2023 Mountainminds GmbH & Co. KG and Contributors
      + * This program and the accompanying materials are made available under
      + * the terms of the Eclipse Public License 2.0 which is available at
      + * http://www.eclipse.org/legal/epl-2.0
      + *
      + * SPDX-License-Identifier: EPL-2.0
      + *
      + * Contributors:
      + *    Marc R. Hoffmann - initial API and implementation
      + *
      + *******************************************************************************/
      +
      +(function () {
      +
      +  /**
      +   * Sets the initial sorting derived from the hash.
      +   *
      +   * @param linkelementids
      +   *          list of element ids to search for links to add sort inidcator
      +   *          hash links
      +   */
      +  function initialSort(linkelementids) {
      +    window.linkelementids = linkelementids;
      +    var hash = window.location.hash;
      +    if (hash) {
      +      var m = hash.match(/up-./);
      +      if (m) {
      +        var header = window.document.getElementById(m[0].charAt(3));
      +        if (header) {
      +          sortColumn(header, true);
      +        }
      +        return;
      +      }
      +      var m = hash.match(/dn-./);
      +      if (m) {
      +        var header = window.document.getElementById(m[0].charAt(3));
      +        if (header) {
      +          sortColumn(header, false);
      +        }
      +        return
      +      }
      +    }
      +  }
      +
      +  /**
      +   * Sorts the columns with the given header dependening on the current sort state.
      +   */
      +  function toggleSort(header) {
      +    var sortup = header.className.indexOf('down ') == 0;
      +    sortColumn(header, sortup);
      +  }
      +
      +  /**
      +   * Sorts the columns with the given header in the given direction.
      +   */
      +  function sortColumn(header, sortup) {
      +    var table = header.parentNode.parentNode.parentNode;
      +    var body = table.tBodies[0];
      +    var colidx = getNodePosition(header);
      +
      +    resetSortedStyle(table);
      +
      +    var rows = body.rows;
      +    var sortedrows = [];
      +    for (var i = 0; i < rows.length; i++) {
      +      r = rows[i];
      +      sortedrows[parseInt(r.childNodes[colidx].id.slice(1))] = r;
      +    }
      +
      +    var hash;
      +
      +    if (sortup) {
      +      for (var i = sortedrows.length - 1; i >= 0; i--) {
      +        body.appendChild(sortedrows[i]);
      +      }
      +      header.className = 'up ' + header.className;
      +      hash = 'up-' + header.id;
      +    } else {
      +      for (var i = 0; i < sortedrows.length; i++) {
      +        body.appendChild(sortedrows[i]);
      +      }
      +      header.className = 'down ' + header.className;
      +      hash = 'dn-' + header.id;
      +    }
      +
      +    setHash(hash);
      +  }
      +
      +  /**
      +   * Adds the sort indicator as a hash to the document URL and all links.
      +   */
      +  function setHash(hash) {
      +    window.document.location.hash = hash;
      +    ids = window.linkelementids;
      +    for (var i = 0; i < ids.length; i++) {
      +        setHashOnAllLinks(document.getElementById(ids[i]), hash);
      +    }
      +  }
      +
      +  /**
      +   * Extend all links within the given tag with the given hash.
      +   */
      +  function setHashOnAllLinks(tag, hash) {
      +    links = tag.getElementsByTagName("a");
      +    for (var i = 0; i < links.length; i++) {
      +        var a = links[i];
      +        var href = a.href;
      +        var hashpos = href.indexOf("#");
      +        if (hashpos != -1) {
      +            href = href.substring(0, hashpos);
      +        }
      +        a.href = href + "#" + hash;
      +    }
      +  }
      +
      +  /**
      +   * Calculates the position of a element within its parent.
      +   */
      +  function getNodePosition(element) {
      +    var pos = -1;
      +    while (element) {
      +      element = element.previousSibling;
      +      pos++;
      +    }
      +    return pos;
      +  }
      +
      +  /**
      +   * Remove the sorting indicator style from all headers.
      +   */
      +  function resetSortedStyle(table) {
      +    for (var c = table.tHead.firstChild.firstChild; c; c = c.nextSibling) {
      +      if (c.className) {
      +        if (c.className.indexOf('down ') == 0) {
      +          c.className = c.className.slice(5);
      +        }
      +        if (c.className.indexOf('up ') == 0) {
      +          c.className = c.className.slice(3);
      +        }
      +      }
      +    }
      +  }
      +
      +  window['initialSort'] = initialSort;
      +  window['toggleSort'] = toggleSort;
      +
      +})();
      diff --git a/docs/site/jacoco/jacoco-resources/source.gif b/docs/site/jacoco/jacoco-resources/source.gif
      new file mode 100644
      index 00000000..b226e41c
      Binary files /dev/null and b/docs/site/jacoco/jacoco-resources/source.gif differ
      diff --git a/docs/site/jacoco/jacoco-resources/up.gif b/docs/site/jacoco/jacoco-resources/up.gif
      new file mode 100644
      index 00000000..58ed2166
      Binary files /dev/null and b/docs/site/jacoco/jacoco-resources/up.gif differ
      diff --git a/docs/site/jacoco/jacoco-sessions.html b/docs/site/jacoco/jacoco-sessions.html
      new file mode 100644
      index 00000000..b3bf2e14
      --- /dev/null
      +++ b/docs/site/jacoco/jacoco-sessions.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="jacoco-resources/report.gif" type="image/gif"/><title>Sessions</title></head><body><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="jacoco-sessions.html" class="el_session">Sessions</a></span><a href="index.html" class="el_report">Units of Measurement API</a> &gt; <span class="el_session">Sessions</span></div><h1>Sessions</h1><p>This coverage report is based on execution data from the following sessions:</p><table class="coverage" cellspacing="0"><thead><tr><td>Session</td><td>Start Time</td><td>Dump Time</td></tr></thead><tbody><tr><td><span class="el_session">DESKTOP-KNPRT5O-c7c535a</span></td><td>01.11.2023, 20:59:27</td><td>01.11.2023, 20:59:59</td></tr><tr><td><span class="el_session">DESKTOP-KNPRT5O-1f6465b</span></td><td>01.11.2023, 20:59:27</td><td>01.11.2023, 20:59:59</td></tr><tr><td><span class="el_session">DESKTOP-KNPRT5O-81aa4c3c</span></td><td>01.11.2023, 20:59:28</td><td>01.11.2023, 21:00:00</td></tr><tr><td><span class="el_session">DESKTOP-KNPRT5O-c3c83cc3</span></td><td>01.11.2023, 20:59:27</td><td>01.11.2023, 21:00:00</td></tr><tr><td><span class="el_session">DESKTOP-KNPRT5O-363d7b26</span></td><td>01.11.2023, 20:59:28</td><td>01.11.2023, 21:00:00</td></tr><tr><td><span class="el_session">DESKTOP-KNPRT5O-bdf8763d</span></td><td>01.11.2023, 20:59:27</td><td>01.11.2023, 21:00:00</td></tr><tr><td><span class="el_session">DESKTOP-KNPRT5O-e86e73c5</span></td><td>01.11.2023, 21:02:15</td><td>01.11.2023, 21:02:39</td></tr><tr><td><span class="el_session">DESKTOP-KNPRT5O-d16ddcd9</span></td><td>01.11.2023, 21:02:16</td><td>01.11.2023, 21:02:39</td></tr><tr><td><span class="el_session">DESKTOP-KNPRT5O-7b221d95</span></td><td>01.11.2023, 21:02:15</td><td>01.11.2023, 21:02:39</td></tr><tr><td><span class="el_session">DESKTOP-KNPRT5O-eeb88ced</span></td><td>01.11.2023, 21:02:16</td><td>01.11.2023, 21:02:39</td></tr><tr><td><span class="el_session">DESKTOP-KNPRT5O-bf33dd39</span></td><td>01.11.2023, 21:02:16</td><td>01.11.2023, 21:02:39</td></tr><tr><td><span class="el_session">DESKTOP-KNPRT5O-a4f32476</span></td><td>01.11.2023, 21:02:15</td><td>01.11.2023, 21:02:39</td></tr></tbody></table><p>Execution data for the following classes is considered in this report:</p><table class="coverage" cellspacing="0"><thead><tr><td>Class</td><td>Id</td></tr></thead><tbody><tr><td><span class="el_class">javax.measure.BinaryPrefix</span></td><td><code>d9be59e14be27805</code></td></tr><tr><td><span class="el_class">javax.measure.IncommensurableException</span></td><td><code>a1bff251c1a4bee9</code></td></tr><tr><td><span class="el_class">javax.measure.MeasurementError</span></td><td><code>9a8740c8d44b904c</code></td></tr><tr><td><span class="el_class">javax.measure.MeasurementException</span></td><td><code>a87ea109d070f4c8</code></td></tr><tr><td><span class="el_class">javax.measure.MetricPrefix</span></td><td><code>09758da3fa633dcf</code></td></tr><tr><td><span class="el_class">javax.measure.Quantity</span></td><td><code>7834494b51433404</code></td></tr><tr><td><span class="el_class">javax.measure.Quantity.Scale</span></td><td><code>6dc6538e242dc688</code></td></tr><tr><td><span class="el_class">javax.measure.UnconvertibleException</span></td><td><code>ed87fea766e9d7ea</code></td></tr><tr><td><span class="el_class">javax.measure.format.MeasurementParseException</span></td><td><code>3f5e8087a6f66610</code></td></tr><tr><td><span class="el_class">javax.measure.format.QuantityFormat</span></td><td><code>bb8bd9756f85caa3</code></td></tr><tr><td><span class="el_class">javax.measure.format.UnitFormat</span></td><td><code>a3c40490beea22d0</code></td></tr><tr><td><span class="el_class">javax.measure.spi.FormatService.FormatType</span></td><td><code>2416cd9e0bb7fbe5</code></td></tr><tr><td><span class="el_class">javax.measure.spi.FormatServiceTest</span></td><td><code>696539e59d1858b2</code></td></tr><tr><td><span class="el_class">javax.measure.spi.FormatServiceTest.1</span></td><td><code>81da73a1ee7f087c</code></td></tr><tr><td><span class="el_class">javax.measure.spi.FormatServiceTest.TestFormatService</span></td><td><code>cf5d355fc5b4c495</code></td></tr><tr><td><span class="el_class">javax.measure.spi.ServiceProvider</span></td><td><code>8520a59322769b76</code></td></tr><tr><td><span class="el_class">javax.measure.spi.ServiceProvider.Selector</span></td><td><code>a9447c36a5e38bfb</code></td></tr><tr><td><span class="el_class">javax.measure.spi.ServiceProviderTest</span></td><td><code>a8fb0426c8e72df9</code></td></tr><tr><td><span class="el_class">javax.measure.spi.ServiceProviderTest.TestServiceProvider</span></td><td><code>3c971e08e872af25</code></td></tr><tr><td><span class="el_class">javax.measure.spi.SystemOfUnitsService</span></td><td><code>da472f8bfbf8aada</code></td></tr><tr><td><span class="el_class">javax.measure.spi.TestSystemOfUnitsService</span></td><td><code>a91cb6d5ce144716</code></td></tr><tr><td><span class="el_class">javax.measure.test.BinaryPrefixTest</span></td><td><code>da2c1323fb15f6f0</code></td></tr><tr><td><span class="el_class">javax.measure.test.ConverterTest</span></td><td><code>0db23d6203418928</code></td></tr><tr><td><span class="el_class">javax.measure.test.DimensionTest</span></td><td><code>5ee4fca8af5d9986</code></td></tr><tr><td><span class="el_class">javax.measure.test.EnumUnit</span></td><td><code>c3ccbf975bc22731</code></td></tr><tr><td><span class="el_class">javax.measure.test.ExceptionsTest</span></td><td><code>393e95b31992932d</code></td></tr><tr><td><span class="el_class">javax.measure.test.ExceptionsTest.TestException</span></td><td><code>749e5e64f5ef4ea0</code></td></tr><tr><td><span class="el_class">javax.measure.test.MetricPrefixTest</span></td><td><code>ce89fd6ada074bd7</code></td></tr><tr><td><span class="el_class">javax.measure.test.TestConverter</span></td><td><code>90bf852dabb1f792</code></td></tr><tr><td><span class="el_class">javax.measure.test.TestConverter.Identity</span></td><td><code>a949c9ab784c84fb</code></td></tr><tr><td><span class="el_class">javax.measure.test.TestDimension</span></td><td><code>8288da65d4bcbf55</code></td></tr><tr><td><span class="el_class">javax.measure.test.TestUnit</span></td><td><code>70ec1d72f00245c3</code></td></tr><tr><td><span class="el_class">javax.measure.test.UnitTest</span></td><td><code>d1cd613bc45055e8</code></td></tr><tr><td><span class="el_class">javax.measure.test.format.MeasurementParseTest</span></td><td><code>f3430dc4f97bb8da</code></td></tr><tr><td><span class="el_class">javax.measure.test.format.QuantityFormatTest</span></td><td><code>29b08ba18c2f4395</code></td></tr><tr><td><span class="el_class">javax.measure.test.format.SimpleTestQuantityFormat</span></td><td><code>8ddaa9e097917e41</code></td></tr><tr><td><span class="el_class">javax.measure.test.format.SimpleTestUnitFormat</span></td><td><code>e59bce89755c303e</code></td></tr><tr><td><span class="el_class">javax.measure.test.format.TestQuantityFormat</span></td><td><code>33aba22639e92d6f</code></td></tr><tr><td><span class="el_class">javax.measure.test.format.TestUnitFormat</span></td><td><code>8dcf7070302553db</code></td></tr><tr><td><span class="el_class">javax.measure.test.format.UnitFormatTest</span></td><td><code>0c255ea29bf41818</code></td></tr><tr><td><span class="el_class">javax.measure.test.function.MultiplyConverter</span></td><td><code>4311960a738ea732</code></td></tr><tr><td><span class="el_class">javax.measure.test.quantity.AreaQuantity</span></td><td><code>e9c4e4ec90baa523</code></td></tr><tr><td><span class="el_class">javax.measure.test.quantity.AreaQuantityTest</span></td><td><code>9b7f1f4ac04f9c0d</code></td></tr><tr><td><span class="el_class">javax.measure.test.quantity.DimensionlessQuantity</span></td><td><code>0478949bf648f1bd</code></td></tr><tr><td><span class="el_class">javax.measure.test.quantity.DistanceQuantity</span></td><td><code>1c490af612e20040</code></td></tr><tr><td><span class="el_class">javax.measure.test.quantity.DistanceQuantityTest</span></td><td><code>0198f29755fe7795</code></td></tr><tr><td><span class="el_class">javax.measure.test.quantity.TemperatureQuantity</span></td><td><code>9e5615faaedd602b</code></td></tr><tr><td><span class="el_class">javax.measure.test.quantity.TemperatureQuantityTest</span></td><td><code>35b99edd6cdc45d9</code></td></tr><tr><td><span class="el_class">javax.measure.test.quantity.TestQuantities</span></td><td><code>0014d7499b1c55ea</code></td></tr><tr><td><span class="el_class">javax.measure.test.quantity.TestQuantity</span></td><td><code>9af78700221e2dc4</code></td></tr><tr><td><span class="el_class">javax.measure.test.quantity.VolumeQuantity</span></td><td><code>cd68c02059a974e3</code></td></tr><tr><td><span class="el_class">javax.measure.test.unit.AreaUnit</span></td><td><code>5db98956bc8a4f05</code></td></tr><tr><td><span class="el_class">javax.measure.test.unit.BaseUnit</span></td><td><code>93e6fc2c04495bbd</code></td></tr><tr><td><span class="el_class">javax.measure.test.unit.DistanceUnit</span></td><td><code>ba0c96dd008c01eb</code></td></tr><tr><td><span class="el_class">javax.measure.test.unit.MassUnit</span></td><td><code>d27873aa11bccbeb</code></td></tr><tr><td><span class="el_class">javax.measure.test.unit.SpeedUnit</span></td><td><code>92da5b3048c4913d</code></td></tr><tr><td><span class="el_class">javax.measure.test.unit.TemperatureUnit</span></td><td><code>d37d2bdbab3cc7d0</code></td></tr><tr><td><span class="el_class">javax.measure.test.unit.TimeUnit</span></td><td><code>14de72ab502e00d6</code></td></tr><tr><td><span class="el_class">javax.measure.test.unit.VolumeUnit</span></td><td><code>043994a93de20327</code></td></tr><tr><td><span class="el_class">org.apache.maven.plugin.surefire.log.api.NullConsoleLogger</span></td><td><code>50e0945fec76b333</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.booter.BaseProviderFactory</span></td><td><code>a065300206f0a4fb</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.booter.BiProperty</span></td><td><code>ed0281592f3976b4</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.booter.Command</span></td><td><code>e978d5e725560f9c</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.booter.Constants</span></td><td><code>8f58b0da27218c74</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.booter.DumpErrorSingleton</span></td><td><code>df8370ddf5edddf9</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.booter.ForkedProcessEventType</span></td><td><code>4f32ae2d4e670365</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.booter.ForkingReporterFactory</span></td><td><code>be06f83accc5a8aa</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.booter.ForkingRunListener</span></td><td><code>c34d0a9f28f66585</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.booter.MasterProcessCommand</span></td><td><code>703a9da447acb0e4</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.booter.Shutdown</span></td><td><code>3bf959052b26b7d3</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.cli.CommandLineOption</span></td><td><code>0488df315d17bfbd</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.provider.AbstractProvider</span></td><td><code>2ef81cb912b59bca</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.report.ConsoleOutputCapture</span></td><td><code>7ee3451cf95e2f70</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.report.ConsoleOutputCapture.ForwardingPrintStream</span></td><td><code>f482acd8c9848828</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.report.ConsoleOutputCapture.NullOutputStream</span></td><td><code>a81300d2d50decb6</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.report.ReporterConfiguration</span></td><td><code>bf4075c0385296c2</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.report.RunMode</span></td><td><code>70edc0a9dea60143</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.report.SimpleReportEntry</span></td><td><code>f36c2185901f2bd4</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.stream.AbstractStreamDecoder</span></td><td><code>7df85eb4f028b7df</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.stream.AbstractStreamDecoder.BufferedStream</span></td><td><code>23780cea13cacb7a</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.stream.AbstractStreamDecoder.Memento</span></td><td><code>a26799627fa4eec8</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.stream.AbstractStreamDecoder.Segment</span></td><td><code>d90e293455c15d95</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.stream.AbstractStreamDecoder.StreamReadStatus</span></td><td><code>8d5ee1d510b5c935</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.stream.AbstractStreamEncoder</span></td><td><code>056546e00bbd0d0a</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.stream.SegmentType</span></td><td><code>77b0d78ed3ddd126</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.suite.RunResult</span></td><td><code>1b2f159401642d2c</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.testset.DirectoryScannerParameters</span></td><td><code>526b83be1133f599</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.testset.IncludedExcludedPatterns</span></td><td><code>e12220ce508068df</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.testset.ResolvedTest</span></td><td><code>108a3315282afadd</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.testset.ResolvedTest.ClassMatcher</span></td><td><code>1b24bc1cc27ce1b6</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.testset.ResolvedTest.MethodMatcher</span></td><td><code>55c85473d47129c5</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.testset.ResolvedTest.Type</span></td><td><code>6f46eedd1917ca66</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.testset.RunOrderParameters</span></td><td><code>f74f6b3eb9f1a132</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.testset.TestArtifactInfo</span></td><td><code>6d162cddde2db959</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.testset.TestListResolver</span></td><td><code>45657634a28a7058</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.testset.TestRequest</span></td><td><code>34c19c879694a301</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.util.ReflectionUtils</span></td><td><code>ea68c9b1ce256515</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.util.RunOrder</span></td><td><code>d79c70ab6fc5ca47</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.util.TestsToRun</span></td><td><code>d7a5c9768171c735</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.util.internal.AbstractNoninterruptibleReadableChannel</span></td><td><code>6826ce793980b64e</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.util.internal.AbstractNoninterruptibleWritableChannel</span></td><td><code>484afcc5593fbc9a</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.util.internal.Channels</span></td><td><code>ea93201181a1dc33</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.util.internal.Channels.3</span></td><td><code>fc9a56a87311c6e4</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.util.internal.Channels.4</span></td><td><code>45b0616e59e1bd28</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.util.internal.ClassMethod</span></td><td><code>089fc0ff5815db94</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.util.internal.DaemonThreadFactory</span></td><td><code>b2161e778265b95d</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.util.internal.DaemonThreadFactory.NamedThreadFactory</span></td><td><code>e3fb668fa8792230</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.util.internal.DumpFileUtils</span></td><td><code>197806b66e42b2fb</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.util.internal.ImmutableMap</span></td><td><code>9f27da37fffaffb4</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.util.internal.ImmutableMap.Node</span></td><td><code>de72bb82d59819e0</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.api.util.internal.ObjectUtils</span></td><td><code>e7c0ffe1a3f67fa5</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.AbstractPathConfiguration</span></td><td><code>d182d59dff34303c</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.BooterDeserializer</span></td><td><code>062841b2b101afcc</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ClassLoaderConfiguration</span></td><td><code>c511fbfeb1f35c23</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.Classpath</span></td><td><code>0a65204b1ece9646</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ClasspathConfiguration</span></td><td><code>d14c58928ac6aa7b</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.CommandReader</span></td><td><code>64a1bab35b1542d3</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.CommandReader.1</span></td><td><code>e8b4ddeb08f01720</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.CommandReader.ClassesIterable</span></td><td><code>0230a713e9d465fb</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.CommandReader.ClassesIterator</span></td><td><code>0c6a11b28dfa32ee</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.CommandReader.CommandRunnable</span></td><td><code>79a600ab7ca9309d</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter</span></td><td><code>2005efc2a580e0b9</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.1</span></td><td><code>68f2dae15ae26cc2</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.3</span></td><td><code>fc217f2c1d87c099</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.4</span></td><td><code>065a5b2290c92ffc</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.6</span></td><td><code>850ef2748b5ef5e6</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.7</span></td><td><code>9577114e02a5bdef</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.8</span></td><td><code>3c8febd047cd2b0c</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedBooter.PingScheduler</span></td><td><code>c83e3af27d5d3c47</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ForkedNodeArg</span></td><td><code>9dbb0ff22dfc1303</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.LazyTestsToRun</span></td><td><code>103cde445e357cfe</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.LazyTestsToRun.BlockingIterator</span></td><td><code>60ba82f06653dbd2</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.PpidChecker</span></td><td><code>252b46fcad1d00c8</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ProcessCheckerType</span></td><td><code>6c71fae7c51c4edb</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.PropertiesWrapper</span></td><td><code>ff7e60b7bec1c60a</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.ProviderConfiguration</span></td><td><code>ec2cd1e39ec4278e</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.StartupConfiguration</span></td><td><code>b42e8c2c6fa0821c</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.SystemPropertyManager</span></td><td><code>a02a74045a1775e8</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.TypeEncodedValue</span></td><td><code>4f85f603057a1241</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.spi.AbstractMasterProcessChannelProcessorFactory</span></td><td><code>e50d38cb3f425b64</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.spi.AbstractMasterProcessChannelProcessorFactory.1</span></td><td><code>6a225aa57a96c073</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.spi.AbstractMasterProcessChannelProcessorFactory.2</span></td><td><code>a1fa70e4af42c555</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.spi.CommandChannelDecoder</span></td><td><code>5aa21f0ab6360385</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.spi.EventChannelEncoder</span></td><td><code>f8a182d25ad0bddf</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.spi.EventChannelEncoder.StackTrace</span></td><td><code>2a43aa3682d5dd85</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.spi.LegacyMasterProcessChannelProcessorFactory</span></td><td><code>3b29862697f79d34</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.spi.SurefireMasterProcessChannelProcessorFactory</span></td><td><code>6cc6b9e0d3eb3daa</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.stream.CommandDecoder</span></td><td><code>c416dc2480b2c9fe</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.stream.CommandDecoder.1</span></td><td><code>3e9267db1bad8617</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.booter.stream.EventEncoder</span></td><td><code>7c894cb22c8c16ca</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.junitplatform.JUnitPlatformProvider</span></td><td><code>37e5e044e6495e72</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.junitplatform.LazyLauncher</span></td><td><code>9d58536ee1e8ec15</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.junitplatform.RunListenerAdapter</span></td><td><code>d83ea3b274559631</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.junitplatform.RunListenerAdapter.1</span></td><td><code>e3dd0a351c69e4c0</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.report.ClassMethodIndexer</span></td><td><code>1847d72804b9b137</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shared.lang3.JavaVersion</span></td><td><code>4e21c3be19560aac</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shared.lang3.StringUtils</span></td><td><code>f086d3427078adb7</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shared.lang3.SystemUtils</span></td><td><code>e5eafc9ce14dcbec</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shared.lang3.math.NumberUtils</span></td><td><code>11e46630af73f131</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shared.utils.StringUtils</span></td><td><code>abd8480c7152bf46</code></td></tr><tr><td><span class="el_class">org.apache.maven.surefire.shared.utils.cli.ShutdownHookUtils</span></td><td><code>011b23cd829ec86c</code></td></tr><tr><td><span class="el_class">org.apiguardian.api.API.Status</span></td><td><code>95d0ffea805fc01a</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertArrayEquals</span></td><td><code>9546281f8fa53162</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertEquals</span></td><td><code>02e79388fd0ddf18</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertFalse</span></td><td><code>dea6dc33450c92f0</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertNotNull</span></td><td><code>34eb9c4ee51b2816</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertNull</span></td><td><code>36f7b673f5497507</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertSame</span></td><td><code>77061b15f086bbc5</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertThrows</span></td><td><code>2e413933639a681e</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertTrue</span></td><td><code>6ef3923800860200</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.AssertionUtils</span></td><td><code>a580a647f9b0d1af</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.Assertions</span></td><td><code>64a0b9756fac4df5</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.DisplayNameGenerator</span></td><td><code>c35a1c5eacb0d650</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.DisplayNameGenerator.IndicativeSentences</span></td><td><code>bf14238441e2d44f</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.DisplayNameGenerator.ReplaceUnderscores</span></td><td><code>946dd39b6ab63dc8</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.DisplayNameGenerator.Simple</span></td><td><code>5296f9c1389f9932</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.DisplayNameGenerator.Standard</span></td><td><code>a997bc0f4853379a</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.TestInstance.Lifecycle</span></td><td><code>37b0dab0031994d2</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.extension.ConditionEvaluationResult</span></td><td><code>fc311dfabd3a0e23</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.extension.ExtensionContext</span></td><td><code>9ee1dfa45d7441f9</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.extension.ExtensionContext.Namespace</span></td><td><code>0cd9bf9f40b606c0</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.api.extension.InvocationInterceptor</span></td><td><code>78636fba04d849bd</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.JupiterTestEngine</span></td><td><code>011031d0b1fe58db</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.config.CachingJupiterConfiguration</span></td><td><code>5a6713fc9cdf0bee</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.config.DefaultJupiterConfiguration</span></td><td><code>728d0b1bd257a49b</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.config.EnumConfigurationParameterConverter</span></td><td><code>433eec982a6fabbc</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.config.InstantiatingConfigurationParameterConverter</span></td><td><code>665228d315b7ac04</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.AbstractExtensionContext</span></td><td><code>b3b3a7b8fc36ea23</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor</span></td><td><code>6e33ab105860370c</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.ClassExtensionContext</span></td><td><code>e804dacaeaef4a6a</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.ClassTestDescriptor</span></td><td><code>2f87db51b4485e07</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.DefaultTestInstanceFactoryContext</span></td><td><code>b1b7d61e94c58605</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.DisplayNameUtils</span></td><td><code>e1e9919d0d67675d</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.ExtensionUtils</span></td><td><code>722183e8696c5137</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.JupiterEngineDescriptor</span></td><td><code>3d2dbddce296b041</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.JupiterEngineExtensionContext</span></td><td><code>7146ce9988edfce2</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.JupiterTestDescriptor</span></td><td><code>8af8f2d9d691826c</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.LifecycleMethodUtils</span></td><td><code>286eb923d0b68032</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.MethodBasedTestDescriptor</span></td><td><code>27c3365cc0c4e908</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.MethodExtensionContext</span></td><td><code>b5abe6523f4a32d7</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.TestInstanceLifecycleUtils</span></td><td><code>a247fc379f47df66</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor</span></td><td><code>6a00df6fbbc0ff9d</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.AbstractAnnotatedDescriptorWrapper</span></td><td><code>90b10f2d90d7b01b</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.AbstractOrderingVisitor</span></td><td><code>f8eb297929c247eb</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.AbstractOrderingVisitor.DescriptorWrapperOrderer</span></td><td><code>c8e1585f8474ed61</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.ClassOrderingVisitor</span></td><td><code>1f09fc1c6b9779bb</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.ClassSelectorResolver</span></td><td><code>47bba3d717485ecb</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.DefaultClassDescriptor</span></td><td><code>9064f3528773a161</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.DiscoverySelectorResolver</span></td><td><code>5dc6be896f50996f</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodFinder</span></td><td><code>621c8591e557439a</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodOrderingVisitor</span></td><td><code>7d9864cebac818e1</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodSelectorResolver</span></td><td><code>679c52dec5ee3cd2</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodSelectorResolver.MethodType</span></td><td><code>2ca704c5264882ae</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodSelectorResolver.MethodType.1</span></td><td><code>b3bc3007a7dfdaa0</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodSelectorResolver.MethodType.2</span></td><td><code>598aec8eeefe85e3</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.MethodSelectorResolver.MethodType.3</span></td><td><code>e8fd5325e2431a2b</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsInnerClass</span></td><td><code>d746bcff9a71ec26</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsNestedTestClass</span></td><td><code>f75dfd9ee2347890</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsPotentialTestContainer</span></td><td><code>909f14a1b9fe84dc</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsTestClassWithTests</span></td><td><code>34690a186bfcf3ac</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsTestFactoryMethod</span></td><td><code>941a8af0d47a68fd</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsTestMethod</span></td><td><code>f2039dbd13fce110</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsTestTemplateMethod</span></td><td><code>c13a4260435c18a8</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.discovery.predicates.IsTestableMethod</span></td><td><code>4be487dee199f633</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ConditionEvaluator</span></td><td><code>df91d94b180fe511</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ConstructorInvocation</span></td><td><code>60b80968f2bdedc3</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.DefaultExecutableInvoker</span></td><td><code>97f15d1e3151968f</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.DefaultTestInstances</span></td><td><code>0fc6d90567826bc4</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ExtensionValuesStore</span></td><td><code>e4054d96e0311350</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ExtensionValuesStore.CompositeKey</span></td><td><code>66813dae6cf686fe</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ExtensionValuesStore.MemoizingSupplier</span></td><td><code>df3ce2070a75daaf</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ExtensionValuesStore.StoredValue</span></td><td><code>57cb9ab75faabc0f</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.InterceptingExecutableInvoker</span></td><td><code>42cb185ff5e76387</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.ReflectiveInterceptorCall</span></td><td><code>7e154d03f7a732e5</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.InvocationInterceptorChain</span></td><td><code>9798b2a812d2015d</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.InvocationInterceptorChain.InterceptedInvocation</span></td><td><code>199eef1acbe0b316</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.InvocationInterceptorChain.ValidatingInvocation</span></td><td><code>f064b1c2c4a4bf86</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.JupiterEngineExecutionContext</span></td><td><code>b48cc2a96dab0116</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.JupiterEngineExecutionContext.Builder</span></td><td><code>d1557432e23d2776</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.JupiterEngineExecutionContext.State</span></td><td><code>3926323ef1c7fb03</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.MethodInvocation</span></td><td><code>8b8fd00463d994df</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.NamespaceAwareStore</span></td><td><code>c0df02c5fe61ed0f</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.ParameterResolutionUtils</span></td><td><code>5aba48e342016f8f</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.execution.TestInstancesProvider</span></td><td><code>357bca6226069e7b</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.DisabledCondition</span></td><td><code>1604b4e34c1363e4</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.ExtensionRegistry</span></td><td><code>a610f9723b95715c</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.MutableExtensionRegistry</span></td><td><code>8bb00bdafadd1c3a</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.RepeatedTestExtension</span></td><td><code>32adc631c7f45534</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.TempDirectory</span></td><td><code>a3842c998767d9c7</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.TestInfoParameterResolver</span></td><td><code>3c520f8376f91ff7</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.TestReporterParameterResolver</span></td><td><code>7187071bfc76c6ac</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.TimeoutConfiguration</span></td><td><code>44b8593a8e980687</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.TimeoutDurationParser</span></td><td><code>bb6a412c3829dae9</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.extension.TimeoutExtension</span></td><td><code>13bcdadb20fcc7bb</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.support.JupiterThrowableCollectorFactory</span></td><td><code>46546a446de4c9c0</code></td></tr><tr><td><span class="el_class">org.junit.jupiter.engine.support.OpenTest4JAndJUnit4AwareThrowableCollector</span></td><td><code>e9ee7d4e1adecdd1</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.function.Try</span></td><td><code>5200e6adc191344c</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.function.Try.Failure</span></td><td><code>5d1cf7b52cd7a7ea</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.function.Try.Success</span></td><td><code>98cdc5b539e1abfd</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.logging.LoggerFactory</span></td><td><code>39fdfe1f67bc0eda</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.logging.LoggerFactory.DelegatingLogger</span></td><td><code>c71dcf008235901c</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.support.AnnotationSupport</span></td><td><code>183c2f1d296c27a5</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.support.ReflectionSupport</span></td><td><code>945bcc92fedf115d</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.AnnotationUtils</span></td><td><code>192a2ed89eaed125</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.ClassLoaderUtils</span></td><td><code>bf70ae4f9e1a53b8</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.ClassNamePatternFilterUtils</span></td><td><code>661df78b93e45465</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.ClassUtils</span></td><td><code>60a2276f3701443f</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.ClasspathScanner</span></td><td><code>54e3df9bb2092b52</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.CollectionUtils</span></td><td><code>da7e269949986f5e</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.Preconditions</span></td><td><code>2c2a6e13cda880d4</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.ReflectionUtils</span></td><td><code>74e5cb62c8891604</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.ReflectionUtils.HierarchyTraversalMode</span></td><td><code>3125245fc9d900bc</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.StringUtils</span></td><td><code>237c0cb03ac19254</code></td></tr><tr><td><span class="el_class">org.junit.platform.commons.util.UnrecoverableExceptions</span></td><td><code>e906a774e770e7d4</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.CompositeFilter</span></td><td><code>6a52e5b4f7292f48</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.CompositeFilter.1</span></td><td><code>cc0aadc5880fb4e4</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.EngineDiscoveryListener</span></td><td><code>f7640d771a4374d6</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.EngineDiscoveryListener.1</span></td><td><code>a4cdbe8dd38d8f57</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.EngineExecutionListener</span></td><td><code>693fee5cbd4c2df0</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.EngineExecutionListener.1</span></td><td><code>999902b68f81dd9a</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.ExecutionRequest</span></td><td><code>b74e001541d12dd1</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.Filter</span></td><td><code>5ffaaa90df97ca04</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.FilterResult</span></td><td><code>a787a89e1f12d534</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.SelectorResolutionResult</span></td><td><code>b0cf35dcc829d3f4</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.SelectorResolutionResult.Status</span></td><td><code>c505c2274f89f01d</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.TestDescriptor</span></td><td><code>aeaac58c9e7df241</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.TestDescriptor.Type</span></td><td><code>20fe3e02963cb4b9</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.TestExecutionResult</span></td><td><code>6b1b512d17bb680e</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.TestExecutionResult.Status</span></td><td><code>ad256e9fb4407e04</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.UniqueId</span></td><td><code>f649a106c8945a6a</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.UniqueId.Segment</span></td><td><code>f77d401d3f546230</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.UniqueIdFormat</span></td><td><code>6c86362ad62a1954</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.discovery.ClassSelector</span></td><td><code>a1cacad45a144508</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.discovery.DiscoverySelectors</span></td><td><code>b6ccdda98704d231</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.discovery.MethodSelector</span></td><td><code>69292f007e74298d</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.descriptor.AbstractTestDescriptor</span></td><td><code>b9c965daf4d9a476</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.descriptor.ClassSource</span></td><td><code>37bd92069360f773</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.descriptor.EngineDescriptor</span></td><td><code>8f2f77769ee0e9c9</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.descriptor.MethodSource</span></td><td><code>1d55ac49f5cabc20</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.ClassContainerSelectorResolver</span></td><td><code>dc6114dc7e983729</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.EngineDiscoveryRequestResolution</span></td><td><code>506a6b871d2fd8fe</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.EngineDiscoveryRequestResolution.DefaultContext</span></td><td><code>db18f59764ea1f2a</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.EngineDiscoveryRequestResolver</span></td><td><code>687cbe6b3b72b453</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.EngineDiscoveryRequestResolver.Builder</span></td><td><code>21b59a849a1e0107</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.EngineDiscoveryRequestResolver.DefaultInitializationContext</span></td><td><code>1904819635770d62</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.SelectorResolver</span></td><td><code>0e255bcad7a1cf5c</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.SelectorResolver.Match</span></td><td><code>7260c13e30201f83</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.SelectorResolver.Match.Type</span></td><td><code>4294f41b496cc4ce</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.discovery.SelectorResolver.Resolution</span></td><td><code>721adb823179ce16</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.ExclusiveResource</span></td><td><code>efa2e06c87a351c3</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.ExclusiveResource.LockMode</span></td><td><code>96e95d210b150f97</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine</span></td><td><code>5c686da27ab7f7b0</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor</span></td><td><code>963cba9b029b4b19</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.LockManager</span></td><td><code>5aedd3bd3957b5a6</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.Node</span></td><td><code>d5630bd7243c23ff</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.Node.SkipResult</span></td><td><code>5aca1404ff0f9294</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeExecutionAdvisor</span></td><td><code>7c2670c7a35cfba6</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeTestTask</span></td><td><code>f652d8cc5e11bdc5</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeTestTask.DefaultDynamicTestExecutor</span></td><td><code>abd00dd511d28b2f</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeTestTaskContext</span></td><td><code>bdf88cd3834282a5</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeTreeWalker</span></td><td><code>c689092b060d0b12</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeUtils</span></td><td><code>a7ec8f66d373c169</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.NodeUtils.1</span></td><td><code>5a44a7e2cbf864b4</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService</span></td><td><code>4021fb0b954634b6</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.SingleLock</span></td><td><code>2036ec8b92a38105</code></td></tr><tr><td><span class="el_class">org.junit.platform.engine.support.hierarchical.ThrowableCollector</span></td><td><code>6fd7a27676be3c50</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.EngineDiscoveryResult</span></td><td><code>9f305fb9cafa070a</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.EngineDiscoveryResult.Status</span></td><td><code>c6f73a818e869b3a</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.LauncherDiscoveryListener</span></td><td><code>4c7a9b5f0af6369d</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.LauncherDiscoveryListener.1</span></td><td><code>d946f222ae757dc1</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.LauncherSessionListener</span></td><td><code>e0db832b050d072e</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.LauncherSessionListener.1</span></td><td><code>44b3640faa83f474</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.TestExecutionListener</span></td><td><code>07236b45fbd63c03</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.TestIdentifier</span></td><td><code>2b393a1d76332bc4</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.TestPlan</span></td><td><code>ab4051f757ff4941</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.CompositeEngineExecutionListener</span></td><td><code>d49c273c367d32cb</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.CompositeTestExecutionListener</span></td><td><code>2fec5f997b539877</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.DefaultDiscoveryRequest</span></td><td><code>5706e3938a47edbc</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.DefaultLauncher</span></td><td><code>75b262c721c1b524</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.DefaultLauncherConfig</span></td><td><code>6fbfe73d83f861ce</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.DefaultLauncherSession</span></td><td><code>c8ae22f36a4f9c66</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.DefaultLauncherSession.ClosedLauncher</span></td><td><code>33b03a5d32880c72</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.DefaultLauncherSession.DelegatingLauncher</span></td><td><code>62a46fcfba060cd0</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.DelegatingEngineExecutionListener</span></td><td><code>98129d4f91790da1</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.EngineDiscoveryOrchestrator</span></td><td><code>9260ad30b5b1dcb4</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.EngineDiscoveryOrchestrator.Phase</span></td><td><code>c5da52319ffdb6cc</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.EngineDiscoveryResultValidator</span></td><td><code>ae8e824d499c28c0</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.EngineExecutionOrchestrator</span></td><td><code>ada5b19c47df0fc9</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.EngineFilterer</span></td><td><code>5886e10a3932fe3b</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.EngineIdValidator</span></td><td><code>6ec884e3f1252b64</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.ExecutionListenerAdapter</span></td><td><code>027b702b863a1b7b</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.InternalTestPlan</span></td><td><code>6c1da5c749fc1754</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherConfig</span></td><td><code>33646d7c20caa86c</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherConfig.Builder</span></td><td><code>1a313fdb0cf517bd</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherConfigurationParameters</span></td><td><code>443c9d189d7662aa</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherConfigurationParameters.Builder</span></td><td><code>89b3d95a424a68ea</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherConfigurationParameters.ParameterProvider</span></td><td><code>da0ae1240b20de42</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherConfigurationParameters.ParameterProvider.2</span></td><td><code>481aeb52e3ac15c4</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherConfigurationParameters.ParameterProvider.3</span></td><td><code>2d8e65fa362495e2</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherDiscoveryRequestBuilder</span></td><td><code>75b65d32610aecc6</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherDiscoveryResult</span></td><td><code>6ba764b26de92159</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.LauncherFactory</span></td><td><code>8e309d53ca525395</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.ListenerRegistry</span></td><td><code>387fd40f10f1e6b5</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.OutcomeDelayingEngineExecutionListener</span></td><td><code>4c68ad66a29b4dd7</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.OutcomeDelayingEngineExecutionListener.Outcome</span></td><td><code>b6ca0889820c3cca</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.ServiceLoaderRegistry</span></td><td><code>b9cb7c73b65895b8</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.ServiceLoaderTestEngineRegistry</span></td><td><code>11cc074bf5cdf22e</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.core.StreamInterceptingTestExecutionListener</span></td><td><code>36972afd5e542435</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.listeners.UniqueIdTrackingListener</span></td><td><code>f828b9fe46e426f0</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.listeners.discovery.AbortOnFailureLauncherDiscoveryListener</span></td><td><code>ee6720edc40a9ccf</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.listeners.discovery.LauncherDiscoveryListeners</span></td><td><code>d311082436d55ae9</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.listeners.discovery.LauncherDiscoveryListeners.LauncherDiscoveryListenerType</span></td><td><code>e18e1a0e62e22287</code></td></tr><tr><td><span class="el_class">org.junit.platform.launcher.listeners.session.LauncherSessionListeners</span></td><td><code>792ecbf10e49d607</code></td></tr><tr><td><span class="el_class">sun.text.resources.cldr.ext.FormatData_de</span></td><td><code>bb786f9842a8e946</code></td></tr><tr><td><span class="el_class">sun.util.resources.cldr.provider.CLDRLocaleDataMetaInfo</span></td><td><code>9ed83010eeaa402e</code></td></tr><tr><td><span class="el_class">sun.util.resources.provider.LocaleDataProvider</span></td><td><code>090384bcacb31f21</code></td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/jacoco.csv b/docs/site/jacoco/jacoco.csv
      new file mode 100644
      index 00000000..aea27620
      --- /dev/null
      +++ b/docs/site/jacoco/jacoco.csv
      @@ -0,0 +1 @@
      +GROUP,PACKAGE,CLASS,INSTRUCTION_MISSED,INSTRUCTION_COVERED,BRANCH_MISSED,BRANCH_COVERED,LINE_MISSED,LINE_COVERED,COMPLEXITY_MISSED,COMPLEXITY_COVERED,METHOD_MISSED,METHOD_COVERED
      diff --git a/docs/site/jacoco/jacoco.xml b/docs/site/jacoco/jacoco.xml
      new file mode 100644
      index 00000000..ae460212
      --- /dev/null
      +++ b/docs/site/jacoco/jacoco.xml
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8" standalone="yes"?><!DOCTYPE report PUBLIC "-//JACOCO//DTD Report 1.1//EN" "report.dtd"><report name="Units of Measurement API"><sessioninfo id="DESKTOP-KNPRT5O-c7c535a" start="1698868767586" dump="1698868799888"/><sessioninfo id="DESKTOP-KNPRT5O-1f6465b" start="1698868767723" dump="1698868799992"/><sessioninfo id="DESKTOP-KNPRT5O-81aa4c3c" start="1698868768646" dump="1698868800159"/><sessioninfo id="DESKTOP-KNPRT5O-c3c83cc3" start="1698868767645" dump="1698868800373"/><sessioninfo id="DESKTOP-KNPRT5O-363d7b26" start="1698868768201" dump="1698868800425"/><sessioninfo id="DESKTOP-KNPRT5O-bdf8763d" start="1698868767544" dump="1698868800470"/><sessioninfo id="DESKTOP-KNPRT5O-e86e73c5" start="1698868935689" dump="1698868959263"/><sessioninfo id="DESKTOP-KNPRT5O-d16ddcd9" start="1698868936204" dump="1698868959311"/><sessioninfo id="DESKTOP-KNPRT5O-7b221d95" start="1698868935864" dump="1698868959353"/><sessioninfo id="DESKTOP-KNPRT5O-eeb88ced" start="1698868936311" dump="1698868959387"/><sessioninfo id="DESKTOP-KNPRT5O-bf33dd39" start="1698868936102" dump="1698868959434"/><sessioninfo id="DESKTOP-KNPRT5O-a4f32476" start="1698868935782" dump="1698868959491"/></report>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure.format/MeasurementParseException.html b/docs/site/jacoco/javax.measure.format/MeasurementParseException.html
      new file mode 100644
      index 00000000..2648d863
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure.format/MeasurementParseException.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>MeasurementParseException</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.html" class="el_package">javax.measure.format</a> &gt; <span class="el_class">MeasurementParseException</span></div><h1>MeasurementParseException</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 36</td><td class="ctr2">100 %</td><td class="bar">0 of 2</td><td class="ctr2">100 %</td><td class="ctr1">0</td><td class="ctr2">7</td><td class="ctr1">0</td><td class="ctr2">14</td><td class="ctr1">0</td><td class="ctr2">6</td></tr></tfoot><tbody><tr><td id="a4"><a href="MeasurementParseException.java.html#L70" class="el_method">MeasurementParseException(String, CharSequence, int)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="10" alt="10"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">4</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a0"><a href="MeasurementParseException.java.html#L122" class="el_method">getParsedString()</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="108" height="10" title="9" alt="9"/></td><td class="ctr2" id="c1">100 %</td><td class="bar" id="d0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="2" alt="2"/></td><td class="ctr2" id="e0">100 %</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g0">2</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">3</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a2"><a href="MeasurementParseException.java.html#L84" class="el_method">MeasurementParseException(CharSequence, int)</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="72" height="10" title="6" alt="6"/></td><td class="ctr2" id="c2">100 %</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i2">2</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a5"><a href="MeasurementParseException.java.html#L94" class="el_method">MeasurementParseException(Throwable)</a></td><td class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" width="48" height="10" title="4" alt="4"/></td><td class="ctr2" id="c3">100 %</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">0</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i3">2</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">1</td></tr><tr><td id="a3"><a href="MeasurementParseException.java.html#L104" class="el_method">MeasurementParseException(String)</a></td><td class="bar" id="b4"><img src="../jacoco-resources/greenbar.gif" width="48" height="10" title="4" alt="4"/></td><td class="ctr2" id="c4">100 %</td><td class="bar" id="d4"/><td class="ctr2" id="e4">n/a</td><td class="ctr1" id="f4">0</td><td class="ctr2" id="g4">1</td><td class="ctr1" id="h4">0</td><td class="ctr2" id="i4">2</td><td class="ctr1" id="j4">0</td><td class="ctr2" id="k4">1</td></tr><tr><td id="a1"><a href="MeasurementParseException.java.html#L113" class="el_method">getPosition()</a></td><td class="bar" id="b5"><img src="../jacoco-resources/greenbar.gif" width="36" height="10" title="3" alt="3"/></td><td class="ctr2" id="c5">100 %</td><td class="bar" id="d5"/><td class="ctr2" id="e5">n/a</td><td class="ctr1" id="f5">0</td><td class="ctr2" id="g5">1</td><td class="ctr1" id="h5">0</td><td class="ctr2" id="i5">1</td><td class="ctr1" id="j5">0</td><td class="ctr2" id="k5">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure.format/MeasurementParseException.java.html b/docs/site/jacoco/javax.measure.format/MeasurementParseException.java.html
      new file mode 100644
      index 00000000..1aa2d8a0
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure.format/MeasurementParseException.java.html
      @@ -0,0 +1,128 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>MeasurementParseException.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.source.html" class="el_package">javax.measure.format</a> &gt; <span class="el_source">MeasurementParseException.java</span></div><h1>MeasurementParseException.java</h1><pre class="source lang-java linenums">/*
      + * Units of Measurement API
      + * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + *
      + * All rights reserved.
      + *
      + * Redistribution and use in source and binary forms, with or without modification,
      + * are permitted provided that the following conditions are met:
      + *
      + * 1. Redistributions of source code must retain the above copyright notice,
      + *    this list of conditions and the following disclaimer.
      + *
      + * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
      + *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
      + *
      + * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
      + *    derived from this software without specific prior written permission.
      + *
      + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot;
      + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
      + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
      + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
      + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
      + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      + */
      +package javax.measure.format;
      +
      +import javax.measure.MeasurementException;
      +
      +/**
      + * Signals that an error has been reached unexpectedly while parsing.
      + *
      + * @author Werner Keil
      + * @version 1.1, March 27, 2018
      + * @since 2.0
      + */
      +public class MeasurementParseException extends MeasurementException {
      +
      +    /**
      +     * For cross-version compatibility.
      +     */
      +    private static final long serialVersionUID = 2727457045794254852L;
      +
      +    /**
      +     * The zero-based character position in the string being parsed at which the error was found while parsing.
      +     *
      +     * @serial
      +     */
      +    private int position;
      +
      +    /** The original input data. */
      +    private CharSequence data;
      +
      +    /**
      +     * Constructs a MeasurementParseException with the specified detail message, parsed text and index. A detail message is a String that describes
      +     * this particular exception.
      +     *
      +     * @param message
      +     *            the detail message
      +     * @param parsedData
      +     *            the parsed text, should not be null
      +     * @param position
      +     *            the position where the error was found while parsing.
      +     */
      +    public MeasurementParseException(String message, CharSequence parsedData, int position) {
      +<span class="fc" id="L70">        super(message);</span>
      +<span class="fc" id="L71">        this.data = parsedData;</span>
      +<span class="fc" id="L72">        this.position = position;</span>
      +<span class="fc" id="L73">    }</span>
      +
      +    /**
      +     * Constructs a MeasurementParseException with the parsed text and offset. A detail message is a String that describes this particular exception.
      +     *
      +     * @param parsedData
      +     *            the parsed text, should not be null
      +     * @param position
      +     *            the position where the error is found while parsing.
      +     */
      +    public MeasurementParseException(CharSequence parsedData, int position) {
      +<span class="fc" id="L84">        this(&quot;Parse Error&quot;, parsedData, position);</span>
      +<span class="fc" id="L85">    }</span>
      +
      +    /**
      +     * Constructs a MeasurementParseException with the specified cause.
      +     *
      +     * @param cause
      +     *            the root cause
      +     */
      +    public MeasurementParseException(Throwable cause) {
      +<span class="fc" id="L94">        super(cause);</span>
      +<span class="fc" id="L95">    }</span>
      +
      +    /**
      +     * Constructs a MeasurementParseException with the specified detail message.
      +     *
      +     * @param message
      +     *            the detail message
      +     */
      +    public MeasurementParseException(String message) {
      +<span class="fc" id="L104">        super(message);</span>
      +<span class="fc" id="L105">    }</span>
      +
      +    /**
      +     * Returns the position where the error was found.
      +     *
      +     * @return the position of the error
      +     */
      +    public int getPosition() {
      +<span class="fc" id="L113">        return position;</span>
      +    }
      +
      +    /**
      +     * Returns the string that was being parsed.
      +     *
      +     * @return the parsed string, or {@code null}, if {@code null} was passed as input.
      +     */
      +    public String getParsedString() {
      +<span class="fc bfc" id="L122" title="All 2 branches covered.">        if (data == null) {</span>
      +<span class="fc" id="L123">            return null;</span>
      +        }
      +<span class="fc" id="L125">        return data.toString();</span>
      +    }
      +}
      +</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure.format/QuantityFormat.html b/docs/site/jacoco/javax.measure.format/QuantityFormat.html
      new file mode 100644
      index 00000000..86fc3610
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure.format/QuantityFormat.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>QuantityFormat</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.html" class="el_package">javax.measure.format</a> &gt; <span class="el_class">QuantityFormat</span></div><h1>QuantityFormat</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 2</td><td class="ctr2">100 %</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">1</td><td class="ctr1">0</td><td class="ctr2">1</td><td class="ctr1">0</td><td class="ctr2">1</td></tr></tfoot><tbody><tr><td id="a0"><a href="QuantityFormat.java.html#L116" class="el_method">isLocaleSensitive()</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="2" alt="2"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">1</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure.format/QuantityFormat.java.html b/docs/site/jacoco/javax.measure.format/QuantityFormat.java.html
      new file mode 100644
      index 00000000..eacdf67b
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure.format/QuantityFormat.java.html
      @@ -0,0 +1,119 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>QuantityFormat.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.source.html" class="el_package">javax.measure.format</a> &gt; <span class="el_source">QuantityFormat.java</span></div><h1>QuantityFormat.java</h1><pre class="source lang-java linenums">/*
      + * Units of Measurement API
      + * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + *
      + * All rights reserved.
      + *
      + * Redistribution and use in source and binary forms, with or without modification,
      + * are permitted provided that the following conditions are met:
      + *
      + * 1. Redistributions of source code must retain the above copyright notice,
      + *    this list of conditions and the following disclaimer.
      + *
      + * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
      + *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
      + *
      + * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
      + *    derived from this software without specific prior written permission.
      + *
      + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot;
      + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
      + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
      + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
      + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
      + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      + */
      +package javax.measure.format;
      +
      +import java.io.IOException;
      +import java.text.ParsePosition;
      +
      +import javax.measure.Quantity;
      +
      +/**
      + * Formats instances of {@link Quantity}.
      + *
      + * &lt;dl&gt;
      + * &lt;dt&gt;&lt;span class=&quot;strong&quot;&gt;&lt;a id=&quot;synchronization&quot;&gt;Synchronization&lt;/a&gt;&lt;/span&gt;&lt;/dt&gt;
      + * &lt;/dl&gt;
      + * Instances of this class are not required to be thread-safe. It is recommended to use separate format instances for each thread. If multiple threads
      + * access a format concurrently, it must be synchronized externally.
      + *
      + * @author &lt;a href=&quot;mailto:werner@uom.technology&quot;&gt;Werner Keil&lt;/a&gt;
      + * @author &lt;a href=&quot;mailto:thodoris.bais@gmail.com&quot;&gt;Thodoris Bais&lt;/a&gt;
      + *
      + * @version 1.1, 20 May, 2023
      + * @since 2.0
      + *
      + * @see Quantity
      + */
      +public interface QuantityFormat {
      +
      +    /**
      +     * Formats the specified quantity into an {@code Appendable}.
      +     *
      +     * @param quantity
      +     *          the quantity to format.
      +     * @param destination
      +     *          the appendable destination.
      +     * @return the specified {@code Appendable}.
      +     * @throws IOException
      +     *           if an I/O exception occurs.
      +     */
      +    public Appendable format(Quantity&lt;?&gt; quantity, Appendable destination) throws IOException;
      +
      +    /**
      +     * Formats the specified {@link Quantity}.
      +     *
      +     * @param quantity
      +     *            the {@link Quantity} to format, not {@code null}
      +     * @return the string representation using the settings of this {@link QuantityFormat}.
      +     */
      +    String format(Quantity&lt;?&gt; quantity);
      +
      +    /**
      +     * Parses a portion of the specified {@code CharSequence} from the specified position to produce a {@link Quantity}.
      +     * If parsing succeeds, then the index of the {@code pos} argument is updated to the index after the last character used.
      +     *
      +     * @param csq
      +     *          the {@code CharSequence} to parse.
      +     * @param pos
      +     *          a ParsePosition object holding the current parsing index and error parsing index information as described above.
      +     * @return the quantity parsed from the specified character sub-sequence.
      +     * @throws MeasurementParseException
      +     *           if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
      +     */
      +    public Quantity&lt;?&gt; parse(CharSequence csq, ParsePosition pos) throws MeasurementParseException;
      +
      +    /**
      +     * Parses the specified {@code CharSequence} to produce a {@link Quantity}.
      +     * &lt;p&gt;
      +     * The parse must complete normally and parse the entire text. If the parse completes without reading the entire length of the text, an exception
      +     * is thrown. If any other problem occurs during parsing, an exception is thrown.
      +     * &lt;/p&gt;
      +     *
      +     * @param csq
      +     *          the {@code CharSequence} to parse.
      +     * @return the quantity parsed from the specified character sub-sequence.
      +     * @throws MeasurementParseException
      +     *           if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
      +     */
      +    public Quantity&lt;?&gt; parse(CharSequence csq) throws MeasurementParseException;
      +
      +    /**
      +     * Returns {@code true} if this {@link QuantityFormat} depends on a {@code Locale} to perform its tasks.
      +     * &lt;p&gt;
      +     * In environments that do not support a {@code Locale}, e.g. Java ME, this usually returns {@code false}.
      +     * &lt;/p&gt;
      +     *
      +     * @return whether this format depends on the locale.
      +     */
      +    default boolean isLocaleSensitive() {
      +<span class="fc" id="L116">        return false;</span>
      +    }
      +}
      +</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure.format/UnitFormat.html b/docs/site/jacoco/javax.measure.format/UnitFormat.html
      new file mode 100644
      index 00000000..b2c50655
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure.format/UnitFormat.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>UnitFormat</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.html" class="el_package">javax.measure.format</a> &gt; <span class="el_class">UnitFormat</span></div><h1>UnitFormat</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 2</td><td class="ctr2">100 %</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">1</td><td class="ctr1">0</td><td class="ctr2">1</td><td class="ctr1">0</td><td class="ctr2">1</td></tr></tfoot><tbody><tr><td id="a0"><a href="UnitFormat.java.html#L115" class="el_method">isLocaleSensitive()</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="2" alt="2"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">1</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure.format/UnitFormat.java.html b/docs/site/jacoco/javax.measure.format/UnitFormat.java.html
      new file mode 100644
      index 00000000..5690280e
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure.format/UnitFormat.java.html
      @@ -0,0 +1,151 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>UnitFormat.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.source.html" class="el_package">javax.measure.format</a> &gt; <span class="el_source">UnitFormat.java</span></div><h1>UnitFormat.java</h1><pre class="source lang-java linenums">/*
      + * Units of Measurement API
      + * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + *
      + * All rights reserved.
      + *
      + * Redistribution and use in source and binary forms, with or without modification,
      + * are permitted provided that the following conditions are met:
      + *
      + * 1. Redistributions of source code must retain the above copyright notice,
      + *    this list of conditions and the following disclaimer.
      + *
      + * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
      + *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
      + *
      + * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
      + *    derived from this software without specific prior written permission.
      + *
      + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot;
      + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
      + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
      + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
      + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
      + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      + */
      +package javax.measure.format;
      +
      +import java.io.IOException;
      +import java.text.ParsePosition;
      +
      +import javax.measure.Unit;
      +
      +/**
      + * Formats instances of {@link Unit} to a {@link String} or {@link Appendable} and parses a {@link CharSequence} to a {@link Unit}.
      + *
      + * &lt;dl&gt;
      + * &lt;dt&gt;&lt;span class=&quot;strong&quot;&gt;&lt;a id=&quot;synchronization&quot;&gt;Synchronization&lt;/a&gt;&lt;/span&gt;&lt;/dt&gt;
      + * &lt;/dl&gt;
      + * &lt;p&gt;
      + * Instances of this class are not required to be thread-safe. It is recommended to use separate format instances for each thread. If multiple threads
      + * access a format concurrently, it must be synchronized externally.
      + * &lt;/p&gt;
      + *
      + * @author &lt;a href=&quot;mailto:jean-marie@dautelle.com&quot;&gt;Jean-Marie Dautelle&lt;/a&gt;
      + * @author &lt;a href=&quot;mailto:werner@uom.technology&quot;&gt;Werner Keil&lt;/a&gt;
      + *
      + * @version 2.2, May 20, 2023
      + * @since 1.0
      + *
      + * @see Unit
      + */
      +public interface UnitFormat {
      +    /**
      +     * Formats the specified {@link Unit}.
      +     *
      +     * @param unit
      +     *            the {@link Unit} to format, not {@code null}
      +     * @param appendable
      +     *            the appendable destination.
      +     * @return the appendable destination passed in with formatted text appended.
      +     * @throws IOException
      +     *             if an error occurs while writing to the destination.
      +     */
      +    Appendable format(Unit&lt;?&gt; unit, Appendable appendable) throws IOException;
      +
      +    /**
      +     * Formats the specified {@link Unit}.
      +     *
      +     * @param unit
      +     *            the {@link Unit} to format, not {@code null}
      +     * @return the string representation using the settings of this {@link UnitFormat}.
      +     */
      +    String format(Unit&lt;?&gt; unit);
      +
      +    /**
      +     * Attaches a system-wide label to the specified {@link Unit}.
      +     * &lt;p&gt;
      +     * This method overrides the previous unit's label (e.g. label from unit database or unit system) as units may only have one label. Depending on the
      +     * {@link UnitFormat} implementation, this call may be ignored if the particular unit already has a label.
      +     * &lt;/p&gt;
      +     * If a {@link UnitFormat} implementation is explicitly &lt;b&gt;immutable&lt;/b&gt;, similar to e.g. the result of &lt;code&gt;Collections.unmodifiableList()&lt;/code&gt;,
      +     * then an {@linkplain UnsupportedOperationException} may be thrown upon this call.
      +     * &lt;p&gt;
      +     * Since &lt;code&gt;UnitFormat&lt;/code&gt; implementations often apply the Singleton pattern, &lt;b&gt;system-wide&lt;/b&gt; means, the label applies to every instance of
      +     * &lt;code&gt;UnitFormatA&lt;/code&gt; implementing &lt;code&gt;UnitFormat&lt;/code&gt; in this case, but not every instance of &lt;code&gt;UnitFormatB&lt;/code&gt; or &lt;code&gt;UnitFormatC&lt;/code&gt; both
      +     * also implementing &lt;code&gt;UnitFormat&lt;/code&gt;. If a &lt;code&gt;UnitFormat&lt;/code&gt; #isLocaleSensitive() it is up to the implementation, whether the label is
      +     * ignored, applied in a local-neutral manner (in addition to its local-sensitive information) or locale-specific.
      +     * &lt;/p&gt;
      +     *
      +     * @param unit
      +     *            the unit being labeled.
      +     * @param label
      +     *            the new label for this unit.
      +     * @throws IllegalArgumentException
      +     *             if the label is not a valid identifier. This may include characters not supported by a particular {@link UnitFormat} implementation
      +     *             (e.g. only &lt;b&gt;ASCII&lt;/b&gt; characters for certain devices)
      +     * @throws UnsupportedOperationException
      +     *             if the &lt;code&gt;label&lt;/code&gt; operation is not supported by this {@link UnitFormat}
      +     */
      +    void label(Unit&lt;?&gt; unit, String label);
      +
      +    /**
      +     * Returns &lt;code&gt;true&lt;/code&gt; if this {@link UnitFormat} depends on a &lt;code&gt;Locale&lt;/code&gt; to perform its tasks.
      +     * &lt;p&gt;
      +     * In environments that do not support a &lt;code&gt;Locale&lt;/code&gt;, e.g. Java ME, this usually returns &lt;code&gt;false&lt;/code&gt;.
      +     * &lt;/p&gt;
      +     *
      +     * @return Whether this format depends on a locale.
      +     */
      +    default boolean isLocaleSensitive() {
      +<span class="fc" id="L115">        return false;</span>
      +    }
      +
      +    /**
      +     * Parses a portion of the specified &lt;code&gt;CharSequence&lt;/code&gt; from the specified position to produce a {@link Unit}.
      +     * If parsing succeeds, then the index of the &lt;code&gt;pos&lt;/code&gt; argument is updated to the index after the last character used.
      +     *
      +     * @param csq
      +     *            the &lt;code&gt;CharSequence&lt;/code&gt; to parse.
      +     * @param pos
      +     *            a ParsePosition object holding the current parsing index and error parsing index information as described above.
      +     * @return the unit parsed from the specified character sub-sequence.
      +     * @throws MeasurementParseException
      +     *             if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
      +     * @since 2.0
      +     */
      +    Unit&lt;?&gt; parse(CharSequence csq, ParsePosition pos) throws MeasurementParseException;
      +
      +    /**
      +     * Parses the text into an instance of {@link Unit}.
      +     * &lt;p&gt;
      +     * The parse must complete normally and parse the entire text. If the parse completes without reading the entire length of the text, an exception
      +     * is thrown. If any other problem occurs during parsing, an exception is thrown.
      +     * &lt;/p&gt;
      +     *
      +     * @param csq
      +     *            the {@code CharSequence} to parse.
      +     * @return the unit parsed from the specified character sequence.
      +     * @throws MeasurementParseException
      +     *             if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
      +     * @throws UnsupportedOperationException
      +     *             if the {@link UnitFormat} is unable to parse.
      +     * @since 2.0
      +     */
      +    Unit&lt;?&gt; parse(CharSequence csq) throws MeasurementParseException;
      +}
      +</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure.format/index.html b/docs/site/jacoco/javax.measure.format/index.html
      new file mode 100644
      index 00000000..530af207
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure.format/index.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>javax.measure.format</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="index.source.html" class="el_source">Source Files</a><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <span class="el_package">javax.measure.format</span></div><h1>javax.measure.format</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 40</td><td class="ctr2">100 %</td><td class="bar">0 of 2</td><td class="ctr2">100 %</td><td class="ctr1">0</td><td class="ctr2">9</td><td class="ctr1">0</td><td class="ctr2">16</td><td class="ctr1">0</td><td class="ctr2">8</td><td class="ctr1">0</td><td class="ctr2">3</td></tr></tfoot><tbody><tr><td id="a0"><a href="MeasurementParseException.html" class="el_class">MeasurementParseException</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="36" alt="36"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="2" alt="2"/></td><td class="ctr2" id="e0">100 %</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">7</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">14</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">6</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m0">1</td></tr><tr><td id="a1"><a href="QuantityFormat.html" class="el_class">QuantityFormat</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="6" height="10" title="2" alt="2"/></td><td class="ctr2" id="c1">100 %</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">1</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td><td class="ctr1" id="l1">0</td><td class="ctr2" id="m1">1</td></tr><tr><td id="a2"><a href="UnitFormat.html" class="el_class">UnitFormat</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="6" height="10" title="2" alt="2"/></td><td class="ctr2" id="c2">100 %</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i2">1</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td><td class="ctr1" id="l2">0</td><td class="ctr2" id="m2">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure.format/index.source.html b/docs/site/jacoco/javax.measure.format/index.source.html
      new file mode 100644
      index 00000000..f161ad57
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure.format/index.source.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>javax.measure.format</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="index.html" class="el_class">Classes</a><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <span class="el_package">javax.measure.format</span></div><h1>javax.measure.format</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 40</td><td class="ctr2">100 %</td><td class="bar">0 of 2</td><td class="ctr2">100 %</td><td class="ctr1">0</td><td class="ctr2">9</td><td class="ctr1">0</td><td class="ctr2">16</td><td class="ctr1">0</td><td class="ctr2">8</td><td class="ctr1">0</td><td class="ctr2">3</td></tr></tfoot><tbody><tr><td id="a0"><a href="MeasurementParseException.java.html" class="el_source">MeasurementParseException.java</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="36" alt="36"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="2" alt="2"/></td><td class="ctr2" id="e0">100 %</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">7</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">14</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">6</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m0">1</td></tr><tr><td id="a2"><a href="UnitFormat.java.html" class="el_source">UnitFormat.java</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="6" height="10" title="2" alt="2"/></td><td class="ctr2" id="c1">100 %</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">1</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td><td class="ctr1" id="l1">0</td><td class="ctr2" id="m1">1</td></tr><tr><td id="a1"><a href="QuantityFormat.java.html" class="el_source">QuantityFormat.java</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="6" height="10" title="2" alt="2"/></td><td class="ctr2" id="c2">100 %</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i2">1</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td><td class="ctr1" id="l2">0</td><td class="ctr2" id="m2">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure.spi/FormatService$FormatType.html b/docs/site/jacoco/javax.measure.spi/FormatService$FormatType.html
      new file mode 100644
      index 00000000..b85ca854
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure.spi/FormatService$FormatType.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>FormatService.FormatType</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.html" class="el_package">javax.measure.spi</a> &gt; <span class="el_class">FormatService.FormatType</span></div><h1>FormatService.FormatType</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 15</td><td class="ctr2">100 %</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">1</td><td class="ctr1">0</td><td class="ctr2">3</td><td class="ctr1">0</td><td class="ctr2">1</td></tr></tfoot><tbody><tr><td id="a0"><a href="FormatService.java.html#L47" class="el_method">static {...}</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="15" alt="15"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">3</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure.spi/FormatService.java.html b/docs/site/jacoco/javax.measure.spi/FormatService.java.html
      new file mode 100644
      index 00000000..6ecc651c
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure.spi/FormatService.java.html
      @@ -0,0 +1,120 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>FormatService.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.source.html" class="el_package">javax.measure.spi</a> &gt; <span class="el_source">FormatService.java</span></div><h1>FormatService.java</h1><pre class="source lang-java linenums">/*
      + * Units of Measurement API
      + * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + *
      + * All rights reserved.
      + *
      + * Redistribution and use in source and binary forms, with or without modification,
      + * are permitted provided that the following conditions are met:
      + *
      + * 1. Redistributions of source code must retain the above copyright notice,
      + *    this list of conditions and the following disclaimer.
      + *
      + * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
      + *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
      + *
      + * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
      + *    derived from this software without specific prior written permission.
      + *
      + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot;
      + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
      + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
      + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
      + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
      + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      + */
      +package javax.measure.spi;
      +
      +import java.util.Set;
      +
      +import javax.measure.format.QuantityFormat;
      +import javax.measure.format.UnitFormat;
      +
      +/**
      + * This interface represents the service to obtain instances of {@link UnitFormat} and {@link QuantityFormat}.
      + *
      + * @author &lt;a href=&quot;mailto:werner@uom.technology&quot;&gt;Werner Keil&lt;/a&gt;
      + * @version 2.3, May 20, 2023
      + * @since 2.0
      + */
      +public interface FormatService {
      +
      +	/** The type of format, either a {@link UnitFormat} or {@link QuantityFormat} */
      +<span class="fc" id="L47">    public static enum FormatType {</span>
      +        /** Format of type {@link UnitFormat} */
      +<span class="fc" id="L49">    	UNIT_FORMAT, </span>
      +    	/** Format of type {@link QuantityFormat} */
      +<span class="fc" id="L51">    	QUANTITY_FORMAT</span>
      +    }
      +
      +    /**
      +     * Returns the default quantity format.
      +     *
      +     * It is up to implementations what to consider a suitable default. For some (locale-sensitive) implementations it may be a quantity format based on
      +     * {@code Locale.current()} while others may return {@code getQuantityFormat(&quot;Simple&quot;)} or {@code getQuantityFormat(&quot;ISO&quot;)}.
      +     *
      +     * @return the default {@link QuantityFormat} implementation.
      +     */
      +    QuantityFormat getQuantityFormat();
      +
      +    /**
      +     * Returns the quantity format having the specified name or {@code null} if none.
      +     *
      +     * For example (@code getQuantityFormat(&quot;Simple&quot;)} to return the simple {@link QuantityFormat} implementation.
      +     *
      +     * @param name
      +     *          the name of the format.
      +     * @return the corresponding quantity format.
      +     */
      +    QuantityFormat getQuantityFormat(String name);
      +
      +    /**
      +     * Returns the default unit format.
      +     *
      +     * It is up to implementations what to consider a suitable default. For some (locale-sensitive) implementations it may be a unit format based on
      +     * {@code Locale.current()} while others may return {@code getUnitFormat(&quot;Simple&quot;)} or {@code getUnitFormat(&quot;ISO&quot;)}.
      +     *
      +     * @return the default {@link UnitFormat} implementation.
      +     */
      +    UnitFormat getUnitFormat();
      +
      +    /**
      +     * Returns the unit format having the specified name or {@code null} if none.
      +     *
      +     * For example {@code getUnitFormat(&quot;Simple&quot;)} to return a simple {@link UnitFormat} implementation.
      +     *
      +     * @param name
      +     *          the name of the format.
      +     * @return the corresponding unit format.
      +     */
      +    UnitFormat getUnitFormat(String name);
      +    
      +    /**
      +     * Returns the unit format having the specified name or {@code null} if none.
      +     *
      +     * For example {@code getUnitFormat(&quot;Simple&quot;)} to return a simple {@link UnitFormat} implementation.&lt;br&gt;
      +     * The variant is an arbitrary value to allow a variation of a {@link UnitFormat}, 
      +     * for example &lt;code&gt;UTF&lt;/code&gt; vs. &lt;code&gt;ASCII&lt;/code&gt; encoding of the simple &lt;code&gt;UnitFormat&lt;/code&gt; 
      +     * or &lt;code&gt;case sensitive&lt;/code&gt; vs. &lt;code&gt;case insensitive&lt;/code&gt; &lt;a href=&quot;https://ucum.org/ucum.html&quot;&gt;UCUM&lt;/a&gt; format.
      +     * &lt;p&gt;If no variant is applicable, the &lt;code&gt;UnitFormat&lt;/code&gt; matching the name only is returned.&lt;/p&gt; 
      +     * @param name
      +     *          the name of the format.
      +     * @param variant any arbitrary value used to indicate a variation of a &lt;code&gt;UnitFormat&lt;/code&gt;.
      +     * @return the corresponding unit format.
      +     */
      +    UnitFormat getUnitFormat(String name, String variant);
      +    
      +    /**
      +     * Gets a list with available format names of a given type for this format service.
      +     *
      +     * @param type
      +     *          the {@link FormatType}
      +     * @return list of available formats, never null.
      +     */
      +    Set&lt;String&gt; getAvailableFormatNames(FormatType type);
      +}
      +</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure.spi/ServiceProvider$Selector.html b/docs/site/jacoco/javax.measure.spi/ServiceProvider$Selector.html
      new file mode 100644
      index 00000000..8bbdef6d
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure.spi/ServiceProvider$Selector.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>ServiceProvider.Selector</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.html" class="el_package">javax.measure.spi</a> &gt; <span class="el_class">ServiceProvider.Selector</span></div><h1>ServiceProvider.Selector</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">53 of 146</td><td class="ctr2">63 %</td><td class="bar">6 of 14</td><td class="ctr2">57 %</td><td class="ctr1">7</td><td class="ctr2">14</td><td class="ctr1">16</td><td class="ctr2">42</td><td class="ctr1">2</td><td class="ctr2">7</td></tr></tfoot><tbody><tr><td id="a1"><a href="ServiceProvider.java.html#L230" class="el_method">getValue(Class, Method, Method)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="55" height="10" title="18" alt="18"/><img src="../jacoco-resources/greenbar.gif" width="58" height="10" title="19" alt="19"/></td><td class="ctr2" id="c4">51 %</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="60" height="10" title="3" alt="3"/><img src="../jacoco-resources/greenbar.gif" width="60" height="10" title="3" alt="3"/></td><td class="ctr2" id="e2">50 %</td><td class="ctr1" id="f0">3</td><td class="ctr2" id="g0">4</td><td class="ctr1" id="h0">8</td><td class="ctr2" id="i0">13</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a3"><a href="ServiceProvider.java.html#L269" class="el_method">priority(ServiceProvider)</a></td><td class="bar" id="b1"><img src="../jacoco-resources/redbar.gif" width="52" height="10" title="17" alt="17"/></td><td class="ctr2" id="c5">0 %</td><td class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="40" height="10" title="2" alt="2"/></td><td class="ctr2" id="e4">0 %</td><td class="ctr1" id="f1">2</td><td class="ctr2" id="g1">2</td><td class="ctr1" id="h1">4</td><td class="ctr2" id="i2">4</td><td class="ctr1" id="j0">1</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a0"><a href="ServiceProvider.java.html#L282" class="el_method">compare(ServiceProvider, ServiceProvider)</a></td><td class="bar" id="b2"><img src="../jacoco-resources/redbar.gif" width="24" height="10" title="8" alt="8"/></td><td class="ctr2" id="c6">0 %</td><td class="bar" id="d5"/><td class="ctr2" id="e5">n/a</td><td class="ctr1" id="f2">1</td><td class="ctr2" id="g5">1</td><td class="ctr1" id="h3">1</td><td class="ctr2" id="i6">1</td><td class="ctr1" id="j1">1</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a4"><a href="ServiceProvider.java.html#L187" class="el_method">ServiceProvider.Selector(String)</a></td><td class="bar" id="b3"><img src="../jacoco-resources/redbar.gif" width="21" height="10" title="7" alt="7"/><img src="../jacoco-resources/greenbar.gif" width="98" height="10" title="32" alt="32"/></td><td class="ctr2" id="c3">82 %</td><td class="bar" id="d3"><img src="../jacoco-resources/greenbar.gif" width="40" height="10" title="2" alt="2"/></td><td class="ctr2" id="e0">100 %</td><td class="ctr1" id="f4">0</td><td class="ctr2" id="g2">2</td><td class="ctr1" id="h2">2</td><td class="ctr2" id="i1">13</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">1</td></tr><tr><td id="a6"><a href="ServiceProvider.java.html#L256" class="el_method">test(ServiceProvider)</a></td><td class="bar" id="b4"><img src="../jacoco-resources/redbar.gif" width="9" height="10" title="3" alt="3"/><img src="../jacoco-resources/greenbar.gif" width="46" height="10" title="15" alt="15"/></td><td class="ctr2" id="c2">83 %</td><td class="bar" id="d2"><img src="../jacoco-resources/redbar.gif" width="20" height="10" title="1" alt="1"/><img src="../jacoco-resources/greenbar.gif" width="20" height="10" title="1" alt="1"/></td><td class="ctr2" id="e3">50 %</td><td class="ctr1" id="f3">1</td><td class="ctr2" id="g3">2</td><td class="ctr1" id="h4">1</td><td class="ctr2" id="i3">4</td><td class="ctr1" id="j4">0</td><td class="ctr2" id="k4">1</td></tr><tr><td id="a5"><a href="ServiceProvider.java.html#L291" class="el_method">stream()</a></td><td class="bar" id="b5"><img src="../jacoco-resources/greenbar.gif" width="52" height="10" title="17" alt="17"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d4"><img src="../jacoco-resources/greenbar.gif" width="40" height="10" title="2" alt="2"/></td><td class="ctr2" id="e1">100 %</td><td class="ctr1" id="f5">0</td><td class="ctr2" id="g4">2</td><td class="ctr1" id="h5">0</td><td class="ctr2" id="i4">4</td><td class="ctr1" id="j5">0</td><td class="ctr2" id="k5">1</td></tr><tr><td id="a2"><a href="ServiceProvider.java.html#L213" class="el_method">getValueMethod(String)</a></td><td class="bar" id="b6"><img src="../jacoco-resources/greenbar.gif" width="30" height="10" title="10" alt="10"/></td><td class="ctr2" id="c1">100 %</td><td class="bar" id="d6"/><td class="ctr2" id="e6">n/a</td><td class="ctr1" id="f6">0</td><td class="ctr2" id="g6">1</td><td class="ctr1" id="h6">0</td><td class="ctr2" id="i5">3</td><td class="ctr1" id="j6">0</td><td class="ctr2" id="k6">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure.spi/ServiceProvider.html b/docs/site/jacoco/javax.measure.spi/ServiceProvider.html
      new file mode 100644
      index 00000000..ddbc0423
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure.spi/ServiceProvider.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>ServiceProvider</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.html" class="el_package">javax.measure.spi</a> &gt; <span class="el_class">ServiceProvider</span></div><h1>ServiceProvider</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">28 of 169</td><td class="ctr2">83 %</td><td class="bar">9 of 22</td><td class="ctr2">59 %</td><td class="ctr1">7</td><td class="ctr2">18</td><td class="ctr1">6</td><td class="ctr2">38</td><td class="ctr1">0</td><td class="ctr2">7</td></tr></tfoot><tbody><tr><td id="a0"><a href="ServiceProvider.java.html#L308" class="el_method">available()</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="42" height="10" title="18" alt="18"/><img src="../jacoco-resources/greenbar.gif" width="77" height="10" title="33" alt="33"/></td><td class="ctr2" id="c6">64 %</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="75" height="10" title="5" alt="5"/><img src="../jacoco-resources/greenbar.gif" width="45" height="10" title="3" alt="3"/></td><td class="ctr2" id="e3">37 %</td><td class="ctr1" id="f0">3</td><td class="ctr2" id="g0">5</td><td class="ctr1" id="h0">4</td><td class="ctr2" id="i0">12</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a1"><a href="ServiceProvider.java.html#L384" class="el_method">current()</a></td><td class="bar" id="b1"><img src="../jacoco-resources/redbar.gif" width="11" height="10" title="5" alt="5"/><img src="../jacoco-resources/greenbar.gif" width="54" height="10" title="23" alt="23"/></td><td class="ctr2" id="c5">82 %</td><td class="bar" id="d2"><img src="../jacoco-resources/redbar.gif" width="15" height="10" title="1" alt="1"/><img src="../jacoco-resources/greenbar.gif" width="45" height="10" title="3" alt="3"/></td><td class="ctr2" id="e0">75 %</td><td class="ctr1" id="f2">1</td><td class="ctr2" id="g2">3</td><td class="ctr1" id="h1">1</td><td class="ctr2" id="i2">7</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a3"><a href="ServiceProvider.java.html#L355" class="el_method">of(String)</a></td><td class="bar" id="b2"><img src="../jacoco-resources/redbar.gif" width="9" height="10" title="4" alt="4"/><img src="../jacoco-resources/greenbar.gif" width="96" height="10" title="41" alt="41"/></td><td class="ctr2" id="c4">91 %</td><td class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="30" height="10" title="2" alt="2"/><img src="../jacoco-resources/greenbar.gif" width="60" height="10" title="4" alt="4"/></td><td class="ctr2" id="e2">66 %</td><td class="ctr1" id="f1">2</td><td class="ctr2" id="g1">4</td><td class="ctr1" id="h2">1</td><td class="ctr2" id="i1">9</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a5"><a href="ServiceProvider.java.html#L404" class="el_method">setCurrent(ServiceProvider)</a></td><td class="bar" id="b3"><img src="../jacoco-resources/redbar.gif" width="2" height="10" title="1" alt="1"/><img src="../jacoco-resources/greenbar.gif" width="80" height="10" title="34" alt="34"/></td><td class="ctr2" id="c3">97 %</td><td class="bar" id="d3"><img src="../jacoco-resources/redbar.gif" width="15" height="10" title="1" alt="1"/><img src="../jacoco-resources/greenbar.gif" width="45" height="10" title="3" alt="3"/></td><td class="ctr2" id="e1">75 %</td><td class="ctr1" id="f3">1</td><td class="ctr2" id="g3">3</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i3">6</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">1</td></tr><tr><td id="a6"><a href="ServiceProvider.java.html#L97" class="el_method">static {...}</a></td><td class="bar" id="b4"><img src="../jacoco-resources/greenbar.gif" width="11" height="10" title="5" alt="5"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d4"/><td class="ctr2" id="e4">n/a</td><td class="ctr1" id="f4">0</td><td class="ctr2" id="g4">1</td><td class="ctr1" id="h4">0</td><td class="ctr2" id="i5">1</td><td class="ctr1" id="j4">0</td><td class="ctr2" id="k4">1</td></tr><tr><td id="a4"><a href="ServiceProvider.java.html#L102" class="el_method">ServiceProvider()</a></td><td class="bar" id="b5"><img src="../jacoco-resources/greenbar.gif" width="7" height="10" title="3" alt="3"/></td><td class="ctr2" id="c1">100 %</td><td class="bar" id="d5"/><td class="ctr2" id="e5">n/a</td><td class="ctr1" id="f5">0</td><td class="ctr2" id="g5">1</td><td class="ctr1" id="h5">0</td><td class="ctr2" id="i4">2</td><td class="ctr1" id="j5">0</td><td class="ctr2" id="k5">1</td></tr><tr><td id="a2"><a href="ServiceProvider.java.html#L117" class="el_method">getPriority()</a></td><td class="bar" id="b6"><img src="../jacoco-resources/greenbar.gif" width="4" height="10" title="2" alt="2"/></td><td class="ctr2" id="c2">100 %</td><td class="bar" id="d6"/><td class="ctr2" id="e6">n/a</td><td class="ctr1" id="f6">0</td><td class="ctr2" id="g6">1</td><td class="ctr1" id="h6">0</td><td class="ctr2" id="i6">1</td><td class="ctr1" id="j6">0</td><td class="ctr2" id="k6">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure.spi/ServiceProvider.java.html b/docs/site/jacoco/javax.measure.spi/ServiceProvider.java.html
      new file mode 100644
      index 00000000..d0941d99
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure.spi/ServiceProvider.java.html
      @@ -0,0 +1,414 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>ServiceProvider.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.source.html" class="el_package">javax.measure.spi</a> &gt; <span class="el_source">ServiceProvider.java</span></div><h1>ServiceProvider.java</h1><pre class="source lang-java linenums">/*
      + * Units of Measurement API
      + * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + *
      + * All rights reserved.
      + *
      + * Redistribution and use in source and binary forms, with or without modification,
      + * are permitted provided that the following conditions are met:
      + *
      + * 1. Redistributions of source code must retain the above copyright notice,
      + *    this list of conditions and the following disclaimer.
      + *
      + * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
      + *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
      + *
      + * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
      + *    derived from this software without specific prior written permission.
      + *
      + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot;
      + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
      + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
      + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
      + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
      + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      + */
      +package javax.measure.spi;
      +
      +import java.lang.annotation.Annotation;
      +import java.lang.reflect.InvocationTargetException;
      +import java.lang.reflect.Method;
      +import java.util.ArrayList;
      +import java.util.Comparator;
      +import java.util.List;
      +import java.util.Objects;
      +import java.util.Optional;
      +import java.util.ServiceConfigurationError;
      +import java.util.ServiceLoader;
      +import java.util.concurrent.atomic.AtomicReference;
      +import java.util.function.Predicate;
      +import java.util.logging.Level;
      +import java.util.logging.Logger;
      +import java.util.stream.Collectors;
      +import java.util.stream.Stream;
      +import java.util.stream.StreamSupport;
      +import javax.measure.Quantity;
      +import javax.measure.format.QuantityFormat;
      +import javax.measure.format.UnitFormat;
      +
      +/**
      + * Service Provider for Units of Measurement services.
      + * &lt;p&gt;
      + * All the methods in this class are safe to use by multiple concurrent threads.
      + * &lt;/p&gt;
      + *
      + * @version 2.3, May 19, 2023
      + * @author Werner Keil
      + * @author Martin Desruisseaux
      + * @since 1.0
      + */
      +public abstract class ServiceProvider {
      +    /**
      +     * Class name of JSR-330 annotation for naming a service provider.
      +     * We use reflection for keeping JSR-330 an optional dependency.
      +     */
      +    private static final String LEGACY_NAMED_ANNOTATION = &quot;javax.inject.Named&quot;;
      +
      +    /**
      +     * Class name of JSR-250 annotation for assigning a priority level to a service provider.
      +     * We use reflection for keeping JSR-250 an optional dependency.
      +     */
      +    private static final String LEGACY_PRIORITY_ANNOTATION = &quot;javax.annotation.Priority&quot;;
      +
      +    /**
      +     * Class name of Jakarta Dependency Injection annotation for naming a service provider.
      +     * We use reflection for keeping Jakata Injection an optional dependency.
      +     */
      +    private static final String NAMED_ANNOTATION = &quot;jakarta.inject.Named&quot;;
      +
      +    /**
      +     * Class name of Jakarta Common Annotation for assigning a priority level to a service provider.
      +     * We use reflection for keeping Jakarta Annotations an optional dependency.
      +     */
      +    private static final String PRIORITY_ANNOTATION = &quot;jakarta.annotation.Priority&quot;;
      +
      +    /**
      +     * The current service provider, or {@code null} if not yet determined.
      +     *
      +     * &lt;p&gt;Implementation Note: We do not cache a list of all service providers because that list depends
      +     * indirectly on the thread invoking the {@link #available()} method. More specifically, it depends
      +     * on the context class loader. Furthermore caching the {@code ServiceProvider}s can be a source of
      +     * memory leaks. See {@link ServiceLoader#load(Class)} API note for reference.&lt;/p&gt;
      +     */
      +<span class="fc" id="L97">    private static final AtomicReference&lt;ServiceProvider&gt; current = new AtomicReference&lt;&gt;();</span>
      +
      +    /**
      +     * Creates a new service provider. Only to be used by subclasses.
      +     */
      +<span class="fc" id="L102">    protected ServiceProvider() {</span>
      +<span class="fc" id="L103">    }</span>
      +
      +    /**
      +     * Allows to define a priority for a registered {@code ServiceProvider} instance.
      +     * When multiple providers are registered in the system, the provider with the highest priority value is taken.
      +     *
      +     * &lt;p&gt;If the {@value #PRIORITY_ANNOTATION} annotation (from Jakarta Annotations)
      +     * or {@value #LEGACY_PRIORITY_ANNOTATION} annotation (from JSR-250) is present on the {@code ServiceProvider}
      +     * implementation class, then that annotation (first if both were present) is taken and this {@code getPriority()} method is ignored.
      +     * Otherwise – if a {@code Priority} annotation is absent – this method is used as a fallback.&lt;/p&gt;
      +     *
      +     * @return the provider's priority (default is 0).
      +     */
      +    public int getPriority() {
      +<span class="fc" id="L117">        return 0;</span>
      +    }
      +
      +    /**
      +     * Returns the service to obtain a {@link SystemOfUnits}, or {@code null} if none.
      +     *
      +     * @return the service to obtain a {@link SystemOfUnits}, or {@code null}.
      +     */
      +    public abstract SystemOfUnitsService getSystemOfUnitsService();
      +
      +    /**
      +     * Returns the service to obtain {@link UnitFormat} and {@link QuantityFormat} or {@code null} if none.
      +     *
      +     * @return the service to obtain a {@link UnitFormat} and {@link QuantityFormat}, or {@code null}.
      +     * @since 2.0
      +     */
      +    public abstract FormatService getFormatService();
      +
      +    /**
      +     * Returns a factory for the given {@link Quantity} type.
      +     *
      +     * @param &lt;Q&gt;
      +     *            the type of the {@link Quantity} instances created by the factory
      +     * @param quantity
      +     *            the quantity type
      +     * @return the {@link QuantityFactory} for the given type
      +     */
      +    public abstract &lt;Q extends Quantity&lt;Q&gt;&gt; QuantityFactory&lt;Q&gt; getQuantityFactory(Class&lt;Q&gt; quantity);
      +
      +    /**
      +     * A filter and a comparator for processing the stream of service providers.
      +     * The two tasks (filtering and sorting) are implemented by the same class,
      +     * but the filter task shall be used only if the name to search is non-null.
      +     * The comparator is used in all cases, for sorting providers with higher priority first.
      +     */
      +    private static final class Selector implements Predicate&lt;ServiceProvider&gt;, Comparator&lt;ServiceProvider&gt; {
      +        /**
      +         * The name of the provider to search, or {@code null} if no filtering by name is applied.
      +         */
      +        private final String toSearch;
      +
      +        /**
      +         * The {@code value()} method in the {@value #NAMED_ANNOTATION} annotation,
      +         * or {@code null} if that class is not on the classpath.
      +         */
      +        private final Method nameGetter;
      +
      +        /**
      +         * The {@code value()} method in the {@value #PRIORITY_ANNOTATION} annotation,
      +         * or {@code null} if that class is not on the classpath.
      +         */
      +        private final Method priorityGetter;
      +
      +        /**
      +         * The {@code value()} method in the {@value #LEGACY_NAMED_ANNOTATION} annotation,
      +         * or {@code null} if that class is not on the classpath.
      +         */
      +        private final Method legacyNameGetter;
      +
      +        /**
      +         * The {@code value()} method in the {@value #LEGACY_PRIORITY_ANNOTATION} annotation,
      +         * or {@code null} if that class is not on the classpath.
      +         */
      +        private final Method legacyPriorityGetter;
      +
      +        /**
      +         * Creates a new filter and comparator for a stream of service providers.
      +         *
      +         * @param name  name of the desired service provider, or {@code null} if no filtering by name is applied.
      +         */
      +<span class="fc" id="L187">        Selector(String name) {</span>
      +<span class="fc" id="L188">            toSearch = name;</span>
      +            try {
      +<span class="fc bfc" id="L190" title="All 2 branches covered.">                if (name != null) {</span>
      +<span class="fc" id="L191">                    nameGetter       = getValueMethod(NAMED_ANNOTATION);</span>
      +<span class="fc" id="L192">                    legacyNameGetter = getValueMethod(LEGACY_NAMED_ANNOTATION);</span>
      +                } else {
      +<span class="fc" id="L194">                    nameGetter       = null;</span>
      +<span class="fc" id="L195">                    legacyNameGetter = null;</span>
      +                }
      +<span class="fc" id="L197">                priorityGetter       = getValueMethod(PRIORITY_ANNOTATION);</span>
      +<span class="fc" id="L198">                legacyPriorityGetter = getValueMethod(LEGACY_PRIORITY_ANNOTATION);</span>
      +<span class="nc" id="L199">            } catch (NoSuchMethodException e) {</span>
      +                // Should never happen since value() is a standard public method of those annotations.
      +<span class="nc" id="L201">                throw new ServiceConfigurationError(&quot;Cannot get annotation value&quot;, e);</span>
      +<span class="fc" id="L202">            }</span>
      +<span class="fc" id="L203">        }</span>
      +
      +        /**
      +         * Returns the {@code value()} method in the given annotation class.
      +         *
      +         * @param  classname  name of the class from which to get the {@code value()} method.
      +         * @return the {@code value()} method, or {@code null} if the annotation class was not found.
      +         */
      +        private static Method getValueMethod(final String classname) throws NoSuchMethodException {
      +            try {
      +<span class="fc" id="L213">                return Class.forName(classname).getMethod(&quot;value&quot;, (Class[]) null);</span>
      +<span class="fc" id="L214">            } catch (ClassNotFoundException e) {</span>
      +                // Ignore because JSR-330, JSR-250 and Jakarta are optional dependencies.
      +<span class="fc" id="L216">                return null;</span>
      +            }
      +        }
      +
      +        /**
      +         * Invokes the {@code value()} method on the annotation of the given class.
      +         * The annotation on which to invoke the method is given by {@link Method#getDeclaringClass()}.
      +         *
      +         * @param  provider   class of the provider on which to invoke annotation {@code value()}.
      +         * @param  getter     the preferred  {@code value()} method to invoke, or {@code null}.
      +         * @param  fallback   an alternative {@code value()} method to invoke, or {@code null}.
      +         * @return the value, or {@code null} if none.
      +         */
      +        private static Object getValue(final Class&lt;?&gt; provider, Method getter, Method fallback) {
      +<span class="pc bpc" id="L230" title="1 of 2 branches missed.">            if (getter == null) {</span>
      +<span class="nc" id="L231">                getter = fallback;</span>
      +<span class="nc" id="L232">                fallback = null;</span>
      +            }
      +<span class="pc bpc" id="L234" title="1 of 2 branches missed.">            while (getter != null) {</span>
      +<span class="fc" id="L235">                final Annotation a = provider.getAnnotation(getter.getDeclaringClass().asSubclass(Annotation.class));</span>
      +<span class="pc bpc" id="L236" title="1 of 2 branches missed.">                if (a != null) try {</span>
      +<span class="fc" id="L237">                    return getter.invoke(a, (Object[]) null);</span>
      +<span class="nc" id="L238">                } catch (IllegalAccessException | InvocationTargetException e) {</span>
      +                    // Should never happen since value() is a public method and should not throw exception.
      +<span class="nc" id="L240">                    throw new ServiceConfigurationError(&quot;Cannot get annotation value&quot;, e);</span>
      +                }
      +<span class="nc" id="L242">                getter = fallback;</span>
      +<span class="nc" id="L243">                fallback = null;</span>
      +<span class="nc" id="L244">            }</span>
      +<span class="nc" id="L245">            return null;</span>
      +        }
      +
      +        /**
      +         * Returns {@code true} if the given service provider has the name we are looking for.
      +         * This method shall be invoked only if a non-null name has been specified to the constructor.
      +         * This method looks for the {@value #NAMED_ANNOTATION} and {@value #LEGACY_NAMED_ANNOTATION}
      +         * annotations in that order, and if none are found fallbacks on {@link ServiceProvider#toString()}.
      +         */
      +        @Override
      +        public boolean test(final ServiceProvider provider) {
      +<span class="fc" id="L256">            Object value = getValue(provider.getClass(), nameGetter, legacyNameGetter);</span>
      +<span class="pc bpc" id="L257" title="1 of 2 branches missed.">            if (value == null) {</span>
      +<span class="nc" id="L258">                value = provider.toString();</span>
      +            }
      +<span class="fc" id="L260">            return toSearch.equals(value);</span>
      +        }
      +
      +        /**
      +         * Returns the priority of the given service provider.
      +         * This method looks for the {@value #PRIORITY_ANNOTATION} and {@value #LEGACY_PRIORITY_ANNOTATION}
      +         * annotations in that order, and if none are found falls back on {@link ServiceProvider#getPriority()}.
      +         */
      +        private int priority(final ServiceProvider provider) {
      +<span class="nc" id="L269">            Object value = getValue(provider.getClass(), priorityGetter, legacyPriorityGetter);</span>
      +<span class="nc bnc" id="L270" title="All 2 branches missed.">            if (value != null) {</span>
      +<span class="nc" id="L271">                return (Integer) value;</span>
      +            }
      +<span class="nc" id="L273">            return provider.getPriority();</span>
      +        }
      +
      +        /**
      +         * Compares the given service providers for order based on their priority.
      +         * The priority of each provider is determined as documented by {@link ServiceProvider#getPriority()}.
      +         */
      +        @Override
      +        public int compare(final ServiceProvider p1, final ServiceProvider p2) {
      +<span class="nc" id="L282">            return Integer.compare(priority(p2), priority(p1)); // reverse order, higher number first.</span>
      +        }
      +
      +        /**
      +         * Gets all {@link ServiceProvider}s sorted by priority and optionally filtered by the name in this selector.
      +         * The list of service providers is &lt;strong&gt;not&lt;/strong&gt; cached because it depends on the context class loader,
      +         * which itself depends on which thread is invoking this method.
      +         */
      +        private Stream&lt;ServiceProvider&gt; stream() {
      +<span class="fc" id="L291">            Stream&lt;ServiceProvider&gt; stream = StreamSupport.stream(ServiceLoader.load(ServiceProvider.class).spliterator(), false);</span>
      +<span class="fc bfc" id="L292" title="All 2 branches covered.">            if (toSearch != null) {</span>
      +<span class="fc" id="L293">                stream = stream.filter(this);</span>
      +            }
      +<span class="fc" id="L295">            return stream.sorted(this);</span>
      +        }
      +    }
      +
      +    /**
      +     * Returns the list of all service providers available for the current thread's context class loader.
      +     * The {@linkplain #current() current} service provider is always the first item in the returned list.
      +     * Other service providers after the first item may depend on the caller thread
      +     * (see {@linkplain ServiceLoader#load(Class) service loader API note}).
      +     *
      +     * @return all service providers available for the current thread's context class loader.
      +     */
      +    public static final List&lt;ServiceProvider&gt; available() {
      +<span class="fc" id="L308">        ArrayList&lt;ServiceProvider&gt; providers = new Selector(null).stream().collect(Collectors.toCollection(ArrayList::new));</span>
      +<span class="fc" id="L309">        final ServiceProvider first = current.get();</span>
      +        /*
      +         * Make sure that 'first' is the first item in the 'providers' list. If that item appears
      +         * somewhere else, we have to remove the second occurrence for avoiding duplicated elements.
      +         * We compare the classes, not the instances, because new instances may be created each time
      +         * this method is invoked and we have no guaranteed that implementors overrode 'equals'.
      +         */
      +<span class="fc bfc" id="L316" title="All 2 branches covered.">setcur: if (first != null) {</span>
      +<span class="fc" id="L317">            final Class&lt;?&gt; cf = first.getClass();</span>
      +<span class="fc" id="L318">            final int size = providers.size();</span>
      +<span class="pc bpc" id="L319" title="1 of 2 branches missed.">            for (int i=0; i&lt;size; i++) {</span>
      +<span class="nc bnc" id="L320" title="All 2 branches missed.">                if (cf.equals(providers.get(i).getClass())) {</span>
      +<span class="nc bnc" id="L321" title="All 2 branches missed.">                    if (i == 0) break setcur;       // No change needed (note: labeled breaks on if statements are legal).</span>
      +<span class="nc" id="L322">                    providers.remove(i);</span>
      +<span class="nc" id="L323">                    break;</span>
      +                }
      +            }
      +<span class="fc" id="L326">            providers.add(0, first);</span>
      +        }
      +<span class="fc" id="L328">        return providers;</span>
      +    }
      +
      +    /**
      +     * Returns the {@link ServiceProvider} with the specified name.
      +     * The given name must match the name of at least one service provider available in the current thread's
      +     * context class loader.
      +     * The service provider names are the values of {@value #NAMED_ANNOTATION} (from Jakarta Annotations) or
      +     * {@value #LEGACY_NAMED_ANNOTATION} (from JSR-330) annotations when present (first if both were present),
      +     * or the value of {@link #toString()} method for providers without {@code Named} annotation.
      +     *
      +     * &lt;p&gt;Implementors are encouraged to provide an {@code Named} annotation or to override {@link #toString()}
      +     * and use a unique enough name, e.g. the class name or other distinct attributes.
      +     * Should multiple service providers nevertheless use the same name, the one with the highest
      +     * {@linkplain #getPriority() priority} wins.&lt;/p&gt;
      +     *
      +     * @param name
      +     *            the name of the service provider to return
      +     * @return the {@link ServiceProvider} with the specified name
      +     * @throws IllegalArgumentException
      +     *             if available service providers do not contain a provider with the specified name
      +     * @throws NullPointerException
      +     *             if {@code name} is null
      +     * @see #toString()
      +     * @since 2.0
      +     */
      +    public static ServiceProvider of(String name) {
      +<span class="fc" id="L355">        Objects.requireNonNull(name);</span>
      +<span class="fc" id="L356">        Selector select = new Selector(name);</span>
      +<span class="fc" id="L357">        ServiceProvider p = current.get();</span>
      +<span class="pc bpc" id="L358" title="1 of 4 branches missed.">        if (p != null &amp;&amp; select.test(p)) {</span>
      +<span class="fc" id="L359">            return p;</span>
      +        }
      +<span class="fc" id="L361">        Optional&lt;ServiceProvider&gt; first = select.stream().findFirst();</span>
      +<span class="pc bpc" id="L362" title="1 of 2 branches missed.">        if (first.isPresent()) {</span>
      +<span class="nc" id="L363">            return first.get();</span>
      +        } else {
      +<span class="fc" id="L365">            throw new IllegalArgumentException(&quot;No Measurement ServiceProvider &quot; + name + &quot; found .&quot;);</span>
      +        }
      +    }
      +
      +    /**
      +     * Returns the current {@link ServiceProvider}. If necessary the {@link ServiceProvider} will be lazily loaded.
      +     * &lt;p&gt;
      +     * If there are no providers available, an {@linkplain IllegalStateException} is thrown.
      +     * Otherwise the provider with the highest priority is used
      +     * or the one explicitly designated via {@link #setCurrent(ServiceProvider)}.
      +     * &lt;/p&gt;
      +     *
      +     * @return the {@link ServiceProvider} used.
      +     * @throws IllegalStateException
      +     *             if no {@link ServiceProvider} has been found.
      +     * @see #getPriority()
      +     * @see #setCurrent(ServiceProvider)
      +     */
      +    public static final ServiceProvider current() {
      +<span class="fc" id="L384">        ServiceProvider p = current.get();</span>
      +<span class="fc bfc" id="L385" title="All 2 branches covered.">        if (p == null) {</span>
      +<span class="fc" id="L386">            Optional&lt;ServiceProvider&gt; first = new Selector(null).stream().findFirst();</span>
      +<span class="pc bpc" id="L387" title="1 of 2 branches missed.">            if (first.isPresent()) {</span>
      +<span class="nc" id="L388">                p = first.get();</span>
      +            } else {
      +<span class="fc" id="L390">                throw new IllegalStateException(&quot;No Measurement ServiceProvider found.&quot;);</span>
      +            }
      +        }
      +<span class="fc" id="L393">        return p;</span>
      +    }
      +
      +    /**
      +     * Replaces the current {@link ServiceProvider}.
      +     *
      +     * @param provider
      +     *            the new {@link ServiceProvider}
      +     * @return the replaced provider, or null.
      +     */
      +    public static final ServiceProvider setCurrent(ServiceProvider provider) {
      +<span class="fc" id="L404">        Objects.requireNonNull(provider);</span>
      +<span class="fc" id="L405">        ServiceProvider old = current.getAndSet(provider);</span>
      +<span class="fc bfc" id="L406" title="All 2 branches covered.">        if (old != provider) {</span>
      +<span class="fc" id="L407">            Logger.getLogger(&quot;javax.measure.spi&quot;).log(Level.CONFIG,</span>
      +                    &quot;Measurement ServiceProvider {1,choice,0#set to|1#replaced by} {0}.&quot;,
      +<span class="pc bpc" id="L409" title="1 of 2 branches missed.">                    new Object[] {provider.getClass().getName(), (old == null) ? 0 : 1});</span>
      +        }
      +<span class="fc" id="L411">        return old;</span>
      +    }
      +}
      +</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure.spi/SystemOfUnitsService.html b/docs/site/jacoco/javax.measure.spi/SystemOfUnitsService.html
      new file mode 100644
      index 00000000..08dfd9a7
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure.spi/SystemOfUnitsService.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>SystemOfUnitsService</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.html" class="el_package">javax.measure.spi</a> &gt; <span class="el_class">SystemOfUnitsService</span></div><h1>SystemOfUnitsService</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 23</td><td class="ctr2">100 %</td><td class="bar">0 of 2</td><td class="ctr2">100 %</td><td class="ctr1">0</td><td class="ctr2">2</td><td class="ctr1">0</td><td class="ctr2">4</td><td class="ctr1">0</td><td class="ctr2">1</td></tr></tfoot><tbody><tr><td id="a0"><a href="SystemOfUnitsService.java.html#L112" class="el_method">getPrefixes(Class)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="23" alt="23"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="2" alt="2"/></td><td class="ctr2" id="e0">100 %</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">2</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">4</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure.spi/SystemOfUnitsService.java.html b/docs/site/jacoco/javax.measure.spi/SystemOfUnitsService.java.html
      new file mode 100644
      index 00000000..a0611caf
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure.spi/SystemOfUnitsService.java.html
      @@ -0,0 +1,128 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>SystemOfUnitsService.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.source.html" class="el_package">javax.measure.spi</a> &gt; <span class="el_source">SystemOfUnitsService.java</span></div><h1>SystemOfUnitsService.java</h1><pre class="source lang-java linenums">/*
      + * Units of Measurement API
      + * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + *
      + * All rights reserved.
      + *
      + * Redistribution and use in source and binary forms, with or without modification,
      + * are permitted provided that the following conditions are met:
      + *
      + * 1. Redistributions of source code must retain the above copyright notice,
      + *    this list of conditions and the following disclaimer.
      + *
      + * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
      + *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
      + *
      + * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
      + *    derived from this software without specific prior written permission.
      + *
      + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot;
      + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
      + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
      + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
      + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
      + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      + */
      +package javax.measure.spi;
      +
      +import java.util.Collection;
      +import java.util.EnumSet;
      +import java.util.Set;
      +import javax.measure.Prefix;
      +
      +/**
      + * This interface represents the service to obtain a {@link SystemOfUnits system
      + * of units}.
      + *
      + * &lt;p&gt;
      + * Common systems of units are &quot;SI&quot; (System International) or Metric system,
      + * &quot;Imperial&quot; (British), or &quot;US&quot; (US Customary).
      + * &lt;/p&gt;
      + *
      + * @author &lt;a href=&quot;mailto:jean-marie@dautelle.com&quot;&gt;Jean-Marie Dautelle&lt;/a&gt;
      + * @author &lt;a href=&quot;mailto:werner@uom.technology&quot;&gt;Werner Keil&lt;/a&gt;
      + * @author &lt;a href=&quot;mailto:martin.desruisseaux@geomatys.com&quot;&gt;Martin
      + *         Desruisseaux&lt;/a&gt;
      + * @version 1.8, April 3, 2023
      + * @since 1.0
      + *
      + * @see &lt;a href=
      + *      &quot;https://en.wikipedia.org/wiki/International_System_of_Units&quot;&gt;Wikipedia:
      + *      International System of Units&lt;/a&gt;
      + */
      +public interface SystemOfUnitsService {
      +
      +    /**
      +     * Returns the default {@link SystemOfUnits system of units}. Depending on the
      +     * implementation this may be the &lt;a href=&quot;https://en.wikipedia.org/wiki/International_System_of_Units&quot;&gt;International
      +     * System of Units&lt;/a&gt; or another default system.
      +     *
      +     * @return the default system of units.
      +     */
      +    SystemOfUnits getSystemOfUnits();
      +
      +    /**
      +     * Returns the system of units having the specified name or {@code null} if
      +     * none is found.
      +     *
      +     * @param name the system of unit name.
      +     * @return the system of units for the given name.
      +     */
      +    SystemOfUnits getSystemOfUnits(String name);
      +
      +    /**
      +     * Gets a list with available systems for this {@link SystemOfUnitsService}.
      +     *
      +     * @return list of available systems of units, never null.
      +     */
      +    Collection&lt;SystemOfUnits&gt; getAvailableSystemsOfUnits();
      +
      +    /**
      +     * Returns a {@link Set} containing the values of a particular {@link Prefix}
      +     * type.
      +     *
      +     * &lt;p&gt;
      +     * This method may be used to iterate over certain prefixes as follows:
      +     * &lt;/p&gt;
      +     * &lt;pre&gt;{@code
      +     *    for(MetricPrefix mp : service.getPrefixes(MetricPrefix.class))
      +     *        System.out.println(p);
      +     * }&lt;/pre&gt;
      +     *
      +     * The default implementation assumes that prefixes of the given type are implemented as an enumeration.
      +     * This is the case of the two default prefix implementations provided in JSR 385,
      +     * namely {@link javax.measure.MetricPrefix} and {@link javax.measure.BinaryPrefix}.
      +     * Implementors shall override this method if they provide prefixes implemented in a different way.
      +     *
      +     * @param &lt;P&gt; compile-time value of the {@code prefixType} argument
      +     * @param prefixType the {@link Prefix} type
      +     * @return a set containing the constant values of this Prefix type, in the
      +     *         order they're declared
      +     * @throws ClassCastException if the class is not compatible with the desired
      +     *                            Prefix implementation or does not implement Prefix at all.
      +     * @since 2.0
      +     */
      +    @SuppressWarnings({&quot;unchecked&quot;, &quot;rawtypes&quot;})
      +    default &lt;P extends Prefix&gt; Set&lt;P&gt; getPrefixes(Class&lt;P&gt; prefixType) {
      +        // Following check is redundant with parameterized type but nevertheless applied as a safety.
      +<span class="fc bfc" id="L112" title="All 2 branches covered.">        if (Prefix.class.isAssignableFrom(prefixType)) {</span>
      +<span class="fc" id="L113">            EnumSet&lt;? extends Enum&lt;?&gt;&gt; prefixes = EnumSet.allOf(prefixType.asSubclass(Enum.class));</span>
      +            /*
      +             * Following unchecked cast is safe for read operations because the given class implements
      +             * 'prefixType' in addition of being an enumeration.  It is also safe for write operations
      +             * because all enumerations are closed universes (so users can not add an instance unknown
      +             * to EnumSet) and we would have got an exception before this point if 'prefixType' was not
      +             * an enumeration in the sense of Class.isEnum().
      +             */
      +<span class="fc" id="L121">            return (EnumSet) prefixes;</span>
      +        } else {
      +<span class="fc" id="L123">            throw new ClassCastException(String.format(&quot;%s does not implement Prefix&quot;, prefixType));</span>
      +            // TODO or should we throw a different exception here, MeasurementException or IllegalArgumentException?
      +        }
      +    }
      +}
      +</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure.spi/index.html b/docs/site/jacoco/javax.measure.spi/index.html
      new file mode 100644
      index 00000000..6f1777ea
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure.spi/index.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>javax.measure.spi</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="index.source.html" class="el_source">Source Files</a><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <span class="el_package">javax.measure.spi</span></div><h1>javax.measure.spi</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">81 of 353</td><td class="ctr2">77 %</td><td class="bar">15 of 38</td><td class="ctr2">60 %</td><td class="ctr1">14</td><td class="ctr2">35</td><td class="ctr1">22</td><td class="ctr2">87</td><td class="ctr1">2</td><td class="ctr2">16</td><td class="ctr1">0</td><td class="ctr2">4</td></tr></tfoot><tbody><tr><td id="a2"><a href="ServiceProvider$Selector.html" class="el_class">ServiceProvider.Selector</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="37" height="10" title="53" alt="53"/><img src="../jacoco-resources/greenbar.gif" width="66" height="10" title="93" alt="93"/></td><td class="ctr2" id="c3">63 %</td><td class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="32" height="10" title="6" alt="6"/><img src="../jacoco-resources/greenbar.gif" width="43" height="10" title="8" alt="8"/></td><td class="ctr2" id="e2">57 %</td><td class="ctr1" id="f0">7</td><td class="ctr2" id="g1">14</td><td class="ctr1" id="h0">16</td><td class="ctr2" id="i0">42</td><td class="ctr1" id="j0">2</td><td class="ctr2" id="k0">7</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m0">1</td></tr><tr><td id="a1"><a href="ServiceProvider.html" class="el_class">ServiceProvider</a></td><td class="bar" id="b1"><img src="../jacoco-resources/redbar.gif" width="19" height="10" title="28" alt="28"/><img src="../jacoco-resources/greenbar.gif" width="100" height="10" title="141" alt="141"/></td><td class="ctr2" id="c2">83 %</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="49" height="10" title="9" alt="9"/><img src="../jacoco-resources/greenbar.gif" width="70" height="10" title="13" alt="13"/></td><td class="ctr2" id="e1">59 %</td><td class="ctr1" id="f1">7</td><td class="ctr2" id="g0">18</td><td class="ctr1" id="h1">6</td><td class="ctr2" id="i1">38</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">7</td><td class="ctr1" id="l1">0</td><td class="ctr2" id="m1">1</td></tr><tr><td id="a3"><a href="SystemOfUnitsService.html" class="el_class">SystemOfUnitsService</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="16" height="10" title="23" alt="23"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d2"><img src="../jacoco-resources/greenbar.gif" width="10" height="10" title="2" alt="2"/></td><td class="ctr2" id="e0">100 %</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">2</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i2">4</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td><td class="ctr1" id="l2">0</td><td class="ctr2" id="m2">1</td></tr><tr><td id="a0"><a href="FormatService$FormatType.html" class="el_class">FormatService.FormatType</a></td><td class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" width="10" height="10" title="15" alt="15"/></td><td class="ctr2" id="c1">100 %</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">0</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i3">3</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">1</td><td class="ctr1" id="l3">0</td><td class="ctr2" id="m3">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure.spi/index.source.html b/docs/site/jacoco/javax.measure.spi/index.source.html
      new file mode 100644
      index 00000000..c317bffa
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure.spi/index.source.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>javax.measure.spi</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="index.html" class="el_class">Classes</a><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <span class="el_package">javax.measure.spi</span></div><h1>javax.measure.spi</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">81 of 353</td><td class="ctr2">77 %</td><td class="bar">15 of 38</td><td class="ctr2">60 %</td><td class="ctr1">14</td><td class="ctr2">35</td><td class="ctr1">22</td><td class="ctr2">87</td><td class="ctr1">2</td><td class="ctr2">16</td><td class="ctr1">0</td><td class="ctr2">4</td></tr></tfoot><tbody><tr><td id="a1"><a href="ServiceProvider.java.html" class="el_source">ServiceProvider.java</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="30" height="10" title="81" alt="81"/><img src="../jacoco-resources/greenbar.gif" width="89" height="10" title="234" alt="234"/></td><td class="ctr2" id="c2">74 %</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="50" height="10" title="15" alt="15"/><img src="../jacoco-resources/greenbar.gif" width="70" height="10" title="21" alt="21"/></td><td class="ctr2" id="e1">58 %</td><td class="ctr1" id="f0">14</td><td class="ctr2" id="g0">32</td><td class="ctr1" id="h0">22</td><td class="ctr2" id="i0">80</td><td class="ctr1" id="j0">2</td><td class="ctr2" id="k0">14</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m0">2</td></tr><tr><td id="a2"><a href="SystemOfUnitsService.java.html" class="el_source">SystemOfUnitsService.java</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="8" height="10" title="23" alt="23"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d1"><img src="../jacoco-resources/greenbar.gif" width="6" height="10" title="2" alt="2"/></td><td class="ctr2" id="e0">100 %</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">2</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">4</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td><td class="ctr1" id="l1">0</td><td class="ctr2" id="m1">1</td></tr><tr><td id="a0"><a href="FormatService.java.html" class="el_source">FormatService.java</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="5" height="10" title="15" alt="15"/></td><td class="ctr2" id="c1">100 %</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i2">3</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td><td class="ctr1" id="l2">0</td><td class="ctr2" id="m2">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure/BinaryPrefix.html b/docs/site/jacoco/javax.measure/BinaryPrefix.html
      new file mode 100644
      index 00000000..c59158d3
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure/BinaryPrefix.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>BinaryPrefix</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.html" class="el_package">javax.measure</a> &gt; <span class="el_class">BinaryPrefix</span></div><h1>BinaryPrefix</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 122</td><td class="ctr2">100 %</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">14</td><td class="ctr1">0</td><td class="ctr2">25</td><td class="ctr1">0</td><td class="ctr2">14</td></tr></tfoot><tbody><tr><td id="a10"><a href="BinaryPrefix.java.html#L63" class="el_method">static {...}</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="67" alt="67"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">9</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a0"><a href="BinaryPrefix.java.html#L102" class="el_method">BinaryPrefix(String, int, String, int)</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="19" height="10" title="11" alt="11"/></td><td class="ctr2" id="c1">100 %</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">4</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a7"><a href="BinaryPrefix.java.html#L117" class="el_method">KIBI(Unit)</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="7" height="10" title="4" alt="4"/></td><td class="ctr2" id="c2">100 %</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i2">1</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a8"><a href="BinaryPrefix.java.html#L130" class="el_method">MEBI(Unit)</a></td><td class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" width="7" height="10" title="4" alt="4"/></td><td class="ctr2" id="c3">100 %</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">0</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i3">1</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">1</td></tr><tr><td id="a6"><a href="BinaryPrefix.java.html#L143" class="el_method">GIBI(Unit)</a></td><td class="bar" id="b4"><img src="../jacoco-resources/greenbar.gif" width="7" height="10" title="4" alt="4"/></td><td class="ctr2" id="c4">100 %</td><td class="bar" id="d4"/><td class="ctr2" id="e4">n/a</td><td class="ctr1" id="f4">0</td><td class="ctr2" id="g4">1</td><td class="ctr1" id="h4">0</td><td class="ctr2" id="i4">1</td><td class="ctr1" id="j4">0</td><td class="ctr2" id="k4">1</td></tr><tr><td id="a11"><a href="BinaryPrefix.java.html#L156" class="el_method">TEBI(Unit)</a></td><td class="bar" id="b5"><img src="../jacoco-resources/greenbar.gif" width="7" height="10" title="4" alt="4"/></td><td class="ctr2" id="c5">100 %</td><td class="bar" id="d5"/><td class="ctr2" id="e5">n/a</td><td class="ctr1" id="f5">0</td><td class="ctr2" id="g5">1</td><td class="ctr1" id="h5">0</td><td class="ctr2" id="i5">1</td><td class="ctr1" id="j5">0</td><td class="ctr2" id="k5">1</td></tr><tr><td id="a9"><a href="BinaryPrefix.java.html#L169" class="el_method">PEBI(Unit)</a></td><td class="bar" id="b6"><img src="../jacoco-resources/greenbar.gif" width="7" height="10" title="4" alt="4"/></td><td class="ctr2" id="c6">100 %</td><td class="bar" id="d6"/><td class="ctr2" id="e6">n/a</td><td class="ctr1" id="f6">0</td><td class="ctr2" id="g6">1</td><td class="ctr1" id="h6">0</td><td class="ctr2" id="i6">1</td><td class="ctr1" id="j6">0</td><td class="ctr2" id="k6">1</td></tr><tr><td id="a1"><a href="BinaryPrefix.java.html#L182" class="el_method">EXBI(Unit)</a></td><td class="bar" id="b7"><img src="../jacoco-resources/greenbar.gif" width="7" height="10" title="4" alt="4"/></td><td class="ctr2" id="c7">100 %</td><td class="bar" id="d7"/><td class="ctr2" id="e7">n/a</td><td class="ctr1" id="f7">0</td><td class="ctr2" id="g7">1</td><td class="ctr1" id="h7">0</td><td class="ctr2" id="i7">1</td><td class="ctr1" id="j7">0</td><td class="ctr2" id="k7">1</td></tr><tr><td id="a13"><a href="BinaryPrefix.java.html#L195" class="el_method">ZEBI(Unit)</a></td><td class="bar" id="b8"><img src="../jacoco-resources/greenbar.gif" width="7" height="10" title="4" alt="4"/></td><td class="ctr2" id="c8">100 %</td><td class="bar" id="d8"/><td class="ctr2" id="e8">n/a</td><td class="ctr1" id="f8">0</td><td class="ctr2" id="g8">1</td><td class="ctr1" id="h8">0</td><td class="ctr2" id="i8">1</td><td class="ctr1" id="j8">0</td><td class="ctr2" id="k8">1</td></tr><tr><td id="a12"><a href="BinaryPrefix.java.html#L208" class="el_method">YOBI(Unit)</a></td><td class="bar" id="b9"><img src="../jacoco-resources/greenbar.gif" width="7" height="10" title="4" alt="4"/></td><td class="ctr2" id="c9">100 %</td><td class="bar" id="d9"/><td class="ctr2" id="e9">n/a</td><td class="ctr1" id="f9">0</td><td class="ctr2" id="g9">1</td><td class="ctr1" id="h9">0</td><td class="ctr2" id="i9">1</td><td class="ctr1" id="j9">0</td><td class="ctr2" id="k9">1</td></tr><tr><td id="a4"><a href="BinaryPrefix.java.html#L218" class="el_method">getSymbol()</a></td><td class="bar" id="b10"><img src="../jacoco-resources/greenbar.gif" width="5" height="10" title="3" alt="3"/></td><td class="ctr2" id="c10">100 %</td><td class="bar" id="d10"/><td class="ctr2" id="e10">n/a</td><td class="ctr1" id="f10">0</td><td class="ctr2" id="g10">1</td><td class="ctr1" id="h10">0</td><td class="ctr2" id="i10">1</td><td class="ctr1" id="j10">0</td><td class="ctr2" id="k10">1</td></tr><tr><td id="a5"><a href="BinaryPrefix.java.html#L226" class="el_method">getValue()</a></td><td class="bar" id="b11"><img src="../jacoco-resources/greenbar.gif" width="5" height="10" title="3" alt="3"/></td><td class="ctr2" id="c11">100 %</td><td class="bar" id="d11"/><td class="ctr2" id="e11">n/a</td><td class="ctr1" id="f11">0</td><td class="ctr2" id="g11">1</td><td class="ctr1" id="h11">0</td><td class="ctr2" id="i11">1</td><td class="ctr1" id="j11">0</td><td class="ctr2" id="k11">1</td></tr><tr><td id="a2"><a href="BinaryPrefix.java.html#L234" class="el_method">getExponent()</a></td><td class="bar" id="b12"><img src="../jacoco-resources/greenbar.gif" width="5" height="10" title="3" alt="3"/></td><td class="ctr2" id="c12">100 %</td><td class="bar" id="d12"/><td class="ctr2" id="e12">n/a</td><td class="ctr1" id="f12">0</td><td class="ctr2" id="g12">1</td><td class="ctr1" id="h12">0</td><td class="ctr2" id="i12">1</td><td class="ctr1" id="j12">0</td><td class="ctr2" id="k12">1</td></tr><tr><td id="a3"><a href="BinaryPrefix.java.html#L244" class="el_method">getName()</a></td><td class="bar" id="b13"><img src="../jacoco-resources/greenbar.gif" width="5" height="10" title="3" alt="3"/></td><td class="ctr2" id="c13">100 %</td><td class="bar" id="d13"/><td class="ctr2" id="e13">n/a</td><td class="ctr1" id="f13">0</td><td class="ctr2" id="g13">1</td><td class="ctr1" id="h13">0</td><td class="ctr2" id="i13">1</td><td class="ctr1" id="j13">0</td><td class="ctr2" id="k13">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure/BinaryPrefix.java.html b/docs/site/jacoco/javax.measure/BinaryPrefix.java.html
      new file mode 100644
      index 00000000..f7b0f2e6
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure/BinaryPrefix.java.html
      @@ -0,0 +1,247 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>BinaryPrefix.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.source.html" class="el_package">javax.measure</a> &gt; <span class="el_source">BinaryPrefix.java</span></div><h1>BinaryPrefix.java</h1><pre class="source lang-java linenums">/*
      + * Units of Measurement API
      + * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + *
      + * All rights reserved.
      + *
      + * Redistribution and use in source and binary forms, with or without modification,
      + * are permitted provided that the following conditions are met:
      + *
      + * 1. Redistributions of source code must retain the above copyright notice,
      + *    this list of conditions and the following disclaimer.
      + *
      + * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
      + *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
      + *
      + * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
      + *    derived from this software without specific prior written permission.
      + *
      + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot;
      + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
      + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
      + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
      + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
      + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      + */
      +package javax.measure;
      +
      +/**
      + * Provides support for common binary prefixes to be used by units. For example:
      + * &lt;pre&gt;
      + * {@code import static systems.uom.unicode.CLDR.*;  // Static import (from Unicode System).
      + * import static javax.measure.BinaryPrefix.*; // Static import.
      + * import javax.measure.*;
      + * import systems.uom.quantity.Information; // (from Systems Quantities)
      + * ...
      + * Unit&lt;Information&gt; MEBIT  = MEBI(BIT);
      + * Unit&lt;Information&gt; GIBYTE = GIBI(BYTE);} 
      + * &lt;/pre&gt;
      + * You could also apply &lt;code&gt;Unit.prefix&lt;/code&gt;:
      + * &lt;pre&gt;
      + * {@code ...
      + * Unit&lt;Information&gt; MEBIT  = BIT.prefix(MEBI);
      + * Unit&lt;Information&gt; GIBYTE = BYTE.prefix(GIBI);}
      + * &lt;/pre&gt;
      + * 
      + * &lt;p&gt;
      + * &lt;b&gt;Do not use ordinal() to obtain the numeric representation of BinaryPrefix. Use getValue() and getExponent() instead.&lt;/b&gt;
      + * &lt;/p&gt;
      + * 
      + * &lt;dl&gt;
      + * &lt;dt&gt;&lt;span class=&quot;strong&quot;&gt;Implementation Requirements&lt;/span&gt;&lt;/dt&gt;&lt;dd&gt;This is an immutable and thread-safe enum.&lt;/dd&gt;
      + * &lt;/dl&gt; 
      + *
      + * @author &lt;a href=&quot;mailto:werner@units.tech&quot;&gt;Werner Keil&lt;/a&gt;
      + * @version 2.3, October 31, 2023
      + * @see &lt;a href=&quot;https://en.wikipedia.org/wiki/Binary_prefix&quot;&gt;Wikipedia: Binary Prefix&lt;/a&gt;
      + * @since 2.0
      + */
      +<span class="fc" id="L63">public enum BinaryPrefix implements Prefix {</span>
      +    /** Prefix for 1024. */
      +<span class="fc" id="L65">    KIBI(&quot;Ki&quot;, 1),</span>
      +    /** Prefix for 1024&lt;sup&gt;2&lt;/sup&gt;. */
      +<span class="fc" id="L67">    MEBI(&quot;Mi&quot;, 2),</span>
      +    /** Prefix for 1024&lt;sup&gt;3&lt;/sup&gt;. */
      +<span class="fc" id="L69">    GIBI(&quot;Gi&quot;, 3),</span>
      +    /** Prefix for 1024&lt;sup&gt;4&lt;/sup&gt;. */
      +<span class="fc" id="L71">    TEBI(&quot;Ti&quot;, 4),</span>
      +    /** Prefix for 1024&lt;sup&gt;5&lt;/sup&gt;. */
      +<span class="fc" id="L73">    PEBI(&quot;Pi&quot;, 5),</span>
      +    /** Prefix for 1024&lt;sup&gt;6&lt;/sup&gt;. */
      +<span class="fc" id="L75">    EXBI(&quot;Ei&quot;, 6),</span>
      +    /** Prefix for 1024&lt;sup&gt;7&lt;/sup&gt;. */
      +<span class="fc" id="L77">    ZEBI(&quot;Zi&quot;, 7),</span>
      +    /** Prefix for 1024&lt;sup&gt;8&lt;/sup&gt;. */
      +<span class="fc" id="L79">    YOBI(&quot;Yi&quot;, 8);</span>
      +
      +    /**
      +     * The symbol of this prefix, as returned by {@link #getSymbol}.
      +     *
      +     * @serial
      +     * @see #getSymbol()
      +     */
      +    private final String symbol;
      +
      +    /**
      +     * Exponent part of the associated factor in base^exponent representation.
      +     */
      +    private final int exponent;
      +
      +    /**
      +     * Creates a new prefix.
      +     *
      +     * @param symbol
      +     *          the symbol of this prefix.
      +     * @param exponent
      +     *          part of the associated factor in base^exponent representation.
      +     */
      +<span class="fc" id="L102">    private BinaryPrefix(String symbol, int exponent) {</span>
      +<span class="fc" id="L103">        this.symbol = symbol;</span>
      +<span class="fc" id="L104">        this.exponent = exponent;</span>
      +<span class="fc" id="L105">    }</span>
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;1024&lt;/code&gt; (binary prefix).
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1024)&lt;/code&gt;.
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; KIBI(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L117">        return unit.prefix(KIBI);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;1024&lt;sup&gt;2&lt;/sup&gt;&lt;/code&gt; (binary prefix).
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1024&lt;sup&gt;2&lt;/sup&gt;)&lt;/code&gt;.
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; MEBI(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L130">        return unit.prefix(MEBI);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;1024&lt;sup&gt;3&lt;/sup&gt;&lt;/code&gt; (binary prefix).
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1024&lt;sup&gt;3&lt;/sup&gt;)&lt;/code&gt;.
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; GIBI(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L143">        return unit.prefix(GIBI);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;1024&lt;sup&gt;4&lt;/sup&gt;&lt;/code&gt; (binary prefix).
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1024&lt;sup&gt;4&lt;/sup&gt;)&lt;/code&gt;.
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; TEBI(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L156">        return unit.prefix(TEBI);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;1024&lt;sup&gt;5&lt;/sup&gt;&lt;/code&gt; (binary prefix).
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1024&lt;sup&gt;5&lt;/sup&gt;)&lt;/code&gt;.
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; PEBI(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L169">        return unit.prefix(PEBI);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;1024&lt;sup&gt;6&lt;/sup&gt;&lt;/code&gt; (binary prefix).
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1024&lt;sup&gt;6&lt;/sup&gt;)&lt;/code&gt;.
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; EXBI(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L182">        return unit.prefix(EXBI);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;1024&lt;sup&gt;7&lt;/sup&gt;&lt;/code&gt; (binary prefix).
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1024&lt;sup&gt;7&lt;/sup&gt;)&lt;/code&gt;.
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; ZEBI(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L195">        return unit.prefix(ZEBI);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;1024&lt;sup&gt;8&lt;/sup&gt;&lt;/code&gt; (binary prefix).
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1024&lt;sup&gt;8&lt;/sup&gt;)&lt;/code&gt;.
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; YOBI(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L208">        return unit.prefix(YOBI);</span>
      +    }
      +
      +    /**
      +     * Returns the symbol of this prefix.
      +     *
      +     * @return this prefix symbol, not {@code null}.
      +     */
      +    @Override
      +    public String getSymbol() {
      +<span class="fc" id="L218">        return symbol;</span>
      +    }
      +
      +    /**
      +     * Base part of the associated factor in {@code base^exponent} representation. For binary prefix, this is always 1024.
      +     */
      +    @Override
      +    public Integer getValue() {
      +<span class="fc" id="L226">        return 1024;</span>
      +    }
      +
      +    /**
      +     * Exponent part of the associated factor in {@code base^exponent} representation.
      +     */
      +    @Override
      +    public int getExponent() {
      +<span class="fc" id="L234">        return exponent;</span>
      +    }
      +
      +    /**
      +     * Returns the name of this prefix.
      +     *
      +     * @return this prefix name, not {@code null}.
      +     */
      +    @Override
      +    public String getName() {
      +<span class="fc" id="L244">        return name();</span>
      +    }
      +}
      +</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure/IncommensurableException.html b/docs/site/jacoco/javax.measure/IncommensurableException.html
      new file mode 100644
      index 00000000..43750cbd
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure/IncommensurableException.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>IncommensurableException</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.html" class="el_package">javax.measure</a> &gt; <span class="el_class">IncommensurableException</span></div><h1>IncommensurableException</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 13</td><td class="ctr2">100 %</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">3</td><td class="ctr1">0</td><td class="ctr2">6</td><td class="ctr1">0</td><td class="ctr2">3</td></tr></tfoot><tbody><tr><td id="a1"><a href="IncommensurableException.java.html#L84" class="el_method">IncommensurableException(String, Throwable)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="5" alt="5"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">2</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a0"><a href="IncommensurableException.java.html#L60" class="el_method">IncommensurableException(String)</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="96" height="10" title="4" alt="4"/></td><td class="ctr2" id="c1">100 %</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">2</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a2"><a href="IncommensurableException.java.html#L71" class="el_method">IncommensurableException(Throwable)</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="96" height="10" title="4" alt="4"/></td><td class="ctr2" id="c2">100 %</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i2">2</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure/IncommensurableException.java.html b/docs/site/jacoco/javax.measure/IncommensurableException.java.html
      new file mode 100644
      index 00000000..252c2875
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure/IncommensurableException.java.html
      @@ -0,0 +1,87 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>IncommensurableException.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.source.html" class="el_package">javax.measure</a> &gt; <span class="el_source">IncommensurableException.java</span></div><h1>IncommensurableException.java</h1><pre class="source lang-java linenums">/*
      + * Units of Measurement API
      + * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + *
      + * All rights reserved.
      + *
      + * Redistribution and use in source and binary forms, with or without modification,
      + * are permitted provided that the following conditions are met:
      + *
      + * 1. Redistributions of source code must retain the above copyright notice,
      + *    this list of conditions and the following disclaimer.
      + *
      + * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
      + *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
      + *
      + * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
      + *    derived from this software without specific prior written permission.
      + *
      + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot;
      + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
      + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
      + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
      + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
      + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      + */
      +package javax.measure;
      +
      +/**
      + * Signals that a problem of some sort has occurred due to incommensurable of some quantities/units. Only commensurable quantity (quantities with the
      + * same dimensions) may be compared, equated, added, or subtracted. Also, one unit can be converted to another unit only if both units are
      + * commensurable.
      + * &lt;p&gt;
      + * This is a &lt;strong&gt;checked&lt;/strong&gt; exception, so it deliberately doesn't inherit from &lt;code&gt;MeasurementException&lt;/code&gt; like most other exceptions.
      + * &lt;/p&gt;
      + *
      + * @author &lt;a href=&quot;mailto:jean-marie@dautelle.com&quot;&gt;Jean-Marie Dautelle&lt;/a&gt;
      + * @author &lt;a href=&quot;mailto:werner@uom.technology&quot;&gt;Werner Keil&lt;/a&gt;
      + * @version 1.0, August 8, 2016
      + * @since 1.0
      + *
      + * @see &lt;a href=&quot;http://en.wikipedia.org/wiki/Unit_commensurability#Commensurability&quot;&gt;Wikipedia: Unit Commensurability&lt;/a&gt;
      + */
      +public class IncommensurableException extends Exception {
      +    /**
      +     * For cross-version compatibility.
      +     */
      +    private static final long serialVersionUID = -3676414292638136515L;
      +
      +    /**
      +     * Constructs a {@code IncommensurableException} with the given message.
      +     *
      +     * @param message
      +     *            the detail message, or {@code null} if none.
      +     */
      +    public IncommensurableException(final String message) {
      +<span class="fc" id="L60">        super(message);</span>
      +<span class="fc" id="L61">    }</span>
      +
      +    /**
      +     * Constructs a {@code IncommensurableException} with the given cause.
      +     *
      +     * @param cause
      +     *            the cause of this exception, or {@code null} if none.
      +     *
      +     */
      +    public IncommensurableException(final Throwable cause) {
      +<span class="fc" id="L71">        super(cause);</span>
      +<span class="fc" id="L72">    }</span>
      +
      +    /**
      +     * Constructs a {@code IncommensurableException} with the given message and cause.
      +     *
      +     * @param message
      +     *            the detail message, or {@code null} if none.
      +     * @param cause
      +     *            the cause of this exception, or {@code null} if none.
      +     *
      +     */
      +    public IncommensurableException(final String message, final Throwable cause) {
      +<span class="fc" id="L84">        super(message, cause);</span>
      +<span class="fc" id="L85">    }</span>
      +}
      +</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure/MeasurementError.html b/docs/site/jacoco/javax.measure/MeasurementError.html
      new file mode 100644
      index 00000000..223c8c79
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure/MeasurementError.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>MeasurementError</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.html" class="el_package">javax.measure</a> &gt; <span class="el_class">MeasurementError</span></div><h1>MeasurementError</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 16</td><td class="ctr2">100 %</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">4</td><td class="ctr1">0</td><td class="ctr2">8</td><td class="ctr1">0</td><td class="ctr2">4</td></tr></tfoot><tbody><tr><td id="a2"><a href="MeasurementError.java.html#L87" class="el_method">MeasurementError(String, Throwable)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="5" alt="5"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">2</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a1"><a href="MeasurementError.java.html#L65" class="el_method">MeasurementError(String)</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="96" height="10" title="4" alt="4"/></td><td class="ctr2" id="c1">100 %</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">2</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a3"><a href="MeasurementError.java.html#L75" class="el_method">MeasurementError(Throwable)</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="96" height="10" title="4" alt="4"/></td><td class="ctr2" id="c2">100 %</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i2">2</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a0"><a href="MeasurementError.java.html#L55" class="el_method">MeasurementError()</a></td><td class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" width="72" height="10" title="3" alt="3"/></td><td class="ctr2" id="c3">100 %</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">0</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i3">2</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure/MeasurementError.java.html b/docs/site/jacoco/javax.measure/MeasurementError.java.html
      new file mode 100644
      index 00000000..a7901c03
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure/MeasurementError.java.html
      @@ -0,0 +1,90 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>MeasurementError.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.source.html" class="el_package">javax.measure</a> &gt; <span class="el_source">MeasurementError.java</span></div><h1>MeasurementError.java</h1><pre class="source lang-java linenums">/*
      + * Units of Measurement API
      + * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + *
      + * All rights reserved.
      + *
      + * Redistribution and use in source and binary forms, with or without modification,
      + * are permitted provided that the following conditions are met:
      + *
      + * 1. Redistributions of source code must retain the above copyright notice,
      + *    this list of conditions and the following disclaimer.
      + *
      + * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
      + *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
      + *
      + * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
      + *    derived from this software without specific prior written permission.
      + *
      + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot;
      + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
      + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
      + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
      + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
      + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      + */
      +package javax.measure;
      +
      +/**
      + * This error is used to indicate serious problems with creating, retrieving and manipulating units of measurement objects.
      + *
      + * &lt;dl&gt;
      + * &lt;dt&gt;&lt;span class=&quot;strong&quot;&gt;Implementation Requirements:&lt;/span&gt;&lt;/dt&gt;
      + * &lt;dd&gt;This class is intended for use in a single thread. Exception thrown when errors occur during Units of Measurement operations.&lt;/dd&gt;
      + * &lt;/dl&gt;
      + * 
      + * @author &lt;a href=&quot;mailto:werner@uom.technology&quot;&gt;Werner Keil&lt;/a&gt;
      + * @version 2.2, Feb 3, 2021
      + * @since 2.1
      + */
      +public class MeasurementError extends Error {
      +
      +    /**
      +	 * 
      +	 */
      +    private static final long serialVersionUID = -412360965273525777L;
      +
      +    /**
      +     * Constructs a {@code MeasurementError} with no detail message.
      +     */
      +    public MeasurementError() {
      +<span class="fc" id="L55">        super();</span>
      +<span class="fc" id="L56">    }</span>
      +
      +    /**
      +     * Constructs a {@code MeasurementError} with the specified detail message.
      +     *
      +     * @param message
      +     *            the detail message.
      +     */
      +    public MeasurementError(final String message) {
      +<span class="fc" id="L65">        super(message);</span>
      +<span class="fc" id="L66">    }</span>
      +
      +    /**
      +     * Constructs a {@code MeasurementError} with the given cause.
      +     *
      +     * @param cause
      +     *            the cause of this exception, or {@code null} if none.
      +     */
      +    public MeasurementError(final Throwable cause) {
      +<span class="fc" id="L75">        super(cause);</span>
      +<span class="fc" id="L76">    }</span>
      +
      +    /**
      +     * Constructs a {@code MeasurementError} with the specified detail message and cause.
      +     *
      +     * @param message
      +     *            the detail message.
      +     * @param cause
      +     *            the cause, may be {@code null}
      +     */
      +    public MeasurementError(final String message, final Throwable cause) {
      +<span class="fc" id="L87">        super(message, cause);</span>
      +<span class="fc" id="L88">    }</span>
      +}
      +</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure/MeasurementException.html b/docs/site/jacoco/javax.measure/MeasurementException.html
      new file mode 100644
      index 00000000..97578139
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure/MeasurementException.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>MeasurementException</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.html" class="el_package">javax.measure</a> &gt; <span class="el_class">MeasurementException</span></div><h1>MeasurementException</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 16</td><td class="ctr2">100 %</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">4</td><td class="ctr1">0</td><td class="ctr2">8</td><td class="ctr1">0</td><td class="ctr2">4</td></tr></tfoot><tbody><tr><td id="a2"><a href="MeasurementException.java.html#L89" class="el_method">MeasurementException(String, Throwable)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="5" alt="5"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">2</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a1"><a href="MeasurementException.java.html#L66" class="el_method">MeasurementException(String)</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="96" height="10" title="4" alt="4"/></td><td class="ctr2" id="c1">100 %</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">2</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a3"><a href="MeasurementException.java.html#L76" class="el_method">MeasurementException(Throwable)</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="96" height="10" title="4" alt="4"/></td><td class="ctr2" id="c2">100 %</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i2">2</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a0"><a href="MeasurementException.java.html#L97" class="el_method">MeasurementException()</a></td><td class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" width="72" height="10" title="3" alt="3"/></td><td class="ctr2" id="c3">100 %</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">0</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i3">2</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure/MeasurementException.java.html b/docs/site/jacoco/javax.measure/MeasurementException.java.html
      new file mode 100644
      index 00000000..435765a0
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure/MeasurementException.java.html
      @@ -0,0 +1,100 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>MeasurementException.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.source.html" class="el_package">javax.measure</a> &gt; <span class="el_source">MeasurementException.java</span></div><h1>MeasurementException.java</h1><pre class="source lang-java linenums">/*
      + * Units of Measurement API
      + * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + *
      + * All rights reserved.
      + *
      + * Redistribution and use in source and binary forms, with or without modification,
      + * are permitted provided that the following conditions are met:
      + *
      + * 1. Redistributions of source code must retain the above copyright notice,
      + *    this list of conditions and the following disclaimer.
      + *
      + * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
      + *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
      + *
      + * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
      + *    derived from this software without specific prior written permission.
      + *
      + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot;
      + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
      + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
      + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
      + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
      + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      + */
      +//
      +// This source code implements specifications defined by the Java
      +// Community Process. In order to remain compliant with the specification
      +// DO NOT add / change / or delete method signatures!
      +//
      +package javax.measure;
      +
      +/**
      + * Exception used to indicate a problem while dealing with units of measurement.
      + * &lt;p&gt;
      + * This exception is used to indicate problems with creating, retrieving and manipulating units of measurement objects.
      + * &lt;/p&gt;
      + *
      + * &lt;dl&gt;
      + * &lt;dt&gt;&lt;span class=&quot;strong&quot;&gt;Implementation Requirements:&lt;/span&gt;&lt;/dt&gt;
      + * &lt;dd&gt;This class is intended for use in a single thread. Exception thrown when errors occur during Units of Measurement operations.&lt;/dd&gt;
      + * &lt;/dl&gt;
      + *
      + * @author &lt;a href=&quot;mailto:werner@uom.technology&quot;&gt;Werner Keil&lt;/a&gt;
      + * @version 2.0, Jul 4, 2020
      + * @since 1.0
      + */
      +public class MeasurementException extends RuntimeException {
      +
      +    /**
      +     * For cross-version compatibility.
      +     */
      +    private static final long serialVersionUID = 8959937033300443361L;
      +
      +    /**
      +     * Constructs a {@code MeasurementException} with the given message.
      +     *
      +     * @param message
      +     *            the detail message, or {@code null} if none.
      +     */
      +    public MeasurementException(final String message) {
      +<span class="fc" id="L66">        super(message);</span>
      +<span class="fc" id="L67">    }</span>
      +
      +    /**
      +     * Constructs a {@code MeasurementException} with the given cause.
      +     *
      +     * @param cause
      +     *            the cause of this exception, or {@code null} if none.
      +     */
      +    public MeasurementException(final Throwable cause) {
      +<span class="fc" id="L76">        super(cause);</span>
      +<span class="fc" id="L77">    }</span>
      +
      +    /**
      +     * Constructs a {@code MeasurementException} with the given message and cause.
      +     *
      +     * @param message
      +     *            the detail message, or {@code null} if none.
      +     * @param cause
      +     *            the cause of this exception, or {@code null} if none.
      +     *
      +     */
      +    public MeasurementException(final String message, final Throwable cause) {
      +<span class="fc" id="L89">        super(message, cause);</span>
      +<span class="fc" id="L90">    }</span>
      +
      +    /**
      +     * Constructs a {@code MeasurementException} with no given message.
      +     *
      +     */
      +    protected MeasurementException() {
      +<span class="fc" id="L97">        super();</span>
      +<span class="fc" id="L98">    }</span>
      +}
      +</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure/MetricPrefix.html b/docs/site/jacoco/javax.measure/MetricPrefix.html
      new file mode 100644
      index 00000000..7ff4ab2b
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure/MetricPrefix.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>MetricPrefix</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.html" class="el_package">javax.measure</a> &gt; <span class="el_class">MetricPrefix</span></div><h1>MetricPrefix</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 318</td><td class="ctr2">100 %</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">31</td><td class="ctr1">0</td><td class="ctr2">58</td><td class="ctr1">0</td><td class="ctr2">31</td></tr></tfoot><tbody><tr><td id="a25"><a href="MetricPrefix.java.html#L65" class="el_method">static {...}</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="195" alt="195"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">25</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a15"><a href="MetricPrefix.java.html#L148" class="el_method">MetricPrefix(String, int, String, int)</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="6" height="10" title="11" alt="11"/></td><td class="ctr2" id="c1">100 %</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">4</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a22"><a href="MetricPrefix.java.html#L164" class="el_method">QUETTA(Unit)</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c2">100 %</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i2">1</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a23"><a href="MetricPrefix.java.html#L178" class="el_method">RONNA(Unit)</a></td><td class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c3">100 %</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">0</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i3">1</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">1</td></tr><tr><td id="a28"><a href="MetricPrefix.java.html#L192" class="el_method">YOTTA(Unit)</a></td><td class="bar" id="b4"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c4">100 %</td><td class="bar" id="d4"/><td class="ctr2" id="e4">n/a</td><td class="ctr1" id="f4">0</td><td class="ctr2" id="g4">1</td><td class="ctr1" id="h4">0</td><td class="ctr2" id="i4">1</td><td class="ctr1" id="j4">0</td><td class="ctr2" id="k4">1</td></tr><tr><td id="a30"><a href="MetricPrefix.java.html#L206" class="el_method">ZETTA(Unit)</a></td><td class="bar" id="b5"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c5">100 %</td><td class="bar" id="d5"/><td class="ctr2" id="e5">n/a</td><td class="ctr1" id="f5">0</td><td class="ctr2" id="g5">1</td><td class="ctr1" id="h5">0</td><td class="ctr2" id="i5">1</td><td class="ctr1" id="j5">0</td><td class="ctr2" id="k5">1</td></tr><tr><td id="a5"><a href="MetricPrefix.java.html#L220" class="el_method">EXA(Unit)</a></td><td class="bar" id="b6"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c6">100 %</td><td class="bar" id="d6"/><td class="ctr2" id="e6">n/a</td><td class="ctr1" id="f6">0</td><td class="ctr2" id="g6">1</td><td class="ctr1" id="h6">0</td><td class="ctr2" id="i6">1</td><td class="ctr1" id="j6">0</td><td class="ctr2" id="k6">1</td></tr><tr><td id="a19"><a href="MetricPrefix.java.html#L234" class="el_method">PETA(Unit)</a></td><td class="bar" id="b7"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c7">100 %</td><td class="bar" id="d7"/><td class="ctr2" id="e7">n/a</td><td class="ctr1" id="f7">0</td><td class="ctr2" id="g7">1</td><td class="ctr1" id="h7">0</td><td class="ctr2" id="i7">1</td><td class="ctr1" id="j7">0</td><td class="ctr2" id="k7">1</td></tr><tr><td id="a26"><a href="MetricPrefix.java.html#L248" class="el_method">TERA(Unit)</a></td><td class="bar" id="b8"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c8">100 %</td><td class="bar" id="d8"/><td class="ctr2" id="e8">n/a</td><td class="ctr1" id="f8">0</td><td class="ctr2" id="g8">1</td><td class="ctr1" id="h8">0</td><td class="ctr2" id="i8">1</td><td class="ctr1" id="j8">0</td><td class="ctr2" id="k8">1</td></tr><tr><td id="a11"><a href="MetricPrefix.java.html#L262" class="el_method">GIGA(Unit)</a></td><td class="bar" id="b9"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c9">100 %</td><td class="bar" id="d9"/><td class="ctr2" id="e9">n/a</td><td class="ctr1" id="f9">0</td><td class="ctr2" id="g9">1</td><td class="ctr1" id="h9">0</td><td class="ctr2" id="i9">1</td><td class="ctr1" id="j9">0</td><td class="ctr2" id="k9">1</td></tr><tr><td id="a14"><a href="MetricPrefix.java.html#L276" class="el_method">MEGA(Unit)</a></td><td class="bar" id="b10"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c10">100 %</td><td class="bar" id="d10"/><td class="ctr2" id="e10">n/a</td><td class="ctr1" id="f10">0</td><td class="ctr2" id="g10">1</td><td class="ctr1" id="h10">0</td><td class="ctr2" id="i10">1</td><td class="ctr1" id="j10">0</td><td class="ctr2" id="k10">1</td></tr><tr><td id="a13"><a href="MetricPrefix.java.html#L290" class="el_method">KILO(Unit)</a></td><td class="bar" id="b11"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c11">100 %</td><td class="bar" id="d11"/><td class="ctr2" id="e11">n/a</td><td class="ctr1" id="f11">0</td><td class="ctr2" id="g11">1</td><td class="ctr1" id="h11">0</td><td class="ctr2" id="i11">1</td><td class="ctr1" id="j11">0</td><td class="ctr2" id="k11">1</td></tr><tr><td id="a12"><a href="MetricPrefix.java.html#L304" class="el_method">HECTO(Unit)</a></td><td class="bar" id="b12"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c12">100 %</td><td class="bar" id="d12"/><td class="ctr2" id="e12">n/a</td><td class="ctr1" id="f12">0</td><td class="ctr2" id="g12">1</td><td class="ctr1" id="h12">0</td><td class="ctr2" id="i12">1</td><td class="ctr1" id="j12">0</td><td class="ctr2" id="k12">1</td></tr><tr><td id="a2"><a href="MetricPrefix.java.html#L318" class="el_method">DECA(Unit)</a></td><td class="bar" id="b13"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c13">100 %</td><td class="bar" id="d13"/><td class="ctr2" id="e13">n/a</td><td class="ctr1" id="f13">0</td><td class="ctr2" id="g13">1</td><td class="ctr1" id="h13">0</td><td class="ctr2" id="i13">1</td><td class="ctr1" id="j13">0</td><td class="ctr2" id="k13">1</td></tr><tr><td id="a4"><a href="MetricPrefix.java.html#L332" class="el_method">DEKA(Unit)</a></td><td class="bar" id="b14"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c14">100 %</td><td class="bar" id="d14"/><td class="ctr2" id="e14">n/a</td><td class="ctr1" id="f14">0</td><td class="ctr2" id="g14">1</td><td class="ctr1" id="h14">0</td><td class="ctr2" id="i14">1</td><td class="ctr1" id="j14">0</td><td class="ctr2" id="k14">1</td></tr><tr><td id="a3"><a href="MetricPrefix.java.html#L346" class="el_method">DECI(Unit)</a></td><td class="bar" id="b15"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c15">100 %</td><td class="bar" id="d15"/><td class="ctr2" id="e15">n/a</td><td class="ctr1" id="f15">0</td><td class="ctr2" id="g15">1</td><td class="ctr1" id="h15">0</td><td class="ctr2" id="i15">1</td><td class="ctr1" id="j15">0</td><td class="ctr2" id="k15">1</td></tr><tr><td id="a1"><a href="MetricPrefix.java.html#L360" class="el_method">CENTI(Unit)</a></td><td class="bar" id="b16"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c16">100 %</td><td class="bar" id="d16"/><td class="ctr2" id="e16">n/a</td><td class="ctr1" id="f16">0</td><td class="ctr2" id="g16">1</td><td class="ctr1" id="h16">0</td><td class="ctr2" id="i16">1</td><td class="ctr1" id="j16">0</td><td class="ctr2" id="k16">1</td></tr><tr><td id="a17"><a href="MetricPrefix.java.html#L374" class="el_method">MILLI(Unit)</a></td><td class="bar" id="b17"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c17">100 %</td><td class="bar" id="d17"/><td class="ctr2" id="e17">n/a</td><td class="ctr1" id="f17">0</td><td class="ctr2" id="g17">1</td><td class="ctr1" id="h17">0</td><td class="ctr2" id="i17">1</td><td class="ctr1" id="j17">0</td><td class="ctr2" id="k17">1</td></tr><tr><td id="a16"><a href="MetricPrefix.java.html#L388" class="el_method">MICRO(Unit)</a></td><td class="bar" id="b18"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c18">100 %</td><td class="bar" id="d18"/><td class="ctr2" id="e18">n/a</td><td class="ctr1" id="f18">0</td><td class="ctr2" id="g18">1</td><td class="ctr1" id="h18">0</td><td class="ctr2" id="i18">1</td><td class="ctr1" id="j18">0</td><td class="ctr2" id="k18">1</td></tr><tr><td id="a18"><a href="MetricPrefix.java.html#L402" class="el_method">NANO(Unit)</a></td><td class="bar" id="b19"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c19">100 %</td><td class="bar" id="d19"/><td class="ctr2" id="e19">n/a</td><td class="ctr1" id="f19">0</td><td class="ctr2" id="g19">1</td><td class="ctr1" id="h19">0</td><td class="ctr2" id="i19">1</td><td class="ctr1" id="j19">0</td><td class="ctr2" id="k19">1</td></tr><tr><td id="a20"><a href="MetricPrefix.java.html#L416" class="el_method">PICO(Unit)</a></td><td class="bar" id="b20"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c20">100 %</td><td class="bar" id="d20"/><td class="ctr2" id="e20">n/a</td><td class="ctr1" id="f20">0</td><td class="ctr2" id="g20">1</td><td class="ctr1" id="h20">0</td><td class="ctr2" id="i20">1</td><td class="ctr1" id="j20">0</td><td class="ctr2" id="k20">1</td></tr><tr><td id="a6"><a href="MetricPrefix.java.html#L430" class="el_method">FEMTO(Unit)</a></td><td class="bar" id="b21"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c21">100 %</td><td class="bar" id="d21"/><td class="ctr2" id="e21">n/a</td><td class="ctr1" id="f21">0</td><td class="ctr2" id="g21">1</td><td class="ctr1" id="h21">0</td><td class="ctr2" id="i21">1</td><td class="ctr1" id="j21">0</td><td class="ctr2" id="k21">1</td></tr><tr><td id="a0"><a href="MetricPrefix.java.html#L444" class="el_method">ATTO(Unit)</a></td><td class="bar" id="b22"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c22">100 %</td><td class="bar" id="d22"/><td class="ctr2" id="e22">n/a</td><td class="ctr1" id="f22">0</td><td class="ctr2" id="g22">1</td><td class="ctr1" id="h22">0</td><td class="ctr2" id="i22">1</td><td class="ctr1" id="j22">0</td><td class="ctr2" id="k22">1</td></tr><tr><td id="a29"><a href="MetricPrefix.java.html#L458" class="el_method">ZEPTO(Unit)</a></td><td class="bar" id="b23"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c23">100 %</td><td class="bar" id="d23"/><td class="ctr2" id="e23">n/a</td><td class="ctr1" id="f23">0</td><td class="ctr2" id="g23">1</td><td class="ctr1" id="h23">0</td><td class="ctr2" id="i23">1</td><td class="ctr1" id="j23">0</td><td class="ctr2" id="k23">1</td></tr><tr><td id="a27"><a href="MetricPrefix.java.html#L472" class="el_method">YOCTO(Unit)</a></td><td class="bar" id="b24"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c24">100 %</td><td class="bar" id="d24"/><td class="ctr2" id="e24">n/a</td><td class="ctr1" id="f24">0</td><td class="ctr2" id="g24">1</td><td class="ctr1" id="h24">0</td><td class="ctr2" id="i24">1</td><td class="ctr1" id="j24">0</td><td class="ctr2" id="k24">1</td></tr><tr><td id="a24"><a href="MetricPrefix.java.html#L486" class="el_method">RONTO(Unit)</a></td><td class="bar" id="b25"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c25">100 %</td><td class="bar" id="d25"/><td class="ctr2" id="e25">n/a</td><td class="ctr1" id="f25">0</td><td class="ctr2" id="g25">1</td><td class="ctr1" id="h25">0</td><td class="ctr2" id="i25">1</td><td class="ctr1" id="j25">0</td><td class="ctr2" id="k25">1</td></tr><tr><td id="a21"><a href="MetricPrefix.java.html#L500" class="el_method">QUECTO(Unit)</a></td><td class="bar" id="b26"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="4" alt="4"/></td><td class="ctr2" id="c26">100 %</td><td class="bar" id="d26"/><td class="ctr2" id="e26">n/a</td><td class="ctr1" id="f26">0</td><td class="ctr2" id="g26">1</td><td class="ctr1" id="h26">0</td><td class="ctr2" id="i26">1</td><td class="ctr1" id="j26">0</td><td class="ctr2" id="k26">1</td></tr><tr><td id="a9"><a href="MetricPrefix.java.html#L510" class="el_method">getSymbol()</a></td><td class="bar" id="b27"><img src="../jacoco-resources/greenbar.gif" width="1" height="10" title="3" alt="3"/></td><td class="ctr2" id="c27">100 %</td><td class="bar" id="d27"/><td class="ctr2" id="e27">n/a</td><td class="ctr1" id="f27">0</td><td class="ctr2" id="g27">1</td><td class="ctr1" id="h27">0</td><td class="ctr2" id="i27">1</td><td class="ctr1" id="j27">0</td><td class="ctr2" id="k27">1</td></tr><tr><td id="a10"><a href="MetricPrefix.java.html#L518" class="el_method">getValue()</a></td><td class="bar" id="b28"><img src="../jacoco-resources/greenbar.gif" width="1" height="10" title="3" alt="3"/></td><td class="ctr2" id="c28">100 %</td><td class="bar" id="d28"/><td class="ctr2" id="e28">n/a</td><td class="ctr1" id="f28">0</td><td class="ctr2" id="g28">1</td><td class="ctr1" id="h28">0</td><td class="ctr2" id="i28">1</td><td class="ctr1" id="j28">0</td><td class="ctr2" id="k28">1</td></tr><tr><td id="a7"><a href="MetricPrefix.java.html#L526" class="el_method">getExponent()</a></td><td class="bar" id="b29"><img src="../jacoco-resources/greenbar.gif" width="1" height="10" title="3" alt="3"/></td><td class="ctr2" id="c29">100 %</td><td class="bar" id="d29"/><td class="ctr2" id="e29">n/a</td><td class="ctr1" id="f29">0</td><td class="ctr2" id="g29">1</td><td class="ctr1" id="h29">0</td><td class="ctr2" id="i29">1</td><td class="ctr1" id="j29">0</td><td class="ctr2" id="k29">1</td></tr><tr><td id="a8"><a href="MetricPrefix.java.html#L536" class="el_method">getName()</a></td><td class="bar" id="b30"><img src="../jacoco-resources/greenbar.gif" width="1" height="10" title="3" alt="3"/></td><td class="ctr2" id="c30">100 %</td><td class="bar" id="d30"/><td class="ctr2" id="e30">n/a</td><td class="ctr1" id="f30">0</td><td class="ctr2" id="g30">1</td><td class="ctr1" id="h30">0</td><td class="ctr2" id="i30">1</td><td class="ctr1" id="j30">0</td><td class="ctr2" id="k30">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure/MetricPrefix.java.html b/docs/site/jacoco/javax.measure/MetricPrefix.java.html
      new file mode 100644
      index 00000000..e347fbad
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure/MetricPrefix.java.html
      @@ -0,0 +1,539 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>MetricPrefix.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.source.html" class="el_package">javax.measure</a> &gt; <span class="el_source">MetricPrefix.java</span></div><h1>MetricPrefix.java</h1><pre class="source lang-java linenums">/*
      + * Units of Measurement API
      + * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + *
      + * All rights reserved.
      + *
      + * Redistribution and use in source and binary forms, with or without modification,
      + * are permitted provided that the following conditions are met:
      + *
      + * 1. Redistributions of source code must retain the above copyright notice,
      + *    this list of conditions and the following disclaimer.
      + *
      + * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
      + *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
      + *
      + * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
      + *    derived from this software without specific prior written permission.
      + *
      + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot;
      + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
      + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
      + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
      + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
      + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      + */
      +package javax.measure;
      +
      +/**
      + * Provides support for the 24 prefixes used in the metric system (decimal multiples and submultiples of units). For example:
      + *
      + * &lt;pre&gt;
      + * {@code import static tech.units.indriya.unit.Units.*;  // Static import (from the RI).
      + * import static javax.measure.MetricPrefix.*; // Static import.
      + * import javax.measure.*;
      + * import javax.measure.quantity.*;
      + * ...
      + * Unit&lt;Pressure&gt; HECTOPASCAL = HECTO(PASCAL);
      + * Unit&lt;Length&gt; KILOMETRE = KILO(METRE);} 
      + * &lt;/pre&gt;
      + * You could also apply &lt;code&gt;Unit.prefix&lt;/code&gt;:
      + * &lt;pre&gt;
      + * {@code ...
      + * Unit&lt;Pressure&gt; HECTOPASCAL = PASCAL.prefix(HECTO);
      + * Unit&lt;Length&gt; KILOMETRE = METRE.prefix(KILO);}
      + * &lt;/pre&gt;
      + * 
      + * &lt;p&gt;
      + * &lt;b&gt;Do not use ordinal() to obtain the numeric representation of MetricPrefix. Use getValue() and getExponent() instead.&lt;/b&gt;
      + * &lt;/p&gt;
      + * 
      + * &lt;dl&gt;
      + * &lt;dt&gt;&lt;span class=&quot;strong&quot;&gt;Implementation Requirements&lt;/span&gt;&lt;/dt&gt;&lt;dd&gt;This is an immutable and thread-safe enum.&lt;/dd&gt;
      + * &lt;/dl&gt;
      + * 
      + * @see &lt;a href=&quot;https://en.wikipedia.org/wiki/Metric_prefix&quot;&gt;Wikipedia: Metric Prefix&lt;/a&gt;
      + * @author &lt;a href=&quot;mailto:jean-marie@dautelle.com&quot;&gt;Jean-Marie Dautelle&lt;/a&gt;
      + * @author &lt;a href=&quot;mailto:werner@units.tech&quot;&gt;Werner Keil&lt;/a&gt;
      + * @version 2.4, October 31, 2023
      + * @since 2.0
      + */
      +<span class="fc" id="L65">public enum MetricPrefix implements Prefix {</span>
      +	/** Prefix for 10&lt;sup&gt;30&lt;/sup&gt;. */
      +<span class="fc" id="L67">    QUETTA(&quot;Q&quot;, 30),</span>
      +	/** Prefix for 10&lt;sup&gt;27&lt;/sup&gt;. */
      +<span class="fc" id="L69">    RONNA(&quot;R&quot;, 27),</span>
      +	/** Prefix for 10&lt;sup&gt;24&lt;/sup&gt;. */
      +<span class="fc" id="L71">    YOTTA(&quot;Y&quot;, 24),</span>
      +    /** Prefix for 10&lt;sup&gt;21&lt;/sup&gt;. */
      +<span class="fc" id="L73">    ZETTA(&quot;Z&quot;, 21),</span>
      +    /** Prefix for 10&lt;sup&gt;18&lt;/sup&gt;. */
      +<span class="fc" id="L75">    EXA(&quot;E&quot;, 18),</span>
      +    /** Prefix for 10&lt;sup&gt;15&lt;/sup&gt;. */
      +<span class="fc" id="L77">    PETA(&quot;P&quot;, 15),</span>
      +    /** Prefix for 10&lt;sup&gt;12&lt;/sup&gt;. */
      +<span class="fc" id="L79">    TERA(&quot;T&quot;, 12),</span>
      +    /** Prefix for 10&lt;sup&gt;9&lt;/sup&gt;.
      +     * @see &lt;a href=&quot;https://en.wikipedia.org/wiki/Giga-&quot;&gt;Wikipedia: Giga&lt;/a&gt;  
      +     */
      +<span class="fc" id="L83">    GIGA(&quot;G&quot;, 9),</span>
      +    /** Prefix for 10&lt;sup&gt;6&lt;/sup&gt;. 
      +     * @see &lt;a href=&quot;https://en.wikipedia.org/wiki/Mega-&quot;&gt;Wikipedia: Mega&lt;/a&gt; */
      +<span class="fc" id="L86">    MEGA(&quot;M&quot;, 6),</span>
      +    /** Prefix for 10&lt;sup&gt;3&lt;/sup&gt;.
      +     * @see &lt;a href=&quot;https://en.wikipedia.org/wiki/Kilo-&quot;&gt;Wikipedia: Kilo&lt;/a&gt; 
      +     */
      +<span class="fc" id="L90">    KILO(&quot;k&quot;, 3),</span>
      +    /** Prefix for 10&lt;sup&gt;2&lt;/sup&gt;. 
      +     * @see &lt;a href=&quot;https://en.wikipedia.org/wiki/Hecto-&quot;&gt;Wikipedia: Hecto&lt;/a&gt; */
      +<span class="fc" id="L93">    HECTO(&quot;h&quot;, 2),</span>
      +    /** Prefix for 10&lt;sup&gt;1&lt;/sup&gt;. 
      +     * @see &lt;a href=&quot;https://en.wikipedia.org/wiki/Deca-&quot;&gt;Wikipedia: Deca&lt;/a&gt; */
      +<span class="fc" id="L96">    DECA(&quot;da&quot;, 1),</span>
      +    /** Prefix for 10&lt;sup&gt;-1&lt;/sup&gt;. 
      +     * @see &lt;a href=&quot;https://en.wikipedia.org/wiki/Deci-&quot;&gt;Wikipedia: Deci&lt;/a&gt; */
      +<span class="fc" id="L99">    DECI(&quot;d&quot;, -1),</span>
      +    /** Prefix for 10&lt;sup&gt;-2&lt;/sup&gt;.
      +     * @see &lt;a href=&quot;https://en.wikipedia.org/wiki/Centi-&quot;&gt;Wikipedia: Centi&lt;/a&gt; */     
      +<span class="fc" id="L102">    CENTI(&quot;c&quot;, -2),</span>
      +    /** Prefix for 10&lt;sup&gt;-3&lt;/sup&gt;.
      +     * @see &lt;a href=&quot;https://en.wikipedia.org/wiki/Milli-&quot;&gt;Wikipedia: Milli&lt;/a&gt; */
      +<span class="fc" id="L105">    MILLI(&quot;m&quot;, -3),</span>
      +    /** Prefix for 10&lt;sup&gt;-6&lt;/sup&gt;.
      +     * @see &lt;a href=&quot;https://en.wikipedia.org/wiki/Micro-&quot;&gt;Wikipedia: Micro&lt;/a&gt; */
      +<span class="fc" id="L108">    MICRO(&quot;\u00b5&quot;, -6),</span>
      +    /** Prefix for 10&lt;sup&gt;-9&lt;/sup&gt;.
      +     * @see &lt;a href=&quot;https://en.wikipedia.org/wiki/Nano-&quot;&gt;Wikipedia: Nano&lt;/a&gt; */
      +<span class="fc" id="L111">    NANO(&quot;n&quot;, -9),</span>
      +    /** Prefix for 10&lt;sup&gt;-12&lt;/sup&gt;. */
      +<span class="fc" id="L113">    PICO(&quot;p&quot;, -12),</span>
      +    /** Prefix for 10&lt;sup&gt;-15&lt;/sup&gt;. */
      +<span class="fc" id="L115">    FEMTO(&quot;f&quot;, -15),</span>
      +    /** Prefix for 10&lt;sup&gt;-18&lt;/sup&gt;. */
      +<span class="fc" id="L117">    ATTO(&quot;a&quot;, -18),</span>
      +    /** Prefix for 10&lt;sup&gt;-21&lt;/sup&gt;. */
      +<span class="fc" id="L119">    ZEPTO(&quot;z&quot;, -21),</span>
      +    /** Prefix for 10&lt;sup&gt;-24&lt;/sup&gt;. */
      +<span class="fc" id="L121">    YOCTO(&quot;y&quot;, -24),</span>
      +	/** Prefix for 10&lt;sup&gt;-27&lt;/sup&gt;. */
      +<span class="fc" id="L123">    RONTO(&quot;r&quot;, -27),</span>
      +    /** Prefix for 10&lt;sup&gt;-30&lt;/sup&gt;. */
      +<span class="fc" id="L125">    QUECTO(&quot;q&quot;, -30);</span>
      +
      +    /**
      +     * The symbol of this prefix, as returned by {@link #getSymbol}.
      +     *
      +     * @serial
      +     * @see #getSymbol()
      +     */
      +    private final String symbol;
      +
      +    /**
      +     * Exponent part of the associated factor in base^exponent representation.
      +     */
      +    private final int exponent;
      +
      +    /**
      +     * Creates a new prefix.
      +     *
      +     * @param symbol
      +     *          the symbol of this prefix.
      +     * @param exponent
      +     *          part of the associated factor in base^exponent representation.
      +     */
      +<span class="fc" id="L148">    private MetricPrefix(String symbol, int exponent) {</span>
      +<span class="fc" id="L149">        this.symbol = symbol;</span>
      +<span class="fc" id="L150">        this.exponent = exponent;</span>
      +<span class="fc" id="L151">    }</span>
      +    
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;30&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e30)&lt;/code&gt;.
      +     * @see #QUETTA
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; QUETTA(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L164">        return unit.prefix(QUETTA);</span>
      +    }
      +    
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;27&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e27)&lt;/code&gt;.
      +     * @see #RONNA
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; RONNA(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L178">        return unit.prefix(RONNA);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;24&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e24)&lt;/code&gt;.
      +     * @see #YOTTA
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; YOTTA(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L192">        return unit.prefix(YOTTA);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;21&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e21)&lt;/code&gt;.
      +     * @see #ZETTA
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; ZETTA(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L206">        return unit.prefix(ZETTA);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;18&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e18)&lt;/code&gt;.
      +     * @see #EXA
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; EXA(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L220">        return unit.prefix(EXA);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;15&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e15)&lt;/code&gt;.
      +     * @see #PETA
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; PETA(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L234">        return unit.prefix(PETA);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;12&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e12)&lt;/code&gt;.
      +     * @see #TERA
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; TERA(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L248">        return unit.prefix(TERA);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;9&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e9)&lt;/code&gt;.
      +     * @see #GIGA
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; GIGA(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L262">        return unit.prefix(GIGA);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;6&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e6)&lt;/code&gt;.
      +     * @see #MEGA
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; MEGA(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L276">        return unit.prefix(MEGA);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;3&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e3)&lt;/code&gt;.
      +     * @see #KILO
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; KILO(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L290">        return unit.prefix(KILO);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;2&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e2)&lt;/code&gt;.
      +     * @see #HECTO
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; HECTO(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L304">        return unit.prefix(HECTO);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;1&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e1)&lt;/code&gt;.
      +     * @see #DECA
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; DECA(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L318">        return unit.prefix(DECA);</span>
      +    }
      +    
      +    /**
      +     * US alias for &lt;code&gt;DECA&lt;/code&gt;.
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e1)&lt;/code&gt;.
      +     * @see #DECA
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; DEKA(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L332">        return unit.prefix(DECA);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;-1&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e-1)&lt;/code&gt;.
      +     * @see #DECI 
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; DECI(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L346">        return unit.prefix(DECI);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;-2&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e-2)&lt;/code&gt;.
      +     * @see #CENTI
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; CENTI(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L360">        return unit.prefix(CENTI);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;-3&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e-3)&lt;/code&gt;.
      +     * @see #MILLI
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; MILLI(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L374">        return unit.prefix(MILLI);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;-6&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e-6)&lt;/code&gt;.
      +     * @see #MICRO 
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; MICRO(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L388">        return unit.prefix(MICRO);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;-9&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e-9)&lt;/code&gt;.
      +     * @see #NANO 
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; NANO(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L402">        return unit.prefix(NANO);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;-12&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e-12)&lt;/code&gt;.
      +     * @see #PICO
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; PICO(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L416">        return unit.prefix(PICO);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;-15&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e-15)&lt;/code&gt;.
      +     * @see #FEMTO
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; FEMTO(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L430">        return unit.prefix(FEMTO);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;-18&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e-18)&lt;/code&gt;.
      +     * @see #ATTO 
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; ATTO(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L444">        return unit.prefix(ATTO);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;-21&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e-21)&lt;/code&gt;.
      +     * #see ZEPTO
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; ZEPTO(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L458">        return unit.prefix(ZEPTO);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;-24&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e-24)&lt;/code&gt;.
      +     * @see #YOCTO
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; YOCTO(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L472">        return unit.prefix(YOCTO);</span>
      +    }
      +    
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;-27&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e-27)&lt;/code&gt;.
      +     * @see #RONTO
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; RONTO(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L486">        return unit.prefix(RONTO);</span>
      +    }
      +
      +    /**
      +     * Returns the specified unit multiplied by the factor &lt;code&gt;10&lt;sup&gt;-30&lt;/sup&gt;&lt;/code&gt;
      +     *
      +     * @param &lt;Q&gt;
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return &lt;code&gt;unit.prefix(1e-30)&lt;/code&gt;.
      +     * @see #QUECTO
      +     */
      +    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Unit&lt;Q&gt; QUECTO(Unit&lt;Q&gt; unit) {
      +<span class="fc" id="L500">        return unit.prefix(QUECTO);</span>
      +    }
      +    
      +    /**
      +     * Returns the symbol of this prefix.
      +     *
      +     * @return this prefix symbol, not {@code null}.
      +     */
      +    @Override
      +    public String getSymbol() {
      +<span class="fc" id="L510">        return symbol;</span>
      +    }
      +
      +    /**
      +     * Base part of the associated factor in {@code base^exponent} representation. For metric prefix, this is always 10.
      +     */
      +    @Override
      +    public Integer getValue() {
      +<span class="fc" id="L518">        return 10;</span>
      +    }
      +
      +    /**
      +     * Exponent part of the associated factor in {@code base^exponent} representation.
      +     */
      +    @Override
      +    public int getExponent() {
      +<span class="fc" id="L526">        return exponent;</span>
      +    }
      +
      +    /**
      +     * Returns the name of this prefix.
      +     *
      +     * @return this prefix name, not {@code null}.
      +     */
      +    @Override
      +    public String getName() {
      +<span class="fc" id="L536">        return name();</span>
      +    }
      +}
      +</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure/Quantity$Scale.html b/docs/site/jacoco/javax.measure/Quantity$Scale.html
      new file mode 100644
      index 00000000..8ef3bb96
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure/Quantity$Scale.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>Quantity.Scale</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.html" class="el_package">javax.measure</a> &gt; <span class="el_class">Quantity.Scale</span></div><h1>Quantity.Scale</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 15</td><td class="ctr2">100 %</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">1</td><td class="ctr1">0</td><td class="ctr2">3</td><td class="ctr1">0</td><td class="ctr2">1</td></tr></tfoot><tbody><tr><td id="a0"><a href="Quantity.java.html#L105" class="el_method">static {...}</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="15" alt="15"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">3</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure/Quantity.html b/docs/site/jacoco/javax.measure/Quantity.html
      new file mode 100644
      index 00000000..1ebc5a18
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure/Quantity.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>Quantity</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.html" class="el_package">javax.measure</a> &gt; <span class="el_class">Quantity</span></div><h1>Quantity</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 6</td><td class="ctr2">100 %</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">1</td><td class="ctr1">0</td><td class="ctr2">1</td><td class="ctr1">0</td><td class="ctr2">1</td></tr></tfoot><tbody><tr><td id="a0"><a href="Quantity.java.html#L289" class="el_method">toSystemUnit()</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="6" alt="6"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">1</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure/Quantity.java.html b/docs/site/jacoco/javax.measure/Quantity.java.html
      new file mode 100644
      index 00000000..f9d09ea9
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure/Quantity.java.html
      @@ -0,0 +1,317 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>Quantity.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.source.html" class="el_package">javax.measure</a> &gt; <span class="el_source">Quantity.java</span></div><h1>Quantity.java</h1><pre class="source lang-java linenums">/*
      + * Units of Measurement API
      + * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + *
      + * All rights reserved.
      + *
      + * Redistribution and use in source and binary forms, with or without modification,
      + * are permitted provided that the following conditions are met:
      + *
      + * 1. Redistributions of source code must retain the above copyright notice,
      + *    this list of conditions and the following disclaimer.
      + *
      + * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
      + *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
      + *
      + * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
      + *    derived from this software without specific prior written permission.
      + *
      + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot;
      + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
      + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
      + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
      + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
      + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      + */
      +package javax.measure;
      +
      +/**
      + * Represents a quantitative property of a phenomenon, body, or substance, that
      + * can be quantified by measurement. {@link javax.measure.quantity.Mass Mass},
      + * time, distance, heat, and angular separation are among the familiar examples
      + * of quantitative properties.
      + * &lt;p&gt;
      + * &lt;code&gt; {@literal Unit&lt;Mass&gt;} pound = ... {@literal Quantity&lt;Length&gt;} size = ... {@literal Sensor&lt;Temperature&gt;}&lt;br&gt;
      + * thermometer = ... {@literal Vector3D&lt;Speed&gt;} aircraftSpeed = ... &lt;/code&gt;
      + * &lt;/p&gt;
      + *
      + * &lt;dl&gt;
      + * &lt;dt&gt;&lt;span class=&quot;strong&quot;&gt;Arithmetic operations&lt;/span&gt;&lt;/dt&gt;
      + * &lt;/dl&gt; 
      + * This interface defines some arithmetic operations between {@code Quantity}
      + * instances. All implementations shall produce &lt;em&gt;equivalent&lt;/em&gt; results for
      + * the same operation applied on equivalent quantities. Two quantities are
      + * equivalent if, after conversion to the same unit of measurement, they have
      + * the same numerical value (ignoring rounding errors). For example 2000 metres
      + * is equivalent to 2 km, but 2°C is not equivalent to 2 K; it is equivalent to
      + * 275.15 K instead. Above requirement applied to addition means that 2°C + 2 K
      + * shall be equivalent to 275.15 K + 2 K.
      + *
      + * &lt;p&gt;All operations shall preserve the
      + * &lt;a href=&quot;https://en.wikiversity.org/wiki/Basic_Laws_of_Algebra&quot;&gt;basic laws
      + * of algebra&lt;/a&gt;, in particular &lt;b&gt;commutativity&lt;/b&gt; of addition and
      + * multiplication (&lt;var&gt;A&lt;/var&gt; + &lt;var&gt;B&lt;/var&gt; = &lt;var&gt;B&lt;/var&gt; + &lt;var&gt;A&lt;/var&gt;)
      + * and &lt;b&gt;associativity&lt;/b&gt; of addition and multiplication (&lt;var&gt;A&lt;/var&gt; +
      + * &lt;var&gt;B&lt;/var&gt;) + &lt;var&gt;C&lt;/var&gt; = &lt;var&gt;A&lt;/var&gt; + (&lt;var&gt;B&lt;/var&gt; + &lt;var&gt;C&lt;/var&gt;).
      + * In order to preserve those algebra laws, this specification requires all
      + * arithmetic operations to execute &lt;em&gt;as is&lt;/em&gt; all operands were converted
      + * to {@linkplain Unit#getSystemUnit() system unit} before the operation is
      + * carried out, and the result converted back to any compatible unit at
      + * implementation choice. For example 4 cm + 1 inch shall produce any result
      + * &lt;em&gt;equivalent&lt;/em&gt; to 0.04 m + 0.0254 m.&lt;/p&gt;
      + *
      + * &lt;p&gt;Implementations are allowed to avoid conversion to system unit if the
      + * result is guaranteed to be equivalent. This is often the case when the
      + * conversion between quantity unit and system unit is only a
      + * {@linkplain UnitConverter#isLinear() scale factor}. However this is not
      + * the case for conversions applying an offset or more complex formula.
      + * For example 2°C + 1°C = 274.15°C, not 3°C. This counter-intuitive result
      + * is essential for preserving algebra laws like associativity, and is also
      + * the expected result from a thermodynamic point of view.&lt;/p&gt;
      + *
      + * &lt;dl&gt;
      + * &lt;dt&gt;&lt;span class=&quot;strong&quot;&gt;API Note:&lt;/span&gt;&lt;/dt&gt;&lt;dd&gt;This interface places no restrictions on the mutability of
      + *          implementations, however immutability is strongly recommended. All
      + *          implementations must be {@link Comparable}.&lt;/dd&gt;
      + * &lt;/dl&gt;
      + *
      + * @param &lt;Q&gt;
      + *            The type of the quantity.
      + *
      + * @author &lt;a href=&quot;mailto:jean-marie@dautelle.com&quot;&gt;Jean-Marie Dautelle&lt;/a&gt;
      + * @author &lt;a href=&quot;mailto:martin.desruisseaux@geomatys.com&quot;&gt;Martin
      + *         Desruisseaux&lt;/a&gt;
      + * @author &lt;a href=&quot;mailto:werner@uom.technology&quot;&gt;Werner Keil&lt;/a&gt;
      + * @author &lt;a href=&quot;mailto:otaviopolianasantana@gmail.com&quot;&gt;Otavio Santana&lt;/a&gt;
      + * @see Unit
      + * @see &lt;a href=&quot;http://en.wikipedia.org/wiki/Quantity&quot;&gt;Wikipedia: Quantity&lt;/a&gt;
      + * @see &lt;a href=&quot;http://martinfowler.com/eaaDev/quantity.html&quot;&gt;Martin Fowler -
      + *      Quantity&lt;/a&gt;
      + * @version 2.5, May 20, 2023
      + * @since 1.0
      + */
      +public interface Quantity&lt;Q extends Quantity&lt;Q&gt;&gt; {
      +    
      +   /**
      +    * The scale of a {@link Quantity}, either {@code ABSOLUTE} or {@code RELATIVE}.
      +    *
      +    * @since 2.0
      +    * @see &lt;a href=&quot;https://en.wikipedia.org/wiki/Absolute_scale&quot;&gt;Wikipedia: Absolute scale&lt;/a&gt;
      +    */
      +<span class="fc" id="L105">    public static enum Scale {</span>
      +    	/** 
      +    	 * Absolute scale
      +    	 * @see &lt;a href=&quot;https://en.wikipedia.org/wiki/Absolute_scale&quot;&gt;Wikipedia: Absolute scale&lt;/a&gt; 
      +    	 */
      +<span class="fc" id="L110">        ABSOLUTE, </span>
      +        /** 
      +         * Relative scale 
      +    	 */
      +<span class="fc" id="L114">        RELATIVE</span>
      +    }
      +       
      +    /**
      +     * Returns the sum of this {@code Quantity} with the one specified.
      +     * The result shall be as if this quantity and the given addend were
      +     * converted to {@linkplain Unit#getSystemUnit() system unit} before
      +     * to be added, and the result converted back to the unit of this
      +     * quantity or any other compatible unit at implementation choice.
      +     *
      +     * @param addend
      +     *            the {@code Quantity} to be added.
      +     * @return {@code this + addend}.
      +     */
      +    Quantity&lt;Q&gt; add(Quantity&lt;Q&gt; addend);
      +
      +    /**
      +     * Returns the difference between this {@code Quantity} and the one specified.
      +     * The result shall be as if this quantity and the given subtrahend were
      +     * converted to {@linkplain Unit#getSystemUnit() system unit} before
      +     * to be subtracted, and the result converted back to the unit of this
      +     * quantity or any other compatible unit at implementation choice.
      +     *
      +     * @param subtrahend
      +     *            the {@code Quantity} to be subtracted.
      +     * @return &lt;code&gt;this - subtrahend&lt;/code&gt;.
      +     */
      +    Quantity&lt;Q&gt; subtract(Quantity&lt;Q&gt; subtrahend);
      +
      +    /**
      +     * Returns the quotient of this {@code Quantity} divided by the {@code Quantity}
      +     * specified.
      +     * The result shall be as if this quantity and the given divisor were
      +     * converted to {@linkplain Unit#getSystemUnit() system unit} before
      +     * to be divided, and the result converted back to the unit of this
      +     * quantity or any other compatible unit at implementation choice.
      +     *
      +     * @throws ClassCastException
      +     *             if the type of an element in the specified operation is
      +     *             incompatible with this quantity
      +     *
      +     * @param divisor
      +     *            the {@code Quantity} divisor.
      +     * @return &lt;code&gt;this / divisor&lt;/code&gt;.
      +     */
      +    Quantity&lt;?&gt; divide(Quantity&lt;?&gt; divisor);
      +
      +    /**
      +     * Returns the quotient of this {@code Quantity} divided by the {@code Number}
      +     * specified.
      +     * The result shall be as if this quantity was converted to
      +     * {@linkplain Unit#getSystemUnit() system unit} before to be divided,
      +     * and the result converted back to the unit of this quantity or any
      +     * other compatible unit at implementation choice.
      +     *
      +     * @param divisor
      +     *            the {@code Number} divisor.
      +     * @return &lt;code&gt;this / divisor&lt;/code&gt;.
      +     */
      +    Quantity&lt;Q&gt; divide(Number divisor);
      +
      +    /**
      +     * Returns the product of this {@code Quantity} with the one specified.
      +     * The result shall be as if this quantity and the given multiplicand were
      +     * converted to {@linkplain Unit#getSystemUnit() system unit} before
      +     * to be multiplied, and the result converted back to the unit of this
      +     * quantity or any other compatible unit at implementation choice.
      +     *
      +     * @throws ClassCastException
      +     *             if the type of an element in the specified operation is
      +     *             incompatible with this quantity
      +     *
      +     * @param multiplicand
      +     *            the {@code Quantity} multiplicand.
      +     * @return &lt;code&gt;this * multiplicand&lt;/code&gt;.
      +     */
      +    Quantity&lt;?&gt; multiply(Quantity&lt;?&gt; multiplicand);
      +
      +    /**
      +     * Returns the product of this {@code Quantity} with the {@code Number} value
      +     * specified.
      +     * The result shall be as if this quantity was converted to
      +     * {@linkplain Unit#getSystemUnit() system unit} before to be multiplied,
      +     * and the result converted back to the unit of this quantity or any
      +     * other compatible unit at implementation choice.
      +     *
      +     * @param multiplicand
      +     *            the {@code Number} multiplicand.
      +     * @return &lt;code&gt;this * multiplicand&lt;/code&gt;.
      +     */
      +    Quantity&lt;Q&gt; multiply(Number multiplicand);
      +
      +    /**
      +     * Returns this {@code Quantity} converted into another (compatible)
      +     * {@code Unit}.
      +     *
      +     * @param unit
      +     *            the {@code Unit unit} in which the returned quantity is stated.
      +     * @return this quantity or a new quantity equivalent to this quantity stated in the specified unit.
      +     * @throws ArithmeticException
      +     *             if the result is inexact and the quotient has a non-terminating decimal expansion.
      +     */
      +    Quantity&lt;Q&gt; to(Unit&lt;Q&gt; unit);
      +
      +    /**
      +     * Returns a {@code Quantity} that is the multiplicative inverse of this
      +     * {@code Quantity}, having reciprocal value and reciprocal unit as given by
      +     * {@code this.getUnit().inverse()}.
      +     *
      +     * @return reciprocal {@code Quantity}
      +     * @see &lt;a href=
      +     *      &quot;https://en.wikipedia.org/wiki/Multiplicative_inverse&quot;&gt;Wikipedia:
      +     *      Multiplicative inverse&lt;/a&gt;
      +     */
      +    Quantity&lt;?&gt; inverse();
      +
      +    /**
      +     * Returns a {@code Quantity} whose value is {@code (-this.getValue())}.
      +     *
      +     * @return {@code -this}.
      +     */
      +    Quantity&lt;Q&gt; negate();
      +
      +    /**
      +     * Casts this quantity to a parameterized unit of specified nature or throw a
      +     * &lt;code&gt;ClassCastException&lt;/code&gt; if the dimension of the specified quantity
      +     * and this measure unit's dimension do not match. For example:
      +     * &lt;p&gt;
      +     * &lt;code&gt;
      +     *     {@literal Quantity&lt;Length&gt;} length = Quantities.getQuantity(&quot;2 km&quot;).asType(Length.class);
      +     * &lt;/code&gt; or &lt;code&gt;
      +     *     {@literal Quantity&lt;Speed&gt;} C = length.multiply(299792458).divide(second).asType(Speed.class);
      +     * &lt;/code&gt;
      +     * &lt;/p&gt;
      +     *
      +     * @param &lt;T&gt;
      +     *            The type of the quantity.
      +     * @param type
      +     *            the quantity class identifying the nature of the quantity.
      +     * @return this quantity parameterized with the specified type.
      +     * @throws ClassCastException
      +     *             if the dimension of this unit is different from the specified
      +     *             quantity dimension.
      +     * @throws UnsupportedOperationException
      +     *             if the specified quantity class does not have a SI unit for the
      +     *             quantity.
      +     * @see Unit#asType(Class)
      +     */
      +    &lt;T extends Quantity&lt;T&gt;&gt; Quantity&lt;T&gt; asType(Class&lt;T&gt; type) throws ClassCastException;
      +
      +    /**
      +     * Returns the value of this {@code Quantity}.
      +     *
      +     * @return a value.
      +     */
      +    Number getValue();
      +
      +    /**
      +     * Returns the unit of this {@code Quantity}.
      +     *
      +     * @return the unit (shall not be {@code null}).
      +     */
      +    Unit&lt;Q&gt; getUnit();
      +    
      +    /**
      +     * Convenient method equivalent to {@link #to(javax.measure.Unit)
      +     * to(getUnit().toSystemUnit())}.
      +     *
      +     * @return this quantity or a new quantity equivalent to this quantity stated in
      +     *         SI units.
      +     * @throws ArithmeticException
      +     *             if the result is inexact and the quotient has a non-terminating
      +     *             decimal expansion.
      +     */
      +    default Quantity&lt;Q&gt; toSystemUnit() {
      +<span class="fc" id="L289">        return to(getUnit().getSystemUnit());</span>
      +    }
      +      
      +    /**
      +     * Returns the {@code Scale} of this {@code Quantity}, if it's absolute or relative.
      +     *
      +     * @return the scale, if it's an absolute or relative quantity.
      +     * @since 2.0
      +     
      +     * @see &lt;a href=&quot;https://en.wikipedia.org/wiki/Absolute_scale&quot;&gt;Wikipedia: Absolute scale&lt;/a&gt;
      +     */
      +    Scale getScale();
      +    
      +    /**
      +     * Compares two instances of {@code Quantity &lt;Q&gt;}, performing the conversion of units if necessary.
      +     *
      +     * @param that
      +     *          the {@code quantity&lt;Q&gt;} to be compared with this instance.
      +     * @return {@code true} if {@code that \u2261 this}.
      +     * @throws NullPointerException
      +     *           if the quantity is null
      +     *           
      +     * @see &lt;a href= &quot;https://dictionary.cambridge.org/dictionary/english/equivalent&quot;&gt;Cambridge Dictionary: equivalent&lt;/a&gt;
      +     * @see &lt;a href= &quot;https://www.lexico.com/en/definition/equivalent&quot;&gt;LEXICO: equivalent&lt;/a&gt;
      +     * @since 2.1       
      +     */
      +    boolean isEquivalentTo(Quantity&lt;Q&gt; that);
      +}
      +</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure/UnconvertibleException.html b/docs/site/jacoco/javax.measure/UnconvertibleException.html
      new file mode 100644
      index 00000000..32da2e53
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure/UnconvertibleException.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>UnconvertibleException</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.html" class="el_package">javax.measure</a> &gt; <span class="el_class">UnconvertibleException</span></div><h1>UnconvertibleException</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 13</td><td class="ctr2">100 %</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">3</td><td class="ctr1">0</td><td class="ctr2">6</td><td class="ctr1">0</td><td class="ctr2">3</td></tr></tfoot><tbody><tr><td id="a1"><a href="UnconvertibleException.java.html#L77" class="el_method">UnconvertibleException(String, Throwable)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="5" alt="5"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">2</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a0"><a href="UnconvertibleException.java.html#L54" class="el_method">UnconvertibleException(String)</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="96" height="10" title="4" alt="4"/></td><td class="ctr2" id="c1">100 %</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">2</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a2"><a href="UnconvertibleException.java.html#L64" class="el_method">UnconvertibleException(Throwable)</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="96" height="10" title="4" alt="4"/></td><td class="ctr2" id="c2">100 %</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i2">2</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure/UnconvertibleException.java.html b/docs/site/jacoco/javax.measure/UnconvertibleException.java.html
      new file mode 100644
      index 00000000..fd68db25
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure/UnconvertibleException.java.html
      @@ -0,0 +1,80 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>UnconvertibleException.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <a href="index.source.html" class="el_package">javax.measure</a> &gt; <span class="el_source">UnconvertibleException.java</span></div><h1>UnconvertibleException.java</h1><pre class="source lang-java linenums">/*
      + * Units of Measurement API
      + * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + *
      + * All rights reserved.
      + *
      + * Redistribution and use in source and binary forms, with or without modification,
      + * are permitted provided that the following conditions are met:
      + *
      + * 1. Redistributions of source code must retain the above copyright notice,
      + *    this list of conditions and the following disclaimer.
      + *
      + * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
      + *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
      + *
      + * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
      + *    derived from this software without specific prior written permission.
      + *
      + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot;
      + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
      + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
      + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
      + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
      + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      + */
      +package javax.measure;
      +
      +/**
      + * Signals that a problem of some sort has occurred due to the impossibility of constructing a converter between two units. For example, the
      + * multiplication of offset units are usually units not convertible to their {@linkplain Unit#getSystemUnit() system unit}.
      + *
      + * @author &lt;a href=&quot;mailto:jean-marie@dautelle.com&quot;&gt;Jean-Marie Dautelle&lt;/a&gt;
      + * @author &lt;a href=&quot;mailto:werner@uom.technology&quot;&gt;Werner Keil&lt;/a&gt;
      + * @version 1.0, Aug 8, 2016
      + *
      + */
      +public class UnconvertibleException extends MeasurementException {
      +    /**
      +     * For cross-version compatibility.
      +     */
      +    private static final long serialVersionUID = -4623551240019830166L;
      +
      +    /**
      +     * Constructs a {@code UnconvertibleException} with the given message.
      +     *
      +     * @param message
      +     *            the detail message, or {@code null} if none.
      +     */
      +    public UnconvertibleException(final String message) {
      +<span class="fc" id="L54">        super(message);</span>
      +<span class="fc" id="L55">    }</span>
      +
      +    /**
      +     * Constructs a {@code UnconvertibleException} with the given cause.
      +     *
      +     * @param cause
      +     *            the cause of this exception, or {@code null} if none.
      +     */
      +    public UnconvertibleException(final Throwable cause) {
      +<span class="fc" id="L64">        super(cause);</span>
      +<span class="fc" id="L65">    }</span>
      +
      +    /**
      +     * Constructs a {@code UnconvertibleException} with the given message and cause.
      +     *
      +     * @param message
      +     *            the detail message, or {@code null} if none.
      +     * @param cause
      +     *            the cause of this exception, or {@code null} if none.
      +     *
      +     */
      +    public UnconvertibleException(final String message, final Throwable cause) {
      +<span class="fc" id="L77">        super(message, cause);</span>
      +<span class="fc" id="L78">    }</span>
      +}
      +</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure/index.html b/docs/site/jacoco/javax.measure/index.html
      new file mode 100644
      index 00000000..3656d6d6
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure/index.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>javax.measure</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="index.source.html" class="el_source">Source Files</a><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <span class="el_package">javax.measure</span></div><h1>javax.measure</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 519</td><td class="ctr2">100 %</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">61</td><td class="ctr1">0</td><td class="ctr2">115</td><td class="ctr1">0</td><td class="ctr2">61</td><td class="ctr1">0</td><td class="ctr2">8</td></tr></tfoot><tbody><tr><td id="a4"><a href="MetricPrefix.html" class="el_class">MetricPrefix</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="318" alt="318"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">31</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">58</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">31</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m0">1</td></tr><tr><td id="a0"><a href="BinaryPrefix.html" class="el_class">BinaryPrefix</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="46" height="10" title="122" alt="122"/></td><td class="ctr2" id="c1">100 %</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">14</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">25</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">14</td><td class="ctr1" id="l1">0</td><td class="ctr2" id="m1">1</td></tr><tr><td id="a2"><a href="MeasurementError.html" class="el_class">MeasurementError</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="6" height="10" title="16" alt="16"/></td><td class="ctr2" id="c2">100 %</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">4</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i2">8</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">4</td><td class="ctr1" id="l2">0</td><td class="ctr2" id="m2">1</td></tr><tr><td id="a3"><a href="MeasurementException.html" class="el_class">MeasurementException</a></td><td class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" width="6" height="10" title="16" alt="16"/></td><td class="ctr2" id="c3">100 %</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">0</td><td class="ctr2" id="g3">4</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i3">8</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">4</td><td class="ctr1" id="l3">0</td><td class="ctr2" id="m3">1</td></tr><tr><td id="a6"><a href="Quantity$Scale.html" class="el_class">Quantity.Scale</a></td><td class="bar" id="b4"><img src="../jacoco-resources/greenbar.gif" width="5" height="10" title="15" alt="15"/></td><td class="ctr2" id="c4">100 %</td><td class="bar" id="d4"/><td class="ctr2" id="e4">n/a</td><td class="ctr1" id="f4">0</td><td class="ctr2" id="g6">1</td><td class="ctr1" id="h4">0</td><td class="ctr2" id="i6">3</td><td class="ctr1" id="j4">0</td><td class="ctr2" id="k6">1</td><td class="ctr1" id="l4">0</td><td class="ctr2" id="m4">1</td></tr><tr><td id="a1"><a href="IncommensurableException.html" class="el_class">IncommensurableException</a></td><td class="bar" id="b5"><img src="../jacoco-resources/greenbar.gif" width="4" height="10" title="13" alt="13"/></td><td class="ctr2" id="c5">100 %</td><td class="bar" id="d5"/><td class="ctr2" id="e5">n/a</td><td class="ctr1" id="f5">0</td><td class="ctr2" id="g4">3</td><td class="ctr1" id="h5">0</td><td class="ctr2" id="i4">6</td><td class="ctr1" id="j5">0</td><td class="ctr2" id="k4">3</td><td class="ctr1" id="l5">0</td><td class="ctr2" id="m5">1</td></tr><tr><td id="a7"><a href="UnconvertibleException.html" class="el_class">UnconvertibleException</a></td><td class="bar" id="b6"><img src="../jacoco-resources/greenbar.gif" width="4" height="10" title="13" alt="13"/></td><td class="ctr2" id="c6">100 %</td><td class="bar" id="d6"/><td class="ctr2" id="e6">n/a</td><td class="ctr1" id="f6">0</td><td class="ctr2" id="g5">3</td><td class="ctr1" id="h6">0</td><td class="ctr2" id="i5">6</td><td class="ctr1" id="j6">0</td><td class="ctr2" id="k5">3</td><td class="ctr1" id="l6">0</td><td class="ctr2" id="m6">1</td></tr><tr><td id="a5"><a href="Quantity.html" class="el_class">Quantity</a></td><td class="bar" id="b7"><img src="../jacoco-resources/greenbar.gif" width="2" height="10" title="6" alt="6"/></td><td class="ctr2" id="c7">100 %</td><td class="bar" id="d7"/><td class="ctr2" id="e7">n/a</td><td class="ctr1" id="f7">0</td><td class="ctr2" id="g7">1</td><td class="ctr1" id="h7">0</td><td class="ctr2" id="i7">1</td><td class="ctr1" id="j7">0</td><td class="ctr2" id="k7">1</td><td class="ctr1" id="l7">0</td><td class="ctr2" id="m7">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/jacoco/javax.measure/index.source.html b/docs/site/jacoco/javax.measure/index.source.html
      new file mode 100644
      index 00000000..3651821e
      --- /dev/null
      +++ b/docs/site/jacoco/javax.measure/index.source.html
      @@ -0,0 +1 @@
      +<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>javax.measure</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="index.html" class="el_class">Classes</a><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Units of Measurement API</a> &gt; <span class="el_package">javax.measure</span></div><h1>javax.measure</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 519</td><td class="ctr2">100 %</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">61</td><td class="ctr1">0</td><td class="ctr2">115</td><td class="ctr1">0</td><td class="ctr2">61</td><td class="ctr1">0</td><td class="ctr2">8</td></tr></tfoot><tbody><tr><td id="a4"><a href="MetricPrefix.java.html" class="el_source">MetricPrefix.java</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="318" alt="318"/></td><td class="ctr2" id="c0">100 %</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">31</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">58</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">31</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m1">1</td></tr><tr><td id="a0"><a href="BinaryPrefix.java.html" class="el_source">BinaryPrefix.java</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="46" height="10" title="122" alt="122"/></td><td class="ctr2" id="c1">100 %</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">14</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">25</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">14</td><td class="ctr1" id="l1">0</td><td class="ctr2" id="m2">1</td></tr><tr><td id="a5"><a href="Quantity.java.html" class="el_source">Quantity.java</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="7" height="10" title="21" alt="21"/></td><td class="ctr2" id="c2">100 %</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g6">2</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i6">4</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k6">2</td><td class="ctr1" id="l2">0</td><td class="ctr2" id="m0">2</td></tr><tr><td id="a2"><a href="MeasurementError.java.html" class="el_source">MeasurementError.java</a></td><td class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" width="6" height="10" title="16" alt="16"/></td><td class="ctr2" id="c3">100 %</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">0</td><td class="ctr2" id="g2">4</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i2">8</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k2">4</td><td class="ctr1" id="l3">0</td><td class="ctr2" id="m3">1</td></tr><tr><td id="a3"><a href="MeasurementException.java.html" class="el_source">MeasurementException.java</a></td><td class="bar" id="b4"><img src="../jacoco-resources/greenbar.gif" width="6" height="10" title="16" alt="16"/></td><td class="ctr2" id="c4">100 %</td><td class="bar" id="d4"/><td class="ctr2" id="e4">n/a</td><td class="ctr1" id="f4">0</td><td class="ctr2" id="g3">4</td><td class="ctr1" id="h4">0</td><td class="ctr2" id="i3">8</td><td class="ctr1" id="j4">0</td><td class="ctr2" id="k3">4</td><td class="ctr1" id="l4">0</td><td class="ctr2" id="m4">1</td></tr><tr><td id="a6"><a href="UnconvertibleException.java.html" class="el_source">UnconvertibleException.java</a></td><td class="bar" id="b5"><img src="../jacoco-resources/greenbar.gif" width="4" height="10" title="13" alt="13"/></td><td class="ctr2" id="c5">100 %</td><td class="bar" id="d5"/><td class="ctr2" id="e5">n/a</td><td class="ctr1" id="f5">0</td><td class="ctr2" id="g4">3</td><td class="ctr1" id="h5">0</td><td class="ctr2" id="i4">6</td><td class="ctr1" id="j5">0</td><td class="ctr2" id="k4">3</td><td class="ctr1" id="l5">0</td><td class="ctr2" id="m5">1</td></tr><tr><td id="a1"><a href="IncommensurableException.java.html" class="el_source">IncommensurableException.java</a></td><td class="bar" id="b6"><img src="../jacoco-resources/greenbar.gif" width="4" height="10" title="13" alt="13"/></td><td class="ctr2" id="c6">100 %</td><td class="bar" id="d6"/><td class="ctr2" id="e6">n/a</td><td class="ctr1" id="f6">0</td><td class="ctr2" id="g5">3</td><td class="ctr1" id="h6">0</td><td class="ctr2" id="i5">6</td><td class="ctr1" id="j6">0</td><td class="ctr2" id="k5">3</td><td class="ctr1" id="l6">0</td><td class="ctr2" id="m6">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.11.202310140853</span></div></body></html>
      \ No newline at end of file
      diff --git a/docs/site/license-plugin-report.xml b/docs/site/license-plugin-report.xml
      new file mode 100644
      index 00000000..f91f62c7
      --- /dev/null
      +++ b/docs/site/license-plugin-report.xml
      @@ -0,0 +1,111 @@
      +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
      +<licensePluginReport goal="CHECK" timestamp="1698868832051">
      +    <module artifactId="unit-api" groupId="javax.measure" version="2.2.1-SNAPSHOT"/>
      +    <files>
      +        <file path="src\main\java\javax\measure\BinaryPrefix.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\Dimension.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\IncommensurableException.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\MeasurementError.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\MeasurementException.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\MetricPrefix.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\Prefix.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\Quantity.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\UnconvertibleException.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\Unit.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\UnitConverter.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\format\MeasurementParseException.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\format\QuantityFormat.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\format\UnitFormat.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\format\package-info.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\package-info.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\Acceleration.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\AmountOfSubstance.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\Angle.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\Area.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\CatalyticActivity.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\Dimensionless.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\ElectricCapacitance.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\ElectricCharge.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\ElectricConductance.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\ElectricCurrent.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\ElectricInductance.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\ElectricPotential.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\ElectricResistance.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\Energy.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\Force.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\Frequency.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\Illuminance.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\Length.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\LuminousFlux.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\LuminousIntensity.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\MagneticFlux.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\MagneticFluxDensity.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\Mass.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\Power.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\Pressure.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\RadiationDoseAbsorbed.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\RadiationDoseEffective.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\Radioactivity.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\SolidAngle.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\Speed.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\Temperature.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\Time.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\Volume.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\quantity\package-info.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\spi\FormatService.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\spi\QuantityFactory.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\spi\ServiceProvider.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\spi\SystemOfUnits.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\spi\SystemOfUnitsService.java" result="PRESENT"/>
      +        <file path="src\main\java\javax\measure\spi\package-info.java" result="PRESENT"/>
      +        <file path="src\main\jdk9\javax\measure\spi\ServiceProvider.java" result="PRESENT"/>
      +        <file path="src\main\jdk9\module-info.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\spi\FormatServiceTest.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\spi\ServiceProviderTest.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\spi\TestSystemOfUnitsService.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\BinaryPrefixTest.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\CalcTripLength.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\CircleInfo.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\Conversions.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\ConverterTest.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\DimensionTest.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\EnumUnit.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\ExceptionsTest.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\MetricPrefixTest.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\TestConverter.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\TestDimension.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\TestUnit.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\TripLeg.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\UnitTest.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\format\MeasurementParseTest.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\format\QuantityFormatTest.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\format\SimpleTestQuantityFormat.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\format\SimpleTestUnitFormat.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\format\TestQuantityFormat.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\format\TestUnitFormat.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\format\UnitFormatTest.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\format\package-info.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\function\MultiplyConverter.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\package-info.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\quantity\AreaQuantity.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\quantity\AreaQuantityTest.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\quantity\CircleInfo.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\quantity\DimensionlessQuantity.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\quantity\DistanceQuantity.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\quantity\DistanceQuantityTest.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\quantity\TemperatureQuantity.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\quantity\TemperatureQuantityTest.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\quantity\TestQuantities.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\quantity\TestQuantity.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\quantity\TimeQuantity.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\quantity\VolumeQuantity.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\unit\AreaUnit.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\unit\BaseUnit.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\unit\DistanceUnit.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\unit\MassUnit.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\unit\SpeedUnit.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\unit\TemperatureUnit.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\unit\TimeUnit.java" result="PRESENT"/>
      +        <file path="src\test\java\javax\measure\test\unit\VolumeUnit.java" result="PRESENT"/>
      +    </files>
      +</licensePluginReport>
      diff --git a/docs/site/licenses.html b/docs/site/licenses.html
      new file mode 100644
      index 00000000..ce3f9d54
      --- /dev/null
      +++ b/docs/site/licenses.html
      @@ -0,0 +1,110 @@
      +<!DOCTYPE html>
      +<!--
      + | Generated by Apache Maven Doxia Site Renderer 1.11.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.1.0:licenses at 2023-11-01
      +
      + | Rendered using Apache Maven Default Skin
      +-->
      +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
      +  <head>
      +    <meta charset="UTF-8" />
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      +    <meta name="generator" content="Apache Maven Doxia Site Renderer 1.11.1" />
      +    <title>Units of Measurement API &#x2013; Project Licenses</title>
      +    <link rel="stylesheet" href="./css/maven-base.css" />
      +    <link rel="stylesheet" href="./css/maven-theme.css" />
      +    <link rel="stylesheet" href="./css/site.css" />
      +    <link rel="stylesheet" href="./css/print.css" media="print" />
      +  </head>
      +  <body class="composite">
      +    <div id="banner">
      +<div id="bannerLeft">Units of Measurement API
      +</div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="breadcrumbs">
      +      <div class="xleft">
      +        <span id="publishDate">Last Published: 2023-11-01</span>
      +           | <span id="projectVersion">Version: 2.2.1-SNAPSHOT</span>
      +      </div>
      +      <div class="xright"><a href="./" title="Units of Measurement API">Units of Measurement API</a>      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="leftColumn">
      +      <div id="navcolumn">
      +       <h5>Project Documentation</h5>
      +    <ul>
      +     <li class="expanded"><a href="project-info.html" title="Project Information">Project Information</a>
      +      <ul>
      +       <li class="none"><a href="index.html" title="About">About</a></li>
      +       <li class="none"><a href="summary.html" title="Summary">Summary</a></li>
      +       <li class="none"><strong>Licenses</strong></li>
      +       <li class="none"><a href="scm.html" title="Source Code Management">Source Code Management</a></li>
      +       <li class="none"><a href="ci-management.html" title="CI Management">CI Management</a></li>
      +       <li class="none"><a href="team.html" title="Team">Team</a></li>
      +       <li class="none"><a href="mailing-lists.html" title="Mailing Lists">Mailing Lists</a></li>
      +       <li class="none"><a href="issue-management.html" title="Issue Management">Issue Management</a></li>
      +      </ul></li>
      +     <li class="collapsed"><a href="project-reports.html" title="Project Reports">Project Reports</a></li>
      +    </ul>
      +      <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
      +        <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />
      +      </a>
      +      </div>
      +    </div>
      +    <div id="bodyColumn">
      +      <div id="contentBox">
      +<section>
      +<h2><a name="Overview"></a>Overview</h2><a name="Overview"></a>
      +<p>Typically the licenses listed for the project are that of the project itself, and not of dependencies.</p></section><section>
      +<h2><a name="Project_Licenses"></a>Project Licenses</h2><a name="Project_Licenses"></a><section>
      +<h3><a name="BSD_3-Clause"></a>BSD 3-Clause</h3><a name="BSD_3-Clause"></a>
      +<div class="source">
      +<pre>====
      +    Units of Measurement API
      +    Copyright (c) 2014-2020, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      +
      +    All rights reserved.
      +
      +    Redistribution and use in source and binary forms, with or without modification,
      +    are permitted provided that the following conditions are met:
      +
      +    1. Redistributions of source code must retain the above copyright notice,
      +       this list of conditions and the following disclaimer.
      +
      +    2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
      +       and the following disclaimer in the documentation and/or other materials provided with the distribution.
      +
      +    3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
      +       derived from this software without specific prior written permission.
      +
      +    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot;
      +    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
      +    THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      +    ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
      +    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      +    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      +    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
      +    AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      +    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
      +    EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      +====
      +</pre></div></section></section>
      +      </div>
      +    </div>
      +    <div class="clear">
      +      <hr/>
      +    </div>
      +    <div id="footer">
      +      <div class="xright">
      +        Copyright &#169;      2014&#x2013;2023<a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>.
      +.      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +  </body>
      +</html>
      diff --git a/docs/site/mailing-lists.html b/docs/site/mailing-lists.html
      new file mode 100644
      index 00000000..f3517c3b
      --- /dev/null
      +++ b/docs/site/mailing-lists.html
      @@ -0,0 +1,96 @@
      +<!DOCTYPE html>
      +<!--
      + | Generated by Apache Maven Doxia Site Renderer 1.11.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.1.0:mailing-lists at 2023-11-01
      +
      + | Rendered using Apache Maven Default Skin
      +-->
      +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
      +  <head>
      +    <meta charset="UTF-8" />
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      +    <meta name="generator" content="Apache Maven Doxia Site Renderer 1.11.1" />
      +    <title>Units of Measurement API &#x2013; Project Mailing Lists</title>
      +    <link rel="stylesheet" href="./css/maven-base.css" />
      +    <link rel="stylesheet" href="./css/maven-theme.css" />
      +    <link rel="stylesheet" href="./css/site.css" />
      +    <link rel="stylesheet" href="./css/print.css" media="print" />
      +  </head>
      +  <body class="composite">
      +    <div id="banner">
      +<div id="bannerLeft">Units of Measurement API
      +</div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="breadcrumbs">
      +      <div class="xleft">
      +        <span id="publishDate">Last Published: 2023-11-01</span>
      +           | <span id="projectVersion">Version: 2.2.1-SNAPSHOT</span>
      +      </div>
      +      <div class="xright"><a href="./" title="Units of Measurement API">Units of Measurement API</a>      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="leftColumn">
      +      <div id="navcolumn">
      +       <h5>Project Documentation</h5>
      +    <ul>
      +     <li class="expanded"><a href="project-info.html" title="Project Information">Project Information</a>
      +      <ul>
      +       <li class="none"><a href="index.html" title="About">About</a></li>
      +       <li class="none"><a href="summary.html" title="Summary">Summary</a></li>
      +       <li class="none"><a href="licenses.html" title="Licenses">Licenses</a></li>
      +       <li class="none"><a href="scm.html" title="Source Code Management">Source Code Management</a></li>
      +       <li class="none"><a href="ci-management.html" title="CI Management">CI Management</a></li>
      +       <li class="none"><a href="team.html" title="Team">Team</a></li>
      +       <li class="none"><strong>Mailing Lists</strong></li>
      +       <li class="none"><a href="issue-management.html" title="Issue Management">Issue Management</a></li>
      +      </ul></li>
      +     <li class="collapsed"><a href="project-reports.html" title="Project Reports">Project Reports</a></li>
      +    </ul>
      +      <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
      +        <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />
      +      </a>
      +      </div>
      +    </div>
      +    <div id="bodyColumn">
      +      <div id="contentBox">
      +<section>
      +<h2><a name="Project_Mailing_Lists"></a>Project Mailing Lists</h2><a name="Project_Mailing_Lists"></a>
      +<p>These are the mailing lists that have been established for this project. For each list, there is a subscribe, unsubscribe, and an archive link.</p>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Name</th>
      +<th>Subscribe</th>
      +<th>Unsubscribe</th>
      +<th>Post</th>
      +<th>Archive</th></tr>
      +<tr class="b">
      +<td align="left">Units-Dev</td>
      +<td><a class="externalLink" href="mailto:https://groups.google.com/group/units-dev/subscribe">Subscribe</a></td>
      +<td>Unsubscribe</td>
      +<td><a class="externalLink" href="mailto:units-dev@googlegroups.com">Post</a></td>
      +<td>-</td></tr>
      +<tr class="a">
      +<td align="left">Units-Users</td>
      +<td><a class="externalLink" href="mailto:https://groups.google.com/group/units-users/subscribe">Subscribe</a></td>
      +<td>Unsubscribe</td>
      +<td><a class="externalLink" href="mailto:units-users@googlegroups.com">Post</a></td>
      +<td>-</td></tr></table></section>
      +      </div>
      +    </div>
      +    <div class="clear">
      +      <hr/>
      +    </div>
      +    <div id="footer">
      +      <div class="xright">
      +        Copyright &#169;      2014&#x2013;2023<a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>.
      +.      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +  </body>
      +</html>
      diff --git a/docs/site/pmd.html b/docs/site/pmd.html
      new file mode 100644
      index 00000000..cb589ce0
      --- /dev/null
      +++ b/docs/site/pmd.html
      @@ -0,0 +1,246 @@
      +<!DOCTYPE html>
      +<!--
      + | Generated by Apache Maven Doxia Site Renderer 1.11.1 from org.apache.maven.plugins:maven-pmd-plugin:3.13.0:pmd at 2023-11-01
      +
      + | Rendered using Apache Maven Default Skin
      +-->
      +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
      +  <head>
      +    <meta charset="UTF-8" />
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      +    <meta name="generator" content="Apache Maven Doxia Site Renderer 1.11.1" />
      +    <title>Units of Measurement API &#x2013; PMD Results</title>
      +    <link rel="stylesheet" href="./css/maven-base.css" />
      +    <link rel="stylesheet" href="./css/maven-theme.css" />
      +    <link rel="stylesheet" href="./css/site.css" />
      +    <link rel="stylesheet" href="./css/print.css" media="print" />
      +  </head>
      +  <body class="composite">
      +    <div id="banner">
      +<div id="bannerLeft">Units of Measurement API
      +</div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="breadcrumbs">
      +      <div class="xleft">
      +        <span id="publishDate">Last Published: 2023-11-01</span>
      +           | <span id="projectVersion">Version: 2.2.1-SNAPSHOT</span>
      +      </div>
      +      <div class="xright"><a href="./" title="Units of Measurement API">Units of Measurement API</a>      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="leftColumn">
      +      <div id="navcolumn">
      +       <h5>Project Documentation</h5>
      +    <ul>
      +     <li class="collapsed"><a href="project-info.html" title="Project Information">Project Information</a></li>
      +     <li class="expanded"><a href="project-reports.html" title="Project Reports">Project Reports</a>
      +      <ul>
      +       <li class="none"><a href="apidocs/index.html" title="Javadoc">Javadoc</a></li>
      +       <li class="none"><a href="testapidocs/index.html" title="Test Javadoc">Test Javadoc</a></li>
      +       <li class="none"><a href="cpd.html" title="CPD">CPD</a></li>
      +       <li class="none"><strong>PMD</strong></li>
      +       <li class="none"><a href="surefire-report.html" title="Surefire">Surefire</a></li>
      +       <li class="none"><a href="spotbugs.html" title="SpotBugs">SpotBugs</a></li>
      +      </ul></li>
      +    </ul>
      +      <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
      +        <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />
      +      </a>
      +      </div>
      +    </div>
      +    <div id="bodyColumn">
      +      <div id="contentBox">
      +<section>
      +<h2><a name="PMD_Results"></a>PMD Results</h2>
      +<p>The following document contains the results of <a class="externalLink" href="https://pmd.github.io">PMD</a> 6.21.0.</p></section><section>
      +<h2><a name="Violations_By_Priority"></a>Violations By Priority</h2><section>
      +<h3><a name="Priority_3"></a>Priority 3</h3><section>
      +<h4><a name="javax.2Fmeasure.2FBinaryPrefix.java"></a>javax/measure/BinaryPrefix.java</h4>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Rule</th>
      +<th>Violation</th>
      +<th>Line</th></tr>
      +<tr class="b">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'private' on constructor 'BinaryPrefix(String, int)': enum constructors are implicitly private</td>
      +<td>102&#x2013;105</td></tr></table></section><section>
      +<h4><a name="javax.2Fmeasure.2FMetricPrefix.java"></a>javax/measure/MetricPrefix.java</h4>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Rule</th>
      +<th>Violation</th>
      +<th>Line</th></tr>
      +<tr class="b">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'private' on constructor 'MetricPrefix(String, int)': enum constructors are implicitly private</td>
      +<td>148&#x2013;151</td></tr></table></section><section>
      +<h4><a name="javax.2Fmeasure.2FPrefix.java"></a>javax/measure/Prefix.java</h4>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Rule</th>
      +<th>Violation</th>
      +<th>Line</th></tr>
      +<tr class="b">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'public' on method 'getSymbol': the method is declared in an interface type</td>
      +<td>53</td></tr></table></section><section>
      +<h4><a name="javax.2Fmeasure.2FQuantity.java"></a>javax/measure/Quantity.java</h4>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Rule</th>
      +<th>Violation</th>
      +<th>Line</th></tr>
      +<tr class="b">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'public' on enum 'Scale': the enum is declared in an interface type</td>
      +<td>105&#x2013;115</td></tr>
      +<tr class="a">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'static' on enum 'Scale': nested enums are implicitly static</td>
      +<td>105&#x2013;115</td></tr></table></section><section>
      +<h4><a name="javax.2Fmeasure.2Fformat.2FQuantityFormat.java"></a>javax/measure/format/QuantityFormat.java</h4>
      +<table border="0" class="bodyTable">
      +<tr class="b">
      +<th>Rule</th>
      +<th>Violation</th>
      +<th>Line</th></tr>
      +<tr class="a">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'public' on method 'format': the method is declared in an interface type</td>
      +<td>67</td></tr>
      +<tr class="b">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'public' on method 'parse': the method is declared in an interface type</td>
      +<td>90</td></tr>
      +<tr class="a">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'public' on method 'parse': the method is declared in an interface type</td>
      +<td>105</td></tr></table></section><section>
      +<h4><a name="javax.2Fmeasure.2Fspi.2FFormatService.java"></a>javax/measure/spi/FormatService.java</h4>
      +<table border="0" class="bodyTable">
      +<tr class="b">
      +<th>Rule</th>
      +<th>Violation</th>
      +<th>Line</th></tr>
      +<tr class="a">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'static' on enum 'FormatType': nested enums are implicitly static</td>
      +<td>47&#x2013;52</td></tr>
      +<tr class="b">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'public' on enum 'FormatType': the enum is declared in an interface type</td>
      +<td>47&#x2013;52</td></tr></table></section></section></section><section>
      +<h2><a name="Files"></a>Files</h2><section>
      +<h3><a name="javax.2Fmeasure.2FBinaryPrefix.java"></a>javax/measure/BinaryPrefix.java</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Rule</th>
      +<th>Violation</th>
      +<th>Priority</th>
      +<th>Line</th></tr>
      +<tr class="b">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'private' on constructor 'BinaryPrefix(String, int)': enum constructors are implicitly private</td>
      +<td>3</td>
      +<td>102&#x2013;105</td></tr></table></section><section>
      +<h3><a name="javax.2Fmeasure.2FMetricPrefix.java"></a>javax/measure/MetricPrefix.java</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Rule</th>
      +<th>Violation</th>
      +<th>Priority</th>
      +<th>Line</th></tr>
      +<tr class="b">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'private' on constructor 'MetricPrefix(String, int)': enum constructors are implicitly private</td>
      +<td>3</td>
      +<td>148&#x2013;151</td></tr></table></section><section>
      +<h3><a name="javax.2Fmeasure.2FPrefix.java"></a>javax/measure/Prefix.java</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Rule</th>
      +<th>Violation</th>
      +<th>Priority</th>
      +<th>Line</th></tr>
      +<tr class="b">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'public' on method 'getSymbol': the method is declared in an interface type</td>
      +<td>3</td>
      +<td>53</td></tr></table></section><section>
      +<h3><a name="javax.2Fmeasure.2FQuantity.java"></a>javax/measure/Quantity.java</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Rule</th>
      +<th>Violation</th>
      +<th>Priority</th>
      +<th>Line</th></tr>
      +<tr class="b">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'public' on enum 'Scale': the enum is declared in an interface type</td>
      +<td>3</td>
      +<td>105&#x2013;115</td></tr>
      +<tr class="a">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'static' on enum 'Scale': nested enums are implicitly static</td>
      +<td>3</td>
      +<td>105&#x2013;115</td></tr></table></section><section>
      +<h3><a name="javax.2Fmeasure.2Fformat.2FQuantityFormat.java"></a>javax/measure/format/QuantityFormat.java</h3>
      +<table border="0" class="bodyTable">
      +<tr class="b">
      +<th>Rule</th>
      +<th>Violation</th>
      +<th>Priority</th>
      +<th>Line</th></tr>
      +<tr class="a">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'public' on method 'format': the method is declared in an interface type</td>
      +<td>3</td>
      +<td>67</td></tr>
      +<tr class="b">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'public' on method 'parse': the method is declared in an interface type</td>
      +<td>3</td>
      +<td>90</td></tr>
      +<tr class="a">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'public' on method 'parse': the method is declared in an interface type</td>
      +<td>3</td>
      +<td>105</td></tr></table></section><section>
      +<h3><a name="javax.2Fmeasure.2Fspi.2FFormatService.java"></a>javax/measure/spi/FormatService.java</h3>
      +<table border="0" class="bodyTable">
      +<tr class="b">
      +<th>Rule</th>
      +<th>Violation</th>
      +<th>Priority</th>
      +<th>Line</th></tr>
      +<tr class="a">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'static' on enum 'FormatType': nested enums are implicitly static</td>
      +<td>3</td>
      +<td>47&#x2013;52</td></tr>
      +<tr class="b">
      +<td><a class="externalLink" href="https://pmd.github.io/pmd-6.21.0/pmd_rules_java_codestyle.html#unnecessarymodifier">UnnecessaryModifier</a></td>
      +<td>Unnecessary modifier 'public' on enum 'FormatType': the enum is declared in an interface type</td>
      +<td>3</td>
      +<td>47&#x2013;52</td></tr></table></section></section>
      +      </div>
      +    </div>
      +    <div class="clear">
      +      <hr/>
      +    </div>
      +    <div id="footer">
      +      <div class="xright">
      +        Copyright &#169;      2014&#x2013;2023<a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>.
      +.      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +  </body>
      +</html>
      diff --git a/docs/site/project-info.html b/docs/site/project-info.html
      new file mode 100644
      index 00000000..5bda63ac
      --- /dev/null
      +++ b/docs/site/project-info.html
      @@ -0,0 +1,108 @@
      +<!DOCTYPE html>
      +<!--
      + | Generated by Apache Maven Doxia Site Renderer 1.11.1 from org.apache.maven.plugins:maven-site-plugin:3.12.1:CategorySummaryDocumentRenderer at 2023-11-01
      +
      + | Rendered using Apache Maven Default Skin
      +-->
      +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
      +  <head>
      +    <meta charset="UTF-8" />
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      +    <meta name="generator" content="Apache Maven Doxia Site Renderer 1.11.1" />
      +    <title>Units of Measurement API &#x2013; Project Information</title>
      +    <link rel="stylesheet" href="./css/maven-base.css" />
      +    <link rel="stylesheet" href="./css/maven-theme.css" />
      +    <link rel="stylesheet" href="./css/site.css" />
      +    <link rel="stylesheet" href="./css/print.css" media="print" />
      +  </head>
      +  <body class="composite">
      +    <div id="banner">
      +<div id="bannerLeft">Units of Measurement API
      +</div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="breadcrumbs">
      +      <div class="xleft">
      +        <span id="publishDate">Last Published: 2023-11-01</span>
      +           | <span id="projectVersion">Version: 2.2.1-SNAPSHOT</span>
      +      </div>
      +      <div class="xright"><a href="./" title="Units of Measurement API">Units of Measurement API</a>      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="leftColumn">
      +      <div id="navcolumn">
      +       <h5>Project Documentation</h5>
      +    <ul>
      +     <li class="expanded"><strong>Project Information</strong>
      +      <ul>
      +       <li class="none"><a href="index.html" title="About">About</a></li>
      +       <li class="none"><a href="summary.html" title="Summary">Summary</a></li>
      +       <li class="none"><a href="licenses.html" title="Licenses">Licenses</a></li>
      +       <li class="none"><a href="scm.html" title="Source Code Management">Source Code Management</a></li>
      +       <li class="none"><a href="ci-management.html" title="CI Management">CI Management</a></li>
      +       <li class="none"><a href="team.html" title="Team">Team</a></li>
      +       <li class="none"><a href="mailing-lists.html" title="Mailing Lists">Mailing Lists</a></li>
      +       <li class="none"><a href="issue-management.html" title="Issue Management">Issue Management</a></li>
      +      </ul></li>
      +     <li class="collapsed"><a href="project-reports.html" title="Project Reports">Project Reports</a></li>
      +    </ul>
      +      <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
      +        <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />
      +      </a>
      +      </div>
      +    </div>
      +    <div id="bodyColumn">
      +      <div id="contentBox">
      +<section>
      +<h2><a name="Project_Information"></a>Project Information</h2>
      +<p>This document provides an overview of the various documents and links that are part of this project's general information. All of this content is automatically generated by <a class="externalLink" href="http://maven.apache.org">Maven</a> on behalf of the project.</p><section>
      +<h3><a name="Overview"></a>Overview</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Document</th>
      +<th>Description</th></tr>
      +<tr class="b">
      +<td align="left"><a href="index.html">About</a></td>
      +<td align="left">Units of Measurement Standard - This JSR specifies Java
      +        packages for modeling and working with measurement values, quantities
      +        and their corresponding units.</td></tr>
      +<tr class="a">
      +<td align="left"><a href="summary.html">Summary</a></td>
      +<td align="left">This document lists other related information of this project</td></tr>
      +<tr class="b">
      +<td align="left"><a href="licenses.html">Licenses</a></td>
      +<td align="left">This document lists the project license(s).</td></tr>
      +<tr class="a">
      +<td align="left"><a href="scm.html">Source Code Management</a></td>
      +<td align="left">This document lists ways to access the online source repository.</td></tr>
      +<tr class="b">
      +<td align="left"><a href="ci-management.html">CI Management</a></td>
      +<td align="left">This document lists the continuous integration management system of this project for building and testing code on a frequent, regular basis.</td></tr>
      +<tr class="a">
      +<td align="left"><a href="team.html">Team</a></td>
      +<td align="left">This document provides information on the members of this project. These are the individuals who have contributed to the project in one form or another.</td></tr>
      +<tr class="b">
      +<td align="left"><a href="mailing-lists.html">Mailing Lists</a></td>
      +<td align="left">This document provides subscription and archive information for this project's mailing lists.</td></tr>
      +<tr class="a">
      +<td align="left"><a href="issue-management.html">Issue Management</a></td>
      +<td align="left">This document provides information on the issue management system used in this project.</td></tr></table></section></section>
      +      </div>
      +    </div>
      +    <div class="clear">
      +      <hr/>
      +    </div>
      +    <div id="footer">
      +      <div class="xright">
      +        Copyright &#169;      2014&#x2013;2023<a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>.
      +.      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +  </body>
      +</html>
      diff --git a/docs/site/project-reports.html b/docs/site/project-reports.html
      new file mode 100644
      index 00000000..ab5515de
      --- /dev/null
      +++ b/docs/site/project-reports.html
      @@ -0,0 +1,98 @@
      +<!DOCTYPE html>
      +<!--
      + | Generated by Apache Maven Doxia Site Renderer 1.11.1 from org.apache.maven.plugins:maven-site-plugin:3.12.1:CategorySummaryDocumentRenderer at 2023-11-01
      +
      + | Rendered using Apache Maven Default Skin
      +-->
      +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
      +  <head>
      +    <meta charset="UTF-8" />
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      +    <meta name="generator" content="Apache Maven Doxia Site Renderer 1.11.1" />
      +    <title>Units of Measurement API &#x2013; Generated Reports</title>
      +    <link rel="stylesheet" href="./css/maven-base.css" />
      +    <link rel="stylesheet" href="./css/maven-theme.css" />
      +    <link rel="stylesheet" href="./css/site.css" />
      +    <link rel="stylesheet" href="./css/print.css" media="print" />
      +  </head>
      +  <body class="composite">
      +    <div id="banner">
      +<div id="bannerLeft">Units of Measurement API
      +</div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="breadcrumbs">
      +      <div class="xleft">
      +        <span id="publishDate">Last Published: 2023-11-01</span>
      +           | <span id="projectVersion">Version: 2.2.1-SNAPSHOT</span>
      +      </div>
      +      <div class="xright"><a href="./" title="Units of Measurement API">Units of Measurement API</a>      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="leftColumn">
      +      <div id="navcolumn">
      +       <h5>Project Documentation</h5>
      +    <ul>
      +     <li class="collapsed"><a href="project-info.html" title="Project Information">Project Information</a></li>
      +     <li class="expanded"><strong>Project Reports</strong>
      +      <ul>
      +       <li class="none"><a href="apidocs/index.html" title="Javadoc">Javadoc</a></li>
      +       <li class="none"><a href="testapidocs/index.html" title="Test Javadoc">Test Javadoc</a></li>
      +       <li class="none"><a href="cpd.html" title="CPD">CPD</a></li>
      +       <li class="none"><a href="pmd.html" title="PMD">PMD</a></li>
      +       <li class="none"><a href="surefire-report.html" title="Surefire">Surefire</a></li>
      +       <li class="none"><a href="spotbugs.html" title="SpotBugs">SpotBugs</a></li>
      +      </ul></li>
      +    </ul>
      +      <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
      +        <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />
      +      </a>
      +      </div>
      +    </div>
      +    <div id="bodyColumn">
      +      <div id="contentBox">
      +<section>
      +<h2><a name="Generated_Reports"></a>Generated Reports</h2>
      +<p>This document provides an overview of the various reports that are automatically generated by <a class="externalLink" href="http://maven.apache.org">Maven</a> . Each report is briefly described below.</p><section>
      +<h3><a name="Overview"></a>Overview</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Document</th>
      +<th>Description</th></tr>
      +<tr class="b">
      +<td align="left"><a href="apidocs/index.html">Javadoc</a></td>
      +<td align="left">Javadoc API documentation.</td></tr>
      +<tr class="a">
      +<td align="left"><a href="testapidocs/index.html">Test Javadoc</a></td>
      +<td align="left">Test Javadoc API documentation.</td></tr>
      +<tr class="b">
      +<td align="left"><a href="cpd.html">CPD</a></td>
      +<td align="left">Duplicate code detection.</td></tr>
      +<tr class="a">
      +<td align="left"><a href="pmd.html">PMD</a></td>
      +<td align="left">Verification of coding rules.</td></tr>
      +<tr class="b">
      +<td align="left"><a href="surefire-report.html">Surefire</a></td>
      +<td align="left">Report on the test results of the project.</td></tr>
      +<tr class="a">
      +<td align="left"><a href="spotbugs.html">SpotBugs</a></td>
      +<td align="left">Generates a source code report with the SpotBugs Library.</td></tr></table></section></section>
      +      </div>
      +    </div>
      +    <div class="clear">
      +      <hr/>
      +    </div>
      +    <div id="footer">
      +      <div class="xright">
      +        Copyright &#169;      2014&#x2013;2023<a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>.
      +.      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +  </body>
      +</html>
      diff --git a/docs/site/scm.html b/docs/site/scm.html
      new file mode 100644
      index 00000000..20ca9f4b
      --- /dev/null
      +++ b/docs/site/scm.html
      @@ -0,0 +1,91 @@
      +<!DOCTYPE html>
      +<!--
      + | Generated by Apache Maven Doxia Site Renderer 1.11.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.1.0:scm at 2023-11-01
      +
      + | Rendered using Apache Maven Default Skin
      +-->
      +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
      +  <head>
      +    <meta charset="UTF-8" />
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      +    <meta name="generator" content="Apache Maven Doxia Site Renderer 1.11.1" />
      +    <title>Units of Measurement API &#x2013; Source Code Management</title>
      +    <link rel="stylesheet" href="./css/maven-base.css" />
      +    <link rel="stylesheet" href="./css/maven-theme.css" />
      +    <link rel="stylesheet" href="./css/site.css" />
      +    <link rel="stylesheet" href="./css/print.css" media="print" />
      +  </head>
      +  <body class="composite">
      +    <div id="banner">
      +<div id="bannerLeft">Units of Measurement API
      +</div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="breadcrumbs">
      +      <div class="xleft">
      +        <span id="publishDate">Last Published: 2023-11-01</span>
      +           | <span id="projectVersion">Version: 2.2.1-SNAPSHOT</span>
      +      </div>
      +      <div class="xright"><a href="./" title="Units of Measurement API">Units of Measurement API</a>      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="leftColumn">
      +      <div id="navcolumn">
      +       <h5>Project Documentation</h5>
      +    <ul>
      +     <li class="expanded"><a href="project-info.html" title="Project Information">Project Information</a>
      +      <ul>
      +       <li class="none"><a href="index.html" title="About">About</a></li>
      +       <li class="none"><a href="summary.html" title="Summary">Summary</a></li>
      +       <li class="none"><a href="licenses.html" title="Licenses">Licenses</a></li>
      +       <li class="none"><strong>Source Code Management</strong></li>
      +       <li class="none"><a href="ci-management.html" title="CI Management">CI Management</a></li>
      +       <li class="none"><a href="team.html" title="Team">Team</a></li>
      +       <li class="none"><a href="mailing-lists.html" title="Mailing Lists">Mailing Lists</a></li>
      +       <li class="none"><a href="issue-management.html" title="Issue Management">Issue Management</a></li>
      +      </ul></li>
      +     <li class="collapsed"><a href="project-reports.html" title="Project Reports">Project Reports</a></li>
      +    </ul>
      +      <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
      +        <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />
      +      </a>
      +      </div>
      +    </div>
      +    <div id="bodyColumn">
      +      <div id="contentBox">
      +<section>
      +<h2><a name="Overview"></a>Overview</h2><a name="Overview"></a>
      +<p>This project uses <a class="externalLink" href="https://git-scm.com/">Git</a> to manage its source code. Instructions on Git use can be found at <a class="externalLink" href="https://git-scm.com/documentation">https://git-scm.com/documentation</a>.</p></section><section>
      +<h2><a name="Web_Browser_Access"></a>Web Browser Access</h2><a name="Web_Browser_Access"></a>
      +<p>The following is a link to a browsable version of the source repository:</p>
      +<div class="source">
      +<pre><a class="externalLink" href="https://github.com/unitsofmeasurement/unit-api">https://github.com/unitsofmeasurement/unit-api</a></pre></div></section><section>
      +<h2><a name="Anonymous_Access"></a>Anonymous Access</h2><a name="Anonymous_Access"></a>
      +<p>The source can be checked out anonymously from Git with this command (See <a class="externalLink" href="https://git-scm.com/docs/git-clone">https://git-scm.com/docs/git-clone</a>):</p>
      +<div class="source">
      +<pre>$ git clone git@github.com:unitsofmeasurement/unit-api.git</pre></div></section><section>
      +<h2><a name="Developer_Access"></a>Developer Access</h2><a name="Developer_Access"></a>
      +<p>Only project developers can access the Git tree via this method (See <a class="externalLink" href="https://git-scm.com/docs/git-clone">https://git-scm.com/docs/git-clone</a>).</p>
      +<div class="source">
      +<pre>$ git clone git@github.com:unitsofmeasurement/unit-api.git</pre></div></section><section>
      +<h2><a name="Access_from_Behind_a_Firewall"></a>Access from Behind a Firewall</h2><a name="Access_from_Behind_a_Firewall"></a>
      +<p>Refer to the documentation of the SCM used for more information about access behind a firewall.</p></section>
      +      </div>
      +    </div>
      +    <div class="clear">
      +      <hr/>
      +    </div>
      +    <div id="footer">
      +      <div class="xright">
      +        Copyright &#169;      2014&#x2013;2023<a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>.
      +.      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +  </body>
      +</html>
      diff --git a/docs/site/spotbugs.html b/docs/site/spotbugs.html
      new file mode 100644
      index 00000000..4f4cd6d4
      --- /dev/null
      +++ b/docs/site/spotbugs.html
      @@ -0,0 +1,95 @@
      +<!DOCTYPE html>
      +<!--
      + | Generated by Apache Maven Doxia Site Renderer 1.11.1 from com.github.spotbugs:spotbugs-maven-plugin:4.7.3.6:spotbugs at 2023-11-01
      +
      + | Rendered using Apache Maven Default Skin
      +-->
      +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
      +  <head>
      +    <meta charset="UTF-8" />
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      +    <meta name="generator" content="Apache Maven Doxia Site Renderer 1.11.1" />
      +    <title>Units of Measurement API &#x2013; SpotBugs Bug Detector Report</title>
      +    <link rel="stylesheet" href="./css/maven-base.css" />
      +    <link rel="stylesheet" href="./css/maven-theme.css" />
      +    <link rel="stylesheet" href="./css/site.css" />
      +    <link rel="stylesheet" href="./css/print.css" media="print" />
      +  </head>
      +  <body class="composite">
      +    <div id="banner">
      +<div id="bannerLeft">Units of Measurement API
      +</div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="breadcrumbs">
      +      <div class="xleft">
      +        <span id="publishDate">Last Published: 2023-11-01</span>
      +           | <span id="projectVersion">Version: 2.2.1-SNAPSHOT</span>
      +      </div>
      +      <div class="xright"><a href="./" title="Units of Measurement API">Units of Measurement API</a>      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="leftColumn">
      +      <div id="navcolumn">
      +       <h5>Project Documentation</h5>
      +    <ul>
      +     <li class="collapsed"><a href="project-info.html" title="Project Information">Project Information</a></li>
      +     <li class="expanded"><a href="project-reports.html" title="Project Reports">Project Reports</a>
      +      <ul>
      +       <li class="none"><a href="apidocs/index.html" title="Javadoc">Javadoc</a></li>
      +       <li class="none"><a href="testapidocs/index.html" title="Test Javadoc">Test Javadoc</a></li>
      +       <li class="none"><a href="cpd.html" title="CPD">CPD</a></li>
      +       <li class="none"><a href="pmd.html" title="PMD">PMD</a></li>
      +       <li class="none"><a href="surefire-report.html" title="Surefire">Surefire</a></li>
      +       <li class="none"><strong>SpotBugs</strong></li>
      +      </ul></li>
      +    </ul>
      +      <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
      +        <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />
      +      </a>
      +      </div>
      +    </div>
      +    <div id="bodyColumn">
      +      <div id="contentBox">
      +<section>
      +<h2><a name="SpotBugs_Bug_Detector_Report"></a>SpotBugs Bug Detector Report</h2>
      +<p>The following document contains the results of <a class="externalLink" href="https://spotbugs.github.io/">SpotBugs</a></p>
      +<p>SpotBugs Version is <i>4.7.3</i></p>
      +<p>Threshold is <i>medium</i></p>
      +<p>Effort is <i>default</i></p></section><section>
      +<h2><a name="Summary"></a>Summary</h2>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Classes</th>
      +<th>Bugs</th>
      +<th>Errors</th>
      +<th>Missing Classes</th></tr>
      +<tr class="b">
      +<td>59</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td></tr></table></section><section>
      +<h2><a name="Files"></a>Files</h2>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Class</th>
      +<th>Bugs</th></tr></table></section>
      +      </div>
      +    </div>
      +    <div class="clear">
      +      <hr/>
      +    </div>
      +    <div id="footer">
      +      <div class="xright">
      +        Copyright &#169;      2014&#x2013;2023<a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>.
      +.      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +  </body>
      +</html>
      diff --git a/docs/site/summary.html b/docs/site/summary.html
      new file mode 100644
      index 00000000..928eb6bb
      --- /dev/null
      +++ b/docs/site/summary.html
      @@ -0,0 +1,123 @@
      +<!DOCTYPE html>
      +<!--
      + | Generated by Apache Maven Doxia Site Renderer 1.11.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.1.0:summary at 2023-11-01
      +
      + | Rendered using Apache Maven Default Skin
      +-->
      +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
      +  <head>
      +    <meta charset="UTF-8" />
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      +    <meta name="generator" content="Apache Maven Doxia Site Renderer 1.11.1" />
      +    <title>Units of Measurement API &#x2013; Project Summary</title>
      +    <link rel="stylesheet" href="./css/maven-base.css" />
      +    <link rel="stylesheet" href="./css/maven-theme.css" />
      +    <link rel="stylesheet" href="./css/site.css" />
      +    <link rel="stylesheet" href="./css/print.css" media="print" />
      +  </head>
      +  <body class="composite">
      +    <div id="banner">
      +<div id="bannerLeft">Units of Measurement API
      +</div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="breadcrumbs">
      +      <div class="xleft">
      +        <span id="publishDate">Last Published: 2023-11-01</span>
      +           | <span id="projectVersion">Version: 2.2.1-SNAPSHOT</span>
      +      </div>
      +      <div class="xright"><a href="./" title="Units of Measurement API">Units of Measurement API</a>      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="leftColumn">
      +      <div id="navcolumn">
      +       <h5>Project Documentation</h5>
      +    <ul>
      +     <li class="expanded"><a href="project-info.html" title="Project Information">Project Information</a>
      +      <ul>
      +       <li class="none"><a href="index.html" title="About">About</a></li>
      +       <li class="none"><strong>Summary</strong></li>
      +       <li class="none"><a href="licenses.html" title="Licenses">Licenses</a></li>
      +       <li class="none"><a href="scm.html" title="Source Code Management">Source Code Management</a></li>
      +       <li class="none"><a href="ci-management.html" title="CI Management">CI Management</a></li>
      +       <li class="none"><a href="team.html" title="Team">Team</a></li>
      +       <li class="none"><a href="mailing-lists.html" title="Mailing Lists">Mailing Lists</a></li>
      +       <li class="none"><a href="issue-management.html" title="Issue Management">Issue Management</a></li>
      +      </ul></li>
      +     <li class="collapsed"><a href="project-reports.html" title="Project Reports">Project Reports</a></li>
      +    </ul>
      +      <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
      +        <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />
      +      </a>
      +      </div>
      +    </div>
      +    <div id="bodyColumn">
      +      <div id="contentBox">
      +<section>
      +<h2><a name="Project_Summary"></a>Project Summary</h2><a name="Project_Summary"></a><section>
      +<h3><a name="Project_Information"></a>Project Information</h3><a name="Project_Information"></a>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Field</th>
      +<th>Value</th></tr>
      +<tr class="b">
      +<td align="left">Name</td>
      +<td>Units of Measurement API</td></tr>
      +<tr class="a">
      +<td align="left">Description</td>
      +<td>Units of Measurement Standard - This JSR specifies Java
      +        packages for modeling and working with measurement values, quantities
      +        and their corresponding units.</td></tr>
      +<tr class="b">
      +<td align="left">Homepage</td>
      +<td><a class="externalLink" href="https://unitsofmeasurement.github.io/unit-api/">https://unitsofmeasurement.github.io/unit-api/</a></td></tr></table></section><section>
      +<h3><a name="Project_Organization"></a>Project Organization</h3><a name="Project_Organization"></a>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Field</th>
      +<th>Value</th></tr>
      +<tr class="b">
      +<td align="left">Name</td>
      +<td>Jean-Marie Dautelle, Werner Keil, Otavio Santana</td></tr>
      +<tr class="a">
      +<td align="left">URL</td>
      +<td><a class="externalLink" href="http://unitsofmeasurement.github.io">http://unitsofmeasurement.github.io</a></td></tr></table></section><section>
      +<h3><a name="Build_Information"></a>Build Information</h3><a name="Build_Information"></a>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Field</th>
      +<th>Value</th></tr>
      +<tr class="b">
      +<td align="left">GroupId</td>
      +<td>javax.measure</td></tr>
      +<tr class="a">
      +<td align="left">ArtifactId</td>
      +<td>unit-api</td></tr>
      +<tr class="b">
      +<td align="left">Version</td>
      +<td>2.2.1-SNAPSHOT</td></tr>
      +<tr class="a">
      +<td align="left">Type</td>
      +<td>bundle</td></tr>
      +<tr class="b">
      +<td align="left">Java Version</td>
      +<td>8</td></tr></table></section></section>
      +      </div>
      +    </div>
      +    <div class="clear">
      +      <hr/>
      +    </div>
      +    <div id="footer">
      +      <div class="xright">
      +        Copyright &#169;      2014&#x2013;2023<a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>.
      +.      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +  </body>
      +</html>
      diff --git a/docs/site/surefire-report.html b/docs/site/surefire-report.html
      new file mode 100644
      index 00000000..3ade25af
      --- /dev/null
      +++ b/docs/site/surefire-report.html
      @@ -0,0 +1,924 @@
      +<!DOCTYPE html>
      +<!--
      + | Generated by Apache Maven Doxia Site Renderer 1.11.1 from org.apache.maven.plugins:maven-surefire-report-plugin:3.2.1:report at 2023-11-01
      +
      + | Rendered using Apache Maven Default Skin
      +-->
      +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
      +  <head>
      +    <meta charset="UTF-8" />
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      +    <meta name="generator" content="Apache Maven Doxia Site Renderer 1.11.1" />
      +    <title>Units of Measurement API &#x2013; Surefire Report</title>
      +    <link rel="stylesheet" href="./css/maven-base.css" />
      +    <link rel="stylesheet" href="./css/maven-theme.css" />
      +    <link rel="stylesheet" href="./css/site.css" />
      +    <link rel="stylesheet" href="./css/print.css" media="print" />
      +  </head>
      +  <body class="composite">
      +    <div id="banner">
      +<div id="bannerLeft">Units of Measurement API
      +</div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="breadcrumbs">
      +      <div class="xleft">
      +        <span id="publishDate">Last Published: 2023-11-01</span>
      +           | <span id="projectVersion">Version: 2.2.1-SNAPSHOT</span>
      +      </div>
      +      <div class="xright"><a href="./" title="Units of Measurement API">Units of Measurement API</a>      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="leftColumn">
      +      <div id="navcolumn">
      +       <h5>Project Documentation</h5>
      +    <ul>
      +     <li class="collapsed"><a href="project-info.html" title="Project Information">Project Information</a></li>
      +     <li class="expanded"><a href="project-reports.html" title="Project Reports">Project Reports</a>
      +      <ul>
      +       <li class="none"><a href="apidocs/index.html" title="Javadoc">Javadoc</a></li>
      +       <li class="none"><a href="testapidocs/index.html" title="Test Javadoc">Test Javadoc</a></li>
      +       <li class="none"><a href="cpd.html" title="CPD">CPD</a></li>
      +       <li class="none"><a href="pmd.html" title="PMD">PMD</a></li>
      +       <li class="none"><strong>Surefire</strong></li>
      +       <li class="none"><a href="spotbugs.html" title="SpotBugs">SpotBugs</a></li>
      +      </ul></li>
      +    </ul>
      +      <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
      +        <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />
      +      </a>
      +      </div>
      +    </div>
      +    <div id="bodyColumn">
      +      <div id="contentBox">
      +<script type="text/javascript">
      +function toggleDisplay(elementId) {
      + var elm = document.getElementById(elementId + '-error');
      + if (elm == null) {
      +  elm = document.getElementById(elementId + '-failure');
      + }
      + if (elm && typeof elm.style != "undefined") {
      +  if (elm.style.display == "none") {
      +   elm.style.display = "";
      +   document.getElementById(elementId + '-off').style.display = "none";
      +   document.getElementById(elementId + '-on').style.display = "inline";
      +  } else if (elm.style.display == "") {   elm.style.display = "none";
      +   document.getElementById(elementId + '-off').style.display = "inline";
      +   document.getElementById(elementId + '-on').style.display = "none";
      +  }
      + }
      + }</script><section>
      +<h2><a name="Surefire_Report"></a>Surefire Report</h2></section><section><a id="Summary"></a>
      +<h2><a name="Summary"></a>Summary</h2>
      +<p>[<a href="#Summary">Summary</a>] [<a href="#Package_List">Package List</a>] [<a href="#Test_Cases">Test Cases</a>]</p><br />
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Tests</th>
      +<th>Errors</th>
      +<th>Failures</th>
      +<th>Skipped</th>
      +<th>Success Rate</th>
      +<th>Time</th></tr>
      +<tr class="b">
      +<td align="left">143</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>15.81 s</td></tr></table><br />
      +<p>Note: failures are anticipated and checked for with assertions while errors are unanticipated.</p><br /></section><section><a id="Package_List"></a>
      +<h2><a name="Package_List"></a>Package List</h2>
      +<p>[<a href="#Summary">Summary</a>] [<a href="#Package_List">Package List</a>] [<a href="#Test_Cases">Test Cases</a>]</p><br />
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Package</th>
      +<th>Tests</th>
      +<th>Errors</th>
      +<th>Failures</th>
      +<th>Skipped</th>
      +<th>Success Rate</th>
      +<th>Time</th></tr>
      +<tr class="b">
      +<td align="left"><a href="#javax.measure.spi">javax.measure.spi</a></td>
      +<td>11</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>4.092 s</td></tr>
      +<tr class="a">
      +<td align="left"><a href="#javax.measure.test.quantity">javax.measure.test.quantity</a></td>
      +<td>50</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>1.067 s</td></tr>
      +<tr class="b">
      +<td align="left"><a href="#javax.measure.test">javax.measure.test</a></td>
      +<td>63</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>7.435 s</td></tr>
      +<tr class="a">
      +<td align="left"><a href="#javax.measure.test.format">javax.measure.test.format</a></td>
      +<td>19</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>3.217 s</td></tr></table><br />
      +<p>Note: package statistics are not computed recursively, they only sum up all of its testsuites numbers.</p><section><a id="javax.measure.spi"></a>
      +<h3><a name="javax.measure.spi"></a>javax.measure.spi</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>-</th>
      +<th>Class</th>
      +<th>Tests</th>
      +<th>Errors</th>
      +<th>Failures</th>
      +<th>Skipped</th>
      +<th>Success Rate</th>
      +<th>Time</th></tr>
      +<tr class="b">
      +<td align="left"><a href="#javax.measure.spi.FormatServiceTest"><img src="images/icon_success_sml.gif" alt="" /></a></td>
      +<td><a href="#javax.measure.spi.FormatServiceTest">FormatServiceTest</a></td>
      +<td>2</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>1.524 s</td></tr>
      +<tr class="a">
      +<td align="left"><a href="#javax.measure.spi.ServiceProviderTest"><img src="images/icon_success_sml.gif" alt="" /></a></td>
      +<td><a href="#javax.measure.spi.ServiceProviderTest">ServiceProviderTest</a></td>
      +<td>9</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>2.568 s</td></tr></table></section><section><a id="javax.measure.test.quantity"></a>
      +<h3><a name="javax.measure.test.quantity"></a>javax.measure.test.quantity</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>-</th>
      +<th>Class</th>
      +<th>Tests</th>
      +<th>Errors</th>
      +<th>Failures</th>
      +<th>Skipped</th>
      +<th>Success Rate</th>
      +<th>Time</th></tr>
      +<tr class="b">
      +<td align="left"><a href="#javax.measure.test.quantity.AreaQuantityTest"><img src="images/icon_success_sml.gif" alt="" /></a></td>
      +<td><a href="#javax.measure.test.quantity.AreaQuantityTest">AreaQuantityTest</a></td>
      +<td>17</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>0.394 s</td></tr>
      +<tr class="a">
      +<td align="left"><a href="#javax.measure.test.quantity.DistanceQuantityTest"><img src="images/icon_success_sml.gif" alt="" /></a></td>
      +<td><a href="#javax.measure.test.quantity.DistanceQuantityTest">DistanceQuantityTest</a></td>
      +<td>16</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>0.471 s</td></tr>
      +<tr class="b">
      +<td align="left"><a href="#javax.measure.test.quantity.TemperatureQuantityTest"><img src="images/icon_success_sml.gif" alt="" /></a></td>
      +<td><a href="#javax.measure.test.quantity.TemperatureQuantityTest">TemperatureQuantityTest</a></td>
      +<td>17</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>0.202 s</td></tr></table></section><section><a id="javax.measure.test"></a>
      +<h3><a name="javax.measure.test"></a>javax.measure.test</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>-</th>
      +<th>Class</th>
      +<th>Tests</th>
      +<th>Errors</th>
      +<th>Failures</th>
      +<th>Skipped</th>
      +<th>Success Rate</th>
      +<th>Time</th></tr>
      +<tr class="b">
      +<td align="left"><a href="#javax.measure.test.BinaryPrefixTest"><img src="images/icon_success_sml.gif" alt="" /></a></td>
      +<td><a href="#javax.measure.test.BinaryPrefixTest">BinaryPrefixTest</a></td>
      +<td>8</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>2.054 s</td></tr>
      +<tr class="a">
      +<td align="left"><a href="#javax.measure.test.ConverterTest"><img src="images/icon_success_sml.gif" alt="" /></a></td>
      +<td><a href="#javax.measure.test.ConverterTest">ConverterTest</a></td>
      +<td>2</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>1.660 s</td></tr>
      +<tr class="b">
      +<td align="left"><a href="#javax.measure.test.DimensionTest"><img src="images/icon_success_sml.gif" alt="" /></a></td>
      +<td><a href="#javax.measure.test.DimensionTest">DimensionTest</a></td>
      +<td>6</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>1.233 s</td></tr>
      +<tr class="a">
      +<td align="left"><a href="#javax.measure.test.ExceptionsTest"><img src="images/icon_success_sml.gif" alt="" /></a></td>
      +<td><a href="#javax.measure.test.ExceptionsTest">ExceptionsTest</a></td>
      +<td>14</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>1.152 s</td></tr>
      +<tr class="b">
      +<td align="left"><a href="#javax.measure.test.MetricPrefixTest"><img src="images/icon_success_sml.gif" alt="" /></a></td>
      +<td><a href="#javax.measure.test.MetricPrefixTest">MetricPrefixTest</a></td>
      +<td>25</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>1.156 s</td></tr>
      +<tr class="a">
      +<td align="left"><a href="#javax.measure.test.UnitTest"><img src="images/icon_success_sml.gif" alt="" /></a></td>
      +<td><a href="#javax.measure.test.UnitTest">UnitTest</a></td>
      +<td>8</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>0.180 s</td></tr></table></section><section><a id="javax.measure.test.format"></a>
      +<h3><a name="javax.measure.test.format"></a>javax.measure.test.format</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>-</th>
      +<th>Class</th>
      +<th>Tests</th>
      +<th>Errors</th>
      +<th>Failures</th>
      +<th>Skipped</th>
      +<th>Success Rate</th>
      +<th>Time</th></tr>
      +<tr class="b">
      +<td align="left"><a href="#javax.measure.test.format.MeasurementParseTest"><img src="images/icon_success_sml.gif" alt="" /></a></td>
      +<td><a href="#javax.measure.test.format.MeasurementParseTest">MeasurementParseTest</a></td>
      +<td>4</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>0.173 s</td></tr>
      +<tr class="a">
      +<td align="left"><a href="#javax.measure.test.format.QuantityFormatTest"><img src="images/icon_success_sml.gif" alt="" /></a></td>
      +<td><a href="#javax.measure.test.format.QuantityFormatTest">QuantityFormatTest</a></td>
      +<td>6</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>2.319 s</td></tr>
      +<tr class="b">
      +<td align="left"><a href="#javax.measure.test.format.UnitFormatTest"><img src="images/icon_success_sml.gif" alt="" /></a></td>
      +<td><a href="#javax.measure.test.format.UnitFormatTest">UnitFormatTest</a></td>
      +<td>9</td>
      +<td>0</td>
      +<td>0</td>
      +<td>0</td>
      +<td>100%</td>
      +<td>0.725 s</td></tr></table></section><br /></section><section><a id="Test_Cases"></a>
      +<h2><a name="Test_Cases"></a>Test Cases</h2>
      +<p>[<a href="#Summary">Summary</a>] [<a href="#Package_List">Package List</a>] [<a href="#Test_Cases">Test Cases</a>]</p><section><a id="javax.measure.spi.FormatServiceTest"></a>
      +<h3><a name="FormatServiceTest"></a>FormatServiceTest</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.spi.FormatServiceTest.testGetUnitFormats"></a>testGetUnitFormats</td>
      +<td>1.262 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.spi.FormatServiceTest.testTypes"></a>testTypes</td>
      +<td>0.003 s</td></tr></table></section><section><a id="javax.measure.spi.ServiceProviderTest"></a>
      +<h3><a name="ServiceProviderTest"></a>ServiceProviderTest</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.spi.ServiceProviderTest.testGetMetricPrefixes"></a>testGetMetricPrefixes</td>
      +<td>1.196 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.spi.ServiceProviderTest.testGetAndSetCurrent"></a>testGetAndSetCurrent</td>
      +<td>0.402 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.spi.ServiceProviderTest.testPriority"></a>testPriority</td>
      +<td>0.012 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.spi.ServiceProviderTest.testGetBinaryPrefixes"></a>testGetBinaryPrefixes</td>
      +<td>0.008 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.spi.ServiceProviderTest.testWrongPrefixType"></a>testWrongPrefixType</td>
      +<td>0.166 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.spi.ServiceProviderTest.testSetCurrentNull"></a>testSetCurrentNull</td>
      +<td>0.007 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.spi.ServiceProviderTest.testOfNull"></a>testOfNull</td>
      +<td>0.002 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.spi.ServiceProviderTest.testOfNonExistent"></a>testOfNonExistent</td>
      +<td>0.004 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.spi.ServiceProviderTest.testWrongEnumType"></a>testWrongEnumType</td>
      +<td>0.003 s</td></tr></table></section><section><a id="javax.measure.test.BinaryPrefixTest"></a>
      +<h3><a name="BinaryPrefixTest"></a>BinaryPrefixTest</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.BinaryPrefixTest.testExbi"></a>testExbi</td>
      +<td>1.045 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.BinaryPrefixTest.testGibi"></a>testGibi</td>
      +<td>0.242 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.BinaryPrefixTest.testKibi"></a>testKibi</td>
      +<td>0.062 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.BinaryPrefixTest.testMebi"></a>testMebi</td>
      +<td>0.003 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.BinaryPrefixTest.testPebi"></a>testPebi</td>
      +<td>0.004 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.BinaryPrefixTest.testTebi"></a>testTebi</td>
      +<td>0.048 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.BinaryPrefixTest.testYobi"></a>testYobi</td>
      +<td>0.026 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.BinaryPrefixTest.testZebi"></a>testZebi</td>
      +<td>0.004 s</td></tr></table></section><section><a id="javax.measure.test.ConverterTest"></a>
      +<h3><a name="ConverterTest"></a>ConverterTest</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.ConverterTest.testIdentity"></a>testIdentity</td>
      +<td>1.052 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.ConverterTest.testLinear"></a>testLinear</td>
      +<td>0.005 s</td></tr></table></section><section><a id="javax.measure.test.DimensionTest"></a>
      +<h3><a name="DimensionTest"></a>DimensionTest</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.DimensionTest.testPow"></a>testPow</td>
      +<td>0.770 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.DimensionTest.testRoot"></a>testRoot</td>
      +<td>0.002 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.DimensionTest.testGetProductDimensions"></a>testGetProductDimensions</td>
      +<td>0.006 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.DimensionTest.testDivide"></a>testDivide</td>
      +<td>0.002 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.DimensionTest.testMultiply"></a>testMultiply</td>
      +<td>0.003 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.DimensionTest.testGetInstance"></a>testGetInstance</td>
      +<td>0.004 s</td></tr></table></section><section><a id="javax.measure.test.ExceptionsTest"></a>
      +<h3><a name="ExceptionsTest"></a>ExceptionsTest</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.ExceptionsTest.testUnconvertibleExceptionWithCause"></a>testUnconvertibleExceptionWithCause</td>
      +<td>0.536 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.ExceptionsTest.testUnconvertibleExceptionWithMessageAndCause"></a>testUnconvertibleExceptionWithMessageAndCause</td>
      +<td>0.005 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.ExceptionsTest.testMeasurementErrorWithCause"></a>testMeasurementErrorWithCause</td>
      +<td>0.006 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.ExceptionsTest.testMeasurementErrorWithMessageAndCause"></a>testMeasurementErrorWithMessageAndCause</td>
      +<td>0.003 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.ExceptionsTest.testMeasurementError"></a>testMeasurementError</td>
      +<td>0.116 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.ExceptionsTest.testMeasurementExceptionWithMessage"></a>testMeasurementExceptionWithMessage</td>
      +<td>0.007 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.ExceptionsTest.testIncommensurableExceptionWithCause"></a>testIncommensurableExceptionWithCause</td>
      +<td>0.130 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.ExceptionsTest.testMeasurementExceptionWithCause"></a>testMeasurementExceptionWithCause</td>
      +<td>0.004 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.ExceptionsTest.testIncommensurableExceptionWithMessageAndCause"></a>testIncommensurableExceptionWithMessageAndCause</td>
      +<td>0.020 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.ExceptionsTest.testMeasurementExceptionWithMessageAndCause"></a>testMeasurementExceptionWithMessageAndCause</td>
      +<td>0.007 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.ExceptionsTest.testMeasurementErrorWithMessage"></a>testMeasurementErrorWithMessage</td>
      +<td>0.050 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.ExceptionsTest.testIncommensurableException"></a>testIncommensurableException</td>
      +<td>0.002 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.ExceptionsTest.testMeasurementException"></a>testMeasurementException</td>
      +<td>0.009 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.ExceptionsTest.testUnconvertibleException"></a>testUnconvertibleException</td>
      +<td>0.005 s</td></tr></table></section><section><a id="javax.measure.test.format.MeasurementParseTest"></a>
      +<h3><a name="MeasurementParseTest"></a>MeasurementParseTest</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.MeasurementParseTest.testOldExceptionWithMessageAndPos"></a>testOldExceptionWithMessageAndPos</td>
      +<td>0.140 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.MeasurementParseTest.testOldExceptionWithMessageDataAndPos"></a>testOldExceptionWithMessageDataAndPos</td>
      +<td>0.005 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.MeasurementParseTest.testExceptionWithMessage"></a>testExceptionWithMessage</td>
      +<td>0.005 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.MeasurementParseTest.testOldExceptionWithCause"></a>testOldExceptionWithCause</td>
      +<td>0.005 s</td></tr></table></section><section><a id="javax.measure.test.format.QuantityFormatTest"></a>
      +<h3><a name="QuantityFormatTest"></a>QuantityFormatTest</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.QuantityFormatTest.testParserExceptionWithNullString"></a>testParserExceptionWithNullString</td>
      +<td>1.325 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.QuantityFormatTest.testParseSimple"></a>testParseSimple</td>
      +<td>0.958 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.QuantityFormatTest.testParseIrregularString"></a>testParseIrregularString</td>
      +<td>0.003 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.QuantityFormatTest.testParserException"></a>testParserException</td>
      +<td>0.004 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.QuantityFormatTest.testParserExceptionWithPosition"></a>testParserExceptionWithPosition</td>
      +<td>0.002 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.QuantityFormatTest.testLocalSensitive"></a>testLocalSensitive</td>
      +<td>0.004 s</td></tr></table></section><section><a id="javax.measure.test.format.UnitFormatTest"></a>
      +<h3><a name="UnitFormatTest"></a>UnitFormatTest</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.UnitFormatTest.testFormatKph"></a>testFormatKph</td>
      +<td>0.137 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.UnitFormatTest.testMoreLocalSensitive"></a>testMoreLocalSensitive</td>
      +<td>0.355 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.UnitFormatTest.testParserExceptionWithNullString"></a>testParserExceptionWithNullString</td>
      +<td>0.008 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.UnitFormatTest.testParseSimple"></a>testParseSimple</td>
      +<td>0.004 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.UnitFormatTest.testParseIrregularString"></a>testParseIrregularString</td>
      +<td>0.038 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.UnitFormatTest.testParserException"></a>testParserException</td>
      +<td>0.005 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.UnitFormatTest.testParserExceptionWithPosition"></a>testParserExceptionWithPosition</td>
      +<td>0.002 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.UnitFormatTest.testFormatFromQuantity"></a>testFormatFromQuantity</td>
      +<td>0.003 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.format.UnitFormatTest.testLocalSensitive"></a>testLocalSensitive</td>
      +<td>0.102 s</td></tr></table></section><section><a id="javax.measure.test.MetricPrefixTest"></a>
      +<h3><a name="MetricPrefixTest"></a>MetricPrefixTest</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testExa"></a>testExa</td>
      +<td>0.880 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testCenti"></a>testCenti</td>
      +<td>0.003 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testFemto"></a>testFemto</td>
      +<td>0.003 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testHecto"></a>testHecto</td>
      +<td>0.002 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testMicro"></a>testMicro</td>
      +<td>0.003 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testMilli"></a>testMilli</td>
      +<td>0.003 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testRonna"></a>testRonna</td>
      +<td>0.003 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testRonto"></a>testRonto</td>
      +<td>0.061 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testYocto"></a>testYocto</td>
      +<td>0.003 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testYotta"></a>testYotta</td>
      +<td>0.002 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testZepto"></a>testZepto</td>
      +<td>0.001 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testZetta"></a>testZetta</td>
      +<td>0.002 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testAtto"></a>testAtto</td>
      +<td>0.002 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testDeca"></a>testDeca</td>
      +<td>0.002 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testDeci"></a>testDeci</td>
      +<td>0.007 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testDeka"></a>testDeka</td>
      +<td>0.001 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testGiga"></a>testGiga</td>
      +<td>0.003 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testKilo"></a>testKilo</td>
      +<td>0.003 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testMega"></a>testMega</td>
      +<td>0.002 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testNano"></a>testNano</td>
      +<td>0.002 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testPeta"></a>testPeta</td>
      +<td>0.002 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testPico"></a>testPico</td>
      +<td>0.002 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testTera"></a>testTera</td>
      +<td>0.004 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testQuecto"></a>testQuecto</td>
      +<td>0.003 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.MetricPrefixTest.testQuetta"></a>testQuetta</td>
      +<td>0.005 s</td></tr></table></section><section><a id="javax.measure.test.quantity.AreaQuantityTest"></a>
      +<h3><a name="AreaQuantityTest"></a>AreaQuantityTest</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.AreaQuantityTest.testMultiplyDistanceQuantity"></a>testMultiplyDistanceQuantity</td>
      +<td>0.103 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.AreaQuantityTest.testDivideDouble"></a>testDivideDouble</td>
      +<td>0.004 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.AreaQuantityTest.testAdd"></a>testAdd</td>
      +<td>0.005 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.AreaQuantityTest.testSubtract"></a>testSubtract</td>
      +<td>0.003 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.AreaQuantityTest.testScale"></a>testScale</td>
      +<td>0.001 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.AreaQuantityTest.testAreaQuantity"></a>testAreaQuantity</td>
      +<td>0.104 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.AreaQuantityTest.testEq"></a>testEq</td>
      +<td>0.006 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.AreaQuantityTest.testGe"></a>testGe</td>
      +<td>0.003 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.AreaQuantityTest.testGt"></a>testGt</td>
      +<td>0.003 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.AreaQuantityTest.testLe"></a>testLe</td>
      +<td>0.004 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.AreaQuantityTest.testLt"></a>testLt</td>
      +<td>0.003 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.AreaQuantityTest.testToSystemUnit"></a>testToSystemUnit</td>
      +<td>0.003 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.AreaQuantityTest.testMultiplyDouble"></a>testMultiplyDouble</td>
      +<td>0.001 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.AreaQuantityTest.testConvert"></a>testConvert</td>
      +<td>0.061 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.AreaQuantityTest.testDivideDistanceQuantity"></a>testDivideDistanceQuantity</td>
      +<td>0.003 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.AreaQuantityTest.testNegate"></a>testNegate</td>
      +<td>0.006 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.AreaQuantityTest.testShowInUnits"></a>testShowInUnits</td>
      +<td>0.002 s</td></tr></table></section><section><a id="javax.measure.test.quantity.DistanceQuantityTest"></a>
      +<h3><a name="DistanceQuantityTest"></a>DistanceQuantityTest</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.DistanceQuantityTest.testMultiplyDistanceQuantity"></a>testMultiplyDistanceQuantity</td>
      +<td>0.146 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.DistanceQuantityTest.testAbsolute"></a>testAbsolute</td>
      +<td>0.003 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.DistanceQuantityTest.testDivideDouble"></a>testDivideDouble</td>
      +<td>0.003 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.DistanceQuantityTest.testAdd"></a>testAdd</td>
      +<td>0.002 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.DistanceQuantityTest.testSubtract"></a>testSubtract</td>
      +<td>0.003 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.DistanceQuantityTest.testAreaQuantity"></a>testAreaQuantity</td>
      +<td>0.002 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.DistanceQuantityTest.testEq"></a>testEq</td>
      +<td>0.005 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.DistanceQuantityTest.testGe"></a>testGe</td>
      +<td>0.007 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.DistanceQuantityTest.testGt"></a>testGt</td>
      +<td>0.001 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.DistanceQuantityTest.testLe"></a>testLe</td>
      +<td>0.022 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.DistanceQuantityTest.testLt"></a>testLt</td>
      +<td>0.007 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.DistanceQuantityTest.testToSystemUnit"></a>testToSystemUnit</td>
      +<td>0.011 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.DistanceQuantityTest.testMultiplyDouble"></a>testMultiplyDouble</td>
      +<td>0.004 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.DistanceQuantityTest.testConvert"></a>testConvert</td>
      +<td>0.005 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.DistanceQuantityTest.testNegate"></a>testNegate</td>
      +<td>0.013 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.DistanceQuantityTest.testShowInUnits"></a>testShowInUnits</td>
      +<td>0.021 s</td></tr></table></section><section><a id="javax.measure.test.quantity.TemperatureQuantityTest"></a>
      +<h3><a name="TemperatureQuantityTest"></a>TemperatureQuantityTest</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.TemperatureQuantityTest.testAbsolute"></a>testAbsolute</td>
      +<td>0.007 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.TemperatureQuantityTest.testDivideDouble"></a>testDivideDouble</td>
      +<td>0.004 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.TemperatureQuantityTest.testAdd"></a>testAdd</td>
      +<td>0.015 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.TemperatureQuantityTest.testSubtract"></a>testSubtract</td>
      +<td>0.003 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.TemperatureQuantityTest.testLevelCelsius"></a>testLevelCelsius</td>
      +<td>0.003 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.TemperatureQuantityTest.testScale"></a>testScale</td>
      +<td>0.002 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.TemperatureQuantityTest.testEq"></a>testEq</td>
      +<td>0.004 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.TemperatureQuantityTest.testGe"></a>testGe</td>
      +<td>0.002 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.TemperatureQuantityTest.testGt"></a>testGt</td>
      +<td>0.001 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.TemperatureQuantityTest.testLe"></a>testLe</td>
      +<td>0.001 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.TemperatureQuantityTest.testLt"></a>testLt</td>
      +<td>0.002 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.TemperatureQuantityTest.testQuantity"></a>testQuantity</td>
      +<td>0.002 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.TemperatureQuantityTest.testToSystemUnit"></a>testToSystemUnit</td>
      +<td>0.003 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.TemperatureQuantityTest.testMultiplyDouble"></a>testMultiplyDouble</td>
      +<td>0.002 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.TemperatureQuantityTest.testConvert"></a>testConvert</td>
      +<td>0.003 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.TemperatureQuantityTest.testLevelFahrenheit"></a>testLevelFahrenheit</td>
      +<td>0.002 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.quantity.TemperatureQuantityTest.testNegate"></a>testNegate</td>
      +<td>0.002 s</td></tr></table></section><section><a id="javax.measure.test.UnitTest"></a>
      +<h3><a name="UnitTest"></a>UnitTest</h3>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.UnitTest.testIsCompatible"></a>testIsCompatible</td>
      +<td>0.008 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.UnitTest.testGetDimension"></a>testGetDimension</td>
      +<td>0.006 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.UnitTest.testMultiplyNull"></a>testMultiplyNull</td>
      +<td>0.019 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.UnitTest.testGetConverterTo"></a>testGetConverterTo</td>
      +<td>0.005 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.UnitTest.testDivideNull"></a>testDivideNull</td>
      +<td>0.005 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.UnitTest.testGetSymbol"></a>testGetSymbol</td>
      +<td>0.001 s</td></tr>
      +<tr class="a">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.UnitTest.testShiftNull"></a>testShiftNull</td>
      +<td>0.088 s</td></tr>
      +<tr class="b">
      +<td align="left"><img src="images/icon_success_sml.gif" alt="" /></td>
      +<td><a id="TC_javax.measure.test.UnitTest.testIsEquivalentTo"></a>testIsEquivalentTo</td>
      +<td>0.004 s</td></tr></table></section><br /></section>
      +      </div>
      +    </div>
      +    <div class="clear">
      +      <hr/>
      +    </div>
      +    <div id="footer">
      +      <div class="xright">
      +        Copyright &#169;      2014&#x2013;2023<a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>.
      +.      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +  </body>
      +</html>
      diff --git a/docs/site/team.html b/docs/site/team.html
      new file mode 100644
      index 00000000..1e7fdeda
      --- /dev/null
      +++ b/docs/site/team.html
      @@ -0,0 +1,318 @@
      +<!DOCTYPE html>
      +<!--
      + | Generated by Apache Maven Doxia Site Renderer 1.11.1 from org.apache.maven.plugins:maven-project-info-reports-plugin:3.1.0:team at 2023-11-01
      +
      + | Rendered using Apache Maven Default Skin
      +-->
      +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
      +  <head>
      +    <meta charset="UTF-8" />
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      +    <meta name="generator" content="Apache Maven Doxia Site Renderer 1.11.1" />
      +    <title>Units of Measurement API &#x2013; Project Team</title>
      +    <link rel="stylesheet" href="./css/maven-base.css" />
      +    <link rel="stylesheet" href="./css/maven-theme.css" />
      +    <link rel="stylesheet" href="./css/site.css" />
      +    <link rel="stylesheet" href="./css/print.css" media="print" />
      +  </head>
      +  <body class="composite">
      +    <div id="banner">
      +<div id="bannerLeft">Units of Measurement API
      +</div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="breadcrumbs">
      +      <div class="xleft">
      +        <span id="publishDate">Last Published: 2023-11-01</span>
      +           | <span id="projectVersion">Version: 2.2.1-SNAPSHOT</span>
      +      </div>
      +      <div class="xright"><a href="./" title="Units of Measurement API">Units of Measurement API</a>      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +    <div id="leftColumn">
      +      <div id="navcolumn">
      +       <h5>Project Documentation</h5>
      +    <ul>
      +     <li class="expanded"><a href="project-info.html" title="Project Information">Project Information</a>
      +      <ul>
      +       <li class="none"><a href="index.html" title="About">About</a></li>
      +       <li class="none"><a href="summary.html" title="Summary">Summary</a></li>
      +       <li class="none"><a href="licenses.html" title="Licenses">Licenses</a></li>
      +       <li class="none"><a href="scm.html" title="Source Code Management">Source Code Management</a></li>
      +       <li class="none"><a href="ci-management.html" title="CI Management">CI Management</a></li>
      +       <li class="none"><strong>Team</strong></li>
      +       <li class="none"><a href="mailing-lists.html" title="Mailing Lists">Mailing Lists</a></li>
      +       <li class="none"><a href="issue-management.html" title="Issue Management">Issue Management</a></li>
      +      </ul></li>
      +     <li class="collapsed"><a href="project-reports.html" title="Project Reports">Project Reports</a></li>
      +    </ul>
      +      <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
      +        <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />
      +      </a>
      +      </div>
      +    </div>
      +    <div id="bodyColumn">
      +      <div id="contentBox">
      +<section>
      +<h2><a name="Project_Team"></a>Project Team</h2><a name="Project_Team"></a>
      +<p>A successful project requires many people to play many roles. Some members write code or documentation, while others are valuable as testers, submitting patches and suggestions.</p>
      +<p>The project team is comprised of Members and Contributors. Members have direct access to the source of a project and actively evolve the code-base. Contributors improve the project through submission of patches and suggestions to the Members. The number of Contributors to the project is unbounded. Get involved today. All contributions to the project are greatly appreciated.</p><section>
      +<h3><a name="Members"></a>Members</h3><a name="Members"></a>
      +<p>The following is a list of developers with commit privileges that have directly contributed to the project in one way or another.</p>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Image</th>
      +<th>Id</th>
      +<th>Name</th>
      +<th>Email</th>
      +<th>Organization</th>
      +<th>Organization URL</th>
      +<th>Roles</th>
      +<th>Time Zone</th></tr>
      +<tr class="b">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/0dd4c7d5bd03915d4a8eecd9f37f6296?d=mm&amp;s=60" alt="" /></figure></td>
      +<td><a name="dautelle"></a>dautelle</td>
      +<td>Jean-Marie Dautelle</td>
      +<td><a class="externalLink" href="mailto:jean-marie@dautelle.com">jean-marie@dautelle.com</a></td>
      +<td>Airbus</td>
      +<td><a class="externalLink" href="http://www.airbus.com">http://www.airbus.com</a></td>
      +<td>Architect, Java Developer, Spec Lead</td>
      +<td>+1</td></tr>
      +<tr class="a">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/260e5379dc339622fb1d98388378629b?d=mm&amp;s=60" alt="" /></figure></td>
      +<td><a name="keilw"></a>keilw</td>
      +<td>Werner Keil</td>
      +<td><a class="externalLink" href="mailto:werner.keil@gmx.net">werner.keil@gmx.net</a></td>
      +<td>Creative Arts &amp; Technologies</td>
      +<td><a class="externalLink" href="http://www.catmedia.us">http://www.catmedia.us</a></td>
      +<td>Architect, Java Developer, Spec Lead</td>
      +<td>+1</td></tr>
      +<tr class="b">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/c8709f1d7ae6cc5f057e37e01d6e28db?d=mm&amp;s=60" alt="" /></figure></td>
      +<td><a name="otaviojava"></a>otaviojava</td>
      +<td>Ot&#xe1;vio Gon&#xe7;alves de Santana</td>
      +<td><a class="externalLink" href="mailto:otaviopolianasantana@gmail.com">otaviopolianasantana@gmail.com</a></td>
      +<td>Individual / SouJava</td>
      +<td>-</td>
      +<td>Expert, Java Developer, Spec Lead</td>
      +<td>0</td></tr>
      +<tr class="a">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/019665faa822023a8b1c219b06cbde98?d=mm&amp;s=60" alt="" /></figure></td>
      +<td><a name="desruisseaux"></a>desruisseaux</td>
      +<td>Martin Desruisseaux</td>
      +<td><a class="externalLink" href="mailto:martin.desruisseaux@geomatys.com">martin.desruisseaux@geomatys.com</a></td>
      +<td>Geomatys</td>
      +<td><a class="externalLink" href="http://www.geomatys.com">http://www.geomatys.com</a></td>
      +<td>Expert, Java Developer, Architect</td>
      +<td>+1</td></tr>
      +<tr class="b">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/aa23ddc3794ffee7156c9ff1428d9baf?d=mm&amp;s=60" alt="" /></figure></td>
      +<td><a name="thodorisbais"></a>thodorisbais</td>
      +<td>Thodoris Bais</td>
      +<td><a class="externalLink" href="mailto:thodoris.bais@gmail.com">thodoris.bais@gmail.com</a></td>
      +<td>Individual / Utrecht JUG</td>
      +<td>-</td>
      +<td>Expert, Java Developer</td>
      +<td>+1</td></tr>
      +<tr class="a">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/d190fa393f4e57128bcfdc6459f6d982?d=mm&amp;s=60" alt="" /></figure></td>
      +<td><a name="Daniel-Dos"></a>Daniel-Dos</td>
      +<td>Daniel Dias</td>
      +<td><a class="externalLink" href="mailto:daniel.dias.analistati@gmail.com">daniel.dias.analistati@gmail.com</a></td>
      +<td>Individual / SouJava</td>
      +<td>-</td>
      +<td>Expert, Java Developer</td>
      +<td>-5</td></tr>
      +<tr class="b">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/00000000000000000000000000000000?d=blank&amp;f=y&amp;s=60" alt="" /></figure></td>
      +<td><a name="jhg023"></a>jhg023</td>
      +<td>Jacob Glickman</td>
      +<td>-</td>
      +<td>Individual</td>
      +<td>-</td>
      +<td>Expert, Java Developer</td>
      +<td>-4</td></tr>
      +<tr class="a">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/00000000000000000000000000000000?d=blank&amp;f=y&amp;s=60" alt="" /></figure></td>
      +<td><a name="magesh678"></a>magesh678</td>
      +<td>Magesh Kasthuri</td>
      +<td>-</td>
      +<td>Individual</td>
      +<td>-</td>
      +<td>Expert, Java Developer</td>
      +<td>+4</td></tr>
      +<tr class="b">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/00000000000000000000000000000000?d=blank&amp;f=y&amp;s=60" alt="" /></figure></td>
      +<td><a name="mohalmo"></a>mohalmo</td>
      +<td>Mohammed Al-Moayed</td>
      +<td>-</td>
      +<td>Individual</td>
      +<td>-</td>
      +<td>Expert, Java Developer</td>
      +<td>+2</td></tr></table></section><section>
      +<h3><a name="Contributors"></a>Contributors</h3><a name="Contributors"></a>
      +<p>The following additional people have contributed to this project through the way of suggestions, patches or documentation.</p>
      +<table border="0" class="bodyTable">
      +<tr class="a">
      +<th>Image</th>
      +<th>Name</th>
      +<th>Email</th>
      +<th>Organization</th>
      +<th>Organization URL</th>
      +<th>Roles</th>
      +<th>Time Zone</th></tr>
      +<tr class="b">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/00000000000000000000000000000000?d=blank&amp;f=y&amp;s=60" alt="" /></figure></td>
      +<td>Andi Huber</td>
      +<td>-</td>
      +<td>Individual</td>
      +<td>-</td>
      +<td>Contributor</td>
      +<td>+1</td></tr>
      +<tr class="a">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/e826d487dcab0851245fa9f908d563c6?d=mm&amp;s=60" alt="" /></figure></td>
      +<td>Filip Van Laenen</td>
      +<td><a class="externalLink" href="mailto:fvl@computas.com">fvl@computas.com</a></td>
      +<td>Computas</td>
      +<td>-</td>
      +<td>Contributor</td>
      +<td>+1</td></tr>
      +<tr class="b">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/00000000000000000000000000000000?d=blank&amp;f=y&amp;s=60" alt="" /></figure></td>
      +<td>Mads Opheim</td>
      +<td>-</td>
      +<td>Computas</td>
      +<td>-</td>
      +<td>Contributor</td>
      +<td>+1</td></tr>
      +<tr class="a">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/00000000000000000000000000000000?d=blank&amp;f=y&amp;s=60" alt="" /></figure></td>
      +<td>Matthijs Thoolen</td>
      +<td>-</td>
      +<td>Utrecht Java User Group</td>
      +<td>-</td>
      +<td>Contributor</td>
      +<td>+1</td></tr>
      +<tr class="b">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/00000000000000000000000000000000?d=blank&amp;f=y&amp;s=60" alt="" /></figure></td>
      +<td>Anakar Parida</td>
      +<td>-</td>
      +<td>Individual</td>
      +<td>-</td>
      +<td>Contributor</td>
      +<td>+5.5</td></tr>
      +<tr class="a">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/00000000000000000000000000000000?d=blank&amp;f=y&amp;s=60" alt="" /></figure></td>
      +<td>Rustam Mehmandarov</td>
      +<td>-</td>
      +<td>Individual</td>
      +<td>-</td>
      +<td>Contributor</td>
      +<td>+3</td></tr>
      +<tr class="b">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/71410ab7ab8279092a34e0acc0806397?d=mm&amp;s=60" alt="" /></figure></td>
      +<td>Nathan Scott</td>
      +<td><a class="externalLink" href="mailto:nathans@redhat.com">nathans@redhat.com</a></td>
      +<td>Red Hat</td>
      +<td>-</td>
      +<td>Contributor Emeritus</td>
      +<td>+10</td></tr>
      +<tr class="a">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/ab30ed9edf2745368f23fd728b2025a7?d=mm&amp;s=60" alt="" /></figure></td>
      +<td>Chris Senior</td>
      +<td><a class="externalLink" href="mailto:christopher.senior@gmail.com">christopher.senior@gmail.com</a></td>
      +<td>Snap-on Inc.</td>
      +<td>-</td>
      +<td>Expert Emeritus</td>
      +<td>-</td></tr>
      +<tr class="b">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/a33ed6eae713704d1982c45b66d62edf?d=mm&amp;s=60" alt="" /></figure></td>
      +<td>Leonardo de Moura Rocha Lima</td>
      +<td><a class="externalLink" href="mailto:llima@v2com.mobi">llima@v2com.mobi</a></td>
      +<td>V2COM</td>
      +<td><a class="externalLink" href="http://www.v2com.mobi/">http://www.v2com.mobi/</a></td>
      +<td>Expert Emeritus, Java Developer</td>
      +<td>-5</td></tr>
      +<tr class="a">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/27b2b5ef41b5abcfdb105ef1f137cd85?d=mm&amp;s=60" alt="" /></figure></td>
      +<td>Almas Shaikh</td>
      +<td><a class="externalLink" href="mailto:eralmas7@yahoo.com">eralmas7@yahoo.com</a></td>
      +<td>Individual / JP Morgan</td>
      +<td>-</td>
      +<td>Test Engineer</td>
      +<td>+5.5</td></tr>
      +<tr class="b">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/8dd1ca7dc79ded98db2d62a765b0160c?d=mm&amp;s=60" alt="" /></figure></td>
      +<td>Rajmahendra Hegde</td>
      +<td><a class="externalLink" href="mailto:rajmahendra@gmail.com">rajmahendra@gmail.com</a></td>
      +<td>JUG Chennai</td>
      +<td>-</td>
      +<td>Expert Emeritus</td>
      +<td>+5.5</td></tr>
      +<tr class="a">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/c3421a311abf8e0d267c5e08bade1927?d=mm&amp;s=60" alt="" /></figure></td>
      +<td>Karen Legrand</td>
      +<td><a class="externalLink" href="mailto:karen.legrand@iem.com">karen.legrand@iem.com</a></td>
      +<td>Innovation Emergency Management (IEM)</td>
      +<td><a class="externalLink" href="http://www.iem.com">http://www.iem.com</a></td>
      +<td>Expert Emeritus</td>
      +<td>-5</td></tr>
      +<tr class="b">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/7f001e450fce0452a32316afaa14b4e7?d=mm&amp;s=60" alt="" /></figure></td>
      +<td>Mohamed Mahmoud Taman</td>
      +<td><a class="externalLink" href="mailto:mohamed.taman@gmail.com">mohamed.taman@gmail.com</a></td>
      +<td>Individual / Morocco JUG</td>
      +<td>-</td>
      +<td>Expert Emeritus</td>
      +<td>+2</td></tr>
      +<tr class="a">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/d0ae4e50c31b05e1085e025c71da5beb?d=mm&amp;s=60" alt="" /></figure></td>
      +<td>Daniel Leuck</td>
      +<td><a class="externalLink" href="mailto:dan@ikayzo.com">dan@ikayzo.com</a></td>
      +<td>Ikayzo</td>
      +<td>-</td>
      +<td>Supporter</td>
      +<td>-9</td></tr>
      +<tr class="b">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/302a60e089e68dc59afa89ba649af6f3?d=mm&amp;s=60" alt="" /></figure></td>
      +<td>Eric Russell</td>
      +<td><a class="externalLink" href="mailto:eric-r@northwestern.edu">eric-r@northwestern.edu</a></td>
      +<td>-</td>
      +<td>-</td>
      +<td>Supporter</td>
      +<td>-5</td></tr>
      +<tr class="a">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/00000000000000000000000000000000?d=blank&amp;f=y&amp;s=60" alt="" /></figure></td>
      +<td>John Paul Morrison</td>
      +<td>-</td>
      +<td>J.P. Morrison Enterprises, Ltd.</td>
      +<td>-</td>
      +<td>Supporter</td>
      +<td>-5</td></tr>
      +<tr class="b">
      +<td align="left"><figure><img src="https://www.gravatar.com/avatar/aeee79dc9144d6af7083ef2f3a76eff5?d=mm&amp;s=60" alt="" /></figure></td>
      +<td>Michael Gruebsch</td>
      +<td><a class="externalLink" href="mailto:michael@mkm-rabis.de">michael@mkm-rabis.de</a></td>
      +<td>-</td>
      +<td>-</td>
      +<td>Supporter</td>
      +<td>+1</td></tr></table></section></section>
      +      </div>
      +    </div>
      +    <div class="clear">
      +      <hr/>
      +    </div>
      +    <div id="footer">
      +      <div class="xright">
      +        Copyright &#169;      2014&#x2013;2023<a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>.
      +.      </div>
      +      <div class="clear">
      +        <hr/>
      +      </div>
      +    </div>
      +  </body>
      +</html>
      diff --git a/docs/site/testapidocs/allclasses-index.html b/docs/site/testapidocs/allclasses-index.html
      new file mode 100644
      index 00000000..d7bf56eb
      --- /dev/null
      +++ b/docs/site/testapidocs/allclasses-index.html
      @@ -0,0 +1,169 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>All Classes and Interfaces (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="class index">
      +<meta name="generator" content="javadoc/AllClassesIndexWriter">
      +<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="script.js"></script>
      +<script type="text/javascript" src="script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="all-classes-index-page">
      +<script type="text/javascript">var pathtoroot = "./";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="index.html">Overview</a></li>
      +<li>Package</li>
      +<li>Class</li>
      +<li>Use</li>
      +<li><a href="overview-tree.html">Tree</a></li>
      +<li><a href="index-all.html">Index</a></li>
      +<li><a href="help-doc.html#all-classes">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="All Classes and Interfaces" class="title">All Classes and Interfaces</h1>
      +</div>
      +<div id="all-classes-table">
      +<div class="caption"><span>Classes</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/unit/AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/unit/BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a>&lt;<a href="javax/measure/test/unit/BaseUnit.html" title="type parameter in BaseUnit">Q</a> extends <a href="../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="javax/measure/test/unit/BaseUnit.html" title="type parameter in BaseUnit">Q</a>&gt;&gt;</div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
      +<div class="block">Building blocks on top of which all others units are created.</div>
      +</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/BinaryPrefixTest.html" title="class in javax.measure.test">BinaryPrefixTest</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/CalcTripLength.html" title="class in javax.measure.test">CalcTripLength</a></div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/CircleInfo.html" title="class in javax.measure.test">CircleInfo</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/quantity/CircleInfo.html" title="class in javax.measure.test.quantity">CircleInfo</a></div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/Conversions.html" title="class in javax.measure.test">Conversions</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/ConverterTest.html" title="class in javax.measure.test">ConverterTest</a></div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/DimensionTest.html" title="class in javax.measure.test">DimensionTest</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/ExceptionsTest.html" title="class in javax.measure.test">ExceptionsTest</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/spi/FormatServiceTest.html" title="class in javax.measure.spi">FormatServiceTest</a></div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
      +<div class="block">Tests for <a href="../apidocs/javax/measure/spi/FormatService.html" title="class or interface in javax.measure.spi" class="external-link"><code>FormatService</code></a>.</div>
      +</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/unit/MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/format/MeasurementParseTest.html" title="class in javax.measure.test.format">MeasurementParseTest</a></div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
      +<div class="block">Measurement Format Tests</div>
      +</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
      +<div class="block">JUnit tests for the 24 prefixes used in the metric system (decimal multiples and submultiples of units).</div>
      +</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/function/MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
      +<div class="block">
      + This class represents a converter multiplying numeric values by a constant scaling factor (<code>double</code> based).</div>
      +</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/format/QuantityFormatTest.html" title="class in javax.measure.test.format">QuantityFormatTest</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/spi/ServiceProviderTest.html" title="class in javax.measure.spi">ServiceProviderTest</a></div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
      +<div class="block">Tests for <a href="../apidocs/javax/measure/spi/ServiceProvider.html" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider</code></a>.</div>
      +</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/format/SimpleTestUnitFormat.html" title="class in javax.measure.test.format">SimpleTestUnitFormat</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
      +<div class="block">Provides a simple interface for formatting and parsing <a href="../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">units</a>.</div>
      +</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/unit/SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/TestConverter.html" title="class in javax.measure.test">TestConverter</a></div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
      +<div class="block">
      + Test class for our <a href="../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link"><code>UnitConverter</code></a> implementations.</div>
      +</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
      +<div class="block">This class represents converters made up of two or more separate converters (in matrix notation <code>[pair] = [left] x [right]</code>).</div>
      +</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/quantity/TestQuantities.html" title="class in javax.measure.test.quantity">TestQuantities</a></div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
      +<div class="block">Singleton class for accessing <a href="../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link"><code>Quantity</code></a> instances.</div>
      +</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="javax/measure/test/quantity/TestQuantity.html" title="type parameter in TestQuantity">Q</a> extends <a href="../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="javax/measure/test/quantity/TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&gt;</div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="javax/measure/test/TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="javax/measure/test/TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/unit/TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/TripLeg.html" title="class in javax.measure.test">TripLeg</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/format/UnitFormatTest.html" title="class in javax.measure.test.format">UnitFormatTest</a></div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/UnitTest.html" title="class in javax.measure.test">UnitTest</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></div>
      +<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="javax/measure/test/unit/VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></div>
      +<div class="col-last even-row-color all-classes-table all-classes-table-tab2">&nbsp;</div>
      +</div>
      +</div>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/allpackages-index.html b/docs/site/testapidocs/allpackages-index.html
      new file mode 100644
      index 00000000..a3bb01f3
      --- /dev/null
      +++ b/docs/site/testapidocs/allpackages-index.html
      @@ -0,0 +1,79 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>All Packages (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="package index">
      +<meta name="generator" content="javadoc/AllPackagesIndexWriter">
      +<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="script.js"></script>
      +<script type="text/javascript" src="script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="all-packages-index-page">
      +<script type="text/javascript">var pathtoroot = "./";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="index.html">Overview</a></li>
      +<li>Package</li>
      +<li>Class</li>
      +<li>Use</li>
      +<li><a href="overview-tree.html">Tree</a></li>
      +<li><a href="index-all.html">Index</a></li>
      +<li><a href="help-doc.html#all-packages">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="All&amp;nbsp;Packages" class="title">All&nbsp;Packages</h1>
      +</div>
      +<div class="caption"><span>Package Summary</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="javax/measure/spi/package-summary.html">javax.measure.spi</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="javax/measure/test/package-summary.html">javax.measure.test</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><a href="javax/measure/test/format/package-summary.html">javax.measure.test.format</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="javax/measure/test/function/package-summary.html">javax.measure.test.function</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><a href="javax/measure/test/quantity/package-summary.html">javax.measure.test.quantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="javax/measure/test/unit/package-summary.html">javax.measure.test.unit</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/constant-values.html b/docs/site/testapidocs/constant-values.html
      new file mode 100644
      index 00000000..c92763cc
      --- /dev/null
      +++ b/docs/site/testapidocs/constant-values.html
      @@ -0,0 +1,102 @@
      +<!DOCTYPE HTML>
      +<!-- NewPage -->
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (14.0.2) on Sun Jun 06 17:13:41 CEST 2021 -->
      +<title>Constant Field Values (Units of Measurement API 2.1.3-SNAPSHOT Test API)</title>
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2021-06-06">
      +<meta name="description" content="summary of constants">
      +<meta name="generator" content="javadoc/ConstantsSummaryWriterImpl">
      +<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.css" title="Style">
      +<script type="text/javascript" src="script.js"></script>
      +<script type="text/javascript" src="script-dir/jszip/dist/jszip.min.js"></script>
      +<script type="text/javascript" src="script-dir/jszip-utils/dist/jszip-utils.min.js"></script>
      +<!--[if IE]>
      +<script type="text/javascript" src="script-dir/jszip-utils/dist/jszip-utils-ie.min.js"></script>
      +<![endif]-->
      +<script type="text/javascript" src="script-dir/jquery-3.4.1.js"></script>
      +<script type="text/javascript" src="script-dir/jquery-ui.js"></script>
      +</head>
      +<body class="constants-summary">
      +<script type="text/javascript">var pathtoroot = "./";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flexBox">
      +<header role="banner" class="flexHeader">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="topNav"><a id="navbar.top">
      +<!--   -->
      +</a>
      +<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
      +<a id="navbar.top.firstrow">
      +<!--   -->
      +</a>
      +<ul class="navList" title="Navigation">
      +<li><a href="index.html">Overview</a></li>
      +<li>Package</li>
      +<li>Class</li>
      +<li>Use</li>
      +<li><a href="overview-tree.html">Tree</a></li>
      +<li><a href="deprecated-list.html">Deprecated</a></li>
      +<li><a href="index-all.html">Index</a></li>
      +<li><a href="help-doc.html">Help</a></li>
      +</ul>
      +</div>
      +<div class="subNav">
      +<div class="navListSearch"><label for="search">SEARCH:</label>
      +<input type="text" id="search" value="search" disabled="disabled">
      +<input type="reset" id="reset" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<div class="skipNav"><a id="skip.navbar.top">
      +<!--   -->
      +</a></div>
      +</nav>
      +</header>
      +<div class="flexContent">
      +<main role="main">
      +<div class="header">
      +<h1 title="Constant Field Values" class="title">Constant Field Values</h1>
      +<section class="packages">
      +<h2 title="Contents">Contents</h2>
      +</section>
      +</div>
      +</main>
      +<footer role="contentinfo">
      +<nav role="navigation">
      +<!-- ======= START OF BOTTOM NAVBAR ====== -->
      +<div class="bottomNav"><a id="navbar.bottom">
      +<!--   -->
      +</a>
      +<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
      +<a id="navbar.bottom.firstrow">
      +<!--   -->
      +</a>
      +<ul class="navList" title="Navigation">
      +<li><a href="index.html">Overview</a></li>
      +<li>Package</li>
      +<li>Class</li>
      +<li>Use</li>
      +<li><a href="overview-tree.html">Tree</a></li>
      +<li><a href="deprecated-list.html">Deprecated</a></li>
      +<li><a href="index-all.html">Index</a></li>
      +<li><a href="help-doc.html">Help</a></li>
      +</ul>
      +</div>
      +<a id="skip.navbar.bottom">
      +<!--   -->
      +</a>
      +<!-- ======== END OF BOTTOM NAVBAR ======= -->
      +</nav>
      +<p class="legalCopy"><small>Copyright &#169; 2014&#x2013;2021 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/deprecated-list.html b/docs/site/testapidocs/deprecated-list.html
      new file mode 100644
      index 00000000..8f294961
      --- /dev/null
      +++ b/docs/site/testapidocs/deprecated-list.html
      @@ -0,0 +1,100 @@
      +<!DOCTYPE HTML>
      +<!-- NewPage -->
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (14.0.2) on Sun Jun 06 17:13:41 CEST 2021 -->
      +<title>Deprecated List (Units of Measurement API 2.1.3-SNAPSHOT Test API)</title>
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2021-06-06">
      +<meta name="description" content="deprecated elements">
      +<meta name="generator" content="javadoc/DeprecatedListWriter">
      +<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.css" title="Style">
      +<script type="text/javascript" src="script.js"></script>
      +<script type="text/javascript" src="script-dir/jszip/dist/jszip.min.js"></script>
      +<script type="text/javascript" src="script-dir/jszip-utils/dist/jszip-utils.min.js"></script>
      +<!--[if IE]>
      +<script type="text/javascript" src="script-dir/jszip-utils/dist/jszip-utils-ie.min.js"></script>
      +<![endif]-->
      +<script type="text/javascript" src="script-dir/jquery-3.4.1.js"></script>
      +<script type="text/javascript" src="script-dir/jquery-ui.js"></script>
      +</head>
      +<body class="deprecated-list">
      +<script type="text/javascript">var pathtoroot = "./";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flexBox">
      +<header role="banner" class="flexHeader">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="topNav"><a id="navbar.top">
      +<!--   -->
      +</a>
      +<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
      +<a id="navbar.top.firstrow">
      +<!--   -->
      +</a>
      +<ul class="navList" title="Navigation">
      +<li><a href="index.html">Overview</a></li>
      +<li>Package</li>
      +<li>Class</li>
      +<li>Use</li>
      +<li><a href="overview-tree.html">Tree</a></li>
      +<li class="navBarCell1Rev">Deprecated</li>
      +<li><a href="index-all.html">Index</a></li>
      +<li><a href="help-doc.html">Help</a></li>
      +</ul>
      +</div>
      +<div class="subNav">
      +<div class="navListSearch"><label for="search">SEARCH:</label>
      +<input type="text" id="search" value="search" disabled="disabled">
      +<input type="reset" id="reset" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<div class="skipNav"><a id="skip.navbar.top">
      +<!--   -->
      +</a></div>
      +</nav>
      +</header>
      +<div class="flexContent">
      +<main role="main">
      +<div class="header">
      +<h1 title="Deprecated API" class="title">Deprecated API</h1>
      +<h2 title="Contents">Contents</h2>
      +</div>
      +</main>
      +<footer role="contentinfo">
      +<nav role="navigation">
      +<!-- ======= START OF BOTTOM NAVBAR ====== -->
      +<div class="bottomNav"><a id="navbar.bottom">
      +<!--   -->
      +</a>
      +<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
      +<a id="navbar.bottom.firstrow">
      +<!--   -->
      +</a>
      +<ul class="navList" title="Navigation">
      +<li><a href="index.html">Overview</a></li>
      +<li>Package</li>
      +<li>Class</li>
      +<li>Use</li>
      +<li><a href="overview-tree.html">Tree</a></li>
      +<li class="navBarCell1Rev">Deprecated</li>
      +<li><a href="index-all.html">Index</a></li>
      +<li><a href="help-doc.html">Help</a></li>
      +</ul>
      +</div>
      +<a id="skip.navbar.bottom">
      +<!--   -->
      +</a>
      +<!-- ======== END OF BOTTOM NAVBAR ======= -->
      +</nav>
      +<p class="legalCopy"><small>Copyright &#169; 2014&#x2013;2021 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/element-list b/docs/site/testapidocs/element-list
      new file mode 100644
      index 00000000..68c1dc48
      --- /dev/null
      +++ b/docs/site/testapidocs/element-list
      @@ -0,0 +1,6 @@
      +javax.measure.spi
      +javax.measure.test
      +javax.measure.test.format
      +javax.measure.test.function
      +javax.measure.test.quantity
      +javax.measure.test.unit
      diff --git a/docs/site/testapidocs/help-doc.html b/docs/site/testapidocs/help-doc.html
      new file mode 100644
      index 00000000..13a3011f
      --- /dev/null
      +++ b/docs/site/testapidocs/help-doc.html
      @@ -0,0 +1,186 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>API Help (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="help">
      +<meta name="generator" content="javadoc/HelpWriter">
      +<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="script.js"></script>
      +<script type="text/javascript" src="script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="help-page">
      +<script type="text/javascript">var pathtoroot = "./";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="index.html">Overview</a></li>
      +<li>Package</li>
      +<li>Class</li>
      +<li>Use</li>
      +<li><a href="overview-tree.html">Tree</a></li>
      +<li><a href="index-all.html">Index</a></li>
      +<li class="nav-bar-cell1-rev">Help</li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Help:&nbsp;</li>
      +<li><a href="#help-navigation">Navigation</a>&nbsp;|&nbsp;</li>
      +<li><a href="#help-pages">Pages</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<h1 class="title">JavaDoc Help</h1>
      +<ul class="help-toc">
      +<li><a href="#help-navigation">Navigation</a>: 
      +<ul class="help-subtoc">
      +<li><a href="#help-search">Search</a></li>
      +</ul>
      +</li>
      +<li><a href="#help-pages">Kinds of Pages</a>: 
      +<ul class="help-subtoc">
      +<li><a href="#overview">Overview</a></li>
      +<li><a href="#package">Package</a></li>
      +<li><a href="#class">Class or Interface</a></li>
      +<li><a href="#doc-file">Other Files</a></li>
      +<li><a href="#use">Use</a></li>
      +<li><a href="#tree">Tree (Class Hierarchy)</a></li>
      +<li><a href="#all-packages">All Packages</a></li>
      +<li><a href="#all-classes">All Classes and Interfaces</a></li>
      +<li><a href="#index">Index</a></li>
      +</ul>
      +</li>
      +</ul>
      +<hr>
      +<div class="sub-title">
      +<h2 id="help-navigation">Navigation</h2>
      +Starting from the <a href="index.html">Overview</a> page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The <a href="index-all.html">Index</a> and Search box allow you to navigate to specific declarations and summary pages, including: <a href="allpackages-index.html">All Packages</a>, <a href="allclasses-index.html">All Classes and Interfaces</a>
      +<section class="help-section" id="help-search">
      +<h3>Search</h3>
      +<p>You can search for definitions of modules, packages, types, fields, methods, system properties and other terms defined in the API, using some or all of the name, optionally using "camelCase" abbreviations. For example:</p>
      +<ul class="help-section-list">
      +<li><code>j.l.obj</code> will match "java.lang.Object"</li>
      +<li><code>InpStr</code> will match "java.io.InputStream"</li>
      +<li><code>HM.cK</code> will match "java.util.HashMap.containsKey(Object)"</li>
      +</ul>
      +<p>Refer to the <a href="https://docs.oracle.com/en/java/javase/17/docs/specs/javadoc/javadoc-search-spec.html">Javadoc Search Specification</a> for a full description of search features.</p>
      +</section>
      +</div>
      +<hr>
      +<div class="sub-title">
      +<h2 id="help-pages">Kinds of Pages</h2>
      +The following sections describe the different kinds of pages in this collection.
      +<section class="help-section" id="overview">
      +<h3>Overview</h3>
      +<p>The <a href="index.html">Overview</a> page is the front page of this API document and provides a list of all packages with a summary for each.  This page can also contain an overall description of the set of packages.</p>
      +</section>
      +<section class="help-section" id="package">
      +<h3>Package</h3>
      +<p>Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain the following categories:</p>
      +<ul class="help-section-list">
      +<li>Interfaces</li>
      +<li>Classes</li>
      +<li>Enums</li>
      +<li>Exceptions</li>
      +<li>Errors</li>
      +<li>Annotation Types</li>
      +</ul>
      +</section>
      +<section class="help-section" id="class">
      +<h3>Class or Interface</h3>
      +<p>Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.</p>
      +<ul class="help-section-list">
      +<li>Class Inheritance Diagram</li>
      +<li>Direct Subclasses</li>
      +<li>All Known Subinterfaces</li>
      +<li>All Known Implementing Classes</li>
      +<li>Class or Interface Declaration</li>
      +<li>Class or Interface Description</li>
      +</ul>
      +<br>
      +<ul class="help-section-list">
      +<li>Nested Class Summary</li>
      +<li>Enum Constant Summary</li>
      +<li>Field Summary</li>
      +<li>Property Summary</li>
      +<li>Constructor Summary</li>
      +<li>Method Summary</li>
      +<li>Required Element Summary</li>
      +<li>Optional Element Summary</li>
      +</ul>
      +<br>
      +<ul class="help-section-list">
      +<li>Enum Constant Details</li>
      +<li>Field Details</li>
      +<li>Property Details</li>
      +<li>Constructor Details</li>
      +<li>Method Details</li>
      +<li>Element Details</li>
      +</ul>
      +<p><span class="help-note">Note:</span> Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.</p>
      +<p>The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</p>
      +</section>
      +<section class="help-section" id="doc-file">
      +<h3>Other Files</h3>
      +<p>Packages and modules may contain pages with additional information related to the declarations nearby.</p>
      +</section>
      +<section class="help-section" id="use">
      +<h3>Use</h3>
      +<p>Each documented package, class and interface has its own Use page.  This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A.  You can access this page by first going to the package, class or interface, then clicking on the USE link in the navigation bar.</p>
      +</section>
      +<section class="help-section" id="tree">
      +<h3>Tree (Class Hierarchy)</h3>
      +<p>There is a <a href="overview-tree.html">Class Hierarchy</a> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with <code>java.lang.Object</code>. Interfaces do not inherit from <code>java.lang.Object</code>.</p>
      +<ul class="help-section-list">
      +<li>When viewing the Overview page, clicking on TREE displays the hierarchy for all packages.</li>
      +<li>When viewing a particular package, class or interface page, clicking on TREE displays the hierarchy for only that package.</li>
      +</ul>
      +</section>
      +<section class="help-section" id="all-packages">
      +<h3>All Packages</h3>
      +<p>The <a href="allpackages-index.html">All Packages</a> page contains an alphabetic index of all packages contained in the documentation.</p>
      +</section>
      +<section class="help-section" id="all-classes">
      +<h3>All Classes and Interfaces</h3>
      +<p>The <a href="allclasses-index.html">All Classes and Interfaces</a> page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.</p>
      +</section>
      +<section class="help-section" id="index">
      +<h3>Index</h3>
      +<p>The <a href="index-all.html">Index</a> contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as <a href="allpackages-index.html">All Packages</a>, <a href="allclasses-index.html">All Classes and Interfaces</a>.</p>
      +</section>
      +</div>
      +<hr>
      +<span class="help-footnote">This help file applies to API documentation generated by the standard doclet.</span></main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/index-all.html b/docs/site/testapidocs/index-all.html
      new file mode 100644
      index 00000000..96c3b132
      --- /dev/null
      +++ b/docs/site/testapidocs/index-all.html
      @@ -0,0 +1,1263 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Index (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="index">
      +<meta name="generator" content="javadoc/IndexWriter">
      +<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="script.js"></script>
      +<script type="text/javascript" src="script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="index-page">
      +<script type="text/javascript">var pathtoroot = "./";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="index.html">Overview</a></li>
      +<li>Package</li>
      +<li>Class</li>
      +<li>Use</li>
      +<li><a href="overview-tree.html">Tree</a></li>
      +<li class="nav-bar-cell1-rev">Index</li>
      +<li><a href="help-doc.html#index">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1>Index</h1>
      +</div>
      +<a href="#I:A">A</a>&nbsp;<a href="#I:B">B</a>&nbsp;<a href="#I:C">C</a>&nbsp;<a href="#I:D">D</a>&nbsp;<a href="#I:E">E</a>&nbsp;<a href="#I:F">F</a>&nbsp;<a href="#I:G">G</a>&nbsp;<a href="#I:H">H</a>&nbsp;<a href="#I:I">I</a>&nbsp;<a href="#I:J">J</a>&nbsp;<a href="#I:K">K</a>&nbsp;<a href="#I:L">L</a>&nbsp;<a href="#I:M">M</a>&nbsp;<a href="#I:N">N</a>&nbsp;<a href="#I:O">O</a>&nbsp;<a href="#I:P">P</a>&nbsp;<a href="#I:Q">Q</a>&nbsp;<a href="#I:R">R</a>&nbsp;<a href="#I:S">S</a>&nbsp;<a href="#I:T">T</a>&nbsp;<a href="#I:U">U</a>&nbsp;<a href="#I:V">V</a>&nbsp;<a href="#I:%C3%85">Å</a>&nbsp;<br><a href="allclasses-index.html">All&nbsp;Classes&nbsp;and&nbsp;Interfaces</a><span class="vertical-separator">|</span><a href="allpackages-index.html">All&nbsp;Packages</a>
      +<h2 class="title" id="I:A">A</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/unit/AreaUnit.html#acre" class="member-name-link">acre</a> - Static variable in class <a href="javax/measure/test/unit/AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#add(javax.measure.Quantity)" class="member-name-link">add(Quantity&lt;Area&gt;)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#add(javax.measure.Quantity)" class="member-name-link">add(Quantity&lt;Length&gt;)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#add(javax.measure.Quantity)" class="member-name-link">add(Quantity&lt;Temperature&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#add(javax.measure.Quantity)" class="member-name-link">add(Quantity&lt;Time&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#add(javax.measure.Quantity)" class="member-name-link">add(Quantity&lt;Volume&gt;)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#add(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">add(AreaQuantity)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#add(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">add(DistanceQuantity)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#add(javax.measure.test.quantity.TemperatureQuantity)" class="member-name-link">add(TemperatureQuantity)</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#add(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)" class="member-name-link">add(TestQuantity&lt;Q&gt;, TestQuantity&lt;Q&gt;, TestQuantity&lt;Q&gt;, TestUnit&lt;Q&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#add(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">add(TimeQuantity)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#add(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">add(VolumeQuantity)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#alternate(java.lang.String)" class="member-name-link">alternate(String)</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">AreaQuantity</a> - Class in <a href="javax/measure/test/quantity/package-summary.html">javax.measure.test.quantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#%3Cinit%3E()" class="member-name-link">AreaQuantity()</a> - Constructor for class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#%3Cinit%3E(double,javax.measure.test.unit.AreaUnit)" class="member-name-link">AreaQuantity(double, AreaUnit)</a> - Constructor for class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#%3Cinit%3E(java.lang.Number,javax.measure.Unit)" class="member-name-link">AreaQuantity(Number, Unit)</a> - Constructor for class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html" class="type-name-link" title="class in javax.measure.test.quantity">AreaQuantityTest</a> - Class in <a href="javax/measure/test/quantity/package-summary.html">javax.measure.test.quantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#%3Cinit%3E()" class="member-name-link">AreaQuantityTest()</a> - Constructor for class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/AreaUnit.html" class="type-name-link" title="class in javax.measure.test.unit">AreaUnit</a> - Class in <a href="javax/measure/test/unit/package-summary.html">javax.measure.test.unit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/AreaUnit.html#%3Cinit%3E(java.lang.String,double)" class="member-name-link">AreaUnit(String, double)</a> - Constructor for class <a href="javax/measure/test/unit/AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#asType(java.lang.Class)" class="member-name-link">asType(Class&lt;T&gt;)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#asType(java.lang.Class)" class="member-name-link">asType(Class&lt;T&gt;)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#asType(java.lang.Class)" class="member-name-link">asType(Class&lt;T&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#asType(java.lang.Class)" class="member-name-link">asType(Class&lt;T&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#asType(java.lang.Class)" class="member-name-link">asType(Class&lt;T&gt;)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#asType(java.lang.Class)" class="member-name-link">asType(Class&lt;T&gt;)</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#asType(java.lang.Class)" class="member-name-link">asType(Class&lt;T&gt;)</a> - Method in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/DistanceUnit.html#AU" class="member-name-link">AU</a> - Static variable in class <a href="javax/measure/test/unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:B">B</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/unit/BaseUnit.html" class="type-name-link" title="class in javax.measure.test.unit">BaseUnit</a>&lt;<a href="javax/measure/test/unit/BaseUnit.html" title="type parameter in BaseUnit">Q</a> extends <a href="../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="javax/measure/test/unit/BaseUnit.html" title="type parameter in BaseUnit">Q</a>&gt;&gt; - Class in <a href="javax/measure/test/unit/package-summary.html">javax.measure.test.unit</a></dt>
      +<dd>
      +<div class="block">Building blocks on top of which all others units are created.</div>
      +</dd>
      +<dt><a href="javax/measure/test/unit/BaseUnit.html#%3Cinit%3E(java.lang.String)" class="member-name-link">BaseUnit(String)</a> - Constructor for class <a href="javax/measure/test/unit/BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a></dt>
      +<dd>
      +<div class="block">Creates a base unit having the specified symbol.</div>
      +</dd>
      +<dt><a href="javax/measure/test/unit/BaseUnit.html#%3Cinit%3E(java.lang.String,double)" class="member-name-link">BaseUnit(String, double)</a> - Constructor for class <a href="javax/measure/test/unit/BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a></dt>
      +<dd>
      +<div class="block">Creates a base unit with name and factor</div>
      +</dd>
      +<dt><a href="javax/measure/test/unit/BaseUnit.html#%3Cinit%3E(java.lang.String,java.lang.String)" class="member-name-link">BaseUnit(String, String)</a> - Constructor for class <a href="javax/measure/test/unit/BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a></dt>
      +<dd>
      +<div class="block">Creates a base unit having the specified symbol.</div>
      +</dd>
      +<dt><a href="javax/measure/test/BinaryPrefixTest.html" class="type-name-link" title="class in javax.measure.test">BinaryPrefixTest</a> - Class in <a href="javax/measure/test/package-summary.html">javax.measure.test</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/BinaryPrefixTest.html#%3Cinit%3E()" class="member-name-link">BinaryPrefixTest()</a> - Constructor for class <a href="javax/measure/test/BinaryPrefixTest.html" title="class in javax.measure.test">BinaryPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/VolumeUnit.html#bushel" class="member-name-link">bushel</a> - Static variable in class <a href="javax/measure/test/unit/VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:C">C</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/CalcTripLength.html" class="type-name-link" title="class in javax.measure.test">CalcTripLength</a> - Class in <a href="javax/measure/test/package-summary.html">javax.measure.test</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/CalcTripLength.html#%3Cinit%3E()" class="member-name-link">CalcTripLength()</a> - Constructor for class <a href="javax/measure/test/CalcTripLength.html" title="class in javax.measure.test">CalcTripLength</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/VolumeUnit.html#cc" class="member-name-link">cc</a> - Static variable in class <a href="javax/measure/test/unit/VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#CELSIUS" class="member-name-link">CELSIUS</a> - Static variable in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>
      +<div class="block">Celsius, used by most of the world's population.</div>
      +</dd>
      +<dt><a href="javax/measure/test/CircleInfo.html" class="type-name-link" title="class in javax.measure.test">CircleInfo</a> - Class in <a href="javax/measure/test/package-summary.html">javax.measure.test</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/CircleInfo.html" class="type-name-link" title="class in javax.measure.test.quantity">CircleInfo</a> - Class in <a href="javax/measure/test/quantity/package-summary.html">javax.measure.test.quantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/CircleInfo.html#%3Cinit%3E()" class="member-name-link">CircleInfo()</a> - Constructor for class <a href="javax/measure/test/CircleInfo.html" title="class in javax.measure.test">CircleInfo</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/CircleInfo.html#%3Cinit%3E()" class="member-name-link">CircleInfo()</a> - Constructor for class <a href="javax/measure/test/quantity/CircleInfo.html" title="class in javax.measure.test.quantity">CircleInfo</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/DistanceUnit.html#cm" class="member-name-link">cm</a> - Static variable in class <a href="javax/measure/test/unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#compareTo(javax.measure.Quantity)" class="member-name-link">compareTo(Quantity&lt;Temperature&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#compareTo(javax.measure.Quantity)" class="member-name-link">compareTo(Quantity&lt;Q&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>
      +<div class="block">Compares this quantity to the specified Measurement quantity.</div>
      +</dd>
      +<dt><a href="javax/measure/test/function/MultiplyConverter.html#compareTo(javax.measure.UnitConverter)" class="member-name-link">compareTo(UnitConverter)</a> - Method in class <a href="javax/measure/test/function/MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestConverter.html#concatenate(javax.measure.test.TestConverter)" class="member-name-link">concatenate(TestConverter)</a> - Method in class <a href="javax/measure/test/TestConverter.html" title="class in javax.measure.test">TestConverter</a></dt>
      +<dd>
      +<div class="block">Concatenates this physics converter with another unit converter.</div>
      +</dd>
      +<dt><a href="javax/measure/test/function/MultiplyConverter.html#concatenate(javax.measure.UnitConverter)" class="member-name-link">concatenate(UnitConverter)</a> - Method in class <a href="javax/measure/test/function/MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestConverter.html#concatenate(javax.measure.UnitConverter)" class="member-name-link">concatenate(UnitConverter)</a> - Method in class <a href="javax/measure/test/TestConverter.html" title="class in javax.measure.test">TestConverter</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/Conversions.html" class="type-name-link" title="class in javax.measure.test">Conversions</a> - Class in <a href="javax/measure/test/package-summary.html">javax.measure.test</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/Conversions.html#%3Cinit%3E()" class="member-name-link">Conversions()</a> - Constructor for class <a href="javax/measure/test/Conversions.html" title="class in javax.measure.test">Conversions</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/function/MultiplyConverter.html#convert(double)" class="member-name-link">convert(double)</a> - Method in class <a href="javax/measure/test/function/MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestConverter.html#convert(double)" class="member-name-link">convert(double)</a> - Method in class <a href="javax/measure/test/TestConverter.html" title="class in javax.measure.test">TestConverter</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestConverter.Pair.html#convert(double)" class="member-name-link">convert(double)</a> - Method in class <a href="javax/measure/test/TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestConverter.html#convert(java.lang.Number)" class="member-name-link">convert(Number)</a> - Method in class <a href="javax/measure/test/TestConverter.html" title="class in javax.measure.test">TestConverter</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#convert(javax.measure.test.unit.AreaUnit)" class="member-name-link">convert(AreaUnit)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#convert(javax.measure.test.unit.DistanceUnit)" class="member-name-link">convert(DistanceUnit)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#convert(javax.measure.test.unit.TemperatureUnit)" class="member-name-link">convert(TemperatureUnit)</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#convert(javax.measure.test.unit.TimeUnit)" class="member-name-link">convert(TimeUnit)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#convert(javax.measure.test.unit.VolumeUnit)" class="member-name-link">convert(VolumeUnit)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ConverterTest.html" class="type-name-link" title="class in javax.measure.test">ConverterTest</a> - Class in <a href="javax/measure/test/package-summary.html">javax.measure.test</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ConverterTest.html#%3Cinit%3E()" class="member-name-link">ConverterTest()</a> - Constructor for class <a href="javax/measure/test/ConverterTest.html" title="class in javax.measure.test">ConverterTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/VolumeUnit.html#cumetre" class="member-name-link">cumetre</a> - Static variable in class <a href="javax/measure/test/unit/VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/VolumeUnit.html#cumile" class="member-name-link">cumile</a> - Static variable in class <a href="javax/measure/test/unit/VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:D">D</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/DimensionTest.html" class="type-name-link" title="class in javax.measure.test">DimensionTest</a> - Class in <a href="javax/measure/test/package-summary.html">javax.measure.test</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/DimensionTest.html#%3Cinit%3E()" class="member-name-link">DimensionTest()</a> - Constructor for class <a href="javax/measure/test/DimensionTest.html" title="class in javax.measure.test">DimensionTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">DistanceQuantity</a> - Class in <a href="javax/measure/test/quantity/package-summary.html">javax.measure.test.quantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#%3Cinit%3E()" class="member-name-link">DistanceQuantity()</a> - Constructor for class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#%3Cinit%3E(double,javax.measure.test.unit.DistanceUnit)" class="member-name-link">DistanceQuantity(double, DistanceUnit)</a> - Constructor for class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#%3Cinit%3E(java.lang.Number,javax.measure.Unit)" class="member-name-link">DistanceQuantity(Number, Unit)</a> - Constructor for class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html" class="type-name-link" title="class in javax.measure.test.quantity">DistanceQuantityTest</a> - Class in <a href="javax/measure/test/quantity/package-summary.html">javax.measure.test.quantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html#%3Cinit%3E()" class="member-name-link">DistanceQuantityTest()</a> - Constructor for class <a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/DistanceUnit.html" class="type-name-link" title="class in javax.measure.test.unit">DistanceUnit</a> - Class in <a href="javax/measure/test/unit/package-summary.html">javax.measure.test.unit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/DistanceUnit.html#%3Cinit%3E(java.lang.String,double)" class="member-name-link">DistanceUnit(String, double)</a> - Constructor for class <a href="javax/measure/test/unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/DistanceUnit.html#%3Cinit%3E(java.lang.String,javax.measure.test.unit.DistanceUnit,double)" class="member-name-link">DistanceUnit(String, DistanceUnit, double)</a> - Constructor for class <a href="javax/measure/test/unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#divide(double)" class="member-name-link">divide(double)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#divide(double)" class="member-name-link">divide(double)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#divide(double)" class="member-name-link">divide(double)</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#divide(double)" class="member-name-link">divide(double)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#divide(double)" class="member-name-link">divide(double)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#divide(double)" class="member-name-link">divide(double)</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#divide(java.lang.Number)" class="member-name-link">divide(Number)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#divide(java.lang.Number)" class="member-name-link">divide(Number)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#divide(java.lang.Number)" class="member-name-link">divide(Number)</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#divide(java.lang.Number)" class="member-name-link">divide(Number)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#divide(java.lang.Number)" class="member-name-link">divide(Number)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#divide(java.lang.Number)" class="member-name-link">divide(Number)</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#divide(javax.measure.Quantity)" class="member-name-link">divide(Quantity&lt;?&gt;)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#divide(javax.measure.Quantity)" class="member-name-link">divide(Quantity&lt;?&gt;)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#divide(javax.measure.Quantity)" class="member-name-link">divide(Quantity&lt;?&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#divide(javax.measure.Quantity)" class="member-name-link">divide(Quantity&lt;?&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#divide(javax.measure.Quantity)" class="member-name-link">divide(Quantity&lt;?&gt;)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#divide(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">divide(AreaQuantity)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#divide(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">divide(DistanceQuantity)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#divide(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">divide(DistanceQuantity)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#divide(javax.measure.Unit)" class="member-name-link">divide(Unit&lt;?&gt;)</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#doubleValue(javax.measure.Unit)" class="member-name-link">doubleValue(Unit&lt;Temperature&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:E">E</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#eq(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">eq(AreaQuantity)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#eq(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">eq(DistanceQuantity)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#eq(javax.measure.test.quantity.TemperatureQuantity)" class="member-name-link">eq(TemperatureQuantity)</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#eq(javax.measure.test.quantity.TestQuantity)" class="member-name-link">eq(TestQuantity&lt;Temperature&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#eq(javax.measure.test.quantity.TestQuantity)" class="member-name-link">eq(TestQuantity&lt;Q&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#eq(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">eq(TimeQuantity)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#eq(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">eq(VolumeQuantity)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/function/MultiplyConverter.html#equals(java.lang.Object)" class="member-name-link">equals(Object)</a> - Method in class <a href="javax/measure/test/function/MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestConverter.html#equals(java.lang.Object)" class="member-name-link">equals(Object)</a> - Method in class <a href="javax/measure/test/TestConverter.html" title="class in javax.measure.test">TestConverter</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestConverter.Pair.html#equals(java.lang.Object)" class="member-name-link">equals(Object)</a> - Method in class <a href="javax/measure/test/TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/BaseUnit.html#equals(java.lang.Object)" class="member-name-link">equals(Object)</a> - Method in class <a href="javax/measure/test/unit/BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ExceptionsTest.html" class="type-name-link" title="class in javax.measure.test">ExceptionsTest</a> - Class in <a href="javax/measure/test/package-summary.html">javax.measure.test</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ExceptionsTest.html#%3Cinit%3E()" class="member-name-link">ExceptionsTest()</a> - Constructor for class <a href="javax/measure/test/ExceptionsTest.html" title="class in javax.measure.test">ExceptionsTest</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:F">F</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#FAHRENHEIT" class="member-name-link">FAHRENHEIT</a> - Static variable in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>
      +<div class="block">Fahrenheit, commonly used in the United States.</div>
      +</dd>
      +<dt><a href="javax/measure/test/format/SimpleTestUnitFormat.html#format(javax.measure.Unit)" class="member-name-link">format(Unit&lt;?&gt;)</a> - Method in class <a href="javax/measure/test/format/SimpleTestUnitFormat.html" title="class in javax.measure.test.format">SimpleTestUnitFormat</a></dt>
      +<dd>
      +<div class="block">Formats an object to produce a string.</div>
      +</dd>
      +<dt><a href="javax/measure/test/format/SimpleTestUnitFormat.html#format(javax.measure.Unit,java.lang.Appendable)" class="member-name-link">format(Unit&lt;?&gt;, Appendable)</a> - Method in class <a href="javax/measure/test/format/SimpleTestUnitFormat.html" title="class in javax.measure.test.format">SimpleTestUnitFormat</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/spi/FormatServiceTest.html" class="type-name-link" title="class in javax.measure.spi">FormatServiceTest</a> - Class in <a href="javax/measure/spi/package-summary.html">javax.measure.spi</a></dt>
      +<dd>
      +<div class="block">Tests for <a href="../apidocs/javax/measure/spi/FormatService.html" title="class or interface in javax.measure.spi" class="external-link"><code>FormatService</code></a>.</div>
      +</dd>
      +<dt><a href="javax/measure/spi/FormatServiceTest.html#%3Cinit%3E()" class="member-name-link">FormatServiceTest()</a> - Constructor for class <a href="javax/measure/spi/FormatServiceTest.html" title="class in javax.measure.spi">FormatServiceTest</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:G">G</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/unit/MassUnit.html#g" class="member-name-link">g</a> - Static variable in class <a href="javax/measure/test/unit/MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#ge(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">ge(AreaQuantity)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#ge(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">ge(DistanceQuantity)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#ge(javax.measure.test.quantity.TestQuantity)" class="member-name-link">ge(TestQuantity&lt;Q&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#ge(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">ge(TimeQuantity)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#ge(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">ge(VolumeQuantity)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/SimpleTestUnitFormat.html#geInstance()" class="member-name-link">geInstance()</a> - Static method in class <a href="javax/measure/test/format/SimpleTestUnitFormat.html" title="class in javax.measure.test.format">SimpleTestUnitFormat</a></dt>
      +<dd>
      +<div class="block">Returns the instance for formatting and parsing using case insensitive symbols</div>
      +</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#getBaseUnits()" class="member-name-link">getBaseUnits()</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#getBySymbol(java.lang.String)" class="member-name-link">getBySymbol(String)</a> - Static method in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestConverter.html#getConversionSteps()" class="member-name-link">getConversionSteps()</a> - Method in class <a href="javax/measure/test/TestConverter.html" title="class in javax.measure.test">TestConverter</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestConverter.Pair.html#getConversionSteps()" class="member-name-link">getConversionSteps()</a> - Method in class <a href="javax/measure/test/TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#getConverterTo(javax.measure.Unit)" class="member-name-link">getConverterTo(Unit&lt;Q&gt;)</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#getConverterToAny(javax.measure.Unit)" class="member-name-link">getConverterToAny(Unit&lt;?&gt;)</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#getDescription()" class="member-name-link">getDescription()</a> - Method in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#getDimension()" class="member-name-link">getDimension()</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TripLeg.html#getDist()" class="member-name-link">getDist()</a> - Method in class <a href="javax/measure/test/TripLeg.html" title="class in javax.measure.test">TripLeg</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/function/MultiplyConverter.html#getFactor()" class="member-name-link">getFactor()</a> - Method in class <a href="javax/measure/test/function/MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></dt>
      +<dd>
      +<div class="block">Returns the scale factor of this converter.</div>
      +</dd>
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#getFactor()" class="member-name-link">getFactor()</a> - Method in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/SimpleTestUnitFormat.html#getInstance()" class="member-name-link">getInstance()</a> - Static method in class <a href="javax/measure/test/format/SimpleTestUnitFormat.html" title="class in javax.measure.test.format">SimpleTestUnitFormat</a></dt>
      +<dd>
      +<div class="block">Returns the unit format for the default locale.</div>
      +</dd>
      +<dt><a href="javax/measure/test/TestConverter.Pair.html#getLeft()" class="member-name-link">getLeft()</a> - Method in class <a href="javax/measure/test/TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#getMultFactor()" class="member-name-link">getMultFactor()</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#getName()" class="member-name-link">getName()</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#getName()" class="member-name-link">getName()</a> - Method in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantities.html#getQuantity(java.lang.Number,javax.measure.Unit)" class="member-name-link">getQuantity(Number, Unit&lt;Q&gt;)</a> - Static method in class <a href="javax/measure/test/quantity/TestQuantities.html" title="class in javax.measure.test.quantity">TestQuantities</a></dt>
      +<dd>
      +<div class="block">Returns the scalar measurement.</div>
      +</dd>
      +<dt><a href="javax/measure/test/TestConverter.Pair.html#getRight()" class="member-name-link">getRight()</a> - Method in class <a href="javax/measure/test/TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#getScalar()" class="member-name-link">getScalar()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#getScale()" class="member-name-link">getScale()</a> - Method in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#getSymbol()" class="member-name-link">getSymbol()</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/BaseUnit.html#getSymbol()" class="member-name-link">getSymbol()</a> - Method in class <a href="javax/measure/test/unit/BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#getSymbol()" class="member-name-link">getSymbol()</a> - Method in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#getSystemConverter()" class="member-name-link">getSystemConverter()</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>
      +<div class="block">Returns the converter from this unit to its unscaled <a href="javax/measure/test/TestUnit.html#getSystemUnit()"><code>System Unit</code></a> unit.</div>
      +</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#getSystemUnit()" class="member-name-link">getSystemUnit()</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/AreaUnit.html#getSystemUnit()" class="member-name-link">getSystemUnit()</a> - Method in class <a href="javax/measure/test/unit/AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/BaseUnit.html#getSystemUnit()" class="member-name-link">getSystemUnit()</a> - Method in class <a href="javax/measure/test/unit/BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/DistanceUnit.html#getSystemUnit()" class="member-name-link">getSystemUnit()</a> - Method in class <a href="javax/measure/test/unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/MassUnit.html#getSystemUnit()" class="member-name-link">getSystemUnit()</a> - Method in class <a href="javax/measure/test/unit/MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/SpeedUnit.html#getSystemUnit()" class="member-name-link">getSystemUnit()</a> - Method in class <a href="javax/measure/test/unit/SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#getSystemUnit()" class="member-name-link">getSystemUnit()</a> - Method in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TimeUnit.html#getSystemUnit()" class="member-name-link">getSystemUnit()</a> - Method in class <a href="javax/measure/test/unit/TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/VolumeUnit.html#getSystemUnit()" class="member-name-link">getSystemUnit()</a> - Method in class <a href="javax/measure/test/unit/VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#getType()" class="member-name-link">getType()</a> - Method in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#getUnit()" class="member-name-link">getUnit()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#getUnit()" class="member-name-link">getUnit()</a> - Method in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/function/MultiplyConverter.html#getValue()" class="member-name-link">getValue()</a> - Method in class <a href="javax/measure/test/function/MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#getValue()" class="member-name-link">getValue()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#getValue()" class="member-name-link">getValue()</a> - Method in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#gt(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">gt(AreaQuantity)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#gt(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">gt(DistanceQuantity)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#gt(javax.measure.test.quantity.TestQuantity)" class="member-name-link">gt(TestQuantity&lt;Q&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#gt(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">gt(TimeQuantity)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#gt(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">gt(VolumeQuantity)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:H">H</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/unit/TimeUnit.html#h" class="member-name-link">h</a> - Static variable in class <a href="javax/measure/test/unit/TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/function/MultiplyConverter.html#hashCode()" class="member-name-link">hashCode()</a> - Method in class <a href="javax/measure/test/function/MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestConverter.html#hashCode()" class="member-name-link">hashCode()</a> - Method in class <a href="javax/measure/test/TestConverter.html" title="class in javax.measure.test">TestConverter</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestConverter.Pair.html#hashCode()" class="member-name-link">hashCode()</a> - Method in class <a href="javax/measure/test/TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/BaseUnit.html#hashCode()" class="member-name-link">hashCode()</a> - Method in class <a href="javax/measure/test/unit/BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/AreaUnit.html#hectare" class="member-name-link">hectare</a> - Static variable in class <a href="javax/measure/test/unit/AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:I">I</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/TestConverter.html#IDENTITY" class="member-name-link">IDENTITY</a> - Static variable in class <a href="javax/measure/test/TestConverter.html" title="class in javax.measure.test">TestConverter</a></dt>
      +<dd>
      +<div class="block">Holds identity converter.</div>
      +</dd>
      +<dt><a href="javax/measure/test/unit/DistanceUnit.html#in" class="member-name-link">in</a> - Static variable in class <a href="javax/measure/test/unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ConverterTest.html#init()" class="member-name-link">init()</a> - Method in class <a href="javax/measure/test/ConverterTest.html" title="class in javax.measure.test">ConverterTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/DimensionTest.html#init()" class="member-name-link">init()</a> - Method in class <a href="javax/measure/test/DimensionTest.html" title="class in javax.measure.test">DimensionTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/QuantityFormatTest.html#init()" class="member-name-link">init()</a> - Method in class <a href="javax/measure/test/format/QuantityFormatTest.html" title="class in javax.measure.test.format">QuantityFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/UnitFormatTest.html#init()" class="member-name-link">init()</a> - Method in class <a href="javax/measure/test/format/UnitFormatTest.html" title="class in javax.measure.test.format">UnitFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/UnitTest.html#init()" class="member-name-link">init()</a> - Method in class <a href="javax/measure/test/UnitTest.html" title="class in javax.measure.test">UnitTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/function/MultiplyConverter.html#inverse()" class="member-name-link">inverse()</a> - Method in class <a href="javax/measure/test/function/MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#inverse()" class="member-name-link">inverse()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#inverse()" class="member-name-link">inverse()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#inverse()" class="member-name-link">inverse()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#inverse()" class="member-name-link">inverse()</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#inverse()" class="member-name-link">inverse()</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestConverter.html#inverse()" class="member-name-link">inverse()</a> - Method in class <a href="javax/measure/test/TestConverter.html" title="class in javax.measure.test">TestConverter</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestConverter.Pair.html#inverse()" class="member-name-link">inverse()</a> - Method in class <a href="javax/measure/test/TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#inverse()" class="member-name-link">inverse()</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#isCompatible(javax.measure.Unit)" class="member-name-link">isCompatible(Unit&lt;?&gt;)</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#isCompatible(javax.measure.Unit)" class="member-name-link">isCompatible(Unit&lt;?&gt;)</a> - Method in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#isEquivalentTo(javax.measure.Quantity)" class="member-name-link">isEquivalentTo(Quantity&lt;Q&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#isEquivalentTo(javax.measure.Unit)" class="member-name-link">isEquivalentTo(Unit&lt;Q&gt;)</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestConverter.html#isIdentity()" class="member-name-link">isIdentity()</a> - Method in class <a href="javax/measure/test/TestConverter.html" title="class in javax.measure.test">TestConverter</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestConverter.Pair.html#isIdentity()" class="member-name-link">isIdentity()</a> - Method in class <a href="javax/measure/test/TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/function/MultiplyConverter.html#isLinear()" class="member-name-link">isLinear()</a> - Method in class <a href="javax/measure/test/function/MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestConverter.Pair.html#isLinear()" class="member-name-link">isLinear()</a> - Method in class <a href="javax/measure/test/TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#isZero()" class="member-name-link">isZero()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:J">J</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/spi/package-summary.html">javax.measure.spi</a> - package javax.measure.spi</dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/package-summary.html">javax.measure.test</a> - package javax.measure.test</dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/package-summary.html">javax.measure.test.format</a> - package javax.measure.test.format</dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/function/package-summary.html">javax.measure.test.function</a> - package javax.measure.test.function</dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/package-summary.html">javax.measure.test.quantity</a> - package javax.measure.test.quantity</dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/package-summary.html">javax.measure.test.unit</a> - package javax.measure.test.unit</dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:K">K</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#KELVIN" class="member-name-link">KELVIN</a> - Static variable in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>
      +<div class="block">Kelvin, commonly used in scientific endeavors.</div>
      +</dd>
      +<dt><a href="javax/measure/test/unit/MassUnit.html#kg" class="member-name-link">kg</a> - Static variable in class <a href="javax/measure/test/unit/MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/DistanceUnit.html#km" class="member-name-link">km</a> - Static variable in class <a href="javax/measure/test/unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/SpeedUnit.html#kmh" class="member-name-link">kmh</a> - Static variable in class <a href="javax/measure/test/unit/SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:L">L</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/format/SimpleTestUnitFormat.html#label(javax.measure.Unit,java.lang.String)" class="member-name-link">label(Unit&lt;?&gt;, String)</a> - Method in class <a href="javax/measure/test/format/SimpleTestUnitFormat.html" title="class in javax.measure.test.format">SimpleTestUnitFormat</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#le(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">le(AreaQuantity)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#le(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">le(DistanceQuantity)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#le(javax.measure.test.quantity.TestQuantity)" class="member-name-link">le(TestQuantity&lt;Q&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#le(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">le(TimeQuantity)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#le(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">le(VolumeQuantity)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/VolumeUnit.html#litre" class="member-name-link">litre</a> - Static variable in class <a href="javax/measure/test/unit/VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#lt(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">lt(AreaQuantity)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#lt(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">lt(DistanceQuantity)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#lt(javax.measure.test.quantity.TestQuantity)" class="member-name-link">lt(TestQuantity&lt;Q&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#lt(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">lt(TimeQuantity)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#lt(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">lt(VolumeQuantity)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:M">M</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/unit/DistanceUnit.html#m" class="member-name-link">m</a> - Static variable in class <a href="javax/measure/test/unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/CalcTripLength.html#main(java.lang.String%5B%5D)" class="member-name-link">main(String[])</a> - Static method in class <a href="javax/measure/test/CalcTripLength.html" title="class in javax.measure.test">CalcTripLength</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/CircleInfo.html#main(java.lang.String%5B%5D)" class="member-name-link">main(String[])</a> - Static method in class <a href="javax/measure/test/CircleInfo.html" title="class in javax.measure.test">CircleInfo</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/Conversions.html#main(java.lang.String%5B%5D)" class="member-name-link">main(String[])</a> - Static method in class <a href="javax/measure/test/Conversions.html" title="class in javax.measure.test">Conversions</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/CircleInfo.html#main(java.lang.String%5B%5D)" class="member-name-link">main(String[])</a> - Static method in class <a href="javax/measure/test/quantity/CircleInfo.html" title="class in javax.measure.test.quantity">CircleInfo</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/MassUnit.html" class="type-name-link" title="class in javax.measure.test.unit">MassUnit</a> - Class in <a href="javax/measure/test/unit/package-summary.html">javax.measure.test.unit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/MassUnit.html#%3Cinit%3E(java.lang.String,double)" class="member-name-link">MassUnit(String, double)</a> - Constructor for class <a href="javax/measure/test/unit/MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/MeasurementParseTest.html" class="type-name-link" title="class in javax.measure.test.format">MeasurementParseTest</a> - Class in <a href="javax/measure/test/format/package-summary.html">javax.measure.test.format</a></dt>
      +<dd>
      +<div class="block">Measurement Format Tests</div>
      +</dd>
      +<dt><a href="javax/measure/test/format/MeasurementParseTest.html#%3Cinit%3E()" class="member-name-link">MeasurementParseTest()</a> - Constructor for class <a href="javax/measure/test/format/MeasurementParseTest.html" title="class in javax.measure.test.format">MeasurementParseTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html" class="type-name-link" title="class in javax.measure.test">MetricPrefixTest</a> - Class in <a href="javax/measure/test/package-summary.html">javax.measure.test</a></dt>
      +<dd>
      +<div class="block">JUnit tests for the 24 prefixes used in the metric system (decimal multiples and submultiples of units).</div>
      +</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#%3Cinit%3E()" class="member-name-link">MetricPrefixTest()</a> - Constructor for class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/DistanceUnit.html#mile" class="member-name-link">mile</a> - Static variable in class <a href="javax/measure/test/unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TimeUnit.html#min" class="member-name-link">min</a> - Static variable in class <a href="javax/measure/test/unit/TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/SpeedUnit.html#mph" class="member-name-link">mph</a> - Static variable in class <a href="javax/measure/test/unit/SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#multFactor" class="member-name-link">multFactor</a> - Variable in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#multiply(double)" class="member-name-link">multiply(double)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#multiply(double)" class="member-name-link">multiply(double)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#multiply(double)" class="member-name-link">multiply(double)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#multiply(double)" class="member-name-link">multiply(double)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#multiply(double)" class="member-name-link">multiply(double)</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#multiply(double)" class="member-name-link">multiply(double)</a> - Method in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#multiply(java.lang.Number)" class="member-name-link">multiply(Number)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#multiply(java.lang.Number)" class="member-name-link">multiply(Number)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#multiply(java.lang.Number)" class="member-name-link">multiply(Number)</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#multiply(java.lang.Number)" class="member-name-link">multiply(Number)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#multiply(java.lang.Number)" class="member-name-link">multiply(Number)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#multiply(java.lang.Number)" class="member-name-link">multiply(Number)</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#multiply(javax.measure.quantity.Length)" class="member-name-link">multiply(Length)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#multiply(javax.measure.Quantity)" class="member-name-link">multiply(Quantity&lt;?&gt;)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#multiply(javax.measure.Quantity)" class="member-name-link">multiply(Quantity&lt;?&gt;)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#multiply(javax.measure.Quantity)" class="member-name-link">multiply(Quantity&lt;?&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#multiply(javax.measure.Quantity)" class="member-name-link">multiply(Quantity&lt;?&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#multiply(javax.measure.Quantity)" class="member-name-link">multiply(Quantity&lt;?&gt;)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#multiply(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">multiply(AreaQuantity)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#multiply(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">multiply(DistanceQuantity)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#multiply(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">multiply(DistanceQuantity)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#multiply(javax.measure.Unit)" class="member-name-link">multiply(Unit&lt;?&gt;)</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#multiply(javax.measure.Unit)" class="member-name-link">multiply(Unit&lt;?&gt;)</a> - Method in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/function/MultiplyConverter.html" class="type-name-link" title="class in javax.measure.test.function">MultiplyConverter</a> - Class in <a href="javax/measure/test/function/package-summary.html">javax.measure.test.function</a></dt>
      +<dd>
      +<div class="block">
      + This class represents a converter multiplying numeric values by a constant scaling factor (<code>double</code> based).</div>
      +</dd>
      +<dt><a href="javax/measure/test/function/MultiplyConverter.html#%3Cinit%3E(double)" class="member-name-link">MultiplyConverter(double)</a> - Constructor for class <a href="javax/measure/test/function/MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></dt>
      +<dd>
      +<div class="block">Creates a multiply converter with the specified scale factor.</div>
      +</dd>
      +<dt><a href="javax/measure/test/function/MultiplyConverter.html#%3Cinit%3E(java.lang.Number)" class="member-name-link">MultiplyConverter(Number)</a> - Constructor for class <a href="javax/measure/test/function/MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></dt>
      +<dd>
      +<div class="block">Creates a multiply converter with the specified scale factor.</div>
      +</dd>
      +</dl>
      +<h2 class="title" id="I:N">N</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/TestUnit.html#name" class="member-name-link">name</a> - Variable in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#ne(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">ne(AreaQuantity)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#ne(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">ne(DistanceQuantity)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#ne(javax.measure.test.quantity.TestQuantity)" class="member-name-link">ne(TestQuantity&lt;Q&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#ne(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">ne(TimeQuantity)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#ne(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">ne(VolumeQuantity)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#negate()" class="member-name-link">negate()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#negate()" class="member-name-link">negate()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#negate()" class="member-name-link">negate()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#negate()" class="member-name-link">negate()</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#negate()" class="member-name-link">negate()</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:O">O</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#ONE" class="member-name-link">ONE</a> - Static variable in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#ONE" class="member-name-link">ONE</a> - Static variable in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:P">P</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/TestConverter.Pair.html#%3Cinit%3E(javax.measure.UnitConverter,javax.measure.UnitConverter)" class="member-name-link">Pair(UnitConverter, UnitConverter)</a> - Constructor for class <a href="javax/measure/test/TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></dt>
      +<dd>
      +<div class="block">Creates a compound converter resulting from the combined transformation of the specified converters.</div>
      +</dd>
      +<dt><a href="javax/measure/test/format/SimpleTestUnitFormat.html#parse(java.lang.CharSequence)" class="member-name-link">parse(CharSequence)</a> - Method in class <a href="javax/measure/test/format/SimpleTestUnitFormat.html" title="class in javax.measure.test.format">SimpleTestUnitFormat</a></dt>
      +<dd>
      +<div class="block">Parses the specified character sequence to produce a unit (convenience method).</div>
      +</dd>
      +<dt><a href="javax/measure/test/format/SimpleTestUnitFormat.html#parse(java.lang.CharSequence,int)" class="member-name-link">parse(CharSequence, int)</a> - Method in class <a href="javax/measure/test/format/SimpleTestUnitFormat.html" title="class in javax.measure.test.format">SimpleTestUnitFormat</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/SimpleTestUnitFormat.html#parse(java.lang.CharSequence,java.text.ParsePosition)" class="member-name-link">parse(CharSequence, ParsePosition)</a> - Method in class <a href="javax/measure/test/format/SimpleTestUnitFormat.html" title="class in javax.measure.test.format">SimpleTestUnitFormat</a></dt>
      +<dd>
      +<div class="block">Parses the specified character sequence to produce a unit (convenience method).</div>
      +</dd>
      +<dt><a href="javax/measure/test/unit/DistanceUnit.html#parsec" class="member-name-link">parsec</a> - Static variable in class <a href="javax/measure/test/unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#pow(int)" class="member-name-link">pow(int)</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#pow(int)" class="member-name-link">pow(int)</a> - Method in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#prefix(javax.measure.Prefix)" class="member-name-link">prefix(Prefix)</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#prefix(javax.measure.Prefix)" class="member-name-link">prefix(Prefix)</a> - Method in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:Q">Q</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/format/QuantityFormatTest.html" class="type-name-link" title="class in javax.measure.test.format">QuantityFormatTest</a> - Class in <a href="javax/measure/test/format/package-summary.html">javax.measure.test.format</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/QuantityFormatTest.html#%3Cinit%3E()" class="member-name-link">QuantityFormatTest()</a> - Constructor for class <a href="javax/measure/test/format/QuantityFormatTest.html" title="class in javax.measure.test.format">QuantityFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:R">R</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#RANKINE" class="member-name-link">RANKINE</a> - Static variable in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>
      +<div class="block">Rankine, used in scientific endeavors.</div>
      +</dd>
      +<dt><a href="javax/measure/test/unit/AreaUnit.html#REF_UNIT" class="member-name-link">REF_UNIT</a> - Static variable in class <a href="javax/measure/test/unit/AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/DistanceUnit.html#REF_UNIT" class="member-name-link">REF_UNIT</a> - Static variable in class <a href="javax/measure/test/unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/MassUnit.html#REF_UNIT" class="member-name-link">REF_UNIT</a> - Static variable in class <a href="javax/measure/test/unit/MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/SpeedUnit.html#REF_UNIT" class="member-name-link">REF_UNIT</a> - Static variable in class <a href="javax/measure/test/unit/SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TimeUnit.html#REF_UNIT" class="member-name-link">REF_UNIT</a> - Static variable in class <a href="javax/measure/test/unit/TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/VolumeUnit.html#REF_UNIT" class="member-name-link">REF_UNIT</a> - Static variable in class <a href="javax/measure/test/unit/VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#root(int)" class="member-name-link">root(int)</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#root(int)" class="member-name-link">root(int)</a> - Method in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:S">S</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/unit/TimeUnit.html#s" class="member-name-link">s</a> - Static variable in class <a href="javax/measure/test/unit/TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#scalar" class="member-name-link">scalar</a> - Variable in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/spi/ServiceProviderTest.html" class="type-name-link" title="class in javax.measure.spi">ServiceProviderTest</a> - Class in <a href="javax/measure/spi/package-summary.html">javax.measure.spi</a></dt>
      +<dd>
      +<div class="block">Tests for <a href="../apidocs/javax/measure/spi/ServiceProvider.html" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider</code></a>.</div>
      +</dd>
      +<dt><a href="javax/measure/spi/ServiceProviderTest.html#%3Cinit%3E()" class="member-name-link">ServiceProviderTest()</a> - Constructor for class <a href="javax/measure/spi/ServiceProviderTest.html" title="class in javax.measure.spi">ServiceProviderTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#setUp()" class="member-name-link">setUp()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html#setUp()" class="member-name-link">setUp()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#setUp()" class="member-name-link">setUp()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#shift(double)" class="member-name-link">shift(double)</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#shift(double)" class="member-name-link">shift(double)</a> - Method in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#shift(java.lang.Number)" class="member-name-link">shift(Number)</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#showInUnits(javax.measure.test.TestUnit,int)" class="member-name-link">showInUnits(TestUnit&lt;?&gt;, int)</a> - Method in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#showInUnits(javax.measure.test.unit.AreaUnit,int)" class="member-name-link">showInUnits(AreaUnit, int)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#showInUnits(javax.measure.test.unit.DistanceUnit,int)" class="member-name-link">showInUnits(DistanceUnit, int)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#showInUnits(javax.measure.test.unit.DistanceUnit,int)" class="member-name-link">showInUnits(DistanceUnit, int)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#showInUnits(javax.measure.test.unit.VolumeUnit,int)" class="member-name-link">showInUnits(VolumeUnit, int)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/SimpleTestUnitFormat.html" class="type-name-link" title="class in javax.measure.test.format">SimpleTestUnitFormat</a> - Class in <a href="javax/measure/test/format/package-summary.html">javax.measure.test.format</a></dt>
      +<dd>
      +<div class="block">Provides a simple interface for formatting and parsing <a href="../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">units</a>.</div>
      +</dd>
      +<dt><a href="javax/measure/test/unit/SpeedUnit.html" class="type-name-link" title="class in javax.measure.test.unit">SpeedUnit</a> - Class in <a href="javax/measure/test/unit/package-summary.html">javax.measure.test.unit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/SpeedUnit.html#%3Cinit%3E(java.lang.String,double)" class="member-name-link">SpeedUnit(String, double)</a> - Constructor for class <a href="javax/measure/test/unit/SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/AreaUnit.html#sqmetre" class="member-name-link">sqmetre</a> - Static variable in class <a href="javax/measure/test/unit/AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/AreaUnit.html#sqmile" class="member-name-link">sqmile</a> - Static variable in class <a href="javax/measure/test/unit/AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#subtract(javax.measure.Quantity)" class="member-name-link">subtract(Quantity&lt;Area&gt;)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#subtract(javax.measure.Quantity)" class="member-name-link">subtract(Quantity&lt;Length&gt;)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#subtract(javax.measure.Quantity)" class="member-name-link">subtract(Quantity&lt;Temperature&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#subtract(javax.measure.Quantity)" class="member-name-link">subtract(Quantity&lt;Time&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#subtract(javax.measure.Quantity)" class="member-name-link">subtract(Quantity&lt;Volume&gt;)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#subtract(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">subtract(AreaQuantity)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#subtract(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">subtract(DistanceQuantity)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#subtract(javax.measure.test.quantity.TemperatureQuantity)" class="member-name-link">subtract(TemperatureQuantity)</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#subtract(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)" class="member-name-link">subtract(TestQuantity&lt;Q&gt;, TestQuantity&lt;Q&gt;, TestQuantity&lt;Q&gt;, TestUnit&lt;Q&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#subtract(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">subtract(TimeQuantity)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#subtract(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">subtract(VolumeQuantity)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#symbol" class="member-name-link">symbol</a> - Variable in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:T">T</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">TemperatureQuantity</a> - Class in <a href="javax/measure/test/quantity/package-summary.html">javax.measure.test.quantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#%3Cinit%3E(double,javax.measure.test.unit.TemperatureUnit)" class="member-name-link">TemperatureQuantity(double, TemperatureUnit)</a> - Constructor for class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#%3Cinit%3E(java.lang.Number,javax.measure.Unit)" class="member-name-link">TemperatureQuantity(Number, Unit)</a> - Constructor for class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#%3Cinit%3E(javax.measure.Quantity.Scale)" class="member-name-link">TemperatureQuantity(Quantity.Scale)</a> - Constructor for class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html" class="type-name-link" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a> - Class in <a href="javax/measure/test/quantity/package-summary.html">javax.measure.test.quantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#%3Cinit%3E()" class="member-name-link">TemperatureQuantityTest()</a> - Constructor for class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html" class="type-name-link" title="class in javax.measure.test.unit">TemperatureUnit</a> - Class in <a href="javax/measure/test/unit/package-summary.html">javax.measure.test.unit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#%3Cinit%3E(double,double,javax.measure.test.unit.TemperatureUnit,double,double,java.lang.String,java.lang.String)" class="member-name-link">TemperatureUnit(double, double, TemperatureUnit, double, double, String, String)</a> - Constructor for class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>
      +<div class="block">Constructor for TemperatureUnit that accepts key characteristics of each
      + temperature scale.</div>
      +</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html#testAbsolute()" class="member-name-link">testAbsolute()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#testAbsolute()" class="member-name-link">testAbsolute()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#testAdd()" class="member-name-link">testAdd()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html#testAdd()" class="member-name-link">testAdd()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#testAdd()" class="member-name-link">testAdd()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#testAreaQuantity()" class="member-name-link">testAreaQuantity()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html#testAreaQuantity()" class="member-name-link">testAreaQuantity()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testAtto()" class="member-name-link">testAtto()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testCenti()" class="member-name-link">testCenti()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#testConvert()" class="member-name-link">testConvert()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html#testConvert()" class="member-name-link">testConvert()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#testConvert()" class="member-name-link">testConvert()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestConverter.html" class="type-name-link" title="class in javax.measure.test">TestConverter</a> - Class in <a href="javax/measure/test/package-summary.html">javax.measure.test</a></dt>
      +<dd>
      +<div class="block">
      + Test class for our <a href="../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link"><code>UnitConverter</code></a> implementations.</div>
      +</dd>
      +<dt><a href="javax/measure/test/TestConverter.html#%3Cinit%3E()" class="member-name-link">TestConverter()</a> - Constructor for class <a href="javax/measure/test/TestConverter.html" title="class in javax.measure.test">TestConverter</a></dt>
      +<dd>
      +<div class="block">Default constructor.</div>
      +</dd>
      +<dt><a href="javax/measure/test/TestConverter.Pair.html" class="type-name-link" title="class in javax.measure.test">TestConverter.Pair</a> - Class in <a href="javax/measure/test/package-summary.html">javax.measure.test</a></dt>
      +<dd>
      +<div class="block">This class represents converters made up of two or more separate converters (in matrix notation <code>[pair] = [left] x [right]</code>).</div>
      +</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testDeca()" class="member-name-link">testDeca()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testDeci()" class="member-name-link">testDeci()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testDeka()" class="member-name-link">testDeka()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/DimensionTest.html#testDivide()" class="member-name-link">testDivide()</a> - Method in class <a href="javax/measure/test/DimensionTest.html" title="class in javax.measure.test">DimensionTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#testDivideDistanceQuantity()" class="member-name-link">testDivideDistanceQuantity()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#testDivideDouble()" class="member-name-link">testDivideDouble()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html#testDivideDouble()" class="member-name-link">testDivideDouble()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#testDivideDouble()" class="member-name-link">testDivideDouble()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/UnitTest.html#testDivideNull()" class="member-name-link">testDivideNull()</a> - Method in class <a href="javax/measure/test/UnitTest.html" title="class in javax.measure.test">UnitTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#testEq()" class="member-name-link">testEq()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html#testEq()" class="member-name-link">testEq()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#testEq()" class="member-name-link">testEq()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testExa()" class="member-name-link">testExa()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/BinaryPrefixTest.html#testExbi()" class="member-name-link">testExbi()</a> - Method in class <a href="javax/measure/test/BinaryPrefixTest.html" title="class in javax.measure.test">BinaryPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/MeasurementParseTest.html#testExceptionWithMessage()" class="member-name-link">testExceptionWithMessage()</a> - Method in class <a href="javax/measure/test/format/MeasurementParseTest.html" title="class in javax.measure.test.format">MeasurementParseTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testFemto()" class="member-name-link">testFemto()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/UnitFormatTest.html#testFormatFromQuantity()" class="member-name-link">testFormatFromQuantity()</a> - Method in class <a href="javax/measure/test/format/UnitFormatTest.html" title="class in javax.measure.test.format">UnitFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/UnitFormatTest.html#testFormatKph()" class="member-name-link">testFormatKph()</a> - Method in class <a href="javax/measure/test/format/UnitFormatTest.html" title="class in javax.measure.test.format">UnitFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#testGe()" class="member-name-link">testGe()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html#testGe()" class="member-name-link">testGe()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#testGe()" class="member-name-link">testGe()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/spi/ServiceProviderTest.html#testGetAndSetCurrent()" class="member-name-link">testGetAndSetCurrent()</a> - Method in class <a href="javax/measure/spi/ServiceProviderTest.html" title="class in javax.measure.spi">ServiceProviderTest</a></dt>
      +<dd>
      +<div class="block">Tests <a href="../apidocs/javax/measure/spi/ServiceProvider.html#current()" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider.current()</code></a> and <a href="../apidocs/javax/measure/spi/ServiceProvider.html#setCurrent(javax.measure.spi.ServiceProvider)" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider.setCurrent(ServiceProvider)</code></a>.</div>
      +</dd>
      +<dt><a href="javax/measure/spi/ServiceProviderTest.html#testGetBinaryPrefixes()" class="member-name-link">testGetBinaryPrefixes()</a> - Method in class <a href="javax/measure/spi/ServiceProviderTest.html" title="class in javax.measure.spi">ServiceProviderTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/UnitTest.html#testGetConverterTo()" class="member-name-link">testGetConverterTo()</a> - Method in class <a href="javax/measure/test/UnitTest.html" title="class in javax.measure.test">UnitTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/UnitTest.html#testGetDimension()" class="member-name-link">testGetDimension()</a> - Method in class <a href="javax/measure/test/UnitTest.html" title="class in javax.measure.test">UnitTest</a></dt>
      +<dd>
      +<div class="block">Test method for <a href="../apidocs/javax/measure/Unit.html#getDimension()" title="class or interface in javax.measure" class="external-link"><code>Unit.getDimension()</code></a>.</div>
      +</dd>
      +<dt><a href="javax/measure/test/DimensionTest.html#testGetInstance()" class="member-name-link">testGetInstance()</a> - Method in class <a href="javax/measure/test/DimensionTest.html" title="class in javax.measure.test">DimensionTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/spi/ServiceProviderTest.html#testGetMetricPrefixes()" class="member-name-link">testGetMetricPrefixes()</a> - Method in class <a href="javax/measure/spi/ServiceProviderTest.html" title="class in javax.measure.spi">ServiceProviderTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/DimensionTest.html#testGetProductDimensions()" class="member-name-link">testGetProductDimensions()</a> - Method in class <a href="javax/measure/test/DimensionTest.html" title="class in javax.measure.test">DimensionTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/UnitTest.html#testGetSymbol()" class="member-name-link">testGetSymbol()</a> - Method in class <a href="javax/measure/test/UnitTest.html" title="class in javax.measure.test">UnitTest</a></dt>
      +<dd>
      +<div class="block">Test method for <a href="../apidocs/javax/measure/Unit.html#getSymbol()" title="class or interface in javax.measure" class="external-link"><code>Unit.getSymbol()</code></a>.</div>
      +</dd>
      +<dt><a href="javax/measure/spi/FormatServiceTest.html#testGetUnitFormats()" class="member-name-link">testGetUnitFormats()</a> - Method in class <a href="javax/measure/spi/FormatServiceTest.html" title="class in javax.measure.spi">FormatServiceTest</a></dt>
      +<dd>
      +<div class="block">Tests <a href="../apidocs/javax/measure/spi/ServiceProvider.html#current()" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider.current()</code></a> and <a href="../apidocs/javax/measure/spi/ServiceProvider.html#setCurrent(javax.measure.spi.ServiceProvider)" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider.setCurrent(ServiceProvider)</code></a>.</div>
      +</dd>
      +<dt><a href="javax/measure/test/BinaryPrefixTest.html#testGibi()" class="member-name-link">testGibi()</a> - Method in class <a href="javax/measure/test/BinaryPrefixTest.html" title="class in javax.measure.test">BinaryPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testGiga()" class="member-name-link">testGiga()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#testGt()" class="member-name-link">testGt()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html#testGt()" class="member-name-link">testGt()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#testGt()" class="member-name-link">testGt()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testHecto()" class="member-name-link">testHecto()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ConverterTest.html#testIdentity()" class="member-name-link">testIdentity()</a> - Method in class <a href="javax/measure/test/ConverterTest.html" title="class in javax.measure.test">ConverterTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ExceptionsTest.html#testIncommensurableException()" class="member-name-link">testIncommensurableException()</a> - Method in class <a href="javax/measure/test/ExceptionsTest.html" title="class in javax.measure.test">ExceptionsTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ExceptionsTest.html#testIncommensurableExceptionWithCause()" class="member-name-link">testIncommensurableExceptionWithCause()</a> - Method in class <a href="javax/measure/test/ExceptionsTest.html" title="class in javax.measure.test">ExceptionsTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ExceptionsTest.html#testIncommensurableExceptionWithMessageAndCause()" class="member-name-link">testIncommensurableExceptionWithMessageAndCause()</a> - Method in class <a href="javax/measure/test/ExceptionsTest.html" title="class in javax.measure.test">ExceptionsTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/UnitTest.html#testIsCompatible()" class="member-name-link">testIsCompatible()</a> - Method in class <a href="javax/measure/test/UnitTest.html" title="class in javax.measure.test">UnitTest</a></dt>
      +<dd>
      +<div class="block">Test method for <a href="../apidocs/javax/measure/Unit.html#isCompatible(javax.measure.Unit)" title="class or interface in javax.measure" class="external-link"><code>Unit.isCompatible(javax.measure.Unit)</code></a>.</div>
      +</dd>
      +<dt><a href="javax/measure/test/UnitTest.html#testIsEquivalentTo()" class="member-name-link">testIsEquivalentTo()</a> - Method in class <a href="javax/measure/test/UnitTest.html" title="class in javax.measure.test">UnitTest</a></dt>
      +<dd>
      +<div class="block">Test method for <a href="../apidocs/javax/measure/Unit.html#isEquivalentTo(javax.measure.Unit)" title="class or interface in javax.measure" class="external-link"><code>Unit.isEquivalentTo(javax.measure.Unit)</code></a>.</div>
      +</dd>
      +<dt><a href="javax/measure/test/BinaryPrefixTest.html#testKibi()" class="member-name-link">testKibi()</a> - Method in class <a href="javax/measure/test/BinaryPrefixTest.html" title="class in javax.measure.test">BinaryPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testKilo()" class="member-name-link">testKilo()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#testLe()" class="member-name-link">testLe()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html#testLe()" class="member-name-link">testLe()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#testLe()" class="member-name-link">testLe()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#testLevelCelsius()" class="member-name-link">testLevelCelsius()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#testLevelFahrenheit()" class="member-name-link">testLevelFahrenheit()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ConverterTest.html#testLinear()" class="member-name-link">testLinear()</a> - Method in class <a href="javax/measure/test/ConverterTest.html" title="class in javax.measure.test">ConverterTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/QuantityFormatTest.html#testLocalSensitive()" class="member-name-link">testLocalSensitive()</a> - Method in class <a href="javax/measure/test/format/QuantityFormatTest.html" title="class in javax.measure.test.format">QuantityFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/UnitFormatTest.html#testLocalSensitive()" class="member-name-link">testLocalSensitive()</a> - Method in class <a href="javax/measure/test/format/UnitFormatTest.html" title="class in javax.measure.test.format">UnitFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#testLt()" class="member-name-link">testLt()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html#testLt()" class="member-name-link">testLt()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#testLt()" class="member-name-link">testLt()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ExceptionsTest.html#testMeasurementError()" class="member-name-link">testMeasurementError()</a> - Method in class <a href="javax/measure/test/ExceptionsTest.html" title="class in javax.measure.test">ExceptionsTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ExceptionsTest.html#testMeasurementErrorWithCause()" class="member-name-link">testMeasurementErrorWithCause()</a> - Method in class <a href="javax/measure/test/ExceptionsTest.html" title="class in javax.measure.test">ExceptionsTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ExceptionsTest.html#testMeasurementErrorWithMessage()" class="member-name-link">testMeasurementErrorWithMessage()</a> - Method in class <a href="javax/measure/test/ExceptionsTest.html" title="class in javax.measure.test">ExceptionsTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ExceptionsTest.html#testMeasurementErrorWithMessageAndCause()" class="member-name-link">testMeasurementErrorWithMessageAndCause()</a> - Method in class <a href="javax/measure/test/ExceptionsTest.html" title="class in javax.measure.test">ExceptionsTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ExceptionsTest.html#testMeasurementException()" class="member-name-link">testMeasurementException()</a> - Method in class <a href="javax/measure/test/ExceptionsTest.html" title="class in javax.measure.test">ExceptionsTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ExceptionsTest.html#testMeasurementExceptionWithCause()" class="member-name-link">testMeasurementExceptionWithCause()</a> - Method in class <a href="javax/measure/test/ExceptionsTest.html" title="class in javax.measure.test">ExceptionsTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ExceptionsTest.html#testMeasurementExceptionWithMessage()" class="member-name-link">testMeasurementExceptionWithMessage()</a> - Method in class <a href="javax/measure/test/ExceptionsTest.html" title="class in javax.measure.test">ExceptionsTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ExceptionsTest.html#testMeasurementExceptionWithMessageAndCause()" class="member-name-link">testMeasurementExceptionWithMessageAndCause()</a> - Method in class <a href="javax/measure/test/ExceptionsTest.html" title="class in javax.measure.test">ExceptionsTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/BinaryPrefixTest.html#testMebi()" class="member-name-link">testMebi()</a> - Method in class <a href="javax/measure/test/BinaryPrefixTest.html" title="class in javax.measure.test">BinaryPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testMega()" class="member-name-link">testMega()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testMicro()" class="member-name-link">testMicro()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testMilli()" class="member-name-link">testMilli()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/UnitFormatTest.html#testMoreLocalSensitive()" class="member-name-link">testMoreLocalSensitive()</a> - Method in class <a href="javax/measure/test/format/UnitFormatTest.html" title="class in javax.measure.test.format">UnitFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/DimensionTest.html#testMultiply()" class="member-name-link">testMultiply()</a> - Method in class <a href="javax/measure/test/DimensionTest.html" title="class in javax.measure.test">DimensionTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#testMultiplyDistanceQuantity()" class="member-name-link">testMultiplyDistanceQuantity()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html#testMultiplyDistanceQuantity()" class="member-name-link">testMultiplyDistanceQuantity()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#testMultiplyDouble()" class="member-name-link">testMultiplyDouble()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html#testMultiplyDouble()" class="member-name-link">testMultiplyDouble()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#testMultiplyDouble()" class="member-name-link">testMultiplyDouble()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/UnitTest.html#testMultiplyNull()" class="member-name-link">testMultiplyNull()</a> - Method in class <a href="javax/measure/test/UnitTest.html" title="class in javax.measure.test">UnitTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testNano()" class="member-name-link">testNano()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#testNegate()" class="member-name-link">testNegate()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html#testNegate()" class="member-name-link">testNegate()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#testNegate()" class="member-name-link">testNegate()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/spi/ServiceProviderTest.html#testOfNonExistent()" class="member-name-link">testOfNonExistent()</a> - Method in class <a href="javax/measure/spi/ServiceProviderTest.html" title="class in javax.measure.spi">ServiceProviderTest</a></dt>
      +<dd>
      +<div class="block">Tests ServiceProvider#of() by passing a non-existing name.</div>
      +</dd>
      +<dt><a href="javax/measure/spi/ServiceProviderTest.html#testOfNull()" class="member-name-link">testOfNull()</a> - Method in class <a href="javax/measure/spi/ServiceProviderTest.html" title="class in javax.measure.spi">ServiceProviderTest</a></dt>
      +<dd>
      +<div class="block">Tests ServiceProvider#of() by passing null.</div>
      +</dd>
      +<dt><a href="javax/measure/test/format/MeasurementParseTest.html#testOldExceptionWithCause()" class="member-name-link">testOldExceptionWithCause()</a> - Method in class <a href="javax/measure/test/format/MeasurementParseTest.html" title="class in javax.measure.test.format">MeasurementParseTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/MeasurementParseTest.html#testOldExceptionWithMessageAndPos()" class="member-name-link">testOldExceptionWithMessageAndPos()</a> - Method in class <a href="javax/measure/test/format/MeasurementParseTest.html" title="class in javax.measure.test.format">MeasurementParseTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/MeasurementParseTest.html#testOldExceptionWithMessageDataAndPos()" class="member-name-link">testOldExceptionWithMessageDataAndPos()</a> - Method in class <a href="javax/measure/test/format/MeasurementParseTest.html" title="class in javax.measure.test.format">MeasurementParseTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/QuantityFormatTest.html#testParseIrregularString()" class="member-name-link">testParseIrregularString()</a> - Method in class <a href="javax/measure/test/format/QuantityFormatTest.html" title="class in javax.measure.test.format">QuantityFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/UnitFormatTest.html#testParseIrregularString()" class="member-name-link">testParseIrregularString()</a> - Method in class <a href="javax/measure/test/format/UnitFormatTest.html" title="class in javax.measure.test.format">UnitFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/QuantityFormatTest.html#testParserException()" class="member-name-link">testParserException()</a> - Method in class <a href="javax/measure/test/format/QuantityFormatTest.html" title="class in javax.measure.test.format">QuantityFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/UnitFormatTest.html#testParserException()" class="member-name-link">testParserException()</a> - Method in class <a href="javax/measure/test/format/UnitFormatTest.html" title="class in javax.measure.test.format">UnitFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/QuantityFormatTest.html#testParserExceptionWithNullString()" class="member-name-link">testParserExceptionWithNullString()</a> - Method in class <a href="javax/measure/test/format/QuantityFormatTest.html" title="class in javax.measure.test.format">QuantityFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/UnitFormatTest.html#testParserExceptionWithNullString()" class="member-name-link">testParserExceptionWithNullString()</a> - Method in class <a href="javax/measure/test/format/UnitFormatTest.html" title="class in javax.measure.test.format">UnitFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/QuantityFormatTest.html#testParserExceptionWithPosition()" class="member-name-link">testParserExceptionWithPosition()</a> - Method in class <a href="javax/measure/test/format/QuantityFormatTest.html" title="class in javax.measure.test.format">QuantityFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/UnitFormatTest.html#testParserExceptionWithPosition()" class="member-name-link">testParserExceptionWithPosition()</a> - Method in class <a href="javax/measure/test/format/UnitFormatTest.html" title="class in javax.measure.test.format">UnitFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/QuantityFormatTest.html#testParseSimple()" class="member-name-link">testParseSimple()</a> - Method in class <a href="javax/measure/test/format/QuantityFormatTest.html" title="class in javax.measure.test.format">QuantityFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/UnitFormatTest.html#testParseSimple()" class="member-name-link">testParseSimple()</a> - Method in class <a href="javax/measure/test/format/UnitFormatTest.html" title="class in javax.measure.test.format">UnitFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/BinaryPrefixTest.html#testPebi()" class="member-name-link">testPebi()</a> - Method in class <a href="javax/measure/test/BinaryPrefixTest.html" title="class in javax.measure.test">BinaryPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testPeta()" class="member-name-link">testPeta()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testPico()" class="member-name-link">testPico()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/DimensionTest.html#testPow()" class="member-name-link">testPow()</a> - Method in class <a href="javax/measure/test/DimensionTest.html" title="class in javax.measure.test">DimensionTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/spi/ServiceProviderTest.html#testPriority()" class="member-name-link">testPriority()</a> - Method in class <a href="javax/measure/spi/ServiceProviderTest.html" title="class in javax.measure.spi">ServiceProviderTest</a></dt>
      +<dd>
      +<div class="block">Tests <a href="../apidocs/javax/measure/spi/ServiceProvider.html#getPriority()" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider.getPriority()</code></a>.</div>
      +</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantities.html" class="type-name-link" title="class in javax.measure.test.quantity">TestQuantities</a> - Class in <a href="javax/measure/test/quantity/package-summary.html">javax.measure.test.quantity</a></dt>
      +<dd>
      +<div class="block">Singleton class for accessing <a href="../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link"><code>Quantity</code></a> instances.</div>
      +</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#testQuantity()" class="member-name-link">testQuantity()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="javax/measure/test/quantity/TestQuantity.html" title="type parameter in TestQuantity">Q</a> extends <a href="../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="javax/measure/test/quantity/TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&gt; - Class in <a href="javax/measure/test/quantity/package-summary.html">javax.measure.test.quantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#%3Cinit%3E(java.lang.Class)" class="member-name-link">TestQuantity(Class&lt;Q&gt;)</a> - Constructor for class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#%3Cinit%3E(java.lang.Class,javax.measure.Quantity.Scale)" class="member-name-link">TestQuantity(Class&lt;Q&gt;, Quantity.Scale)</a> - Constructor for class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testQuecto()" class="member-name-link">testQuecto()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testQuetta()" class="member-name-link">testQuetta()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testRonna()" class="member-name-link">testRonna()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testRonto()" class="member-name-link">testRonto()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/DimensionTest.html#testRoot()" class="member-name-link">testRoot()</a> - Method in class <a href="javax/measure/test/DimensionTest.html" title="class in javax.measure.test">DimensionTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#testScale()" class="member-name-link">testScale()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#testScale()" class="member-name-link">testScale()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/spi/ServiceProviderTest.html#testSetCurrentNull()" class="member-name-link">testSetCurrentNull()</a> - Method in class <a href="javax/measure/spi/ServiceProviderTest.html" title="class in javax.measure.spi">ServiceProviderTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/UnitTest.html#testShiftNull()" class="member-name-link">testShiftNull()</a> - Method in class <a href="javax/measure/test/UnitTest.html" title="class in javax.measure.test">UnitTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#testShowInUnits()" class="member-name-link">testShowInUnits()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html#testShowInUnits()" class="member-name-link">testShowInUnits()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#testSubtract()" class="member-name-link">testSubtract()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html#testSubtract()" class="member-name-link">testSubtract()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#testSubtract()" class="member-name-link">testSubtract()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/BinaryPrefixTest.html#testTebi()" class="member-name-link">testTebi()</a> - Method in class <a href="javax/measure/test/BinaryPrefixTest.html" title="class in javax.measure.test">BinaryPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testTera()" class="member-name-link">testTera()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantityTest.html#testToSystemUnit()" class="member-name-link">testToSystemUnit()</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantityTest.html#testToSystemUnit()" class="member-name-link">testToSystemUnit()</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantityTest.html#testToSystemUnit()" class="member-name-link">testToSystemUnit()</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/spi/FormatServiceTest.html#testTypes()" class="member-name-link">testTypes()</a> - Method in class <a href="javax/measure/spi/FormatServiceTest.html" title="class in javax.measure.spi">FormatServiceTest</a></dt>
      +<dd>
      +<div class="block">Tests FormatService#FormatType.</div>
      +</dd>
      +<dt><a href="javax/measure/test/ExceptionsTest.html#testUnconvertibleException()" class="member-name-link">testUnconvertibleException()</a> - Method in class <a href="javax/measure/test/ExceptionsTest.html" title="class in javax.measure.test">ExceptionsTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ExceptionsTest.html#testUnconvertibleExceptionWithCause()" class="member-name-link">testUnconvertibleExceptionWithCause()</a> - Method in class <a href="javax/measure/test/ExceptionsTest.html" title="class in javax.measure.test">ExceptionsTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/ExceptionsTest.html#testUnconvertibleExceptionWithMessageAndCause()" class="member-name-link">testUnconvertibleExceptionWithMessageAndCause()</a> - Method in class <a href="javax/measure/test/ExceptionsTest.html" title="class in javax.measure.test">ExceptionsTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html" class="type-name-link" title="class in javax.measure.test">TestUnit</a>&lt;<a href="javax/measure/test/TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="javax/measure/test/TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt; - Class in <a href="javax/measure/test/package-summary.html">javax.measure.test</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#%3Cinit%3E()" class="member-name-link">TestUnit()</a> - Constructor for class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#%3Cinit%3E(java.lang.String)" class="member-name-link">TestUnit(String)</a> - Constructor for class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#%3Cinit%3E(java.lang.String,double)" class="member-name-link">TestUnit(String, double)</a> - Constructor for class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/spi/ServiceProviderTest.html#testWrongEnumType()" class="member-name-link">testWrongEnumType()</a> - Method in class <a href="javax/measure/spi/ServiceProviderTest.html" title="class in javax.measure.spi">ServiceProviderTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/spi/ServiceProviderTest.html#testWrongPrefixType()" class="member-name-link">testWrongPrefixType()</a> - Method in class <a href="javax/measure/spi/ServiceProviderTest.html" title="class in javax.measure.spi">ServiceProviderTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/BinaryPrefixTest.html#testYobi()" class="member-name-link">testYobi()</a> - Method in class <a href="javax/measure/test/BinaryPrefixTest.html" title="class in javax.measure.test">BinaryPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testYocto()" class="member-name-link">testYocto()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testYotta()" class="member-name-link">testYotta()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/BinaryPrefixTest.html#testZebi()" class="member-name-link">testZebi()</a> - Method in class <a href="javax/measure/test/BinaryPrefixTest.html" title="class in javax.measure.test">BinaryPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testZepto()" class="member-name-link">testZepto()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/MetricPrefixTest.html#testZetta()" class="member-name-link">testZetta()</a> - Method in class <a href="javax/measure/test/MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">TimeQuantity</a> - Class in <a href="javax/measure/test/quantity/package-summary.html">javax.measure.test.quantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#%3Cinit%3E()" class="member-name-link">TimeQuantity()</a> - Constructor for class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#%3Cinit%3E(double,javax.measure.test.unit.TimeUnit)" class="member-name-link">TimeQuantity(double, TimeUnit)</a> - Constructor for class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#%3Cinit%3E(java.lang.Number,javax.measure.Unit)" class="member-name-link">TimeQuantity(Number, Unit)</a> - Constructor for class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TimeUnit.html" class="type-name-link" title="class in javax.measure.test.unit">TimeUnit</a> - Class in <a href="javax/measure/test/unit/package-summary.html">javax.measure.test.unit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TimeUnit.html#%3Cinit%3E(java.lang.String,double)" class="member-name-link">TimeUnit(String, double)</a> - Constructor for class <a href="javax/measure/test/unit/TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/AreaQuantity.html#to(javax.measure.Unit)" class="member-name-link">to(Unit&lt;Area&gt;)</a> - Method in class <a href="javax/measure/test/quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/DistanceQuantity.html#to(javax.measure.Unit)" class="member-name-link">to(Unit&lt;Length&gt;)</a> - Method in class <a href="javax/measure/test/quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#to(javax.measure.Unit)" class="member-name-link">to(Unit&lt;Temperature&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TimeQuantity.html#to(javax.measure.Unit)" class="member-name-link">to(Unit&lt;Time&gt;)</a> - Method in class <a href="javax/measure/test/quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#to(javax.measure.Unit)" class="member-name-link">to(Unit&lt;Volume&gt;)</a> - Method in class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/function/MultiplyConverter.html#toString()" class="member-name-link">toString()</a> - Method in class <a href="javax/measure/test/function/MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#toString()" class="member-name-link">toString()</a> - Method in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#toString()" class="member-name-link">toString()</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/TemperatureQuantity.html#toString(boolean,boolean,int)" class="member-name-link">toString(boolean, boolean, int)</a> - Method in class <a href="javax/measure/test/quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TestUnit.html#transform(javax.measure.UnitConverter)" class="member-name-link">transform(UnitConverter)</a> - Method in class <a href="javax/measure/test/TestUnit.html" title="class in javax.measure.test">TestUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/TemperatureUnit.html#transform(javax.measure.UnitConverter)" class="member-name-link">transform(UnitConverter)</a> - Method in class <a href="javax/measure/test/unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TripLeg.html" class="type-name-link" title="class in javax.measure.test">TripLeg</a> - Class in <a href="javax/measure/test/package-summary.html">javax.measure.test</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/TripLeg.html#%3Cinit%3E(java.lang.String,java.lang.String,javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">TripLeg(String, String, DistanceQuantity)</a> - Constructor for class <a href="javax/measure/test/TripLeg.html" title="class in javax.measure.test">TripLeg</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:U">U</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#unit" class="member-name-link">unit</a> - Variable in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/UnitFormatTest.html" class="type-name-link" title="class in javax.measure.test.format">UnitFormatTest</a> - Class in <a href="javax/measure/test/format/package-summary.html">javax.measure.test.format</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/format/UnitFormatTest.html#%3Cinit%3E()" class="member-name-link">UnitFormatTest()</a> - Constructor for class <a href="javax/measure/test/format/UnitFormatTest.html" title="class in javax.measure.test.format">UnitFormatTest</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/UnitTest.html" class="type-name-link" title="class in javax.measure.test">UnitTest</a> - Class in <a href="javax/measure/test/package-summary.html">javax.measure.test</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/UnitTest.html#%3Cinit%3E()" class="member-name-link">UnitTest()</a> - Constructor for class <a href="javax/measure/test/UnitTest.html" title="class in javax.measure.test">UnitTest</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:V">V</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/quantity/TestQuantity.html#value" class="member-name-link">value</a> - Variable in class <a href="javax/measure/test/quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">VolumeQuantity</a> - Class in <a href="javax/measure/test/quantity/package-summary.html">javax.measure.test.quantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#%3Cinit%3E()" class="member-name-link">VolumeQuantity()</a> - Constructor for class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#%3Cinit%3E(double,javax.measure.test.unit.VolumeUnit)" class="member-name-link">VolumeQuantity(double, VolumeUnit)</a> - Constructor for class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/quantity/VolumeQuantity.html#%3Cinit%3E(java.lang.Number,javax.measure.Unit)" class="member-name-link">VolumeQuantity(Number, Unit)</a> - Constructor for class <a href="javax/measure/test/quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/VolumeUnit.html" class="type-name-link" title="class in javax.measure.test.unit">VolumeUnit</a> - Class in <a href="javax/measure/test/unit/package-summary.html">javax.measure.test.unit</a></dt>
      +<dd>&nbsp;</dd>
      +<dt><a href="javax/measure/test/unit/VolumeUnit.html#%3Cinit%3E(java.lang.String,double)" class="member-name-link">VolumeUnit(String, double)</a> - Constructor for class <a href="javax/measure/test/unit/VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<h2 class="title" id="I:Å">Å</h2>
      +<dl class="index">
      +<dt><a href="javax/measure/test/unit/DistanceUnit.html#%C3%85ngstr%C3%B6m" class="member-name-link">Ångström</a> - Static variable in class <a href="javax/measure/test/unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></dt>
      +<dd>&nbsp;</dd>
      +</dl>
      +<a href="#I:A">A</a>&nbsp;<a href="#I:B">B</a>&nbsp;<a href="#I:C">C</a>&nbsp;<a href="#I:D">D</a>&nbsp;<a href="#I:E">E</a>&nbsp;<a href="#I:F">F</a>&nbsp;<a href="#I:G">G</a>&nbsp;<a href="#I:H">H</a>&nbsp;<a href="#I:I">I</a>&nbsp;<a href="#I:J">J</a>&nbsp;<a href="#I:K">K</a>&nbsp;<a href="#I:L">L</a>&nbsp;<a href="#I:M">M</a>&nbsp;<a href="#I:N">N</a>&nbsp;<a href="#I:O">O</a>&nbsp;<a href="#I:P">P</a>&nbsp;<a href="#I:Q">Q</a>&nbsp;<a href="#I:R">R</a>&nbsp;<a href="#I:S">S</a>&nbsp;<a href="#I:T">T</a>&nbsp;<a href="#I:U">U</a>&nbsp;<a href="#I:V">V</a>&nbsp;<a href="#I:%C3%85">Å</a>&nbsp;<br><a href="allclasses-index.html">All&nbsp;Classes&nbsp;and&nbsp;Interfaces</a><span class="vertical-separator">|</span><a href="allpackages-index.html">All&nbsp;Packages</a></main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/index.html b/docs/site/testapidocs/index.html
      new file mode 100644
      index 00000000..73d456cc
      --- /dev/null
      +++ b/docs/site/testapidocs/index.html
      @@ -0,0 +1,82 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Overview (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="package index">
      +<meta name="generator" content="javadoc/PackageIndexWriter">
      +<meta name="keywords" content="Overview, Units of Measurement API 2.2.1-SNAPSHOT Test API">
      +<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="script.js"></script>
      +<script type="text/javascript" src="script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-index-page">
      +<script type="text/javascript">var pathtoroot = "./";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li class="nav-bar-cell1-rev">Overview</li>
      +<li>Package</li>
      +<li>Class</li>
      +<li>Use</li>
      +<li><a href="overview-tree.html">Tree</a></li>
      +<li><a href="index-all.html">Index</a></li>
      +<li><a href="help-doc.html#overview">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 class="title">Units of Measurement API 2.2.1-SNAPSHOT Test API</h1>
      +</div>
      +<div id="all-packages-table">
      +<div class="caption"><span>Packages</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color all-packages-table all-packages-table-tab1"><a href="javax/measure/spi/package-summary.html">javax.measure.spi</a></div>
      +<div class="col-last even-row-color all-packages-table all-packages-table-tab1">&nbsp;</div>
      +<div class="col-first odd-row-color all-packages-table all-packages-table-tab1"><a href="javax/measure/test/package-summary.html">javax.measure.test</a></div>
      +<div class="col-last odd-row-color all-packages-table all-packages-table-tab1">&nbsp;</div>
      +<div class="col-first even-row-color all-packages-table all-packages-table-tab1"><a href="javax/measure/test/format/package-summary.html">javax.measure.test.format</a></div>
      +<div class="col-last even-row-color all-packages-table all-packages-table-tab1">&nbsp;</div>
      +<div class="col-first odd-row-color all-packages-table all-packages-table-tab1"><a href="javax/measure/test/function/package-summary.html">javax.measure.test.function</a></div>
      +<div class="col-last odd-row-color all-packages-table all-packages-table-tab1">&nbsp;</div>
      +<div class="col-first even-row-color all-packages-table all-packages-table-tab1"><a href="javax/measure/test/quantity/package-summary.html">javax.measure.test.quantity</a></div>
      +<div class="col-last even-row-color all-packages-table all-packages-table-tab1">&nbsp;</div>
      +<div class="col-first odd-row-color all-packages-table all-packages-table-tab1"><a href="javax/measure/test/unit/package-summary.html">javax.measure.test.unit</a></div>
      +<div class="col-last odd-row-color all-packages-table all-packages-table-tab1">&nbsp;</div>
      +</div>
      +</div>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/spi/FormatServiceTest.html b/docs/site/testapidocs/javax/measure/spi/FormatServiceTest.html
      new file mode 100644
      index 00000000..39f42a0c
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/spi/FormatServiceTest.html
      @@ -0,0 +1,185 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>FormatServiceTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.spi, class: FormatServiceTest">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.spi.FormatServiceTest class">
      +<meta name="keywords" content="testGetUnitFormats()">
      +<meta name="keywords" content="testTypes()">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/FormatServiceTest.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.spi</a></div>
      +<h1 title="Class FormatServiceTest" class="title">Class FormatServiceTest</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">FormatServiceTest</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../src-html/javax/measure/spi/FormatServiceTest.html#line-48">FormatServiceTest</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +<div class="block">Tests for <a href="../../../../apidocs/javax/measure/spi/FormatService.html" title="class or interface in javax.measure.spi" class="external-link"><code>FormatService</code></a>.</div>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">FormatServiceTest</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testGetUnitFormats()" class="member-name-link">testGetUnitFormats</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Tests <a href="../../../../apidocs/javax/measure/spi/ServiceProvider.html#current()" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider.current()</code></a> and <a href="../../../../apidocs/javax/measure/spi/ServiceProvider.html#setCurrent(javax.measure.spi.ServiceProvider)" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider.setCurrent(ServiceProvider)</code></a>.</div>
      +</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testTypes()" class="member-name-link">testTypes</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Tests FormatService#FormatType.</div>
      +</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>FormatServiceTest</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/spi/FormatServiceTest.html#line-48">FormatServiceTest</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="testGetUnitFormats()">
      +<h3>testGetUnitFormats</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/spi/FormatServiceTest.html#line-54">testGetUnitFormats</a></span>()</div>
      +<div class="block">Tests <a href="../../../../apidocs/javax/measure/spi/ServiceProvider.html#current()" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider.current()</code></a> and <a href="../../../../apidocs/javax/measure/spi/ServiceProvider.html#setCurrent(javax.measure.spi.ServiceProvider)" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider.setCurrent(ServiceProvider)</code></a>. The getter and setter are tested in a single
      + method for avoiding issues with the order in which JUnit executes tests.</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testTypes()">
      +<h3>testTypes</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/spi/FormatServiceTest.html#line-63">testTypes</a></span>()</div>
      +<div class="block">Tests FormatService#FormatType.</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/spi/ServiceProviderTest.html b/docs/site/testapidocs/javax/measure/spi/ServiceProviderTest.html
      new file mode 100644
      index 00000000..7b9a61a2
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/spi/ServiceProviderTest.html
      @@ -0,0 +1,268 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>ServiceProviderTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.spi, class: ServiceProviderTest">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.spi.ServiceProviderTest class">
      +<meta name="keywords" content="testSetCurrentNull()">
      +<meta name="keywords" content="testGetAndSetCurrent()">
      +<meta name="keywords" content="testPriority()">
      +<meta name="keywords" content="testOfNull()">
      +<meta name="keywords" content="testOfNonExistent()">
      +<meta name="keywords" content="testGetMetricPrefixes()">
      +<meta name="keywords" content="testGetBinaryPrefixes()">
      +<meta name="keywords" content="testWrongPrefixType()">
      +<meta name="keywords" content="testWrongEnumType()">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/ServiceProviderTest.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.spi</a></div>
      +<h1 title="Class ServiceProviderTest" class="title">Class ServiceProviderTest</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">ServiceProviderTest</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../src-html/javax/measure/spi/ServiceProviderTest.html#line-47">ServiceProviderTest</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +<div class="block">Tests for <a href="../../../../apidocs/javax/measure/spi/ServiceProvider.html" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider</code></a>.</div>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">ServiceProviderTest</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testGetAndSetCurrent()" class="member-name-link">testGetAndSetCurrent</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Tests <a href="../../../../apidocs/javax/measure/spi/ServiceProvider.html#current()" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider.current()</code></a> and <a href="../../../../apidocs/javax/measure/spi/ServiceProvider.html#setCurrent(javax.measure.spi.ServiceProvider)" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider.setCurrent(ServiceProvider)</code></a>.</div>
      +</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testGetBinaryPrefixes()" class="member-name-link">testGetBinaryPrefixes</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testGetMetricPrefixes()" class="member-name-link">testGetMetricPrefixes</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testOfNonExistent()" class="member-name-link">testOfNonExistent</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Tests ServiceProvider#of() by passing a non-existing name.</div>
      +</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testOfNull()" class="member-name-link">testOfNull</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Tests ServiceProvider#of() by passing null.</div>
      +</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testPriority()" class="member-name-link">testPriority</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Tests <a href="../../../../apidocs/javax/measure/spi/ServiceProvider.html#getPriority()" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider.getPriority()</code></a>.</div>
      +</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testSetCurrentNull()" class="member-name-link">testSetCurrentNull</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testWrongEnumType()" class="member-name-link">testWrongEnumType</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testWrongPrefixType()" class="member-name-link">testWrongPrefixType</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>ServiceProviderTest</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/spi/ServiceProviderTest.html#line-47">ServiceProviderTest</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="testSetCurrentNull()">
      +<h3>testSetCurrentNull</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/spi/ServiceProviderTest.html#line-49">testSetCurrentNull</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testGetAndSetCurrent()">
      +<h3>testGetAndSetCurrent</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/spi/ServiceProviderTest.html#line-60">testGetAndSetCurrent</a></span>()</div>
      +<div class="block">Tests <a href="../../../../apidocs/javax/measure/spi/ServiceProvider.html#current()" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider.current()</code></a> and <a href="../../../../apidocs/javax/measure/spi/ServiceProvider.html#setCurrent(javax.measure.spi.ServiceProvider)" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider.setCurrent(ServiceProvider)</code></a>. The getter and setter are tested in a single
      + method for avoiding issues with the order in which JUnit executes tests.</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testPriority()">
      +<h3>testPriority</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/spi/ServiceProviderTest.html#line-80">testPriority</a></span>()</div>
      +<div class="block">Tests <a href="../../../../apidocs/javax/measure/spi/ServiceProvider.html#getPriority()" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider.getPriority()</code></a>.</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testOfNull()">
      +<h3>testOfNull</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/spi/ServiceProviderTest.html#line-88">testOfNull</a></span>()</div>
      +<div class="block">Tests ServiceProvider#of() by passing null.</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testOfNonExistent()">
      +<h3>testOfNonExistent</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/spi/ServiceProviderTest.html#line-99">testOfNonExistent</a></span>()</div>
      +<div class="block">Tests ServiceProvider#of() by passing a non-existing name.</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testGetMetricPrefixes()">
      +<h3>testGetMetricPrefixes</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/spi/ServiceProviderTest.html#line-107">testGetMetricPrefixes</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testGetBinaryPrefixes()">
      +<h3>testGetBinaryPrefixes</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/spi/ServiceProviderTest.html#line-116">testGetBinaryPrefixes</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testWrongPrefixType()">
      +<h3>testWrongPrefixType</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/spi/ServiceProviderTest.html#line-126">testWrongPrefixType</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testWrongEnumType()">
      +<h3>testWrongEnumType</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/spi/ServiceProviderTest.html#line-138">testWrongEnumType</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/spi/class-use/FormatServiceTest.html b/docs/site/testapidocs/javax/measure/spi/class-use/FormatServiceTest.html
      new file mode 100644
      index 00000000..218442c1
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/spi/class-use/FormatServiceTest.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.spi.FormatServiceTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.spi, class: FormatServiceTest">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../FormatServiceTest.html" title="class in javax.measure.spi">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.spi.FormatServiceTest" class="title">Uses of Class<br>javax.measure.spi.FormatServiceTest</h1>
      +</div>
      +No usage of javax.measure.spi.FormatServiceTest</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/spi/class-use/ServiceProviderTest.html b/docs/site/testapidocs/javax/measure/spi/class-use/ServiceProviderTest.html
      new file mode 100644
      index 00000000..a4be4e20
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/spi/class-use/ServiceProviderTest.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.spi.ServiceProviderTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.spi, class: ServiceProviderTest">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../ServiceProviderTest.html" title="class in javax.measure.spi">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.spi.ServiceProviderTest" class="title">Uses of Class<br>javax.measure.spi.ServiceProviderTest</h1>
      +</div>
      +No usage of javax.measure.spi.ServiceProviderTest</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/spi/package-summary.html b/docs/site/testapidocs/javax/measure/spi/package-summary.html
      new file mode 100644
      index 00000000..aaed09ef
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/spi/package-summary.html
      @@ -0,0 +1,94 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>javax.measure.spi (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.spi">
      +<meta name="generator" content="javadoc/PackageWriterImpl">
      +<meta name="keywords" content="javax.measure.spi package">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-declaration-page">
      +<script type="text/javascript">var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li class="nav-bar-cell1-rev">Package</li>
      +<li>Class</li>
      +<li><a href="package-use.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#package">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Package:&nbsp;</li>
      +<li>Description&nbsp;|&nbsp;</li>
      +<li>Related Packages&nbsp;|&nbsp;</li>
      +<li><a href="#class-summary">Classes and Interfaces</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Package javax.measure.spi" class="title">Package javax.measure.spi</h1>
      +</div>
      +<hr>
      +<div class="package-signature">package <span class="element-name">javax.measure.spi</span></div>
      +<section class="summary">
      +<ul class="summary-list">
      +<li>
      +<div id="class-summary">
      +<div class="caption"><span>Classes</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="FormatServiceTest.html" title="class in javax.measure.spi">FormatServiceTest</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">
      +<div class="block">Tests for <a href="../../../../apidocs/javax/measure/spi/FormatService.html" title="class or interface in javax.measure.spi" class="external-link"><code>FormatService</code></a>.</div>
      +</div>
      +<div class="col-first odd-row-color class-summary class-summary-tab2"><a href="ServiceProviderTest.html" title="class in javax.measure.spi">ServiceProviderTest</a></div>
      +<div class="col-last odd-row-color class-summary class-summary-tab2">
      +<div class="block">Tests for <a href="../../../../apidocs/javax/measure/spi/ServiceProvider.html" title="class or interface in javax.measure.spi" class="external-link"><code>ServiceProvider</code></a>.</div>
      +</div>
      +</div>
      +</div>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/spi/package-tree.html b/docs/site/testapidocs/javax/measure/spi/package-tree.html
      new file mode 100644
      index 00000000..9c182a2e
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/spi/package-tree.html
      @@ -0,0 +1,77 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>javax.measure.spi Class Hierarchy (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="tree: package: javax.measure.spi">
      +<meta name="generator" content="javadoc/PackageTreeWriter">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-tree-page">
      +<script type="text/javascript">var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li>Class</li>
      +<li>Use</li>
      +<li class="nav-bar-cell1-rev">Tree</li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#tree">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 class="title">Hierarchy For Package javax.measure.spi</h1>
      +<span class="package-hierarchy-label">Package Hierarchies:</span>
      +<ul class="horizontal">
      +<li><a href="../../../overview-tree.html">All Packages</a></li>
      +</ul>
      +</div>
      +<section class="hierarchy">
      +<h2 title="Class Hierarchy">Class Hierarchy</h2>
      +<ul>
      +<li class="circle"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" class="type-name-link external-link" title="class or interface in java.lang">Object</a>
      +<ul>
      +<li class="circle"><a href="FormatServiceTest.html" class="type-name-link" title="class in javax.measure.spi">FormatServiceTest</a></li>
      +<li class="circle"><a href="ServiceProviderTest.html" class="type-name-link" title="class in javax.measure.spi">ServiceProviderTest</a></li>
      +</ul>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/spi/package-use.html b/docs/site/testapidocs/javax/measure/spi/package-use.html
      new file mode 100644
      index 00000000..2ae22ae4
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/spi/package-use.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Package javax.measure.spi (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.spi">
      +<meta name="generator" content="javadoc/PackageUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li>Class</li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Package javax.measure.spi" class="title">Uses of Package<br>javax.measure.spi</h1>
      +</div>
      +No usage of javax.measure.spi</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/BinaryPrefixTest.html b/docs/site/testapidocs/javax/measure/test/BinaryPrefixTest.html
      new file mode 100644
      index 00000000..57d48f87
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/BinaryPrefixTest.html
      @@ -0,0 +1,243 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>BinaryPrefixTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test, class: BinaryPrefixTest">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.BinaryPrefixTest class">
      +<meta name="keywords" content="testKibi()">
      +<meta name="keywords" content="testMebi()">
      +<meta name="keywords" content="testExbi()">
      +<meta name="keywords" content="testGibi()">
      +<meta name="keywords" content="testTebi()">
      +<meta name="keywords" content="testPebi()">
      +<meta name="keywords" content="testYobi()">
      +<meta name="keywords" content="testZebi()">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/BinaryPrefixTest.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test</a></div>
      +<h1 title="Class BinaryPrefixTest" class="title">Class BinaryPrefixTest</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">BinaryPrefixTest</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../src-html/javax/measure/test/BinaryPrefixTest.html#line-56">BinaryPrefixTest</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">BinaryPrefixTest</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testExbi()" class="member-name-link">testExbi</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testGibi()" class="member-name-link">testGibi</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testKibi()" class="member-name-link">testKibi</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMebi()" class="member-name-link">testMebi</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testPebi()" class="member-name-link">testPebi</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testTebi()" class="member-name-link">testTebi</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testYobi()" class="member-name-link">testYobi</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testZebi()" class="member-name-link">testZebi</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>BinaryPrefixTest</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/BinaryPrefixTest.html#line-56">BinaryPrefixTest</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="testKibi()">
      +<h3>testKibi</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/BinaryPrefixTest.html#line-57">testKibi</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMebi()">
      +<h3>testMebi</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/BinaryPrefixTest.html#line-72">testMebi</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testExbi()">
      +<h3>testExbi</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/BinaryPrefixTest.html#line-81">testExbi</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testGibi()">
      +<h3>testGibi</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/BinaryPrefixTest.html#line-91">testGibi</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testTebi()">
      +<h3>testTebi</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/BinaryPrefixTest.html#line-99">testTebi</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testPebi()">
      +<h3>testPebi</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/BinaryPrefixTest.html#line-107">testPebi</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testYobi()">
      +<h3>testYobi</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/BinaryPrefixTest.html#line-115">testYobi</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testZebi()">
      +<h3>testZebi</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/BinaryPrefixTest.html#line-123">testZebi</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/CalcTripLength.html b/docs/site/testapidocs/javax/measure/test/CalcTripLength.html
      new file mode 100644
      index 00000000..4feba8fb
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/CalcTripLength.html
      @@ -0,0 +1,169 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>CalcTripLength (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test, class: CalcTripLength">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.CalcTripLength class">
      +<meta name="keywords" content="main()">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/CalcTripLength.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test</a></div>
      +<h1 title="Class CalcTripLength" class="title">Class CalcTripLength</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">CalcTripLength</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../src-html/javax/measure/test/CalcTripLength.html#line-40">CalcTripLength</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +<dl class="notes">
      +<dt>Author:</dt>
      +<dd>paul.morrison</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">CalcTripLength</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab1" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab1', 3)" class="table-tab">Static Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code>static void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code><a href="#main(java.lang.String%5B%5D)" class="member-name-link">main</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]&nbsp;argv)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>CalcTripLength</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/CalcTripLength.html#line-40">CalcTripLength</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="main(java.lang.String[])">
      +<h3>main</h3>
      +<div class="member-signature"><span class="modifiers">public static</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/CalcTripLength.html#line-42">main</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]&nbsp;argv)</span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/CircleInfo.html b/docs/site/testapidocs/javax/measure/test/CircleInfo.html
      new file mode 100644
      index 00000000..41494b72
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/CircleInfo.html
      @@ -0,0 +1,165 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>CircleInfo (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test, class: CircleInfo">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.CircleInfo class">
      +<meta name="keywords" content="main()">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/CircleInfo.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test</a></div>
      +<h1 title="Class CircleInfo" class="title">Class CircleInfo</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">CircleInfo</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../src-html/javax/measure/test/CircleInfo.html#line-36">CircleInfo</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">CircleInfo</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab1" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab1', 3)" class="table-tab">Static Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code>static void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code><a href="#main(java.lang.String%5B%5D)" class="member-name-link">main</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]&nbsp;args)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>CircleInfo</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/CircleInfo.html#line-36">CircleInfo</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="main(java.lang.String[])">
      +<h3>main</h3>
      +<div class="member-signature"><span class="modifiers">public static</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/CircleInfo.html#line-38">main</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]&nbsp;args)</span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/Conversions.html b/docs/site/testapidocs/javax/measure/test/Conversions.html
      new file mode 100644
      index 00000000..a47731a8
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/Conversions.html
      @@ -0,0 +1,165 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Conversions (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test, class: Conversions">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.Conversions class">
      +<meta name="keywords" content="main()">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/Conversions.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test</a></div>
      +<h1 title="Class Conversions" class="title">Class Conversions</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">Conversions</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../src-html/javax/measure/test/Conversions.html#line-35">Conversions</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">Conversions</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab1" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab1', 3)" class="table-tab">Static Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code>static void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code><a href="#main(java.lang.String%5B%5D)" class="member-name-link">main</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]&nbsp;args)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>Conversions</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/Conversions.html#line-35">Conversions</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="main(java.lang.String[])">
      +<h3>main</h3>
      +<div class="member-signature"><span class="modifiers">public static</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/Conversions.html#line-37">main</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]&nbsp;args)</span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/ConverterTest.html b/docs/site/testapidocs/javax/measure/test/ConverterTest.html
      new file mode 100644
      index 00000000..183b126b
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/ConverterTest.html
      @@ -0,0 +1,188 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>ConverterTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test, class: ConverterTest">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.ConverterTest class">
      +<meta name="keywords" content="init()">
      +<meta name="keywords" content="testIdentity()">
      +<meta name="keywords" content="testLinear()">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/ConverterTest.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test</a></div>
      +<h1 title="Class ConverterTest" class="title">Class ConverterTest</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">ConverterTest</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../src-html/javax/measure/test/ConverterTest.html#line-39">ConverterTest</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">ConverterTest</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#init()" class="member-name-link">init</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testIdentity()" class="member-name-link">testIdentity</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testLinear()" class="member-name-link">testLinear</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>ConverterTest</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ConverterTest.html#line-39">ConverterTest</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="init()">
      +<h3>init</h3>
      +<div class="member-signature"><span class="annotations">@BeforeEach
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ConverterTest.html#line-42">init</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testIdentity()">
      +<h3>testIdentity</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ConverterTest.html#line-47">testIdentity</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testLinear()">
      +<h3>testLinear</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ConverterTest.html#line-52">testLinear</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/DimensionTest.html b/docs/site/testapidocs/javax/measure/test/DimensionTest.html
      new file mode 100644
      index 00000000..2f9ec293
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/DimensionTest.html
      @@ -0,0 +1,232 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>DimensionTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test, class: DimensionTest">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.DimensionTest class">
      +<meta name="keywords" content="init()">
      +<meta name="keywords" content="testGetInstance()">
      +<meta name="keywords" content="testMultiply()">
      +<meta name="keywords" content="testDivide()">
      +<meta name="keywords" content="testPow()">
      +<meta name="keywords" content="testRoot()">
      +<meta name="keywords" content="testGetProductDimensions()">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/DimensionTest.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test</a></div>
      +<h1 title="Class DimensionTest" class="title">Class DimensionTest</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">DimensionTest</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../src-html/javax/measure/test/DimensionTest.html#line-38">DimensionTest</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">DimensionTest</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#init()" class="member-name-link">init</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testDivide()" class="member-name-link">testDivide</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testGetInstance()" class="member-name-link">testGetInstance</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testGetProductDimensions()" class="member-name-link">testGetProductDimensions</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMultiply()" class="member-name-link">testMultiply</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testPow()" class="member-name-link">testPow</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testRoot()" class="member-name-link">testRoot</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>DimensionTest</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/DimensionTest.html#line-38">DimensionTest</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="init()">
      +<h3>init</h3>
      +<div class="member-signature"><span class="annotations">@BeforeEach
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/DimensionTest.html#line-41">init</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testGetInstance()">
      +<h3>testGetInstance</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/DimensionTest.html#line-46">testGetInstance</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMultiply()">
      +<h3>testMultiply</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/DimensionTest.html#line-52">testMultiply</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testDivide()">
      +<h3>testDivide</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/DimensionTest.html#line-59">testDivide</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testPow()">
      +<h3>testPow</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/DimensionTest.html#line-66">testPow</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testRoot()">
      +<h3>testRoot</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/DimensionTest.html#line-72">testRoot</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testGetProductDimensions()">
      +<h3>testGetProductDimensions</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/DimensionTest.html#line-78">testGetProductDimensions</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/ExceptionsTest.html b/docs/site/testapidocs/javax/measure/test/ExceptionsTest.html
      new file mode 100644
      index 00000000..263e1109
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/ExceptionsTest.html
      @@ -0,0 +1,315 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>ExceptionsTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test, class: ExceptionsTest">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.ExceptionsTest class">
      +<meta name="keywords" content="testMeasurementException()">
      +<meta name="keywords" content="testMeasurementExceptionWithMessage()">
      +<meta name="keywords" content="testMeasurementExceptionWithCause()">
      +<meta name="keywords" content="testMeasurementExceptionWithMessageAndCause()">
      +<meta name="keywords" content="testMeasurementError()">
      +<meta name="keywords" content="testMeasurementErrorWithMessage()">
      +<meta name="keywords" content="testMeasurementErrorWithCause()">
      +<meta name="keywords" content="testMeasurementErrorWithMessageAndCause()">
      +<meta name="keywords" content="testIncommensurableException()">
      +<meta name="keywords" content="testIncommensurableExceptionWithCause()">
      +<meta name="keywords" content="testIncommensurableExceptionWithMessageAndCause()">
      +<meta name="keywords" content="testUnconvertibleException()">
      +<meta name="keywords" content="testUnconvertibleExceptionWithCause()">
      +<meta name="keywords" content="testUnconvertibleExceptionWithMessageAndCause()">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/ExceptionsTest.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test</a></div>
      +<h1 title="Class ExceptionsTest" class="title">Class ExceptionsTest</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">ExceptionsTest</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../src-html/javax/measure/test/ExceptionsTest.html#line-45">ExceptionsTest</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +<dl class="notes">
      +<dt>Version:</dt>
      +<dd>2.0</dd>
      +<dt>Author:</dt>
      +<dd><a href="mailto:werner@uom.technology">Werner Keil</a></dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">ExceptionsTest</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testIncommensurableException()" class="member-name-link">testIncommensurableException</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testIncommensurableExceptionWithCause()" class="member-name-link">testIncommensurableExceptionWithCause</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testIncommensurableExceptionWithMessageAndCause()" class="member-name-link">testIncommensurableExceptionWithMessageAndCause</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMeasurementError()" class="member-name-link">testMeasurementError</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMeasurementErrorWithCause()" class="member-name-link">testMeasurementErrorWithCause</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMeasurementErrorWithMessage()" class="member-name-link">testMeasurementErrorWithMessage</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMeasurementErrorWithMessageAndCause()" class="member-name-link">testMeasurementErrorWithMessageAndCause</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMeasurementException()" class="member-name-link">testMeasurementException</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMeasurementExceptionWithCause()" class="member-name-link">testMeasurementExceptionWithCause</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMeasurementExceptionWithMessage()" class="member-name-link">testMeasurementExceptionWithMessage</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMeasurementExceptionWithMessageAndCause()" class="member-name-link">testMeasurementExceptionWithMessageAndCause</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testUnconvertibleException()" class="member-name-link">testUnconvertibleException</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testUnconvertibleExceptionWithCause()" class="member-name-link">testUnconvertibleExceptionWithCause</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testUnconvertibleExceptionWithMessageAndCause()" class="member-name-link">testUnconvertibleExceptionWithMessageAndCause</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>ExceptionsTest</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ExceptionsTest.html#line-45">ExceptionsTest</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="testMeasurementException()">
      +<h3>testMeasurementException</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ExceptionsTest.html#line-54">testMeasurementException</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMeasurementExceptionWithMessage()">
      +<h3>testMeasurementExceptionWithMessage</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ExceptionsTest.html#line-63">testMeasurementExceptionWithMessage</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMeasurementExceptionWithCause()">
      +<h3>testMeasurementExceptionWithCause</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ExceptionsTest.html#line-73">testMeasurementExceptionWithCause</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMeasurementExceptionWithMessageAndCause()">
      +<h3>testMeasurementExceptionWithMessageAndCause</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ExceptionsTest.html#line-80">testMeasurementExceptionWithMessageAndCause</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMeasurementError()">
      +<h3>testMeasurementError</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ExceptionsTest.html#line-90">testMeasurementError</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMeasurementErrorWithMessage()">
      +<h3>testMeasurementErrorWithMessage</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ExceptionsTest.html#line-100">testMeasurementErrorWithMessage</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMeasurementErrorWithCause()">
      +<h3>testMeasurementErrorWithCause</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ExceptionsTest.html#line-110">testMeasurementErrorWithCause</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMeasurementErrorWithMessageAndCause()">
      +<h3>testMeasurementErrorWithMessageAndCause</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ExceptionsTest.html#line-122">testMeasurementErrorWithMessageAndCause</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testIncommensurableException()">
      +<h3>testIncommensurableException</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ExceptionsTest.html#line-133">testIncommensurableException</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testIncommensurableExceptionWithCause()">
      +<h3>testIncommensurableExceptionWithCause</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ExceptionsTest.html#line-140">testIncommensurableExceptionWithCause</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testIncommensurableExceptionWithMessageAndCause()">
      +<h3>testIncommensurableExceptionWithMessageAndCause</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ExceptionsTest.html#line-147">testIncommensurableExceptionWithMessageAndCause</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testUnconvertibleException()">
      +<h3>testUnconvertibleException</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ExceptionsTest.html#line-155">testUnconvertibleException</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testUnconvertibleExceptionWithCause()">
      +<h3>testUnconvertibleExceptionWithCause</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ExceptionsTest.html#line-164">testUnconvertibleExceptionWithCause</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testUnconvertibleExceptionWithMessageAndCause()">
      +<h3>testUnconvertibleExceptionWithMessageAndCause</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/ExceptionsTest.html#line-174">testUnconvertibleExceptionWithMessageAndCause</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/MetricPrefixTest.html b/docs/site/testapidocs/javax/measure/test/MetricPrefixTest.html
      new file mode 100644
      index 00000000..10ad0520
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/MetricPrefixTest.html
      @@ -0,0 +1,439 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>MetricPrefixTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test, class: MetricPrefixTest">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.MetricPrefixTest class">
      +<meta name="keywords" content="testAtto()">
      +<meta name="keywords" content="testCenti()">
      +<meta name="keywords" content="testDeci()">
      +<meta name="keywords" content="testDeca()">
      +<meta name="keywords" content="testDeka()">
      +<meta name="keywords" content="testExa()">
      +<meta name="keywords" content="testFemto()">
      +<meta name="keywords" content="testGiga()">
      +<meta name="keywords" content="testHecto()">
      +<meta name="keywords" content="testKilo()">
      +<meta name="keywords" content="testMega()">
      +<meta name="keywords" content="testMilli()">
      +<meta name="keywords" content="testMicro()">
      +<meta name="keywords" content="testNano()">
      +<meta name="keywords" content="testPeta()">
      +<meta name="keywords" content="testPico()">
      +<meta name="keywords" content="testTera()">
      +<meta name="keywords" content="testYocto()">
      +<meta name="keywords" content="testYotta()">
      +<meta name="keywords" content="testZepto()">
      +<meta name="keywords" content="testZetta()">
      +<meta name="keywords" content="testRonna()">
      +<meta name="keywords" content="testRonto()">
      +<meta name="keywords" content="testQuetta()">
      +<meta name="keywords" content="testQuecto()">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/MetricPrefixTest.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test</a></div>
      +<h1 title="Class MetricPrefixTest" class="title">Class MetricPrefixTest</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">MetricPrefixTest</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-64">MetricPrefixTest</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +<div class="block">JUnit tests for the 24 prefixes used in the metric system (decimal multiples and submultiples of units).</div>
      +<dl class="notes">
      +<dt>Since:</dt>
      +<dd>2.0</dd>
      +<dt>Version:</dt>
      +<dd>2.2, May 9, 2023</dd>
      +<dt>Author:</dt>
      +<dd><a href="mailto:werner@units.tech">Werner Keil</a></dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">MetricPrefixTest</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testAtto()" class="member-name-link">testAtto</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testCenti()" class="member-name-link">testCenti</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testDeca()" class="member-name-link">testDeca</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testDeci()" class="member-name-link">testDeci</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testDeka()" class="member-name-link">testDeka</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testExa()" class="member-name-link">testExa</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testFemto()" class="member-name-link">testFemto</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testGiga()" class="member-name-link">testGiga</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testHecto()" class="member-name-link">testHecto</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testKilo()" class="member-name-link">testKilo</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMega()" class="member-name-link">testMega</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMicro()" class="member-name-link">testMicro</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMilli()" class="member-name-link">testMilli</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testNano()" class="member-name-link">testNano</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testPeta()" class="member-name-link">testPeta</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testPico()" class="member-name-link">testPico</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testQuecto()" class="member-name-link">testQuecto</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testQuetta()" class="member-name-link">testQuetta</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testRonna()" class="member-name-link">testRonna</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testRonto()" class="member-name-link">testRonto</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testTera()" class="member-name-link">testTera</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testYocto()" class="member-name-link">testYocto</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testYotta()" class="member-name-link">testYotta</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testZepto()" class="member-name-link">testZepto</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testZetta()" class="member-name-link">testZetta</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>MetricPrefixTest</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-64">MetricPrefixTest</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="testAtto()">
      +<h3>testAtto</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-65">testAtto</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testCenti()">
      +<h3>testCenti</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-73">testCenti</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testDeci()">
      +<h3>testDeci</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-81">testDeci</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testDeca()">
      +<h3>testDeca</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-91">testDeca</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testDeka()">
      +<h3>testDeka</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-98">testDeka</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testExa()">
      +<h3>testExa</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-105">testExa</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testFemto()">
      +<h3>testFemto</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-112">testFemto</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testGiga()">
      +<h3>testGiga</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-119">testGiga</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testHecto()">
      +<h3>testHecto</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-126">testHecto</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testKilo()">
      +<h3>testKilo</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-133">testKilo</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMega()">
      +<h3>testMega</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-147">testMega</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMilli()">
      +<h3>testMilli</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-154">testMilli</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMicro()">
      +<h3>testMicro</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-161">testMicro</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testNano()">
      +<h3>testNano</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-173">testNano</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testPeta()">
      +<h3>testPeta</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-183">testPeta</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testPico()">
      +<h3>testPico</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-191">testPico</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testTera()">
      +<h3>testTera</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-199">testTera</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testYocto()">
      +<h3>testYocto</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-207">testYocto</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testYotta()">
      +<h3>testYotta</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-215">testYotta</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testZepto()">
      +<h3>testZepto</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-223">testZepto</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testZetta()">
      +<h3>testZetta</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-231">testZetta</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testRonna()">
      +<h3>testRonna</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-239">testRonna</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testRonto()">
      +<h3>testRonto</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-247">testRonto</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testQuetta()">
      +<h3>testQuetta</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-255">testQuetta</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testQuecto()">
      +<h3>testQuecto</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/MetricPrefixTest.html#line-263">testQuecto</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/TestConverter.Pair.html b/docs/site/testapidocs/javax/measure/test/TestConverter.Pair.html
      new file mode 100644
      index 00000000..0c171d72
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/TestConverter.Pair.html
      @@ -0,0 +1,321 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>TestConverter.Pair (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test, class: TestConverter, class: Pair">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.TestConverter.Pair class">
      +<meta name="keywords" content="isLinear()">
      +<meta name="keywords" content="isIdentity()">
      +<meta name="keywords" content="getConversionSteps()">
      +<meta name="keywords" content="inverse()">
      +<meta name="keywords" content="convert()">
      +<meta name="keywords" content="equals()">
      +<meta name="keywords" content="hashCode()">
      +<meta name="keywords" content="getLeft()">
      +<meta name="keywords" content="getRight()">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/TestConverter.Pair.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li><a href="#nested-class-summary">Nested</a>&nbsp;|&nbsp;</li>
      +<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test</a></div>
      +<h1 title="Class TestConverter.Pair" class="title">Class TestConverter.Pair</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance"><a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a>
      +<div class="inheritance">Pair</div>
      +</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></dd>
      +</dl>
      +<dl class="notes">
      +<dt>Enclosing class:</dt>
      +<dd><a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public static final class </span><span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.html#line-152">TestConverter.Pair</a></span>
      +<span class="extends-implements">extends <a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a></span></div>
      +<div class="block">This class represents converters made up of two or more separate converters (in matrix notation <code>[pair] = [left] x [right]</code>).</div>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== NESTED CLASS SUMMARY ======== -->
      +<li>
      +<section class="nested-class-summary" id="nested-class-summary">
      +<h2>Nested Class Summary</h2>
      +<div class="inherited-list">
      +<h2 id="nested-classes-inherited-from-class-javax.measure.test.TestConverter">Nested classes/interfaces inherited from class&nbsp;<a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a></h2>
      +<code><a href="TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></code></div>
      +</section>
      +</li>
      +<!-- =========== FIELD SUMMARY =========== -->
      +<li>
      +<section class="field-summary" id="field-summary">
      +<h2>Field Summary</h2>
      +<div class="inherited-list">
      +<h3 id="fields-inherited-from-class-TestConverter">Fields inherited from class&nbsp;<a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a></h3>
      +<code><a href="TestConverter.html#IDENTITY">IDENTITY</a></code></div>
      +</section>
      +</li>
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(javax.measure.UnitConverter,javax.measure.UnitConverter)" class="member-name-link">Pair</a><wbr>(<a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&nbsp;left,
      + <a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&nbsp;right)</code></div>
      +<div class="col-last even-row-color">
      +<div class="block">Creates a compound converter resulting from the combined transformation of the specified converters.</div>
      +</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>double</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#convert(double)" class="member-name-link">convert</a><wbr>(double&nbsp;value)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#equals(java.lang.Object)" class="member-name-link">equals</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>&nbsp;cvtr)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" class="external-link">List</a>&lt;<a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getConversionSteps()" class="member-name-link">getConversionSteps</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getLeft()" class="member-name-link">getLeft</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getRight()" class="member-name-link">getRight</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>int</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#hashCode()" class="member-name-link">hashCode</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#inverse()" class="member-name-link">inverse</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#isIdentity()" class="member-name-link">isIdentity</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#isLinear()" class="member-name-link">isLinear</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-TestConverter">Methods inherited from class&nbsp;<a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a></h3>
      +<code><a href="TestConverter.html#concatenate(javax.measure.test.TestConverter)">concatenate</a>, <a href="TestConverter.html#concatenate(javax.measure.UnitConverter)">concatenate</a>, <a href="TestConverter.html#convert(java.lang.Number)">convert</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;(javax.measure.UnitConverter,javax.measure.UnitConverter)">
      +<h3>Pair</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.Pair.html#line-174">Pair</a></span><wbr><span class="parameters">(<a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&nbsp;left,
      + <a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&nbsp;right)</span></div>
      +<div class="block">Creates a compound converter resulting from the combined transformation of the specified converters.</div>
      +<dl class="notes">
      +<dt>Parameters:</dt>
      +<dd><code>left</code> - the left converter.</dd>
      +<dd><code>right</code> - the right converter.</dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html" title="class or interface in java.lang" class="external-link">IllegalArgumentException</a></code> - if either the left or right converter are <code>null</code></dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="isLinear()">
      +<h3>isLinear</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.Pair.html#line-179">isLinear</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="isIdentity()">
      +<h3>isIdentity</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.Pair.html#line-183">isIdentity</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/UnitConverter.html#isIdentity()" title="class or interface in javax.measure" class="external-link">isIdentity</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="TestConverter.html#isIdentity()">isIdentity</a></code>&nbsp;in class&nbsp;<code><a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getConversionSteps()">
      +<h3>getConversionSteps</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" class="external-link">List</a>&lt;<a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.Pair.html#line-188">getConversionSteps</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/UnitConverter.html#getConversionSteps()" title="class or interface in javax.measure" class="external-link">getConversionSteps</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="TestConverter.html#getConversionSteps()">getConversionSteps</a></code>&nbsp;in class&nbsp;<code><a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="inverse()">
      +<h3>inverse</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.Pair.html#line-198">inverse</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/UnitConverter.html#inverse()" title="class or interface in javax.measure" class="external-link">inverse</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></dd>
      +<dt>Specified by:</dt>
      +<dd><code><a href="TestConverter.html#inverse()">inverse</a></code>&nbsp;in class&nbsp;<code><a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="convert(double)">
      +<h3>convert</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">double</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.Pair.html#line-203">convert</a></span><wbr><span class="parameters">(double&nbsp;value)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/UnitConverter.html#convert(double)" title="class or interface in javax.measure" class="external-link">convert</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></dd>
      +<dt>Specified by:</dt>
      +<dd><code><a href="TestConverter.html#convert(double)">convert</a></code>&nbsp;in class&nbsp;<code><a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="equals(java.lang.Object)">
      +<h3>equals</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.Pair.html#line-208">equals</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>&nbsp;cvtr)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="TestConverter.html#equals(java.lang.Object)">equals</a></code>&nbsp;in class&nbsp;<code><a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="hashCode()">
      +<h3>hashCode</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">int</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.Pair.html#line-218">hashCode</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="TestConverter.html#hashCode()">hashCode</a></code>&nbsp;in class&nbsp;<code><a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getLeft()">
      +<h3>getLeft</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.Pair.html#line-223">getLeft</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getRight()">
      +<h3>getRight</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.Pair.html#line-227">getRight</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/TestConverter.html b/docs/site/testapidocs/javax/measure/test/TestConverter.html
      new file mode 100644
      index 00000000..c2586d41
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/TestConverter.html
      @@ -0,0 +1,363 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>TestConverter (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test, class: TestConverter">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.TestConverter class">
      +<meta name="keywords" content="IDENTITY">
      +<meta name="keywords" content="concatenate()">
      +<meta name="keywords" content="isIdentity()">
      +<meta name="keywords" content="equals()">
      +<meta name="keywords" content="hashCode()">
      +<meta name="keywords" content="inverse()">
      +<meta name="keywords" content="getConversionSteps()">
      +<meta name="keywords" content="convert()">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/TestConverter.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li><a href="#nested-class-summary">Nested</a>&nbsp;|&nbsp;</li>
      +<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li><a href="#field-detail">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test</a></div>
      +<h1 title="Class TestConverter" class="title">Class TestConverter</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">TestConverter</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></dd>
      +</dl>
      +<dl class="notes">
      +<dt>Direct Known Subclasses:</dt>
      +<dd><code><a href="function/MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></code>, <code><a href="TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></code></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public abstract class </span><span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.html#line-45">TestConverter</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +implements <a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></span></div>
      +<div class="block"><p>
      + Test class for our <a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link"><code>UnitConverter</code></a> implementations.
      + </p></div>
      +<dl class="notes">
      +<dt>Version:</dt>
      +<dd>0.8.1, $Date: 2016-02-11 $</dd>
      +<dt>Author:</dt>
      +<dd><a href="mailto:werner@uom.technology">Werner Keil</a></dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== NESTED CLASS SUMMARY ======== -->
      +<li>
      +<section class="nested-class-summary" id="nested-class-summary">
      +<h2>Nested Class Summary</h2>
      +<div class="caption"><span>Nested Classes</span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final class&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="TestConverter.Pair.html" class="type-name-link" title="class in javax.measure.test">TestConverter.Pair</a></code></div>
      +<div class="col-last even-row-color">
      +<div class="block">This class represents converters made up of two or more separate converters (in matrix notation <code>[pair] = [left] x [right]</code>).</div>
      +</div>
      +</div>
      +</section>
      +</li>
      +<!-- =========== FIELD SUMMARY =========== -->
      +<li>
      +<section class="field-summary" id="field-summary">
      +<h2>Field Summary</h2>
      +<div class="caption"><span>Fields</span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final <a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#IDENTITY" class="member-name-link">IDENTITY</a></code></div>
      +<div class="col-last even-row-color">
      +<div class="block">Holds identity converter.</div>
      +</div>
      +</div>
      +</section>
      +</li>
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier</div>
      +<div class="table-header col-second">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>protected </code></div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">TestConverter</a>()</code></div>
      +<div class="col-last even-row-color">
      +<div class="block">Default constructor.</div>
      +</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab3" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab3', 3)" class="table-tab">Abstract Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#concatenate(javax.measure.test.TestConverter)" class="member-name-link">concatenate</a><wbr>(<a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a>&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Concatenates this physics converter with another unit converter.</div>
      +</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#concatenate(javax.measure.UnitConverter)" class="member-name-link">concatenate</a><wbr>(<a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&nbsp;converter)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab3"><code>abstract double</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab3"><code><a href="#convert(double)" class="member-name-link">convert</a><wbr>(double&nbsp;value)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab3">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#convert(java.lang.Number)" class="member-name-link">convert</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;value)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab3"><code>abstract boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab3"><code><a href="#equals(java.lang.Object)" class="member-name-link">equals</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>&nbsp;cvtr)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab3">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" class="external-link">List</a>&lt;? extends <a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getConversionSteps()" class="member-name-link">getConversionSteps</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab3"><code>abstract int</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab3"><code><a href="#hashCode()" class="member-name-link">hashCode</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab3">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab3"><code>abstract <a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab3"><code><a href="#inverse()" class="member-name-link">inverse</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab3">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#isIdentity()" class="member-name-link">isIdentity</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-UnitConverter">Methods inherited from interface&nbsp;<a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></h3>
      +<code><a href="../../../../apidocs/javax/measure/UnitConverter.html#isLinear()" title="class or interface in javax.measure" class="external-link">isLinear</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ============ FIELD DETAIL =========== -->
      +<li>
      +<section class="field-details" id="field-detail">
      +<h2>Field Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="IDENTITY">
      +<h3>IDENTITY</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.html#line-50">IDENTITY</a></span></div>
      +<div class="block">Holds identity converter.</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>TestConverter</h3>
      +<div class="member-signature"><span class="modifiers">protected</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.html#line-55">TestConverter</a></span>()</div>
      +<div class="block">Default constructor.</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="concatenate(javax.measure.test.TestConverter)">
      +<h3>concatenate</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.html#line-66">concatenate</a></span><wbr><span class="parameters">(<a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a>&nbsp;that)</span></div>
      +<div class="block">Concatenates this physics converter with another unit converter. The resulting converter is equivalent to first converting by the specified
      + converter (right converter), and then converting by this converter (left converter).</div>
      +<dl class="notes">
      +<dt>Parameters:</dt>
      +<dd><code>that</code> - the other converter.</dd>
      +<dt>Returns:</dt>
      +<dd>the concatenation of this converter with that converter.</dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="isIdentity()">
      +<h3>isIdentity</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.html#line-70">isIdentity</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/UnitConverter.html#isIdentity()" title="class or interface in javax.measure" class="external-link">isIdentity</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="equals(java.lang.Object)">
      +<h3>equals</h3>
      +<div class="member-signature"><span class="modifiers">public abstract</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.html#line-74">equals</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>&nbsp;cvtr)</span></div>
      +<dl class="notes">
      +<dt>Overrides:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="hashCode()">
      +<h3>hashCode</h3>
      +<div class="member-signature"><span class="modifiers">public abstract</span>&nbsp;<span class="return-type">int</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.html#line-77">hashCode</a></span>()</div>
      +<dl class="notes">
      +<dt>Overrides:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="inverse()">
      +<h3>inverse</h3>
      +<div class="member-signature"><span class="modifiers">public abstract</span>&nbsp;<span class="return-type"><a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.html#line-80">inverse</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/UnitConverter.html#inverse()" title="class or interface in javax.measure" class="external-link">inverse</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="concatenate(javax.measure.UnitConverter)">
      +<h3>concatenate</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.html#line-83">concatenate</a></span><wbr><span class="parameters">(<a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&nbsp;converter)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/UnitConverter.html#concatenate(javax.measure.UnitConverter)" title="class or interface in javax.measure" class="external-link">concatenate</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getConversionSteps()">
      +<h3>getConversionSteps</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" class="external-link">List</a>&lt;? extends <a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.html#line-88">getConversionSteps</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/UnitConverter.html#getConversionSteps()" title="class or interface in javax.measure" class="external-link">getConversionSteps</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="convert(java.lang.Number)">
      +<h3>convert</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.html#line-99">convert</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;value)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/UnitConverter.html#convert(java.lang.Number)" title="class or interface in javax.measure" class="external-link">convert</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html" title="class or interface in java.lang" class="external-link">IllegalArgumentException</a></code> - if the value is <code>null</code>.</dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="convert(double)">
      +<h3>convert</h3>
      +<div class="member-signature"><span class="modifiers">public abstract</span>&nbsp;<span class="return-type">double</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestConverter.html#line-107">convert</a></span><wbr><span class="parameters">(double&nbsp;value)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/UnitConverter.html#convert(double)" title="class or interface in javax.measure" class="external-link">convert</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/TestUnit.html b/docs/site/testapidocs/javax/measure/test/TestUnit.html
      new file mode 100644
      index 00000000..34ed895d
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/TestUnit.html
      @@ -0,0 +1,644 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>TestUnit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test, class: TestUnit">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.TestUnit class">
      +<meta name="keywords" content="ONE">
      +<meta name="keywords" content="symbol">
      +<meta name="keywords" content="name">
      +<meta name="keywords" content="multFactor">
      +<meta name="keywords" content="shift()">
      +<meta name="keywords" content="alternate()">
      +<meta name="keywords" content="asType()">
      +<meta name="keywords" content="divide()">
      +<meta name="keywords" content="getConverterTo()">
      +<meta name="keywords" content="getConverterToAny()">
      +<meta name="keywords" content="getDimension()">
      +<meta name="keywords" content="getName()">
      +<meta name="keywords" content="getBaseUnits()">
      +<meta name="keywords" content="getSymbol()">
      +<meta name="keywords" content="inverse()">
      +<meta name="keywords" content="isCompatible()">
      +<meta name="keywords" content="isEquivalentTo()">
      +<meta name="keywords" content="multiply()">
      +<meta name="keywords" content="pow()">
      +<meta name="keywords" content="root()">
      +<meta name="keywords" content="getSystemUnit()">
      +<meta name="keywords" content="getSystemConverter()">
      +<meta name="keywords" content="transform()">
      +<meta name="keywords" content="prefix()">
      +<meta name="keywords" content="getMultFactor()">
      +<meta name="keywords" content="toString()">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/TestUnit.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li><a href="#field-detail">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test</a></div>
      +<h1 title="Class TestUnit" class="title">Class TestUnit&lt;Q extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;&gt;</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">TestUnit&lt;Q&gt;</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;Q&gt;</code></dd>
      +</dl>
      +<dl class="notes">
      +<dt>Direct Known Subclasses:</dt>
      +<dd><code><a href="unit/AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></code>, <code><a href="unit/BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a></code>, <code><a href="unit/SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></code>, <code><a href="unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></code>, <code><a href="unit/VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></code></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public abstract class </span><span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-51">TestUnit</a>&lt;Q extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;&gt;</span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +implements <a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;Q&gt;</span></div>
      +<dl class="notes">
      +<dt>Author:</dt>
      +<dd>Werner Keil</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- =========== FIELD SUMMARY =========== -->
      +<li>
      +<section class="field-summary" id="field-summary">
      +<h2>Field Summary</h2>
      +<div class="caption"><span>Fields</span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>protected <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html" title="class or interface in java.math" class="external-link">BigDecimal</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#multFactor" class="member-name-link">multFactor</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>protected final <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second odd-row-color"><code><a href="#name" class="member-name-link">name</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../apidocs/javax/measure/quantity/Dimensionless.html" title="class or interface in javax.measure.quantity" class="external-link">Dimensionless</a>&gt;</code></div>
      +<div class="col-second even-row-color"><code><a href="#ONE" class="member-name-link">ONE</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>protected <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second odd-row-color"><code><a href="#symbol" class="member-name-link">symbol</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier</div>
      +<div class="table-header col-second">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>protected </code></div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">TestUnit</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>protected </code></div>
      +<div class="col-constructor-name odd-row-color"><code><a href="#%3Cinit%3E(java.lang.String)" class="member-name-link">TestUnit</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>protected </code></div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String,double)" class="member-name-link">TestUnit</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name,
      + double&nbsp;factor)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab3" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab3', 3)" class="table-tab">Abstract Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#alternate(java.lang.String)" class="member-name-link">alternate</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;symbol)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>&lt;T extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;&gt;<br><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;T&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#asType(java.lang.Class)" class="member-name-link">asType</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;T&gt;&nbsp;type)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(double)" class="member-name-link">divide</a><wbr>(double&nbsp;divisor)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(java.lang.Number)" class="member-name-link">divide</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;divisor)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(javax.measure.Unit)" class="member-name-link">divide</a><wbr>(<a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" class="external-link">Map</a>&lt;<a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;,<wbr><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Integer.html" title="class or interface in java.lang" class="external-link">Integer</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getBaseUnits()" class="member-name-link">getBaseUnits</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getConverterTo(javax.measure.Unit)" class="member-name-link">getConverterTo</a><wbr>(<a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getConverterToAny(javax.measure.Unit)" class="member-name-link">getConverterToAny</a><wbr>(<a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/Dimension.html" title="class or interface in javax.measure" class="external-link">Dimension</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getDimension()" class="member-name-link">getDimension</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>double</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getMultFactor()" class="member-name-link">getMultFactor</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getName()" class="member-name-link">getName</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getSymbol()" class="member-name-link">getSymbol</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getSystemConverter()" class="member-name-link">getSystemConverter</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Returns the converter from this unit to its unscaled <a href="#getSystemUnit()"><code>System Unit</code></a> unit.</div>
      +</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab3"><code>abstract <a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab3"><code><a href="#getSystemUnit()" class="member-name-link">getSystemUnit</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab3">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#inverse()" class="member-name-link">inverse</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#isCompatible(javax.measure.Unit)" class="member-name-link">isCompatible</a><wbr>(<a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#isEquivalentTo(javax.measure.Unit)" class="member-name-link">isEquivalentTo</a><wbr>(<a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(double)" class="member-name-link">multiply</a><wbr>(double&nbsp;factor)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(java.lang.Number)" class="member-name-link">multiply</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;multiplier)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(javax.measure.Unit)" class="member-name-link">multiply</a><wbr>(<a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#pow(int)" class="member-name-link">pow</a><wbr>(int&nbsp;n)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#prefix(javax.measure.Prefix)" class="member-name-link">prefix</a><wbr>(<a href="../../../../apidocs/javax/measure/Prefix.html" title="class or interface in javax.measure" class="external-link">Prefix</a>&nbsp;prefix)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#root(int)" class="member-name-link">root</a><wbr>(int&nbsp;n)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#shift(double)" class="member-name-link">shift</a><wbr>(double&nbsp;offset)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#shift(java.lang.Number)" class="member-name-link">shift</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;offset)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#toString()" class="member-name-link">toString</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#transform(javax.measure.UnitConverter)" class="member-name-link">transform</a><wbr>(<a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&nbsp;operation)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ============ FIELD DETAIL =========== -->
      +<li>
      +<section class="field-details" id="field-detail">
      +<h2>Field Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="ONE">
      +<h3>ONE</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../apidocs/javax/measure/quantity/Dimensionless.html" title="class or interface in javax.measure.quantity" class="external-link">Dimensionless</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-52">ONE</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="symbol">
      +<h3>symbol</h3>
      +<div class="member-signature"><span class="modifiers">protected</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-54">symbol</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="name">
      +<h3>name</h3>
      +<div class="member-signature"><span class="modifiers">protected final</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-55">name</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multFactor">
      +<h3>multFactor</h3>
      +<div class="member-signature"><span class="modifiers">protected</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html" title="class or interface in java.math" class="external-link">BigDecimal</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-56">multFactor</a></span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>TestUnit</h3>
      +<div class="member-signature"><span class="modifiers">protected</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-60">TestUnit</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.String,double)">
      +<h3>TestUnit</h3>
      +<div class="member-signature"><span class="modifiers">protected</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-64">TestUnit</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name,
      + double&nbsp;factor)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.String)">
      +<h3>TestUnit</h3>
      +<div class="member-signature"><span class="modifiers">protected</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-69">TestUnit</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name)</span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="shift(double)">
      +<h3>shift</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-73">shift</a></span><wbr><span class="parameters">(double&nbsp;offset)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#shift(double)" title="class or interface in javax.measure" class="external-link">shift</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="alternate(java.lang.String)">
      +<h3>alternate</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-77">alternate</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;symbol)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#alternate(java.lang.String)" title="class or interface in javax.measure" class="external-link">alternate</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="asType(java.lang.Class)">
      +<h3>asType</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="type-parameters">&lt;T extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;&gt;</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;T&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-82">asType</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;T&gt;&nbsp;type)</span>
      +                                       throws <span class="exceptions"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/ClassCastException.html" title="class or interface in java.lang" class="external-link">ClassCastException</a></span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#asType(java.lang.Class)" title="class or interface in javax.measure" class="external-link">asType</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/ClassCastException.html" title="class or interface in java.lang" class="external-link">ClassCastException</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(double)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-92">divide</a></span><wbr><span class="parameters">(double&nbsp;divisor)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#divide(double)" title="class or interface in javax.measure" class="external-link">divide</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(javax.measure.Unit)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-96">divide</a></span><wbr><span class="parameters">(<a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#divide(javax.measure.Unit)" title="class or interface in javax.measure" class="external-link">divide</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getConverterTo(javax.measure.Unit)">
      +<h3>getConverterTo</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-100">getConverterTo</a></span><wbr><span class="parameters">(<a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&nbsp;that)</span>
      +                             throws <span class="exceptions"><a href="../../../../apidocs/javax/measure/UnconvertibleException.html" title="class or interface in javax.measure" class="external-link">UnconvertibleException</a></span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#getConverterTo(javax.measure.Unit)" title="class or interface in javax.measure" class="external-link">getConverterTo</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/UnconvertibleException.html" title="class or interface in javax.measure" class="external-link">UnconvertibleException</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getConverterToAny(javax.measure.Unit)">
      +<h3>getConverterToAny</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-116">getConverterToAny</a></span><wbr><span class="parameters">(<a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;&nbsp;that)</span>
      +                                throws <span class="exceptions"><a href="../../../../apidocs/javax/measure/IncommensurableException.html" title="class or interface in javax.measure" class="external-link">IncommensurableException</a>,
      +<a href="../../../../apidocs/javax/measure/UnconvertibleException.html" title="class or interface in javax.measure" class="external-link">UnconvertibleException</a></span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#getConverterToAny(javax.measure.Unit)" title="class or interface in javax.measure" class="external-link">getConverterToAny</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/IncommensurableException.html" title="class or interface in javax.measure" class="external-link">IncommensurableException</a></code></dd>
      +<dd><code><a href="../../../../apidocs/javax/measure/UnconvertibleException.html" title="class or interface in javax.measure" class="external-link">UnconvertibleException</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getDimension()">
      +<h3>getDimension</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/Dimension.html" title="class or interface in javax.measure" class="external-link">Dimension</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-128">getDimension</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#getDimension()" title="class or interface in javax.measure" class="external-link">getDimension</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getName()">
      +<h3>getName</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-132">getName</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#getName()" title="class or interface in javax.measure" class="external-link">getName</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getBaseUnits()">
      +<h3>getBaseUnits</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" class="external-link">Map</a>&lt;<a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;,<wbr><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Integer.html" title="class or interface in java.lang" class="external-link">Integer</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-136">getBaseUnits</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#getBaseUnits()" title="class or interface in javax.measure" class="external-link">getBaseUnits</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getSymbol()">
      +<h3>getSymbol</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-140">getSymbol</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#getSymbol()" title="class or interface in javax.measure" class="external-link">getSymbol</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="inverse()">
      +<h3>inverse</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-144">inverse</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#inverse()" title="class or interface in javax.measure" class="external-link">inverse</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="isCompatible(javax.measure.Unit)">
      +<h3>isCompatible</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-148">isCompatible</a></span><wbr><span class="parameters">(<a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#isCompatible(javax.measure.Unit)" title="class or interface in javax.measure" class="external-link">isCompatible</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="isEquivalentTo(javax.measure.Unit)">
      +<h3>isEquivalentTo</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-152">isEquivalentTo</a></span><wbr><span class="parameters">(<a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#isEquivalentTo(javax.measure.Unit)" title="class or interface in javax.measure" class="external-link">isEquivalentTo</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(double)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-157">multiply</a></span><wbr><span class="parameters">(double&nbsp;factor)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#multiply(double)" title="class or interface in javax.measure" class="external-link">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(javax.measure.Unit)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-161">multiply</a></span><wbr><span class="parameters">(<a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#multiply(javax.measure.Unit)" title="class or interface in javax.measure" class="external-link">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="pow(int)">
      +<h3>pow</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-165">pow</a></span><wbr><span class="parameters">(int&nbsp;n)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#pow(int)" title="class or interface in javax.measure" class="external-link">pow</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="root(int)">
      +<h3>root</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-169">root</a></span><wbr><span class="parameters">(int&nbsp;n)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#root(int)" title="class or interface in javax.measure" class="external-link">root</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getSystemUnit()">
      +<h3>getSystemUnit</h3>
      +<div class="member-signature"><span class="modifiers">public abstract</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-173">getSystemUnit</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#getSystemUnit()" title="class or interface in javax.measure" class="external-link">getSystemUnit</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getSystemConverter()">
      +<h3>getSystemConverter</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-181">getSystemConverter</a></span>()
      +                                 throws <span class="exceptions"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/UnsupportedOperationException.html" title="class or interface in java.lang" class="external-link">UnsupportedOperationException</a></span></div>
      +<div class="block">Returns the converter from this unit to its unscaled <a href="#getSystemUnit()"><code>System Unit</code></a> unit.</div>
      +<dl class="notes">
      +<dt>Returns:</dt>
      +<dd><code>getConverterTo(this.toSystemUnit())</code></dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/UnsupportedOperationException.html" title="class or interface in java.lang" class="external-link">UnsupportedOperationException</a></code></dd>
      +<dt>See Also:</dt>
      +<dd>
      +<ul class="see-list">
      +<li><a href="#getSystemUnit()"><code>getSystemUnit()</code></a></li>
      +</ul>
      +</dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="transform(javax.measure.UnitConverter)">
      +<h3>transform</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-185">transform</a></span><wbr><span class="parameters">(<a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&nbsp;operation)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#transform(javax.measure.UnitConverter)" title="class or interface in javax.measure" class="external-link">transform</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="prefix(javax.measure.Prefix)">
      +<h3>prefix</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-194">prefix</a></span><wbr><span class="parameters">(<a href="../../../../apidocs/javax/measure/Prefix.html" title="class or interface in javax.measure" class="external-link">Prefix</a>&nbsp;prefix)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#prefix(javax.measure.Prefix)" title="class or interface in javax.measure" class="external-link">prefix</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getMultFactor()">
      +<h3>getMultFactor</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">double</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-201">getMultFactor</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="toString()">
      +<h3>toString</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-205">toString</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#toString()" title="class or interface in javax.measure" class="external-link">toString</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="shift(java.lang.Number)">
      +<h3>shift</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-226">shift</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;offset)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#shift(java.lang.Number)" title="class or interface in javax.measure" class="external-link">shift</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(java.lang.Number)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-232">multiply</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;multiplier)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#multiply(java.lang.Number)" title="class or interface in javax.measure" class="external-link">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(java.lang.Number)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TestUnit.html#line-238">divide</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;divisor)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../apidocs/javax/measure/Unit.html#divide(java.lang.Number)" title="class or interface in javax.measure" class="external-link">divide</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a> extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestUnit.html" title="type parameter in TestUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/TripLeg.html b/docs/site/testapidocs/javax/measure/test/TripLeg.html
      new file mode 100644
      index 00000000..d77b9aa9
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/TripLeg.html
      @@ -0,0 +1,173 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>TripLeg (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test, class: TripLeg">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.TripLeg class">
      +<meta name="keywords" content="getDist()">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/TripLeg.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test</a></div>
      +<h1 title="Class TripLeg" class="title">Class TripLeg</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">TripLeg</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../src-html/javax/measure/test/TripLeg.html#line-37">TripLeg</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +<dl class="notes">
      +<dt>Author:</dt>
      +<dd>paul.morrison</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String,java.lang.String,javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">TripLeg</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;fA,
      + <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;tA,
      + <a href="quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;dist)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getDist()" class="member-name-link">getDist</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.String,java.lang.String,javax.measure.test.quantity.DistanceQuantity)">
      +<h3>TripLeg</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TripLeg.html#line-44">TripLeg</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;fA,
      + <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;tA,
      + <a href="quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;dist)</span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="getDist()">
      +<h3>getDist</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/TripLeg.html#line-50">getDist</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/UnitTest.html b/docs/site/testapidocs/javax/measure/test/UnitTest.html
      new file mode 100644
      index 00000000..4c058263
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/UnitTest.html
      @@ -0,0 +1,270 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>UnitTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test, class: UnitTest">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.UnitTest class">
      +<meta name="keywords" content="init()">
      +<meta name="keywords" content="testGetSymbol()">
      +<meta name="keywords" content="testGetDimension()">
      +<meta name="keywords" content="testIsCompatible()">
      +<meta name="keywords" content="testIsEquivalentTo()">
      +<meta name="keywords" content="testGetConverterTo()">
      +<meta name="keywords" content="testDivideNull()">
      +<meta name="keywords" content="testMultiplyNull()">
      +<meta name="keywords" content="testShiftNull()">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/UnitTest.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test</a></div>
      +<h1 title="Class UnitTest" class="title">Class UnitTest</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">UnitTest</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../src-html/javax/measure/test/UnitTest.html#line-49">UnitTest</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +<dl class="notes">
      +<dt>Author:</dt>
      +<dd>Werner</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">UnitTest</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#init()" class="member-name-link">init</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testDivideNull()" class="member-name-link">testDivideNull</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testGetConverterTo()" class="member-name-link">testGetConverterTo</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testGetDimension()" class="member-name-link">testGetDimension</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Test method for <a href="../../../../apidocs/javax/measure/Unit.html#getDimension()" title="class or interface in javax.measure" class="external-link"><code>Unit.getDimension()</code></a>.</div>
      +</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testGetSymbol()" class="member-name-link">testGetSymbol</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Test method for <a href="../../../../apidocs/javax/measure/Unit.html#getSymbol()" title="class or interface in javax.measure" class="external-link"><code>Unit.getSymbol()</code></a>.</div>
      +</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testIsCompatible()" class="member-name-link">testIsCompatible</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Test method for <a href="../../../../apidocs/javax/measure/Unit.html#isCompatible(javax.measure.Unit)" title="class or interface in javax.measure" class="external-link"><code>Unit.isCompatible(javax.measure.Unit)</code></a>.</div>
      +</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testIsEquivalentTo()" class="member-name-link">testIsEquivalentTo</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Test method for <a href="../../../../apidocs/javax/measure/Unit.html#isEquivalentTo(javax.measure.Unit)" title="class or interface in javax.measure" class="external-link"><code>Unit.isEquivalentTo(javax.measure.Unit)</code></a>.</div>
      +</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMultiplyNull()" class="member-name-link">testMultiplyNull</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testShiftNull()" class="member-name-link">testShiftNull</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>UnitTest</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/UnitTest.html#line-49">UnitTest</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="init()">
      +<h3>init</h3>
      +<div class="member-signature"><span class="annotations">@BeforeEach
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/UnitTest.html#line-55">init</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testGetSymbol()">
      +<h3>testGetSymbol</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/UnitTest.html#line-63">testGetSymbol</a></span>()</div>
      +<div class="block">Test method for <a href="../../../../apidocs/javax/measure/Unit.html#getSymbol()" title="class or interface in javax.measure" class="external-link"><code>Unit.getSymbol()</code></a>.</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testGetDimension()">
      +<h3>testGetDimension</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/UnitTest.html#line-72">testGetDimension</a></span>()</div>
      +<div class="block">Test method for <a href="../../../../apidocs/javax/measure/Unit.html#getDimension()" title="class or interface in javax.measure" class="external-link"><code>Unit.getDimension()</code></a>.</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testIsCompatible()">
      +<h3>testIsCompatible</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/UnitTest.html#line-81">testIsCompatible</a></span>()</div>
      +<div class="block">Test method for <a href="../../../../apidocs/javax/measure/Unit.html#isCompatible(javax.measure.Unit)" title="class or interface in javax.measure" class="external-link"><code>Unit.isCompatible(javax.measure.Unit)</code></a>.</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testIsEquivalentTo()">
      +<h3>testIsEquivalentTo</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/UnitTest.html#line-90">testIsEquivalentTo</a></span>()</div>
      +<div class="block">Test method for <a href="../../../../apidocs/javax/measure/Unit.html#isEquivalentTo(javax.measure.Unit)" title="class or interface in javax.measure" class="external-link"><code>Unit.isEquivalentTo(javax.measure.Unit)</code></a>.</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testGetConverterTo()">
      +<h3>testGetConverterTo</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/UnitTest.html#line-96">testGetConverterTo</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testDivideNull()">
      +<h3>testDivideNull</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/UnitTest.html#line-106">testDivideNull</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMultiplyNull()">
      +<h3>testMultiplyNull</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/UnitTest.html#line-115">testMultiplyNull</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testShiftNull()">
      +<h3>testShiftNull</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../src-html/javax/measure/test/UnitTest.html#line-124">testShiftNull</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/class-use/BinaryPrefixTest.html b/docs/site/testapidocs/javax/measure/test/class-use/BinaryPrefixTest.html
      new file mode 100644
      index 00000000..994d8132
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/class-use/BinaryPrefixTest.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.BinaryPrefixTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test, class: BinaryPrefixTest">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../BinaryPrefixTest.html" title="class in javax.measure.test">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.BinaryPrefixTest" class="title">Uses of Class<br>javax.measure.test.BinaryPrefixTest</h1>
      +</div>
      +No usage of javax.measure.test.BinaryPrefixTest</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/class-use/CalcTripLength.html b/docs/site/testapidocs/javax/measure/test/class-use/CalcTripLength.html
      new file mode 100644
      index 00000000..5456815e
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/class-use/CalcTripLength.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.CalcTripLength (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test, class: CalcTripLength">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../CalcTripLength.html" title="class in javax.measure.test">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.CalcTripLength" class="title">Uses of Class<br>javax.measure.test.CalcTripLength</h1>
      +</div>
      +No usage of javax.measure.test.CalcTripLength</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/class-use/CircleInfo.html b/docs/site/testapidocs/javax/measure/test/class-use/CircleInfo.html
      new file mode 100644
      index 00000000..3e7aa765
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/class-use/CircleInfo.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.CircleInfo (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test, class: CircleInfo">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../CircleInfo.html" title="class in javax.measure.test">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.CircleInfo" class="title">Uses of Class<br>javax.measure.test.CircleInfo</h1>
      +</div>
      +No usage of javax.measure.test.CircleInfo</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/class-use/Conversions.html b/docs/site/testapidocs/javax/measure/test/class-use/Conversions.html
      new file mode 100644
      index 00000000..96b6fcf6
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/class-use/Conversions.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.Conversions (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test, class: Conversions">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../Conversions.html" title="class in javax.measure.test">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.Conversions" class="title">Uses of Class<br>javax.measure.test.Conversions</h1>
      +</div>
      +No usage of javax.measure.test.Conversions</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/class-use/ConverterTest.html b/docs/site/testapidocs/javax/measure/test/class-use/ConverterTest.html
      new file mode 100644
      index 00000000..b533dad9
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/class-use/ConverterTest.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.ConverterTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test, class: ConverterTest">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../ConverterTest.html" title="class in javax.measure.test">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.ConverterTest" class="title">Uses of Class<br>javax.measure.test.ConverterTest</h1>
      +</div>
      +No usage of javax.measure.test.ConverterTest</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/class-use/DimensionTest.html b/docs/site/testapidocs/javax/measure/test/class-use/DimensionTest.html
      new file mode 100644
      index 00000000..f14c87e8
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/class-use/DimensionTest.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.DimensionTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test, class: DimensionTest">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../DimensionTest.html" title="class in javax.measure.test">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.DimensionTest" class="title">Uses of Class<br>javax.measure.test.DimensionTest</h1>
      +</div>
      +No usage of javax.measure.test.DimensionTest</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/class-use/ExceptionsTest.html b/docs/site/testapidocs/javax/measure/test/class-use/ExceptionsTest.html
      new file mode 100644
      index 00000000..43e494fb
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/class-use/ExceptionsTest.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.ExceptionsTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test, class: ExceptionsTest">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../ExceptionsTest.html" title="class in javax.measure.test">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.ExceptionsTest" class="title">Uses of Class<br>javax.measure.test.ExceptionsTest</h1>
      +</div>
      +No usage of javax.measure.test.ExceptionsTest</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/class-use/MetricPrefixTest.html b/docs/site/testapidocs/javax/measure/test/class-use/MetricPrefixTest.html
      new file mode 100644
      index 00000000..c51d3574
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/class-use/MetricPrefixTest.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.MetricPrefixTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test, class: MetricPrefixTest">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../MetricPrefixTest.html" title="class in javax.measure.test">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.MetricPrefixTest" class="title">Uses of Class<br>javax.measure.test.MetricPrefixTest</h1>
      +</div>
      +No usage of javax.measure.test.MetricPrefixTest</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/class-use/TestConverter.Pair.html b/docs/site/testapidocs/javax/measure/test/class-use/TestConverter.Pair.html
      new file mode 100644
      index 00000000..fbe902bc
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/class-use/TestConverter.Pair.html
      @@ -0,0 +1,87 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.TestConverter.Pair (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test, class: TestConverter, class: Pair">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../TestConverter.Pair.html" title="class in javax.measure.test">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.TestConverter.Pair" class="title">Uses of Class<br>javax.measure.test.TestConverter.Pair</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="../TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test">javax.measure.test</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<section class="class-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test">
      +<h2>Uses of <a href="../TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a> in <a href="../package-summary.html">javax.measure.test</a></h2>
      +<div class="caption"><span>Methods in <a href="../package-summary.html">javax.measure.test</a> that return <a href="../TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TestConverter.Pair.</span><code><a href="../TestConverter.Pair.html#inverse()" class="member-name-link">inverse</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/class-use/TestConverter.html b/docs/site/testapidocs/javax/measure/test/class-use/TestConverter.html
      new file mode 100644
      index 00000000..154481b0
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/class-use/TestConverter.html
      @@ -0,0 +1,144 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.TestConverter (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test, class: TestConverter">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../TestConverter.html" title="class in javax.measure.test">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.TestConverter" class="title">Uses of Class<br>javax.measure.test.TestConverter</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test">javax.measure.test</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="#javax.measure.test.function">javax.measure.test.function</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +<section class="class-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test">
      +<h2>Uses of <a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a> in <a href="../package-summary.html">javax.measure.test</a></h2>
      +<div class="caption"><span>Subclasses of <a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a> in <a href="../package-summary.html">javax.measure.test</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final class&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../TestConverter.Pair.html" class="type-name-link" title="class in javax.measure.test">TestConverter.Pair</a></code></div>
      +<div class="col-last even-row-color">
      +<div class="block">This class represents converters made up of two or more separate converters (in matrix notation <code>[pair] = [left] x [right]</code>).</div>
      +</div>
      +</div>
      +<div class="caption"><span>Fields in <a href="../package-summary.html">javax.measure.test</a> declared as <a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final <a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TestConverter.</span><code><a href="../TestConverter.html#IDENTITY" class="member-name-link">IDENTITY</a></code></div>
      +<div class="col-last even-row-color">
      +<div class="block">Holds identity converter.</div>
      +</div>
      +</div>
      +<div class="caption"><span>Methods in <a href="../package-summary.html">javax.measure.test</a> that return <a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TestConverter.</span><code><a href="../TestConverter.html#concatenate(javax.measure.test.TestConverter)" class="member-name-link">concatenate</a><wbr>(<a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a>&nbsp;that)</code></div>
      +<div class="col-last even-row-color">
      +<div class="block">Concatenates this physics converter with another unit converter.</div>
      +</div>
      +<div class="col-first odd-row-color"><code>abstract <a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TestConverter.</span><code><a href="../TestConverter.html#inverse()" class="member-name-link">inverse</a>()</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +<div class="caption"><span>Methods in <a href="../package-summary.html">javax.measure.test</a> with parameters of type <a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TestConverter.</span><code><a href="../TestConverter.html#concatenate(javax.measure.test.TestConverter)" class="member-name-link">concatenate</a><wbr>(<a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a>&nbsp;that)</code></div>
      +<div class="col-last even-row-color">
      +<div class="block">Concatenates this physics converter with another unit converter.</div>
      +</div>
      +</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="javax.measure.test.function">
      +<h2>Uses of <a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a> in <a href="../function/package-summary.html">javax.measure.test.function</a></h2>
      +<div class="caption"><span>Subclasses of <a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a> in <a href="../function/package-summary.html">javax.measure.test.function</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>final class&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../function/MultiplyConverter.html" class="type-name-link" title="class in javax.measure.test.function">MultiplyConverter</a></code></div>
      +<div class="col-last even-row-color">
      +<div class="block">
      + This class represents a converter multiplying numeric values by a constant scaling factor (<code>double</code> based).</div>
      +</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/class-use/TestUnit.html b/docs/site/testapidocs/javax/measure/test/class-use/TestUnit.html
      new file mode 100644
      index 00000000..cd177cdd
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/class-use/TestUnit.html
      @@ -0,0 +1,148 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.TestUnit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test, class: TestUnit">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../TestUnit.html" title="class in javax.measure.test">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.TestUnit" class="title">Uses of Class<br>javax.measure.test.TestUnit</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test.quantity">javax.measure.test.quantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="#javax.measure.test.unit">javax.measure.test.unit</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +<section class="class-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test.quantity">
      +<h2>Uses of <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a> in <a href="../quantity/package-summary.html">javax.measure.test.quantity</a></h2>
      +<div class="caption"><span>Fields in <a href="../quantity/package-summary.html">javax.measure.test.quantity</a> declared as <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>protected <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../quantity/TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TestQuantity.</span><code><a href="../quantity/TestQuantity.html#unit" class="member-name-link">unit</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<div class="caption"><span>Methods in <a href="../quantity/package-summary.html">javax.measure.test.quantity</a> with parameters of type <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../quantity/TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TestQuantity.</span><code><a href="../quantity/TestQuantity.html#add(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)" class="member-name-link">add</a><wbr>(<a href="../quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../quantity/TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;dn,
      + <a href="../quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../quantity/TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1,
      + <a href="../quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../quantity/TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d2,
      + <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../quantity/TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;au)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>protected <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TestQuantity.</span><code><a href="../quantity/TestQuantity.html#showInUnits(javax.measure.test.TestUnit,int)" class="member-name-link">showInUnits</a><wbr>(<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;?&gt;&nbsp;u,
      + int&nbsp;precision)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code><a href="../quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../quantity/TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TestQuantity.</span><code><a href="../quantity/TestQuantity.html#subtract(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)" class="member-name-link">subtract</a><wbr>(<a href="../quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../quantity/TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;dn,
      + <a href="../quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../quantity/TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1,
      + <a href="../quantity/TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../quantity/TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d2,
      + <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../quantity/TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;au)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="javax.measure.test.unit">
      +<h2>Uses of <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a> in <a href="../unit/package-summary.html">javax.measure.test.unit</a></h2>
      +<div class="caption"><span>Subclasses of <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a> in <a href="../unit/package-summary.html">javax.measure.test.unit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>class&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../unit/AreaUnit.html" class="type-name-link" title="class in javax.measure.test.unit">AreaUnit</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>class&nbsp;</code></div>
      +<div class="col-second odd-row-color"><code><a href="../unit/BaseUnit.html" class="type-name-link" title="class in javax.measure.test.unit">BaseUnit</a>&lt;Q extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;&gt;</code></div>
      +<div class="col-last odd-row-color">
      +<div class="block">Building blocks on top of which all others units are created.</div>
      +</div>
      +<div class="col-first even-row-color"><code>class&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../unit/DistanceUnit.html" class="type-name-link" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>class&nbsp;</code></div>
      +<div class="col-second odd-row-color"><code><a href="../unit/MassUnit.html" class="type-name-link" title="class in javax.measure.test.unit">MassUnit</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>class&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../unit/SpeedUnit.html" class="type-name-link" title="class in javax.measure.test.unit">SpeedUnit</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>class&nbsp;</code></div>
      +<div class="col-second odd-row-color"><code><a href="../unit/TemperatureUnit.html" class="type-name-link" title="class in javax.measure.test.unit">TemperatureUnit</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>class&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../unit/TimeUnit.html" class="type-name-link" title="class in javax.measure.test.unit">TimeUnit</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>class&nbsp;</code></div>
      +<div class="col-second odd-row-color"><code><a href="../unit/VolumeUnit.html" class="type-name-link" title="class in javax.measure.test.unit">VolumeUnit</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/class-use/TripLeg.html b/docs/site/testapidocs/javax/measure/test/class-use/TripLeg.html
      new file mode 100644
      index 00000000..69181cc6
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/class-use/TripLeg.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.TripLeg (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test, class: TripLeg">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../TripLeg.html" title="class in javax.measure.test">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.TripLeg" class="title">Uses of Class<br>javax.measure.test.TripLeg</h1>
      +</div>
      +No usage of javax.measure.test.TripLeg</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/class-use/UnitTest.html b/docs/site/testapidocs/javax/measure/test/class-use/UnitTest.html
      new file mode 100644
      index 00000000..ef513156
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/class-use/UnitTest.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.UnitTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test, class: UnitTest">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../UnitTest.html" title="class in javax.measure.test">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.UnitTest" class="title">Uses of Class<br>javax.measure.test.UnitTest</h1>
      +</div>
      +No usage of javax.measure.test.UnitTest</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/format/MeasurementParseTest.html b/docs/site/testapidocs/javax/measure/test/format/MeasurementParseTest.html
      new file mode 100644
      index 00000000..d25dc876
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/format/MeasurementParseTest.html
      @@ -0,0 +1,200 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>MeasurementParseTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.format, class: MeasurementParseTest">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.format.MeasurementParseTest class">
      +<meta name="keywords" content="testExceptionWithMessage()">
      +<meta name="keywords" content="testOldExceptionWithMessageDataAndPos()">
      +<meta name="keywords" content="testOldExceptionWithMessageAndPos()">
      +<meta name="keywords" content="testOldExceptionWithCause()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/MeasurementParseTest.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.format</a></div>
      +<h1 title="Class MeasurementParseTest" class="title">Class MeasurementParseTest</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">MeasurementParseTest</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/format/MeasurementParseTest.html#line-40">MeasurementParseTest</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +<div class="block">Measurement Format Tests</div>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">MeasurementParseTest</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testExceptionWithMessage()" class="member-name-link">testExceptionWithMessage</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testOldExceptionWithCause()" class="member-name-link">testOldExceptionWithCause</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testOldExceptionWithMessageAndPos()" class="member-name-link">testOldExceptionWithMessageAndPos</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testOldExceptionWithMessageDataAndPos()" class="member-name-link">testOldExceptionWithMessageDataAndPos</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>MeasurementParseTest</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/MeasurementParseTest.html#line-40">MeasurementParseTest</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="testExceptionWithMessage()">
      +<h3>testExceptionWithMessage</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/MeasurementParseTest.html#line-42">testExceptionWithMessage</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testOldExceptionWithMessageDataAndPos()">
      +<h3>testOldExceptionWithMessageDataAndPos</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/MeasurementParseTest.html#line-49">testOldExceptionWithMessageDataAndPos</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testOldExceptionWithMessageAndPos()">
      +<h3>testOldExceptionWithMessageAndPos</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/MeasurementParseTest.html#line-56">testOldExceptionWithMessageAndPos</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testOldExceptionWithCause()">
      +<h3>testOldExceptionWithCause</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/MeasurementParseTest.html#line-63">testOldExceptionWithCause</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/format/QuantityFormatTest.html b/docs/site/testapidocs/javax/measure/test/format/QuantityFormatTest.html
      new file mode 100644
      index 00000000..5d0144fa
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/format/QuantityFormatTest.html
      @@ -0,0 +1,236 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>QuantityFormatTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.format, class: QuantityFormatTest">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.format.QuantityFormatTest class">
      +<meta name="keywords" content="init()">
      +<meta name="keywords" content="testParseSimple()">
      +<meta name="keywords" content="testParseIrregularString()">
      +<meta name="keywords" content="testParserException()">
      +<meta name="keywords" content="testParserExceptionWithPosition()">
      +<meta name="keywords" content="testParserExceptionWithNullString()">
      +<meta name="keywords" content="testLocalSensitive()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/QuantityFormatTest.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.format</a></div>
      +<h1 title="Class QuantityFormatTest" class="title">Class QuantityFormatTest</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">QuantityFormatTest</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/format/QuantityFormatTest.html#line-47">QuantityFormatTest</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +<dl class="notes">
      +<dt>Author:</dt>
      +<dd><a href="mailto:werner@uom.technology">Werner Keil</a></dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">QuantityFormatTest</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#init()" class="member-name-link">init</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testLocalSensitive()" class="member-name-link">testLocalSensitive</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testParseIrregularString()" class="member-name-link">testParseIrregularString</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testParserException()" class="member-name-link">testParserException</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testParserExceptionWithNullString()" class="member-name-link">testParserExceptionWithNullString</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testParserExceptionWithPosition()" class="member-name-link">testParserExceptionWithPosition</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testParseSimple()" class="member-name-link">testParseSimple</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>QuantityFormatTest</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/QuantityFormatTest.html#line-47">QuantityFormatTest</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="init()">
      +<h3>init</h3>
      +<div class="member-signature"><span class="annotations">@BeforeEach
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/QuantityFormatTest.html#line-52">init</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testParseSimple()">
      +<h3>testParseSimple</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/QuantityFormatTest.html#line-58">testParseSimple</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testParseIrregularString()">
      +<h3>testParseIrregularString</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/QuantityFormatTest.html#line-66">testParseIrregularString</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testParserException()">
      +<h3>testParserException</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/QuantityFormatTest.html#line-74">testParserException</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testParserExceptionWithPosition()">
      +<h3>testParserExceptionWithPosition</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/QuantityFormatTest.html#line-81">testParserExceptionWithPosition</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testParserExceptionWithNullString()">
      +<h3>testParserExceptionWithNullString</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/QuantityFormatTest.html#line-91">testParserExceptionWithNullString</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testLocalSensitive()">
      +<h3>testLocalSensitive</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/QuantityFormatTest.html#line-100">testLocalSensitive</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/format/SimpleTestUnitFormat.html b/docs/site/testapidocs/javax/measure/test/format/SimpleTestUnitFormat.html
      new file mode 100644
      index 00000000..683d36e1
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/format/SimpleTestUnitFormat.html
      @@ -0,0 +1,304 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>SimpleTestUnitFormat (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.format, class: SimpleTestUnitFormat">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.format.SimpleTestUnitFormat class">
      +<meta name="keywords" content="geInstance()">
      +<meta name="keywords" content="format()">
      +<meta name="keywords" content="label()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/SimpleTestUnitFormat.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li>Constr&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li>Constr&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.format</a></div>
      +<h1 title="Class SimpleTestUnitFormat" class="title">Class SimpleTestUnitFormat</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">SimpleTestUnitFormat</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/format/UnitFormat.html" title="class or interface in javax.measure.format" class="external-link">UnitFormat</a></code></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/format/SimpleTestUnitFormat.html#line-45">SimpleTestUnitFormat</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +<div class="block">Provides a simple interface for formatting and parsing <a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">units</a>.</div>
      +<dl class="notes">
      +<dt>Version:</dt>
      +<dd>1.0, February 13, 2021</dd>
      +<dt>Author:</dt>
      +<dd><a href="mailto:werner@uom.technology">Werner Keil</a></dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab1" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab1', 3)" class="table-tab">Static Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>final <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#format(javax.measure.Unit)" class="member-name-link">format</a><wbr>(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;&nbsp;unit)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Formats an object to produce a string.</div>
      +</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Appendable.html" title="class or interface in java.lang" class="external-link">Appendable</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#format(javax.measure.Unit,java.lang.Appendable)" class="member-name-link">format</a><wbr>(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;&nbsp;unit,
      + <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Appendable.html" title="class or interface in java.lang" class="external-link">Appendable</a>&nbsp;appendable)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Formats the specified unit.</div>
      +</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code>static <a href="../../../../../apidocs/javax/measure/format/UnitFormat.html" title="class or interface in javax.measure.format" class="external-link">UnitFormat</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code><a href="#geInstance()" class="member-name-link">geInstance</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4">
      +<div class="block">Returns the instance for formatting and parsing using case insensitive symbols</div>
      +</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code>static <a href="../../../../../apidocs/javax/measure/format/UnitFormat.html" title="class or interface in javax.measure.format" class="external-link">UnitFormat</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code><a href="#getInstance()" class="member-name-link">getInstance</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4">
      +<div class="block">Returns the unit format for the default locale.</div>
      +</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#label(javax.measure.Unit,java.lang.String)" class="member-name-link">label</a><wbr>(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;&nbsp;unit,
      + <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;label)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>final <a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#parse(java.lang.CharSequence)" class="member-name-link">parse</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/CharSequence.html" title="class or interface in java.lang" class="external-link">CharSequence</a>&nbsp;csq)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Parses the specified character sequence to produce a unit (convenience method).</div>
      +</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>protected <a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#parse(java.lang.CharSequence,int)" class="member-name-link">parse</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/CharSequence.html" title="class or interface in java.lang" class="external-link">CharSequence</a>&nbsp;csq,
      + int&nbsp;index)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>final <a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#parse(java.lang.CharSequence,java.text.ParsePosition)" class="member-name-link">parse</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/CharSequence.html" title="class or interface in java.lang" class="external-link">CharSequence</a>&nbsp;csq,
      + <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/text/ParsePosition.html" title="class or interface in java.text" class="external-link">ParsePosition</a>&nbsp;pos)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Parses the specified character sequence to produce a unit (convenience method).</div>
      +</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-UnitFormat">Methods inherited from interface&nbsp;<a href="../../../../../apidocs/javax/measure/format/UnitFormat.html" title="class or interface in javax.measure.format" class="external-link">UnitFormat</a></h3>
      +<code><a href="../../../../../apidocs/javax/measure/format/UnitFormat.html#isLocaleSensitive()" title="class or interface in javax.measure.format" class="external-link">isLocaleSensitive</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="geInstance()">
      +<h3>geInstance</h3>
      +<div class="member-signature"><span class="modifiers">public static</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/format/UnitFormat.html" title="class or interface in javax.measure.format" class="external-link">UnitFormat</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/SimpleTestUnitFormat.html#line-58">geInstance</a></span>()</div>
      +<div class="block">Returns the instance for formatting and parsing using case insensitive symbols</div>
      +<dl class="notes">
      +<dt>Returns:</dt>
      +<dd>the default instance</dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="format(javax.measure.Unit,java.lang.Appendable)">
      +<h3>format</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Appendable.html" title="class or interface in java.lang" class="external-link">Appendable</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/SimpleTestUnitFormat.html#line-74">format</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;&nbsp;unit,
      + <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Appendable.html" title="class or interface in java.lang" class="external-link">Appendable</a>&nbsp;appendable)</span>
      +                  throws <span class="exceptions"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/IOException.html" title="class or interface in java.io" class="external-link">IOException</a></span></div>
      +<div class="block">Formats the specified unit.</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/format/UnitFormat.html#format(javax.measure.Unit,java.lang.Appendable)" title="class or interface in javax.measure.format" class="external-link">format</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/format/UnitFormat.html" title="class or interface in javax.measure.format" class="external-link">UnitFormat</a></code></dd>
      +<dt>Parameters:</dt>
      +<dd><code>unit</code> - the unit to format.</dd>
      +<dd><code>appendable</code> - the appendable destination.</dd>
      +<dt>Returns:</dt>
      +<dd>The appendable destination passed in as <code>appendable</code>, with formatted text appended.</dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/IOException.html" title="class or interface in java.io" class="external-link">IOException</a></code> - if an error occurs.</dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="label(javax.measure.Unit,java.lang.String)">
      +<h3>label</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/SimpleTestUnitFormat.html#line-89">label</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;&nbsp;unit,
      + <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;label)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getInstance()">
      +<h3>getInstance</h3>
      +<div class="member-signature"><span class="modifiers">public static</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/format/UnitFormat.html" title="class or interface in javax.measure.format" class="external-link">UnitFormat</a></span>&nbsp;<span class="element-name">getInstance</span>()</div>
      +<div class="block">Returns the unit format for the default locale.</div>
      +<dl class="notes">
      +<dt>Returns:</dt>
      +<dd>the locale format.</dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="parse(java.lang.CharSequence,int)">
      +<h3>parse</h3>
      +<div class="member-signature"><span class="modifiers">protected</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</span>&nbsp;<span class="element-name">parse</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/CharSequence.html" title="class or interface in java.lang" class="external-link">CharSequence</a>&nbsp;csq,
      + int&nbsp;index)</span>
      +                 throws <span class="exceptions"><a href="../../../../../apidocs/javax/measure/format/MeasurementParseException.html" title="class or interface in javax.measure.format" class="external-link">MeasurementParseException</a></span></div>
      +<dl class="notes">
      +<dt>Throws:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/format/MeasurementParseException.html" title="class or interface in javax.measure.format" class="external-link">MeasurementParseException</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="parse(java.lang.CharSequence)">
      +<h3>parse</h3>
      +<div class="member-signature"><span class="modifiers">public final</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</span>&nbsp;<span class="element-name">parse</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/CharSequence.html" title="class or interface in java.lang" class="external-link">CharSequence</a>&nbsp;csq)</span>
      +                    throws <span class="exceptions"><a href="../../../../../apidocs/javax/measure/format/MeasurementParseException.html" title="class or interface in javax.measure.format" class="external-link">MeasurementParseException</a></span></div>
      +<div class="block">Parses the specified character sequence to produce a unit (convenience method). If the specified sequence is empty, the unitary unit
      + (dimensionless) is returned.</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/format/UnitFormat.html#parse(java.lang.CharSequence)" title="class or interface in javax.measure.format" class="external-link">parse</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/format/UnitFormat.html" title="class or interface in javax.measure.format" class="external-link">UnitFormat</a></code></dd>
      +<dt>Parameters:</dt>
      +<dd><code>csq</code> - the <code>CharSequence</code> to parse.</dd>
      +<dt>Returns:</dt>
      +<dd>the unit parsed from the specified character sub-sequence.</dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/format/MeasurementParseException.html" title="class or interface in javax.measure.format" class="external-link">MeasurementParseException</a></code> - if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).</dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="parse(java.lang.CharSequence,java.text.ParsePosition)">
      +<h3>parse</h3>
      +<div class="member-signature"><span class="modifiers">public final</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</span>&nbsp;<span class="element-name">parse</span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/CharSequence.html" title="class or interface in java.lang" class="external-link">CharSequence</a>&nbsp;csq,
      + <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/text/ParsePosition.html" title="class or interface in java.text" class="external-link">ParsePosition</a>&nbsp;pos)</span>
      +                    throws <span class="exceptions"><a href="../../../../../apidocs/javax/measure/format/MeasurementParseException.html" title="class or interface in javax.measure.format" class="external-link">MeasurementParseException</a></span></div>
      +<div class="block">Parses the specified character sequence to produce a unit (convenience method). If the specified sequence is empty, the unitary unit
      + (dimensionless) is returned.</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/format/UnitFormat.html#parse(java.lang.CharSequence,java.text.ParsePosition)" title="class or interface in javax.measure.format" class="external-link">parse</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/format/UnitFormat.html" title="class or interface in javax.measure.format" class="external-link">UnitFormat</a></code></dd>
      +<dt>Parameters:</dt>
      +<dd><code>csq</code> - the <code>CharSequence</code> to parse.</dd>
      +<dd><code>pos</code> - a ParsePosition object holding the current parsing index and error parsing index information as described above.</dd>
      +<dt>Returns:</dt>
      +<dd>the unit parsed from the specified character sub-sequence.</dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/format/MeasurementParseException.html" title="class or interface in javax.measure.format" class="external-link">MeasurementParseException</a></code> - if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).</dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="format(javax.measure.Unit)">
      +<h3>format</h3>
      +<div class="member-signature"><span class="modifiers">public final</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name">format</span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;&nbsp;unit)</span></div>
      +<div class="block">Formats an object to produce a string. This is equivalent to <blockquote> <a href="../../../../../apidocs/javax/measure/format/UnitFormat.html#format(javax.measure.Unit,java.lang.Appendable)" title="class or interface in javax.measure.format" class="external-link"><code>format</code></a><code>(unit,
      +         new StringBuilder()).toString();</code> </blockquote></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/format/UnitFormat.html#format(javax.measure.Unit)" title="class or interface in javax.measure.format" class="external-link">format</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/format/UnitFormat.html" title="class or interface in javax.measure.format" class="external-link">UnitFormat</a></code></dd>
      +<dt>Parameters:</dt>
      +<dd><code>unit</code> - The unit to format</dd>
      +<dt>Returns:</dt>
      +<dd>Formatted string.</dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html" title="class or interface in java.lang" class="external-link">IllegalArgumentException</a></code> - if the Format cannot format the given object</dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/format/UnitFormatTest.html b/docs/site/testapidocs/javax/measure/test/format/UnitFormatTest.html
      new file mode 100644
      index 00000000..a5395226
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/format/UnitFormatTest.html
      @@ -0,0 +1,269 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>UnitFormatTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.format, class: UnitFormatTest">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.format.UnitFormatTest class">
      +<meta name="keywords" content="init()">
      +<meta name="keywords" content="testFormatKph()">
      +<meta name="keywords" content="testParseSimple()">
      +<meta name="keywords" content="testFormatFromQuantity()">
      +<meta name="keywords" content="testParseIrregularString()">
      +<meta name="keywords" content="testParserException()">
      +<meta name="keywords" content="testParserExceptionWithPosition()">
      +<meta name="keywords" content="testParserExceptionWithNullString()">
      +<meta name="keywords" content="testLocalSensitive()">
      +<meta name="keywords" content="testMoreLocalSensitive()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/UnitFormatTest.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.format</a></div>
      +<h1 title="Class UnitFormatTest" class="title">Class UnitFormatTest</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">UnitFormatTest</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/format/UnitFormatTest.html#line-54">UnitFormatTest</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +<dl class="notes">
      +<dt>Author:</dt>
      +<dd><a href="mailto:werner@uom.technology">Werner Keil</a></dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">UnitFormatTest</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#init()" class="member-name-link">init</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testFormatFromQuantity()" class="member-name-link">testFormatFromQuantity</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testFormatKph()" class="member-name-link">testFormatKph</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testLocalSensitive()" class="member-name-link">testLocalSensitive</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMoreLocalSensitive()" class="member-name-link">testMoreLocalSensitive</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testParseIrregularString()" class="member-name-link">testParseIrregularString</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testParserException()" class="member-name-link">testParserException</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testParserExceptionWithNullString()" class="member-name-link">testParserExceptionWithNullString</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testParserExceptionWithPosition()" class="member-name-link">testParserExceptionWithPosition</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testParseSimple()" class="member-name-link">testParseSimple</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>UnitFormatTest</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/UnitFormatTest.html#line-54">UnitFormatTest</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="init()">
      +<h3>init</h3>
      +<div class="member-signature"><span class="annotations">@BeforeEach
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/UnitFormatTest.html#line-58">init</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testFormatKph()">
      +<h3>testFormatKph</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/UnitFormatTest.html#line-64">testFormatKph</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testParseSimple()">
      +<h3>testParseSimple</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/UnitFormatTest.html#line-70">testParseSimple</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testFormatFromQuantity()">
      +<h3>testFormatFromQuantity</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/UnitFormatTest.html#line-79">testFormatFromQuantity</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testParseIrregularString()">
      +<h3>testParseIrregularString</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/UnitFormatTest.html#line-104">testParseIrregularString</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testParserException()">
      +<h3>testParserException</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/UnitFormatTest.html#line-112">testParserException</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testParserExceptionWithPosition()">
      +<h3>testParserExceptionWithPosition</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/UnitFormatTest.html#line-119">testParserExceptionWithPosition</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testParserExceptionWithNullString()">
      +<h3>testParserExceptionWithNullString</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/UnitFormatTest.html#line-128">testParserExceptionWithNullString</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testLocalSensitive()">
      +<h3>testLocalSensitive</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/UnitFormatTest.html#line-137">testLocalSensitive</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMoreLocalSensitive()">
      +<h3>testMoreLocalSensitive</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/format/UnitFormatTest.html#line-142">testMoreLocalSensitive</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/format/class-use/MeasurementParseTest.html b/docs/site/testapidocs/javax/measure/test/format/class-use/MeasurementParseTest.html
      new file mode 100644
      index 00000000..1fd82a28
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/format/class-use/MeasurementParseTest.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.format.MeasurementParseTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.format, class: MeasurementParseTest">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../MeasurementParseTest.html" title="class in javax.measure.test.format">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.format.MeasurementParseTest" class="title">Uses of Class<br>javax.measure.test.format.MeasurementParseTest</h1>
      +</div>
      +No usage of javax.measure.test.format.MeasurementParseTest</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/format/class-use/QuantityFormatTest.html b/docs/site/testapidocs/javax/measure/test/format/class-use/QuantityFormatTest.html
      new file mode 100644
      index 00000000..b76eb2b3
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/format/class-use/QuantityFormatTest.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.format.QuantityFormatTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.format, class: QuantityFormatTest">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../QuantityFormatTest.html" title="class in javax.measure.test.format">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.format.QuantityFormatTest" class="title">Uses of Class<br>javax.measure.test.format.QuantityFormatTest</h1>
      +</div>
      +No usage of javax.measure.test.format.QuantityFormatTest</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/format/class-use/SimpleTestUnitFormat.html b/docs/site/testapidocs/javax/measure/test/format/class-use/SimpleTestUnitFormat.html
      new file mode 100644
      index 00000000..1c1a6ce9
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/format/class-use/SimpleTestUnitFormat.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.format.SimpleTestUnitFormat (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.format, class: SimpleTestUnitFormat">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../SimpleTestUnitFormat.html" title="class in javax.measure.test.format">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.format.SimpleTestUnitFormat" class="title">Uses of Class<br>javax.measure.test.format.SimpleTestUnitFormat</h1>
      +</div>
      +No usage of javax.measure.test.format.SimpleTestUnitFormat</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/format/class-use/UnitFormatTest.html b/docs/site/testapidocs/javax/measure/test/format/class-use/UnitFormatTest.html
      new file mode 100644
      index 00000000..08b59b22
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/format/class-use/UnitFormatTest.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.format.UnitFormatTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.format, class: UnitFormatTest">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../UnitFormatTest.html" title="class in javax.measure.test.format">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.format.UnitFormatTest" class="title">Uses of Class<br>javax.measure.test.format.UnitFormatTest</h1>
      +</div>
      +No usage of javax.measure.test.format.UnitFormatTest</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/format/package-summary.html b/docs/site/testapidocs/javax/measure/test/format/package-summary.html
      new file mode 100644
      index 00000000..c991253b
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/format/package-summary.html
      @@ -0,0 +1,121 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>javax.measure.test.format (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.format">
      +<meta name="generator" content="javadoc/PackageWriterImpl">
      +<meta name="keywords" content="javax.measure.test.format package">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-declaration-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li class="nav-bar-cell1-rev">Package</li>
      +<li>Class</li>
      +<li><a href="package-use.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#package">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Package:&nbsp;</li>
      +<li>Description&nbsp;|&nbsp;</li>
      +<li><a href="#related-package-summary">Related Packages</a>&nbsp;|&nbsp;</li>
      +<li><a href="#class-summary">Classes and Interfaces</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Package javax.measure.test.format" class="title">Package javax.measure.test.format</h1>
      +</div>
      +<hr>
      +<div class="package-signature">package <span class="element-name">javax.measure.test.format</span></div>
      +<section class="package-description">
      +<dl class="notes">
      +<dt>Author:</dt>
      +<dd>Werner</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<li>
      +<div id="related-package-summary">
      +<div class="caption"><span>Related Packages</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="../package-summary.html">javax.measure.test</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="../function/package-summary.html">javax.measure.test.function</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><a href="../quantity/package-summary.html">javax.measure.test.quantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="../unit/package-summary.html">javax.measure.test.unit</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</div>
      +</li>
      +<li>
      +<div id="class-summary">
      +<div class="caption"><span>Classes</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="MeasurementParseTest.html" title="class in javax.measure.test.format">MeasurementParseTest</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">
      +<div class="block">Measurement Format Tests</div>
      +</div>
      +<div class="col-first odd-row-color class-summary class-summary-tab2"><a href="QuantityFormatTest.html" title="class in javax.measure.test.format">QuantityFormatTest</a></div>
      +<div class="col-last odd-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="SimpleTestUnitFormat.html" title="class in javax.measure.test.format">SimpleTestUnitFormat</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">
      +<div class="block">Provides a simple interface for formatting and parsing <a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">units</a>.</div>
      +</div>
      +<div class="col-first odd-row-color class-summary class-summary-tab2"><a href="UnitFormatTest.html" title="class in javax.measure.test.format">UnitFormatTest</a></div>
      +<div class="col-last odd-row-color class-summary class-summary-tab2">&nbsp;</div>
      +</div>
      +</div>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/format/package-tree.html b/docs/site/testapidocs/javax/measure/test/format/package-tree.html
      new file mode 100644
      index 00000000..1626c2b3
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/format/package-tree.html
      @@ -0,0 +1,79 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>javax.measure.test.format Class Hierarchy (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="tree: package: javax.measure.test.format">
      +<meta name="generator" content="javadoc/PackageTreeWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-tree-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li>Class</li>
      +<li>Use</li>
      +<li class="nav-bar-cell1-rev">Tree</li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#tree">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 class="title">Hierarchy For Package javax.measure.test.format</h1>
      +<span class="package-hierarchy-label">Package Hierarchies:</span>
      +<ul class="horizontal">
      +<li><a href="../../../../overview-tree.html">All Packages</a></li>
      +</ul>
      +</div>
      +<section class="hierarchy">
      +<h2 title="Class Hierarchy">Class Hierarchy</h2>
      +<ul>
      +<li class="circle"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" class="type-name-link external-link" title="class or interface in java.lang">Object</a>
      +<ul>
      +<li class="circle"><a href="MeasurementParseTest.html" class="type-name-link" title="class in javax.measure.test.format">MeasurementParseTest</a></li>
      +<li class="circle"><a href="QuantityFormatTest.html" class="type-name-link" title="class in javax.measure.test.format">QuantityFormatTest</a></li>
      +<li class="circle"><a href="SimpleTestUnitFormat.html" class="type-name-link" title="class in javax.measure.test.format">SimpleTestUnitFormat</a></li>
      +<li class="circle"><a href="UnitFormatTest.html" class="type-name-link" title="class in javax.measure.test.format">UnitFormatTest</a></li>
      +</ul>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/format/package-use.html b/docs/site/testapidocs/javax/measure/test/format/package-use.html
      new file mode 100644
      index 00000000..8e18f42b
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/format/package-use.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Package javax.measure.test.format (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.format">
      +<meta name="generator" content="javadoc/PackageUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li>Class</li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Package javax.measure.test.format" class="title">Uses of Package<br>javax.measure.test.format</h1>
      +</div>
      +No usage of javax.measure.test.format</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/function/MultiplyConverter.html b/docs/site/testapidocs/javax/measure/test/function/MultiplyConverter.html
      new file mode 100644
      index 00000000..2a239bdc
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/function/MultiplyConverter.html
      @@ -0,0 +1,365 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>MultiplyConverter (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.function, class: MultiplyConverter">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.function.MultiplyConverter class">
      +<meta name="keywords" content="getFactor()">
      +<meta name="keywords" content="concatenate()">
      +<meta name="keywords" content="inverse()">
      +<meta name="keywords" content="convert()">
      +<meta name="keywords" content="toString()">
      +<meta name="keywords" content="equals()">
      +<meta name="keywords" content="hashCode()">
      +<meta name="keywords" content="isLinear()">
      +<meta name="keywords" content="getValue()">
      +<meta name="keywords" content="compareTo()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/MultiplyConverter.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li><a href="#nested-class-summary">Nested</a>&nbsp;|&nbsp;</li>
      +<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.function</a></div>
      +<h1 title="Class MultiplyConverter" class="title">Class MultiplyConverter</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance"><a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a>
      +<div class="inheritance">MultiplyConverter</div>
      +</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html" title="class or interface in java.lang" class="external-link">Comparable</a>&lt;<a href="../../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&gt;</code>, <code><a href="../../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public final class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/function/MultiplyConverter.html#line-47">MultiplyConverter</a></span>
      +<span class="extends-implements">extends <a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a>
      +implements <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html" title="class or interface in java.lang" class="external-link">Comparable</a>&lt;<a href="../../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&gt;</span></div>
      +<div class="block"><p>
      + This class represents a converter multiplying numeric values by a constant scaling factor (<code>double</code> based).
      + </p></div>
      +<dl class="notes">
      +<dt>Since:</dt>
      +<dd>2.0</dd>
      +<dt>Version:</dt>
      +<dd>1.1, June 28, 2019</dd>
      +<dt>Author:</dt>
      +<dd><a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>, <a href="mailto:werner@uom.technology">Werner Keil</a></dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== NESTED CLASS SUMMARY ======== -->
      +<li>
      +<section class="nested-class-summary" id="nested-class-summary">
      +<h2>Nested Class Summary</h2>
      +<div class="inherited-list">
      +<h2 id="nested-classes-inherited-from-class-javax.measure.test.TestConverter">Nested classes/interfaces inherited from class&nbsp;<a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a></h2>
      +<code><a href="../TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></code></div>
      +</section>
      +</li>
      +<!-- =========== FIELD SUMMARY =========== -->
      +<li>
      +<section class="field-summary" id="field-summary">
      +<h2>Field Summary</h2>
      +<div class="inherited-list">
      +<h3 id="fields-inherited-from-class-TestConverter">Fields inherited from class&nbsp;<a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a></h3>
      +<code><a href="../TestConverter.html#IDENTITY">IDENTITY</a></code></div>
      +</section>
      +</li>
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(double)" class="member-name-link">MultiplyConverter</a><wbr>(double&nbsp;factor)</code></div>
      +<div class="col-last even-row-color">
      +<div class="block">Creates a multiply converter with the specified scale factor.</div>
      +</div>
      +<div class="col-constructor-name odd-row-color"><code><a href="#%3Cinit%3E(java.lang.Number)" class="member-name-link">MultiplyConverter</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;factor)</code></div>
      +<div class="col-last odd-row-color">
      +<div class="block">Creates a multiply converter with the specified scale factor.</div>
      +</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>int</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#compareTo(javax.measure.UnitConverter)" class="member-name-link">compareTo</a><wbr>(<a href="../../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&nbsp;o)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#concatenate(javax.measure.UnitConverter)" class="member-name-link">concatenate</a><wbr>(<a href="../../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&nbsp;converter)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>double</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#convert(double)" class="member-name-link">convert</a><wbr>(double&nbsp;value)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#equals(java.lang.Object)" class="member-name-link">equals</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>&nbsp;obj)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>double</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getFactor()" class="member-name-link">getFactor</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Returns the scale factor of this converter.</div>
      +</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Double.html" title="class or interface in java.lang" class="external-link">Double</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getValue()" class="member-name-link">getValue</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>int</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#hashCode()" class="member-name-link">hashCode</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#inverse()" class="member-name-link">inverse</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#isLinear()" class="member-name-link">isLinear</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>final <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#toString()" class="member-name-link">toString</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-TestConverter">Methods inherited from class&nbsp;<a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a></h3>
      +<code><a href="../TestConverter.html#concatenate(javax.measure.test.TestConverter)">concatenate</a>, <a href="../TestConverter.html#convert(java.lang.Number)">convert</a>, <a href="../TestConverter.html#getConversionSteps()">getConversionSteps</a>, <a href="../TestConverter.html#isIdentity()">isIdentity</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;(double)">
      +<h3>MultiplyConverter</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/function/MultiplyConverter.html#line-62">MultiplyConverter</a></span><wbr><span class="parameters">(double&nbsp;factor)</span></div>
      +<div class="block">Creates a multiply converter with the specified scale factor.</div>
      +<dl class="notes">
      +<dt>Parameters:</dt>
      +<dd><code>factor</code> - the scaling factor.</dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html" title="class or interface in java.lang" class="external-link">IllegalArgumentException</a></code> - if coefficient is <code>1.0</code> (would result in identity converter)</dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.Number)">
      +<h3>MultiplyConverter</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/function/MultiplyConverter.html#line-76">MultiplyConverter</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;factor)</span></div>
      +<div class="block">Creates a multiply converter with the specified scale factor.</div>
      +<dl class="notes">
      +<dt>Parameters:</dt>
      +<dd><code>factor</code> - the scaling factor.</dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html" title="class or interface in java.lang" class="external-link">IllegalArgumentException</a></code> - if coefficient is <code>1.0</code> (would result in identity converter)</dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="getFactor()">
      +<h3>getFactor</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">double</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/function/MultiplyConverter.html#line-85">getFactor</a></span>()</div>
      +<div class="block">Returns the scale factor of this converter.</div>
      +<dl class="notes">
      +<dt>Returns:</dt>
      +<dd>the scale factor.</dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="concatenate(javax.measure.UnitConverter)">
      +<h3>concatenate</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/function/MultiplyConverter.html#line-89">concatenate</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&nbsp;converter)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/UnitConverter.html#concatenate(javax.measure.UnitConverter)" title="class or interface in javax.measure" class="external-link">concatenate</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="../TestConverter.html#concatenate(javax.measure.UnitConverter)">concatenate</a></code>&nbsp;in class&nbsp;<code><a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="inverse()">
      +<h3>inverse</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/function/MultiplyConverter.html#line-97">inverse</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/UnitConverter.html#inverse()" title="class or interface in javax.measure" class="external-link">inverse</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></dd>
      +<dt>Specified by:</dt>
      +<dd><code><a href="../TestConverter.html#inverse()">inverse</a></code>&nbsp;in class&nbsp;<code><a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="convert(double)">
      +<h3>convert</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">double</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/function/MultiplyConverter.html#line-102">convert</a></span><wbr><span class="parameters">(double&nbsp;value)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/UnitConverter.html#convert(double)" title="class or interface in javax.measure" class="external-link">convert</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></dd>
      +<dt>Specified by:</dt>
      +<dd><code><a href="../TestConverter.html#convert(double)">convert</a></code>&nbsp;in class&nbsp;<code><a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="toString()">
      +<h3>toString</h3>
      +<div class="member-signature"><span class="modifiers">public final</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/function/MultiplyConverter.html#line-107">toString</a></span>()</div>
      +<dl class="notes">
      +<dt>Overrides:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="equals(java.lang.Object)">
      +<h3>equals</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/function/MultiplyConverter.html#line-112">equals</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>&nbsp;obj)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../TestConverter.html#equals(java.lang.Object)">equals</a></code>&nbsp;in class&nbsp;<code><a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="hashCode()">
      +<h3>hashCode</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">int</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/function/MultiplyConverter.html#line-124">hashCode</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../TestConverter.html#hashCode()">hashCode</a></code>&nbsp;in class&nbsp;<code><a href="../TestConverter.html" title="class in javax.measure.test">TestConverter</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="isLinear()">
      +<h3>isLinear</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/function/MultiplyConverter.html#line-129">isLinear</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/UnitConverter.html#isLinear()" title="class or interface in javax.measure" class="external-link">isLinear</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getValue()">
      +<h3>getValue</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Double.html" title="class or interface in java.lang" class="external-link">Double</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/function/MultiplyConverter.html#line-134">getValue</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="compareTo(javax.measure.UnitConverter)">
      +<h3>compareTo</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">int</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/function/MultiplyConverter.html#line-138">compareTo</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&nbsp;o)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html#compareTo(T)" title="class or interface in java.lang" class="external-link">compareTo</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html" title="class or interface in java.lang" class="external-link">Comparable</a>&lt;<a href="../../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/function/class-use/MultiplyConverter.html b/docs/site/testapidocs/javax/measure/test/function/class-use/MultiplyConverter.html
      new file mode 100644
      index 00000000..b0ba9563
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/function/class-use/MultiplyConverter.html
      @@ -0,0 +1,87 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.function.MultiplyConverter (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.function, class: MultiplyConverter">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../MultiplyConverter.html" title="class in javax.measure.test.function">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.function.MultiplyConverter" class="title">Uses of Class<br>javax.measure.test.function.MultiplyConverter</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="../MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test.function">javax.measure.test.function</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<section class="class-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test.function">
      +<h2>Uses of <a href="../MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a> in <a href="../package-summary.html">javax.measure.test.function</a></h2>
      +<div class="caption"><span>Methods in <a href="../package-summary.html">javax.measure.test.function</a> that return <a href="../MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">MultiplyConverter.</span><code><a href="../MultiplyConverter.html#inverse()" class="member-name-link">inverse</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/function/package-summary.html b/docs/site/testapidocs/javax/measure/test/function/package-summary.html
      new file mode 100644
      index 00000000..ca5d5fb3
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/function/package-summary.html
      @@ -0,0 +1,108 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>javax.measure.test.function (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.function">
      +<meta name="generator" content="javadoc/PackageWriterImpl">
      +<meta name="keywords" content="javax.measure.test.function package">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-declaration-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li class="nav-bar-cell1-rev">Package</li>
      +<li>Class</li>
      +<li><a href="package-use.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#package">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Package:&nbsp;</li>
      +<li>Description&nbsp;|&nbsp;</li>
      +<li><a href="#related-package-summary">Related Packages</a>&nbsp;|&nbsp;</li>
      +<li><a href="#class-summary">Classes and Interfaces</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Package javax.measure.test.function" class="title">Package javax.measure.test.function</h1>
      +</div>
      +<hr>
      +<div class="package-signature">package <span class="element-name">javax.measure.test.function</span></div>
      +<section class="summary">
      +<ul class="summary-list">
      +<li>
      +<div id="related-package-summary">
      +<div class="caption"><span>Related Packages</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="../package-summary.html">javax.measure.test</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="../format/package-summary.html">javax.measure.test.format</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><a href="../quantity/package-summary.html">javax.measure.test.quantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="../unit/package-summary.html">javax.measure.test.unit</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</div>
      +</li>
      +<li>
      +<div id="class-summary">
      +<div class="caption"><span>Classes</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="MultiplyConverter.html" title="class in javax.measure.test.function">MultiplyConverter</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">
      +<div class="block">
      + This class represents a converter multiplying numeric values by a constant scaling factor (<code>double</code> based).</div>
      +</div>
      +</div>
      +</div>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/function/package-tree.html b/docs/site/testapidocs/javax/measure/test/function/package-tree.html
      new file mode 100644
      index 00000000..9fe09595
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/function/package-tree.html
      @@ -0,0 +1,80 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>javax.measure.test.function Class Hierarchy (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="tree: package: javax.measure.test.function">
      +<meta name="generator" content="javadoc/PackageTreeWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-tree-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li>Class</li>
      +<li>Use</li>
      +<li class="nav-bar-cell1-rev">Tree</li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#tree">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 class="title">Hierarchy For Package javax.measure.test.function</h1>
      +<span class="package-hierarchy-label">Package Hierarchies:</span>
      +<ul class="horizontal">
      +<li><a href="../../../../overview-tree.html">All Packages</a></li>
      +</ul>
      +</div>
      +<section class="hierarchy">
      +<h2 title="Class Hierarchy">Class Hierarchy</h2>
      +<ul>
      +<li class="circle"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" class="type-name-link external-link" title="class or interface in java.lang">Object</a>
      +<ul>
      +<li class="circle"><a href="../TestConverter.html" class="type-name-link" title="class in javax.measure.test">TestConverter</a> (implements <a href="../../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>)
      +<ul>
      +<li class="circle"><a href="MultiplyConverter.html" class="type-name-link" title="class in javax.measure.test.function">MultiplyConverter</a> (implements <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html" title="class or interface in java.lang" class="external-link">Comparable</a>&lt;T&gt;)</li>
      +</ul>
      +</li>
      +</ul>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/function/package-use.html b/docs/site/testapidocs/javax/measure/test/function/package-use.html
      new file mode 100644
      index 00000000..0e72c557
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/function/package-use.html
      @@ -0,0 +1,87 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Package javax.measure.test.function (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.function">
      +<meta name="generator" content="javadoc/PackageUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li>Class</li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Package javax.measure.test.function" class="title">Uses of Package<br>javax.measure.test.function</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="package-summary.html">javax.measure.test.function</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test.function">javax.measure.test.function</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<section class="package-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test.function">
      +<div class="caption"><span>Classes in <a href="package-summary.html">javax.measure.test.function</a> used by <a href="package-summary.html">javax.measure.test.function</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="class-use/MultiplyConverter.html#javax.measure.test.function">MultiplyConverter</a></div>
      +<div class="col-last even-row-color">
      +<div class="block">
      + This class represents a converter multiplying numeric values by a constant scaling factor (<code>double</code> based).</div>
      +</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/package-summary.html b/docs/site/testapidocs/javax/measure/test/package-summary.html
      new file mode 100644
      index 00000000..9eb44a15
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/package-summary.html
      @@ -0,0 +1,142 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>javax.measure.test (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test">
      +<meta name="generator" content="javadoc/PackageWriterImpl">
      +<meta name="keywords" content="javax.measure.test package">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-declaration-page">
      +<script type="text/javascript">var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li class="nav-bar-cell1-rev">Package</li>
      +<li>Class</li>
      +<li><a href="package-use.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#package">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Package:&nbsp;</li>
      +<li>Description&nbsp;|&nbsp;</li>
      +<li><a href="#related-package-summary">Related Packages</a>&nbsp;|&nbsp;</li>
      +<li><a href="#class-summary">Classes and Interfaces</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Package javax.measure.test" class="title">Package javax.measure.test</h1>
      +</div>
      +<hr>
      +<div class="package-signature">package <span class="element-name">javax.measure.test</span></div>
      +<section class="package-description">
      +<dl class="notes">
      +<dt>Author:</dt>
      +<dd>Werner</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<li>
      +<div id="related-package-summary">
      +<div class="caption"><span>Related Packages</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="format/package-summary.html">javax.measure.test.format</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="function/package-summary.html">javax.measure.test.function</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><a href="quantity/package-summary.html">javax.measure.test.quantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="unit/package-summary.html">javax.measure.test.unit</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</div>
      +</li>
      +<li>
      +<div id="class-summary">
      +<div class="caption"><span>Classes</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="BinaryPrefixTest.html" title="class in javax.measure.test">BinaryPrefixTest</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color class-summary class-summary-tab2"><a href="CalcTripLength.html" title="class in javax.measure.test">CalcTripLength</a></div>
      +<div class="col-last odd-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="CircleInfo.html" title="class in javax.measure.test">CircleInfo</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color class-summary class-summary-tab2"><a href="Conversions.html" title="class in javax.measure.test">Conversions</a></div>
      +<div class="col-last odd-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="ConverterTest.html" title="class in javax.measure.test">ConverterTest</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color class-summary class-summary-tab2"><a href="DimensionTest.html" title="class in javax.measure.test">DimensionTest</a></div>
      +<div class="col-last odd-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="ExceptionsTest.html" title="class in javax.measure.test">ExceptionsTest</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color class-summary class-summary-tab2"><a href="MetricPrefixTest.html" title="class in javax.measure.test">MetricPrefixTest</a></div>
      +<div class="col-last odd-row-color class-summary class-summary-tab2">
      +<div class="block">JUnit tests for the 24 prefixes used in the metric system (decimal multiples and submultiples of units).</div>
      +</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="TestConverter.html" title="class in javax.measure.test">TestConverter</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">
      +<div class="block">
      + Test class for our <a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link"><code>UnitConverter</code></a> implementations.</div>
      +</div>
      +<div class="col-first odd-row-color class-summary class-summary-tab2"><a href="TestConverter.Pair.html" title="class in javax.measure.test">TestConverter.Pair</a></div>
      +<div class="col-last odd-row-color class-summary class-summary-tab2">
      +<div class="block">This class represents converters made up of two or more separate converters (in matrix notation <code>[pair] = [left] x [right]</code>).</div>
      +</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;Q extends <a href="../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;&gt;</div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color class-summary class-summary-tab2"><a href="TripLeg.html" title="class in javax.measure.test">TripLeg</a></div>
      +<div class="col-last odd-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="UnitTest.html" title="class in javax.measure.test">UnitTest</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">&nbsp;</div>
      +</div>
      +</div>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/package-tree.html b/docs/site/testapidocs/javax/measure/test/package-tree.html
      new file mode 100644
      index 00000000..a4a39bff
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/package-tree.html
      @@ -0,0 +1,91 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>javax.measure.test Class Hierarchy (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="tree: package: javax.measure.test">
      +<meta name="generator" content="javadoc/PackageTreeWriter">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-tree-page">
      +<script type="text/javascript">var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li>Class</li>
      +<li>Use</li>
      +<li class="nav-bar-cell1-rev">Tree</li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#tree">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 class="title">Hierarchy For Package javax.measure.test</h1>
      +<span class="package-hierarchy-label">Package Hierarchies:</span>
      +<ul class="horizontal">
      +<li><a href="../../../overview-tree.html">All Packages</a></li>
      +</ul>
      +</div>
      +<section class="hierarchy">
      +<h2 title="Class Hierarchy">Class Hierarchy</h2>
      +<ul>
      +<li class="circle"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" class="type-name-link external-link" title="class or interface in java.lang">Object</a>
      +<ul>
      +<li class="circle"><a href="BinaryPrefixTest.html" class="type-name-link" title="class in javax.measure.test">BinaryPrefixTest</a></li>
      +<li class="circle"><a href="CalcTripLength.html" class="type-name-link" title="class in javax.measure.test">CalcTripLength</a></li>
      +<li class="circle"><a href="CircleInfo.html" class="type-name-link" title="class in javax.measure.test">CircleInfo</a></li>
      +<li class="circle"><a href="Conversions.html" class="type-name-link" title="class in javax.measure.test">Conversions</a></li>
      +<li class="circle"><a href="ConverterTest.html" class="type-name-link" title="class in javax.measure.test">ConverterTest</a></li>
      +<li class="circle"><a href="DimensionTest.html" class="type-name-link" title="class in javax.measure.test">DimensionTest</a></li>
      +<li class="circle"><a href="ExceptionsTest.html" class="type-name-link" title="class in javax.measure.test">ExceptionsTest</a></li>
      +<li class="circle"><a href="MetricPrefixTest.html" class="type-name-link" title="class in javax.measure.test">MetricPrefixTest</a></li>
      +<li class="circle"><a href="TestConverter.html" class="type-name-link" title="class in javax.measure.test">TestConverter</a> (implements <a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>)
      +<ul>
      +<li class="circle"><a href="TestConverter.Pair.html" class="type-name-link" title="class in javax.measure.test">TestConverter.Pair</a></li>
      +</ul>
      +</li>
      +<li class="circle"><a href="TestUnit.html" class="type-name-link" title="class in javax.measure.test">TestUnit</a>&lt;Q&gt; (implements <a href="../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;Q&gt;)</li>
      +<li class="circle"><a href="TripLeg.html" class="type-name-link" title="class in javax.measure.test">TripLeg</a></li>
      +<li class="circle"><a href="UnitTest.html" class="type-name-link" title="class in javax.measure.test">UnitTest</a></li>
      +</ul>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/package-use.html b/docs/site/testapidocs/javax/measure/test/package-use.html
      new file mode 100644
      index 00000000..d26bdb80
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/package-use.html
      @@ -0,0 +1,133 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Package javax.measure.test (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test">
      +<meta name="generator" content="javadoc/PackageUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../script.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li>Class</li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../index-all.html">Index</a></li>
      +<li><a href="../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Package javax.measure.test" class="title">Uses of Package<br>javax.measure.test</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="package-summary.html">javax.measure.test</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test">javax.measure.test</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="#javax.measure.test.function">javax.measure.test.function</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test.quantity">javax.measure.test.quantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="#javax.measure.test.unit">javax.measure.test.unit</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +<section class="package-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test">
      +<div class="caption"><span>Classes in <a href="package-summary.html">javax.measure.test</a> used by <a href="package-summary.html">javax.measure.test</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="class-use/TestConverter.html#javax.measure.test">TestConverter</a></div>
      +<div class="col-last even-row-color">
      +<div class="block">
      + Test class for our <a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link"><code>UnitConverter</code></a> implementations.</div>
      +</div>
      +<div class="col-first odd-row-color"><a href="class-use/TestConverter.Pair.html#javax.measure.test">TestConverter.Pair</a></div>
      +<div class="col-last odd-row-color">
      +<div class="block">This class represents converters made up of two or more separate converters (in matrix notation <code>[pair] = [left] x [right]</code>).</div>
      +</div>
      +</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="javax.measure.test.function">
      +<div class="caption"><span>Classes in <a href="package-summary.html">javax.measure.test</a> used by <a href="function/package-summary.html">javax.measure.test.function</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="class-use/TestConverter.html#javax.measure.test.function">TestConverter</a></div>
      +<div class="col-last even-row-color">
      +<div class="block">
      + Test class for our <a href="../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link"><code>UnitConverter</code></a> implementations.</div>
      +</div>
      +</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="javax.measure.test.quantity">
      +<div class="caption"><span>Classes in <a href="package-summary.html">javax.measure.test</a> used by <a href="quantity/package-summary.html">javax.measure.test.quantity</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="class-use/TestUnit.html#javax.measure.test.quantity">TestUnit</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="javax.measure.test.unit">
      +<div class="caption"><span>Classes in <a href="package-summary.html">javax.measure.test</a> used by <a href="unit/package-summary.html">javax.measure.test.unit</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="class-use/TestUnit.html#javax.measure.test.unit">TestUnit</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/AreaQuantity.html b/docs/site/testapidocs/javax/measure/test/quantity/AreaQuantity.html
      new file mode 100644
      index 00000000..eff229cd
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/AreaQuantity.html
      @@ -0,0 +1,489 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>AreaQuantity (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.quantity, class: AreaQuantity">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.quantity.AreaQuantity class">
      +<meta name="keywords" content="add()">
      +<meta name="keywords" content="subtract()">
      +<meta name="keywords" content="eq()">
      +<meta name="keywords" content="ne()">
      +<meta name="keywords" content="gt()">
      +<meta name="keywords" content="lt()">
      +<meta name="keywords" content="ge()">
      +<meta name="keywords" content="le()">
      +<meta name="keywords" content="multiply()">
      +<meta name="keywords" content="divide()">
      +<meta name="keywords" content="convert()">
      +<meta name="keywords" content="showInUnits()">
      +<meta name="keywords" content="to()">
      +<meta name="keywords" content="inverse()">
      +<meta name="keywords" content="asType()">
      +<meta name="keywords" content="negate()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/AreaQuantity.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li><a href="#nested-class-summary">Nested</a>&nbsp;|&nbsp;</li>
      +<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.quantity</a></div>
      +<h1 title="Class AreaQuantity" class="title">Class AreaQuantity</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance"><a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;
      +<div class="inheritance">AreaQuantity</div>
      +</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html" title="class or interface in java.lang" class="external-link">Comparable</a>&lt;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;&gt;</code>, <code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code>, <code><a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a></code></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-43">AreaQuantity</a></span>
      +<span class="extends-implements">extends <a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;
      +implements <a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a></span></div>
      +<dl class="notes">
      +<dt>Version:</dt>
      +<dd>0.7</dd>
      +<dt>Author:</dt>
      +<dd>Werner Keil</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== NESTED CLASS SUMMARY ======== -->
      +<li>
      +<section class="nested-class-summary" id="nested-class-summary">
      +<h2>Nested Class Summary</h2>
      +<div class="inherited-list">
      +<h2 id="nested-classes-inherited-from-class-javax.measure.Quantity">Nested classes/interfaces inherited from interface&nbsp;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a></h2>
      +<code><a href="../../../../../apidocs/javax/measure/Quantity.Scale.html" title="class or interface in javax.measure" class="external-link">Quantity.Scale</a></code></div>
      +</section>
      +</li>
      +<!-- =========== FIELD SUMMARY =========== -->
      +<li>
      +<section class="field-summary" id="field-summary">
      +<h2>Field Summary</h2>
      +<div class="inherited-list">
      +<h3 id="fields-inherited-from-class-TestQuantity">Fields inherited from class&nbsp;<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></h3>
      +<code><a href="TestQuantity.html#ONE">ONE</a>, <a href="TestQuantity.html#scalar">scalar</a>, <a href="TestQuantity.html#unit">unit</a>, <a href="TestQuantity.html#value">value</a></code></div>
      +</section>
      +</li>
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">AreaQuantity</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-constructor-name odd-row-color"><code><a href="#%3Cinit%3E(double,javax.measure.test.unit.AreaUnit)" class="member-name-link">AreaQuantity</a><wbr>(double&nbsp;val,
      + <a href="../unit/AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a>&nbsp;un)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.Number,javax.measure.Unit)" class="member-name-link">AreaQuantity</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;val,
      + <a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&nbsp;u)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#add(javax.measure.Quantity)" class="member-name-link">add</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#add(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">add</a><wbr>(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>final &lt;T extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;&gt;<br><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#asType(java.lang.Class)" class="member-name-link">asType</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;T&gt;&nbsp;type)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#convert(javax.measure.test.unit.AreaUnit)" class="member-name-link">convert</a><wbr>(<a href="../unit/AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a>&nbsp;newUnit)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(double)" class="member-name-link">divide</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(java.lang.Number)" class="member-name-link">divide</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(javax.measure.Quantity)" class="member-name-link">divide</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">divide</a><wbr>(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#eq(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">eq</a><wbr>(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#ge(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">ge</a><wbr>(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#gt(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">gt</a><wbr>(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#inverse()" class="member-name-link">inverse</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#le(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">le</a><wbr>(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#lt(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">lt</a><wbr>(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(double)" class="member-name-link">multiply</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(java.lang.Number)" class="member-name-link">multiply</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(javax.measure.Quantity)" class="member-name-link">multiply</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">multiply</a><wbr>(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#ne(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">ne</a><wbr>(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#negate()" class="member-name-link">negate</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#showInUnits(javax.measure.test.unit.AreaUnit,int)" class="member-name-link">showInUnits</a><wbr>(<a href="../unit/AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a>&nbsp;u,
      + int&nbsp;precision)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#subtract(javax.measure.Quantity)" class="member-name-link">subtract</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#subtract(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">subtract</a><wbr>(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#to(javax.measure.Unit)" class="member-name-link">to</a><wbr>(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;&nbsp;unit)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-TestQuantity">Methods inherited from class&nbsp;<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></h3>
      +<code><a href="TestQuantity.html#add(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)">add</a>, <a href="TestQuantity.html#compareTo(javax.measure.Quantity)">compareTo</a>, <a href="TestQuantity.html#eq(javax.measure.test.quantity.TestQuantity)">eq</a>, <a href="TestQuantity.html#ge(javax.measure.test.quantity.TestQuantity)">ge</a>, <a href="TestQuantity.html#getScale()">getScale</a>, <a href="TestQuantity.html#getType()">getType</a>, <a href="TestQuantity.html#getUnit()">getUnit</a>, <a href="TestQuantity.html#getValue()">getValue</a>, <a href="TestQuantity.html#gt(javax.measure.test.quantity.TestQuantity)">gt</a>, <a href="TestQuantity.html#isEquivalentTo(javax.measure.Quantity)">isEquivalentTo</a>, <a href="TestQuantity.html#le(javax.measure.test.quantity.TestQuantity)">le</a>, <a href="TestQuantity.html#lt(javax.measure.test.quantity.TestQuantity)">lt</a>, <a href="TestQuantity.html#ne(javax.measure.test.quantity.TestQuantity)">ne</a>, <a href="TestQuantity.html#showInUnits(javax.measure.test.TestUnit,int)">showInUnits</a>, <a href="TestQuantity.html#subtract(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)">subtract</a>, <a href="TestQuantity.html#toString()">toString</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Quantity">Methods inherited from interface&nbsp;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a></h3>
      +<code><a href="../../../../../apidocs/javax/measure/Quantity.html#getScale()" title="class or interface in javax.measure" class="external-link">getScale</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#getUnit()" title="class or interface in javax.measure" class="external-link">getUnit</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#getValue()" title="class or interface in javax.measure" class="external-link">getValue</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#isEquivalentTo(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">isEquivalentTo</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#toSystemUnit()" title="class or interface in javax.measure" class="external-link">toSystemUnit</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>AreaQuantity</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-44">AreaQuantity</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="&lt;init&gt;(double,javax.measure.test.unit.AreaUnit)">
      +<h3>AreaQuantity</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-48">AreaQuantity</a></span><wbr><span class="parameters">(double&nbsp;val,
      + <a href="../unit/AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a>&nbsp;un)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.Number,javax.measure.Unit)">
      +<h3>AreaQuantity</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-55">AreaQuantity</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;val,
      + <a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&nbsp;u)</span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="add(javax.measure.test.quantity.AreaQuantity)">
      +<h3>add</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-59">add</a></span><wbr><span class="parameters">(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="subtract(javax.measure.test.quantity.AreaQuantity)">
      +<h3>subtract</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-65">subtract</a></span><wbr><span class="parameters">(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="eq(javax.measure.test.quantity.AreaQuantity)">
      +<h3>eq</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-71">eq</a></span><wbr><span class="parameters">(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="ne(javax.measure.test.quantity.AreaQuantity)">
      +<h3>ne</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-75">ne</a></span><wbr><span class="parameters">(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="gt(javax.measure.test.quantity.AreaQuantity)">
      +<h3>gt</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-79">gt</a></span><wbr><span class="parameters">(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="lt(javax.measure.test.quantity.AreaQuantity)">
      +<h3>lt</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-83">lt</a></span><wbr><span class="parameters">(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="ge(javax.measure.test.quantity.AreaQuantity)">
      +<h3>ge</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-87">ge</a></span><wbr><span class="parameters">(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="le(javax.measure.test.quantity.AreaQuantity)">
      +<h3>le</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-91">le</a></span><wbr><span class="parameters">(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(double)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-95">multiply</a></span><wbr><span class="parameters">(double&nbsp;v)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(double)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-99">divide</a></span><wbr><span class="parameters">(double&nbsp;v)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(javax.measure.test.quantity.DistanceQuantity)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-105">divide</a></span><wbr><span class="parameters">(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(javax.measure.test.quantity.DistanceQuantity)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-111">multiply</a></span><wbr><span class="parameters">(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="convert(javax.measure.test.unit.AreaUnit)">
      +<h3>convert</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-117">convert</a></span><wbr><span class="parameters">(<a href="../unit/AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a>&nbsp;newUnit)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="showInUnits(javax.measure.test.unit.AreaUnit,int)">
      +<h3>showInUnits</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-121">showInUnits</a></span><wbr><span class="parameters">(<a href="../unit/AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a>&nbsp;u,
      + int&nbsp;precision)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(java.lang.Number)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-125">multiply</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#multiply(java.lang.Number)" title="class or interface in javax.measure" class="external-link">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(javax.measure.Quantity)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-130">divide</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#divide(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">divide</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="to(javax.measure.Unit)">
      +<h3>to</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-135">to</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;&nbsp;unit)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#to(javax.measure.Unit)" title="class or interface in javax.measure" class="external-link">to</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="subtract(javax.measure.Quantity)">
      +<h3>subtract</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-140">subtract</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#subtract(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">subtract</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="add(javax.measure.Quantity)">
      +<h3>add</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-145">add</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#add(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">add</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(java.lang.Number)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-149">divide</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#divide(java.lang.Number)" title="class or interface in javax.measure" class="external-link">divide</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="inverse()">
      +<h3>inverse</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-153">inverse</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#inverse()" title="class or interface in javax.measure" class="external-link">inverse</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(javax.measure.Quantity)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-158">multiply</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#multiply(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="asType(java.lang.Class)">
      +<h3>asType</h3>
      +<div class="member-signature"><span class="modifiers">public final</span>&nbsp;<span class="type-parameters">&lt;T extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;&gt;</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-165">asType</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;T&gt;&nbsp;type)</span>
      +                                                 throws <span class="exceptions"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/ClassCastException.html" title="class or interface in java.lang" class="external-link">ClassCastException</a></span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#asType(java.lang.Class)" title="class or interface in javax.measure" class="external-link">asType</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/ClassCastException.html" title="class or interface in java.lang" class="external-link">ClassCastException</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="negate()">
      +<h3>negate</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantity.html#line-172">negate</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#negate()" title="class or interface in javax.measure" class="external-link">negate</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/AreaQuantityTest.html b/docs/site/testapidocs/javax/measure/test/quantity/AreaQuantityTest.html
      new file mode 100644
      index 00000000..6178463f
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/AreaQuantityTest.html
      @@ -0,0 +1,357 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>AreaQuantityTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.quantity, class: AreaQuantityTest">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.quantity.AreaQuantityTest class">
      +<meta name="keywords" content="setUp()">
      +<meta name="keywords" content="testAreaQuantity()">
      +<meta name="keywords" content="testAdd()">
      +<meta name="keywords" content="testSubtract()">
      +<meta name="keywords" content="testEq()">
      +<meta name="keywords" content="testGt()">
      +<meta name="keywords" content="testLt()">
      +<meta name="keywords" content="testGe()">
      +<meta name="keywords" content="testLe()">
      +<meta name="keywords" content="testMultiplyDouble()">
      +<meta name="keywords" content="testDivideDouble()">
      +<meta name="keywords" content="testDivideDistanceQuantity()">
      +<meta name="keywords" content="testMultiplyDistanceQuantity()">
      +<meta name="keywords" content="testConvert()">
      +<meta name="keywords" content="testShowInUnits()">
      +<meta name="keywords" content="testToSystemUnit()">
      +<meta name="keywords" content="testNegate()">
      +<meta name="keywords" content="testScale()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/AreaQuantityTest.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.quantity</a></div>
      +<h1 title="Class AreaQuantityTest" class="title">Class AreaQuantityTest</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">AreaQuantityTest</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-48">AreaQuantityTest</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +<dl class="notes">
      +<dt>Author:</dt>
      +<dd>Werner Keil</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">AreaQuantityTest</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setUp()" class="member-name-link">setUp</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testAdd()" class="member-name-link">testAdd</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testAreaQuantity()" class="member-name-link">testAreaQuantity</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testConvert()" class="member-name-link">testConvert</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testDivideDistanceQuantity()" class="member-name-link">testDivideDistanceQuantity</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testDivideDouble()" class="member-name-link">testDivideDouble</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testEq()" class="member-name-link">testEq</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testGe()" class="member-name-link">testGe</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testGt()" class="member-name-link">testGt</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testLe()" class="member-name-link">testLe</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testLt()" class="member-name-link">testLt</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMultiplyDistanceQuantity()" class="member-name-link">testMultiplyDistanceQuantity</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMultiplyDouble()" class="member-name-link">testMultiplyDouble</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testNegate()" class="member-name-link">testNegate</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testScale()" class="member-name-link">testScale</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testShowInUnits()" class="member-name-link">testShowInUnits</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testSubtract()" class="member-name-link">testSubtract</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testToSystemUnit()" class="member-name-link">testToSystemUnit</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>AreaQuantityTest</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-48">AreaQuantityTest</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="setUp()">
      +<h3>setUp</h3>
      +<div class="member-signature"><span class="annotations">@BeforeEach
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-53">setUp</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testAreaQuantity()">
      +<h3>testAreaQuantity</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-59">testAreaQuantity</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testAdd()">
      +<h3>testAdd</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-64">testAdd</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testSubtract()">
      +<h3>testSubtract</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-71">testSubtract</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testEq()">
      +<h3>testEq</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-78">testEq</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testGt()">
      +<h3>testGt</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-84">testGt</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testLt()">
      +<h3>testLt</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-90">testLt</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testGe()">
      +<h3>testGe</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-96">testGe</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testLe()">
      +<h3>testLe</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-104">testLe</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMultiplyDouble()">
      +<h3>testMultiplyDouble</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-112">testMultiplyDouble</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testDivideDouble()">
      +<h3>testDivideDouble</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-118">testDivideDouble</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testDivideDistanceQuantity()">
      +<h3>testDivideDistanceQuantity</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-124">testDivideDistanceQuantity</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMultiplyDistanceQuantity()">
      +<h3>testMultiplyDistanceQuantity</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-131">testMultiplyDistanceQuantity</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testConvert()">
      +<h3>testConvert</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-141">testConvert</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testShowInUnits()">
      +<h3>testShowInUnits</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-147">testShowInUnits</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testToSystemUnit()">
      +<h3>testToSystemUnit</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-153">testToSystemUnit</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testNegate()">
      +<h3>testNegate</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-158">testNegate</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testScale()">
      +<h3>testScale</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/AreaQuantityTest.html#line-163">testScale</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/CircleInfo.html b/docs/site/testapidocs/javax/measure/test/quantity/CircleInfo.html
      new file mode 100644
      index 00000000..62080e66
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/CircleInfo.html
      @@ -0,0 +1,169 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>CircleInfo (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.quantity, class: CircleInfo">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.quantity.CircleInfo class">
      +<meta name="keywords" content="main()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/CircleInfo.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.quantity</a></div>
      +<h1 title="Class CircleInfo" class="title">Class CircleInfo</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">CircleInfo</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/CircleInfo.html#line-34">CircleInfo</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">CircleInfo</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab1" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab1', 3)" class="table-tab">Static Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code>static void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code><a href="#main(java.lang.String%5B%5D)" class="member-name-link">main</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]&nbsp;args)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>CircleInfo</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/CircleInfo.html#line-34">CircleInfo</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="main(java.lang.String[])">
      +<h3>main</h3>
      +<div class="member-signature"><span class="modifiers">public static</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/CircleInfo.html#line-39">main</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[]&nbsp;args)</span></div>
      +<dl class="notes">
      +<dt>Parameters:</dt>
      +<dd><code>args</code> - arguments</dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/DistanceQuantity.html b/docs/site/testapidocs/javax/measure/test/quantity/DistanceQuantity.html
      new file mode 100644
      index 00000000..cf3d5651
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/DistanceQuantity.html
      @@ -0,0 +1,498 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>DistanceQuantity (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.quantity, class: DistanceQuantity">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.quantity.DistanceQuantity class">
      +<meta name="keywords" content="add()">
      +<meta name="keywords" content="subtract()">
      +<meta name="keywords" content="eq()">
      +<meta name="keywords" content="ne()">
      +<meta name="keywords" content="gt()">
      +<meta name="keywords" content="lt()">
      +<meta name="keywords" content="ge()">
      +<meta name="keywords" content="le()">
      +<meta name="keywords" content="multiply()">
      +<meta name="keywords" content="divide()">
      +<meta name="keywords" content="convert()">
      +<meta name="keywords" content="showInUnits()">
      +<meta name="keywords" content="to()">
      +<meta name="keywords" content="inverse()">
      +<meta name="keywords" content="negate()">
      +<meta name="keywords" content="asType()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/DistanceQuantity.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li><a href="#nested-class-summary">Nested</a>&nbsp;|&nbsp;</li>
      +<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.quantity</a></div>
      +<h1 title="Class DistanceQuantity" class="title">Class DistanceQuantity</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance"><a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;
      +<div class="inheritance">DistanceQuantity</div>
      +</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html" title="class or interface in java.lang" class="external-link">Comparable</a>&lt;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;&gt;</code>, <code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code>, <code><a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a></code></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-44">DistanceQuantity</a></span>
      +<span class="extends-implements">extends <a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;
      +implements <a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a></span></div>
      +<dl class="notes">
      +<dt>Version:</dt>
      +<dd>0.7</dd>
      +<dt>Author:</dt>
      +<dd>Werner Keil</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== NESTED CLASS SUMMARY ======== -->
      +<li>
      +<section class="nested-class-summary" id="nested-class-summary">
      +<h2>Nested Class Summary</h2>
      +<div class="inherited-list">
      +<h2 id="nested-classes-inherited-from-class-javax.measure.Quantity">Nested classes/interfaces inherited from interface&nbsp;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a></h2>
      +<code><a href="../../../../../apidocs/javax/measure/Quantity.Scale.html" title="class or interface in javax.measure" class="external-link">Quantity.Scale</a></code></div>
      +</section>
      +</li>
      +<!-- =========== FIELD SUMMARY =========== -->
      +<li>
      +<section class="field-summary" id="field-summary">
      +<h2>Field Summary</h2>
      +<div class="inherited-list">
      +<h3 id="fields-inherited-from-class-TestQuantity">Fields inherited from class&nbsp;<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></h3>
      +<code><a href="TestQuantity.html#ONE">ONE</a>, <a href="TestQuantity.html#scalar">scalar</a>, <a href="TestQuantity.html#unit">unit</a>, <a href="TestQuantity.html#value">value</a></code></div>
      +</section>
      +</li>
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">DistanceQuantity</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-constructor-name odd-row-color"><code><a href="#%3Cinit%3E(double,javax.measure.test.unit.DistanceUnit)" class="member-name-link">DistanceQuantity</a><wbr>(double&nbsp;val,
      + <a href="../unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a>&nbsp;un)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.Number,javax.measure.Unit)" class="member-name-link">DistanceQuantity</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;val,
      + <a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&nbsp;un)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#add(javax.measure.Quantity)" class="member-name-link">add</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#add(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">add</a><wbr>(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>final &lt;T extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;&gt;<br><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#asType(java.lang.Class)" class="member-name-link">asType</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;T&gt;&nbsp;type)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#convert(javax.measure.test.unit.DistanceUnit)" class="member-name-link">convert</a><wbr>(<a href="../unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a>&nbsp;newUnit)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(double)" class="member-name-link">divide</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(java.lang.Number)" class="member-name-link">divide</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(javax.measure.Quantity)" class="member-name-link">divide</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#eq(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">eq</a><wbr>(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#ge(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">ge</a><wbr>(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#gt(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">gt</a><wbr>(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#inverse()" class="member-name-link">inverse</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#le(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">le</a><wbr>(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#lt(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">lt</a><wbr>(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(double)" class="member-name-link">multiply</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(java.lang.Number)" class="member-name-link">multiply</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(javax.measure.quantity.Length)" class="member-name-link">multiply</a><wbr>(<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&nbsp;l)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(javax.measure.Quantity)" class="member-name-link">multiply</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">multiply</a><wbr>(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;a1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">multiply</a><wbr>(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#ne(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">ne</a><wbr>(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#negate()" class="member-name-link">negate</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#showInUnits(javax.measure.test.unit.DistanceUnit,int)" class="member-name-link">showInUnits</a><wbr>(<a href="../unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a>&nbsp;u,
      + int&nbsp;precision)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#subtract(javax.measure.Quantity)" class="member-name-link">subtract</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#subtract(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">subtract</a><wbr>(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#to(javax.measure.Unit)" class="member-name-link">to</a><wbr>(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;&nbsp;unit)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-TestQuantity">Methods inherited from class&nbsp;<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></h3>
      +<code><a href="TestQuantity.html#add(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)">add</a>, <a href="TestQuantity.html#compareTo(javax.measure.Quantity)">compareTo</a>, <a href="TestQuantity.html#eq(javax.measure.test.quantity.TestQuantity)">eq</a>, <a href="TestQuantity.html#ge(javax.measure.test.quantity.TestQuantity)">ge</a>, <a href="TestQuantity.html#getScale()">getScale</a>, <a href="TestQuantity.html#getType()">getType</a>, <a href="TestQuantity.html#getUnit()">getUnit</a>, <a href="TestQuantity.html#getValue()">getValue</a>, <a href="TestQuantity.html#gt(javax.measure.test.quantity.TestQuantity)">gt</a>, <a href="TestQuantity.html#isEquivalentTo(javax.measure.Quantity)">isEquivalentTo</a>, <a href="TestQuantity.html#le(javax.measure.test.quantity.TestQuantity)">le</a>, <a href="TestQuantity.html#lt(javax.measure.test.quantity.TestQuantity)">lt</a>, <a href="TestQuantity.html#ne(javax.measure.test.quantity.TestQuantity)">ne</a>, <a href="TestQuantity.html#showInUnits(javax.measure.test.TestUnit,int)">showInUnits</a>, <a href="TestQuantity.html#subtract(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)">subtract</a>, <a href="TestQuantity.html#toString()">toString</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Quantity">Methods inherited from interface&nbsp;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a></h3>
      +<code><a href="../../../../../apidocs/javax/measure/Quantity.html#getScale()" title="class or interface in javax.measure" class="external-link">getScale</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#getUnit()" title="class or interface in javax.measure" class="external-link">getUnit</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#getValue()" title="class or interface in javax.measure" class="external-link">getValue</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#isEquivalentTo(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">isEquivalentTo</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#toSystemUnit()" title="class or interface in javax.measure" class="external-link">toSystemUnit</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;(double,javax.measure.test.unit.DistanceUnit)">
      +<h3>DistanceQuantity</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-46">DistanceQuantity</a></span><wbr><span class="parameters">(double&nbsp;val,
      + <a href="../unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a>&nbsp;un)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.Number,javax.measure.Unit)">
      +<h3>DistanceQuantity</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-53">DistanceQuantity</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;val,
      + <a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&nbsp;un)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>DistanceQuantity</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-57">DistanceQuantity</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="add(javax.measure.test.quantity.DistanceQuantity)">
      +<h3>add</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-68">add</a></span><wbr><span class="parameters">(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="subtract(javax.measure.test.quantity.DistanceQuantity)">
      +<h3>subtract</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-74">subtract</a></span><wbr><span class="parameters">(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="eq(javax.measure.test.quantity.DistanceQuantity)">
      +<h3>eq</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-80">eq</a></span><wbr><span class="parameters">(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="ne(javax.measure.test.quantity.DistanceQuantity)">
      +<h3>ne</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-84">ne</a></span><wbr><span class="parameters">(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="gt(javax.measure.test.quantity.DistanceQuantity)">
      +<h3>gt</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-88">gt</a></span><wbr><span class="parameters">(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="lt(javax.measure.test.quantity.DistanceQuantity)">
      +<h3>lt</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-92">lt</a></span><wbr><span class="parameters">(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="ge(javax.measure.test.quantity.DistanceQuantity)">
      +<h3>ge</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-96">ge</a></span><wbr><span class="parameters">(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="le(javax.measure.test.quantity.DistanceQuantity)">
      +<h3>le</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-100">le</a></span><wbr><span class="parameters">(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(double)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-104">multiply</a></span><wbr><span class="parameters">(double&nbsp;v)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(double)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-108">divide</a></span><wbr><span class="parameters">(double&nbsp;v)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(javax.measure.test.quantity.DistanceQuantity)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-113">multiply</a></span><wbr><span class="parameters">(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(javax.measure.test.quantity.AreaQuantity)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-119">multiply</a></span><wbr><span class="parameters">(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;a1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="convert(javax.measure.test.unit.DistanceUnit)">
      +<h3>convert</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-134">convert</a></span><wbr><span class="parameters">(<a href="../unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a>&nbsp;newUnit)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="showInUnits(javax.measure.test.unit.DistanceUnit,int)">
      +<h3>showInUnits</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-138">showInUnits</a></span><wbr><span class="parameters">(<a href="../unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a>&nbsp;u,
      + int&nbsp;precision)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(javax.measure.Quantity)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-142">divide</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#divide(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">divide</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="to(javax.measure.Unit)">
      +<h3>to</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-147">to</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;&nbsp;unit)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#to(javax.measure.Unit)" title="class or interface in javax.measure" class="external-link">to</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="subtract(javax.measure.Quantity)">
      +<h3>subtract</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-152">subtract</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#subtract(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">subtract</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="add(javax.measure.Quantity)">
      +<h3>add</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-157">add</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#add(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">add</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(java.lang.Number)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-161">divide</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#divide(java.lang.Number)" title="class or interface in javax.measure" class="external-link">divide</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="inverse()">
      +<h3>inverse</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-165">inverse</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#inverse()" title="class or interface in javax.measure" class="external-link">inverse</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="negate()">
      +<h3>negate</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-170">negate</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#negate()" title="class or interface in javax.measure" class="external-link">negate</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(java.lang.Number)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-175">multiply</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#multiply(java.lang.Number)" title="class or interface in javax.measure" class="external-link">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(javax.measure.Quantity)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-180">multiply</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#multiply(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="asType(java.lang.Class)">
      +<h3>asType</h3>
      +<div class="member-signature"><span class="modifiers">public final</span>&nbsp;<span class="type-parameters">&lt;T extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;&gt;</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-185">asType</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;T&gt;&nbsp;type)</span>
      +                                                 throws <span class="exceptions"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/ClassCastException.html" title="class or interface in java.lang" class="external-link">ClassCastException</a></span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#asType(java.lang.Class)" title="class or interface in javax.measure" class="external-link">asType</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/ClassCastException.html" title="class or interface in java.lang" class="external-link">ClassCastException</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(javax.measure.quantity.Length)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantity.html#line-192">multiply</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&nbsp;l)</span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/DistanceQuantityTest.html b/docs/site/testapidocs/javax/measure/test/quantity/DistanceQuantityTest.html
      new file mode 100644
      index 00000000..8ffd08af
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/DistanceQuantityTest.html
      @@ -0,0 +1,346 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>DistanceQuantityTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.quantity, class: DistanceQuantityTest">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.quantity.DistanceQuantityTest class">
      +<meta name="keywords" content="setUp()">
      +<meta name="keywords" content="testAreaQuantity()">
      +<meta name="keywords" content="testAdd()">
      +<meta name="keywords" content="testSubtract()">
      +<meta name="keywords" content="testEq()">
      +<meta name="keywords" content="testGt()">
      +<meta name="keywords" content="testLt()">
      +<meta name="keywords" content="testGe()">
      +<meta name="keywords" content="testLe()">
      +<meta name="keywords" content="testMultiplyDouble()">
      +<meta name="keywords" content="testDivideDouble()">
      +<meta name="keywords" content="testMultiplyDistanceQuantity()">
      +<meta name="keywords" content="testConvert()">
      +<meta name="keywords" content="testShowInUnits()">
      +<meta name="keywords" content="testToSystemUnit()">
      +<meta name="keywords" content="testNegate()">
      +<meta name="keywords" content="testAbsolute()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/DistanceQuantityTest.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.quantity</a></div>
      +<h1 title="Class DistanceQuantityTest" class="title">Class DistanceQuantityTest</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">DistanceQuantityTest</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-47">DistanceQuantityTest</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +<dl class="notes">
      +<dt>Author:</dt>
      +<dd>Werner Keil</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">DistanceQuantityTest</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setUp()" class="member-name-link">setUp</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testAbsolute()" class="member-name-link">testAbsolute</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testAdd()" class="member-name-link">testAdd</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testAreaQuantity()" class="member-name-link">testAreaQuantity</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testConvert()" class="member-name-link">testConvert</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testDivideDouble()" class="member-name-link">testDivideDouble</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testEq()" class="member-name-link">testEq</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testGe()" class="member-name-link">testGe</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testGt()" class="member-name-link">testGt</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testLe()" class="member-name-link">testLe</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testLt()" class="member-name-link">testLt</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMultiplyDistanceQuantity()" class="member-name-link">testMultiplyDistanceQuantity</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMultiplyDouble()" class="member-name-link">testMultiplyDouble</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testNegate()" class="member-name-link">testNegate</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testShowInUnits()" class="member-name-link">testShowInUnits</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testSubtract()" class="member-name-link">testSubtract</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testToSystemUnit()" class="member-name-link">testToSystemUnit</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>DistanceQuantityTest</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-47">DistanceQuantityTest</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="setUp()">
      +<h3>setUp</h3>
      +<div class="member-signature"><span class="annotations">@BeforeEach
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-52">setUp</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testAreaQuantity()">
      +<h3>testAreaQuantity</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-58">testAreaQuantity</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testAdd()">
      +<h3>testAdd</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-63">testAdd</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testSubtract()">
      +<h3>testSubtract</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-70">testSubtract</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testEq()">
      +<h3>testEq</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-77">testEq</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testGt()">
      +<h3>testGt</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-83">testGt</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testLt()">
      +<h3>testLt</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-89">testLt</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testGe()">
      +<h3>testGe</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-95">testGe</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testLe()">
      +<h3>testLe</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-103">testLe</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMultiplyDouble()">
      +<h3>testMultiplyDouble</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-111">testMultiplyDouble</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testDivideDouble()">
      +<h3>testDivideDouble</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-117">testDivideDouble</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMultiplyDistanceQuantity()">
      +<h3>testMultiplyDistanceQuantity</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-123">testMultiplyDistanceQuantity</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testConvert()">
      +<h3>testConvert</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-133">testConvert</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testShowInUnits()">
      +<h3>testShowInUnits</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-139">testShowInUnits</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testToSystemUnit()">
      +<h3>testToSystemUnit</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-145">testToSystemUnit</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testNegate()">
      +<h3>testNegate</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-150">testNegate</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testAbsolute()">
      +<h3>testAbsolute</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/DistanceQuantityTest.html#line-155">testAbsolute</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/TemperatureQuantity.html b/docs/site/testapidocs/javax/measure/test/quantity/TemperatureQuantity.html
      new file mode 100644
      index 00000000..f781dfb6
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/TemperatureQuantity.html
      @@ -0,0 +1,513 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>TemperatureQuantity (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.quantity, class: TemperatureQuantity">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.quantity.TemperatureQuantity class">
      +<meta name="keywords" content="isZero()">
      +<meta name="keywords" content="add()">
      +<meta name="keywords" content="subtract()">
      +<meta name="keywords" content="eq()">
      +<meta name="keywords" content="divide()">
      +<meta name="keywords" content="convert()">
      +<meta name="keywords" content="getScalar()">
      +<meta name="keywords" content="toString()">
      +<meta name="keywords" content="getValue()">
      +<meta name="keywords" content="getUnit()">
      +<meta name="keywords" content="multiply()">
      +<meta name="keywords" content="inverse()">
      +<meta name="keywords" content="doubleValue()">
      +<meta name="keywords" content="to()">
      +<meta name="keywords" content="compareTo()">
      +<meta name="keywords" content="negate()">
      +<meta name="keywords" content="asType()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/TemperatureQuantity.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li><a href="#nested-class-summary">Nested</a>&nbsp;|&nbsp;</li>
      +<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.quantity</a></div>
      +<h1 title="Class TemperatureQuantity" class="title">Class TemperatureQuantity</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance"><a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;
      +<div class="inheritance">TemperatureQuantity</div>
      +</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html" title="class or interface in java.lang" class="external-link">Comparable</a>&lt;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;&gt;</code>, <code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code>, <code><a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a></code></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public final class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-43">TemperatureQuantity</a></span>
      +<span class="extends-implements">extends <a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;
      +implements <a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a></span></div>
      +<dl class="notes">
      +<dt>Version:</dt>
      +<dd>1.3, $Date: 2018-12-17 $</dd>
      +<dt>Author:</dt>
      +<dd>Werner Keil</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== NESTED CLASS SUMMARY ======== -->
      +<li>
      +<section class="nested-class-summary" id="nested-class-summary">
      +<h2>Nested Class Summary</h2>
      +<div class="inherited-list">
      +<h2 id="nested-classes-inherited-from-class-javax.measure.Quantity">Nested classes/interfaces inherited from interface&nbsp;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a></h2>
      +<code><a href="../../../../../apidocs/javax/measure/Quantity.Scale.html" title="class or interface in javax.measure" class="external-link">Quantity.Scale</a></code></div>
      +</section>
      +</li>
      +<!-- =========== FIELD SUMMARY =========== -->
      +<li>
      +<section class="field-summary" id="field-summary">
      +<h2>Field Summary</h2>
      +<div class="inherited-list">
      +<h3 id="fields-inherited-from-class-TestQuantity">Fields inherited from class&nbsp;<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></h3>
      +<code><a href="TestQuantity.html#ONE">ONE</a>, <a href="TestQuantity.html#scalar">scalar</a>, <a href="TestQuantity.html#unit">unit</a>, <a href="TestQuantity.html#value">value</a></code></div>
      +</section>
      +</li>
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(double,javax.measure.test.unit.TemperatureUnit)" class="member-name-link">TemperatureQuantity</a><wbr>(double&nbsp;val,
      + <a href="../unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a>&nbsp;un)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-constructor-name odd-row-color"><code><a href="#%3Cinit%3E(java.lang.Number,javax.measure.Unit)" class="member-name-link">TemperatureQuantity</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;val,
      + <a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&nbsp;u)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(javax.measure.Quantity.Scale)" class="member-name-link">TemperatureQuantity</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.Scale.html" title="class or interface in javax.measure" class="external-link">Quantity.Scale</a>&nbsp;s)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#add(javax.measure.Quantity)" class="member-name-link">add</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#add(javax.measure.test.quantity.TemperatureQuantity)" class="member-name-link">add</a><wbr>(<a href="TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>&lt;T extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;&gt;<br><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#asType(java.lang.Class)" class="member-name-link">asType</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;T&gt;&nbsp;type)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>int</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#compareTo(javax.measure.Quantity)" class="member-name-link">compareTo</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;&nbsp;o)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Compares this quantity to the specified Measurement quantity.</div>
      +</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>protected <a href="TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#convert(javax.measure.test.unit.TemperatureUnit)" class="member-name-link">convert</a><wbr>(<a href="../unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a>&nbsp;newUnit)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(double)" class="member-name-link">divide</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(java.lang.Number)" class="member-name-link">divide</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(javax.measure.Quantity)" class="member-name-link">divide</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>protected double</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#doubleValue(javax.measure.Unit)" class="member-name-link">doubleValue</a><wbr>(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;&nbsp;unit)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>protected boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#eq(javax.measure.test.quantity.TemperatureQuantity)" class="member-name-link">eq</a><wbr>(<a href="TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a>&nbsp;dq)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#eq(javax.measure.test.quantity.TestQuantity)" class="member-name-link">eq</a><wbr>(<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;&nbsp;dq)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Double.html" title="class or interface in java.lang" class="external-link">Double</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getScalar()" class="member-name-link">getScalar</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getUnit()" class="member-name-link">getUnit</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getValue()" class="member-name-link">getValue</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#inverse()" class="member-name-link">inverse</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#isZero()" class="member-name-link">isZero</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(java.lang.Number)" class="member-name-link">multiply</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(javax.measure.Quantity)" class="member-name-link">multiply</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#negate()" class="member-name-link">negate</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#subtract(javax.measure.Quantity)" class="member-name-link">subtract</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#subtract(javax.measure.test.quantity.TemperatureQuantity)" class="member-name-link">subtract</a><wbr>(<a href="TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#to(javax.measure.Unit)" class="member-name-link">to</a><wbr>(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;&nbsp;unit)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#toString(boolean,boolean,int)" class="member-name-link">toString</a><wbr>(boolean&nbsp;withUnit,
      + boolean&nbsp;withSpace,
      + int&nbsp;precision)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-TestQuantity">Methods inherited from class&nbsp;<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></h3>
      +<code><a href="TestQuantity.html#add(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)">add</a>, <a href="TestQuantity.html#ge(javax.measure.test.quantity.TestQuantity)">ge</a>, <a href="TestQuantity.html#getScale()">getScale</a>, <a href="TestQuantity.html#getType()">getType</a>, <a href="TestQuantity.html#gt(javax.measure.test.quantity.TestQuantity)">gt</a>, <a href="TestQuantity.html#isEquivalentTo(javax.measure.Quantity)">isEquivalentTo</a>, <a href="TestQuantity.html#le(javax.measure.test.quantity.TestQuantity)">le</a>, <a href="TestQuantity.html#lt(javax.measure.test.quantity.TestQuantity)">lt</a>, <a href="TestQuantity.html#ne(javax.measure.test.quantity.TestQuantity)">ne</a>, <a href="TestQuantity.html#showInUnits(javax.measure.test.TestUnit,int)">showInUnits</a>, <a href="TestQuantity.html#subtract(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)">subtract</a>, <a href="TestQuantity.html#toString()">toString</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Quantity">Methods inherited from interface&nbsp;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a></h3>
      +<code><a href="../../../../../apidocs/javax/measure/Quantity.html#getScale()" title="class or interface in javax.measure" class="external-link">getScale</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#isEquivalentTo(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">isEquivalentTo</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#toSystemUnit()" title="class or interface in javax.measure" class="external-link">toSystemUnit</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;(javax.measure.Quantity.Scale)">
      +<h3>TemperatureQuantity</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-45">TemperatureQuantity</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.Scale.html" title="class or interface in javax.measure" class="external-link">Quantity.Scale</a>&nbsp;s)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="&lt;init&gt;(double,javax.measure.test.unit.TemperatureUnit)">
      +<h3>TemperatureQuantity</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-49">TemperatureQuantity</a></span><wbr><span class="parameters">(double&nbsp;val,
      + <a href="../unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a>&nbsp;un)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.Number,javax.measure.Unit)">
      +<h3>TemperatureQuantity</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-60">TemperatureQuantity</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;val,
      + <a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&nbsp;u)</span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="isZero()">
      +<h3>isZero</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-64">isZero</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="add(javax.measure.test.quantity.TemperatureQuantity)">
      +<h3>add</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-68">add</a></span><wbr><span class="parameters">(<a href="TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="subtract(javax.measure.test.quantity.TemperatureQuantity)">
      +<h3>subtract</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-73">subtract</a></span><wbr><span class="parameters">(<a href="TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="eq(javax.measure.test.quantity.TemperatureQuantity)">
      +<h3>eq</h3>
      +<div class="member-signature"><span class="modifiers">protected</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-78">eq</a></span><wbr><span class="parameters">(<a href="TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a>&nbsp;dq)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(double)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-86">divide</a></span><wbr><span class="parameters">(double&nbsp;v)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="convert(javax.measure.test.unit.TemperatureUnit)">
      +<h3>convert</h3>
      +<div class="member-signature"><span class="modifiers">protected</span>&nbsp;<span class="return-type"><a href="TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-90">convert</a></span><wbr><span class="parameters">(<a href="../unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a>&nbsp;newUnit)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getScalar()">
      +<h3>getScalar</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Double.html" title="class or interface in java.lang" class="external-link">Double</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-94">getScalar</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="toString(boolean,boolean,int)">
      +<h3>toString</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-98">toString</a></span><wbr><span class="parameters">(boolean&nbsp;withUnit,
      + boolean&nbsp;withSpace,
      + int&nbsp;precision)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getValue()">
      +<h3>getValue</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-109">getValue</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#getValue()" title="class or interface in javax.measure" class="external-link">getValue</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="TestQuantity.html#getValue()">getValue</a></code>&nbsp;in class&nbsp;<code><a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getUnit()">
      +<h3>getUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-113">getUnit</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#getUnit()" title="class or interface in javax.measure" class="external-link">getUnit</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="TestQuantity.html#getUnit()">getUnit</a></code>&nbsp;in class&nbsp;<code><a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(java.lang.Number)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-117">multiply</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#multiply(java.lang.Number)" title="class or interface in javax.measure" class="external-link">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(javax.measure.Quantity)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-121">multiply</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#multiply(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="inverse()">
      +<h3>inverse</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-125">inverse</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#inverse()" title="class or interface in javax.measure" class="external-link">inverse</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="doubleValue(javax.measure.Unit)">
      +<h3>doubleValue</h3>
      +<div class="member-signature"><span class="modifiers">protected</span>&nbsp;<span class="return-type">double</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-136">doubleValue</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;&nbsp;unit)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="to(javax.measure.Unit)">
      +<h3>to</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-148">to</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;&nbsp;unit)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#to(javax.measure.Unit)" title="class or interface in javax.measure" class="external-link">to</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="eq(javax.measure.test.quantity.TestQuantity)">
      +<h3>eq</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-165">eq</a></span><wbr><span class="parameters">(<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;&nbsp;dq)</span></div>
      +<dl class="notes">
      +<dt>Overrides:</dt>
      +<dd><code><a href="TestQuantity.html#eq(javax.measure.test.quantity.TestQuantity)">eq</a></code>&nbsp;in class&nbsp;<code><a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(javax.measure.Quantity)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-169">divide</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#divide(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">divide</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="subtract(javax.measure.Quantity)">
      +<h3>subtract</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-174">subtract</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#subtract(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">subtract</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="add(javax.measure.Quantity)">
      +<h3>add</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-179">add</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#add(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">add</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(java.lang.Number)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-184">divide</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#divide(java.lang.Number)" title="class or interface in javax.measure" class="external-link">divide</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="compareTo(javax.measure.Quantity)">
      +<h3>compareTo</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">int</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-189">compareTo</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;&nbsp;o)</span></div>
      +<div class="block"><span class="descfrm-type-label">Description copied from class:&nbsp;<code><a href="TestQuantity.html#compareTo(javax.measure.Quantity)">TestQuantity</a></code></span></div>
      +<div class="block">Compares this quantity to the specified Measurement quantity. The default implementation compares the <a href="../../../../../apidocs/javax/measure/Quantity.html#getValue()" title="class or interface in javax.measure" class="external-link"><code>Quantity.getValue()</code></a> of both this
      + quantity and the specified Quantity stated in the same unit (this quantity's <a href="TestQuantity.html#getUnit()"><code>unit</code></a>).</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html#compareTo(T)" title="class or interface in java.lang" class="external-link">compareTo</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html" title="class or interface in java.lang" class="external-link">Comparable</a>&lt;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="TestQuantity.html#compareTo(javax.measure.Quantity)">compareTo</a></code>&nbsp;in class&nbsp;<code><a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +<dt>Returns:</dt>
      +<dd>a negative integer, zero, or a positive integer as this quantity is less than, equal to, or greater than the specified Quantity
      +         quantity.</dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="negate()">
      +<h3>negate</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-194">negate</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#negate()" title="class or interface in javax.measure" class="external-link">negate</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="asType(java.lang.Class)">
      +<h3>asType</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="type-parameters">&lt;T extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;&gt;</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantity.html#line-199">asType</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;T&gt;&nbsp;type)</span>
      +                                           throws <span class="exceptions"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/ClassCastException.html" title="class or interface in java.lang" class="external-link">ClassCastException</a></span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#asType(java.lang.Class)" title="class or interface in javax.measure" class="external-link">asType</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/ClassCastException.html" title="class or interface in java.lang" class="external-link">ClassCastException</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/TemperatureQuantityTest.html b/docs/site/testapidocs/javax/measure/test/quantity/TemperatureQuantityTest.html
      new file mode 100644
      index 00000000..7f564be9
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/TemperatureQuantityTest.html
      @@ -0,0 +1,357 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>TemperatureQuantityTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.quantity, class: TemperatureQuantityTest">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.quantity.TemperatureQuantityTest class">
      +<meta name="keywords" content="setUp()">
      +<meta name="keywords" content="testQuantity()">
      +<meta name="keywords" content="testAdd()">
      +<meta name="keywords" content="testSubtract()">
      +<meta name="keywords" content="testEq()">
      +<meta name="keywords" content="testGt()">
      +<meta name="keywords" content="testLt()">
      +<meta name="keywords" content="testGe()">
      +<meta name="keywords" content="testLe()">
      +<meta name="keywords" content="testMultiplyDouble()">
      +<meta name="keywords" content="testDivideDouble()">
      +<meta name="keywords" content="testConvert()">
      +<meta name="keywords" content="testToSystemUnit()">
      +<meta name="keywords" content="testNegate()">
      +<meta name="keywords" content="testScale()">
      +<meta name="keywords" content="testLevelCelsius()">
      +<meta name="keywords" content="testLevelFahrenheit()">
      +<meta name="keywords" content="testAbsolute()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/TemperatureQuantityTest.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.quantity</a></div>
      +<h1 title="Class TemperatureQuantityTest" class="title">Class TemperatureQuantityTest</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">TemperatureQuantityTest</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-46">TemperatureQuantityTest</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +<dl class="notes">
      +<dt>Author:</dt>
      +<dd>Werner Keil</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">TemperatureQuantityTest</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setUp()" class="member-name-link">setUp</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testAbsolute()" class="member-name-link">testAbsolute</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testAdd()" class="member-name-link">testAdd</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testConvert()" class="member-name-link">testConvert</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testDivideDouble()" class="member-name-link">testDivideDouble</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testEq()" class="member-name-link">testEq</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testGe()" class="member-name-link">testGe</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testGt()" class="member-name-link">testGt</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testLe()" class="member-name-link">testLe</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testLevelCelsius()" class="member-name-link">testLevelCelsius</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testLevelFahrenheit()" class="member-name-link">testLevelFahrenheit</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testLt()" class="member-name-link">testLt</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testMultiplyDouble()" class="member-name-link">testMultiplyDouble</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testNegate()" class="member-name-link">testNegate</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testQuantity()" class="member-name-link">testQuantity</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testScale()" class="member-name-link">testScale</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testSubtract()" class="member-name-link">testSubtract</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#testToSystemUnit()" class="member-name-link">testToSystemUnit</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>TemperatureQuantityTest</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-46">TemperatureQuantityTest</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="setUp()">
      +<h3>setUp</h3>
      +<div class="member-signature"><span class="annotations">@BeforeEach
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-51">setUp</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testQuantity()">
      +<h3>testQuantity</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-57">testQuantity</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testAdd()">
      +<h3>testAdd</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-62">testAdd</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testSubtract()">
      +<h3>testSubtract</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-69">testSubtract</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testEq()">
      +<h3>testEq</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-76">testEq</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testGt()">
      +<h3>testGt</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-82">testGt</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testLt()">
      +<h3>testLt</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-88">testLt</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testGe()">
      +<h3>testGe</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-94">testGe</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testLe()">
      +<h3>testLe</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-102">testLe</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testMultiplyDouble()">
      +<h3>testMultiplyDouble</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-110">testMultiplyDouble</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testDivideDouble()">
      +<h3>testDivideDouble</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-116">testDivideDouble</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testConvert()">
      +<h3>testConvert</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-122">testConvert</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testToSystemUnit()">
      +<h3>testToSystemUnit</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-128">testToSystemUnit</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testNegate()">
      +<h3>testNegate</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-133">testNegate</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testScale()">
      +<h3>testScale</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-138">testScale</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testLevelCelsius()">
      +<h3>testLevelCelsius</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-143">testLevelCelsius</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testLevelFahrenheit()">
      +<h3>testLevelFahrenheit</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-149">testLevelFahrenheit</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="testAbsolute()">
      +<h3>testAbsolute</h3>
      +<div class="member-signature"><span class="annotations">@Test
      +</span><span class="modifiers">public</span>&nbsp;<span class="return-type">void</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TemperatureQuantityTest.html#line-155">testAbsolute</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/TestQuantities.html b/docs/site/testapidocs/javax/measure/test/quantity/TestQuantities.html
      new file mode 100644
      index 00000000..748f0bc2
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/TestQuantities.html
      @@ -0,0 +1,162 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>TestQuantities (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.quantity, class: TestQuantities">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.quantity.TestQuantities class">
      +<meta name="keywords" content="getQuantity()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/TestQuantities.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li>Constr&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li>Constr&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.quantity</a></div>
      +<h1 title="Class TestQuantities" class="title">Class TestQuantities</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">TestQuantities</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<hr>
      +<div class="type-signature"><span class="modifiers">public final class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantities.html#line-50">TestQuantities</a></span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
      +<div class="block">Singleton class for accessing <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link"><code>Quantity</code></a> instances.</div>
      +<dl class="notes">
      +<dt>Since:</dt>
      +<dd>1.0</dd>
      +<dt>Author:</dt>
      +<dd>werner, otaviojava</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab1" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab1', 3)" class="table-tab">Static Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code>static &lt;Q extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;&gt;<br><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code><a href="#getQuantity(java.lang.Number,javax.measure.Unit)" class="member-name-link">getQuantity</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;value,
      + <a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;Q&gt;&nbsp;unit)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4">
      +<div class="block">Returns the scalar measurement.</div>
      +</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="getQuantity(java.lang.Number,javax.measure.Unit)">
      +<h3>getQuantity</h3>
      +<div class="member-signature"><span class="modifiers">public static</span>&nbsp;<span class="type-parameters">&lt;Q extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;&gt;</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantities.html#line-70">getQuantity</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;value,
      + <a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;Q&gt;&nbsp;unit)</span></div>
      +<div class="block">Returns the scalar measurement. When the <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link"><code>Number</code></a> was <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html" title="class or interface in java.math" class="external-link"><code>BigDecimal</code></a> or <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html" title="class or interface in java.math" class="external-link"><code>BigInteger</code></a> will use DecimalQuantity, when the
      + <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link"><code>Number</code></a> was <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Double.html" title="class or interface in java.lang" class="external-link"><code>Double</code></a> will DoubleQuantity otherwise NumberQuantity. in the specified unit.</div>
      +<dl class="notes">
      +<dt>Type Parameters:</dt>
      +<dd><code>Q</code> - The type of the quantity.</dd>
      +<dt>Parameters:</dt>
      +<dd><code>value</code> - the measurement value.</dd>
      +<dd><code>unit</code> - the measurement unit.</dd>
      +<dt>Returns:</dt>
      +<dd>the corresponding <code>numeric</code> measurement.</dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/NullPointerException.html" title="class or interface in java.lang" class="external-link">NullPointerException</a></code> - when value or unit were null</dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/TestQuantity.html b/docs/site/testapidocs/javax/measure/test/quantity/TestQuantity.html
      new file mode 100644
      index 00000000..2baf0a60
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/TestQuantity.html
      @@ -0,0 +1,462 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>TestQuantity (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.quantity, class: TestQuantity">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.quantity.TestQuantity class">
      +<meta name="keywords" content="ONE">
      +<meta name="keywords" content="scalar">
      +<meta name="keywords" content="value">
      +<meta name="keywords" content="unit">
      +<meta name="keywords" content="getType()">
      +<meta name="keywords" content="add()">
      +<meta name="keywords" content="subtract()">
      +<meta name="keywords" content="eq()">
      +<meta name="keywords" content="ne()">
      +<meta name="keywords" content="gt()">
      +<meta name="keywords" content="lt()">
      +<meta name="keywords" content="ge()">
      +<meta name="keywords" content="le()">
      +<meta name="keywords" content="toString()">
      +<meta name="keywords" content="compareTo()">
      +<meta name="keywords" content="showInUnits()">
      +<meta name="keywords" content="getValue()">
      +<meta name="keywords" content="getUnit()">
      +<meta name="keywords" content="getScale()">
      +<meta name="keywords" content="isEquivalentTo()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/TestQuantity.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li><a href="#nested-class-summary">Nested</a>&nbsp;|&nbsp;</li>
      +<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li><a href="#field-detail">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.quantity</a></div>
      +<h1 title="Class TestQuantity" class="title">Class TestQuantity&lt;Q extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;&gt;</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance">TestQuantity&lt;Q&gt;</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html" title="class or interface in java.lang" class="external-link">Comparable</a>&lt;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;&gt;</code>, <code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;</code></dd>
      +</dl>
      +<dl class="notes">
      +<dt>Direct Known Subclasses:</dt>
      +<dd><code><a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code>, <code><a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code>, <code><a href="TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></code>, <code><a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></code>, <code><a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public abstract class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-43">TestQuantity</a>&lt;Q extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;&gt;</span>
      +<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +implements <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html" title="class or interface in java.lang" class="external-link">Comparable</a>&lt;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;&gt;</span></div>
      +<dl class="notes">
      +<dt>Since:</dt>
      +<dd>1.0</dd>
      +<dt>Version:</dt>
      +<dd>2.0</dd>
      +<dt>Author:</dt>
      +<dd>Werner Keil</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== NESTED CLASS SUMMARY ======== -->
      +<li>
      +<section class="nested-class-summary" id="nested-class-summary">
      +<h2>Nested Class Summary</h2>
      +<div class="inherited-list">
      +<h2 id="nested-classes-inherited-from-class-javax.measure.Quantity">Nested classes/interfaces inherited from interface&nbsp;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a></h2>
      +<code><a href="../../../../../apidocs/javax/measure/Quantity.Scale.html" title="class or interface in javax.measure" class="external-link">Quantity.Scale</a></code></div>
      +</section>
      +</li>
      +<!-- =========== FIELD SUMMARY =========== -->
      +<li>
      +<section class="field-summary" id="field-summary">
      +<h2>Field Summary</h2>
      +<div class="caption"><span>Fields</span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Dimensionless.html" title="class or interface in javax.measure.quantity" class="external-link">Dimensionless</a>&gt;</code></div>
      +<div class="col-second even-row-color"><code><a href="#ONE" class="member-name-link">ONE</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>protected double</code></div>
      +<div class="col-second odd-row-color"><code><a href="#scalar" class="member-name-link">scalar</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>protected <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;</code></div>
      +<div class="col-second even-row-color"><code><a href="#unit" class="member-name-link">unit</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>protected double</code></div>
      +<div class="col-second odd-row-color"><code><a href="#value" class="member-name-link">value</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier</div>
      +<div class="table-header col-second">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>protected </code></div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.Class)" class="member-name-link">TestQuantity</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;type)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>protected </code></div>
      +<div class="col-constructor-name odd-row-color"><code><a href="#%3Cinit%3E(java.lang.Class,javax.measure.Quantity.Scale)" class="member-name-link">TestQuantity</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;type,
      + <a href="../../../../../apidocs/javax/measure/Quantity.Scale.html" title="class or interface in javax.measure" class="external-link">Quantity.Scale</a>&nbsp;scale)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#add(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)" class="member-name-link">add</a><wbr>(<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;dn,
      + <a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1,
      + <a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d2,
      + <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;au)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>int</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#compareTo(javax.measure.Quantity)" class="member-name-link">compareTo</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
      +<div class="block">Compares this quantity to the specified Measurement quantity.</div>
      +</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#eq(javax.measure.test.quantity.TestQuantity)" class="member-name-link">eq</a><wbr>(<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#ge(javax.measure.test.quantity.TestQuantity)" class="member-name-link">ge</a><wbr>(<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.Scale.html" title="class or interface in javax.measure" class="external-link">Quantity.Scale</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getScale()" class="member-name-link">getScale</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getType()" class="member-name-link">getType</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getUnit()" class="member-name-link">getUnit</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getValue()" class="member-name-link">getValue</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#gt(javax.measure.test.quantity.TestQuantity)" class="member-name-link">gt</a><wbr>(<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#isEquivalentTo(javax.measure.Quantity)" class="member-name-link">isEquivalentTo</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#le(javax.measure.test.quantity.TestQuantity)" class="member-name-link">le</a><wbr>(<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#lt(javax.measure.test.quantity.TestQuantity)" class="member-name-link">lt</a><wbr>(<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#ne(javax.measure.test.quantity.TestQuantity)" class="member-name-link">ne</a><wbr>(<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>protected <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#showInUnits(javax.measure.test.TestUnit,int)" class="member-name-link">showInUnits</a><wbr>(<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;?&gt;&nbsp;u,
      + int&nbsp;precision)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#subtract(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)" class="member-name-link">subtract</a><wbr>(<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;dn,
      + <a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1,
      + <a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d2,
      + <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;au)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#toString()" class="member-name-link">toString</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Quantity">Methods inherited from interface&nbsp;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a></h3>
      +<code><a href="../../../../../apidocs/javax/measure/Quantity.html#add(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">add</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#asType(java.lang.Class)" title="class or interface in javax.measure" class="external-link">asType</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#divide(java.lang.Number)" title="class or interface in javax.measure" class="external-link">divide</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#divide(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">divide</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#inverse()" title="class or interface in javax.measure" class="external-link">inverse</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#multiply(java.lang.Number)" title="class or interface in javax.measure" class="external-link">multiply</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#multiply(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">multiply</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#negate()" title="class or interface in javax.measure" class="external-link">negate</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#subtract(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">subtract</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#to(javax.measure.Unit)" title="class or interface in javax.measure" class="external-link">to</a>, <a href="../../../../../apidocs/javax/measure/Quantity.html#toSystemUnit()" title="class or interface in javax.measure" class="external-link">toSystemUnit</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ============ FIELD DETAIL =========== -->
      +<li>
      +<section class="field-details" id="field-detail">
      +<h2>Field Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="ONE">
      +<h3>ONE</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Dimensionless.html" title="class or interface in javax.measure.quantity" class="external-link">Dimensionless</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-45">ONE</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="scalar">
      +<h3>scalar</h3>
      +<div class="member-signature"><span class="modifiers">protected</span>&nbsp;<span class="return-type">double</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-48">scalar</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="value">
      +<h3>value</h3>
      +<div class="member-signature"><span class="modifiers">protected</span>&nbsp;<span class="return-type">double</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-49">value</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="unit">
      +<h3>unit</h3>
      +<div class="member-signature"><span class="modifiers">protected</span>&nbsp;<span class="return-type"><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a> extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-50">unit</a></span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.Class,javax.measure.Quantity.Scale)">
      +<h3>TestQuantity</h3>
      +<div class="member-signature"><span class="modifiers">protected</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-54">TestQuantity</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;type,
      + <a href="../../../../../apidocs/javax/measure/Quantity.Scale.html" title="class or interface in javax.measure" class="external-link">Quantity.Scale</a>&nbsp;scale)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.Class)">
      +<h3>TestQuantity</h3>
      +<div class="member-signature"><span class="modifiers">protected</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-59">TestQuantity</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;type)</span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="getType()">
      +<h3>getType</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-63">getType</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="add(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)">
      +<h3>add</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-67">add</a></span><wbr><span class="parameters">(<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;dn,
      + <a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1,
      + <a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d2,
      + <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;au)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="subtract(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)">
      +<h3>subtract</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-80">subtract</a></span><wbr><span class="parameters">(<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;dn,
      + <a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1,
      + <a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d2,
      + <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;au)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="eq(javax.measure.test.quantity.TestQuantity)">
      +<h3>eq</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-93">eq</a></span><wbr><span class="parameters">(<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="ne(javax.measure.test.quantity.TestQuantity)">
      +<h3>ne</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-97">ne</a></span><wbr><span class="parameters">(<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="gt(javax.measure.test.quantity.TestQuantity)">
      +<h3>gt</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-101">gt</a></span><wbr><span class="parameters">(<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="lt(javax.measure.test.quantity.TestQuantity)">
      +<h3>lt</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-105">lt</a></span><wbr><span class="parameters">(<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="ge(javax.measure.test.quantity.TestQuantity)">
      +<h3>ge</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-109">ge</a></span><wbr><span class="parameters">(<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="le(javax.measure.test.quantity.TestQuantity)">
      +<h3>le</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-113">le</a></span><wbr><span class="parameters">(<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="toString()">
      +<h3>toString</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-117">toString</a></span>()</div>
      +<dl class="notes">
      +<dt>Overrides:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="compareTo(javax.measure.Quantity)">
      +<h3>compareTo</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">int</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-129">compareTo</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;that)</span></div>
      +<div class="block">Compares this quantity to the specified Measurement quantity. The default implementation compares the <a href="../../../../../apidocs/javax/measure/Quantity.html#getValue()" title="class or interface in javax.measure" class="external-link"><code>Quantity.getValue()</code></a> of both this
      + quantity and the specified Quantity stated in the same unit (this quantity's <a href="#getUnit()"><code>unit</code></a>).</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html#compareTo(T)" title="class or interface in java.lang" class="external-link">compareTo</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html" title="class or interface in java.lang" class="external-link">Comparable</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a> extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&gt;</code></dd>
      +<dt>Returns:</dt>
      +<dd>a negative integer, zero, or a positive integer as this quantity is less than, equal to, or greater than the specified Quantity
      +         quantity.</dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="showInUnits(javax.measure.test.TestUnit,int)">
      +<h3>showInUnits</h3>
      +<div class="member-signature"><span class="modifiers">protected</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-133">showInUnits</a></span><wbr><span class="parameters">(<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;?&gt;&nbsp;u,
      + int&nbsp;precision)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getValue()">
      +<h3>getValue</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-154">getValue</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#getValue()" title="class or interface in javax.measure" class="external-link">getValue</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a> extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getUnit()">
      +<h3>getUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-158">getUnit</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#getUnit()" title="class or interface in javax.measure" class="external-link">getUnit</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a> extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getScale()">
      +<h3>getScale</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.Scale.html" title="class or interface in javax.measure" class="external-link">Quantity.Scale</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-162">getScale</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#getScale()" title="class or interface in javax.measure" class="external-link">getScale</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a> extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="isEquivalentTo(javax.measure.Quantity)">
      +<h3>isEquivalentTo</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TestQuantity.html#line-166">isEquivalentTo</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Quantity.html#isEquivalentTo(javax.measure.Quantity)" title="class or interface in javax.measure" class="external-link">isEquivalentTo</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a> extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/TimeQuantity.html b/docs/site/testapidocs/javax/measure/test/quantity/TimeQuantity.html
      new file mode 100644
      index 00000000..a1a6ce5e
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/TimeQuantity.html
      @@ -0,0 +1,432 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>TimeQuantity (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.quantity, class: TimeQuantity">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.quantity.TimeQuantity class">
      +<meta name="keywords" content="add()">
      +<meta name="keywords" content="subtract()">
      +<meta name="keywords" content="eq()">
      +<meta name="keywords" content="ne()">
      +<meta name="keywords" content="gt()">
      +<meta name="keywords" content="lt()">
      +<meta name="keywords" content="ge()">
      +<meta name="keywords" content="le()">
      +<meta name="keywords" content="multiply()">
      +<meta name="keywords" content="divide()">
      +<meta name="keywords" content="convert()">
      +<meta name="keywords" content="showInUnits()">
      +<meta name="keywords" content="inverse()">
      +<meta name="keywords" content="to()">
      +<meta name="keywords" content="negate()">
      +<meta name="keywords" content="asType()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/TimeQuantity.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li><a href="#nested-class-summary">Nested</a>&nbsp;|&nbsp;</li>
      +<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.quantity</a></div>
      +<h1 title="Class TimeQuantity" class="title">Class TimeQuantity</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance"><a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;
      +<div class="inheritance">TimeQuantity</div>
      +</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html" title="class or interface in java.lang" class="external-link">Comparable</a>&lt;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;&gt;</code>, <code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</code></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-42">TimeQuantity</a></span>
      +<span class="extends-implements">extends <a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</span></div>
      +<dl class="notes">
      +<dt>Version:</dt>
      +<dd>0.6</dd>
      +<dt>Author:</dt>
      +<dd>Werner Keil</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== NESTED CLASS SUMMARY ======== -->
      +<li>
      +<section class="nested-class-summary" id="nested-class-summary">
      +<h2>Nested Class Summary</h2>
      +<div class="inherited-list">
      +<h2 id="nested-classes-inherited-from-class-javax.measure.Quantity">Nested classes/interfaces inherited from interface&nbsp;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a></h2>
      +<code><a href="../../../../../apidocs/javax/measure/Quantity.Scale.html" title="class or interface in javax.measure" class="external-link">Quantity.Scale</a></code></div>
      +</section>
      +</li>
      +<!-- =========== FIELD SUMMARY =========== -->
      +<li>
      +<section class="field-summary" id="field-summary">
      +<h2>Field Summary</h2>
      +<div class="inherited-list">
      +<h3 id="fields-inherited-from-class-TestQuantity">Fields inherited from class&nbsp;<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></h3>
      +<code><a href="TestQuantity.html#ONE">ONE</a>, <a href="TestQuantity.html#scalar">scalar</a>, <a href="TestQuantity.html#unit">unit</a>, <a href="TestQuantity.html#value">value</a></code></div>
      +</section>
      +</li>
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">TimeQuantity</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-constructor-name odd-row-color"><code><a href="#%3Cinit%3E(double,javax.measure.test.unit.TimeUnit)" class="member-name-link">TimeQuantity</a><wbr>(double&nbsp;val,
      + <a href="../unit/TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a>&nbsp;un)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.Number,javax.measure.Unit)" class="member-name-link">TimeQuantity</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;val,
      + <a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&nbsp;un)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#add(javax.measure.Quantity)" class="member-name-link">add</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#add(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">add</a><wbr>(<a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>final &lt;T extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;&gt;<br><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#asType(java.lang.Class)" class="member-name-link">asType</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;T&gt;&nbsp;type)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#convert(javax.measure.test.unit.TimeUnit)" class="member-name-link">convert</a><wbr>(<a href="../unit/TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a>&nbsp;newUnit)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(double)" class="member-name-link">divide</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(java.lang.Number)" class="member-name-link">divide</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(javax.measure.Quantity)" class="member-name-link">divide</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#eq(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">eq</a><wbr>(<a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#ge(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">ge</a><wbr>(<a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#gt(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">gt</a><wbr>(<a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#inverse()" class="member-name-link">inverse</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#le(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">le</a><wbr>(<a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#lt(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">lt</a><wbr>(<a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(double)" class="member-name-link">multiply</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(java.lang.Number)" class="member-name-link">multiply</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(javax.measure.Quantity)" class="member-name-link">multiply</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#ne(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">ne</a><wbr>(<a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#negate()" class="member-name-link">negate</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#showInUnits(javax.measure.test.unit.DistanceUnit,int)" class="member-name-link">showInUnits</a><wbr>(<a href="../unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a>&nbsp;u,
      + int&nbsp;precision)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#subtract(javax.measure.Quantity)" class="member-name-link">subtract</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#subtract(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">subtract</a><wbr>(<a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#to(javax.measure.Unit)" class="member-name-link">to</a><wbr>(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;&nbsp;unit)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-TestQuantity">Methods inherited from class&nbsp;<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></h3>
      +<code><a href="TestQuantity.html#add(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)">add</a>, <a href="TestQuantity.html#compareTo(javax.measure.Quantity)">compareTo</a>, <a href="TestQuantity.html#eq(javax.measure.test.quantity.TestQuantity)">eq</a>, <a href="TestQuantity.html#ge(javax.measure.test.quantity.TestQuantity)">ge</a>, <a href="TestQuantity.html#getScale()">getScale</a>, <a href="TestQuantity.html#getType()">getType</a>, <a href="TestQuantity.html#getUnit()">getUnit</a>, <a href="TestQuantity.html#getValue()">getValue</a>, <a href="TestQuantity.html#gt(javax.measure.test.quantity.TestQuantity)">gt</a>, <a href="TestQuantity.html#isEquivalentTo(javax.measure.Quantity)">isEquivalentTo</a>, <a href="TestQuantity.html#le(javax.measure.test.quantity.TestQuantity)">le</a>, <a href="TestQuantity.html#lt(javax.measure.test.quantity.TestQuantity)">lt</a>, <a href="TestQuantity.html#ne(javax.measure.test.quantity.TestQuantity)">ne</a>, <a href="TestQuantity.html#showInUnits(javax.measure.test.TestUnit,int)">showInUnits</a>, <a href="TestQuantity.html#subtract(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)">subtract</a>, <a href="TestQuantity.html#toString()">toString</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Quantity">Methods inherited from interface&nbsp;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a></h3>
      +<code><a href="../../../../../apidocs/javax/measure/Quantity.html#toSystemUnit()" title="class or interface in javax.measure" class="external-link">toSystemUnit</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;(double,javax.measure.test.unit.TimeUnit)">
      +<h3>TimeQuantity</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-44">TimeQuantity</a></span><wbr><span class="parameters">(double&nbsp;val,
      + <a href="../unit/TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a>&nbsp;un)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.Number,javax.measure.Unit)">
      +<h3>TimeQuantity</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-51">TimeQuantity</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;val,
      + <a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&nbsp;un)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>TimeQuantity</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-55">TimeQuantity</a></span>()</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="add(javax.measure.test.quantity.TimeQuantity)">
      +<h3>add</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-66">add</a></span><wbr><span class="parameters">(<a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="subtract(javax.measure.test.quantity.TimeQuantity)">
      +<h3>subtract</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-72">subtract</a></span><wbr><span class="parameters">(<a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="eq(javax.measure.test.quantity.TimeQuantity)">
      +<h3>eq</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-78">eq</a></span><wbr><span class="parameters">(<a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="ne(javax.measure.test.quantity.TimeQuantity)">
      +<h3>ne</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-82">ne</a></span><wbr><span class="parameters">(<a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="gt(javax.measure.test.quantity.TimeQuantity)">
      +<h3>gt</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-86">gt</a></span><wbr><span class="parameters">(<a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="lt(javax.measure.test.quantity.TimeQuantity)">
      +<h3>lt</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-90">lt</a></span><wbr><span class="parameters">(<a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="ge(javax.measure.test.quantity.TimeQuantity)">
      +<h3>ge</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-94">ge</a></span><wbr><span class="parameters">(<a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="le(javax.measure.test.quantity.TimeQuantity)">
      +<h3>le</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-98">le</a></span><wbr><span class="parameters">(<a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(double)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-102">multiply</a></span><wbr><span class="parameters">(double&nbsp;v)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(double)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-106">divide</a></span><wbr><span class="parameters">(double&nbsp;v)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="convert(javax.measure.test.unit.TimeUnit)">
      +<h3>convert</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-110">convert</a></span><wbr><span class="parameters">(<a href="../unit/TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a>&nbsp;newUnit)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="showInUnits(javax.measure.test.unit.DistanceUnit,int)">
      +<h3>showInUnits</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-114">showInUnits</a></span><wbr><span class="parameters">(<a href="../unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a>&nbsp;u,
      + int&nbsp;precision)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(javax.measure.Quantity)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-118">divide</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="subtract(javax.measure.Quantity)">
      +<h3>subtract</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-123">subtract</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;&nbsp;that)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="add(javax.measure.Quantity)">
      +<h3>add</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-128">add</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;&nbsp;that)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(java.lang.Number)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-132">divide</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="inverse()">
      +<h3>inverse</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-136">inverse</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(java.lang.Number)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-141">multiply</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="to(javax.measure.Unit)">
      +<h3>to</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-145">to</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;&nbsp;unit)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(javax.measure.Quantity)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-150">multiply</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="negate()">
      +<h3>negate</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-155">negate</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="asType(java.lang.Class)">
      +<h3>asType</h3>
      +<div class="member-signature"><span class="modifiers">public final</span>&nbsp;<span class="type-parameters">&lt;T extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;&gt;</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/TimeQuantity.html#line-160">asType</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;T&gt;&nbsp;type)</span>
      +                                                 throws <span class="exceptions"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/ClassCastException.html" title="class or interface in java.lang" class="external-link">ClassCastException</a></span></div>
      +<dl class="notes">
      +<dt>Throws:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/ClassCastException.html" title="class or interface in java.lang" class="external-link">ClassCastException</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/VolumeQuantity.html b/docs/site/testapidocs/javax/measure/test/quantity/VolumeQuantity.html
      new file mode 100644
      index 00000000..91d3555c
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/VolumeQuantity.html
      @@ -0,0 +1,450 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>VolumeQuantity (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.quantity, class: VolumeQuantity">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.quantity.VolumeQuantity class">
      +<meta name="keywords" content="add()">
      +<meta name="keywords" content="subtract()">
      +<meta name="keywords" content="eq()">
      +<meta name="keywords" content="ne()">
      +<meta name="keywords" content="gt()">
      +<meta name="keywords" content="lt()">
      +<meta name="keywords" content="ge()">
      +<meta name="keywords" content="le()">
      +<meta name="keywords" content="multiply()">
      +<meta name="keywords" content="divide()">
      +<meta name="keywords" content="convert()">
      +<meta name="keywords" content="showInUnits()">
      +<meta name="keywords" content="inverse()">
      +<meta name="keywords" content="to()">
      +<meta name="keywords" content="negate()">
      +<meta name="keywords" content="asType()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/VolumeQuantity.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li><a href="#nested-class-summary">Nested</a>&nbsp;|&nbsp;</li>
      +<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.quantity</a></div>
      +<h1 title="Class VolumeQuantity" class="title">Class VolumeQuantity</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance"><a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;
      +<div class="inheritance">VolumeQuantity</div>
      +</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html" title="class or interface in java.lang" class="external-link">Comparable</a>&lt;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;&gt;</code>, <code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</code></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-43">VolumeQuantity</a></span>
      +<span class="extends-implements">extends <a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</span></div>
      +<dl class="notes">
      +<dt>Version:</dt>
      +<dd>0.6</dd>
      +<dt>Author:</dt>
      +<dd>Werner Keil</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- ======== NESTED CLASS SUMMARY ======== -->
      +<li>
      +<section class="nested-class-summary" id="nested-class-summary">
      +<h2>Nested Class Summary</h2>
      +<div class="inherited-list">
      +<h2 id="nested-classes-inherited-from-class-javax.measure.Quantity">Nested classes/interfaces inherited from interface&nbsp;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a></h2>
      +<code><a href="../../../../../apidocs/javax/measure/Quantity.Scale.html" title="class or interface in javax.measure" class="external-link">Quantity.Scale</a></code></div>
      +</section>
      +</li>
      +<!-- =========== FIELD SUMMARY =========== -->
      +<li>
      +<section class="field-summary" id="field-summary">
      +<h2>Field Summary</h2>
      +<div class="inherited-list">
      +<h3 id="fields-inherited-from-class-TestQuantity">Fields inherited from class&nbsp;<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></h3>
      +<code><a href="TestQuantity.html#ONE">ONE</a>, <a href="TestQuantity.html#scalar">scalar</a>, <a href="TestQuantity.html#unit">unit</a>, <a href="TestQuantity.html#value">value</a></code></div>
      +</section>
      +</li>
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" class="member-name-link">VolumeQuantity</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-constructor-name odd-row-color"><code><a href="#%3Cinit%3E(double,javax.measure.test.unit.VolumeUnit)" class="member-name-link">VolumeQuantity</a><wbr>(double&nbsp;val,
      + <a href="../unit/VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a>&nbsp;un)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.Number,javax.measure.Unit)" class="member-name-link">VolumeQuantity</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;val,
      + <a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&nbsp;un)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#add(javax.measure.Quantity)" class="member-name-link">add</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#add(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">add</a><wbr>(<a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>final &lt;T extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;&gt;<br><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#asType(java.lang.Class)" class="member-name-link">asType</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;T&gt;&nbsp;type)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#convert(javax.measure.test.unit.VolumeUnit)" class="member-name-link">convert</a><wbr>(<a href="../unit/VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a>&nbsp;newUnit)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(double)" class="member-name-link">divide</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(java.lang.Number)" class="member-name-link">divide</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(javax.measure.Quantity)" class="member-name-link">divide</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">divide</a><wbr>(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;a1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#divide(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">divide</a><wbr>(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#eq(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">eq</a><wbr>(<a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#ge(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">ge</a><wbr>(<a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#gt(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">gt</a><wbr>(<a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#inverse()" class="member-name-link">inverse</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#le(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">le</a><wbr>(<a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#lt(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">lt</a><wbr>(<a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(double)" class="member-name-link">multiply</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(java.lang.Number)" class="member-name-link">multiply</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(javax.measure.Quantity)" class="member-name-link">multiply</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#ne(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">ne</a><wbr>(<a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#negate()" class="member-name-link">negate</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#showInUnits(javax.measure.test.unit.VolumeUnit,int)" class="member-name-link">showInUnits</a><wbr>(<a href="../unit/VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a>&nbsp;u,
      + int&nbsp;precision)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#subtract(javax.measure.Quantity)" class="member-name-link">subtract</a><wbr>(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#subtract(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">subtract</a><wbr>(<a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#to(javax.measure.Unit)" class="member-name-link">to</a><wbr>(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;&nbsp;unit)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-TestQuantity">Methods inherited from class&nbsp;<a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></h3>
      +<code><a href="TestQuantity.html#add(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)">add</a>, <a href="TestQuantity.html#compareTo(javax.measure.Quantity)">compareTo</a>, <a href="TestQuantity.html#eq(javax.measure.test.quantity.TestQuantity)">eq</a>, <a href="TestQuantity.html#ge(javax.measure.test.quantity.TestQuantity)">ge</a>, <a href="TestQuantity.html#getScale()">getScale</a>, <a href="TestQuantity.html#getType()">getType</a>, <a href="TestQuantity.html#getUnit()">getUnit</a>, <a href="TestQuantity.html#getValue()">getValue</a>, <a href="TestQuantity.html#gt(javax.measure.test.quantity.TestQuantity)">gt</a>, <a href="TestQuantity.html#isEquivalentTo(javax.measure.Quantity)">isEquivalentTo</a>, <a href="TestQuantity.html#le(javax.measure.test.quantity.TestQuantity)">le</a>, <a href="TestQuantity.html#lt(javax.measure.test.quantity.TestQuantity)">lt</a>, <a href="TestQuantity.html#ne(javax.measure.test.quantity.TestQuantity)">ne</a>, <a href="TestQuantity.html#showInUnits(javax.measure.test.TestUnit,int)">showInUnits</a>, <a href="TestQuantity.html#subtract(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)">subtract</a>, <a href="TestQuantity.html#toString()">toString</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Quantity">Methods inherited from interface&nbsp;<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a></h3>
      +<code><a href="../../../../../apidocs/javax/measure/Quantity.html#toSystemUnit()" title="class or interface in javax.measure" class="external-link">toSystemUnit</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;()">
      +<h3>VolumeQuantity</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-44">VolumeQuantity</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="&lt;init&gt;(double,javax.measure.test.unit.VolumeUnit)">
      +<h3>VolumeQuantity</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-48">VolumeQuantity</a></span><wbr><span class="parameters">(double&nbsp;val,
      + <a href="../unit/VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a>&nbsp;un)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.Number,javax.measure.Unit)">
      +<h3>VolumeQuantity</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-55">VolumeQuantity</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;val,
      + <a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&nbsp;un)</span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="add(javax.measure.test.quantity.VolumeQuantity)">
      +<h3>add</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-59">add</a></span><wbr><span class="parameters">(<a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="subtract(javax.measure.test.quantity.VolumeQuantity)">
      +<h3>subtract</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-65">subtract</a></span><wbr><span class="parameters">(<a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="eq(javax.measure.test.quantity.VolumeQuantity)">
      +<h3>eq</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-71">eq</a></span><wbr><span class="parameters">(<a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="ne(javax.measure.test.quantity.VolumeQuantity)">
      +<h3>ne</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-75">ne</a></span><wbr><span class="parameters">(<a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="gt(javax.measure.test.quantity.VolumeQuantity)">
      +<h3>gt</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-79">gt</a></span><wbr><span class="parameters">(<a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="lt(javax.measure.test.quantity.VolumeQuantity)">
      +<h3>lt</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-83">lt</a></span><wbr><span class="parameters">(<a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="ge(javax.measure.test.quantity.VolumeQuantity)">
      +<h3>ge</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-87">ge</a></span><wbr><span class="parameters">(<a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="le(javax.measure.test.quantity.VolumeQuantity)">
      +<h3>le</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-91">le</a></span><wbr><span class="parameters">(<a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(double)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-95">multiply</a></span><wbr><span class="parameters">(double&nbsp;v)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(double)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-99">divide</a></span><wbr><span class="parameters">(double&nbsp;v)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(javax.measure.test.quantity.DistanceQuantity)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-105">divide</a></span><wbr><span class="parameters">(<a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(javax.measure.test.quantity.AreaQuantity)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-111">divide</a></span><wbr><span class="parameters">(<a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;a1)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="convert(javax.measure.test.unit.VolumeUnit)">
      +<h3>convert</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-117">convert</a></span><wbr><span class="parameters">(<a href="../unit/VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a>&nbsp;newUnit)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="showInUnits(javax.measure.test.unit.VolumeUnit,int)">
      +<h3>showInUnits</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-121">showInUnits</a></span><wbr><span class="parameters">(<a href="../unit/VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a>&nbsp;u,
      + int&nbsp;precision)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(javax.measure.Quantity)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-125">divide</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="subtract(javax.measure.Quantity)">
      +<h3>subtract</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-130">subtract</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;&nbsp;that)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="add(javax.measure.Quantity)">
      +<h3>add</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-135">add</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;&nbsp;that)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="divide(java.lang.Number)">
      +<h3>divide</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-140">divide</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="inverse()">
      +<h3>inverse</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-144">inverse</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(java.lang.Number)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-149">multiply</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html" title="class or interface in java.lang" class="external-link">Number</a>&nbsp;that)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="to(javax.measure.Unit)">
      +<h3>to</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-153">to</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;&nbsp;unit)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(javax.measure.Quantity)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-158">multiply</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;?&gt;&nbsp;that)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="negate()">
      +<h3>negate</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-163">negate</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="asType(java.lang.Class)">
      +<h3>asType</h3>
      +<div class="member-signature"><span class="modifiers">public final</span>&nbsp;<span class="type-parameters">&lt;T extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;&gt;</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/quantity/VolumeQuantity.html#line-168">asType</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;T&gt;&nbsp;type)</span>
      +                                                 throws <span class="exceptions"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/ClassCastException.html" title="class or interface in java.lang" class="external-link">ClassCastException</a></span></div>
      +<dl class="notes">
      +<dt>Throws:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/ClassCastException.html" title="class or interface in java.lang" class="external-link">ClassCastException</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/class-use/AreaQuantity.html b/docs/site/testapidocs/javax/measure/test/quantity/class-use/AreaQuantity.html
      new file mode 100644
      index 00000000..5c079a69
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/class-use/AreaQuantity.html
      @@ -0,0 +1,141 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.quantity.AreaQuantity (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.quantity, class: AreaQuantity">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.quantity.AreaQuantity" class="title">Uses of Class<br>javax.measure.test.quantity.AreaQuantity</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test.quantity">javax.measure.test.quantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<section class="class-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test.quantity">
      +<h2>Uses of <a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a> in <a href="../package-summary.html">javax.measure.test.quantity</a></h2>
      +<div class="caption"><span>Methods in <a href="../package-summary.html">javax.measure.test.quantity</a> that return <a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../AreaQuantity.html#add(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">add</a><wbr>(<a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../AreaQuantity.html#convert(javax.measure.test.unit.AreaUnit)" class="member-name-link">convert</a><wbr>(<a href="../../unit/AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a>&nbsp;newUnit)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code><a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../AreaQuantity.html#divide(double)" class="member-name-link">divide</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../VolumeQuantity.html#divide(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">divide</a><wbr>(<a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code><a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../AreaQuantity.html#multiply(double)" class="member-name-link">multiply</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../DistanceQuantity.html#multiply(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">multiply</a><wbr>(<a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code><a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../AreaQuantity.html#subtract(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">subtract</a><wbr>(<a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<div class="caption"><span>Methods in <a href="../package-summary.html">javax.measure.test.quantity</a> with parameters of type <a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../AreaQuantity.html#add(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">add</a><wbr>(<a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../VolumeQuantity.html#divide(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">divide</a><wbr>(<a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;a1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>boolean</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../AreaQuantity.html#eq(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">eq</a><wbr>(<a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>boolean</code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../AreaQuantity.html#ge(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">ge</a><wbr>(<a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>boolean</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../AreaQuantity.html#gt(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">gt</a><wbr>(<a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>boolean</code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../AreaQuantity.html#le(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">le</a><wbr>(<a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>boolean</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../AreaQuantity.html#lt(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">lt</a><wbr>(<a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../DistanceQuantity.html#multiply(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">multiply</a><wbr>(<a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;a1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>boolean</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../AreaQuantity.html#ne(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">ne</a><wbr>(<a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../AreaQuantity.html#subtract(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">subtract</a><wbr>(<a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/class-use/AreaQuantityTest.html b/docs/site/testapidocs/javax/measure/test/quantity/class-use/AreaQuantityTest.html
      new file mode 100644
      index 00000000..012c1b40
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/class-use/AreaQuantityTest.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.quantity.AreaQuantityTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.quantity, class: AreaQuantityTest">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../AreaQuantityTest.html" title="class in javax.measure.test.quantity">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.quantity.AreaQuantityTest" class="title">Uses of Class<br>javax.measure.test.quantity.AreaQuantityTest</h1>
      +</div>
      +No usage of javax.measure.test.quantity.AreaQuantityTest</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/class-use/CircleInfo.html b/docs/site/testapidocs/javax/measure/test/quantity/class-use/CircleInfo.html
      new file mode 100644
      index 00000000..a9b37a8f
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/class-use/CircleInfo.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.quantity.CircleInfo (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.quantity, class: CircleInfo">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../CircleInfo.html" title="class in javax.measure.test.quantity">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.quantity.CircleInfo" class="title">Uses of Class<br>javax.measure.test.quantity.CircleInfo</h1>
      +</div>
      +No usage of javax.measure.test.quantity.CircleInfo</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/class-use/DistanceQuantity.html b/docs/site/testapidocs/javax/measure/test/quantity/class-use/DistanceQuantity.html
      new file mode 100644
      index 00000000..daf69fa6
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/class-use/DistanceQuantity.html
      @@ -0,0 +1,174 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.quantity.DistanceQuantity (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.quantity, class: DistanceQuantity">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.quantity.DistanceQuantity" class="title">Uses of Class<br>javax.measure.test.quantity.DistanceQuantity</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test">javax.measure.test</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="#javax.measure.test.quantity">javax.measure.test.quantity</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +<section class="class-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test">
      +<h2>Uses of <a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a> in <a href="../../package-summary.html">javax.measure.test</a></h2>
      +<div class="caption"><span>Methods in <a href="../../package-summary.html">javax.measure.test</a> that return <a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TripLeg.</span><code><a href="../../TripLeg.html#getDist()" class="member-name-link">getDist</a>()</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<div class="caption"><span>Constructors in <a href="../../package-summary.html">javax.measure.test</a> with parameters of type <a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier</div>
      +<div class="table-header col-second">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../../TripLeg.html#%3Cinit%3E(java.lang.String,java.lang.String,javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">TripLeg</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;fA,
      + <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;tA,
      + <a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;dist)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="javax.measure.test.quantity">
      +<h2>Uses of <a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a> in <a href="../package-summary.html">javax.measure.test.quantity</a></h2>
      +<div class="caption"><span>Methods in <a href="../package-summary.html">javax.measure.test.quantity</a> that return <a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../DistanceQuantity.html#add(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">add</a><wbr>(<a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../DistanceQuantity.html#convert(javax.measure.test.unit.DistanceUnit)" class="member-name-link">convert</a><wbr>(<a href="../../unit/DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a>&nbsp;newUnit)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code><a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../AreaQuantity.html#divide(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">divide</a><wbr>(<a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../DistanceQuantity.html#divide(double)" class="member-name-link">divide</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code><a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../VolumeQuantity.html#divide(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">divide</a><wbr>(<a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;a1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../DistanceQuantity.html#multiply(double)" class="member-name-link">multiply</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code><a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../DistanceQuantity.html#subtract(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">subtract</a><wbr>(<a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<div class="caption"><span>Methods in <a href="../package-summary.html">javax.measure.test.quantity</a> with parameters of type <a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../DistanceQuantity.html#add(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">add</a><wbr>(<a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../AreaQuantity.html#divide(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">divide</a><wbr>(<a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code><a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../VolumeQuantity.html#divide(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">divide</a><wbr>(<a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>boolean</code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../DistanceQuantity.html#eq(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">eq</a><wbr>(<a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>boolean</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../DistanceQuantity.html#ge(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">ge</a><wbr>(<a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>boolean</code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../DistanceQuantity.html#gt(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">gt</a><wbr>(<a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>boolean</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../DistanceQuantity.html#le(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">le</a><wbr>(<a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>boolean</code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../DistanceQuantity.html#lt(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">lt</a><wbr>(<a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code><a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../AreaQuantity.html#multiply(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">multiply</a><wbr>(<a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../DistanceQuantity.html#multiply(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">multiply</a><wbr>(<a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>boolean</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../DistanceQuantity.html#ne(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">ne</a><wbr>(<a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../DistanceQuantity.html#subtract(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">subtract</a><wbr>(<a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/class-use/DistanceQuantityTest.html b/docs/site/testapidocs/javax/measure/test/quantity/class-use/DistanceQuantityTest.html
      new file mode 100644
      index 00000000..1ee1f104
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/class-use/DistanceQuantityTest.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.quantity.DistanceQuantityTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.quantity, class: DistanceQuantityTest">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../DistanceQuantityTest.html" title="class in javax.measure.test.quantity">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.quantity.DistanceQuantityTest" class="title">Uses of Class<br>javax.measure.test.quantity.DistanceQuantityTest</h1>
      +</div>
      +No usage of javax.measure.test.quantity.DistanceQuantityTest</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/class-use/TemperatureQuantity.html b/docs/site/testapidocs/javax/measure/test/quantity/class-use/TemperatureQuantity.html
      new file mode 100644
      index 00000000..cf2c1cee
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/class-use/TemperatureQuantity.html
      @@ -0,0 +1,111 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.quantity.TemperatureQuantity (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.quantity, class: TemperatureQuantity">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../TemperatureQuantity.html" title="class in javax.measure.test.quantity">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.quantity.TemperatureQuantity" class="title">Uses of Class<br>javax.measure.test.quantity.TemperatureQuantity</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="../TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test.quantity">javax.measure.test.quantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<section class="class-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test.quantity">
      +<h2>Uses of <a href="../TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a> in <a href="../package-summary.html">javax.measure.test.quantity</a></h2>
      +<div class="caption"><span>Methods in <a href="../package-summary.html">javax.measure.test.quantity</a> that return <a href="../TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TemperatureQuantity.</span><code><a href="../TemperatureQuantity.html#add(javax.measure.test.quantity.TemperatureQuantity)" class="member-name-link">add</a><wbr>(<a href="../TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>protected <a href="../TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TemperatureQuantity.</span><code><a href="../TemperatureQuantity.html#convert(javax.measure.test.unit.TemperatureUnit)" class="member-name-link">convert</a><wbr>(<a href="../../unit/TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a>&nbsp;newUnit)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code><a href="../TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TemperatureQuantity.</span><code><a href="../TemperatureQuantity.html#divide(double)" class="member-name-link">divide</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TemperatureQuantity.</span><code><a href="../TemperatureQuantity.html#subtract(javax.measure.test.quantity.TemperatureQuantity)" class="member-name-link">subtract</a><wbr>(<a href="../TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +<div class="caption"><span>Methods in <a href="../package-summary.html">javax.measure.test.quantity</a> with parameters of type <a href="../TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TemperatureQuantity.</span><code><a href="../TemperatureQuantity.html#add(javax.measure.test.quantity.TemperatureQuantity)" class="member-name-link">add</a><wbr>(<a href="../TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>protected boolean</code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TemperatureQuantity.</span><code><a href="../TemperatureQuantity.html#eq(javax.measure.test.quantity.TemperatureQuantity)" class="member-name-link">eq</a><wbr>(<a href="../TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a>&nbsp;dq)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code><a href="../TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TemperatureQuantity.</span><code><a href="../TemperatureQuantity.html#subtract(javax.measure.test.quantity.TemperatureQuantity)" class="member-name-link">subtract</a><wbr>(<a href="../TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/class-use/TemperatureQuantityTest.html b/docs/site/testapidocs/javax/measure/test/quantity/class-use/TemperatureQuantityTest.html
      new file mode 100644
      index 00000000..dd969863
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/class-use/TemperatureQuantityTest.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.quantity.TemperatureQuantityTest (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.quantity, class: TemperatureQuantityTest">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.quantity.TemperatureQuantityTest" class="title">Uses of Class<br>javax.measure.test.quantity.TemperatureQuantityTest</h1>
      +</div>
      +No usage of javax.measure.test.quantity.TemperatureQuantityTest</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/class-use/TestQuantities.html b/docs/site/testapidocs/javax/measure/test/quantity/class-use/TestQuantities.html
      new file mode 100644
      index 00000000..ad4746f8
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/class-use/TestQuantities.html
      @@ -0,0 +1,62 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.quantity.TestQuantities (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.quantity, class: TestQuantities">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../TestQuantities.html" title="class in javax.measure.test.quantity">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.quantity.TestQuantities" class="title">Uses of Class<br>javax.measure.test.quantity.TestQuantities</h1>
      +</div>
      +No usage of javax.measure.test.quantity.TestQuantities</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/class-use/TestQuantity.html b/docs/site/testapidocs/javax/measure/test/quantity/class-use/TestQuantity.html
      new file mode 100644
      index 00000000..c71d16ae
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/class-use/TestQuantity.html
      @@ -0,0 +1,156 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.quantity.TestQuantity (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.quantity, class: TestQuantity">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../TestQuantity.html" title="class in javax.measure.test.quantity">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.quantity.TestQuantity" class="title">Uses of Class<br>javax.measure.test.quantity.TestQuantity</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test.quantity">javax.measure.test.quantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<section class="class-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test.quantity">
      +<h2>Uses of <a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a> in <a href="../package-summary.html">javax.measure.test.quantity</a></h2>
      +<div class="caption"><span>Subclasses of <a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a> in <a href="../package-summary.html">javax.measure.test.quantity</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>class&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../AreaQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>class&nbsp;</code></div>
      +<div class="col-second odd-row-color"><code><a href="../DistanceQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>final class&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../TemperatureQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">TemperatureQuantity</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>class&nbsp;</code></div>
      +<div class="col-second odd-row-color"><code><a href="../TimeQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">TimeQuantity</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>class&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../VolumeQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<div class="caption"><span>Methods in <a href="../package-summary.html">javax.measure.test.quantity</a> that return <a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TestQuantity.</span><code><a href="../TestQuantity.html#add(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)" class="member-name-link">add</a><wbr>(<a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;dn,
      + <a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1,
      + <a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d2,
      + <a href="../../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;au)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;</code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TestQuantity.</span><code><a href="../TestQuantity.html#subtract(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)" class="member-name-link">subtract</a><wbr>(<a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;dn,
      + <a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1,
      + <a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d2,
      + <a href="../../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;au)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +<div class="caption"><span>Methods in <a href="../package-summary.html">javax.measure.test.quantity</a> with parameters of type <a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TestQuantity.</span><code><a href="../TestQuantity.html#add(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)" class="member-name-link">add</a><wbr>(<a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;dn,
      + <a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1,
      + <a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d2,
      + <a href="../../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;au)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>boolean</code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TemperatureQuantity.</span><code><a href="../TemperatureQuantity.html#eq(javax.measure.test.quantity.TestQuantity)" class="member-name-link">eq</a><wbr>(<a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;&nbsp;dq)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>boolean</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TestQuantity.</span><code><a href="../TestQuantity.html#eq(javax.measure.test.quantity.TestQuantity)" class="member-name-link">eq</a><wbr>(<a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>boolean</code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TestQuantity.</span><code><a href="../TestQuantity.html#ge(javax.measure.test.quantity.TestQuantity)" class="member-name-link">ge</a><wbr>(<a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>boolean</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TestQuantity.</span><code><a href="../TestQuantity.html#gt(javax.measure.test.quantity.TestQuantity)" class="member-name-link">gt</a><wbr>(<a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>boolean</code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TestQuantity.</span><code><a href="../TestQuantity.html#le(javax.measure.test.quantity.TestQuantity)" class="member-name-link">le</a><wbr>(<a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>boolean</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TestQuantity.</span><code><a href="../TestQuantity.html#lt(javax.measure.test.quantity.TestQuantity)" class="member-name-link">lt</a><wbr>(<a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>boolean</code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TestQuantity.</span><code><a href="../TestQuantity.html#ne(javax.measure.test.quantity.TestQuantity)" class="member-name-link">ne</a><wbr>(<a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code><a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TestQuantity.</span><code><a href="../TestQuantity.html#subtract(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)" class="member-name-link">subtract</a><wbr>(<a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;dn,
      + <a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d1,
      + <a href="../TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;d2,
      + <a href="../../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../TestQuantity.html" title="type parameter in TestQuantity">Q</a>&gt;&nbsp;au)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/class-use/TimeQuantity.html b/docs/site/testapidocs/javax/measure/test/quantity/class-use/TimeQuantity.html
      new file mode 100644
      index 00000000..9d54a11e
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/class-use/TimeQuantity.html
      @@ -0,0 +1,129 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.quantity.TimeQuantity (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.quantity, class: TimeQuantity">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.quantity.TimeQuantity" class="title">Uses of Class<br>javax.measure.test.quantity.TimeQuantity</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test.quantity">javax.measure.test.quantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<section class="class-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test.quantity">
      +<h2>Uses of <a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a> in <a href="../package-summary.html">javax.measure.test.quantity</a></h2>
      +<div class="caption"><span>Methods in <a href="../package-summary.html">javax.measure.test.quantity</a> that return <a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TimeQuantity.</span><code><a href="../TimeQuantity.html#add(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">add</a><wbr>(<a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TimeQuantity.</span><code><a href="../TimeQuantity.html#convert(javax.measure.test.unit.TimeUnit)" class="member-name-link">convert</a><wbr>(<a href="../../unit/TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a>&nbsp;newUnit)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code><a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TimeQuantity.</span><code><a href="../TimeQuantity.html#divide(double)" class="member-name-link">divide</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TimeQuantity.</span><code><a href="../TimeQuantity.html#multiply(double)" class="member-name-link">multiply</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code><a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TimeQuantity.</span><code><a href="../TimeQuantity.html#subtract(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">subtract</a><wbr>(<a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<div class="caption"><span>Methods in <a href="../package-summary.html">javax.measure.test.quantity</a> with parameters of type <a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TimeQuantity.</span><code><a href="../TimeQuantity.html#add(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">add</a><wbr>(<a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>boolean</code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TimeQuantity.</span><code><a href="../TimeQuantity.html#eq(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">eq</a><wbr>(<a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>boolean</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TimeQuantity.</span><code><a href="../TimeQuantity.html#ge(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">ge</a><wbr>(<a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>boolean</code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TimeQuantity.</span><code><a href="../TimeQuantity.html#gt(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">gt</a><wbr>(<a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>boolean</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TimeQuantity.</span><code><a href="../TimeQuantity.html#le(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">le</a><wbr>(<a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>boolean</code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TimeQuantity.</span><code><a href="../TimeQuantity.html#lt(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">lt</a><wbr>(<a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>boolean</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TimeQuantity.</span><code><a href="../TimeQuantity.html#ne(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">ne</a><wbr>(<a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TimeQuantity.</span><code><a href="../TimeQuantity.html#subtract(javax.measure.test.quantity.TimeQuantity)" class="member-name-link">subtract</a><wbr>(<a href="../TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/class-use/VolumeQuantity.html b/docs/site/testapidocs/javax/measure/test/quantity/class-use/VolumeQuantity.html
      new file mode 100644
      index 00000000..a38a0a7c
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/class-use/VolumeQuantity.html
      @@ -0,0 +1,135 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.quantity.VolumeQuantity (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.quantity, class: VolumeQuantity">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.quantity.VolumeQuantity" class="title">Uses of Class<br>javax.measure.test.quantity.VolumeQuantity</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test.quantity">javax.measure.test.quantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<section class="class-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test.quantity">
      +<h2>Uses of <a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a> in <a href="../package-summary.html">javax.measure.test.quantity</a></h2>
      +<div class="caption"><span>Methods in <a href="../package-summary.html">javax.measure.test.quantity</a> that return <a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../VolumeQuantity.html#add(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">add</a><wbr>(<a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../VolumeQuantity.html#convert(javax.measure.test.unit.VolumeUnit)" class="member-name-link">convert</a><wbr>(<a href="../../unit/VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a>&nbsp;newUnit)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code><a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../VolumeQuantity.html#divide(double)" class="member-name-link">divide</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../AreaQuantity.html#multiply(javax.measure.test.quantity.DistanceQuantity)" class="member-name-link">multiply</a><wbr>(<a href="../DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code><a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../DistanceQuantity.html#multiply(javax.measure.test.quantity.AreaQuantity)" class="member-name-link">multiply</a><wbr>(<a href="../AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a>&nbsp;a1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../VolumeQuantity.html#multiply(double)" class="member-name-link">multiply</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code><a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../VolumeQuantity.html#subtract(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">subtract</a><wbr>(<a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<div class="caption"><span>Methods in <a href="../package-summary.html">javax.measure.test.quantity</a> with parameters of type <a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../VolumeQuantity.html#add(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">add</a><wbr>(<a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>boolean</code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../VolumeQuantity.html#eq(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">eq</a><wbr>(<a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>boolean</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../VolumeQuantity.html#ge(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">ge</a><wbr>(<a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>boolean</code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../VolumeQuantity.html#gt(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">gt</a><wbr>(<a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>boolean</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../VolumeQuantity.html#le(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">le</a><wbr>(<a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>boolean</code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../VolumeQuantity.html#lt(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">lt</a><wbr>(<a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>boolean</code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../VolumeQuantity.html#ne(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">ne</a><wbr>(<a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../VolumeQuantity.html#subtract(javax.measure.test.quantity.VolumeQuantity)" class="member-name-link">subtract</a><wbr>(<a href="../VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a>&nbsp;d1)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/package-summary.html b/docs/site/testapidocs/javax/measure/test/quantity/package-summary.html
      new file mode 100644
      index 00000000..6322a49f
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/package-summary.html
      @@ -0,0 +1,127 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>javax.measure.test.quantity (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.quantity">
      +<meta name="generator" content="javadoc/PackageWriterImpl">
      +<meta name="keywords" content="javax.measure.test.quantity package">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-declaration-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li class="nav-bar-cell1-rev">Package</li>
      +<li>Class</li>
      +<li><a href="package-use.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#package">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Package:&nbsp;</li>
      +<li>Description&nbsp;|&nbsp;</li>
      +<li><a href="#related-package-summary">Related Packages</a>&nbsp;|&nbsp;</li>
      +<li><a href="#class-summary">Classes and Interfaces</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Package javax.measure.test.quantity" class="title">Package javax.measure.test.quantity</h1>
      +</div>
      +<hr>
      +<div class="package-signature">package <span class="element-name">javax.measure.test.quantity</span></div>
      +<section class="summary">
      +<ul class="summary-list">
      +<li>
      +<div id="related-package-summary">
      +<div class="caption"><span>Related Packages</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="../package-summary.html">javax.measure.test</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="../format/package-summary.html">javax.measure.test.format</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><a href="../function/package-summary.html">javax.measure.test.function</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="../unit/package-summary.html">javax.measure.test.unit</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</div>
      +</li>
      +<li>
      +<div id="class-summary">
      +<div class="caption"><span>Classes</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color class-summary class-summary-tab2"><a href="AreaQuantityTest.html" title="class in javax.measure.test.quantity">AreaQuantityTest</a></div>
      +<div class="col-last odd-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="CircleInfo.html" title="class in javax.measure.test.quantity">CircleInfo</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color class-summary class-summary-tab2"><a href="DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></div>
      +<div class="col-last odd-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="DistanceQuantityTest.html" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color class-summary class-summary-tab2"><a href="TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></div>
      +<div class="col-last odd-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="TemperatureQuantityTest.html" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color class-summary class-summary-tab2"><a href="TestQuantities.html" title="class in javax.measure.test.quantity">TestQuantities</a></div>
      +<div class="col-last odd-row-color class-summary class-summary-tab2">
      +<div class="block">Singleton class for accessing <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link"><code>Quantity</code></a> instances.</div>
      +</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="TestQuantity.html" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;Q extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;&gt;</div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color class-summary class-summary-tab2"><a href="TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></div>
      +<div class="col-last odd-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">&nbsp;</div>
      +</div>
      +</div>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/package-tree.html b/docs/site/testapidocs/javax/measure/test/quantity/package-tree.html
      new file mode 100644
      index 00000000..87cfe770
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/package-tree.html
      @@ -0,0 +1,89 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>javax.measure.test.quantity Class Hierarchy (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="tree: package: javax.measure.test.quantity">
      +<meta name="generator" content="javadoc/PackageTreeWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-tree-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li>Class</li>
      +<li>Use</li>
      +<li class="nav-bar-cell1-rev">Tree</li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#tree">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 class="title">Hierarchy For Package javax.measure.test.quantity</h1>
      +<span class="package-hierarchy-label">Package Hierarchies:</span>
      +<ul class="horizontal">
      +<li><a href="../../../../overview-tree.html">All Packages</a></li>
      +</ul>
      +</div>
      +<section class="hierarchy">
      +<h2 title="Class Hierarchy">Class Hierarchy</h2>
      +<ul>
      +<li class="circle"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" class="type-name-link external-link" title="class or interface in java.lang">Object</a>
      +<ul>
      +<li class="circle"><a href="AreaQuantityTest.html" class="type-name-link" title="class in javax.measure.test.quantity">AreaQuantityTest</a></li>
      +<li class="circle"><a href="CircleInfo.html" class="type-name-link" title="class in javax.measure.test.quantity">CircleInfo</a></li>
      +<li class="circle"><a href="DistanceQuantityTest.html" class="type-name-link" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></li>
      +<li class="circle"><a href="TemperatureQuantityTest.html" class="type-name-link" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></li>
      +<li class="circle"><a href="TestQuantities.html" class="type-name-link" title="class in javax.measure.test.quantity">TestQuantities</a></li>
      +<li class="circle"><a href="TestQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;Q&gt; (implements <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html" title="class or interface in java.lang" class="external-link">Comparable</a>&lt;T&gt;, <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;)
      +<ul>
      +<li class="circle"><a href="AreaQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">AreaQuantity</a> (implements <a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>)</li>
      +<li class="circle"><a href="DistanceQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">DistanceQuantity</a> (implements <a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>)</li>
      +<li class="circle"><a href="TemperatureQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">TemperatureQuantity</a> (implements <a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>)</li>
      +<li class="circle"><a href="TimeQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">TimeQuantity</a></li>
      +<li class="circle"><a href="VolumeQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">VolumeQuantity</a></li>
      +</ul>
      +</li>
      +</ul>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/quantity/package-use.html b/docs/site/testapidocs/javax/measure/test/quantity/package-use.html
      new file mode 100644
      index 00000000..530fd82c
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/quantity/package-use.html
      @@ -0,0 +1,107 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Package javax.measure.test.quantity (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.quantity">
      +<meta name="generator" content="javadoc/PackageUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li>Class</li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Package javax.measure.test.quantity" class="title">Uses of Package<br>javax.measure.test.quantity</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="package-summary.html">javax.measure.test.quantity</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test">javax.measure.test</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="#javax.measure.test.quantity">javax.measure.test.quantity</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +<section class="package-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test">
      +<div class="caption"><span>Classes in <a href="package-summary.html">javax.measure.test.quantity</a> used by <a href="../package-summary.html">javax.measure.test</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="class-use/DistanceQuantity.html#javax.measure.test">DistanceQuantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="javax.measure.test.quantity">
      +<div class="caption"><span>Classes in <a href="package-summary.html">javax.measure.test.quantity</a> used by <a href="package-summary.html">javax.measure.test.quantity</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="class-use/AreaQuantity.html#javax.measure.test.quantity">AreaQuantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="class-use/DistanceQuantity.html#javax.measure.test.quantity">DistanceQuantity</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><a href="class-use/TemperatureQuantity.html#javax.measure.test.quantity">TemperatureQuantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="class-use/TestQuantity.html#javax.measure.test.quantity">TestQuantity</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><a href="class-use/TimeQuantity.html#javax.measure.test.quantity">TimeQuantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="class-use/VolumeQuantity.html#javax.measure.test.quantity">VolumeQuantity</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/AreaUnit.html b/docs/site/testapidocs/javax/measure/test/unit/AreaUnit.html
      new file mode 100644
      index 00000000..ed76abbb
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/AreaUnit.html
      @@ -0,0 +1,259 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>AreaUnit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.unit, class: AreaUnit">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.unit.AreaUnit class">
      +<meta name="keywords" content="sqmetre">
      +<meta name="keywords" content="REF_UNIT">
      +<meta name="keywords" content="sqmile">
      +<meta name="keywords" content="acre">
      +<meta name="keywords" content="hectare">
      +<meta name="keywords" content="getSystemUnit()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/AreaUnit.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li><a href="#field-detail">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.unit</a></div>
      +<h1 title="Class AreaUnit" class="title">Class AreaUnit</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance"><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;
      +<div class="inheritance">AreaUnit</div>
      +</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/AreaUnit.html#line-41">AreaUnit</a></span>
      +<span class="extends-implements">extends <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</span></div>
      +<dl class="notes">
      +<dt>Author:</dt>
      +<dd>Werner Keil</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- =========== FIELD SUMMARY =========== -->
      +<li>
      +<section class="field-summary" id="field-summary">
      +<h2>Field Summary</h2>
      +<div class="caption"><span>Fields</span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final <a href="AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#acre" class="member-name-link">acre</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></code></div>
      +<div class="col-second odd-row-color"><code><a href="#hectare" class="member-name-link">hectare</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#REF_UNIT" class="member-name-link">REF_UNIT</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></code></div>
      +<div class="col-second odd-row-color"><code><a href="#sqmetre" class="member-name-link">sqmetre</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#sqmile" class="member-name-link">sqmile</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="fields-inherited-from-class-TestUnit">Fields inherited from class&nbsp;<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></h3>
      +<code><a href="../TestUnit.html#multFactor">multFactor</a>, <a href="../TestUnit.html#name">name</a>, <a href="../TestUnit.html#ONE">ONE</a>, <a href="../TestUnit.html#symbol">symbol</a></code></div>
      +</section>
      +</li>
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String,double)" class="member-name-link">AreaUnit</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name2,
      + double&nbsp;convF)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getSystemUnit()" class="member-name-link">getSystemUnit</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-TestUnit">Methods inherited from class&nbsp;<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></h3>
      +<code><a href="../TestUnit.html#alternate(java.lang.String)">alternate</a>, <a href="../TestUnit.html#asType(java.lang.Class)">asType</a>, <a href="../TestUnit.html#divide(double)">divide</a>, <a href="../TestUnit.html#divide(java.lang.Number)">divide</a>, <a href="../TestUnit.html#divide(javax.measure.Unit)">divide</a>, <a href="../TestUnit.html#getBaseUnits()">getBaseUnits</a>, <a href="../TestUnit.html#getConverterTo(javax.measure.Unit)">getConverterTo</a>, <a href="../TestUnit.html#getConverterToAny(javax.measure.Unit)">getConverterToAny</a>, <a href="../TestUnit.html#getDimension()">getDimension</a>, <a href="../TestUnit.html#getMultFactor()">getMultFactor</a>, <a href="../TestUnit.html#getName()">getName</a>, <a href="../TestUnit.html#getSymbol()">getSymbol</a>, <a href="../TestUnit.html#getSystemConverter()">getSystemConverter</a>, <a href="../TestUnit.html#inverse()">inverse</a>, <a href="../TestUnit.html#isCompatible(javax.measure.Unit)">isCompatible</a>, <a href="../TestUnit.html#isEquivalentTo(javax.measure.Unit)">isEquivalentTo</a>, <a href="../TestUnit.html#multiply(double)">multiply</a>, <a href="../TestUnit.html#multiply(java.lang.Number)">multiply</a>, <a href="../TestUnit.html#multiply(javax.measure.Unit)">multiply</a>, <a href="../TestUnit.html#pow(int)">pow</a>, <a href="../TestUnit.html#prefix(javax.measure.Prefix)">prefix</a>, <a href="../TestUnit.html#root(int)">root</a>, <a href="../TestUnit.html#shift(double)">shift</a>, <a href="../TestUnit.html#shift(java.lang.Number)">shift</a>, <a href="../TestUnit.html#toString()">toString</a>, <a href="../TestUnit.html#transform(javax.measure.UnitConverter)">transform</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ============ FIELD DETAIL =========== -->
      +<li>
      +<section class="field-details" id="field-detail">
      +<h2>Field Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="sqmetre">
      +<h3>sqmetre</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/AreaUnit.html#line-43">sqmetre</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="REF_UNIT">
      +<h3>REF_UNIT</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/AreaUnit.html#line-45">REF_UNIT</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="sqmile">
      +<h3>sqmile</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/AreaUnit.html#line-46">sqmile</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="acre">
      +<h3>acre</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/AreaUnit.html#line-47">acre</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="hectare">
      +<h3>hectare</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/AreaUnit.html#line-48">hectare</a></span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.String,double)">
      +<h3>AreaUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/AreaUnit.html#line-50">AreaUnit</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name2,
      + double&nbsp;convF)</span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="getSystemUnit()">
      +<h3>getSystemUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/AreaUnit.html#line-55">getSystemUnit</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#getSystemUnit()" title="class or interface in javax.measure" class="external-link">getSystemUnit</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></dd>
      +<dt>Specified by:</dt>
      +<dd><code><a href="../TestUnit.html#getSystemUnit()">getSystemUnit</a></code>&nbsp;in class&nbsp;<code><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/BaseUnit.html b/docs/site/testapidocs/javax/measure/test/unit/BaseUnit.html
      new file mode 100644
      index 00000000..c3506e42
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/BaseUnit.html
      @@ -0,0 +1,309 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>BaseUnit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.unit, class: BaseUnit">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.unit.BaseUnit class">
      +<meta name="keywords" content="getSymbol()">
      +<meta name="keywords" content="equals()">
      +<meta name="keywords" content="hashCode()">
      +<meta name="keywords" content="getSystemUnit()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/BaseUnit.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li>Field&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.unit</a></div>
      +<h1 title="Class BaseUnit" class="title">Class BaseUnit&lt;Q extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;&gt;</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance"><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;Q&gt;
      +<div class="inheritance">BaseUnit&lt;Q&gt;</div>
      +</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>Type Parameters:</dt>
      +<dd><code>Q</code> - The type of the quantity measured by this unit.</dd>
      +</dl>
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;Q&gt;</code></dd>
      +</dl>
      +<dl class="notes">
      +<dt>Direct Known Subclasses:</dt>
      +<dd><code><a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code>, <code><a href="MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></code>, <code><a href="TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></code></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/BaseUnit.html#line-53">BaseUnit</a>&lt;Q extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;&gt;</span>
      +<span class="extends-implements">extends <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;Q&gt;</span></div>
      +<div class="block">Building blocks on top of which all others units are created. Base units are always unscaled metric units.
      +
      + <p>
      + When using the standard model (default), all seven base units are dimensionally independent.
      + </p></div>
      +<dl class="notes">
      +<dt>Since:</dt>
      +<dd>1.0</dd>
      +<dt>Version:</dt>
      +<dd>1.1</dd>
      +<dt>Author:</dt>
      +<dd><a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>, <a href="mailto:werner@uom.technology">Werner Keil</a></dd>
      +<dt>See Also:</dt>
      +<dd>
      +<ul class="see-list">
      +<li><a href="http://en.wikipedia.org/wiki/SI_base_unit">Wikipedia: SI base unit</a></li>
      +</ul>
      +</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- =========== FIELD SUMMARY =========== -->
      +<li>
      +<section class="field-summary" id="field-summary">
      +<h2>Field Summary</h2>
      +<div class="inherited-list">
      +<h3 id="fields-inherited-from-class-TestUnit">Fields inherited from class&nbsp;<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></h3>
      +<code><a href="../TestUnit.html#multFactor">multFactor</a>, <a href="../TestUnit.html#name">name</a>, <a href="../TestUnit.html#ONE">ONE</a>, <a href="../TestUnit.html#symbol">symbol</a></code></div>
      +</section>
      +</li>
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String)" class="member-name-link">BaseUnit</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;symbol)</code></div>
      +<div class="col-last even-row-color">
      +<div class="block">Creates a base unit having the specified symbol.</div>
      +</div>
      +<div class="col-constructor-name odd-row-color"><code><a href="#%3Cinit%3E(java.lang.String,double)" class="member-name-link">BaseUnit</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name,
      + double&nbsp;factor)</code></div>
      +<div class="col-last odd-row-color">
      +<div class="block">Creates a base unit with name and factor</div>
      +</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String,java.lang.String)" class="member-name-link">BaseUnit</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;symbol,
      + <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name)</code></div>
      +<div class="col-last even-row-color">
      +<div class="block">Creates a base unit having the specified symbol.</div>
      +</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#equals(java.lang.Object)" class="member-name-link">equals</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>&nbsp;obj)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getSymbol()" class="member-name-link">getSymbol</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="BaseUnit.html" title="type parameter in BaseUnit">Q</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getSystemUnit()" class="member-name-link">getSystemUnit</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>int</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#hashCode()" class="member-name-link">hashCode</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-TestUnit">Methods inherited from class&nbsp;<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></h3>
      +<code><a href="../TestUnit.html#alternate(java.lang.String)">alternate</a>, <a href="../TestUnit.html#asType(java.lang.Class)">asType</a>, <a href="../TestUnit.html#divide(double)">divide</a>, <a href="../TestUnit.html#divide(java.lang.Number)">divide</a>, <a href="../TestUnit.html#divide(javax.measure.Unit)">divide</a>, <a href="../TestUnit.html#getBaseUnits()">getBaseUnits</a>, <a href="../TestUnit.html#getConverterTo(javax.measure.Unit)">getConverterTo</a>, <a href="../TestUnit.html#getConverterToAny(javax.measure.Unit)">getConverterToAny</a>, <a href="../TestUnit.html#getDimension()">getDimension</a>, <a href="../TestUnit.html#getMultFactor()">getMultFactor</a>, <a href="../TestUnit.html#getName()">getName</a>, <a href="../TestUnit.html#getSystemConverter()">getSystemConverter</a>, <a href="../TestUnit.html#inverse()">inverse</a>, <a href="../TestUnit.html#isCompatible(javax.measure.Unit)">isCompatible</a>, <a href="../TestUnit.html#isEquivalentTo(javax.measure.Unit)">isEquivalentTo</a>, <a href="../TestUnit.html#multiply(double)">multiply</a>, <a href="../TestUnit.html#multiply(java.lang.Number)">multiply</a>, <a href="../TestUnit.html#multiply(javax.measure.Unit)">multiply</a>, <a href="../TestUnit.html#pow(int)">pow</a>, <a href="../TestUnit.html#prefix(javax.measure.Prefix)">prefix</a>, <a href="../TestUnit.html#root(int)">root</a>, <a href="../TestUnit.html#shift(double)">shift</a>, <a href="../TestUnit.html#shift(java.lang.Number)">shift</a>, <a href="../TestUnit.html#toString()">toString</a>, <a href="../TestUnit.html#transform(javax.measure.UnitConverter)">transform</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.String,java.lang.String)">
      +<h3>BaseUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/BaseUnit.html#line-63">BaseUnit</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;symbol,
      + <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name)</span></div>
      +<div class="block">Creates a base unit having the specified symbol.</div>
      +<dl class="notes">
      +<dt>Parameters:</dt>
      +<dd><code>symbol</code> - the symbol of this base unit.</dd>
      +<dd><code>name</code> - the name of this base unit.</dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html" title="class or interface in java.lang" class="external-link">IllegalArgumentException</a></code> - if the specified symbol is associated to a different unit.</dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.String,double)">
      +<h3>BaseUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/BaseUnit.html#line-77">BaseUnit</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name,
      + double&nbsp;factor)</span></div>
      +<div class="block">Creates a base unit with name and factor</div>
      +<dl class="notes">
      +<dt>Parameters:</dt>
      +<dd><code>factor</code> - the factor</dd>
      +<dd><code>name</code> - the name of this base unit.</dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html" title="class or interface in java.lang" class="external-link">IllegalArgumentException</a></code> - if the specified symbol is associated to a different unit.</dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.String)">
      +<h3>BaseUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/BaseUnit.html#line-89">BaseUnit</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;symbol)</span></div>
      +<div class="block">Creates a base unit having the specified symbol.</div>
      +<dl class="notes">
      +<dt>Parameters:</dt>
      +<dd><code>symbol</code> - the symbol of this base unit.</dd>
      +<dt>Throws:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html" title="class or interface in java.lang" class="external-link">IllegalArgumentException</a></code> - if the specified symbol is associated to a different unit.</dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="getSymbol()">
      +<h3>getSymbol</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/BaseUnit.html#line-93">getSymbol</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#getSymbol()" title="class or interface in javax.measure" class="external-link">getSymbol</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="BaseUnit.html" title="type parameter in BaseUnit">Q</a> extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="BaseUnit.html" title="type parameter in BaseUnit">Q</a>&gt;&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="../TestUnit.html#getSymbol()">getSymbol</a></code>&nbsp;in class&nbsp;<code><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="BaseUnit.html" title="type parameter in BaseUnit">Q</a> extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="BaseUnit.html" title="type parameter in BaseUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="equals(java.lang.Object)">
      +<h3>equals</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/BaseUnit.html#line-98">equals</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>&nbsp;obj)</span></div>
      +<dl class="notes">
      +<dt>Overrides:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="hashCode()">
      +<h3>hashCode</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">int</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/BaseUnit.html#line-110">hashCode</a></span>()</div>
      +<dl class="notes">
      +<dt>Overrides:</dt>
      +<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getSystemUnit()">
      +<h3>getSystemUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="BaseUnit.html" title="type parameter in BaseUnit">Q</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/BaseUnit.html#line-116">getSystemUnit</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#getSystemUnit()" title="class or interface in javax.measure" class="external-link">getSystemUnit</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="BaseUnit.html" title="type parameter in BaseUnit">Q</a> extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="BaseUnit.html" title="type parameter in BaseUnit">Q</a>&gt;&gt;</code></dd>
      +<dt>Specified by:</dt>
      +<dd><code><a href="../TestUnit.html#getSystemUnit()">getSystemUnit</a></code>&nbsp;in class&nbsp;<code><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="BaseUnit.html" title="type parameter in BaseUnit">Q</a> extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;<a href="BaseUnit.html" title="type parameter in BaseUnit">Q</a>&gt;&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/DistanceUnit.html b/docs/site/testapidocs/javax/measure/test/unit/DistanceUnit.html
      new file mode 100644
      index 00000000..3947b099
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/DistanceUnit.html
      @@ -0,0 +1,316 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>DistanceUnit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.unit, class: DistanceUnit">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.unit.DistanceUnit class">
      +<meta name="keywords" content="m">
      +<meta name="keywords" content="REF_UNIT">
      +<meta name="keywords" content="in">
      +<meta name="keywords" content="km">
      +<meta name="keywords" content="cm">
      +<meta name="keywords" content="mile">
      +<meta name="keywords" content="Ångström">
      +<meta name="keywords" content="AU">
      +<meta name="keywords" content="parsec">
      +<meta name="keywords" content="getSystemUnit()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/DistanceUnit.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li><a href="#field-detail">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.unit</a></div>
      +<h1 title="Class DistanceUnit" class="title">Class DistanceUnit</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance"><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;Q&gt;
      +<div class="inheritance"><a href="BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;
      +<div class="inheritance">DistanceUnit</div>
      +</div>
      +</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/DistanceUnit.html#line-40">DistanceUnit</a></span>
      +<span class="extends-implements">extends <a href="BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</span></div>
      +<dl class="notes">
      +<dt>Author:</dt>
      +<dd>Werner Keil</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- =========== FIELD SUMMARY =========== -->
      +<li>
      +<section class="field-summary" id="field-summary">
      +<h2>Field Summary</h2>
      +<div class="caption"><span>Fields</span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final <a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#%C3%85ngstr%C3%B6m" class="member-name-link">Ångström</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-second odd-row-color"><code><a href="#AU" class="member-name-link">AU</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#cm" class="member-name-link">cm</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-second odd-row-color"><code><a href="#in" class="member-name-link">in</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#km" class="member-name-link">km</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-second odd-row-color"><code><a href="#m" class="member-name-link">m</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#mile" class="member-name-link">mile</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-second odd-row-color"><code><a href="#parsec" class="member-name-link">parsec</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#REF_UNIT" class="member-name-link">REF_UNIT</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="fields-inherited-from-class-TestUnit">Fields inherited from class&nbsp;<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></h3>
      +<code><a href="../TestUnit.html#multFactor">multFactor</a>, <a href="../TestUnit.html#name">name</a>, <a href="../TestUnit.html#ONE">ONE</a>, <a href="../TestUnit.html#symbol">symbol</a></code></div>
      +</section>
      +</li>
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String,double)" class="member-name-link">DistanceUnit</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name2,
      + double&nbsp;convF)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-constructor-name odd-row-color"><code><a href="#%3Cinit%3E(java.lang.String,javax.measure.test.unit.DistanceUnit,double)" class="member-name-link">DistanceUnit</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name2,
      + <a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a>&nbsp;unit,
      + double&nbsp;convF)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getSystemUnit()" class="member-name-link">getSystemUnit</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-BaseUnit">Methods inherited from class&nbsp;<a href="BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a></h3>
      +<code><a href="BaseUnit.html#equals(java.lang.Object)">equals</a>, <a href="BaseUnit.html#getSymbol()">getSymbol</a>, <a href="BaseUnit.html#hashCode()">hashCode</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-TestUnit">Methods inherited from class&nbsp;<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></h3>
      +<code><a href="../TestUnit.html#alternate(java.lang.String)">alternate</a>, <a href="../TestUnit.html#asType(java.lang.Class)">asType</a>, <a href="../TestUnit.html#divide(double)">divide</a>, <a href="../TestUnit.html#divide(java.lang.Number)">divide</a>, <a href="../TestUnit.html#divide(javax.measure.Unit)">divide</a>, <a href="../TestUnit.html#getBaseUnits()">getBaseUnits</a>, <a href="../TestUnit.html#getConverterTo(javax.measure.Unit)">getConverterTo</a>, <a href="../TestUnit.html#getConverterToAny(javax.measure.Unit)">getConverterToAny</a>, <a href="../TestUnit.html#getDimension()">getDimension</a>, <a href="../TestUnit.html#getMultFactor()">getMultFactor</a>, <a href="../TestUnit.html#getName()">getName</a>, <a href="../TestUnit.html#getSystemConverter()">getSystemConverter</a>, <a href="../TestUnit.html#inverse()">inverse</a>, <a href="../TestUnit.html#isCompatible(javax.measure.Unit)">isCompatible</a>, <a href="../TestUnit.html#isEquivalentTo(javax.measure.Unit)">isEquivalentTo</a>, <a href="../TestUnit.html#multiply(double)">multiply</a>, <a href="../TestUnit.html#multiply(java.lang.Number)">multiply</a>, <a href="../TestUnit.html#multiply(javax.measure.Unit)">multiply</a>, <a href="../TestUnit.html#pow(int)">pow</a>, <a href="../TestUnit.html#prefix(javax.measure.Prefix)">prefix</a>, <a href="../TestUnit.html#root(int)">root</a>, <a href="../TestUnit.html#shift(double)">shift</a>, <a href="../TestUnit.html#shift(java.lang.Number)">shift</a>, <a href="../TestUnit.html#toString()">toString</a>, <a href="../TestUnit.html#transform(javax.measure.UnitConverter)">transform</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ============ FIELD DETAIL =========== -->
      +<li>
      +<section class="field-details" id="field-detail">
      +<h2>Field Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="m">
      +<h3>m</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/DistanceUnit.html#line-42">m</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="REF_UNIT">
      +<h3>REF_UNIT</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/DistanceUnit.html#line-44">REF_UNIT</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="in">
      +<h3>in</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/DistanceUnit.html#line-45">in</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="km">
      +<h3>km</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/DistanceUnit.html#line-46">km</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="cm">
      +<h3>cm</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/DistanceUnit.html#line-47">cm</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="mile">
      +<h3>mile</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/DistanceUnit.html#line-48">mile</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="Ångström">
      +<h3>Ångström</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/DistanceUnit.html#line-49">Ångström</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="AU">
      +<h3>AU</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/DistanceUnit.html#line-50">AU</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="parsec">
      +<h3>parsec</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/DistanceUnit.html#line-51">parsec</a></span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.String,double)">
      +<h3>DistanceUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/DistanceUnit.html#line-53">DistanceUnit</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name2,
      + double&nbsp;convF)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.String,javax.measure.test.unit.DistanceUnit,double)">
      +<h3>DistanceUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/DistanceUnit.html#line-58">DistanceUnit</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name2,
      + <a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a>&nbsp;unit,
      + double&nbsp;convF)</span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="getSystemUnit()">
      +<h3>getSystemUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/DistanceUnit.html#line-63">getSystemUnit</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#getSystemUnit()" title="class or interface in javax.measure" class="external-link">getSystemUnit</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="BaseUnit.html#getSystemUnit()">getSystemUnit</a></code>&nbsp;in class&nbsp;<code><a href="BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/MassUnit.html b/docs/site/testapidocs/javax/measure/test/unit/MassUnit.html
      new file mode 100644
      index 00000000..f0bfb609
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/MassUnit.html
      @@ -0,0 +1,244 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>MassUnit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.unit, class: MassUnit">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.unit.MassUnit class">
      +<meta name="keywords" content="kg">
      +<meta name="keywords" content="REF_UNIT">
      +<meta name="keywords" content="g">
      +<meta name="keywords" content="getSystemUnit()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/MassUnit.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li><a href="#field-detail">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.unit</a></div>
      +<h1 title="Class MassUnit" class="title">Class MassUnit</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance"><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;Q&gt;
      +<div class="inheritance"><a href="BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Mass.html" title="class or interface in javax.measure.quantity" class="external-link">Mass</a>&gt;
      +<div class="inheritance">MassUnit</div>
      +</div>
      +</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Mass.html" title="class or interface in javax.measure.quantity" class="external-link">Mass</a>&gt;</code></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/MassUnit.html#line-40">MassUnit</a></span>
      +<span class="extends-implements">extends <a href="BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Mass.html" title="class or interface in javax.measure.quantity" class="external-link">Mass</a>&gt;</span></div>
      +<dl class="notes">
      +<dt>Author:</dt>
      +<dd>Werner Keil</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- =========== FIELD SUMMARY =========== -->
      +<li>
      +<section class="field-summary" id="field-summary">
      +<h2>Field Summary</h2>
      +<div class="caption"><span>Fields</span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final <a href="MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#g" class="member-name-link">g</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></code></div>
      +<div class="col-second odd-row-color"><code><a href="#kg" class="member-name-link">kg</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#REF_UNIT" class="member-name-link">REF_UNIT</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="fields-inherited-from-class-TestUnit">Fields inherited from class&nbsp;<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></h3>
      +<code><a href="../TestUnit.html#multFactor">multFactor</a>, <a href="../TestUnit.html#name">name</a>, <a href="../TestUnit.html#ONE">ONE</a>, <a href="../TestUnit.html#symbol">symbol</a></code></div>
      +</section>
      +</li>
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String,double)" class="member-name-link">MassUnit</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name2,
      + double&nbsp;convF)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Mass.html" title="class or interface in javax.measure.quantity" class="external-link">Mass</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getSystemUnit()" class="member-name-link">getSystemUnit</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-BaseUnit">Methods inherited from class&nbsp;<a href="BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a></h3>
      +<code><a href="BaseUnit.html#equals(java.lang.Object)">equals</a>, <a href="BaseUnit.html#getSymbol()">getSymbol</a>, <a href="BaseUnit.html#hashCode()">hashCode</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-TestUnit">Methods inherited from class&nbsp;<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></h3>
      +<code><a href="../TestUnit.html#alternate(java.lang.String)">alternate</a>, <a href="../TestUnit.html#asType(java.lang.Class)">asType</a>, <a href="../TestUnit.html#divide(double)">divide</a>, <a href="../TestUnit.html#divide(java.lang.Number)">divide</a>, <a href="../TestUnit.html#divide(javax.measure.Unit)">divide</a>, <a href="../TestUnit.html#getBaseUnits()">getBaseUnits</a>, <a href="../TestUnit.html#getConverterTo(javax.measure.Unit)">getConverterTo</a>, <a href="../TestUnit.html#getConverterToAny(javax.measure.Unit)">getConverterToAny</a>, <a href="../TestUnit.html#getDimension()">getDimension</a>, <a href="../TestUnit.html#getMultFactor()">getMultFactor</a>, <a href="../TestUnit.html#getName()">getName</a>, <a href="../TestUnit.html#getSystemConverter()">getSystemConverter</a>, <a href="../TestUnit.html#inverse()">inverse</a>, <a href="../TestUnit.html#isCompatible(javax.measure.Unit)">isCompatible</a>, <a href="../TestUnit.html#isEquivalentTo(javax.measure.Unit)">isEquivalentTo</a>, <a href="../TestUnit.html#multiply(double)">multiply</a>, <a href="../TestUnit.html#multiply(java.lang.Number)">multiply</a>, <a href="../TestUnit.html#multiply(javax.measure.Unit)">multiply</a>, <a href="../TestUnit.html#pow(int)">pow</a>, <a href="../TestUnit.html#prefix(javax.measure.Prefix)">prefix</a>, <a href="../TestUnit.html#root(int)">root</a>, <a href="../TestUnit.html#shift(double)">shift</a>, <a href="../TestUnit.html#shift(java.lang.Number)">shift</a>, <a href="../TestUnit.html#toString()">toString</a>, <a href="../TestUnit.html#transform(javax.measure.UnitConverter)">transform</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ============ FIELD DETAIL =========== -->
      +<li>
      +<section class="field-details" id="field-detail">
      +<h2>Field Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="kg">
      +<h3>kg</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/MassUnit.html#line-41">kg</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="REF_UNIT">
      +<h3>REF_UNIT</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/MassUnit.html#line-42">REF_UNIT</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="g">
      +<h3>g</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/MassUnit.html#line-43">g</a></span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.String,double)">
      +<h3>MassUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/MassUnit.html#line-45">MassUnit</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name2,
      + double&nbsp;convF)</span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="getSystemUnit()">
      +<h3>getSystemUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Mass.html" title="class or interface in javax.measure.quantity" class="external-link">Mass</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/MassUnit.html#line-50">getSystemUnit</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#getSystemUnit()" title="class or interface in javax.measure" class="external-link">getSystemUnit</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Mass.html" title="class or interface in javax.measure.quantity" class="external-link">Mass</a>&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="BaseUnit.html#getSystemUnit()">getSystemUnit</a></code>&nbsp;in class&nbsp;<code><a href="BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Mass.html" title="class or interface in javax.measure.quantity" class="external-link">Mass</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/SpeedUnit.html b/docs/site/testapidocs/javax/measure/test/unit/SpeedUnit.html
      new file mode 100644
      index 00000000..ae803ca0
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/SpeedUnit.html
      @@ -0,0 +1,239 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>SpeedUnit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.unit, class: SpeedUnit">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.unit.SpeedUnit class">
      +<meta name="keywords" content="kmh">
      +<meta name="keywords" content="REF_UNIT">
      +<meta name="keywords" content="mph">
      +<meta name="keywords" content="getSystemUnit()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/SpeedUnit.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li><a href="#field-detail">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.unit</a></div>
      +<h1 title="Class SpeedUnit" class="title">Class SpeedUnit</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance"><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Speed.html" title="class or interface in javax.measure.quantity" class="external-link">Speed</a>&gt;
      +<div class="inheritance">SpeedUnit</div>
      +</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Speed.html" title="class or interface in javax.measure.quantity" class="external-link">Speed</a>&gt;</code></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/SpeedUnit.html#line-41">SpeedUnit</a></span>
      +<span class="extends-implements">extends <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Speed.html" title="class or interface in javax.measure.quantity" class="external-link">Speed</a>&gt;</span></div>
      +<dl class="notes">
      +<dt>Author:</dt>
      +<dd>Werner Keil</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- =========== FIELD SUMMARY =========== -->
      +<li>
      +<section class="field-summary" id="field-summary">
      +<h2>Field Summary</h2>
      +<div class="caption"><span>Fields</span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final <a href="SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#kmh" class="member-name-link">kmh</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></code></div>
      +<div class="col-second odd-row-color"><code><a href="#mph" class="member-name-link">mph</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#REF_UNIT" class="member-name-link">REF_UNIT</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="fields-inherited-from-class-TestUnit">Fields inherited from class&nbsp;<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></h3>
      +<code><a href="../TestUnit.html#multFactor">multFactor</a>, <a href="../TestUnit.html#name">name</a>, <a href="../TestUnit.html#ONE">ONE</a>, <a href="../TestUnit.html#symbol">symbol</a></code></div>
      +</section>
      +</li>
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String,double)" class="member-name-link">SpeedUnit</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name2,
      + double&nbsp;convF)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Speed.html" title="class or interface in javax.measure.quantity" class="external-link">Speed</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getSystemUnit()" class="member-name-link">getSystemUnit</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-TestUnit">Methods inherited from class&nbsp;<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></h3>
      +<code><a href="../TestUnit.html#alternate(java.lang.String)">alternate</a>, <a href="../TestUnit.html#asType(java.lang.Class)">asType</a>, <a href="../TestUnit.html#divide(double)">divide</a>, <a href="../TestUnit.html#divide(java.lang.Number)">divide</a>, <a href="../TestUnit.html#divide(javax.measure.Unit)">divide</a>, <a href="../TestUnit.html#getBaseUnits()">getBaseUnits</a>, <a href="../TestUnit.html#getConverterTo(javax.measure.Unit)">getConverterTo</a>, <a href="../TestUnit.html#getConverterToAny(javax.measure.Unit)">getConverterToAny</a>, <a href="../TestUnit.html#getDimension()">getDimension</a>, <a href="../TestUnit.html#getMultFactor()">getMultFactor</a>, <a href="../TestUnit.html#getName()">getName</a>, <a href="../TestUnit.html#getSymbol()">getSymbol</a>, <a href="../TestUnit.html#getSystemConverter()">getSystemConverter</a>, <a href="../TestUnit.html#inverse()">inverse</a>, <a href="../TestUnit.html#isCompatible(javax.measure.Unit)">isCompatible</a>, <a href="../TestUnit.html#isEquivalentTo(javax.measure.Unit)">isEquivalentTo</a>, <a href="../TestUnit.html#multiply(double)">multiply</a>, <a href="../TestUnit.html#multiply(java.lang.Number)">multiply</a>, <a href="../TestUnit.html#multiply(javax.measure.Unit)">multiply</a>, <a href="../TestUnit.html#pow(int)">pow</a>, <a href="../TestUnit.html#prefix(javax.measure.Prefix)">prefix</a>, <a href="../TestUnit.html#root(int)">root</a>, <a href="../TestUnit.html#shift(double)">shift</a>, <a href="../TestUnit.html#shift(java.lang.Number)">shift</a>, <a href="../TestUnit.html#toString()">toString</a>, <a href="../TestUnit.html#transform(javax.measure.UnitConverter)">transform</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ============ FIELD DETAIL =========== -->
      +<li>
      +<section class="field-details" id="field-detail">
      +<h2>Field Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="kmh">
      +<h3>kmh</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/SpeedUnit.html#line-43">kmh</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="REF_UNIT">
      +<h3>REF_UNIT</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/SpeedUnit.html#line-45">REF_UNIT</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="mph">
      +<h3>mph</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/SpeedUnit.html#line-46">mph</a></span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.String,double)">
      +<h3>SpeedUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/SpeedUnit.html#line-48">SpeedUnit</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name2,
      + double&nbsp;convF)</span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="getSystemUnit()">
      +<h3>getSystemUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Speed.html" title="class or interface in javax.measure.quantity" class="external-link">Speed</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/SpeedUnit.html#line-53">getSystemUnit</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#getSystemUnit()" title="class or interface in javax.measure" class="external-link">getSystemUnit</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Speed.html" title="class or interface in javax.measure.quantity" class="external-link">Speed</a>&gt;</code></dd>
      +<dt>Specified by:</dt>
      +<dd><code><a href="../TestUnit.html#getSystemUnit()">getSystemUnit</a></code>&nbsp;in class&nbsp;<code><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Speed.html" title="class or interface in javax.measure.quantity" class="external-link">Speed</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/TemperatureUnit.html b/docs/site/testapidocs/javax/measure/test/unit/TemperatureUnit.html
      new file mode 100644
      index 00000000..d7220096
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/TemperatureUnit.html
      @@ -0,0 +1,494 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>TemperatureUnit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.unit, class: TemperatureUnit">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.unit.TemperatureUnit class">
      +<meta name="keywords" content="KELVIN">
      +<meta name="keywords" content="RANKINE">
      +<meta name="keywords" content="CELSIUS">
      +<meta name="keywords" content="FAHRENHEIT">
      +<meta name="keywords" content="getSymbol()">
      +<meta name="keywords" content="getFactor()">
      +<meta name="keywords" content="getName()">
      +<meta name="keywords" content="getSystemUnit()">
      +<meta name="keywords" content="getBySymbol()">
      +<meta name="keywords" content="isCompatible()">
      +<meta name="keywords" content="asType()">
      +<meta name="keywords" content="multiply()">
      +<meta name="keywords" content="pow()">
      +<meta name="keywords" content="root()">
      +<meta name="keywords" content="transform()">
      +<meta name="keywords" content="shift()">
      +<meta name="keywords" content="getDescription()">
      +<meta name="keywords" content="prefix()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/TemperatureUnit.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li><a href="#field-detail">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.unit</a></div>
      +<h1 title="Class TemperatureUnit" class="title">Class TemperatureUnit</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance"><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;
      +<div class="inheritance">TemperatureUnit</div>
      +</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-43">TemperatureUnit</a></span>
      +<span class="extends-implements">extends <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</span></div>
      +<dl class="notes">
      +<dt>Version:</dt>
      +<dd>0.7, $Date: 2019-02-06 $</dd>
      +<dt>Author:</dt>
      +<dd>Werner Keil</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- =========== FIELD SUMMARY =========== -->
      +<li>
      +<section class="field-summary" id="field-summary">
      +<h2>Field Summary</h2>
      +<div class="caption"><span>Fields</span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final <a href="TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#CELSIUS" class="member-name-link">CELSIUS</a></code></div>
      +<div class="col-last even-row-color">
      +<div class="block">Celsius, used by most of the world's population.</div>
      +</div>
      +<div class="col-first odd-row-color"><code>static final <a href="TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></code></div>
      +<div class="col-second odd-row-color"><code><a href="#FAHRENHEIT" class="member-name-link">FAHRENHEIT</a></code></div>
      +<div class="col-last odd-row-color">
      +<div class="block">Fahrenheit, commonly used in the United States.</div>
      +</div>
      +<div class="col-first even-row-color"><code>static final <a href="TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#KELVIN" class="member-name-link">KELVIN</a></code></div>
      +<div class="col-last even-row-color">
      +<div class="block">Kelvin, commonly used in scientific endeavors.</div>
      +</div>
      +<div class="col-first odd-row-color"><code>static final <a href="TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></code></div>
      +<div class="col-second odd-row-color"><code><a href="#RANKINE" class="member-name-link">RANKINE</a></code></div>
      +<div class="col-last odd-row-color">
      +<div class="block">Rankine, used in scientific endeavors.</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="fields-inherited-from-class-TestUnit">Fields inherited from class&nbsp;<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></h3>
      +<code><a href="../TestUnit.html#name">name</a>, <a href="../TestUnit.html#ONE">ONE</a>, <a href="../TestUnit.html#symbol">symbol</a></code></div>
      +</section>
      +</li>
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(double,double,javax.measure.test.unit.TemperatureUnit,double,double,java.lang.String,java.lang.String)" class="member-name-link">TemperatureUnit</a><wbr>(double&nbsp;newMult,
      + double&nbsp;shift,
      + <a href="TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a>&nbsp;rel,
      + double&nbsp;newFreezingPoint,
      + double&nbsp;newBoilingPoint,
      + <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;newSymbol,
      + <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;newNamedFor)</code></div>
      +<div class="col-last even-row-color">
      +<div class="block">Constructor for TemperatureUnit that accepts key characteristics of each
      + temperature scale.</div>
      +</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab1" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab1', 3)" class="table-tab">Static Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>final &lt;T extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;&gt;<br><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;T&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#asType(java.lang.Class)" class="member-name-link">asType</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;T&gt;&nbsp;type)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code>static <a href="TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code><a href="#getBySymbol(java.lang.String)" class="member-name-link">getBySymbol</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;symbol)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getDescription()" class="member-name-link">getDescription</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>double</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getFactor()" class="member-name-link">getFactor</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getName()" class="member-name-link">getName</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getSymbol()" class="member-name-link">getSymbol</a>()</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getSystemUnit()" class="member-name-link">getSystemUnit</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#isCompatible(javax.measure.Unit)" class="member-name-link">isCompatible</a><wbr>(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(double)" class="member-name-link">multiply</a><wbr>(double&nbsp;factor)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#multiply(javax.measure.Unit)" class="member-name-link">multiply</a><wbr>(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;&nbsp;that)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#pow(int)" class="member-name-link">pow</a><wbr>(int&nbsp;n)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#prefix(javax.measure.Prefix)" class="member-name-link">prefix</a><wbr>(<a href="../../../../../apidocs/javax/measure/Prefix.html" title="class or interface in javax.measure" class="external-link">Prefix</a>&nbsp;prefix)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#root(int)" class="member-name-link">root</a><wbr>(int&nbsp;n)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></div>
      +<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#shift(double)" class="member-name-link">shift</a><wbr>(double&nbsp;v)</code></div>
      +<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#transform(javax.measure.UnitConverter)" class="member-name-link">transform</a><wbr>(<a href="../../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&nbsp;operation)</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-TestUnit">Methods inherited from class&nbsp;<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></h3>
      +<code><a href="../TestUnit.html#alternate(java.lang.String)">alternate</a>, <a href="../TestUnit.html#divide(double)">divide</a>, <a href="../TestUnit.html#divide(java.lang.Number)">divide</a>, <a href="../TestUnit.html#divide(javax.measure.Unit)">divide</a>, <a href="../TestUnit.html#getBaseUnits()">getBaseUnits</a>, <a href="../TestUnit.html#getConverterTo(javax.measure.Unit)">getConverterTo</a>, <a href="../TestUnit.html#getConverterToAny(javax.measure.Unit)">getConverterToAny</a>, <a href="../TestUnit.html#getDimension()">getDimension</a>, <a href="../TestUnit.html#getMultFactor()">getMultFactor</a>, <a href="../TestUnit.html#getSystemConverter()">getSystemConverter</a>, <a href="../TestUnit.html#inverse()">inverse</a>, <a href="../TestUnit.html#isEquivalentTo(javax.measure.Unit)">isEquivalentTo</a>, <a href="../TestUnit.html#multiply(java.lang.Number)">multiply</a>, <a href="../TestUnit.html#shift(java.lang.Number)">shift</a>, <a href="../TestUnit.html#toString()">toString</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ============ FIELD DETAIL =========== -->
      +<li>
      +<section class="field-details" id="field-detail">
      +<h2>Field Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="KELVIN">
      +<h3>KELVIN</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-46">KELVIN</a></span></div>
      +<div class="block">Kelvin, commonly used in scientific endeavors.</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="RANKINE">
      +<h3>RANKINE</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-50">RANKINE</a></span></div>
      +<div class="block">Rankine, used in scientific endeavors.</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="CELSIUS">
      +<h3>CELSIUS</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-54">CELSIUS</a></span></div>
      +<div class="block">Celsius, used by most of the world's population.</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="FAHRENHEIT">
      +<h3>FAHRENHEIT</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-58">FAHRENHEIT</a></span></div>
      +<div class="block">Fahrenheit, commonly used in the United States.</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;(double,double,javax.measure.test.unit.TemperatureUnit,double,double,java.lang.String,java.lang.String)">
      +<h3>TemperatureUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-81">TemperatureUnit</a></span><wbr><span class="parameters">(double&nbsp;newMult,
      + double&nbsp;shift,
      + <a href="TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a>&nbsp;rel,
      + double&nbsp;newFreezingPoint,
      + double&nbsp;newBoilingPoint,
      + <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;newSymbol,
      + <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;newNamedFor)</span></div>
      +<div class="block">Constructor for TemperatureUnit that accepts key characteristics of each
      + temperature scale.</div>
      +<dl class="notes">
      +<dt>Parameters:</dt>
      +<dd><code>rel</code> - The temperature unit this is relative to.</dd>
      +<dd><code>newFreezingPoint</code> - Freezing point for this temperature scale.</dd>
      +<dd><code>newBoilingPoint</code> - Boiling point for this temperature scale.</dd>
      +<dd><code>newSymbol</code> - Unit symbol for this temperature scale.</dd>
      +<dd><code>newNamedFor</code> - Name of person after which temperature scale was
      +                         named.</dd>
      +<dd><code>newMult</code> - new multiplier</dd>
      +<dd><code>shift</code> - the shift factor</dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="getSymbol()">
      +<h3>getSymbol</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-88">getSymbol</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#getSymbol()" title="class or interface in javax.measure" class="external-link">getSymbol</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="../TestUnit.html#getSymbol()">getSymbol</a></code>&nbsp;in class&nbsp;<code><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getFactor()">
      +<h3>getFactor</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">double</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-92">getFactor</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getName()">
      +<h3>getName</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-96">getName</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#getName()" title="class or interface in javax.measure" class="external-link">getName</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="../TestUnit.html#getName()">getName</a></code>&nbsp;in class&nbsp;<code><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getSystemUnit()">
      +<h3>getSystemUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-100">getSystemUnit</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#getSystemUnit()" title="class or interface in javax.measure" class="external-link">getSystemUnit</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +<dt>Specified by:</dt>
      +<dd><code><a href="../TestUnit.html#getSystemUnit()">getSystemUnit</a></code>&nbsp;in class&nbsp;<code><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getBySymbol(java.lang.String)">
      +<h3>getBySymbol</h3>
      +<div class="member-signature"><span class="modifiers">public static</span>&nbsp;<span class="return-type"><a href="TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-104">getBySymbol</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;symbol)</span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="isCompatible(javax.measure.Unit)">
      +<h3>isCompatible</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">boolean</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-114">isCompatible</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#isCompatible(javax.measure.Unit)" title="class or interface in javax.measure" class="external-link">isCompatible</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="../TestUnit.html#isCompatible(javax.measure.Unit)">isCompatible</a></code>&nbsp;in class&nbsp;<code><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="asType(java.lang.Class)">
      +<h3>asType</h3>
      +<div class="member-signature"><span class="modifiers">public final</span>&nbsp;<span class="type-parameters">&lt;T extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;T&gt;&gt;</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;T&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-118">asType</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Class.html" title="class or interface in java.lang" class="external-link">Class</a>&lt;T&gt;&nbsp;type)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#asType(java.lang.Class)" title="class or interface in javax.measure" class="external-link">asType</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="../TestUnit.html#asType(java.lang.Class)">asType</a></code>&nbsp;in class&nbsp;<code><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(double)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-127">multiply</a></span><wbr><span class="parameters">(double&nbsp;factor)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#multiply(double)" title="class or interface in javax.measure" class="external-link">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="../TestUnit.html#multiply(double)">multiply</a></code>&nbsp;in class&nbsp;<code><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="multiply(javax.measure.Unit)">
      +<h3>multiply</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-131">multiply</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;&nbsp;that)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#multiply(javax.measure.Unit)" title="class or interface in javax.measure" class="external-link">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="../TestUnit.html#multiply(javax.measure.Unit)">multiply</a></code>&nbsp;in class&nbsp;<code><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="pow(int)">
      +<h3>pow</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-135">pow</a></span><wbr><span class="parameters">(int&nbsp;n)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#pow(int)" title="class or interface in javax.measure" class="external-link">pow</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="../TestUnit.html#pow(int)">pow</a></code>&nbsp;in class&nbsp;<code><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="root(int)">
      +<h3>root</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;?&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-139">root</a></span><wbr><span class="parameters">(int&nbsp;n)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#root(int)" title="class or interface in javax.measure" class="external-link">root</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="../TestUnit.html#root(int)">root</a></code>&nbsp;in class&nbsp;<code><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="transform(javax.measure.UnitConverter)">
      +<h3>transform</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-143">transform</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>&nbsp;operation)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#transform(javax.measure.UnitConverter)" title="class or interface in javax.measure" class="external-link">transform</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="../TestUnit.html#transform(javax.measure.UnitConverter)">transform</a></code>&nbsp;in class&nbsp;<code><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="shift(double)">
      +<h3>shift</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-147">shift</a></span><wbr><span class="parameters">(double&nbsp;v)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#shift(double)" title="class or interface in javax.measure" class="external-link">shift</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="../TestUnit.html#shift(double)">shift</a></code>&nbsp;in class&nbsp;<code><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="getDescription()">
      +<h3>getDescription</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-151">getDescription</a></span>()</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="prefix(javax.measure.Prefix)">
      +<h3>prefix</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TemperatureUnit.html#line-155">prefix</a></span><wbr><span class="parameters">(<a href="../../../../../apidocs/javax/measure/Prefix.html" title="class or interface in javax.measure" class="external-link">Prefix</a>&nbsp;prefix)</span></div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#prefix(javax.measure.Prefix)" title="class or interface in javax.measure" class="external-link">prefix</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="../TestUnit.html#prefix(javax.measure.Prefix)">prefix</a></code>&nbsp;in class&nbsp;<code><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/TimeUnit.html b/docs/site/testapidocs/javax/measure/test/unit/TimeUnit.html
      new file mode 100644
      index 00000000..433c1939
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/TimeUnit.html
      @@ -0,0 +1,256 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>TimeUnit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.unit, class: TimeUnit">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.unit.TimeUnit class">
      +<meta name="keywords" content="s">
      +<meta name="keywords" content="REF_UNIT">
      +<meta name="keywords" content="h">
      +<meta name="keywords" content="min">
      +<meta name="keywords" content="getSystemUnit()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/TimeUnit.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li><a href="#field-detail">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.unit</a></div>
      +<h1 title="Class TimeUnit" class="title">Class TimeUnit</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance"><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;Q&gt;
      +<div class="inheritance"><a href="BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;
      +<div class="inheritance">TimeUnit</div>
      +</div>
      +</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</code></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TimeUnit.html#line-41">TimeUnit</a></span>
      +<span class="extends-implements">extends <a href="BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</span></div>
      +<dl class="notes">
      +<dt>Version:</dt>
      +<dd>0.2</dd>
      +<dt>Author:</dt>
      +<dd>Werner Keil</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- =========== FIELD SUMMARY =========== -->
      +<li>
      +<section class="field-summary" id="field-summary">
      +<h2>Field Summary</h2>
      +<div class="caption"><span>Fields</span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final <a href="TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#h" class="member-name-link">h</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></code></div>
      +<div class="col-second odd-row-color"><code><a href="#min" class="member-name-link">min</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#REF_UNIT" class="member-name-link">REF_UNIT</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></code></div>
      +<div class="col-second odd-row-color"><code><a href="#s" class="member-name-link">s</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="fields-inherited-from-class-TestUnit">Fields inherited from class&nbsp;<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></h3>
      +<code><a href="../TestUnit.html#multFactor">multFactor</a>, <a href="../TestUnit.html#name">name</a>, <a href="../TestUnit.html#ONE">ONE</a>, <a href="../TestUnit.html#symbol">symbol</a></code></div>
      +</section>
      +</li>
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String,double)" class="member-name-link">TimeUnit</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name2,
      + double&nbsp;convF)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getSystemUnit()" class="member-name-link">getSystemUnit</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-BaseUnit">Methods inherited from class&nbsp;<a href="BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a></h3>
      +<code><a href="BaseUnit.html#equals(java.lang.Object)">equals</a>, <a href="BaseUnit.html#getSymbol()">getSymbol</a>, <a href="BaseUnit.html#hashCode()">hashCode</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-TestUnit">Methods inherited from class&nbsp;<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></h3>
      +<code><a href="../TestUnit.html#alternate(java.lang.String)">alternate</a>, <a href="../TestUnit.html#asType(java.lang.Class)">asType</a>, <a href="../TestUnit.html#divide(double)">divide</a>, <a href="../TestUnit.html#divide(java.lang.Number)">divide</a>, <a href="../TestUnit.html#divide(javax.measure.Unit)">divide</a>, <a href="../TestUnit.html#getBaseUnits()">getBaseUnits</a>, <a href="../TestUnit.html#getConverterTo(javax.measure.Unit)">getConverterTo</a>, <a href="../TestUnit.html#getConverterToAny(javax.measure.Unit)">getConverterToAny</a>, <a href="../TestUnit.html#getDimension()">getDimension</a>, <a href="../TestUnit.html#getMultFactor()">getMultFactor</a>, <a href="../TestUnit.html#getName()">getName</a>, <a href="../TestUnit.html#getSystemConverter()">getSystemConverter</a>, <a href="../TestUnit.html#inverse()">inverse</a>, <a href="../TestUnit.html#isCompatible(javax.measure.Unit)">isCompatible</a>, <a href="../TestUnit.html#isEquivalentTo(javax.measure.Unit)">isEquivalentTo</a>, <a href="../TestUnit.html#multiply(double)">multiply</a>, <a href="../TestUnit.html#multiply(java.lang.Number)">multiply</a>, <a href="../TestUnit.html#multiply(javax.measure.Unit)">multiply</a>, <a href="../TestUnit.html#pow(int)">pow</a>, <a href="../TestUnit.html#prefix(javax.measure.Prefix)">prefix</a>, <a href="../TestUnit.html#root(int)">root</a>, <a href="../TestUnit.html#shift(double)">shift</a>, <a href="../TestUnit.html#shift(java.lang.Number)">shift</a>, <a href="../TestUnit.html#toString()">toString</a>, <a href="../TestUnit.html#transform(javax.measure.UnitConverter)">transform</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ============ FIELD DETAIL =========== -->
      +<li>
      +<section class="field-details" id="field-detail">
      +<h2>Field Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="s">
      +<h3>s</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TimeUnit.html#line-43">s</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="REF_UNIT">
      +<h3>REF_UNIT</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TimeUnit.html#line-44">REF_UNIT</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="h">
      +<h3>h</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TimeUnit.html#line-45">h</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="min">
      +<h3>min</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TimeUnit.html#line-46">min</a></span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.String,double)">
      +<h3>TimeUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TimeUnit.html#line-48">TimeUnit</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name2,
      + double&nbsp;convF)</span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="getSystemUnit()">
      +<h3>getSystemUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/TimeUnit.html#line-53">getSystemUnit</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#getSystemUnit()" title="class or interface in javax.measure" class="external-link">getSystemUnit</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</code></dd>
      +<dt>Overrides:</dt>
      +<dd><code><a href="BaseUnit.html#getSystemUnit()">getSystemUnit</a></code>&nbsp;in class&nbsp;<code><a href="BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Time.html" title="class or interface in javax.measure.quantity" class="external-link">Time</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/VolumeUnit.html b/docs/site/testapidocs/javax/measure/test/unit/VolumeUnit.html
      new file mode 100644
      index 00000000..b7d4a719
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/VolumeUnit.html
      @@ -0,0 +1,269 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>VolumeUnit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.unit, class: VolumeUnit">
      +<meta name="generator" content="javadoc/ClassWriterImpl">
      +<meta name="keywords" content="javax.measure.test.unit.VolumeUnit class">
      +<meta name="keywords" content="cumetre">
      +<meta name="keywords" content="REF_UNIT">
      +<meta name="keywords" content="cumile">
      +<meta name="keywords" content="bushel">
      +<meta name="keywords" content="litre">
      +<meta name="keywords" content="cc">
      +<meta name="keywords" content="getSystemUnit()">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-declaration-page">
      +<script type="text/javascript">var evenRowColor = "even-row-color";
      +var oddRowColor = "odd-row-color";
      +var tableTab = "table-tab";
      +var activeTableTab = "active-table-tab";
      +var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li class="nav-bar-cell1-rev">Class</li>
      +<li><a href="class-use/VolumeUnit.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#class">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Summary:&nbsp;</li>
      +<li>Nested&nbsp;|&nbsp;</li>
      +<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-summary">Method</a></li>
      +</ul>
      +<ul class="sub-nav-list">
      +<li>Detail:&nbsp;</li>
      +<li><a href="#field-detail">Field</a>&nbsp;|&nbsp;</li>
      +<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
      +<li><a href="#method-detail">Method</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<!-- ======== START OF CLASS DATA ======== -->
      +<div class="header">
      +<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">javax.measure.test.unit</a></div>
      +<h1 title="Class VolumeUnit" class="title">Class VolumeUnit</h1>
      +</div>
      +<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>
      +<div class="inheritance"><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;
      +<div class="inheritance">VolumeUnit</div>
      +</div>
      +</div>
      +<section class="class-description" id="class-description">
      +<dl class="notes">
      +<dt>All Implemented Interfaces:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</code></dd>
      +</dl>
      +<hr>
      +<div class="type-signature"><span class="modifiers">public class </span><span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/VolumeUnit.html#line-41">VolumeUnit</a></span>
      +<span class="extends-implements">extends <a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</span></div>
      +<dl class="notes">
      +<dt>Author:</dt>
      +<dd>Werner Keil</dd>
      +</dl>
      +</section>
      +<section class="summary">
      +<ul class="summary-list">
      +<!-- =========== FIELD SUMMARY =========== -->
      +<li>
      +<section class="field-summary" id="field-summary">
      +<h2>Field Summary</h2>
      +<div class="caption"><span>Fields</span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final <a href="VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#bushel" class="member-name-link">bushel</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></code></div>
      +<div class="col-second odd-row-color"><code><a href="#cc" class="member-name-link">cc</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#cumetre" class="member-name-link">cumetre</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></code></div>
      +<div class="col-second odd-row-color"><code><a href="#cumile" class="member-name-link">cumile</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></code></div>
      +<div class="col-second even-row-color"><code><a href="#litre" class="member-name-link">litre</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></code></div>
      +<div class="col-second odd-row-color"><code><a href="#REF_UNIT" class="member-name-link">REF_UNIT</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="fields-inherited-from-class-TestUnit">Fields inherited from class&nbsp;<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></h3>
      +<code><a href="../TestUnit.html#multFactor">multFactor</a>, <a href="../TestUnit.html#name">name</a>, <a href="../TestUnit.html#ONE">ONE</a>, <a href="../TestUnit.html#symbol">symbol</a></code></div>
      +</section>
      +</li>
      +<!-- ======== CONSTRUCTOR SUMMARY ======== -->
      +<li>
      +<section class="constructor-summary" id="constructor-summary">
      +<h2>Constructor Summary</h2>
      +<div class="caption"><span>Constructors</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.lang.String,double)" class="member-name-link">VolumeUnit</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name2,
      + double&nbsp;convF)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<!-- ========== METHOD SUMMARY =========== -->
      +<li>
      +<section class="method-summary" id="method-summary">
      +<h2>Method Summary</h2>
      +<div id="method-summary-table">
      +<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
      +<div id="method-summary-table.tabpanel" role="tabpanel">
      +<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</code></div>
      +<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getSystemUnit()" class="member-name-link">getSystemUnit</a>()</code></div>
      +<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
      +</div>
      +</div>
      +</div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-TestUnit">Methods inherited from class&nbsp;<a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a></h3>
      +<code><a href="../TestUnit.html#alternate(java.lang.String)">alternate</a>, <a href="../TestUnit.html#asType(java.lang.Class)">asType</a>, <a href="../TestUnit.html#divide(double)">divide</a>, <a href="../TestUnit.html#divide(java.lang.Number)">divide</a>, <a href="../TestUnit.html#divide(javax.measure.Unit)">divide</a>, <a href="../TestUnit.html#getBaseUnits()">getBaseUnits</a>, <a href="../TestUnit.html#getConverterTo(javax.measure.Unit)">getConverterTo</a>, <a href="../TestUnit.html#getConverterToAny(javax.measure.Unit)">getConverterToAny</a>, <a href="../TestUnit.html#getDimension()">getDimension</a>, <a href="../TestUnit.html#getMultFactor()">getMultFactor</a>, <a href="../TestUnit.html#getName()">getName</a>, <a href="../TestUnit.html#getSymbol()">getSymbol</a>, <a href="../TestUnit.html#getSystemConverter()">getSystemConverter</a>, <a href="../TestUnit.html#inverse()">inverse</a>, <a href="../TestUnit.html#isCompatible(javax.measure.Unit)">isCompatible</a>, <a href="../TestUnit.html#isEquivalentTo(javax.measure.Unit)">isEquivalentTo</a>, <a href="../TestUnit.html#multiply(double)">multiply</a>, <a href="../TestUnit.html#multiply(java.lang.Number)">multiply</a>, <a href="../TestUnit.html#multiply(javax.measure.Unit)">multiply</a>, <a href="../TestUnit.html#pow(int)">pow</a>, <a href="../TestUnit.html#prefix(javax.measure.Prefix)">prefix</a>, <a href="../TestUnit.html#root(int)">root</a>, <a href="../TestUnit.html#shift(double)">shift</a>, <a href="../TestUnit.html#shift(java.lang.Number)">shift</a>, <a href="../TestUnit.html#toString()">toString</a>, <a href="../TestUnit.html#transform(javax.measure.UnitConverter)">transform</a></code></div>
      +<div class="inherited-list">
      +<h3 id="methods-inherited-from-class-Object">Methods inherited from class&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
      +<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<section class="details">
      +<ul class="details-list">
      +<!-- ============ FIELD DETAIL =========== -->
      +<li>
      +<section class="field-details" id="field-detail">
      +<h2>Field Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="cumetre">
      +<h3>cumetre</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/VolumeUnit.html#line-42">cumetre</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="REF_UNIT">
      +<h3>REF_UNIT</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/VolumeUnit.html#line-44">REF_UNIT</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="cumile">
      +<h3>cumile</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/VolumeUnit.html#line-45">cumile</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="bushel">
      +<h3>bushel</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/VolumeUnit.html#line-46">bushel</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="litre">
      +<h3>litre</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/VolumeUnit.html#line-47">litre</a></span></div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="cc">
      +<h3>cc</h3>
      +<div class="member-signature"><span class="modifiers">public static final</span>&nbsp;<span class="return-type"><a href="VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/VolumeUnit.html#line-48">cc</a></span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ========= CONSTRUCTOR DETAIL ======== -->
      +<li>
      +<section class="constructor-details" id="constructor-detail">
      +<h2>Constructor Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="&lt;init&gt;(java.lang.String,double)">
      +<h3>VolumeUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/VolumeUnit.html#line-50">VolumeUnit</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name2,
      + double&nbsp;convF)</span></div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +<!-- ============ METHOD DETAIL ========== -->
      +<li>
      +<section class="method-details" id="method-detail">
      +<h2>Method Details</h2>
      +<ul class="member-list">
      +<li>
      +<section class="detail" id="getSystemUnit()">
      +<h3>getSystemUnit</h3>
      +<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../src-html/javax/measure/test/unit/VolumeUnit.html#line-55">getSystemUnit</a></span>()</div>
      +<dl class="notes">
      +<dt>Specified by:</dt>
      +<dd><code><a href="../../../../../apidocs/javax/measure/Unit.html#getSystemUnit()" title="class or interface in javax.measure" class="external-link">getSystemUnit</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</code></dd>
      +<dt>Specified by:</dt>
      +<dd><code><a href="../TestUnit.html#getSystemUnit()">getSystemUnit</a></code>&nbsp;in class&nbsp;<code><a href="../TestUnit.html" title="class in javax.measure.test">TestUnit</a>&lt;<a href="../../../../../apidocs/javax/measure/quantity/Volume.html" title="class or interface in javax.measure.quantity" class="external-link">Volume</a>&gt;</code></dd>
      +</dl>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</li>
      +</ul>
      +</section>
      +<!-- ========= END OF CLASS DATA ========= -->
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/class-use/AreaUnit.html b/docs/site/testapidocs/javax/measure/test/unit/class-use/AreaUnit.html
      new file mode 100644
      index 00000000..addc8dbb
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/class-use/AreaUnit.html
      @@ -0,0 +1,129 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.unit.AreaUnit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.unit, class: AreaUnit">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../AreaUnit.html" title="class in javax.measure.test.unit">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.unit.AreaUnit" class="title">Uses of Class<br>javax.measure.test.unit.AreaUnit</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="../AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test.quantity">javax.measure.test.quantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="#javax.measure.test.unit">javax.measure.test.unit</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +<section class="class-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test.quantity">
      +<h2>Uses of <a href="../AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a> in <a href="../../quantity/package-summary.html">javax.measure.test.quantity</a></h2>
      +<div class="caption"><span>Methods in <a href="../../quantity/package-summary.html">javax.measure.test.quantity</a> with parameters of type <a href="../AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../../quantity/AreaQuantity.html" title="class in javax.measure.test.quantity">AreaQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../../quantity/AreaQuantity.html#convert(javax.measure.test.unit.AreaUnit)" class="member-name-link">convert</a><wbr>(<a href="../AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a>&nbsp;newUnit)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">AreaQuantity.</span><code><a href="../../quantity/AreaQuantity.html#showInUnits(javax.measure.test.unit.AreaUnit,int)" class="member-name-link">showInUnits</a><wbr>(<a href="../AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a>&nbsp;u,
      + int&nbsp;precision)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +<div class="caption"><span>Constructors in <a href="../../quantity/package-summary.html">javax.measure.test.quantity</a> with parameters of type <a href="../AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier</div>
      +<div class="table-header col-second">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../../quantity/AreaQuantity.html#%3Cinit%3E(double,javax.measure.test.unit.AreaUnit)" class="member-name-link">AreaQuantity</a><wbr>(double&nbsp;val,
      + <a href="../AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a>&nbsp;un)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="javax.measure.test.unit">
      +<h2>Uses of <a href="../AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a> in <a href="../package-summary.html">javax.measure.test.unit</a></h2>
      +<div class="caption"><span>Fields in <a href="../package-summary.html">javax.measure.test.unit</a> declared as <a href="../AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final <a href="../AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">AreaUnit.</span><code><a href="../AreaUnit.html#acre" class="member-name-link">acre</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="../AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">AreaUnit.</span><code><a href="../AreaUnit.html#hectare" class="member-name-link">hectare</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="../AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">AreaUnit.</span><code><a href="../AreaUnit.html#REF_UNIT" class="member-name-link">REF_UNIT</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="../AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">AreaUnit.</span><code><a href="../AreaUnit.html#sqmetre" class="member-name-link">sqmetre</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="../AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">AreaUnit.</span><code><a href="../AreaUnit.html#sqmile" class="member-name-link">sqmile</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/class-use/BaseUnit.html b/docs/site/testapidocs/javax/measure/test/unit/class-use/BaseUnit.html
      new file mode 100644
      index 00000000..acdce79b
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/class-use/BaseUnit.html
      @@ -0,0 +1,93 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.unit.BaseUnit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.unit, class: BaseUnit">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../BaseUnit.html" title="class in javax.measure.test.unit">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.unit.BaseUnit" class="title">Uses of Class<br>javax.measure.test.unit.BaseUnit</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="../BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test.unit">javax.measure.test.unit</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<section class="class-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test.unit">
      +<h2>Uses of <a href="../BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a> in <a href="../package-summary.html">javax.measure.test.unit</a></h2>
      +<div class="caption"><span>Subclasses of <a href="../BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a> in <a href="../package-summary.html">javax.measure.test.unit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>class&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../DistanceUnit.html" class="type-name-link" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>class&nbsp;</code></div>
      +<div class="col-second odd-row-color"><code><a href="../MassUnit.html" class="type-name-link" title="class in javax.measure.test.unit">MassUnit</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>class&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../TimeUnit.html" class="type-name-link" title="class in javax.measure.test.unit">TimeUnit</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/class-use/DistanceUnit.html b/docs/site/testapidocs/javax/measure/test/unit/class-use/DistanceUnit.html
      new file mode 100644
      index 00000000..8bd1f92a
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/class-use/DistanceUnit.html
      @@ -0,0 +1,156 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.unit.DistanceUnit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.unit, class: DistanceUnit">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../DistanceUnit.html" title="class in javax.measure.test.unit">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.unit.DistanceUnit" class="title">Uses of Class<br>javax.measure.test.unit.DistanceUnit</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test.quantity">javax.measure.test.quantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="#javax.measure.test.unit">javax.measure.test.unit</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +<section class="class-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test.quantity">
      +<h2>Uses of <a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a> in <a href="../../quantity/package-summary.html">javax.measure.test.quantity</a></h2>
      +<div class="caption"><span>Methods in <a href="../../quantity/package-summary.html">javax.measure.test.quantity</a> with parameters of type <a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../../quantity/DistanceQuantity.html" title="class in javax.measure.test.quantity">DistanceQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../../quantity/DistanceQuantity.html#convert(javax.measure.test.unit.DistanceUnit)" class="member-name-link">convert</a><wbr>(<a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a>&nbsp;newUnit)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">DistanceQuantity.</span><code><a href="../../quantity/DistanceQuantity.html#showInUnits(javax.measure.test.unit.DistanceUnit,int)" class="member-name-link">showInUnits</a><wbr>(<a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a>&nbsp;u,
      + int&nbsp;precision)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TimeQuantity.</span><code><a href="../../quantity/TimeQuantity.html#showInUnits(javax.measure.test.unit.DistanceUnit,int)" class="member-name-link">showInUnits</a><wbr>(<a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a>&nbsp;u,
      + int&nbsp;precision)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<div class="caption"><span>Constructors in <a href="../../quantity/package-summary.html">javax.measure.test.quantity</a> with parameters of type <a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier</div>
      +<div class="table-header col-second">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../../quantity/DistanceQuantity.html#%3Cinit%3E(double,javax.measure.test.unit.DistanceUnit)" class="member-name-link">DistanceQuantity</a><wbr>(double&nbsp;val,
      + <a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a>&nbsp;un)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="javax.measure.test.unit">
      +<h2>Uses of <a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a> in <a href="../package-summary.html">javax.measure.test.unit</a></h2>
      +<div class="caption"><span>Fields in <a href="../package-summary.html">javax.measure.test.unit</a> declared as <a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final <a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">DistanceUnit.</span><code><a href="../DistanceUnit.html#%C3%85ngstr%C3%B6m" class="member-name-link">Ångström</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">DistanceUnit.</span><code><a href="../DistanceUnit.html#AU" class="member-name-link">AU</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">DistanceUnit.</span><code><a href="../DistanceUnit.html#cm" class="member-name-link">cm</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">DistanceUnit.</span><code><a href="../DistanceUnit.html#in" class="member-name-link">in</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">DistanceUnit.</span><code><a href="../DistanceUnit.html#km" class="member-name-link">km</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">DistanceUnit.</span><code><a href="../DistanceUnit.html#m" class="member-name-link">m</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">DistanceUnit.</span><code><a href="../DistanceUnit.html#mile" class="member-name-link">mile</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">DistanceUnit.</span><code><a href="../DistanceUnit.html#parsec" class="member-name-link">parsec</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">DistanceUnit.</span><code><a href="../DistanceUnit.html#REF_UNIT" class="member-name-link">REF_UNIT</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<div class="caption"><span>Constructors in <a href="../package-summary.html">javax.measure.test.unit</a> with parameters of type <a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier</div>
      +<div class="table-header col-second">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../DistanceUnit.html#%3Cinit%3E(java.lang.String,javax.measure.test.unit.DistanceUnit,double)" class="member-name-link">DistanceUnit</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;name2,
      + <a href="../DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a>&nbsp;unit,
      + double&nbsp;convF)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/class-use/MassUnit.html b/docs/site/testapidocs/javax/measure/test/unit/class-use/MassUnit.html
      new file mode 100644
      index 00000000..71c54d05
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/class-use/MassUnit.html
      @@ -0,0 +1,93 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.unit.MassUnit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.unit, class: MassUnit">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../MassUnit.html" title="class in javax.measure.test.unit">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.unit.MassUnit" class="title">Uses of Class<br>javax.measure.test.unit.MassUnit</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="../MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test.unit">javax.measure.test.unit</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<section class="class-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test.unit">
      +<h2>Uses of <a href="../MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a> in <a href="../package-summary.html">javax.measure.test.unit</a></h2>
      +<div class="caption"><span>Fields in <a href="../package-summary.html">javax.measure.test.unit</a> declared as <a href="../MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final <a href="../MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">MassUnit.</span><code><a href="../MassUnit.html#g" class="member-name-link">g</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="../MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">MassUnit.</span><code><a href="../MassUnit.html#kg" class="member-name-link">kg</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="../MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">MassUnit.</span><code><a href="../MassUnit.html#REF_UNIT" class="member-name-link">REF_UNIT</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/class-use/SpeedUnit.html b/docs/site/testapidocs/javax/measure/test/unit/class-use/SpeedUnit.html
      new file mode 100644
      index 00000000..e766dc96
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/class-use/SpeedUnit.html
      @@ -0,0 +1,93 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.unit.SpeedUnit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.unit, class: SpeedUnit">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../SpeedUnit.html" title="class in javax.measure.test.unit">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.unit.SpeedUnit" class="title">Uses of Class<br>javax.measure.test.unit.SpeedUnit</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="../SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test.unit">javax.measure.test.unit</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<section class="class-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test.unit">
      +<h2>Uses of <a href="../SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a> in <a href="../package-summary.html">javax.measure.test.unit</a></h2>
      +<div class="caption"><span>Fields in <a href="../package-summary.html">javax.measure.test.unit</a> declared as <a href="../SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final <a href="../SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">SpeedUnit.</span><code><a href="../SpeedUnit.html#kmh" class="member-name-link">kmh</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="../SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">SpeedUnit.</span><code><a href="../SpeedUnit.html#mph" class="member-name-link">mph</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="../SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">SpeedUnit.</span><code><a href="../SpeedUnit.html#REF_UNIT" class="member-name-link">REF_UNIT</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/class-use/TemperatureUnit.html b/docs/site/testapidocs/javax/measure/test/unit/class-use/TemperatureUnit.html
      new file mode 100644
      index 00000000..7fb774f5
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/class-use/TemperatureUnit.html
      @@ -0,0 +1,157 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.unit.TemperatureUnit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.unit, class: TemperatureUnit">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../TemperatureUnit.html" title="class in javax.measure.test.unit">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.unit.TemperatureUnit" class="title">Uses of Class<br>javax.measure.test.unit.TemperatureUnit</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="../TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test.quantity">javax.measure.test.quantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="#javax.measure.test.unit">javax.measure.test.unit</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +<section class="class-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test.quantity">
      +<h2>Uses of <a href="../TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a> in <a href="../../quantity/package-summary.html">javax.measure.test.quantity</a></h2>
      +<div class="caption"><span>Methods in <a href="../../quantity/package-summary.html">javax.measure.test.quantity</a> with parameters of type <a href="../TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>protected <a href="../../quantity/TemperatureQuantity.html" title="class in javax.measure.test.quantity">TemperatureQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TemperatureQuantity.</span><code><a href="../../quantity/TemperatureQuantity.html#convert(javax.measure.test.unit.TemperatureUnit)" class="member-name-link">convert</a><wbr>(<a href="../TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a>&nbsp;newUnit)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<div class="caption"><span>Constructors in <a href="../../quantity/package-summary.html">javax.measure.test.quantity</a> with parameters of type <a href="../TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier</div>
      +<div class="table-header col-second">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../../quantity/TemperatureQuantity.html#%3Cinit%3E(double,javax.measure.test.unit.TemperatureUnit)" class="member-name-link">TemperatureQuantity</a><wbr>(double&nbsp;val,
      + <a href="../TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a>&nbsp;un)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="javax.measure.test.unit">
      +<h2>Uses of <a href="../TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a> in <a href="../package-summary.html">javax.measure.test.unit</a></h2>
      +<div class="caption"><span>Fields in <a href="../package-summary.html">javax.measure.test.unit</a> declared as <a href="../TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final <a href="../TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TemperatureUnit.</span><code><a href="../TemperatureUnit.html#CELSIUS" class="member-name-link">CELSIUS</a></code></div>
      +<div class="col-last even-row-color">
      +<div class="block">Celsius, used by most of the world's population.</div>
      +</div>
      +<div class="col-first odd-row-color"><code>static final <a href="../TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TemperatureUnit.</span><code><a href="../TemperatureUnit.html#FAHRENHEIT" class="member-name-link">FAHRENHEIT</a></code></div>
      +<div class="col-last odd-row-color">
      +<div class="block">Fahrenheit, commonly used in the United States.</div>
      +</div>
      +<div class="col-first even-row-color"><code>static final <a href="../TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TemperatureUnit.</span><code><a href="../TemperatureUnit.html#KELVIN" class="member-name-link">KELVIN</a></code></div>
      +<div class="col-last even-row-color">
      +<div class="block">Kelvin, commonly used in scientific endeavors.</div>
      +</div>
      +<div class="col-first odd-row-color"><code>static final <a href="../TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TemperatureUnit.</span><code><a href="../TemperatureUnit.html#RANKINE" class="member-name-link">RANKINE</a></code></div>
      +<div class="col-last odd-row-color">
      +<div class="block">Rankine, used in scientific endeavors.</div>
      +</div>
      +</div>
      +<div class="caption"><span>Methods in <a href="../package-summary.html">javax.measure.test.unit</a> that return <a href="../TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static <a href="../TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TemperatureUnit.</span><code><a href="../TemperatureUnit.html#getBySymbol(java.lang.String)" class="member-name-link">getBySymbol</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;symbol)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<div class="caption"><span>Constructors in <a href="../package-summary.html">javax.measure.test.unit</a> with parameters of type <a href="../TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier</div>
      +<div class="table-header col-second">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../TemperatureUnit.html#%3Cinit%3E(double,double,javax.measure.test.unit.TemperatureUnit,double,double,java.lang.String,java.lang.String)" class="member-name-link">TemperatureUnit</a><wbr>(double&nbsp;newMult,
      + double&nbsp;shift,
      + <a href="../TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a>&nbsp;rel,
      + double&nbsp;newFreezingPoint,
      + double&nbsp;newBoilingPoint,
      + <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;newSymbol,
      + <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;newNamedFor)</code></div>
      +<div class="col-last even-row-color">
      +<div class="block">Constructor for TemperatureUnit that accepts key characteristics of each
      + temperature scale.</div>
      +</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/class-use/TimeUnit.html b/docs/site/testapidocs/javax/measure/test/unit/class-use/TimeUnit.html
      new file mode 100644
      index 00000000..cbc549e3
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/class-use/TimeUnit.html
      @@ -0,0 +1,122 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.unit.TimeUnit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.unit, class: TimeUnit">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../TimeUnit.html" title="class in javax.measure.test.unit">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.unit.TimeUnit" class="title">Uses of Class<br>javax.measure.test.unit.TimeUnit</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="../TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test.quantity">javax.measure.test.quantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="#javax.measure.test.unit">javax.measure.test.unit</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +<section class="class-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test.quantity">
      +<h2>Uses of <a href="../TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a> in <a href="../../quantity/package-summary.html">javax.measure.test.quantity</a></h2>
      +<div class="caption"><span>Methods in <a href="../../quantity/package-summary.html">javax.measure.test.quantity</a> with parameters of type <a href="../TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../../quantity/TimeQuantity.html" title="class in javax.measure.test.quantity">TimeQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TimeQuantity.</span><code><a href="../../quantity/TimeQuantity.html#convert(javax.measure.test.unit.TimeUnit)" class="member-name-link">convert</a><wbr>(<a href="../TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a>&nbsp;newUnit)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +<div class="caption"><span>Constructors in <a href="../../quantity/package-summary.html">javax.measure.test.quantity</a> with parameters of type <a href="../TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier</div>
      +<div class="table-header col-second">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../../quantity/TimeQuantity.html#%3Cinit%3E(double,javax.measure.test.unit.TimeUnit)" class="member-name-link">TimeQuantity</a><wbr>(double&nbsp;val,
      + <a href="../TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a>&nbsp;un)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="javax.measure.test.unit">
      +<h2>Uses of <a href="../TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a> in <a href="../package-summary.html">javax.measure.test.unit</a></h2>
      +<div class="caption"><span>Fields in <a href="../package-summary.html">javax.measure.test.unit</a> declared as <a href="../TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final <a href="../TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TimeUnit.</span><code><a href="../TimeUnit.html#h" class="member-name-link">h</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="../TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TimeUnit.</span><code><a href="../TimeUnit.html#min" class="member-name-link">min</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="../TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">TimeUnit.</span><code><a href="../TimeUnit.html#REF_UNIT" class="member-name-link">REF_UNIT</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="../TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">TimeUnit.</span><code><a href="../TimeUnit.html#s" class="member-name-link">s</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/class-use/VolumeUnit.html b/docs/site/testapidocs/javax/measure/test/unit/class-use/VolumeUnit.html
      new file mode 100644
      index 00000000..3abfd5a5
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/class-use/VolumeUnit.html
      @@ -0,0 +1,132 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Class javax.measure.test.unit.VolumeUnit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.unit, class: VolumeUnit">
      +<meta name="generator" content="javadoc/ClassUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="class-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../../index.html">Overview</a></li>
      +<li><a href="../package-summary.html">Package</a></li>
      +<li><a href="../VolumeUnit.html" title="class in javax.measure.test.unit">Class</a></li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="../package-tree.html">Tree</a></li>
      +<li><a href="../../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Class javax.measure.test.unit.VolumeUnit" class="title">Uses of Class<br>javax.measure.test.unit.VolumeUnit</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="../VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test.quantity">javax.measure.test.quantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="#javax.measure.test.unit">javax.measure.test.unit</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +<section class="class-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test.quantity">
      +<h2>Uses of <a href="../VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a> in <a href="../../quantity/package-summary.html">javax.measure.test.quantity</a></h2>
      +<div class="caption"><span>Methods in <a href="../../quantity/package-summary.html">javax.measure.test.quantity</a> with parameters of type <a href="../VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Method</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code><a href="../../quantity/VolumeQuantity.html" title="class in javax.measure.test.quantity">VolumeQuantity</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../../quantity/VolumeQuantity.html#convert(javax.measure.test.unit.VolumeUnit)" class="member-name-link">convert</a><wbr>(<a href="../VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a>&nbsp;newUnit)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">VolumeQuantity.</span><code><a href="../../quantity/VolumeQuantity.html#showInUnits(javax.measure.test.unit.VolumeUnit,int)" class="member-name-link">showInUnits</a><wbr>(<a href="../VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a>&nbsp;u,
      + int&nbsp;precision)</code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +<div class="caption"><span>Constructors in <a href="../../quantity/package-summary.html">javax.measure.test.quantity</a> with parameters of type <a href="../VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier</div>
      +<div class="table-header col-second">Constructor</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>&nbsp;</code></div>
      +<div class="col-second even-row-color"><code><a href="../../quantity/VolumeQuantity.html#%3Cinit%3E(double,javax.measure.test.unit.VolumeUnit)" class="member-name-link">VolumeQuantity</a><wbr>(double&nbsp;val,
      + <a href="../VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a>&nbsp;un)</code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="javax.measure.test.unit">
      +<h2>Uses of <a href="../VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a> in <a href="../package-summary.html">javax.measure.test.unit</a></h2>
      +<div class="caption"><span>Fields in <a href="../package-summary.html">javax.measure.test.unit</a> declared as <a href="../VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></span></div>
      +<div class="summary-table three-column-summary">
      +<div class="table-header col-first">Modifier and Type</div>
      +<div class="table-header col-second">Field</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><code>static final <a href="../VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">VolumeUnit.</span><code><a href="../VolumeUnit.html#bushel" class="member-name-link">bushel</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="../VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">VolumeUnit.</span><code><a href="../VolumeUnit.html#cc" class="member-name-link">cc</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="../VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">VolumeUnit.</span><code><a href="../VolumeUnit.html#cumetre" class="member-name-link">cumetre</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="../VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">VolumeUnit.</span><code><a href="../VolumeUnit.html#cumile" class="member-name-link">cumile</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><code>static final <a href="../VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></code></div>
      +<div class="col-second even-row-color"><span class="type-name-label">VolumeUnit.</span><code><a href="../VolumeUnit.html#litre" class="member-name-link">litre</a></code></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><code>static final <a href="../VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></code></div>
      +<div class="col-second odd-row-color"><span class="type-name-label">VolumeUnit.</span><code><a href="../VolumeUnit.html#REF_UNIT" class="member-name-link">REF_UNIT</a></code></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/package-summary.html b/docs/site/testapidocs/javax/measure/test/unit/package-summary.html
      new file mode 100644
      index 00000000..25283793
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/package-summary.html
      @@ -0,0 +1,121 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>javax.measure.test.unit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="declaration: package: javax.measure.test.unit">
      +<meta name="generator" content="javadoc/PackageWriterImpl">
      +<meta name="keywords" content="javax.measure.test.unit package">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-declaration-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li class="nav-bar-cell1-rev">Package</li>
      +<li>Class</li>
      +<li><a href="package-use.html">Use</a></li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#package">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div>
      +<ul class="sub-nav-list">
      +<li>Package:&nbsp;</li>
      +<li>Description&nbsp;|&nbsp;</li>
      +<li><a href="#related-package-summary">Related Packages</a>&nbsp;|&nbsp;</li>
      +<li><a href="#class-summary">Classes and Interfaces</a></li>
      +</ul>
      +</div>
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Package javax.measure.test.unit" class="title">Package javax.measure.test.unit</h1>
      +</div>
      +<hr>
      +<div class="package-signature">package <span class="element-name">javax.measure.test.unit</span></div>
      +<section class="summary">
      +<ul class="summary-list">
      +<li>
      +<div id="related-package-summary">
      +<div class="caption"><span>Related Packages</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="../package-summary.html">javax.measure.test</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="../format/package-summary.html">javax.measure.test.format</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><a href="../function/package-summary.html">javax.measure.test.function</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="../quantity/package-summary.html">javax.measure.test.quantity</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</div>
      +</li>
      +<li>
      +<div id="class-summary">
      +<div class="caption"><span>Classes</span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="AreaUnit.html" title="class in javax.measure.test.unit">AreaUnit</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color class-summary class-summary-tab2"><a href="BaseUnit.html" title="class in javax.measure.test.unit">BaseUnit</a>&lt;Q extends <a href="../../../../../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;&gt;</div>
      +<div class="col-last odd-row-color class-summary class-summary-tab2">
      +<div class="block">Building blocks on top of which all others units are created.</div>
      +</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="DistanceUnit.html" title="class in javax.measure.test.unit">DistanceUnit</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color class-summary class-summary-tab2"><a href="MassUnit.html" title="class in javax.measure.test.unit">MassUnit</a></div>
      +<div class="col-last odd-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="SpeedUnit.html" title="class in javax.measure.test.unit">SpeedUnit</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color class-summary class-summary-tab2"><a href="TemperatureUnit.html" title="class in javax.measure.test.unit">TemperatureUnit</a></div>
      +<div class="col-last odd-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first even-row-color class-summary class-summary-tab2"><a href="TimeUnit.html" title="class in javax.measure.test.unit">TimeUnit</a></div>
      +<div class="col-last even-row-color class-summary class-summary-tab2">&nbsp;</div>
      +<div class="col-first odd-row-color class-summary class-summary-tab2"><a href="VolumeUnit.html" title="class in javax.measure.test.unit">VolumeUnit</a></div>
      +<div class="col-last odd-row-color class-summary class-summary-tab2">&nbsp;</div>
      +</div>
      +</div>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/package-tree.html b/docs/site/testapidocs/javax/measure/test/unit/package-tree.html
      new file mode 100644
      index 00000000..f2634be9
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/package-tree.html
      @@ -0,0 +1,90 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>javax.measure.test.unit Class Hierarchy (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="tree: package: javax.measure.test.unit">
      +<meta name="generator" content="javadoc/PackageTreeWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-tree-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li>Class</li>
      +<li>Use</li>
      +<li class="nav-bar-cell1-rev">Tree</li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#tree">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 class="title">Hierarchy For Package javax.measure.test.unit</h1>
      +<span class="package-hierarchy-label">Package Hierarchies:</span>
      +<ul class="horizontal">
      +<li><a href="../../../../overview-tree.html">All Packages</a></li>
      +</ul>
      +</div>
      +<section class="hierarchy">
      +<h2 title="Class Hierarchy">Class Hierarchy</h2>
      +<ul>
      +<li class="circle"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" class="type-name-link external-link" title="class or interface in java.lang">Object</a>
      +<ul>
      +<li class="circle"><a href="../TestUnit.html" class="type-name-link" title="class in javax.measure.test">TestUnit</a>&lt;Q&gt; (implements <a href="../../../../../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;Q&gt;)
      +<ul>
      +<li class="circle"><a href="AreaUnit.html" class="type-name-link" title="class in javax.measure.test.unit">AreaUnit</a></li>
      +<li class="circle"><a href="BaseUnit.html" class="type-name-link" title="class in javax.measure.test.unit">BaseUnit</a>&lt;Q&gt;
      +<ul>
      +<li class="circle"><a href="DistanceUnit.html" class="type-name-link" title="class in javax.measure.test.unit">DistanceUnit</a></li>
      +<li class="circle"><a href="MassUnit.html" class="type-name-link" title="class in javax.measure.test.unit">MassUnit</a></li>
      +<li class="circle"><a href="TimeUnit.html" class="type-name-link" title="class in javax.measure.test.unit">TimeUnit</a></li>
      +</ul>
      +</li>
      +<li class="circle"><a href="SpeedUnit.html" class="type-name-link" title="class in javax.measure.test.unit">SpeedUnit</a></li>
      +<li class="circle"><a href="TemperatureUnit.html" class="type-name-link" title="class in javax.measure.test.unit">TemperatureUnit</a></li>
      +<li class="circle"><a href="VolumeUnit.html" class="type-name-link" title="class in javax.measure.test.unit">VolumeUnit</a></li>
      +</ul>
      +</li>
      +</ul>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/javax/measure/test/unit/package-use.html b/docs/site/testapidocs/javax/measure/test/unit/package-use.html
      new file mode 100644
      index 00000000..a573fc80
      --- /dev/null
      +++ b/docs/site/testapidocs/javax/measure/test/unit/package-use.html
      @@ -0,0 +1,121 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Uses of Package javax.measure.test.unit (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="use: package: javax.measure.test.unit">
      +<meta name="generator" content="javadoc/PackageUseWriter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="../../../../script.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="../../../../script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="package-use-page">
      +<script type="text/javascript">var pathtoroot = "../../../../";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="../../../../index.html">Overview</a></li>
      +<li><a href="package-summary.html">Package</a></li>
      +<li>Class</li>
      +<li class="nav-bar-cell1-rev">Use</li>
      +<li><a href="package-tree.html">Tree</a></li>
      +<li><a href="../../../../index-all.html">Index</a></li>
      +<li><a href="../../../../help-doc.html#use">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 title="Uses of Package javax.measure.test.unit" class="title">Uses of Package<br>javax.measure.test.unit</h1>
      +</div>
      +<div class="caption"><span>Packages that use <a href="package-summary.html">javax.measure.test.unit</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Package</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="#javax.measure.test.quantity">javax.measure.test.quantity</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="#javax.measure.test.unit">javax.measure.test.unit</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +<section class="package-uses">
      +<ul class="block-list">
      +<li>
      +<section class="detail" id="javax.measure.test.quantity">
      +<div class="caption"><span>Classes in <a href="package-summary.html">javax.measure.test.unit</a> used by <a href="../quantity/package-summary.html">javax.measure.test.quantity</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="class-use/AreaUnit.html#javax.measure.test.quantity">AreaUnit</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="class-use/DistanceUnit.html#javax.measure.test.quantity">DistanceUnit</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><a href="class-use/TemperatureUnit.html#javax.measure.test.quantity">TemperatureUnit</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="class-use/TimeUnit.html#javax.measure.test.quantity">TimeUnit</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><a href="class-use/VolumeUnit.html#javax.measure.test.quantity">VolumeUnit</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +<li>
      +<section class="detail" id="javax.measure.test.unit">
      +<div class="caption"><span>Classes in <a href="package-summary.html">javax.measure.test.unit</a> used by <a href="package-summary.html">javax.measure.test.unit</a></span></div>
      +<div class="summary-table two-column-summary">
      +<div class="table-header col-first">Class</div>
      +<div class="table-header col-last">Description</div>
      +<div class="col-first even-row-color"><a href="class-use/AreaUnit.html#javax.measure.test.unit">AreaUnit</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="class-use/BaseUnit.html#javax.measure.test.unit">BaseUnit</a></div>
      +<div class="col-last odd-row-color">
      +<div class="block">Building blocks on top of which all others units are created.</div>
      +</div>
      +<div class="col-first even-row-color"><a href="class-use/DistanceUnit.html#javax.measure.test.unit">DistanceUnit</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="class-use/MassUnit.html#javax.measure.test.unit">MassUnit</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><a href="class-use/SpeedUnit.html#javax.measure.test.unit">SpeedUnit</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="class-use/TemperatureUnit.html#javax.measure.test.unit">TemperatureUnit</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +<div class="col-first even-row-color"><a href="class-use/TimeUnit.html#javax.measure.test.unit">TimeUnit</a></div>
      +<div class="col-last even-row-color">&nbsp;</div>
      +<div class="col-first odd-row-color"><a href="class-use/VolumeUnit.html#javax.measure.test.unit">VolumeUnit</a></div>
      +<div class="col-last odd-row-color">&nbsp;</div>
      +</div>
      +</section>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/jquery-ui.overrides.css b/docs/site/testapidocs/jquery-ui.overrides.css
      new file mode 100644
      index 00000000..facf852c
      --- /dev/null
      +++ b/docs/site/testapidocs/jquery-ui.overrides.css
      @@ -0,0 +1,35 @@
      +/*
      + * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
      + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
      + *
      + * This code is free software; you can redistribute it and/or modify it
      + * under the terms of the GNU General Public License version 2 only, as
      + * published by the Free Software Foundation.  Oracle designates this
      + * particular file as subject to the "Classpath" exception as provided
      + * by Oracle in the LICENSE file that accompanied this code.
      + *
      + * This code is distributed in the hope that it will be useful, but WITHOUT
      + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
      + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
      + * version 2 for more details (a copy is included in the LICENSE file that
      + * accompanied this code).
      + *
      + * You should have received a copy of the GNU General Public License version
      + * 2 along with this work; if not, write to the Free Software Foundation,
      + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
      + *
      + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
      + * or visit www.oracle.com if you need additional information or have any
      + * questions.
      + */
      +
      +.ui-state-active,
      +.ui-widget-content .ui-state-active,
      +.ui-widget-header .ui-state-active,
      +a.ui-button:active,
      +.ui-button:active,
      +.ui-button.ui-state-active:hover {
      +    /* Overrides the color of selection used in jQuery UI */
      +    background: #F8981D;
      +    border: 1px solid #F8981D;
      +}
      diff --git a/docs/site/testapidocs/jquery/external/jquery/jquery.js b/docs/site/testapidocs/jquery/external/jquery/jquery.js
      new file mode 100644
      index 00000000..9b5206bc
      --- /dev/null
      +++ b/docs/site/testapidocs/jquery/external/jquery/jquery.js
      @@ -0,0 +1,10364 @@
      +/*!
      + * jQuery JavaScript Library v3.3.1
      + * https://jquery.com/
      + *
      + * Includes Sizzle.js
      + * https://sizzlejs.com/
      + *
      + * Copyright JS Foundation and other contributors
      + * Released under the MIT license
      + * https://jquery.org/license
      + *
      + * Date: 2018-01-20T17:24Z
      + */
      +( function( global, factory ) {
      +
      +	"use strict";
      +
      +	if ( typeof module === "object" && typeof module.exports === "object" ) {
      +
      +		// For CommonJS and CommonJS-like environments where a proper `window`
      +		// is present, execute the factory and get jQuery.
      +		// For environments that do not have a `window` with a `document`
      +		// (such as Node.js), expose a factory as module.exports.
      +		// This accentuates the need for the creation of a real `window`.
      +		// e.g. var jQuery = require("jquery")(window);
      +		// See ticket #14549 for more info.
      +		module.exports = global.document ?
      +			factory( global, true ) :
      +			function( w ) {
      +				if ( !w.document ) {
      +					throw new Error( "jQuery requires a window with a document" );
      +				}
      +				return factory( w );
      +			};
      +	} else {
      +		factory( global );
      +	}
      +
      +// Pass this if window is not defined yet
      +} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
      +
      +// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
      +// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
      +// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
      +// enough that all such attempts are guarded in a try block.
      +"use strict";
      +
      +var arr = [];
      +
      +var document = window.document;
      +
      +var getProto = Object.getPrototypeOf;
      +
      +var slice = arr.slice;
      +
      +var concat = arr.concat;
      +
      +var push = arr.push;
      +
      +var indexOf = arr.indexOf;
      +
      +var class2type = {};
      +
      +var toString = class2type.toString;
      +
      +var hasOwn = class2type.hasOwnProperty;
      +
      +var fnToString = hasOwn.toString;
      +
      +var ObjectFunctionString = fnToString.call( Object );
      +
      +var support = {};
      +
      +var isFunction = function isFunction( obj ) {
      +
      +      // Support: Chrome <=57, Firefox <=52
      +      // In some browsers, typeof returns "function" for HTML <object> elements
      +      // (i.e., `typeof document.createElement( "object" ) === "function"`).
      +      // We don't want to classify *any* DOM node as a function.
      +      return typeof obj === "function" && typeof obj.nodeType !== "number";
      +  };
      +
      +
      +var isWindow = function isWindow( obj ) {
      +		return obj != null && obj === obj.window;
      +	};
      +
      +
      +
      +
      +	var preservedScriptAttributes = {
      +		type: true,
      +		src: true,
      +		noModule: true
      +	};
      +
      +	function DOMEval( code, doc, node ) {
      +		doc = doc || document;
      +
      +		var i,
      +			script = doc.createElement( "script" );
      +
      +		script.text = code;
      +		if ( node ) {
      +			for ( i in preservedScriptAttributes ) {
      +				if ( node[ i ] ) {
      +					script[ i ] = node[ i ];
      +				}
      +			}
      +		}
      +		doc.head.appendChild( script ).parentNode.removeChild( script );
      +	}
      +
      +
      +function toType( obj ) {
      +	if ( obj == null ) {
      +		return obj + "";
      +	}
      +
      +	// Support: Android <=2.3 only (functionish RegExp)
      +	return typeof obj === "object" || typeof obj === "function" ?
      +		class2type[ toString.call( obj ) ] || "object" :
      +		typeof obj;
      +}
      +/* global Symbol */
      +// Defining this global in .eslintrc.json would create a danger of using the global
      +// unguarded in another place, it seems safer to define global only for this module
      +
      +
      +
      +var
      +	version = "3.3.1",
      +
      +	// Define a local copy of jQuery
      +	jQuery = function( selector, context ) {
      +
      +		// The jQuery object is actually just the init constructor 'enhanced'
      +		// Need init if jQuery is called (just allow error to be thrown if not included)
      +		return new jQuery.fn.init( selector, context );
      +	},
      +
      +	// Support: Android <=4.0 only
      +	// Make sure we trim BOM and NBSP
      +	rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
      +
      +jQuery.fn = jQuery.prototype = {
      +
      +	// The current version of jQuery being used
      +	jquery: version,
      +
      +	constructor: jQuery,
      +
      +	// The default length of a jQuery object is 0
      +	length: 0,
      +
      +	toArray: function() {
      +		return slice.call( this );
      +	},
      +
      +	// Get the Nth element in the matched element set OR
      +	// Get the whole matched element set as a clean array
      +	get: function( num ) {
      +
      +		// Return all the elements in a clean array
      +		if ( num == null ) {
      +			return slice.call( this );
      +		}
      +
      +		// Return just the one element from the set
      +		return num < 0 ? this[ num + this.length ] : this[ num ];
      +	},
      +
      +	// Take an array of elements and push it onto the stack
      +	// (returning the new matched element set)
      +	pushStack: function( elems ) {
      +
      +		// Build a new jQuery matched element set
      +		var ret = jQuery.merge( this.constructor(), elems );
      +
      +		// Add the old object onto the stack (as a reference)
      +		ret.prevObject = this;
      +
      +		// Return the newly-formed element set
      +		return ret;
      +	},
      +
      +	// Execute a callback for every element in the matched set.
      +	each: function( callback ) {
      +		return jQuery.each( this, callback );
      +	},
      +
      +	map: function( callback ) {
      +		return this.pushStack( jQuery.map( this, function( elem, i ) {
      +			return callback.call( elem, i, elem );
      +		} ) );
      +	},
      +
      +	slice: function() {
      +		return this.pushStack( slice.apply( this, arguments ) );
      +	},
      +
      +	first: function() {
      +		return this.eq( 0 );
      +	},
      +
      +	last: function() {
      +		return this.eq( -1 );
      +	},
      +
      +	eq: function( i ) {
      +		var len = this.length,
      +			j = +i + ( i < 0 ? len : 0 );
      +		return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );
      +	},
      +
      +	end: function() {
      +		return this.prevObject || this.constructor();
      +	},
      +
      +	// For internal use only.
      +	// Behaves like an Array's method, not like a jQuery method.
      +	push: push,
      +	sort: arr.sort,
      +	splice: arr.splice
      +};
      +
      +jQuery.extend = jQuery.fn.extend = function() {
      +	var options, name, src, copy, copyIsArray, clone,
      +		target = arguments[ 0 ] || {},
      +		i = 1,
      +		length = arguments.length,
      +		deep = false;
      +
      +	// Handle a deep copy situation
      +	if ( typeof target === "boolean" ) {
      +		deep = target;
      +
      +		// Skip the boolean and the target
      +		target = arguments[ i ] || {};
      +		i++;
      +	}
      +
      +	// Handle case when target is a string or something (possible in deep copy)
      +	if ( typeof target !== "object" && !isFunction( target ) ) {
      +		target = {};
      +	}
      +
      +	// Extend jQuery itself if only one argument is passed
      +	if ( i === length ) {
      +		target = this;
      +		i--;
      +	}
      +
      +	for ( ; i < length; i++ ) {
      +
      +		// Only deal with non-null/undefined values
      +		if ( ( options = arguments[ i ] ) != null ) {
      +
      +			// Extend the base object
      +			for ( name in options ) {
      +				src = target[ name ];
      +				copy = options[ name ];
      +
      +				// Prevent never-ending loop
      +				if ( target === copy ) {
      +					continue;
      +				}
      +
      +				// Recurse if we're merging plain objects or arrays
      +				if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
      +					( copyIsArray = Array.isArray( copy ) ) ) ) {
      +
      +					if ( copyIsArray ) {
      +						copyIsArray = false;
      +						clone = src && Array.isArray( src ) ? src : [];
      +
      +					} else {
      +						clone = src && jQuery.isPlainObject( src ) ? src : {};
      +					}
      +
      +					// Never move original objects, clone them
      +					target[ name ] = jQuery.extend( deep, clone, copy );
      +
      +				// Don't bring in undefined values
      +				} else if ( copy !== undefined ) {
      +					target[ name ] = copy;
      +				}
      +			}
      +		}
      +	}
      +
      +	// Return the modified object
      +	return target;
      +};
      +
      +jQuery.extend( {
      +
      +	// Unique for each copy of jQuery on the page
      +	expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
      +
      +	// Assume jQuery is ready without the ready module
      +	isReady: true,
      +
      +	error: function( msg ) {
      +		throw new Error( msg );
      +	},
      +
      +	noop: function() {},
      +
      +	isPlainObject: function( obj ) {
      +		var proto, Ctor;
      +
      +		// Detect obvious negatives
      +		// Use toString instead of jQuery.type to catch host objects
      +		if ( !obj || toString.call( obj ) !== "[object Object]" ) {
      +			return false;
      +		}
      +
      +		proto = getProto( obj );
      +
      +		// Objects with no prototype (e.g., `Object.create( null )`) are plain
      +		if ( !proto ) {
      +			return true;
      +		}
      +
      +		// Objects with prototype are plain iff they were constructed by a global Object function
      +		Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor;
      +		return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString;
      +	},
      +
      +	isEmptyObject: function( obj ) {
      +
      +		/* eslint-disable no-unused-vars */
      +		// See https://github.com/eslint/eslint/issues/6125
      +		var name;
      +
      +		for ( name in obj ) {
      +			return false;
      +		}
      +		return true;
      +	},
      +
      +	// Evaluates a script in a global context
      +	globalEval: function( code ) {
      +		DOMEval( code );
      +	},
      +
      +	each: function( obj, callback ) {
      +		var length, i = 0;
      +
      +		if ( isArrayLike( obj ) ) {
      +			length = obj.length;
      +			for ( ; i < length; i++ ) {
      +				if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
      +					break;
      +				}
      +			}
      +		} else {
      +			for ( i in obj ) {
      +				if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
      +					break;
      +				}
      +			}
      +		}
      +
      +		return obj;
      +	},
      +
      +	// Support: Android <=4.0 only
      +	trim: function( text ) {
      +		return text == null ?
      +			"" :
      +			( text + "" ).replace( rtrim, "" );
      +	},
      +
      +	// results is for internal usage only
      +	makeArray: function( arr, results ) {
      +		var ret = results || [];
      +
      +		if ( arr != null ) {
      +			if ( isArrayLike( Object( arr ) ) ) {
      +				jQuery.merge( ret,
      +					typeof arr === "string" ?
      +					[ arr ] : arr
      +				);
      +			} else {
      +				push.call( ret, arr );
      +			}
      +		}
      +
      +		return ret;
      +	},
      +
      +	inArray: function( elem, arr, i ) {
      +		return arr == null ? -1 : indexOf.call( arr, elem, i );
      +	},
      +
      +	// Support: Android <=4.0 only, PhantomJS 1 only
      +	// push.apply(_, arraylike) throws on ancient WebKit
      +	merge: function( first, second ) {
      +		var len = +second.length,
      +			j = 0,
      +			i = first.length;
      +
      +		for ( ; j < len; j++ ) {
      +			first[ i++ ] = second[ j ];
      +		}
      +
      +		first.length = i;
      +
      +		return first;
      +	},
      +
      +	grep: function( elems, callback, invert ) {
      +		var callbackInverse,
      +			matches = [],
      +			i = 0,
      +			length = elems.length,
      +			callbackExpect = !invert;
      +
      +		// Go through the array, only saving the items
      +		// that pass the validator function
      +		for ( ; i < length; i++ ) {
      +			callbackInverse = !callback( elems[ i ], i );
      +			if ( callbackInverse !== callbackExpect ) {
      +				matches.push( elems[ i ] );
      +			}
      +		}
      +
      +		return matches;
      +	},
      +
      +	// arg is for internal usage only
      +	map: function( elems, callback, arg ) {
      +		var length, value,
      +			i = 0,
      +			ret = [];
      +
      +		// Go through the array, translating each of the items to their new values
      +		if ( isArrayLike( elems ) ) {
      +			length = elems.length;
      +			for ( ; i < length; i++ ) {
      +				value = callback( elems[ i ], i, arg );
      +
      +				if ( value != null ) {
      +					ret.push( value );
      +				}
      +			}
      +
      +		// Go through every key on the object,
      +		} else {
      +			for ( i in elems ) {
      +				value = callback( elems[ i ], i, arg );
      +
      +				if ( value != null ) {
      +					ret.push( value );
      +				}
      +			}
      +		}
      +
      +		// Flatten any nested arrays
      +		return concat.apply( [], ret );
      +	},
      +
      +	// A global GUID counter for objects
      +	guid: 1,
      +
      +	// jQuery.support is not used in Core but other projects attach their
      +	// properties to it so it needs to exist.
      +	support: support
      +} );
      +
      +if ( typeof Symbol === "function" ) {
      +	jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];
      +}
      +
      +// Populate the class2type map
      +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ),
      +function( i, name ) {
      +	class2type[ "[object " + name + "]" ] = name.toLowerCase();
      +} );
      +
      +function isArrayLike( obj ) {
      +
      +	// Support: real iOS 8.2 only (not reproducible in simulator)
      +	// `in` check used to prevent JIT error (gh-2145)
      +	// hasOwn isn't used here due to false negatives
      +	// regarding Nodelist length in IE
      +	var length = !!obj && "length" in obj && obj.length,
      +		type = toType( obj );
      +
      +	if ( isFunction( obj ) || isWindow( obj ) ) {
      +		return false;
      +	}
      +
      +	return type === "array" || length === 0 ||
      +		typeof length === "number" && length > 0 && ( length - 1 ) in obj;
      +}
      +var Sizzle =
      +/*!
      + * Sizzle CSS Selector Engine v2.3.3
      + * https://sizzlejs.com/
      + *
      + * Copyright jQuery Foundation and other contributors
      + * Released under the MIT license
      + * http://jquery.org/license
      + *
      + * Date: 2016-08-08
      + */
      +(function( window ) {
      +
      +var i,
      +	support,
      +	Expr,
      +	getText,
      +	isXML,
      +	tokenize,
      +	compile,
      +	select,
      +	outermostContext,
      +	sortInput,
      +	hasDuplicate,
      +
      +	// Local document vars
      +	setDocument,
      +	document,
      +	docElem,
      +	documentIsHTML,
      +	rbuggyQSA,
      +	rbuggyMatches,
      +	matches,
      +	contains,
      +
      +	// Instance-specific data
      +	expando = "sizzle" + 1 * new Date(),
      +	preferredDoc = window.document,
      +	dirruns = 0,
      +	done = 0,
      +	classCache = createCache(),
      +	tokenCache = createCache(),
      +	compilerCache = createCache(),
      +	sortOrder = function( a, b ) {
      +		if ( a === b ) {
      +			hasDuplicate = true;
      +		}
      +		return 0;
      +	},
      +
      +	// Instance methods
      +	hasOwn = ({}).hasOwnProperty,
      +	arr = [],
      +	pop = arr.pop,
      +	push_native = arr.push,
      +	push = arr.push,
      +	slice = arr.slice,
      +	// Use a stripped-down indexOf as it's faster than native
      +	// https://jsperf.com/thor-indexof-vs-for/5
      +	indexOf = function( list, elem ) {
      +		var i = 0,
      +			len = list.length;
      +		for ( ; i < len; i++ ) {
      +			if ( list[i] === elem ) {
      +				return i;
      +			}
      +		}
      +		return -1;
      +	},
      +
      +	booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
      +
      +	// Regular expressions
      +
      +	// http://www.w3.org/TR/css3-selectors/#whitespace
      +	whitespace = "[\\x20\\t\\r\\n\\f]",
      +
      +	// http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
      +	identifier = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+",
      +
      +	// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors
      +	attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace +
      +		// Operator (capture 2)
      +		"*([*^$|!~]?=)" + whitespace +
      +		// "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]"
      +		"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace +
      +		"*\\]",
      +
      +	pseudos = ":(" + identifier + ")(?:\\((" +
      +		// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:
      +		// 1. quoted (capture 3; capture 4 or capture 5)
      +		"('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" +
      +		// 2. simple (capture 6)
      +		"((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" +
      +		// 3. anything else (capture 2)
      +		".*" +
      +		")\\)|)",
      +
      +	// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
      +	rwhitespace = new RegExp( whitespace + "+", "g" ),
      +	rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
      +
      +	rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
      +	rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
      +
      +	rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ),
      +
      +	rpseudo = new RegExp( pseudos ),
      +	ridentifier = new RegExp( "^" + identifier + "$" ),
      +
      +	matchExpr = {
      +		"ID": new RegExp( "^#(" + identifier + ")" ),
      +		"CLASS": new RegExp( "^\\.(" + identifier + ")" ),
      +		"TAG": new RegExp( "^(" + identifier + "|[*])" ),
      +		"ATTR": new RegExp( "^" + attributes ),
      +		"PSEUDO": new RegExp( "^" + pseudos ),
      +		"CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
      +			"*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
      +			"*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
      +		"bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
      +		// For use in libraries implementing .is()
      +		// We use this for POS matching in `select`
      +		"needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
      +			whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
      +	},
      +
      +	rinputs = /^(?:input|select|textarea|button)$/i,
      +	rheader = /^h\d$/i,
      +
      +	rnative = /^[^{]+\{\s*\[native \w/,
      +
      +	// Easily-parseable/retrievable ID or TAG or CLASS selectors
      +	rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
      +
      +	rsibling = /[+~]/,
      +
      +	// CSS escapes
      +	// http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
      +	runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ),
      +	funescape = function( _, escaped, escapedWhitespace ) {
      +		var high = "0x" + escaped - 0x10000;
      +		// NaN means non-codepoint
      +		// Support: Firefox<24
      +		// Workaround erroneous numeric interpretation of +"0x"
      +		return high !== high || escapedWhitespace ?
      +			escaped :
      +			high < 0 ?
      +				// BMP codepoint
      +				String.fromCharCode( high + 0x10000 ) :
      +				// Supplemental Plane codepoint (surrogate pair)
      +				String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
      +	},
      +
      +	// CSS string/identifier serialization
      +	// https://drafts.csswg.org/cssom/#common-serializing-idioms
      +	rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,
      +	fcssescape = function( ch, asCodePoint ) {
      +		if ( asCodePoint ) {
      +
      +			// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER
      +			if ( ch === "\0" ) {
      +				return "\uFFFD";
      +			}
      +
      +			// Control characters and (dependent upon position) numbers get escaped as code points
      +			return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " ";
      +		}
      +
      +		// Other potentially-special ASCII characters get backslash-escaped
      +		return "\\" + ch;
      +	},
      +
      +	// Used for iframes
      +	// See setDocument()
      +	// Removing the function wrapper causes a "Permission Denied"
      +	// error in IE
      +	unloadHandler = function() {
      +		setDocument();
      +	},
      +
      +	disabledAncestor = addCombinator(
      +		function( elem ) {
      +			return elem.disabled === true && ("form" in elem || "label" in elem);
      +		},
      +		{ dir: "parentNode", next: "legend" }
      +	);
      +
      +// Optimize for push.apply( _, NodeList )
      +try {
      +	push.apply(
      +		(arr = slice.call( preferredDoc.childNodes )),
      +		preferredDoc.childNodes
      +	);
      +	// Support: Android<4.0
      +	// Detect silently failing push.apply
      +	arr[ preferredDoc.childNodes.length ].nodeType;
      +} catch ( e ) {
      +	push = { apply: arr.length ?
      +
      +		// Leverage slice if possible
      +		function( target, els ) {
      +			push_native.apply( target, slice.call(els) );
      +		} :
      +
      +		// Support: IE<9
      +		// Otherwise append directly
      +		function( target, els ) {
      +			var j = target.length,
      +				i = 0;
      +			// Can't trust NodeList.length
      +			while ( (target[j++] = els[i++]) ) {}
      +			target.length = j - 1;
      +		}
      +	};
      +}
      +
      +function Sizzle( selector, context, results, seed ) {
      +	var m, i, elem, nid, match, groups, newSelector,
      +		newContext = context && context.ownerDocument,
      +
      +		// nodeType defaults to 9, since context defaults to document
      +		nodeType = context ? context.nodeType : 9;
      +
      +	results = results || [];
      +
      +	// Return early from calls with invalid selector or context
      +	if ( typeof selector !== "string" || !selector ||
      +		nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {
      +
      +		return results;
      +	}
      +
      +	// Try to shortcut find operations (as opposed to filters) in HTML documents
      +	if ( !seed ) {
      +
      +		if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
      +			setDocument( context );
      +		}
      +		context = context || document;
      +
      +		if ( documentIsHTML ) {
      +
      +			// If the selector is sufficiently simple, try using a "get*By*" DOM method
      +			// (excepting DocumentFragment context, where the methods don't exist)
      +			if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {
      +
      +				// ID selector
      +				if ( (m = match[1]) ) {
      +
      +					// Document context
      +					if ( nodeType === 9 ) {
      +						if ( (elem = context.getElementById( m )) ) {
      +
      +							// Support: IE, Opera, Webkit
      +							// TODO: identify versions
      +							// getElementById can match elements by name instead of ID
      +							if ( elem.id === m ) {
      +								results.push( elem );
      +								return results;
      +							}
      +						} else {
      +							return results;
      +						}
      +
      +					// Element context
      +					} else {
      +
      +						// Support: IE, Opera, Webkit
      +						// TODO: identify versions
      +						// getElementById can match elements by name instead of ID
      +						if ( newContext && (elem = newContext.getElementById( m )) &&
      +							contains( context, elem ) &&
      +							elem.id === m ) {
      +
      +							results.push( elem );
      +							return results;
      +						}
      +					}
      +
      +				// Type selector
      +				} else if ( match[2] ) {
      +					push.apply( results, context.getElementsByTagName( selector ) );
      +					return results;
      +
      +				// Class selector
      +				} else if ( (m = match[3]) && support.getElementsByClassName &&
      +					context.getElementsByClassName ) {
      +
      +					push.apply( results, context.getElementsByClassName( m ) );
      +					return results;
      +				}
      +			}
      +
      +			// Take advantage of querySelectorAll
      +			if ( support.qsa &&
      +				!compilerCache[ selector + " " ] &&
      +				(!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
      +
      +				if ( nodeType !== 1 ) {
      +					newContext = context;
      +					newSelector = selector;
      +
      +				// qSA looks outside Element context, which is not what we want
      +				// Thanks to Andrew Dupont for this workaround technique
      +				// Support: IE <=8
      +				// Exclude object elements
      +				} else if ( context.nodeName.toLowerCase() !== "object" ) {
      +
      +					// Capture the context ID, setting it first if necessary
      +					if ( (nid = context.getAttribute( "id" )) ) {
      +						nid = nid.replace( rcssescape, fcssescape );
      +					} else {
      +						context.setAttribute( "id", (nid = expando) );
      +					}
      +
      +					// Prefix every selector in the list
      +					groups = tokenize( selector );
      +					i = groups.length;
      +					while ( i-- ) {
      +						groups[i] = "#" + nid + " " + toSelector( groups[i] );
      +					}
      +					newSelector = groups.join( "," );
      +
      +					// Expand context for sibling selectors
      +					newContext = rsibling.test( selector ) && testContext( context.parentNode ) ||
      +						context;
      +				}
      +
      +				if ( newSelector ) {
      +					try {
      +						push.apply( results,
      +							newContext.querySelectorAll( newSelector )
      +						);
      +						return results;
      +					} catch ( qsaError ) {
      +					} finally {
      +						if ( nid === expando ) {
      +							context.removeAttribute( "id" );
      +						}
      +					}
      +				}
      +			}
      +		}
      +	}
      +
      +	// All others
      +	return select( selector.replace( rtrim, "$1" ), context, results, seed );
      +}
      +
      +/**
      + * Create key-value caches of limited size
      + * @returns {function(string, object)} Returns the Object data after storing it on itself with
      + *	property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
      + *	deleting the oldest entry
      + */
      +function createCache() {
      +	var keys = [];
      +
      +	function cache( key, value ) {
      +		// Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
      +		if ( keys.push( key + " " ) > Expr.cacheLength ) {
      +			// Only keep the most recent entries
      +			delete cache[ keys.shift() ];
      +		}
      +		return (cache[ key + " " ] = value);
      +	}
      +	return cache;
      +}
      +
      +/**
      + * Mark a function for special use by Sizzle
      + * @param {Function} fn The function to mark
      + */
      +function markFunction( fn ) {
      +	fn[ expando ] = true;
      +	return fn;
      +}
      +
      +/**
      + * Support testing using an element
      + * @param {Function} fn Passed the created element and returns a boolean result
      + */
      +function assert( fn ) {
      +	var el = document.createElement("fieldset");
      +
      +	try {
      +		return !!fn( el );
      +	} catch (e) {
      +		return false;
      +	} finally {
      +		// Remove from its parent by default
      +		if ( el.parentNode ) {
      +			el.parentNode.removeChild( el );
      +		}
      +		// release memory in IE
      +		el = null;
      +	}
      +}
      +
      +/**
      + * Adds the same handler for all of the specified attrs
      + * @param {String} attrs Pipe-separated list of attributes
      + * @param {Function} handler The method that will be applied
      + */
      +function addHandle( attrs, handler ) {
      +	var arr = attrs.split("|"),
      +		i = arr.length;
      +
      +	while ( i-- ) {
      +		Expr.attrHandle[ arr[i] ] = handler;
      +	}
      +}
      +
      +/**
      + * Checks document order of two siblings
      + * @param {Element} a
      + * @param {Element} b
      + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
      + */
      +function siblingCheck( a, b ) {
      +	var cur = b && a,
      +		diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
      +			a.sourceIndex - b.sourceIndex;
      +
      +	// Use IE sourceIndex if available on both nodes
      +	if ( diff ) {
      +		return diff;
      +	}
      +
      +	// Check if b follows a
      +	if ( cur ) {
      +		while ( (cur = cur.nextSibling) ) {
      +			if ( cur === b ) {
      +				return -1;
      +			}
      +		}
      +	}
      +
      +	return a ? 1 : -1;
      +}
      +
      +/**
      + * Returns a function to use in pseudos for input types
      + * @param {String} type
      + */
      +function createInputPseudo( type ) {
      +	return function( elem ) {
      +		var name = elem.nodeName.toLowerCase();
      +		return name === "input" && elem.type === type;
      +	};
      +}
      +
      +/**
      + * Returns a function to use in pseudos for buttons
      + * @param {String} type
      + */
      +function createButtonPseudo( type ) {
      +	return function( elem ) {
      +		var name = elem.nodeName.toLowerCase();
      +		return (name === "input" || name === "button") && elem.type === type;
      +	};
      +}
      +
      +/**
      + * Returns a function to use in pseudos for :enabled/:disabled
      + * @param {Boolean} disabled true for :disabled; false for :enabled
      + */
      +function createDisabledPseudo( disabled ) {
      +
      +	// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable
      +	return function( elem ) {
      +
      +		// Only certain elements can match :enabled or :disabled
      +		// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled
      +		// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled
      +		if ( "form" in elem ) {
      +
      +			// Check for inherited disabledness on relevant non-disabled elements:
      +			// * listed form-associated elements in a disabled fieldset
      +			//   https://html.spec.whatwg.org/multipage/forms.html#category-listed
      +			//   https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled
      +			// * option elements in a disabled optgroup
      +			//   https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled
      +			// All such elements have a "form" property.
      +			if ( elem.parentNode && elem.disabled === false ) {
      +
      +				// Option elements defer to a parent optgroup if present
      +				if ( "label" in elem ) {
      +					if ( "label" in elem.parentNode ) {
      +						return elem.parentNode.disabled === disabled;
      +					} else {
      +						return elem.disabled === disabled;
      +					}
      +				}
      +
      +				// Support: IE 6 - 11
      +				// Use the isDisabled shortcut property to check for disabled fieldset ancestors
      +				return elem.isDisabled === disabled ||
      +
      +					// Where there is no isDisabled, check manually
      +					/* jshint -W018 */
      +					elem.isDisabled !== !disabled &&
      +						disabledAncestor( elem ) === disabled;
      +			}
      +
      +			return elem.disabled === disabled;
      +
      +		// Try to winnow out elements that can't be disabled before trusting the disabled property.
      +		// Some victims get caught in our net (label, legend, menu, track), but it shouldn't
      +		// even exist on them, let alone have a boolean value.
      +		} else if ( "label" in elem ) {
      +			return elem.disabled === disabled;
      +		}
      +
      +		// Remaining elements are neither :enabled nor :disabled
      +		return false;
      +	};
      +}
      +
      +/**
      + * Returns a function to use in pseudos for positionals
      + * @param {Function} fn
      + */
      +function createPositionalPseudo( fn ) {
      +	return markFunction(function( argument ) {
      +		argument = +argument;
      +		return markFunction(function( seed, matches ) {
      +			var j,
      +				matchIndexes = fn( [], seed.length, argument ),
      +				i = matchIndexes.length;
      +
      +			// Match elements found at the specified indexes
      +			while ( i-- ) {
      +				if ( seed[ (j = matchIndexes[i]) ] ) {
      +					seed[j] = !(matches[j] = seed[j]);
      +				}
      +			}
      +		});
      +	});
      +}
      +
      +/**
      + * Checks a node for validity as a Sizzle context
      + * @param {Element|Object=} context
      + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
      + */
      +function testContext( context ) {
      +	return context && typeof context.getElementsByTagName !== "undefined" && context;
      +}
      +
      +// Expose support vars for convenience
      +support = Sizzle.support = {};
      +
      +/**
      + * Detects XML nodes
      + * @param {Element|Object} elem An element or a document
      + * @returns {Boolean} True iff elem is a non-HTML XML node
      + */
      +isXML = Sizzle.isXML = function( elem ) {
      +	// documentElement is verified for cases where it doesn't yet exist
      +	// (such as loading iframes in IE - #4833)
      +	var documentElement = elem && (elem.ownerDocument || elem).documentElement;
      +	return documentElement ? documentElement.nodeName !== "HTML" : false;
      +};
      +
      +/**
      + * Sets document-related variables once based on the current document
      + * @param {Element|Object} [doc] An element or document object to use to set the document
      + * @returns {Object} Returns the current document
      + */
      +setDocument = Sizzle.setDocument = function( node ) {
      +	var hasCompare, subWindow,
      +		doc = node ? node.ownerDocument || node : preferredDoc;
      +
      +	// Return early if doc is invalid or already selected
      +	if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
      +		return document;
      +	}
      +
      +	// Update global variables
      +	document = doc;
      +	docElem = document.documentElement;
      +	documentIsHTML = !isXML( document );
      +
      +	// Support: IE 9-11, Edge
      +	// Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936)
      +	if ( preferredDoc !== document &&
      +		(subWindow = document.defaultView) && subWindow.top !== subWindow ) {
      +
      +		// Support: IE 11, Edge
      +		if ( subWindow.addEventListener ) {
      +			subWindow.addEventListener( "unload", unloadHandler, false );
      +
      +		// Support: IE 9 - 10 only
      +		} else if ( subWindow.attachEvent ) {
      +			subWindow.attachEvent( "onunload", unloadHandler );
      +		}
      +	}
      +
      +	/* Attributes
      +	---------------------------------------------------------------------- */
      +
      +	// Support: IE<8
      +	// Verify that getAttribute really returns attributes and not properties
      +	// (excepting IE8 booleans)
      +	support.attributes = assert(function( el ) {
      +		el.className = "i";
      +		return !el.getAttribute("className");
      +	});
      +
      +	/* getElement(s)By*
      +	---------------------------------------------------------------------- */
      +
      +	// Check if getElementsByTagName("*") returns only elements
      +	support.getElementsByTagName = assert(function( el ) {
      +		el.appendChild( document.createComment("") );
      +		return !el.getElementsByTagName("*").length;
      +	});
      +
      +	// Support: IE<9
      +	support.getElementsByClassName = rnative.test( document.getElementsByClassName );
      +
      +	// Support: IE<10
      +	// Check if getElementById returns elements by name
      +	// The broken getElementById methods don't pick up programmatically-set names,
      +	// so use a roundabout getElementsByName test
      +	support.getById = assert(function( el ) {
      +		docElem.appendChild( el ).id = expando;
      +		return !document.getElementsByName || !document.getElementsByName( expando ).length;
      +	});
      +
      +	// ID filter and find
      +	if ( support.getById ) {
      +		Expr.filter["ID"] = function( id ) {
      +			var attrId = id.replace( runescape, funescape );
      +			return function( elem ) {
      +				return elem.getAttribute("id") === attrId;
      +			};
      +		};
      +		Expr.find["ID"] = function( id, context ) {
      +			if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
      +				var elem = context.getElementById( id );
      +				return elem ? [ elem ] : [];
      +			}
      +		};
      +	} else {
      +		Expr.filter["ID"] =  function( id ) {
      +			var attrId = id.replace( runescape, funescape );
      +			return function( elem ) {
      +				var node = typeof elem.getAttributeNode !== "undefined" &&
      +					elem.getAttributeNode("id");
      +				return node && node.value === attrId;
      +			};
      +		};
      +
      +		// Support: IE 6 - 7 only
      +		// getElementById is not reliable as a find shortcut
      +		Expr.find["ID"] = function( id, context ) {
      +			if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
      +				var node, i, elems,
      +					elem = context.getElementById( id );
      +
      +				if ( elem ) {
      +
      +					// Verify the id attribute
      +					node = elem.getAttributeNode("id");
      +					if ( node && node.value === id ) {
      +						return [ elem ];
      +					}
      +
      +					// Fall back on getElementsByName
      +					elems = context.getElementsByName( id );
      +					i = 0;
      +					while ( (elem = elems[i++]) ) {
      +						node = elem.getAttributeNode("id");
      +						if ( node && node.value === id ) {
      +							return [ elem ];
      +						}
      +					}
      +				}
      +
      +				return [];
      +			}
      +		};
      +	}
      +
      +	// Tag
      +	Expr.find["TAG"] = support.getElementsByTagName ?
      +		function( tag, context ) {
      +			if ( typeof context.getElementsByTagName !== "undefined" ) {
      +				return context.getElementsByTagName( tag );
      +
      +			// DocumentFragment nodes don't have gEBTN
      +			} else if ( support.qsa ) {
      +				return context.querySelectorAll( tag );
      +			}
      +		} :
      +
      +		function( tag, context ) {
      +			var elem,
      +				tmp = [],
      +				i = 0,
      +				// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too
      +				results = context.getElementsByTagName( tag );
      +
      +			// Filter out possible comments
      +			if ( tag === "*" ) {
      +				while ( (elem = results[i++]) ) {
      +					if ( elem.nodeType === 1 ) {
      +						tmp.push( elem );
      +					}
      +				}
      +
      +				return tmp;
      +			}
      +			return results;
      +		};
      +
      +	// Class
      +	Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) {
      +		if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) {
      +			return context.getElementsByClassName( className );
      +		}
      +	};
      +
      +	/* QSA/matchesSelector
      +	---------------------------------------------------------------------- */
      +
      +	// QSA and matchesSelector support
      +
      +	// matchesSelector(:active) reports false when true (IE9/Opera 11.5)
      +	rbuggyMatches = [];
      +
      +	// qSa(:focus) reports false when true (Chrome 21)
      +	// We allow this because of a bug in IE8/9 that throws an error
      +	// whenever `document.activeElement` is accessed on an iframe
      +	// So, we allow :focus to pass through QSA all the time to avoid the IE error
      +	// See https://bugs.jquery.com/ticket/13378
      +	rbuggyQSA = [];
      +
      +	if ( (support.qsa = rnative.test( document.querySelectorAll )) ) {
      +		// Build QSA regex
      +		// Regex strategy adopted from Diego Perini
      +		assert(function( el ) {
      +			// Select is set to empty string on purpose
      +			// This is to test IE's treatment of not explicitly
      +			// setting a boolean content attribute,
      +			// since its presence should be enough
      +			// https://bugs.jquery.com/ticket/12359
      +			docElem.appendChild( el ).innerHTML = "<a id='" + expando + "'></a>" +
      +				"<select id='" + expando + "-\r\\' msallowcapture=''>" +
      +				"<option selected=''></option></select>";
      +
      +			// Support: IE8, Opera 11-12.16
      +			// Nothing should be selected when empty strings follow ^= or $= or *=
      +			// The test attribute must be unknown in Opera but "safe" for WinRT
      +			// https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section
      +			if ( el.querySelectorAll("[msallowcapture^='']").length ) {
      +				rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
      +			}
      +
      +			// Support: IE8
      +			// Boolean attributes and "value" are not treated correctly
      +			if ( !el.querySelectorAll("[selected]").length ) {
      +				rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
      +			}
      +
      +			// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+
      +			if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) {
      +				rbuggyQSA.push("~=");
      +			}
      +
      +			// Webkit/Opera - :checked should return selected option elements
      +			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
      +			// IE8 throws error here and will not see later tests
      +			if ( !el.querySelectorAll(":checked").length ) {
      +				rbuggyQSA.push(":checked");
      +			}
      +
      +			// Support: Safari 8+, iOS 8+
      +			// https://bugs.webkit.org/show_bug.cgi?id=136851
      +			// In-page `selector#id sibling-combinator selector` fails
      +			if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) {
      +				rbuggyQSA.push(".#.+[+~]");
      +			}
      +		});
      +
      +		assert(function( el ) {
      +			el.innerHTML = "<a href='' disabled='disabled'></a>" +
      +				"<select disabled='disabled'><option/></select>";
      +
      +			// Support: Windows 8 Native Apps
      +			// The type and name attributes are restricted during .innerHTML assignment
      +			var input = document.createElement("input");
      +			input.setAttribute( "type", "hidden" );
      +			el.appendChild( input ).setAttribute( "name", "D" );
      +
      +			// Support: IE8
      +			// Enforce case-sensitivity of name attribute
      +			if ( el.querySelectorAll("[name=d]").length ) {
      +				rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
      +			}
      +
      +			// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
      +			// IE8 throws error here and will not see later tests
      +			if ( el.querySelectorAll(":enabled").length !== 2 ) {
      +				rbuggyQSA.push( ":enabled", ":disabled" );
      +			}
      +
      +			// Support: IE9-11+
      +			// IE's :disabled selector does not pick up the children of disabled fieldsets
      +			docElem.appendChild( el ).disabled = true;
      +			if ( el.querySelectorAll(":disabled").length !== 2 ) {
      +				rbuggyQSA.push( ":enabled", ":disabled" );
      +			}
      +
      +			// Opera 10-11 does not throw on post-comma invalid pseudos
      +			el.querySelectorAll("*,:x");
      +			rbuggyQSA.push(",.*:");
      +		});
      +	}
      +
      +	if ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||
      +		docElem.webkitMatchesSelector ||
      +		docElem.mozMatchesSelector ||
      +		docElem.oMatchesSelector ||
      +		docElem.msMatchesSelector) )) ) {
      +
      +		assert(function( el ) {
      +			// Check to see if it's possible to do matchesSelector
      +			// on a disconnected node (IE 9)
      +			support.disconnectedMatch = matches.call( el, "*" );
      +
      +			// This should fail with an exception
      +			// Gecko does not error, returns false instead
      +			matches.call( el, "[s!='']:x" );
      +			rbuggyMatches.push( "!=", pseudos );
      +		});
      +	}
      +
      +	rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") );
      +	rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") );
      +
      +	/* Contains
      +	---------------------------------------------------------------------- */
      +	hasCompare = rnative.test( docElem.compareDocumentPosition );
      +
      +	// Element contains another
      +	// Purposefully self-exclusive
      +	// As in, an element does not contain itself
      +	contains = hasCompare || rnative.test( docElem.contains ) ?
      +		function( a, b ) {
      +			var adown = a.nodeType === 9 ? a.documentElement : a,
      +				bup = b && b.parentNode;
      +			return a === bup || !!( bup && bup.nodeType === 1 && (
      +				adown.contains ?
      +					adown.contains( bup ) :
      +					a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
      +			));
      +		} :
      +		function( a, b ) {
      +			if ( b ) {
      +				while ( (b = b.parentNode) ) {
      +					if ( b === a ) {
      +						return true;
      +					}
      +				}
      +			}
      +			return false;
      +		};
      +
      +	/* Sorting
      +	---------------------------------------------------------------------- */
      +
      +	// Document order sorting
      +	sortOrder = hasCompare ?
      +	function( a, b ) {
      +
      +		// Flag for duplicate removal
      +		if ( a === b ) {
      +			hasDuplicate = true;
      +			return 0;
      +		}
      +
      +		// Sort on method existence if only one input has compareDocumentPosition
      +		var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
      +		if ( compare ) {
      +			return compare;
      +		}
      +
      +		// Calculate position if both inputs belong to the same document
      +		compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?
      +			a.compareDocumentPosition( b ) :
      +
      +			// Otherwise we know they are disconnected
      +			1;
      +
      +		// Disconnected nodes
      +		if ( compare & 1 ||
      +			(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
      +
      +			// Choose the first element that is related to our preferred document
      +			if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
      +				return -1;
      +			}
      +			if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {
      +				return 1;
      +			}
      +
      +			// Maintain original order
      +			return sortInput ?
      +				( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
      +				0;
      +		}
      +
      +		return compare & 4 ? -1 : 1;
      +	} :
      +	function( a, b ) {
      +		// Exit early if the nodes are identical
      +		if ( a === b ) {
      +			hasDuplicate = true;
      +			return 0;
      +		}
      +
      +		var cur,
      +			i = 0,
      +			aup = a.parentNode,
      +			bup = b.parentNode,
      +			ap = [ a ],
      +			bp = [ b ];
      +
      +		// Parentless nodes are either documents or disconnected
      +		if ( !aup || !bup ) {
      +			return a === document ? -1 :
      +				b === document ? 1 :
      +				aup ? -1 :
      +				bup ? 1 :
      +				sortInput ?
      +				( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
      +				0;
      +
      +		// If the nodes are siblings, we can do a quick check
      +		} else if ( aup === bup ) {
      +			return siblingCheck( a, b );
      +		}
      +
      +		// Otherwise we need full lists of their ancestors for comparison
      +		cur = a;
      +		while ( (cur = cur.parentNode) ) {
      +			ap.unshift( cur );
      +		}
      +		cur = b;
      +		while ( (cur = cur.parentNode) ) {
      +			bp.unshift( cur );
      +		}
      +
      +		// Walk down the tree looking for a discrepancy
      +		while ( ap[i] === bp[i] ) {
      +			i++;
      +		}
      +
      +		return i ?
      +			// Do a sibling check if the nodes have a common ancestor
      +			siblingCheck( ap[i], bp[i] ) :
      +
      +			// Otherwise nodes in our document sort first
      +			ap[i] === preferredDoc ? -1 :
      +			bp[i] === preferredDoc ? 1 :
      +			0;
      +	};
      +
      +	return document;
      +};
      +
      +Sizzle.matches = function( expr, elements ) {
      +	return Sizzle( expr, null, null, elements );
      +};
      +
      +Sizzle.matchesSelector = function( elem, expr ) {
      +	// Set document vars if needed
      +	if ( ( elem.ownerDocument || elem ) !== document ) {
      +		setDocument( elem );
      +	}
      +
      +	// Make sure that attribute selectors are quoted
      +	expr = expr.replace( rattributeQuotes, "='$1']" );
      +
      +	if ( support.matchesSelector && documentIsHTML &&
      +		!compilerCache[ expr + " " ] &&
      +		( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
      +		( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {
      +
      +		try {
      +			var ret = matches.call( elem, expr );
      +
      +			// IE 9's matchesSelector returns false on disconnected nodes
      +			if ( ret || support.disconnectedMatch ||
      +					// As well, disconnected nodes are said to be in a document
      +					// fragment in IE 9
      +					elem.document && elem.document.nodeType !== 11 ) {
      +				return ret;
      +			}
      +		} catch (e) {}
      +	}
      +
      +	return Sizzle( expr, document, null, [ elem ] ).length > 0;
      +};
      +
      +Sizzle.contains = function( context, elem ) {
      +	// Set document vars if needed
      +	if ( ( context.ownerDocument || context ) !== document ) {
      +		setDocument( context );
      +	}
      +	return contains( context, elem );
      +};
      +
      +Sizzle.attr = function( elem, name ) {
      +	// Set document vars if needed
      +	if ( ( elem.ownerDocument || elem ) !== document ) {
      +		setDocument( elem );
      +	}
      +
      +	var fn = Expr.attrHandle[ name.toLowerCase() ],
      +		// Don't get fooled by Object.prototype properties (jQuery #13807)
      +		val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
      +			fn( elem, name, !documentIsHTML ) :
      +			undefined;
      +
      +	return val !== undefined ?
      +		val :
      +		support.attributes || !documentIsHTML ?
      +			elem.getAttribute( name ) :
      +			(val = elem.getAttributeNode(name)) && val.specified ?
      +				val.value :
      +				null;
      +};
      +
      +Sizzle.escape = function( sel ) {
      +	return (sel + "").replace( rcssescape, fcssescape );
      +};
      +
      +Sizzle.error = function( msg ) {
      +	throw new Error( "Syntax error, unrecognized expression: " + msg );
      +};
      +
      +/**
      + * Document sorting and removing duplicates
      + * @param {ArrayLike} results
      + */
      +Sizzle.uniqueSort = function( results ) {
      +	var elem,
      +		duplicates = [],
      +		j = 0,
      +		i = 0;
      +
      +	// Unless we *know* we can detect duplicates, assume their presence
      +	hasDuplicate = !support.detectDuplicates;
      +	sortInput = !support.sortStable && results.slice( 0 );
      +	results.sort( sortOrder );
      +
      +	if ( hasDuplicate ) {
      +		while ( (elem = results[i++]) ) {
      +			if ( elem === results[ i ] ) {
      +				j = duplicates.push( i );
      +			}
      +		}
      +		while ( j-- ) {
      +			results.splice( duplicates[ j ], 1 );
      +		}
      +	}
      +
      +	// Clear input after sorting to release objects
      +	// See https://github.com/jquery/sizzle/pull/225
      +	sortInput = null;
      +
      +	return results;
      +};
      +
      +/**
      + * Utility function for retrieving the text value of an array of DOM nodes
      + * @param {Array|Element} elem
      + */
      +getText = Sizzle.getText = function( elem ) {
      +	var node,
      +		ret = "",
      +		i = 0,
      +		nodeType = elem.nodeType;
      +
      +	if ( !nodeType ) {
      +		// If no nodeType, this is expected to be an array
      +		while ( (node = elem[i++]) ) {
      +			// Do not traverse comment nodes
      +			ret += getText( node );
      +		}
      +	} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
      +		// Use textContent for elements
      +		// innerText usage removed for consistency of new lines (jQuery #11153)
      +		if ( typeof elem.textContent === "string" ) {
      +			return elem.textContent;
      +		} else {
      +			// Traverse its children
      +			for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
      +				ret += getText( elem );
      +			}
      +		}
      +	} else if ( nodeType === 3 || nodeType === 4 ) {
      +		return elem.nodeValue;
      +	}
      +	// Do not include comment or processing instruction nodes
      +
      +	return ret;
      +};
      +
      +Expr = Sizzle.selectors = {
      +
      +	// Can be adjusted by the user
      +	cacheLength: 50,
      +
      +	createPseudo: markFunction,
      +
      +	match: matchExpr,
      +
      +	attrHandle: {},
      +
      +	find: {},
      +
      +	relative: {
      +		">": { dir: "parentNode", first: true },
      +		" ": { dir: "parentNode" },
      +		"+": { dir: "previousSibling", first: true },
      +		"~": { dir: "previousSibling" }
      +	},
      +
      +	preFilter: {
      +		"ATTR": function( match ) {
      +			match[1] = match[1].replace( runescape, funescape );
      +
      +			// Move the given value to match[3] whether quoted or unquoted
      +			match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape );
      +
      +			if ( match[2] === "~=" ) {
      +				match[3] = " " + match[3] + " ";
      +			}
      +
      +			return match.slice( 0, 4 );
      +		},
      +
      +		"CHILD": function( match ) {
      +			/* matches from matchExpr["CHILD"]
      +				1 type (only|nth|...)
      +				2 what (child|of-type)
      +				3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
      +				4 xn-component of xn+y argument ([+-]?\d*n|)
      +				5 sign of xn-component
      +				6 x of xn-component
      +				7 sign of y-component
      +				8 y of y-component
      +			*/
      +			match[1] = match[1].toLowerCase();
      +
      +			if ( match[1].slice( 0, 3 ) === "nth" ) {
      +				// nth-* requires argument
      +				if ( !match[3] ) {
      +					Sizzle.error( match[0] );
      +				}
      +
      +				// numeric x and y parameters for Expr.filter.CHILD
      +				// remember that false/true cast respectively to 0/1
      +				match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
      +				match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );
      +
      +			// other types prohibit arguments
      +			} else if ( match[3] ) {
      +				Sizzle.error( match[0] );
      +			}
      +
      +			return match;
      +		},
      +
      +		"PSEUDO": function( match ) {
      +			var excess,
      +				unquoted = !match[6] && match[2];
      +
      +			if ( matchExpr["CHILD"].test( match[0] ) ) {
      +				return null;
      +			}
      +
      +			// Accept quoted arguments as-is
      +			if ( match[3] ) {
      +				match[2] = match[4] || match[5] || "";
      +
      +			// Strip excess characters from unquoted arguments
      +			} else if ( unquoted && rpseudo.test( unquoted ) &&
      +				// Get excess from tokenize (recursively)
      +				(excess = tokenize( unquoted, true )) &&
      +				// advance to the next closing parenthesis
      +				(excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
      +
      +				// excess is a negative index
      +				match[0] = match[0].slice( 0, excess );
      +				match[2] = unquoted.slice( 0, excess );
      +			}
      +
      +			// Return only captures needed by the pseudo filter method (type and argument)
      +			return match.slice( 0, 3 );
      +		}
      +	},
      +
      +	filter: {
      +
      +		"TAG": function( nodeNameSelector ) {
      +			var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
      +			return nodeNameSelector === "*" ?
      +				function() { return true; } :
      +				function( elem ) {
      +					return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
      +				};
      +		},
      +
      +		"CLASS": function( className ) {
      +			var pattern = classCache[ className + " " ];
      +
      +			return pattern ||
      +				(pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
      +				classCache( className, function( elem ) {
      +					return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" );
      +				});
      +		},
      +
      +		"ATTR": function( name, operator, check ) {
      +			return function( elem ) {
      +				var result = Sizzle.attr( elem, name );
      +
      +				if ( result == null ) {
      +					return operator === "!=";
      +				}
      +				if ( !operator ) {
      +					return true;
      +				}
      +
      +				result += "";
      +
      +				return operator === "=" ? result === check :
      +					operator === "!=" ? result !== check :
      +					operator === "^=" ? check && result.indexOf( check ) === 0 :
      +					operator === "*=" ? check && result.indexOf( check ) > -1 :
      +					operator === "$=" ? check && result.slice( -check.length ) === check :
      +					operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 :
      +					operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
      +					false;
      +			};
      +		},
      +
      +		"CHILD": function( type, what, argument, first, last ) {
      +			var simple = type.slice( 0, 3 ) !== "nth",
      +				forward = type.slice( -4 ) !== "last",
      +				ofType = what === "of-type";
      +
      +			return first === 1 && last === 0 ?
      +
      +				// Shortcut for :nth-*(n)
      +				function( elem ) {
      +					return !!elem.parentNode;
      +				} :
      +
      +				function( elem, context, xml ) {
      +					var cache, uniqueCache, outerCache, node, nodeIndex, start,
      +						dir = simple !== forward ? "nextSibling" : "previousSibling",
      +						parent = elem.parentNode,
      +						name = ofType && elem.nodeName.toLowerCase(),
      +						useCache = !xml && !ofType,
      +						diff = false;
      +
      +					if ( parent ) {
      +
      +						// :(first|last|only)-(child|of-type)
      +						if ( simple ) {
      +							while ( dir ) {
      +								node = elem;
      +								while ( (node = node[ dir ]) ) {
      +									if ( ofType ?
      +										node.nodeName.toLowerCase() === name :
      +										node.nodeType === 1 ) {
      +
      +										return false;
      +									}
      +								}
      +								// Reverse direction for :only-* (if we haven't yet done so)
      +								start = dir = type === "only" && !start && "nextSibling";
      +							}
      +							return true;
      +						}
      +
      +						start = [ forward ? parent.firstChild : parent.lastChild ];
      +
      +						// non-xml :nth-child(...) stores cache data on `parent`
      +						if ( forward && useCache ) {
      +
      +							// Seek `elem` from a previously-cached index
      +
      +							// ...in a gzip-friendly way
      +							node = parent;
      +							outerCache = node[ expando ] || (node[ expando ] = {});
      +
      +							// Support: IE <9 only
      +							// Defend against cloned attroperties (jQuery gh-1709)
      +							uniqueCache = outerCache[ node.uniqueID ] ||
      +								(outerCache[ node.uniqueID ] = {});
      +
      +							cache = uniqueCache[ type ] || [];
      +							nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
      +							diff = nodeIndex && cache[ 2 ];
      +							node = nodeIndex && parent.childNodes[ nodeIndex ];
      +
      +							while ( (node = ++nodeIndex && node && node[ dir ] ||
      +
      +								// Fallback to seeking `elem` from the start
      +								(diff = nodeIndex = 0) || start.pop()) ) {
      +
      +								// When found, cache indexes on `parent` and break
      +								if ( node.nodeType === 1 && ++diff && node === elem ) {
      +									uniqueCache[ type ] = [ dirruns, nodeIndex, diff ];
      +									break;
      +								}
      +							}
      +
      +						} else {
      +							// Use previously-cached element index if available
      +							if ( useCache ) {
      +								// ...in a gzip-friendly way
      +								node = elem;
      +								outerCache = node[ expando ] || (node[ expando ] = {});
      +
      +								// Support: IE <9 only
      +								// Defend against cloned attroperties (jQuery gh-1709)
      +								uniqueCache = outerCache[ node.uniqueID ] ||
      +									(outerCache[ node.uniqueID ] = {});
      +
      +								cache = uniqueCache[ type ] || [];
      +								nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
      +								diff = nodeIndex;
      +							}
      +
      +							// xml :nth-child(...)
      +							// or :nth-last-child(...) or :nth(-last)?-of-type(...)
      +							if ( diff === false ) {
      +								// Use the same loop as above to seek `elem` from the start
      +								while ( (node = ++nodeIndex && node && node[ dir ] ||
      +									(diff = nodeIndex = 0) || start.pop()) ) {
      +
      +									if ( ( ofType ?
      +										node.nodeName.toLowerCase() === name :
      +										node.nodeType === 1 ) &&
      +										++diff ) {
      +
      +										// Cache the index of each encountered element
      +										if ( useCache ) {
      +											outerCache = node[ expando ] || (node[ expando ] = {});
      +
      +											// Support: IE <9 only
      +											// Defend against cloned attroperties (jQuery gh-1709)
      +											uniqueCache = outerCache[ node.uniqueID ] ||
      +												(outerCache[ node.uniqueID ] = {});
      +
      +											uniqueCache[ type ] = [ dirruns, diff ];
      +										}
      +
      +										if ( node === elem ) {
      +											break;
      +										}
      +									}
      +								}
      +							}
      +						}
      +
      +						// Incorporate the offset, then check against cycle size
      +						diff -= last;
      +						return diff === first || ( diff % first === 0 && diff / first >= 0 );
      +					}
      +				};
      +		},
      +
      +		"PSEUDO": function( pseudo, argument ) {
      +			// pseudo-class names are case-insensitive
      +			// http://www.w3.org/TR/selectors/#pseudo-classes
      +			// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
      +			// Remember that setFilters inherits from pseudos
      +			var args,
      +				fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
      +					Sizzle.error( "unsupported pseudo: " + pseudo );
      +
      +			// The user may use createPseudo to indicate that
      +			// arguments are needed to create the filter function
      +			// just as Sizzle does
      +			if ( fn[ expando ] ) {
      +				return fn( argument );
      +			}
      +
      +			// But maintain support for old signatures
      +			if ( fn.length > 1 ) {
      +				args = [ pseudo, pseudo, "", argument ];
      +				return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
      +					markFunction(function( seed, matches ) {
      +						var idx,
      +							matched = fn( seed, argument ),
      +							i = matched.length;
      +						while ( i-- ) {
      +							idx = indexOf( seed, matched[i] );
      +							seed[ idx ] = !( matches[ idx ] = matched[i] );
      +						}
      +					}) :
      +					function( elem ) {
      +						return fn( elem, 0, args );
      +					};
      +			}
      +
      +			return fn;
      +		}
      +	},
      +
      +	pseudos: {
      +		// Potentially complex pseudos
      +		"not": markFunction(function( selector ) {
      +			// Trim the selector passed to compile
      +			// to avoid treating leading and trailing
      +			// spaces as combinators
      +			var input = [],
      +				results = [],
      +				matcher = compile( selector.replace( rtrim, "$1" ) );
      +
      +			return matcher[ expando ] ?
      +				markFunction(function( seed, matches, context, xml ) {
      +					var elem,
      +						unmatched = matcher( seed, null, xml, [] ),
      +						i = seed.length;
      +
      +					// Match elements unmatched by `matcher`
      +					while ( i-- ) {
      +						if ( (elem = unmatched[i]) ) {
      +							seed[i] = !(matches[i] = elem);
      +						}
      +					}
      +				}) :
      +				function( elem, context, xml ) {
      +					input[0] = elem;
      +					matcher( input, null, xml, results );
      +					// Don't keep the element (issue #299)
      +					input[0] = null;
      +					return !results.pop();
      +				};
      +		}),
      +
      +		"has": markFunction(function( selector ) {
      +			return function( elem ) {
      +				return Sizzle( selector, elem ).length > 0;
      +			};
      +		}),
      +
      +		"contains": markFunction(function( text ) {
      +			text = text.replace( runescape, funescape );
      +			return function( elem ) {
      +				return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
      +			};
      +		}),
      +
      +		// "Whether an element is represented by a :lang() selector
      +		// is based solely on the element's language value
      +		// being equal to the identifier C,
      +		// or beginning with the identifier C immediately followed by "-".
      +		// The matching of C against the element's language value is performed case-insensitively.
      +		// The identifier C does not have to be a valid language name."
      +		// http://www.w3.org/TR/selectors/#lang-pseudo
      +		"lang": markFunction( function( lang ) {
      +			// lang value must be a valid identifier
      +			if ( !ridentifier.test(lang || "") ) {
      +				Sizzle.error( "unsupported lang: " + lang );
      +			}
      +			lang = lang.replace( runescape, funescape ).toLowerCase();
      +			return function( elem ) {
      +				var elemLang;
      +				do {
      +					if ( (elemLang = documentIsHTML ?
      +						elem.lang :
      +						elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) {
      +
      +						elemLang = elemLang.toLowerCase();
      +						return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
      +					}
      +				} while ( (elem = elem.parentNode) && elem.nodeType === 1 );
      +				return false;
      +			};
      +		}),
      +
      +		// Miscellaneous
      +		"target": function( elem ) {
      +			var hash = window.location && window.location.hash;
      +			return hash && hash.slice( 1 ) === elem.id;
      +		},
      +
      +		"root": function( elem ) {
      +			return elem === docElem;
      +		},
      +
      +		"focus": function( elem ) {
      +			return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
      +		},
      +
      +		// Boolean properties
      +		"enabled": createDisabledPseudo( false ),
      +		"disabled": createDisabledPseudo( true ),
      +
      +		"checked": function( elem ) {
      +			// In CSS3, :checked should return both checked and selected elements
      +			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
      +			var nodeName = elem.nodeName.toLowerCase();
      +			return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
      +		},
      +
      +		"selected": function( elem ) {
      +			// Accessing this property makes selected-by-default
      +			// options in Safari work properly
      +			if ( elem.parentNode ) {
      +				elem.parentNode.selectedIndex;
      +			}
      +
      +			return elem.selected === true;
      +		},
      +
      +		// Contents
      +		"empty": function( elem ) {
      +			// http://www.w3.org/TR/selectors/#empty-pseudo
      +			// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
      +			//   but not by others (comment: 8; processing instruction: 7; etc.)
      +			// nodeType < 6 works because attributes (2) do not appear as children
      +			for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
      +				if ( elem.nodeType < 6 ) {
      +					return false;
      +				}
      +			}
      +			return true;
      +		},
      +
      +		"parent": function( elem ) {
      +			return !Expr.pseudos["empty"]( elem );
      +		},
      +
      +		// Element/input types
      +		"header": function( elem ) {
      +			return rheader.test( elem.nodeName );
      +		},
      +
      +		"input": function( elem ) {
      +			return rinputs.test( elem.nodeName );
      +		},
      +
      +		"button": function( elem ) {
      +			var name = elem.nodeName.toLowerCase();
      +			return name === "input" && elem.type === "button" || name === "button";
      +		},
      +
      +		"text": function( elem ) {
      +			var attr;
      +			return elem.nodeName.toLowerCase() === "input" &&
      +				elem.type === "text" &&
      +
      +				// Support: IE<8
      +				// New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
      +				( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" );
      +		},
      +
      +		// Position-in-collection
      +		"first": createPositionalPseudo(function() {
      +			return [ 0 ];
      +		}),
      +
      +		"last": createPositionalPseudo(function( matchIndexes, length ) {
      +			return [ length - 1 ];
      +		}),
      +
      +		"eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
      +			return [ argument < 0 ? argument + length : argument ];
      +		}),
      +
      +		"even": createPositionalPseudo(function( matchIndexes, length ) {
      +			var i = 0;
      +			for ( ; i < length; i += 2 ) {
      +				matchIndexes.push( i );
      +			}
      +			return matchIndexes;
      +		}),
      +
      +		"odd": createPositionalPseudo(function( matchIndexes, length ) {
      +			var i = 1;
      +			for ( ; i < length; i += 2 ) {
      +				matchIndexes.push( i );
      +			}
      +			return matchIndexes;
      +		}),
      +
      +		"lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
      +			var i = argument < 0 ? argument + length : argument;
      +			for ( ; --i >= 0; ) {
      +				matchIndexes.push( i );
      +			}
      +			return matchIndexes;
      +		}),
      +
      +		"gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
      +			var i = argument < 0 ? argument + length : argument;
      +			for ( ; ++i < length; ) {
      +				matchIndexes.push( i );
      +			}
      +			return matchIndexes;
      +		})
      +	}
      +};
      +
      +Expr.pseudos["nth"] = Expr.pseudos["eq"];
      +
      +// Add button/input type pseudos
      +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
      +	Expr.pseudos[ i ] = createInputPseudo( i );
      +}
      +for ( i in { submit: true, reset: true } ) {
      +	Expr.pseudos[ i ] = createButtonPseudo( i );
      +}
      +
      +// Easy API for creating new setFilters
      +function setFilters() {}
      +setFilters.prototype = Expr.filters = Expr.pseudos;
      +Expr.setFilters = new setFilters();
      +
      +tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
      +	var matched, match, tokens, type,
      +		soFar, groups, preFilters,
      +		cached = tokenCache[ selector + " " ];
      +
      +	if ( cached ) {
      +		return parseOnly ? 0 : cached.slice( 0 );
      +	}
      +
      +	soFar = selector;
      +	groups = [];
      +	preFilters = Expr.preFilter;
      +
      +	while ( soFar ) {
      +
      +		// Comma and first run
      +		if ( !matched || (match = rcomma.exec( soFar )) ) {
      +			if ( match ) {
      +				// Don't consume trailing commas as valid
      +				soFar = soFar.slice( match[0].length ) || soFar;
      +			}
      +			groups.push( (tokens = []) );
      +		}
      +
      +		matched = false;
      +
      +		// Combinators
      +		if ( (match = rcombinators.exec( soFar )) ) {
      +			matched = match.shift();
      +			tokens.push({
      +				value: matched,
      +				// Cast descendant combinators to space
      +				type: match[0].replace( rtrim, " " )
      +			});
      +			soFar = soFar.slice( matched.length );
      +		}
      +
      +		// Filters
      +		for ( type in Expr.filter ) {
      +			if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
      +				(match = preFilters[ type ]( match ))) ) {
      +				matched = match.shift();
      +				tokens.push({
      +					value: matched,
      +					type: type,
      +					matches: match
      +				});
      +				soFar = soFar.slice( matched.length );
      +			}
      +		}
      +
      +		if ( !matched ) {
      +			break;
      +		}
      +	}
      +
      +	// Return the length of the invalid excess
      +	// if we're just parsing
      +	// Otherwise, throw an error or return tokens
      +	return parseOnly ?
      +		soFar.length :
      +		soFar ?
      +			Sizzle.error( selector ) :
      +			// Cache the tokens
      +			tokenCache( selector, groups ).slice( 0 );
      +};
      +
      +function toSelector( tokens ) {
      +	var i = 0,
      +		len = tokens.length,
      +		selector = "";
      +	for ( ; i < len; i++ ) {
      +		selector += tokens[i].value;
      +	}
      +	return selector;
      +}
      +
      +function addCombinator( matcher, combinator, base ) {
      +	var dir = combinator.dir,
      +		skip = combinator.next,
      +		key = skip || dir,
      +		checkNonElements = base && key === "parentNode",
      +		doneName = done++;
      +
      +	return combinator.first ?
      +		// Check against closest ancestor/preceding element
      +		function( elem, context, xml ) {
      +			while ( (elem = elem[ dir ]) ) {
      +				if ( elem.nodeType === 1 || checkNonElements ) {
      +					return matcher( elem, context, xml );
      +				}
      +			}
      +			return false;
      +		} :
      +
      +		// Check against all ancestor/preceding elements
      +		function( elem, context, xml ) {
      +			var oldCache, uniqueCache, outerCache,
      +				newCache = [ dirruns, doneName ];
      +
      +			// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching
      +			if ( xml ) {
      +				while ( (elem = elem[ dir ]) ) {
      +					if ( elem.nodeType === 1 || checkNonElements ) {
      +						if ( matcher( elem, context, xml ) ) {
      +							return true;
      +						}
      +					}
      +				}
      +			} else {
      +				while ( (elem = elem[ dir ]) ) {
      +					if ( elem.nodeType === 1 || checkNonElements ) {
      +						outerCache = elem[ expando ] || (elem[ expando ] = {});
      +
      +						// Support: IE <9 only
      +						// Defend against cloned attroperties (jQuery gh-1709)
      +						uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {});
      +
      +						if ( skip && skip === elem.nodeName.toLowerCase() ) {
      +							elem = elem[ dir ] || elem;
      +						} else if ( (oldCache = uniqueCache[ key ]) &&
      +							oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
      +
      +							// Assign to newCache so results back-propagate to previous elements
      +							return (newCache[ 2 ] = oldCache[ 2 ]);
      +						} else {
      +							// Reuse newcache so results back-propagate to previous elements
      +							uniqueCache[ key ] = newCache;
      +
      +							// A match means we're done; a fail means we have to keep checking
      +							if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {
      +								return true;
      +							}
      +						}
      +					}
      +				}
      +			}
      +			return false;
      +		};
      +}
      +
      +function elementMatcher( matchers ) {
      +	return matchers.length > 1 ?
      +		function( elem, context, xml ) {
      +			var i = matchers.length;
      +			while ( i-- ) {
      +				if ( !matchers[i]( elem, context, xml ) ) {
      +					return false;
      +				}
      +			}
      +			return true;
      +		} :
      +		matchers[0];
      +}
      +
      +function multipleContexts( selector, contexts, results ) {
      +	var i = 0,
      +		len = contexts.length;
      +	for ( ; i < len; i++ ) {
      +		Sizzle( selector, contexts[i], results );
      +	}
      +	return results;
      +}
      +
      +function condense( unmatched, map, filter, context, xml ) {
      +	var elem,
      +		newUnmatched = [],
      +		i = 0,
      +		len = unmatched.length,
      +		mapped = map != null;
      +
      +	for ( ; i < len; i++ ) {
      +		if ( (elem = unmatched[i]) ) {
      +			if ( !filter || filter( elem, context, xml ) ) {
      +				newUnmatched.push( elem );
      +				if ( mapped ) {
      +					map.push( i );
      +				}
      +			}
      +		}
      +	}
      +
      +	return newUnmatched;
      +}
      +
      +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
      +	if ( postFilter && !postFilter[ expando ] ) {
      +		postFilter = setMatcher( postFilter );
      +	}
      +	if ( postFinder && !postFinder[ expando ] ) {
      +		postFinder = setMatcher( postFinder, postSelector );
      +	}
      +	return markFunction(function( seed, results, context, xml ) {
      +		var temp, i, elem,
      +			preMap = [],
      +			postMap = [],
      +			preexisting = results.length,
      +
      +			// Get initial elements from seed or context
      +			elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
      +
      +			// Prefilter to get matcher input, preserving a map for seed-results synchronization
      +			matcherIn = preFilter && ( seed || !selector ) ?
      +				condense( elems, preMap, preFilter, context, xml ) :
      +				elems,
      +
      +			matcherOut = matcher ?
      +				// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
      +				postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
      +
      +					// ...intermediate processing is necessary
      +					[] :
      +
      +					// ...otherwise use results directly
      +					results :
      +				matcherIn;
      +
      +		// Find primary matches
      +		if ( matcher ) {
      +			matcher( matcherIn, matcherOut, context, xml );
      +		}
      +
      +		// Apply postFilter
      +		if ( postFilter ) {
      +			temp = condense( matcherOut, postMap );
      +			postFilter( temp, [], context, xml );
      +
      +			// Un-match failing elements by moving them back to matcherIn
      +			i = temp.length;
      +			while ( i-- ) {
      +				if ( (elem = temp[i]) ) {
      +					matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
      +				}
      +			}
      +		}
      +
      +		if ( seed ) {
      +			if ( postFinder || preFilter ) {
      +				if ( postFinder ) {
      +					// Get the final matcherOut by condensing this intermediate into postFinder contexts
      +					temp = [];
      +					i = matcherOut.length;
      +					while ( i-- ) {
      +						if ( (elem = matcherOut[i]) ) {
      +							// Restore matcherIn since elem is not yet a final match
      +							temp.push( (matcherIn[i] = elem) );
      +						}
      +					}
      +					postFinder( null, (matcherOut = []), temp, xml );
      +				}
      +
      +				// Move matched elements from seed to results to keep them synchronized
      +				i = matcherOut.length;
      +				while ( i-- ) {
      +					if ( (elem = matcherOut[i]) &&
      +						(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {
      +
      +						seed[temp] = !(results[temp] = elem);
      +					}
      +				}
      +			}
      +
      +		// Add elements to results, through postFinder if defined
      +		} else {
      +			matcherOut = condense(
      +				matcherOut === results ?
      +					matcherOut.splice( preexisting, matcherOut.length ) :
      +					matcherOut
      +			);
      +			if ( postFinder ) {
      +				postFinder( null, results, matcherOut, xml );
      +			} else {
      +				push.apply( results, matcherOut );
      +			}
      +		}
      +	});
      +}
      +
      +function matcherFromTokens( tokens ) {
      +	var checkContext, matcher, j,
      +		len = tokens.length,
      +		leadingRelative = Expr.relative[ tokens[0].type ],
      +		implicitRelative = leadingRelative || Expr.relative[" "],
      +		i = leadingRelative ? 1 : 0,
      +
      +		// The foundational matcher ensures that elements are reachable from top-level context(s)
      +		matchContext = addCombinator( function( elem ) {
      +			return elem === checkContext;
      +		}, implicitRelative, true ),
      +		matchAnyContext = addCombinator( function( elem ) {
      +			return indexOf( checkContext, elem ) > -1;
      +		}, implicitRelative, true ),
      +		matchers = [ function( elem, context, xml ) {
      +			var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
      +				(checkContext = context).nodeType ?
      +					matchContext( elem, context, xml ) :
      +					matchAnyContext( elem, context, xml ) );
      +			// Avoid hanging onto element (issue #299)
      +			checkContext = null;
      +			return ret;
      +		} ];
      +
      +	for ( ; i < len; i++ ) {
      +		if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
      +			matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
      +		} else {
      +			matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
      +
      +			// Return special upon seeing a positional matcher
      +			if ( matcher[ expando ] ) {
      +				// Find the next relative operator (if any) for proper handling
      +				j = ++i;
      +				for ( ; j < len; j++ ) {
      +					if ( Expr.relative[ tokens[j].type ] ) {
      +						break;
      +					}
      +				}
      +				return setMatcher(
      +					i > 1 && elementMatcher( matchers ),
      +					i > 1 && toSelector(
      +						// If the preceding token was a descendant combinator, insert an implicit any-element `*`
      +						tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
      +					).replace( rtrim, "$1" ),
      +					matcher,
      +					i < j && matcherFromTokens( tokens.slice( i, j ) ),
      +					j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
      +					j < len && toSelector( tokens )
      +				);
      +			}
      +			matchers.push( matcher );
      +		}
      +	}
      +
      +	return elementMatcher( matchers );
      +}
      +
      +function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
      +	var bySet = setMatchers.length > 0,
      +		byElement = elementMatchers.length > 0,
      +		superMatcher = function( seed, context, xml, results, outermost ) {
      +			var elem, j, matcher,
      +				matchedCount = 0,
      +				i = "0",
      +				unmatched = seed && [],
      +				setMatched = [],
      +				contextBackup = outermostContext,
      +				// We must always have either seed elements or outermost context
      +				elems = seed || byElement && Expr.find["TAG"]( "*", outermost ),
      +				// Use integer dirruns iff this is the outermost matcher
      +				dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
      +				len = elems.length;
      +
      +			if ( outermost ) {
      +				outermostContext = context === document || context || outermost;
      +			}
      +
      +			// Add elements passing elementMatchers directly to results
      +			// Support: IE<9, Safari
      +			// Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id
      +			for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
      +				if ( byElement && elem ) {
      +					j = 0;
      +					if ( !context && elem.ownerDocument !== document ) {
      +						setDocument( elem );
      +						xml = !documentIsHTML;
      +					}
      +					while ( (matcher = elementMatchers[j++]) ) {
      +						if ( matcher( elem, context || document, xml) ) {
      +							results.push( elem );
      +							break;
      +						}
      +					}
      +					if ( outermost ) {
      +						dirruns = dirrunsUnique;
      +					}
      +				}
      +
      +				// Track unmatched elements for set filters
      +				if ( bySet ) {
      +					// They will have gone through all possible matchers
      +					if ( (elem = !matcher && elem) ) {
      +						matchedCount--;
      +					}
      +
      +					// Lengthen the array for every element, matched or not
      +					if ( seed ) {
      +						unmatched.push( elem );
      +					}
      +				}
      +			}
      +
      +			// `i` is now the count of elements visited above, and adding it to `matchedCount`
      +			// makes the latter nonnegative.
      +			matchedCount += i;
      +
      +			// Apply set filters to unmatched elements
      +			// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`
      +			// equals `i`), unless we didn't visit _any_ elements in the above loop because we have
      +			// no element matchers and no seed.
      +			// Incrementing an initially-string "0" `i` allows `i` to remain a string only in that
      +			// case, which will result in a "00" `matchedCount` that differs from `i` but is also
      +			// numerically zero.
      +			if ( bySet && i !== matchedCount ) {
      +				j = 0;
      +				while ( (matcher = setMatchers[j++]) ) {
      +					matcher( unmatched, setMatched, context, xml );
      +				}
      +
      +				if ( seed ) {
      +					// Reintegrate element matches to eliminate the need for sorting
      +					if ( matchedCount > 0 ) {
      +						while ( i-- ) {
      +							if ( !(unmatched[i] || setMatched[i]) ) {
      +								setMatched[i] = pop.call( results );
      +							}
      +						}
      +					}
      +
      +					// Discard index placeholder values to get only actual matches
      +					setMatched = condense( setMatched );
      +				}
      +
      +				// Add matches to results
      +				push.apply( results, setMatched );
      +
      +				// Seedless set matches succeeding multiple successful matchers stipulate sorting
      +				if ( outermost && !seed && setMatched.length > 0 &&
      +					( matchedCount + setMatchers.length ) > 1 ) {
      +
      +					Sizzle.uniqueSort( results );
      +				}
      +			}
      +
      +			// Override manipulation of globals by nested matchers
      +			if ( outermost ) {
      +				dirruns = dirrunsUnique;
      +				outermostContext = contextBackup;
      +			}
      +
      +			return unmatched;
      +		};
      +
      +	return bySet ?
      +		markFunction( superMatcher ) :
      +		superMatcher;
      +}
      +
      +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {
      +	var i,
      +		setMatchers = [],
      +		elementMatchers = [],
      +		cached = compilerCache[ selector + " " ];
      +
      +	if ( !cached ) {
      +		// Generate a function of recursive functions that can be used to check each element
      +		if ( !match ) {
      +			match = tokenize( selector );
      +		}
      +		i = match.length;
      +		while ( i-- ) {
      +			cached = matcherFromTokens( match[i] );
      +			if ( cached[ expando ] ) {
      +				setMatchers.push( cached );
      +			} else {
      +				elementMatchers.push( cached );
      +			}
      +		}
      +
      +		// Cache the compiled function
      +		cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
      +
      +		// Save selector and tokenization
      +		cached.selector = selector;
      +	}
      +	return cached;
      +};
      +
      +/**
      + * A low-level selection function that works with Sizzle's compiled
      + *  selector functions
      + * @param {String|Function} selector A selector or a pre-compiled
      + *  selector function built with Sizzle.compile
      + * @param {Element} context
      + * @param {Array} [results]
      + * @param {Array} [seed] A set of elements to match against
      + */
      +select = Sizzle.select = function( selector, context, results, seed ) {
      +	var i, tokens, token, type, find,
      +		compiled = typeof selector === "function" && selector,
      +		match = !seed && tokenize( (selector = compiled.selector || selector) );
      +
      +	results = results || [];
      +
      +	// Try to minimize operations if there is only one selector in the list and no seed
      +	// (the latter of which guarantees us context)
      +	if ( match.length === 1 ) {
      +
      +		// Reduce context if the leading compound selector is an ID
      +		tokens = match[0] = match[0].slice( 0 );
      +		if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
      +				context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) {
      +
      +			context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
      +			if ( !context ) {
      +				return results;
      +
      +			// Precompiled matchers will still verify ancestry, so step up a level
      +			} else if ( compiled ) {
      +				context = context.parentNode;
      +			}
      +
      +			selector = selector.slice( tokens.shift().value.length );
      +		}
      +
      +		// Fetch a seed set for right-to-left matching
      +		i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
      +		while ( i-- ) {
      +			token = tokens[i];
      +
      +			// Abort if we hit a combinator
      +			if ( Expr.relative[ (type = token.type) ] ) {
      +				break;
      +			}
      +			if ( (find = Expr.find[ type ]) ) {
      +				// Search, expanding context for leading sibling combinators
      +				if ( (seed = find(
      +					token.matches[0].replace( runescape, funescape ),
      +					rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
      +				)) ) {
      +
      +					// If seed is empty or no tokens remain, we can return early
      +					tokens.splice( i, 1 );
      +					selector = seed.length && toSelector( tokens );
      +					if ( !selector ) {
      +						push.apply( results, seed );
      +						return results;
      +					}
      +
      +					break;
      +				}
      +			}
      +		}
      +	}
      +
      +	// Compile and execute a filtering function if one is not provided
      +	// Provide `match` to avoid retokenization if we modified the selector above
      +	( compiled || compile( selector, match ) )(
      +		seed,
      +		context,
      +		!documentIsHTML,
      +		results,
      +		!context || rsibling.test( selector ) && testContext( context.parentNode ) || context
      +	);
      +	return results;
      +};
      +
      +// One-time assignments
      +
      +// Sort stability
      +support.sortStable = expando.split("").sort( sortOrder ).join("") === expando;
      +
      +// Support: Chrome 14-35+
      +// Always assume duplicates if they aren't passed to the comparison function
      +support.detectDuplicates = !!hasDuplicate;
      +
      +// Initialize against the default document
      +setDocument();
      +
      +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
      +// Detached nodes confoundingly follow *each other*
      +support.sortDetached = assert(function( el ) {
      +	// Should return 1, but returns 4 (following)
      +	return el.compareDocumentPosition( document.createElement("fieldset") ) & 1;
      +});
      +
      +// Support: IE<8
      +// Prevent attribute/property "interpolation"
      +// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
      +if ( !assert(function( el ) {
      +	el.innerHTML = "<a href='#'></a>";
      +	return el.firstChild.getAttribute("href") === "#" ;
      +}) ) {
      +	addHandle( "type|href|height|width", function( elem, name, isXML ) {
      +		if ( !isXML ) {
      +			return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
      +		}
      +	});
      +}
      +
      +// Support: IE<9
      +// Use defaultValue in place of getAttribute("value")
      +if ( !support.attributes || !assert(function( el ) {
      +	el.innerHTML = "<input/>";
      +	el.firstChild.setAttribute( "value", "" );
      +	return el.firstChild.getAttribute( "value" ) === "";
      +}) ) {
      +	addHandle( "value", function( elem, name, isXML ) {
      +		if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
      +			return elem.defaultValue;
      +		}
      +	});
      +}
      +
      +// Support: IE<9
      +// Use getAttributeNode to fetch booleans when getAttribute lies
      +if ( !assert(function( el ) {
      +	return el.getAttribute("disabled") == null;
      +}) ) {
      +	addHandle( booleans, function( elem, name, isXML ) {
      +		var val;
      +		if ( !isXML ) {
      +			return elem[ name ] === true ? name.toLowerCase() :
      +					(val = elem.getAttributeNode( name )) && val.specified ?
      +					val.value :
      +				null;
      +		}
      +	});
      +}
      +
      +return Sizzle;
      +
      +})( window );
      +
      +
      +
      +jQuery.find = Sizzle;
      +jQuery.expr = Sizzle.selectors;
      +
      +// Deprecated
      +jQuery.expr[ ":" ] = jQuery.expr.pseudos;
      +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;
      +jQuery.text = Sizzle.getText;
      +jQuery.isXMLDoc = Sizzle.isXML;
      +jQuery.contains = Sizzle.contains;
      +jQuery.escapeSelector = Sizzle.escape;
      +
      +
      +
      +
      +var dir = function( elem, dir, until ) {
      +	var matched = [],
      +		truncate = until !== undefined;
      +
      +	while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {
      +		if ( elem.nodeType === 1 ) {
      +			if ( truncate && jQuery( elem ).is( until ) ) {
      +				break;
      +			}
      +			matched.push( elem );
      +		}
      +	}
      +	return matched;
      +};
      +
      +
      +var siblings = function( n, elem ) {
      +	var matched = [];
      +
      +	for ( ; n; n = n.nextSibling ) {
      +		if ( n.nodeType === 1 && n !== elem ) {
      +			matched.push( n );
      +		}
      +	}
      +
      +	return matched;
      +};
      +
      +
      +var rneedsContext = jQuery.expr.match.needsContext;
      +
      +
      +
      +function nodeName( elem, name ) {
      +
      +  return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
      +
      +};
      +var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i );
      +
      +
      +
      +// Implement the identical functionality for filter and not
      +function winnow( elements, qualifier, not ) {
      +	if ( isFunction( qualifier ) ) {
      +		return jQuery.grep( elements, function( elem, i ) {
      +			return !!qualifier.call( elem, i, elem ) !== not;
      +		} );
      +	}
      +
      +	// Single element
      +	if ( qualifier.nodeType ) {
      +		return jQuery.grep( elements, function( elem ) {
      +			return ( elem === qualifier ) !== not;
      +		} );
      +	}
      +
      +	// Arraylike of elements (jQuery, arguments, Array)
      +	if ( typeof qualifier !== "string" ) {
      +		return jQuery.grep( elements, function( elem ) {
      +			return ( indexOf.call( qualifier, elem ) > -1 ) !== not;
      +		} );
      +	}
      +
      +	// Filtered directly for both simple and complex selectors
      +	return jQuery.filter( qualifier, elements, not );
      +}
      +
      +jQuery.filter = function( expr, elems, not ) {
      +	var elem = elems[ 0 ];
      +
      +	if ( not ) {
      +		expr = ":not(" + expr + ")";
      +	}
      +
      +	if ( elems.length === 1 && elem.nodeType === 1 ) {
      +		return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];
      +	}
      +
      +	return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
      +		return elem.nodeType === 1;
      +	} ) );
      +};
      +
      +jQuery.fn.extend( {
      +	find: function( selector ) {
      +		var i, ret,
      +			len = this.length,
      +			self = this;
      +
      +		if ( typeof selector !== "string" ) {
      +			return this.pushStack( jQuery( selector ).filter( function() {
      +				for ( i = 0; i < len; i++ ) {
      +					if ( jQuery.contains( self[ i ], this ) ) {
      +						return true;
      +					}
      +				}
      +			} ) );
      +		}
      +
      +		ret = this.pushStack( [] );
      +
      +		for ( i = 0; i < len; i++ ) {
      +			jQuery.find( selector, self[ i ], ret );
      +		}
      +
      +		return len > 1 ? jQuery.uniqueSort( ret ) : ret;
      +	},
      +	filter: function( selector ) {
      +		return this.pushStack( winnow( this, selector || [], false ) );
      +	},
      +	not: function( selector ) {
      +		return this.pushStack( winnow( this, selector || [], true ) );
      +	},
      +	is: function( selector ) {
      +		return !!winnow(
      +			this,
      +
      +			// If this is a positional/relative selector, check membership in the returned set
      +			// so $("p:first").is("p:last") won't return true for a doc with two "p".
      +			typeof selector === "string" && rneedsContext.test( selector ) ?
      +				jQuery( selector ) :
      +				selector || [],
      +			false
      +		).length;
      +	}
      +} );
      +
      +
      +// Initialize a jQuery object
      +
      +
      +// A central reference to the root jQuery(document)
      +var rootjQuery,
      +
      +	// A simple way to check for HTML strings
      +	// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
      +	// Strict HTML recognition (#11290: must start with <)
      +	// Shortcut simple #id case for speed
      +	rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,
      +
      +	init = jQuery.fn.init = function( selector, context, root ) {
      +		var match, elem;
      +
      +		// HANDLE: $(""), $(null), $(undefined), $(false)
      +		if ( !selector ) {
      +			return this;
      +		}
      +
      +		// Method init() accepts an alternate rootjQuery
      +		// so migrate can support jQuery.sub (gh-2101)
      +		root = root || rootjQuery;
      +
      +		// Handle HTML strings
      +		if ( typeof selector === "string" ) {
      +			if ( selector[ 0 ] === "<" &&
      +				selector[ selector.length - 1 ] === ">" &&
      +				selector.length >= 3 ) {
      +
      +				// Assume that strings that start and end with <> are HTML and skip the regex check
      +				match = [ null, selector, null ];
      +
      +			} else {
      +				match = rquickExpr.exec( selector );
      +			}
      +
      +			// Match html or make sure no context is specified for #id
      +			if ( match && ( match[ 1 ] || !context ) ) {
      +
      +				// HANDLE: $(html) -> $(array)
      +				if ( match[ 1 ] ) {
      +					context = context instanceof jQuery ? context[ 0 ] : context;
      +
      +					// Option to run scripts is true for back-compat
      +					// Intentionally let the error be thrown if parseHTML is not present
      +					jQuery.merge( this, jQuery.parseHTML(
      +						match[ 1 ],
      +						context && context.nodeType ? context.ownerDocument || context : document,
      +						true
      +					) );
      +
      +					// HANDLE: $(html, props)
      +					if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {
      +						for ( match in context ) {
      +
      +							// Properties of context are called as methods if possible
      +							if ( isFunction( this[ match ] ) ) {
      +								this[ match ]( context[ match ] );
      +
      +							// ...and otherwise set as attributes
      +							} else {
      +								this.attr( match, context[ match ] );
      +							}
      +						}
      +					}
      +
      +					return this;
      +
      +				// HANDLE: $(#id)
      +				} else {
      +					elem = document.getElementById( match[ 2 ] );
      +
      +					if ( elem ) {
      +
      +						// Inject the element directly into the jQuery object
      +						this[ 0 ] = elem;
      +						this.length = 1;
      +					}
      +					return this;
      +				}
      +
      +			// HANDLE: $(expr, $(...))
      +			} else if ( !context || context.jquery ) {
      +				return ( context || root ).find( selector );
      +
      +			// HANDLE: $(expr, context)
      +			// (which is just equivalent to: $(context).find(expr)
      +			} else {
      +				return this.constructor( context ).find( selector );
      +			}
      +
      +		// HANDLE: $(DOMElement)
      +		} else if ( selector.nodeType ) {
      +			this[ 0 ] = selector;
      +			this.length = 1;
      +			return this;
      +
      +		// HANDLE: $(function)
      +		// Shortcut for document ready
      +		} else if ( isFunction( selector ) ) {
      +			return root.ready !== undefined ?
      +				root.ready( selector ) :
      +
      +				// Execute immediately if ready is not present
      +				selector( jQuery );
      +		}
      +
      +		return jQuery.makeArray( selector, this );
      +	};
      +
      +// Give the init function the jQuery prototype for later instantiation
      +init.prototype = jQuery.fn;
      +
      +// Initialize central reference
      +rootjQuery = jQuery( document );
      +
      +
      +var rparentsprev = /^(?:parents|prev(?:Until|All))/,
      +
      +	// Methods guaranteed to produce a unique set when starting from a unique set
      +	guaranteedUnique = {
      +		children: true,
      +		contents: true,
      +		next: true,
      +		prev: true
      +	};
      +
      +jQuery.fn.extend( {
      +	has: function( target ) {
      +		var targets = jQuery( target, this ),
      +			l = targets.length;
      +
      +		return this.filter( function() {
      +			var i = 0;
      +			for ( ; i < l; i++ ) {
      +				if ( jQuery.contains( this, targets[ i ] ) ) {
      +					return true;
      +				}
      +			}
      +		} );
      +	},
      +
      +	closest: function( selectors, context ) {
      +		var cur,
      +			i = 0,
      +			l = this.length,
      +			matched = [],
      +			targets = typeof selectors !== "string" && jQuery( selectors );
      +
      +		// Positional selectors never match, since there's no _selection_ context
      +		if ( !rneedsContext.test( selectors ) ) {
      +			for ( ; i < l; i++ ) {
      +				for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {
      +
      +					// Always skip document fragments
      +					if ( cur.nodeType < 11 && ( targets ?
      +						targets.index( cur ) > -1 :
      +
      +						// Don't pass non-elements to Sizzle
      +						cur.nodeType === 1 &&
      +							jQuery.find.matchesSelector( cur, selectors ) ) ) {
      +
      +						matched.push( cur );
      +						break;
      +					}
      +				}
      +			}
      +		}
      +
      +		return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );
      +	},
      +
      +	// Determine the position of an element within the set
      +	index: function( elem ) {
      +
      +		// No argument, return index in parent
      +		if ( !elem ) {
      +			return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
      +		}
      +
      +		// Index in selector
      +		if ( typeof elem === "string" ) {
      +			return indexOf.call( jQuery( elem ), this[ 0 ] );
      +		}
      +
      +		// Locate the position of the desired element
      +		return indexOf.call( this,
      +
      +			// If it receives a jQuery object, the first element is used
      +			elem.jquery ? elem[ 0 ] : elem
      +		);
      +	},
      +
      +	add: function( selector, context ) {
      +		return this.pushStack(
      +			jQuery.uniqueSort(
      +				jQuery.merge( this.get(), jQuery( selector, context ) )
      +			)
      +		);
      +	},
      +
      +	addBack: function( selector ) {
      +		return this.add( selector == null ?
      +			this.prevObject : this.prevObject.filter( selector )
      +		);
      +	}
      +} );
      +
      +function sibling( cur, dir ) {
      +	while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}
      +	return cur;
      +}
      +
      +jQuery.each( {
      +	parent: function( elem ) {
      +		var parent = elem.parentNode;
      +		return parent && parent.nodeType !== 11 ? parent : null;
      +	},
      +	parents: function( elem ) {
      +		return dir( elem, "parentNode" );
      +	},
      +	parentsUntil: function( elem, i, until ) {
      +		return dir( elem, "parentNode", until );
      +	},
      +	next: function( elem ) {
      +		return sibling( elem, "nextSibling" );
      +	},
      +	prev: function( elem ) {
      +		return sibling( elem, "previousSibling" );
      +	},
      +	nextAll: function( elem ) {
      +		return dir( elem, "nextSibling" );
      +	},
      +	prevAll: function( elem ) {
      +		return dir( elem, "previousSibling" );
      +	},
      +	nextUntil: function( elem, i, until ) {
      +		return dir( elem, "nextSibling", until );
      +	},
      +	prevUntil: function( elem, i, until ) {
      +		return dir( elem, "previousSibling", until );
      +	},
      +	siblings: function( elem ) {
      +		return siblings( ( elem.parentNode || {} ).firstChild, elem );
      +	},
      +	children: function( elem ) {
      +		return siblings( elem.firstChild );
      +	},
      +	contents: function( elem ) {
      +        if ( nodeName( elem, "iframe" ) ) {
      +            return elem.contentDocument;
      +        }
      +
      +        // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only
      +        // Treat the template element as a regular one in browsers that
      +        // don't support it.
      +        if ( nodeName( elem, "template" ) ) {
      +            elem = elem.content || elem;
      +        }
      +
      +        return jQuery.merge( [], elem.childNodes );
      +	}
      +}, function( name, fn ) {
      +	jQuery.fn[ name ] = function( until, selector ) {
      +		var matched = jQuery.map( this, fn, until );
      +
      +		if ( name.slice( -5 ) !== "Until" ) {
      +			selector = until;
      +		}
      +
      +		if ( selector && typeof selector === "string" ) {
      +			matched = jQuery.filter( selector, matched );
      +		}
      +
      +		if ( this.length > 1 ) {
      +
      +			// Remove duplicates
      +			if ( !guaranteedUnique[ name ] ) {
      +				jQuery.uniqueSort( matched );
      +			}
      +
      +			// Reverse order for parents* and prev-derivatives
      +			if ( rparentsprev.test( name ) ) {
      +				matched.reverse();
      +			}
      +		}
      +
      +		return this.pushStack( matched );
      +	};
      +} );
      +var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g );
      +
      +
      +
      +// Convert String-formatted options into Object-formatted ones
      +function createOptions( options ) {
      +	var object = {};
      +	jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {
      +		object[ flag ] = true;
      +	} );
      +	return object;
      +}
      +
      +/*
      + * Create a callback list using the following parameters:
      + *
      + *	options: an optional list of space-separated options that will change how
      + *			the callback list behaves or a more traditional option object
      + *
      + * By default a callback list will act like an event callback list and can be
      + * "fired" multiple times.
      + *
      + * Possible options:
      + *
      + *	once:			will ensure the callback list can only be fired once (like a Deferred)
      + *
      + *	memory:			will keep track of previous values and will call any callback added
      + *					after the list has been fired right away with the latest "memorized"
      + *					values (like a Deferred)
      + *
      + *	unique:			will ensure a callback can only be added once (no duplicate in the list)
      + *
      + *	stopOnFalse:	interrupt callings when a callback returns false
      + *
      + */
      +jQuery.Callbacks = function( options ) {
      +
      +	// Convert options from String-formatted to Object-formatted if needed
      +	// (we check in cache first)
      +	options = typeof options === "string" ?
      +		createOptions( options ) :
      +		jQuery.extend( {}, options );
      +
      +	var // Flag to know if list is currently firing
      +		firing,
      +
      +		// Last fire value for non-forgettable lists
      +		memory,
      +
      +		// Flag to know if list was already fired
      +		fired,
      +
      +		// Flag to prevent firing
      +		locked,
      +
      +		// Actual callback list
      +		list = [],
      +
      +		// Queue of execution data for repeatable lists
      +		queue = [],
      +
      +		// Index of currently firing callback (modified by add/remove as needed)
      +		firingIndex = -1,
      +
      +		// Fire callbacks
      +		fire = function() {
      +
      +			// Enforce single-firing
      +			locked = locked || options.once;
      +
      +			// Execute callbacks for all pending executions,
      +			// respecting firingIndex overrides and runtime changes
      +			fired = firing = true;
      +			for ( ; queue.length; firingIndex = -1 ) {
      +				memory = queue.shift();
      +				while ( ++firingIndex < list.length ) {
      +
      +					// Run callback and check for early termination
      +					if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&
      +						options.stopOnFalse ) {
      +
      +						// Jump to end and forget the data so .add doesn't re-fire
      +						firingIndex = list.length;
      +						memory = false;
      +					}
      +				}
      +			}
      +
      +			// Forget the data if we're done with it
      +			if ( !options.memory ) {
      +				memory = false;
      +			}
      +
      +			firing = false;
      +
      +			// Clean up if we're done firing for good
      +			if ( locked ) {
      +
      +				// Keep an empty list if we have data for future add calls
      +				if ( memory ) {
      +					list = [];
      +
      +				// Otherwise, this object is spent
      +				} else {
      +					list = "";
      +				}
      +			}
      +		},
      +
      +		// Actual Callbacks object
      +		self = {
      +
      +			// Add a callback or a collection of callbacks to the list
      +			add: function() {
      +				if ( list ) {
      +
      +					// If we have memory from a past run, we should fire after adding
      +					if ( memory && !firing ) {
      +						firingIndex = list.length - 1;
      +						queue.push( memory );
      +					}
      +
      +					( function add( args ) {
      +						jQuery.each( args, function( _, arg ) {
      +							if ( isFunction( arg ) ) {
      +								if ( !options.unique || !self.has( arg ) ) {
      +									list.push( arg );
      +								}
      +							} else if ( arg && arg.length && toType( arg ) !== "string" ) {
      +
      +								// Inspect recursively
      +								add( arg );
      +							}
      +						} );
      +					} )( arguments );
      +
      +					if ( memory && !firing ) {
      +						fire();
      +					}
      +				}
      +				return this;
      +			},
      +
      +			// Remove a callback from the list
      +			remove: function() {
      +				jQuery.each( arguments, function( _, arg ) {
      +					var index;
      +					while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
      +						list.splice( index, 1 );
      +
      +						// Handle firing indexes
      +						if ( index <= firingIndex ) {
      +							firingIndex--;
      +						}
      +					}
      +				} );
      +				return this;
      +			},
      +
      +			// Check if a given callback is in the list.
      +			// If no argument is given, return whether or not list has callbacks attached.
      +			has: function( fn ) {
      +				return fn ?
      +					jQuery.inArray( fn, list ) > -1 :
      +					list.length > 0;
      +			},
      +
      +			// Remove all callbacks from the list
      +			empty: function() {
      +				if ( list ) {
      +					list = [];
      +				}
      +				return this;
      +			},
      +
      +			// Disable .fire and .add
      +			// Abort any current/pending executions
      +			// Clear all callbacks and values
      +			disable: function() {
      +				locked = queue = [];
      +				list = memory = "";
      +				return this;
      +			},
      +			disabled: function() {
      +				return !list;
      +			},
      +
      +			// Disable .fire
      +			// Also disable .add unless we have memory (since it would have no effect)
      +			// Abort any pending executions
      +			lock: function() {
      +				locked = queue = [];
      +				if ( !memory && !firing ) {
      +					list = memory = "";
      +				}
      +				return this;
      +			},
      +			locked: function() {
      +				return !!locked;
      +			},
      +
      +			// Call all callbacks with the given context and arguments
      +			fireWith: function( context, args ) {
      +				if ( !locked ) {
      +					args = args || [];
      +					args = [ context, args.slice ? args.slice() : args ];
      +					queue.push( args );
      +					if ( !firing ) {
      +						fire();
      +					}
      +				}
      +				return this;
      +			},
      +
      +			// Call all the callbacks with the given arguments
      +			fire: function() {
      +				self.fireWith( this, arguments );
      +				return this;
      +			},
      +
      +			// To know if the callbacks have already been called at least once
      +			fired: function() {
      +				return !!fired;
      +			}
      +		};
      +
      +	return self;
      +};
      +
      +
      +function Identity( v ) {
      +	return v;
      +}
      +function Thrower( ex ) {
      +	throw ex;
      +}
      +
      +function adoptValue( value, resolve, reject, noValue ) {
      +	var method;
      +
      +	try {
      +
      +		// Check for promise aspect first to privilege synchronous behavior
      +		if ( value && isFunction( ( method = value.promise ) ) ) {
      +			method.call( value ).done( resolve ).fail( reject );
      +
      +		// Other thenables
      +		} else if ( value && isFunction( ( method = value.then ) ) ) {
      +			method.call( value, resolve, reject );
      +
      +		// Other non-thenables
      +		} else {
      +
      +			// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:
      +			// * false: [ value ].slice( 0 ) => resolve( value )
      +			// * true: [ value ].slice( 1 ) => resolve()
      +			resolve.apply( undefined, [ value ].slice( noValue ) );
      +		}
      +
      +	// For Promises/A+, convert exceptions into rejections
      +	// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in
      +	// Deferred#then to conditionally suppress rejection.
      +	} catch ( value ) {
      +
      +		// Support: Android 4.0 only
      +		// Strict mode functions invoked without .call/.apply get global-object context
      +		reject.apply( undefined, [ value ] );
      +	}
      +}
      +
      +jQuery.extend( {
      +
      +	Deferred: function( func ) {
      +		var tuples = [
      +
      +				// action, add listener, callbacks,
      +				// ... .then handlers, argument index, [final state]
      +				[ "notify", "progress", jQuery.Callbacks( "memory" ),
      +					jQuery.Callbacks( "memory" ), 2 ],
      +				[ "resolve", "done", jQuery.Callbacks( "once memory" ),
      +					jQuery.Callbacks( "once memory" ), 0, "resolved" ],
      +				[ "reject", "fail", jQuery.Callbacks( "once memory" ),
      +					jQuery.Callbacks( "once memory" ), 1, "rejected" ]
      +			],
      +			state = "pending",
      +			promise = {
      +				state: function() {
      +					return state;
      +				},
      +				always: function() {
      +					deferred.done( arguments ).fail( arguments );
      +					return this;
      +				},
      +				"catch": function( fn ) {
      +					return promise.then( null, fn );
      +				},
      +
      +				// Keep pipe for back-compat
      +				pipe: function( /* fnDone, fnFail, fnProgress */ ) {
      +					var fns = arguments;
      +
      +					return jQuery.Deferred( function( newDefer ) {
      +						jQuery.each( tuples, function( i, tuple ) {
      +
      +							// Map tuples (progress, done, fail) to arguments (done, fail, progress)
      +							var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];
      +
      +							// deferred.progress(function() { bind to newDefer or newDefer.notify })
      +							// deferred.done(function() { bind to newDefer or newDefer.resolve })
      +							// deferred.fail(function() { bind to newDefer or newDefer.reject })
      +							deferred[ tuple[ 1 ] ]( function() {
      +								var returned = fn && fn.apply( this, arguments );
      +								if ( returned && isFunction( returned.promise ) ) {
      +									returned.promise()
      +										.progress( newDefer.notify )
      +										.done( newDefer.resolve )
      +										.fail( newDefer.reject );
      +								} else {
      +									newDefer[ tuple[ 0 ] + "With" ](
      +										this,
      +										fn ? [ returned ] : arguments
      +									);
      +								}
      +							} );
      +						} );
      +						fns = null;
      +					} ).promise();
      +				},
      +				then: function( onFulfilled, onRejected, onProgress ) {
      +					var maxDepth = 0;
      +					function resolve( depth, deferred, handler, special ) {
      +						return function() {
      +							var that = this,
      +								args = arguments,
      +								mightThrow = function() {
      +									var returned, then;
      +
      +									// Support: Promises/A+ section 2.3.3.3.3
      +									// https://promisesaplus.com/#point-59
      +									// Ignore double-resolution attempts
      +									if ( depth < maxDepth ) {
      +										return;
      +									}
      +
      +									returned = handler.apply( that, args );
      +
      +									// Support: Promises/A+ section 2.3.1
      +									// https://promisesaplus.com/#point-48
      +									if ( returned === deferred.promise() ) {
      +										throw new TypeError( "Thenable self-resolution" );
      +									}
      +
      +									// Support: Promises/A+ sections 2.3.3.1, 3.5
      +									// https://promisesaplus.com/#point-54
      +									// https://promisesaplus.com/#point-75
      +									// Retrieve `then` only once
      +									then = returned &&
      +
      +										// Support: Promises/A+ section 2.3.4
      +										// https://promisesaplus.com/#point-64
      +										// Only check objects and functions for thenability
      +										( typeof returned === "object" ||
      +											typeof returned === "function" ) &&
      +										returned.then;
      +
      +									// Handle a returned thenable
      +									if ( isFunction( then ) ) {
      +
      +										// Special processors (notify) just wait for resolution
      +										if ( special ) {
      +											then.call(
      +												returned,
      +												resolve( maxDepth, deferred, Identity, special ),
      +												resolve( maxDepth, deferred, Thrower, special )
      +											);
      +
      +										// Normal processors (resolve) also hook into progress
      +										} else {
      +
      +											// ...and disregard older resolution values
      +											maxDepth++;
      +
      +											then.call(
      +												returned,
      +												resolve( maxDepth, deferred, Identity, special ),
      +												resolve( maxDepth, deferred, Thrower, special ),
      +												resolve( maxDepth, deferred, Identity,
      +													deferred.notifyWith )
      +											);
      +										}
      +
      +									// Handle all other returned values
      +									} else {
      +
      +										// Only substitute handlers pass on context
      +										// and multiple values (non-spec behavior)
      +										if ( handler !== Identity ) {
      +											that = undefined;
      +											args = [ returned ];
      +										}
      +
      +										// Process the value(s)
      +										// Default process is resolve
      +										( special || deferred.resolveWith )( that, args );
      +									}
      +								},
      +
      +								// Only normal processors (resolve) catch and reject exceptions
      +								process = special ?
      +									mightThrow :
      +									function() {
      +										try {
      +											mightThrow();
      +										} catch ( e ) {
      +
      +											if ( jQuery.Deferred.exceptionHook ) {
      +												jQuery.Deferred.exceptionHook( e,
      +													process.stackTrace );
      +											}
      +
      +											// Support: Promises/A+ section 2.3.3.3.4.1
      +											// https://promisesaplus.com/#point-61
      +											// Ignore post-resolution exceptions
      +											if ( depth + 1 >= maxDepth ) {
      +
      +												// Only substitute handlers pass on context
      +												// and multiple values (non-spec behavior)
      +												if ( handler !== Thrower ) {
      +													that = undefined;
      +													args = [ e ];
      +												}
      +
      +												deferred.rejectWith( that, args );
      +											}
      +										}
      +									};
      +
      +							// Support: Promises/A+ section 2.3.3.3.1
      +							// https://promisesaplus.com/#point-57
      +							// Re-resolve promises immediately to dodge false rejection from
      +							// subsequent errors
      +							if ( depth ) {
      +								process();
      +							} else {
      +
      +								// Call an optional hook to record the stack, in case of exception
      +								// since it's otherwise lost when execution goes async
      +								if ( jQuery.Deferred.getStackHook ) {
      +									process.stackTrace = jQuery.Deferred.getStackHook();
      +								}
      +								window.setTimeout( process );
      +							}
      +						};
      +					}
      +
      +					return jQuery.Deferred( function( newDefer ) {
      +
      +						// progress_handlers.add( ... )
      +						tuples[ 0 ][ 3 ].add(
      +							resolve(
      +								0,
      +								newDefer,
      +								isFunction( onProgress ) ?
      +									onProgress :
      +									Identity,
      +								newDefer.notifyWith
      +							)
      +						);
      +
      +						// fulfilled_handlers.add( ... )
      +						tuples[ 1 ][ 3 ].add(
      +							resolve(
      +								0,
      +								newDefer,
      +								isFunction( onFulfilled ) ?
      +									onFulfilled :
      +									Identity
      +							)
      +						);
      +
      +						// rejected_handlers.add( ... )
      +						tuples[ 2 ][ 3 ].add(
      +							resolve(
      +								0,
      +								newDefer,
      +								isFunction( onRejected ) ?
      +									onRejected :
      +									Thrower
      +							)
      +						);
      +					} ).promise();
      +				},
      +
      +				// Get a promise for this deferred
      +				// If obj is provided, the promise aspect is added to the object
      +				promise: function( obj ) {
      +					return obj != null ? jQuery.extend( obj, promise ) : promise;
      +				}
      +			},
      +			deferred = {};
      +
      +		// Add list-specific methods
      +		jQuery.each( tuples, function( i, tuple ) {
      +			var list = tuple[ 2 ],
      +				stateString = tuple[ 5 ];
      +
      +			// promise.progress = list.add
      +			// promise.done = list.add
      +			// promise.fail = list.add
      +			promise[ tuple[ 1 ] ] = list.add;
      +
      +			// Handle state
      +			if ( stateString ) {
      +				list.add(
      +					function() {
      +
      +						// state = "resolved" (i.e., fulfilled)
      +						// state = "rejected"
      +						state = stateString;
      +					},
      +
      +					// rejected_callbacks.disable
      +					// fulfilled_callbacks.disable
      +					tuples[ 3 - i ][ 2 ].disable,
      +
      +					// rejected_handlers.disable
      +					// fulfilled_handlers.disable
      +					tuples[ 3 - i ][ 3 ].disable,
      +
      +					// progress_callbacks.lock
      +					tuples[ 0 ][ 2 ].lock,
      +
      +					// progress_handlers.lock
      +					tuples[ 0 ][ 3 ].lock
      +				);
      +			}
      +
      +			// progress_handlers.fire
      +			// fulfilled_handlers.fire
      +			// rejected_handlers.fire
      +			list.add( tuple[ 3 ].fire );
      +
      +			// deferred.notify = function() { deferred.notifyWith(...) }
      +			// deferred.resolve = function() { deferred.resolveWith(...) }
      +			// deferred.reject = function() { deferred.rejectWith(...) }
      +			deferred[ tuple[ 0 ] ] = function() {
      +				deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments );
      +				return this;
      +			};
      +
      +			// deferred.notifyWith = list.fireWith
      +			// deferred.resolveWith = list.fireWith
      +			// deferred.rejectWith = list.fireWith
      +			deferred[ tuple[ 0 ] + "With" ] = list.fireWith;
      +		} );
      +
      +		// Make the deferred a promise
      +		promise.promise( deferred );
      +
      +		// Call given func if any
      +		if ( func ) {
      +			func.call( deferred, deferred );
      +		}
      +
      +		// All done!
      +		return deferred;
      +	},
      +
      +	// Deferred helper
      +	when: function( singleValue ) {
      +		var
      +
      +			// count of uncompleted subordinates
      +			remaining = arguments.length,
      +
      +			// count of unprocessed arguments
      +			i = remaining,
      +
      +			// subordinate fulfillment data
      +			resolveContexts = Array( i ),
      +			resolveValues = slice.call( arguments ),
      +
      +			// the master Deferred
      +			master = jQuery.Deferred(),
      +
      +			// subordinate callback factory
      +			updateFunc = function( i ) {
      +				return function( value ) {
      +					resolveContexts[ i ] = this;
      +					resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
      +					if ( !( --remaining ) ) {
      +						master.resolveWith( resolveContexts, resolveValues );
      +					}
      +				};
      +			};
      +
      +		// Single- and empty arguments are adopted like Promise.resolve
      +		if ( remaining <= 1 ) {
      +			adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject,
      +				!remaining );
      +
      +			// Use .then() to unwrap secondary thenables (cf. gh-3000)
      +			if ( master.state() === "pending" ||
      +				isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {
      +
      +				return master.then();
      +			}
      +		}
      +
      +		// Multiple arguments are aggregated like Promise.all array elements
      +		while ( i-- ) {
      +			adoptValue( resolveValues[ i ], updateFunc( i ), master.reject );
      +		}
      +
      +		return master.promise();
      +	}
      +} );
      +
      +
      +// These usually indicate a programmer mistake during development,
      +// warn about them ASAP rather than swallowing them by default.
      +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;
      +
      +jQuery.Deferred.exceptionHook = function( error, stack ) {
      +
      +	// Support: IE 8 - 9 only
      +	// Console exists when dev tools are open, which can happen at any time
      +	if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {
      +		window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack );
      +	}
      +};
      +
      +
      +
      +
      +jQuery.readyException = function( error ) {
      +	window.setTimeout( function() {
      +		throw error;
      +	} );
      +};
      +
      +
      +
      +
      +// The deferred used on DOM ready
      +var readyList = jQuery.Deferred();
      +
      +jQuery.fn.ready = function( fn ) {
      +
      +	readyList
      +		.then( fn )
      +
      +		// Wrap jQuery.readyException in a function so that the lookup
      +		// happens at the time of error handling instead of callback
      +		// registration.
      +		.catch( function( error ) {
      +			jQuery.readyException( error );
      +		} );
      +
      +	return this;
      +};
      +
      +jQuery.extend( {
      +
      +	// Is the DOM ready to be used? Set to true once it occurs.
      +	isReady: false,
      +
      +	// A counter to track how many items to wait for before
      +	// the ready event fires. See #6781
      +	readyWait: 1,
      +
      +	// Handle when the DOM is ready
      +	ready: function( wait ) {
      +
      +		// Abort if there are pending holds or we're already ready
      +		if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
      +			return;
      +		}
      +
      +		// Remember that the DOM is ready
      +		jQuery.isReady = true;
      +
      +		// If a normal DOM Ready event fired, decrement, and wait if need be
      +		if ( wait !== true && --jQuery.readyWait > 0 ) {
      +			return;
      +		}
      +
      +		// If there are functions bound, to execute
      +		readyList.resolveWith( document, [ jQuery ] );
      +	}
      +} );
      +
      +jQuery.ready.then = readyList.then;
      +
      +// The ready event handler and self cleanup method
      +function completed() {
      +	document.removeEventListener( "DOMContentLoaded", completed );
      +	window.removeEventListener( "load", completed );
      +	jQuery.ready();
      +}
      +
      +// Catch cases where $(document).ready() is called
      +// after the browser event has already occurred.
      +// Support: IE <=9 - 10 only
      +// Older IE sometimes signals "interactive" too soon
      +if ( document.readyState === "complete" ||
      +	( document.readyState !== "loading" && !document.documentElement.doScroll ) ) {
      +
      +	// Handle it asynchronously to allow scripts the opportunity to delay ready
      +	window.setTimeout( jQuery.ready );
      +
      +} else {
      +
      +	// Use the handy event callback
      +	document.addEventListener( "DOMContentLoaded", completed );
      +
      +	// A fallback to window.onload, that will always work
      +	window.addEventListener( "load", completed );
      +}
      +
      +
      +
      +
      +// Multifunctional method to get and set values of a collection
      +// The value/s can optionally be executed if it's a function
      +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
      +	var i = 0,
      +		len = elems.length,
      +		bulk = key == null;
      +
      +	// Sets many values
      +	if ( toType( key ) === "object" ) {
      +		chainable = true;
      +		for ( i in key ) {
      +			access( elems, fn, i, key[ i ], true, emptyGet, raw );
      +		}
      +
      +	// Sets one value
      +	} else if ( value !== undefined ) {
      +		chainable = true;
      +
      +		if ( !isFunction( value ) ) {
      +			raw = true;
      +		}
      +
      +		if ( bulk ) {
      +
      +			// Bulk operations run against the entire set
      +			if ( raw ) {
      +				fn.call( elems, value );
      +				fn = null;
      +
      +			// ...except when executing function values
      +			} else {
      +				bulk = fn;
      +				fn = function( elem, key, value ) {
      +					return bulk.call( jQuery( elem ), value );
      +				};
      +			}
      +		}
      +
      +		if ( fn ) {
      +			for ( ; i < len; i++ ) {
      +				fn(
      +					elems[ i ], key, raw ?
      +					value :
      +					value.call( elems[ i ], i, fn( elems[ i ], key ) )
      +				);
      +			}
      +		}
      +	}
      +
      +	if ( chainable ) {
      +		return elems;
      +	}
      +
      +	// Gets
      +	if ( bulk ) {
      +		return fn.call( elems );
      +	}
      +
      +	return len ? fn( elems[ 0 ], key ) : emptyGet;
      +};
      +
      +
      +// Matches dashed string for camelizing
      +var rmsPrefix = /^-ms-/,
      +	rdashAlpha = /-([a-z])/g;
      +
      +// Used by camelCase as callback to replace()
      +function fcamelCase( all, letter ) {
      +	return letter.toUpperCase();
      +}
      +
      +// Convert dashed to camelCase; used by the css and data modules
      +// Support: IE <=9 - 11, Edge 12 - 15
      +// Microsoft forgot to hump their vendor prefix (#9572)
      +function camelCase( string ) {
      +	return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
      +}
      +var acceptData = function( owner ) {
      +
      +	// Accepts only:
      +	//  - Node
      +	//    - Node.ELEMENT_NODE
      +	//    - Node.DOCUMENT_NODE
      +	//  - Object
      +	//    - Any
      +	return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
      +};
      +
      +
      +
      +
      +function Data() {
      +	this.expando = jQuery.expando + Data.uid++;
      +}
      +
      +Data.uid = 1;
      +
      +Data.prototype = {
      +
      +	cache: function( owner ) {
      +
      +		// Check if the owner object already has a cache
      +		var value = owner[ this.expando ];
      +
      +		// If not, create one
      +		if ( !value ) {
      +			value = {};
      +
      +			// We can accept data for non-element nodes in modern browsers,
      +			// but we should not, see #8335.
      +			// Always return an empty object.
      +			if ( acceptData( owner ) ) {
      +
      +				// If it is a node unlikely to be stringify-ed or looped over
      +				// use plain assignment
      +				if ( owner.nodeType ) {
      +					owner[ this.expando ] = value;
      +
      +				// Otherwise secure it in a non-enumerable property
      +				// configurable must be true to allow the property to be
      +				// deleted when data is removed
      +				} else {
      +					Object.defineProperty( owner, this.expando, {
      +						value: value,
      +						configurable: true
      +					} );
      +				}
      +			}
      +		}
      +
      +		return value;
      +	},
      +	set: function( owner, data, value ) {
      +		var prop,
      +			cache = this.cache( owner );
      +
      +		// Handle: [ owner, key, value ] args
      +		// Always use camelCase key (gh-2257)
      +		if ( typeof data === "string" ) {
      +			cache[ camelCase( data ) ] = value;
      +
      +		// Handle: [ owner, { properties } ] args
      +		} else {
      +
      +			// Copy the properties one-by-one to the cache object
      +			for ( prop in data ) {
      +				cache[ camelCase( prop ) ] = data[ prop ];
      +			}
      +		}
      +		return cache;
      +	},
      +	get: function( owner, key ) {
      +		return key === undefined ?
      +			this.cache( owner ) :
      +
      +			// Always use camelCase key (gh-2257)
      +			owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];
      +	},
      +	access: function( owner, key, value ) {
      +
      +		// In cases where either:
      +		//
      +		//   1. No key was specified
      +		//   2. A string key was specified, but no value provided
      +		//
      +		// Take the "read" path and allow the get method to determine
      +		// which value to return, respectively either:
      +		//
      +		//   1. The entire cache object
      +		//   2. The data stored at the key
      +		//
      +		if ( key === undefined ||
      +				( ( key && typeof key === "string" ) && value === undefined ) ) {
      +
      +			return this.get( owner, key );
      +		}
      +
      +		// When the key is not a string, or both a key and value
      +		// are specified, set or extend (existing objects) with either:
      +		//
      +		//   1. An object of properties
      +		//   2. A key and value
      +		//
      +		this.set( owner, key, value );
      +
      +		// Since the "set" path can have two possible entry points
      +		// return the expected data based on which path was taken[*]
      +		return value !== undefined ? value : key;
      +	},
      +	remove: function( owner, key ) {
      +		var i,
      +			cache = owner[ this.expando ];
      +
      +		if ( cache === undefined ) {
      +			return;
      +		}
      +
      +		if ( key !== undefined ) {
      +
      +			// Support array or space separated string of keys
      +			if ( Array.isArray( key ) ) {
      +
      +				// If key is an array of keys...
      +				// We always set camelCase keys, so remove that.
      +				key = key.map( camelCase );
      +			} else {
      +				key = camelCase( key );
      +
      +				// If a key with the spaces exists, use it.
      +				// Otherwise, create an array by matching non-whitespace
      +				key = key in cache ?
      +					[ key ] :
      +					( key.match( rnothtmlwhite ) || [] );
      +			}
      +
      +			i = key.length;
      +
      +			while ( i-- ) {
      +				delete cache[ key[ i ] ];
      +			}
      +		}
      +
      +		// Remove the expando if there's no more data
      +		if ( key === undefined || jQuery.isEmptyObject( cache ) ) {
      +
      +			// Support: Chrome <=35 - 45
      +			// Webkit & Blink performance suffers when deleting properties
      +			// from DOM nodes, so set to undefined instead
      +			// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)
      +			if ( owner.nodeType ) {
      +				owner[ this.expando ] = undefined;
      +			} else {
      +				delete owner[ this.expando ];
      +			}
      +		}
      +	},
      +	hasData: function( owner ) {
      +		var cache = owner[ this.expando ];
      +		return cache !== undefined && !jQuery.isEmptyObject( cache );
      +	}
      +};
      +var dataPriv = new Data();
      +
      +var dataUser = new Data();
      +
      +
      +
      +//	Implementation Summary
      +//
      +//	1. Enforce API surface and semantic compatibility with 1.9.x branch
      +//	2. Improve the module's maintainability by reducing the storage
      +//		paths to a single mechanism.
      +//	3. Use the same single mechanism to support "private" and "user" data.
      +//	4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)
      +//	5. Avoid exposing implementation details on user objects (eg. expando properties)
      +//	6. Provide a clear path for implementation upgrade to WeakMap in 2014
      +
      +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
      +	rmultiDash = /[A-Z]/g;
      +
      +function getData( data ) {
      +	if ( data === "true" ) {
      +		return true;
      +	}
      +
      +	if ( data === "false" ) {
      +		return false;
      +	}
      +
      +	if ( data === "null" ) {
      +		return null;
      +	}
      +
      +	// Only convert to a number if it doesn't change the string
      +	if ( data === +data + "" ) {
      +		return +data;
      +	}
      +
      +	if ( rbrace.test( data ) ) {
      +		return JSON.parse( data );
      +	}
      +
      +	return data;
      +}
      +
      +function dataAttr( elem, key, data ) {
      +	var name;
      +
      +	// If nothing was found internally, try to fetch any
      +	// data from the HTML5 data-* attribute
      +	if ( data === undefined && elem.nodeType === 1 ) {
      +		name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase();
      +		data = elem.getAttribute( name );
      +
      +		if ( typeof data === "string" ) {
      +			try {
      +				data = getData( data );
      +			} catch ( e ) {}
      +
      +			// Make sure we set the data so it isn't changed later
      +			dataUser.set( elem, key, data );
      +		} else {
      +			data = undefined;
      +		}
      +	}
      +	return data;
      +}
      +
      +jQuery.extend( {
      +	hasData: function( elem ) {
      +		return dataUser.hasData( elem ) || dataPriv.hasData( elem );
      +	},
      +
      +	data: function( elem, name, data ) {
      +		return dataUser.access( elem, name, data );
      +	},
      +
      +	removeData: function( elem, name ) {
      +		dataUser.remove( elem, name );
      +	},
      +
      +	// TODO: Now that all calls to _data and _removeData have been replaced
      +	// with direct calls to dataPriv methods, these can be deprecated.
      +	_data: function( elem, name, data ) {
      +		return dataPriv.access( elem, name, data );
      +	},
      +
      +	_removeData: function( elem, name ) {
      +		dataPriv.remove( elem, name );
      +	}
      +} );
      +
      +jQuery.fn.extend( {
      +	data: function( key, value ) {
      +		var i, name, data,
      +			elem = this[ 0 ],
      +			attrs = elem && elem.attributes;
      +
      +		// Gets all values
      +		if ( key === undefined ) {
      +			if ( this.length ) {
      +				data = dataUser.get( elem );
      +
      +				if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) {
      +					i = attrs.length;
      +					while ( i-- ) {
      +
      +						// Support: IE 11 only
      +						// The attrs elements can be null (#14894)
      +						if ( attrs[ i ] ) {
      +							name = attrs[ i ].name;
      +							if ( name.indexOf( "data-" ) === 0 ) {
      +								name = camelCase( name.slice( 5 ) );
      +								dataAttr( elem, name, data[ name ] );
      +							}
      +						}
      +					}
      +					dataPriv.set( elem, "hasDataAttrs", true );
      +				}
      +			}
      +
      +			return data;
      +		}
      +
      +		// Sets multiple values
      +		if ( typeof key === "object" ) {
      +			return this.each( function() {
      +				dataUser.set( this, key );
      +			} );
      +		}
      +
      +		return access( this, function( value ) {
      +			var data;
      +
      +			// The calling jQuery object (element matches) is not empty
      +			// (and therefore has an element appears at this[ 0 ]) and the
      +			// `value` parameter was not undefined. An empty jQuery object
      +			// will result in `undefined` for elem = this[ 0 ] which will
      +			// throw an exception if an attempt to read a data cache is made.
      +			if ( elem && value === undefined ) {
      +
      +				// Attempt to get data from the cache
      +				// The key will always be camelCased in Data
      +				data = dataUser.get( elem, key );
      +				if ( data !== undefined ) {
      +					return data;
      +				}
      +
      +				// Attempt to "discover" the data in
      +				// HTML5 custom data-* attrs
      +				data = dataAttr( elem, key );
      +				if ( data !== undefined ) {
      +					return data;
      +				}
      +
      +				// We tried really hard, but the data doesn't exist.
      +				return;
      +			}
      +
      +			// Set the data...
      +			this.each( function() {
      +
      +				// We always store the camelCased key
      +				dataUser.set( this, key, value );
      +			} );
      +		}, null, value, arguments.length > 1, null, true );
      +	},
      +
      +	removeData: function( key ) {
      +		return this.each( function() {
      +			dataUser.remove( this, key );
      +		} );
      +	}
      +} );
      +
      +
      +jQuery.extend( {
      +	queue: function( elem, type, data ) {
      +		var queue;
      +
      +		if ( elem ) {
      +			type = ( type || "fx" ) + "queue";
      +			queue = dataPriv.get( elem, type );
      +
      +			// Speed up dequeue by getting out quickly if this is just a lookup
      +			if ( data ) {
      +				if ( !queue || Array.isArray( data ) ) {
      +					queue = dataPriv.access( elem, type, jQuery.makeArray( data ) );
      +				} else {
      +					queue.push( data );
      +				}
      +			}
      +			return queue || [];
      +		}
      +	},
      +
      +	dequeue: function( elem, type ) {
      +		type = type || "fx";
      +
      +		var queue = jQuery.queue( elem, type ),
      +			startLength = queue.length,
      +			fn = queue.shift(),
      +			hooks = jQuery._queueHooks( elem, type ),
      +			next = function() {
      +				jQuery.dequeue( elem, type );
      +			};
      +
      +		// If the fx queue is dequeued, always remove the progress sentinel
      +		if ( fn === "inprogress" ) {
      +			fn = queue.shift();
      +			startLength--;
      +		}
      +
      +		if ( fn ) {
      +
      +			// Add a progress sentinel to prevent the fx queue from being
      +			// automatically dequeued
      +			if ( type === "fx" ) {
      +				queue.unshift( "inprogress" );
      +			}
      +
      +			// Clear up the last queue stop function
      +			delete hooks.stop;
      +			fn.call( elem, next, hooks );
      +		}
      +
      +		if ( !startLength && hooks ) {
      +			hooks.empty.fire();
      +		}
      +	},
      +
      +	// Not public - generate a queueHooks object, or return the current one
      +	_queueHooks: function( elem, type ) {
      +		var key = type + "queueHooks";
      +		return dataPriv.get( elem, key ) || dataPriv.access( elem, key, {
      +			empty: jQuery.Callbacks( "once memory" ).add( function() {
      +				dataPriv.remove( elem, [ type + "queue", key ] );
      +			} )
      +		} );
      +	}
      +} );
      +
      +jQuery.fn.extend( {
      +	queue: function( type, data ) {
      +		var setter = 2;
      +
      +		if ( typeof type !== "string" ) {
      +			data = type;
      +			type = "fx";
      +			setter--;
      +		}
      +
      +		if ( arguments.length < setter ) {
      +			return jQuery.queue( this[ 0 ], type );
      +		}
      +
      +		return data === undefined ?
      +			this :
      +			this.each( function() {
      +				var queue = jQuery.queue( this, type, data );
      +
      +				// Ensure a hooks for this queue
      +				jQuery._queueHooks( this, type );
      +
      +				if ( type === "fx" && queue[ 0 ] !== "inprogress" ) {
      +					jQuery.dequeue( this, type );
      +				}
      +			} );
      +	},
      +	dequeue: function( type ) {
      +		return this.each( function() {
      +			jQuery.dequeue( this, type );
      +		} );
      +	},
      +	clearQueue: function( type ) {
      +		return this.queue( type || "fx", [] );
      +	},
      +
      +	// Get a promise resolved when queues of a certain type
      +	// are emptied (fx is the type by default)
      +	promise: function( type, obj ) {
      +		var tmp,
      +			count = 1,
      +			defer = jQuery.Deferred(),
      +			elements = this,
      +			i = this.length,
      +			resolve = function() {
      +				if ( !( --count ) ) {
      +					defer.resolveWith( elements, [ elements ] );
      +				}
      +			};
      +
      +		if ( typeof type !== "string" ) {
      +			obj = type;
      +			type = undefined;
      +		}
      +		type = type || "fx";
      +
      +		while ( i-- ) {
      +			tmp = dataPriv.get( elements[ i ], type + "queueHooks" );
      +			if ( tmp && tmp.empty ) {
      +				count++;
      +				tmp.empty.add( resolve );
      +			}
      +		}
      +		resolve();
      +		return defer.promise( obj );
      +	}
      +} );
      +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
      +
      +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
      +
      +
      +var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
      +
      +var isHiddenWithinTree = function( elem, el ) {
      +
      +		// isHiddenWithinTree might be called from jQuery#filter function;
      +		// in that case, element will be second argument
      +		elem = el || elem;
      +
      +		// Inline style trumps all
      +		return elem.style.display === "none" ||
      +			elem.style.display === "" &&
      +
      +			// Otherwise, check computed style
      +			// Support: Firefox <=43 - 45
      +			// Disconnected elements can have computed display: none, so first confirm that elem is
      +			// in the document.
      +			jQuery.contains( elem.ownerDocument, elem ) &&
      +
      +			jQuery.css( elem, "display" ) === "none";
      +	};
      +
      +var swap = function( elem, options, callback, args ) {
      +	var ret, name,
      +		old = {};
      +
      +	// Remember the old values, and insert the new ones
      +	for ( name in options ) {
      +		old[ name ] = elem.style[ name ];
      +		elem.style[ name ] = options[ name ];
      +	}
      +
      +	ret = callback.apply( elem, args || [] );
      +
      +	// Revert the old values
      +	for ( name in options ) {
      +		elem.style[ name ] = old[ name ];
      +	}
      +
      +	return ret;
      +};
      +
      +
      +
      +
      +function adjustCSS( elem, prop, valueParts, tween ) {
      +	var adjusted, scale,
      +		maxIterations = 20,
      +		currentValue = tween ?
      +			function() {
      +				return tween.cur();
      +			} :
      +			function() {
      +				return jQuery.css( elem, prop, "" );
      +			},
      +		initial = currentValue(),
      +		unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
      +
      +		// Starting value computation is required for potential unit mismatches
      +		initialInUnit = ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) &&
      +			rcssNum.exec( jQuery.css( elem, prop ) );
      +
      +	if ( initialInUnit && initialInUnit[ 3 ] !== unit ) {
      +
      +		// Support: Firefox <=54
      +		// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)
      +		initial = initial / 2;
      +
      +		// Trust units reported by jQuery.css
      +		unit = unit || initialInUnit[ 3 ];
      +
      +		// Iteratively approximate from a nonzero starting point
      +		initialInUnit = +initial || 1;
      +
      +		while ( maxIterations-- ) {
      +
      +			// Evaluate and update our best guess (doubling guesses that zero out).
      +			// Finish if the scale equals or crosses 1 (making the old*new product non-positive).
      +			jQuery.style( elem, prop, initialInUnit + unit );
      +			if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {
      +				maxIterations = 0;
      +			}
      +			initialInUnit = initialInUnit / scale;
      +
      +		}
      +
      +		initialInUnit = initialInUnit * 2;
      +		jQuery.style( elem, prop, initialInUnit + unit );
      +
      +		// Make sure we update the tween properties later on
      +		valueParts = valueParts || [];
      +	}
      +
      +	if ( valueParts ) {
      +		initialInUnit = +initialInUnit || +initial || 0;
      +
      +		// Apply relative offset (+=/-=) if specified
      +		adjusted = valueParts[ 1 ] ?
      +			initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :
      +			+valueParts[ 2 ];
      +		if ( tween ) {
      +			tween.unit = unit;
      +			tween.start = initialInUnit;
      +			tween.end = adjusted;
      +		}
      +	}
      +	return adjusted;
      +}
      +
      +
      +var defaultDisplayMap = {};
      +
      +function getDefaultDisplay( elem ) {
      +	var temp,
      +		doc = elem.ownerDocument,
      +		nodeName = elem.nodeName,
      +		display = defaultDisplayMap[ nodeName ];
      +
      +	if ( display ) {
      +		return display;
      +	}
      +
      +	temp = doc.body.appendChild( doc.createElement( nodeName ) );
      +	display = jQuery.css( temp, "display" );
      +
      +	temp.parentNode.removeChild( temp );
      +
      +	if ( display === "none" ) {
      +		display = "block";
      +	}
      +	defaultDisplayMap[ nodeName ] = display;
      +
      +	return display;
      +}
      +
      +function showHide( elements, show ) {
      +	var display, elem,
      +		values = [],
      +		index = 0,
      +		length = elements.length;
      +
      +	// Determine new display value for elements that need to change
      +	for ( ; index < length; index++ ) {
      +		elem = elements[ index ];
      +		if ( !elem.style ) {
      +			continue;
      +		}
      +
      +		display = elem.style.display;
      +		if ( show ) {
      +
      +			// Since we force visibility upon cascade-hidden elements, an immediate (and slow)
      +			// check is required in this first loop unless we have a nonempty display value (either
      +			// inline or about-to-be-restored)
      +			if ( display === "none" ) {
      +				values[ index ] = dataPriv.get( elem, "display" ) || null;
      +				if ( !values[ index ] ) {
      +					elem.style.display = "";
      +				}
      +			}
      +			if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) {
      +				values[ index ] = getDefaultDisplay( elem );
      +			}
      +		} else {
      +			if ( display !== "none" ) {
      +				values[ index ] = "none";
      +
      +				// Remember what we're overwriting
      +				dataPriv.set( elem, "display", display );
      +			}
      +		}
      +	}
      +
      +	// Set the display of the elements in a second loop to avoid constant reflow
      +	for ( index = 0; index < length; index++ ) {
      +		if ( values[ index ] != null ) {
      +			elements[ index ].style.display = values[ index ];
      +		}
      +	}
      +
      +	return elements;
      +}
      +
      +jQuery.fn.extend( {
      +	show: function() {
      +		return showHide( this, true );
      +	},
      +	hide: function() {
      +		return showHide( this );
      +	},
      +	toggle: function( state ) {
      +		if ( typeof state === "boolean" ) {
      +			return state ? this.show() : this.hide();
      +		}
      +
      +		return this.each( function() {
      +			if ( isHiddenWithinTree( this ) ) {
      +				jQuery( this ).show();
      +			} else {
      +				jQuery( this ).hide();
      +			}
      +		} );
      +	}
      +} );
      +var rcheckableType = ( /^(?:checkbox|radio)$/i );
      +
      +var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]+)/i );
      +
      +var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i );
      +
      +
      +
      +// We have to close these tags to support XHTML (#13200)
      +var wrapMap = {
      +
      +	// Support: IE <=9 only
      +	option: [ 1, "<select multiple='multiple'>", "</select>" ],
      +
      +	// XHTML parsers do not magically insert elements in the
      +	// same way that tag soup parsers do. So we cannot shorten
      +	// this by omitting <tbody> or other required elements.
      +	thead: [ 1, "<table>", "</table>" ],
      +	col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
      +	tr: [ 2, "<table><tbody>", "</tbody></table>" ],
      +	td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
      +
      +	_default: [ 0, "", "" ]
      +};
      +
      +// Support: IE <=9 only
      +wrapMap.optgroup = wrapMap.option;
      +
      +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
      +wrapMap.th = wrapMap.td;
      +
      +
      +function getAll( context, tag ) {
      +
      +	// Support: IE <=9 - 11 only
      +	// Use typeof to avoid zero-argument method invocation on host objects (#15151)
      +	var ret;
      +
      +	if ( typeof context.getElementsByTagName !== "undefined" ) {
      +		ret = context.getElementsByTagName( tag || "*" );
      +
      +	} else if ( typeof context.querySelectorAll !== "undefined" ) {
      +		ret = context.querySelectorAll( tag || "*" );
      +
      +	} else {
      +		ret = [];
      +	}
      +
      +	if ( tag === undefined || tag && nodeName( context, tag ) ) {
      +		return jQuery.merge( [ context ], ret );
      +	}
      +
      +	return ret;
      +}
      +
      +
      +// Mark scripts as having already been evaluated
      +function setGlobalEval( elems, refElements ) {
      +	var i = 0,
      +		l = elems.length;
      +
      +	for ( ; i < l; i++ ) {
      +		dataPriv.set(
      +			elems[ i ],
      +			"globalEval",
      +			!refElements || dataPriv.get( refElements[ i ], "globalEval" )
      +		);
      +	}
      +}
      +
      +
      +var rhtml = /<|&#?\w+;/;
      +
      +function buildFragment( elems, context, scripts, selection, ignored ) {
      +	var elem, tmp, tag, wrap, contains, j,
      +		fragment = context.createDocumentFragment(),
      +		nodes = [],
      +		i = 0,
      +		l = elems.length;
      +
      +	for ( ; i < l; i++ ) {
      +		elem = elems[ i ];
      +
      +		if ( elem || elem === 0 ) {
      +
      +			// Add nodes directly
      +			if ( toType( elem ) === "object" ) {
      +
      +				// Support: Android <=4.0 only, PhantomJS 1 only
      +				// push.apply(_, arraylike) throws on ancient WebKit
      +				jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
      +
      +			// Convert non-html into a text node
      +			} else if ( !rhtml.test( elem ) ) {
      +				nodes.push( context.createTextNode( elem ) );
      +
      +			// Convert html into DOM nodes
      +			} else {
      +				tmp = tmp || fragment.appendChild( context.createElement( "div" ) );
      +
      +				// Deserialize a standard representation
      +				tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase();
      +				wrap = wrapMap[ tag ] || wrapMap._default;
      +				tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];
      +
      +				// Descend through wrappers to the right content
      +				j = wrap[ 0 ];
      +				while ( j-- ) {
      +					tmp = tmp.lastChild;
      +				}
      +
      +				// Support: Android <=4.0 only, PhantomJS 1 only
      +				// push.apply(_, arraylike) throws on ancient WebKit
      +				jQuery.merge( nodes, tmp.childNodes );
      +
      +				// Remember the top-level container
      +				tmp = fragment.firstChild;
      +
      +				// Ensure the created nodes are orphaned (#12392)
      +				tmp.textContent = "";
      +			}
      +		}
      +	}
      +
      +	// Remove wrapper from fragment
      +	fragment.textContent = "";
      +
      +	i = 0;
      +	while ( ( elem = nodes[ i++ ] ) ) {
      +
      +		// Skip elements already in the context collection (trac-4087)
      +		if ( selection && jQuery.inArray( elem, selection ) > -1 ) {
      +			if ( ignored ) {
      +				ignored.push( elem );
      +			}
      +			continue;
      +		}
      +
      +		contains = jQuery.contains( elem.ownerDocument, elem );
      +
      +		// Append to fragment
      +		tmp = getAll( fragment.appendChild( elem ), "script" );
      +
      +		// Preserve script evaluation history
      +		if ( contains ) {
      +			setGlobalEval( tmp );
      +		}
      +
      +		// Capture executables
      +		if ( scripts ) {
      +			j = 0;
      +			while ( ( elem = tmp[ j++ ] ) ) {
      +				if ( rscriptType.test( elem.type || "" ) ) {
      +					scripts.push( elem );
      +				}
      +			}
      +		}
      +	}
      +
      +	return fragment;
      +}
      +
      +
      +( function() {
      +	var fragment = document.createDocumentFragment(),
      +		div = fragment.appendChild( document.createElement( "div" ) ),
      +		input = document.createElement( "input" );
      +
      +	// Support: Android 4.0 - 4.3 only
      +	// Check state lost if the name is set (#11217)
      +	// Support: Windows Web Apps (WWA)
      +	// `name` and `type` must use .setAttribute for WWA (#14901)
      +	input.setAttribute( "type", "radio" );
      +	input.setAttribute( "checked", "checked" );
      +	input.setAttribute( "name", "t" );
      +
      +	div.appendChild( input );
      +
      +	// Support: Android <=4.1 only
      +	// Older WebKit doesn't clone checked state correctly in fragments
      +	support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
      +
      +	// Support: IE <=11 only
      +	// Make sure textarea (and checkbox) defaultValue is properly cloned
      +	div.innerHTML = "<textarea>x</textarea>";
      +	support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
      +} )();
      +var documentElement = document.documentElement;
      +
      +
      +
      +var
      +	rkeyEvent = /^key/,
      +	rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,
      +	rtypenamespace = /^([^.]*)(?:\.(.+)|)/;
      +
      +function returnTrue() {
      +	return true;
      +}
      +
      +function returnFalse() {
      +	return false;
      +}
      +
      +// Support: IE <=9 only
      +// See #13393 for more info
      +function safeActiveElement() {
      +	try {
      +		return document.activeElement;
      +	} catch ( err ) { }
      +}
      +
      +function on( elem, types, selector, data, fn, one ) {
      +	var origFn, type;
      +
      +	// Types can be a map of types/handlers
      +	if ( typeof types === "object" ) {
      +
      +		// ( types-Object, selector, data )
      +		if ( typeof selector !== "string" ) {
      +
      +			// ( types-Object, data )
      +			data = data || selector;
      +			selector = undefined;
      +		}
      +		for ( type in types ) {
      +			on( elem, type, selector, data, types[ type ], one );
      +		}
      +		return elem;
      +	}
      +
      +	if ( data == null && fn == null ) {
      +
      +		// ( types, fn )
      +		fn = selector;
      +		data = selector = undefined;
      +	} else if ( fn == null ) {
      +		if ( typeof selector === "string" ) {
      +
      +			// ( types, selector, fn )
      +			fn = data;
      +			data = undefined;
      +		} else {
      +
      +			// ( types, data, fn )
      +			fn = data;
      +			data = selector;
      +			selector = undefined;
      +		}
      +	}
      +	if ( fn === false ) {
      +		fn = returnFalse;
      +	} else if ( !fn ) {
      +		return elem;
      +	}
      +
      +	if ( one === 1 ) {
      +		origFn = fn;
      +		fn = function( event ) {
      +
      +			// Can use an empty set, since event contains the info
      +			jQuery().off( event );
      +			return origFn.apply( this, arguments );
      +		};
      +
      +		// Use same guid so caller can remove using origFn
      +		fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
      +	}
      +	return elem.each( function() {
      +		jQuery.event.add( this, types, fn, data, selector );
      +	} );
      +}
      +
      +/*
      + * Helper functions for managing events -- not part of the public interface.
      + * Props to Dean Edwards' addEvent library for many of the ideas.
      + */
      +jQuery.event = {
      +
      +	global: {},
      +
      +	add: function( elem, types, handler, data, selector ) {
      +
      +		var handleObjIn, eventHandle, tmp,
      +			events, t, handleObj,
      +			special, handlers, type, namespaces, origType,
      +			elemData = dataPriv.get( elem );
      +
      +		// Don't attach events to noData or text/comment nodes (but allow plain objects)
      +		if ( !elemData ) {
      +			return;
      +		}
      +
      +		// Caller can pass in an object of custom data in lieu of the handler
      +		if ( handler.handler ) {
      +			handleObjIn = handler;
      +			handler = handleObjIn.handler;
      +			selector = handleObjIn.selector;
      +		}
      +
      +		// Ensure that invalid selectors throw exceptions at attach time
      +		// Evaluate against documentElement in case elem is a non-element node (e.g., document)
      +		if ( selector ) {
      +			jQuery.find.matchesSelector( documentElement, selector );
      +		}
      +
      +		// Make sure that the handler has a unique ID, used to find/remove it later
      +		if ( !handler.guid ) {
      +			handler.guid = jQuery.guid++;
      +		}
      +
      +		// Init the element's event structure and main handler, if this is the first
      +		if ( !( events = elemData.events ) ) {
      +			events = elemData.events = {};
      +		}
      +		if ( !( eventHandle = elemData.handle ) ) {
      +			eventHandle = elemData.handle = function( e ) {
      +
      +				// Discard the second event of a jQuery.event.trigger() and
      +				// when an event is called after a page has unloaded
      +				return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ?
      +					jQuery.event.dispatch.apply( elem, arguments ) : undefined;
      +			};
      +		}
      +
      +		// Handle multiple events separated by a space
      +		types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
      +		t = types.length;
      +		while ( t-- ) {
      +			tmp = rtypenamespace.exec( types[ t ] ) || [];
      +			type = origType = tmp[ 1 ];
      +			namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
      +
      +			// There *must* be a type, no attaching namespace-only handlers
      +			if ( !type ) {
      +				continue;
      +			}
      +
      +			// If event changes its type, use the special event handlers for the changed type
      +			special = jQuery.event.special[ type ] || {};
      +
      +			// If selector defined, determine special event api type, otherwise given type
      +			type = ( selector ? special.delegateType : special.bindType ) || type;
      +
      +			// Update special based on newly reset type
      +			special = jQuery.event.special[ type ] || {};
      +
      +			// handleObj is passed to all event handlers
      +			handleObj = jQuery.extend( {
      +				type: type,
      +				origType: origType,
      +				data: data,
      +				handler: handler,
      +				guid: handler.guid,
      +				selector: selector,
      +				needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
      +				namespace: namespaces.join( "." )
      +			}, handleObjIn );
      +
      +			// Init the event handler queue if we're the first
      +			if ( !( handlers = events[ type ] ) ) {
      +				handlers = events[ type ] = [];
      +				handlers.delegateCount = 0;
      +
      +				// Only use addEventListener if the special events handler returns false
      +				if ( !special.setup ||
      +					special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
      +
      +					if ( elem.addEventListener ) {
      +						elem.addEventListener( type, eventHandle );
      +					}
      +				}
      +			}
      +
      +			if ( special.add ) {
      +				special.add.call( elem, handleObj );
      +
      +				if ( !handleObj.handler.guid ) {
      +					handleObj.handler.guid = handler.guid;
      +				}
      +			}
      +
      +			// Add to the element's handler list, delegates in front
      +			if ( selector ) {
      +				handlers.splice( handlers.delegateCount++, 0, handleObj );
      +			} else {
      +				handlers.push( handleObj );
      +			}
      +
      +			// Keep track of which events have ever been used, for event optimization
      +			jQuery.event.global[ type ] = true;
      +		}
      +
      +	},
      +
      +	// Detach an event or set of events from an element
      +	remove: function( elem, types, handler, selector, mappedTypes ) {
      +
      +		var j, origCount, tmp,
      +			events, t, handleObj,
      +			special, handlers, type, namespaces, origType,
      +			elemData = dataPriv.hasData( elem ) && dataPriv.get( elem );
      +
      +		if ( !elemData || !( events = elemData.events ) ) {
      +			return;
      +		}
      +
      +		// Once for each type.namespace in types; type may be omitted
      +		types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
      +		t = types.length;
      +		while ( t-- ) {
      +			tmp = rtypenamespace.exec( types[ t ] ) || [];
      +			type = origType = tmp[ 1 ];
      +			namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
      +
      +			// Unbind all events (on this namespace, if provided) for the element
      +			if ( !type ) {
      +				for ( type in events ) {
      +					jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
      +				}
      +				continue;
      +			}
      +
      +			special = jQuery.event.special[ type ] || {};
      +			type = ( selector ? special.delegateType : special.bindType ) || type;
      +			handlers = events[ type ] || [];
      +			tmp = tmp[ 2 ] &&
      +				new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" );
      +
      +			// Remove matching events
      +			origCount = j = handlers.length;
      +			while ( j-- ) {
      +				handleObj = handlers[ j ];
      +
      +				if ( ( mappedTypes || origType === handleObj.origType ) &&
      +					( !handler || handler.guid === handleObj.guid ) &&
      +					( !tmp || tmp.test( handleObj.namespace ) ) &&
      +					( !selector || selector === handleObj.selector ||
      +						selector === "**" && handleObj.selector ) ) {
      +					handlers.splice( j, 1 );
      +
      +					if ( handleObj.selector ) {
      +						handlers.delegateCount--;
      +					}
      +					if ( special.remove ) {
      +						special.remove.call( elem, handleObj );
      +					}
      +				}
      +			}
      +
      +			// Remove generic event handler if we removed something and no more handlers exist
      +			// (avoids potential for endless recursion during removal of special event handlers)
      +			if ( origCount && !handlers.length ) {
      +				if ( !special.teardown ||
      +					special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
      +
      +					jQuery.removeEvent( elem, type, elemData.handle );
      +				}
      +
      +				delete events[ type ];
      +			}
      +		}
      +
      +		// Remove data and the expando if it's no longer used
      +		if ( jQuery.isEmptyObject( events ) ) {
      +			dataPriv.remove( elem, "handle events" );
      +		}
      +	},
      +
      +	dispatch: function( nativeEvent ) {
      +
      +		// Make a writable jQuery.Event from the native event object
      +		var event = jQuery.event.fix( nativeEvent );
      +
      +		var i, j, ret, matched, handleObj, handlerQueue,
      +			args = new Array( arguments.length ),
      +			handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [],
      +			special = jQuery.event.special[ event.type ] || {};
      +
      +		// Use the fix-ed jQuery.Event rather than the (read-only) native event
      +		args[ 0 ] = event;
      +
      +		for ( i = 1; i < arguments.length; i++ ) {
      +			args[ i ] = arguments[ i ];
      +		}
      +
      +		event.delegateTarget = this;
      +
      +		// Call the preDispatch hook for the mapped type, and let it bail if desired
      +		if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
      +			return;
      +		}
      +
      +		// Determine handlers
      +		handlerQueue = jQuery.event.handlers.call( this, event, handlers );
      +
      +		// Run delegates first; they may want to stop propagation beneath us
      +		i = 0;
      +		while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {
      +			event.currentTarget = matched.elem;
      +
      +			j = 0;
      +			while ( ( handleObj = matched.handlers[ j++ ] ) &&
      +				!event.isImmediatePropagationStopped() ) {
      +
      +				// Triggered event must either 1) have no namespace, or 2) have namespace(s)
      +				// a subset or equal to those in the bound event (both can have no namespace).
      +				if ( !event.rnamespace || event.rnamespace.test( handleObj.namespace ) ) {
      +
      +					event.handleObj = handleObj;
      +					event.data = handleObj.data;
      +
      +					ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||
      +						handleObj.handler ).apply( matched.elem, args );
      +
      +					if ( ret !== undefined ) {
      +						if ( ( event.result = ret ) === false ) {
      +							event.preventDefault();
      +							event.stopPropagation();
      +						}
      +					}
      +				}
      +			}
      +		}
      +
      +		// Call the postDispatch hook for the mapped type
      +		if ( special.postDispatch ) {
      +			special.postDispatch.call( this, event );
      +		}
      +
      +		return event.result;
      +	},
      +
      +	handlers: function( event, handlers ) {
      +		var i, handleObj, sel, matchedHandlers, matchedSelectors,
      +			handlerQueue = [],
      +			delegateCount = handlers.delegateCount,
      +			cur = event.target;
      +
      +		// Find delegate handlers
      +		if ( delegateCount &&
      +
      +			// Support: IE <=9
      +			// Black-hole SVG <use> instance trees (trac-13180)
      +			cur.nodeType &&
      +
      +			// Support: Firefox <=42
      +			// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)
      +			// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click
      +			// Support: IE 11 only
      +			// ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343)
      +			!( event.type === "click" && event.button >= 1 ) ) {
      +
      +			for ( ; cur !== this; cur = cur.parentNode || this ) {
      +
      +				// Don't check non-elements (#13208)
      +				// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
      +				if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) {
      +					matchedHandlers = [];
      +					matchedSelectors = {};
      +					for ( i = 0; i < delegateCount; i++ ) {
      +						handleObj = handlers[ i ];
      +
      +						// Don't conflict with Object.prototype properties (#13203)
      +						sel = handleObj.selector + " ";
      +
      +						if ( matchedSelectors[ sel ] === undefined ) {
      +							matchedSelectors[ sel ] = handleObj.needsContext ?
      +								jQuery( sel, this ).index( cur ) > -1 :
      +								jQuery.find( sel, this, null, [ cur ] ).length;
      +						}
      +						if ( matchedSelectors[ sel ] ) {
      +							matchedHandlers.push( handleObj );
      +						}
      +					}
      +					if ( matchedHandlers.length ) {
      +						handlerQueue.push( { elem: cur, handlers: matchedHandlers } );
      +					}
      +				}
      +			}
      +		}
      +
      +		// Add the remaining (directly-bound) handlers
      +		cur = this;
      +		if ( delegateCount < handlers.length ) {
      +			handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );
      +		}
      +
      +		return handlerQueue;
      +	},
      +
      +	addProp: function( name, hook ) {
      +		Object.defineProperty( jQuery.Event.prototype, name, {
      +			enumerable: true,
      +			configurable: true,
      +
      +			get: isFunction( hook ) ?
      +				function() {
      +					if ( this.originalEvent ) {
      +							return hook( this.originalEvent );
      +					}
      +				} :
      +				function() {
      +					if ( this.originalEvent ) {
      +							return this.originalEvent[ name ];
      +					}
      +				},
      +
      +			set: function( value ) {
      +				Object.defineProperty( this, name, {
      +					enumerable: true,
      +					configurable: true,
      +					writable: true,
      +					value: value
      +				} );
      +			}
      +		} );
      +	},
      +
      +	fix: function( originalEvent ) {
      +		return originalEvent[ jQuery.expando ] ?
      +			originalEvent :
      +			new jQuery.Event( originalEvent );
      +	},
      +
      +	special: {
      +		load: {
      +
      +			// Prevent triggered image.load events from bubbling to window.load
      +			noBubble: true
      +		},
      +		focus: {
      +
      +			// Fire native event if possible so blur/focus sequence is correct
      +			trigger: function() {
      +				if ( this !== safeActiveElement() && this.focus ) {
      +					this.focus();
      +					return false;
      +				}
      +			},
      +			delegateType: "focusin"
      +		},
      +		blur: {
      +			trigger: function() {
      +				if ( this === safeActiveElement() && this.blur ) {
      +					this.blur();
      +					return false;
      +				}
      +			},
      +			delegateType: "focusout"
      +		},
      +		click: {
      +
      +			// For checkbox, fire native event so checked state will be right
      +			trigger: function() {
      +				if ( this.type === "checkbox" && this.click && nodeName( this, "input" ) ) {
      +					this.click();
      +					return false;
      +				}
      +			},
      +
      +			// For cross-browser consistency, don't fire native .click() on links
      +			_default: function( event ) {
      +				return nodeName( event.target, "a" );
      +			}
      +		},
      +
      +		beforeunload: {
      +			postDispatch: function( event ) {
      +
      +				// Support: Firefox 20+
      +				// Firefox doesn't alert if the returnValue field is not set.
      +				if ( event.result !== undefined && event.originalEvent ) {
      +					event.originalEvent.returnValue = event.result;
      +				}
      +			}
      +		}
      +	}
      +};
      +
      +jQuery.removeEvent = function( elem, type, handle ) {
      +
      +	// This "if" is needed for plain objects
      +	if ( elem.removeEventListener ) {
      +		elem.removeEventListener( type, handle );
      +	}
      +};
      +
      +jQuery.Event = function( src, props ) {
      +
      +	// Allow instantiation without the 'new' keyword
      +	if ( !( this instanceof jQuery.Event ) ) {
      +		return new jQuery.Event( src, props );
      +	}
      +
      +	// Event object
      +	if ( src && src.type ) {
      +		this.originalEvent = src;
      +		this.type = src.type;
      +
      +		// Events bubbling up the document may have been marked as prevented
      +		// by a handler lower down the tree; reflect the correct value.
      +		this.isDefaultPrevented = src.defaultPrevented ||
      +				src.defaultPrevented === undefined &&
      +
      +				// Support: Android <=2.3 only
      +				src.returnValue === false ?
      +			returnTrue :
      +			returnFalse;
      +
      +		// Create target properties
      +		// Support: Safari <=6 - 7 only
      +		// Target should not be a text node (#504, #13143)
      +		this.target = ( src.target && src.target.nodeType === 3 ) ?
      +			src.target.parentNode :
      +			src.target;
      +
      +		this.currentTarget = src.currentTarget;
      +		this.relatedTarget = src.relatedTarget;
      +
      +	// Event type
      +	} else {
      +		this.type = src;
      +	}
      +
      +	// Put explicitly provided properties onto the event object
      +	if ( props ) {
      +		jQuery.extend( this, props );
      +	}
      +
      +	// Create a timestamp if incoming event doesn't have one
      +	this.timeStamp = src && src.timeStamp || Date.now();
      +
      +	// Mark it as fixed
      +	this[ jQuery.expando ] = true;
      +};
      +
      +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
      +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
      +jQuery.Event.prototype = {
      +	constructor: jQuery.Event,
      +	isDefaultPrevented: returnFalse,
      +	isPropagationStopped: returnFalse,
      +	isImmediatePropagationStopped: returnFalse,
      +	isSimulated: false,
      +
      +	preventDefault: function() {
      +		var e = this.originalEvent;
      +
      +		this.isDefaultPrevented = returnTrue;
      +
      +		if ( e && !this.isSimulated ) {
      +			e.preventDefault();
      +		}
      +	},
      +	stopPropagation: function() {
      +		var e = this.originalEvent;
      +
      +		this.isPropagationStopped = returnTrue;
      +
      +		if ( e && !this.isSimulated ) {
      +			e.stopPropagation();
      +		}
      +	},
      +	stopImmediatePropagation: function() {
      +		var e = this.originalEvent;
      +
      +		this.isImmediatePropagationStopped = returnTrue;
      +
      +		if ( e && !this.isSimulated ) {
      +			e.stopImmediatePropagation();
      +		}
      +
      +		this.stopPropagation();
      +	}
      +};
      +
      +// Includes all common event props including KeyEvent and MouseEvent specific props
      +jQuery.each( {
      +	altKey: true,
      +	bubbles: true,
      +	cancelable: true,
      +	changedTouches: true,
      +	ctrlKey: true,
      +	detail: true,
      +	eventPhase: true,
      +	metaKey: true,
      +	pageX: true,
      +	pageY: true,
      +	shiftKey: true,
      +	view: true,
      +	"char": true,
      +	charCode: true,
      +	key: true,
      +	keyCode: true,
      +	button: true,
      +	buttons: true,
      +	clientX: true,
      +	clientY: true,
      +	offsetX: true,
      +	offsetY: true,
      +	pointerId: true,
      +	pointerType: true,
      +	screenX: true,
      +	screenY: true,
      +	targetTouches: true,
      +	toElement: true,
      +	touches: true,
      +
      +	which: function( event ) {
      +		var button = event.button;
      +
      +		// Add which for key events
      +		if ( event.which == null && rkeyEvent.test( event.type ) ) {
      +			return event.charCode != null ? event.charCode : event.keyCode;
      +		}
      +
      +		// Add which for click: 1 === left; 2 === middle; 3 === right
      +		if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) {
      +			if ( button & 1 ) {
      +				return 1;
      +			}
      +
      +			if ( button & 2 ) {
      +				return 3;
      +			}
      +
      +			if ( button & 4 ) {
      +				return 2;
      +			}
      +
      +			return 0;
      +		}
      +
      +		return event.which;
      +	}
      +}, jQuery.event.addProp );
      +
      +// Create mouseenter/leave events using mouseover/out and event-time checks
      +// so that event delegation works in jQuery.
      +// Do the same for pointerenter/pointerleave and pointerover/pointerout
      +//
      +// Support: Safari 7 only
      +// Safari sends mouseenter too often; see:
      +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258
      +// for the description of the bug (it existed in older Chrome versions as well).
      +jQuery.each( {
      +	mouseenter: "mouseover",
      +	mouseleave: "mouseout",
      +	pointerenter: "pointerover",
      +	pointerleave: "pointerout"
      +}, function( orig, fix ) {
      +	jQuery.event.special[ orig ] = {
      +		delegateType: fix,
      +		bindType: fix,
      +
      +		handle: function( event ) {
      +			var ret,
      +				target = this,
      +				related = event.relatedTarget,
      +				handleObj = event.handleObj;
      +
      +			// For mouseenter/leave call the handler if related is outside the target.
      +			// NB: No relatedTarget if the mouse left/entered the browser window
      +			if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {
      +				event.type = handleObj.origType;
      +				ret = handleObj.handler.apply( this, arguments );
      +				event.type = fix;
      +			}
      +			return ret;
      +		}
      +	};
      +} );
      +
      +jQuery.fn.extend( {
      +
      +	on: function( types, selector, data, fn ) {
      +		return on( this, types, selector, data, fn );
      +	},
      +	one: function( types, selector, data, fn ) {
      +		return on( this, types, selector, data, fn, 1 );
      +	},
      +	off: function( types, selector, fn ) {
      +		var handleObj, type;
      +		if ( types && types.preventDefault && types.handleObj ) {
      +
      +			// ( event )  dispatched jQuery.Event
      +			handleObj = types.handleObj;
      +			jQuery( types.delegateTarget ).off(
      +				handleObj.namespace ?
      +					handleObj.origType + "." + handleObj.namespace :
      +					handleObj.origType,
      +				handleObj.selector,
      +				handleObj.handler
      +			);
      +			return this;
      +		}
      +		if ( typeof types === "object" ) {
      +
      +			// ( types-object [, selector] )
      +			for ( type in types ) {
      +				this.off( type, selector, types[ type ] );
      +			}
      +			return this;
      +		}
      +		if ( selector === false || typeof selector === "function" ) {
      +
      +			// ( types [, fn] )
      +			fn = selector;
      +			selector = undefined;
      +		}
      +		if ( fn === false ) {
      +			fn = returnFalse;
      +		}
      +		return this.each( function() {
      +			jQuery.event.remove( this, types, fn, selector );
      +		} );
      +	}
      +} );
      +
      +
      +var
      +
      +	/* eslint-disable max-len */
      +
      +	// See https://github.com/eslint/eslint/issues/3229
      +	rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,
      +
      +	/* eslint-enable */
      +
      +	// Support: IE <=10 - 11, Edge 12 - 13 only
      +	// In IE/Edge using regex groups here causes severe slowdowns.
      +	// See https://connect.microsoft.com/IE/feedback/details/1736512/
      +	rnoInnerhtml = /<script|<style|<link/i,
      +
      +	// checked="checked" or checked
      +	rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
      +	rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;
      +
      +// Prefer a tbody over its parent table for containing new rows
      +function manipulationTarget( elem, content ) {
      +	if ( nodeName( elem, "table" ) &&
      +		nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) {
      +
      +		return jQuery( elem ).children( "tbody" )[ 0 ] || elem;
      +	}
      +
      +	return elem;
      +}
      +
      +// Replace/restore the type attribute of script elements for safe DOM manipulation
      +function disableScript( elem ) {
      +	elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type;
      +	return elem;
      +}
      +function restoreScript( elem ) {
      +	if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) {
      +		elem.type = elem.type.slice( 5 );
      +	} else {
      +		elem.removeAttribute( "type" );
      +	}
      +
      +	return elem;
      +}
      +
      +function cloneCopyEvent( src, dest ) {
      +	var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;
      +
      +	if ( dest.nodeType !== 1 ) {
      +		return;
      +	}
      +
      +	// 1. Copy private data: events, handlers, etc.
      +	if ( dataPriv.hasData( src ) ) {
      +		pdataOld = dataPriv.access( src );
      +		pdataCur = dataPriv.set( dest, pdataOld );
      +		events = pdataOld.events;
      +
      +		if ( events ) {
      +			delete pdataCur.handle;
      +			pdataCur.events = {};
      +
      +			for ( type in events ) {
      +				for ( i = 0, l = events[ type ].length; i < l; i++ ) {
      +					jQuery.event.add( dest, type, events[ type ][ i ] );
      +				}
      +			}
      +		}
      +	}
      +
      +	// 2. Copy user data
      +	if ( dataUser.hasData( src ) ) {
      +		udataOld = dataUser.access( src );
      +		udataCur = jQuery.extend( {}, udataOld );
      +
      +		dataUser.set( dest, udataCur );
      +	}
      +}
      +
      +// Fix IE bugs, see support tests
      +function fixInput( src, dest ) {
      +	var nodeName = dest.nodeName.toLowerCase();
      +
      +	// Fails to persist the checked state of a cloned checkbox or radio button.
      +	if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
      +		dest.checked = src.checked;
      +
      +	// Fails to return the selected option to the default selected state when cloning options
      +	} else if ( nodeName === "input" || nodeName === "textarea" ) {
      +		dest.defaultValue = src.defaultValue;
      +	}
      +}
      +
      +function domManip( collection, args, callback, ignored ) {
      +
      +	// Flatten any nested arrays
      +	args = concat.apply( [], args );
      +
      +	var fragment, first, scripts, hasScripts, node, doc,
      +		i = 0,
      +		l = collection.length,
      +		iNoClone = l - 1,
      +		value = args[ 0 ],
      +		valueIsFunction = isFunction( value );
      +
      +	// We can't cloneNode fragments that contain checked, in WebKit
      +	if ( valueIsFunction ||
      +			( l > 1 && typeof value === "string" &&
      +				!support.checkClone && rchecked.test( value ) ) ) {
      +		return collection.each( function( index ) {
      +			var self = collection.eq( index );
      +			if ( valueIsFunction ) {
      +				args[ 0 ] = value.call( this, index, self.html() );
      +			}
      +			domManip( self, args, callback, ignored );
      +		} );
      +	}
      +
      +	if ( l ) {
      +		fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );
      +		first = fragment.firstChild;
      +
      +		if ( fragment.childNodes.length === 1 ) {
      +			fragment = first;
      +		}
      +
      +		// Require either new content or an interest in ignored elements to invoke the callback
      +		if ( first || ignored ) {
      +			scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
      +			hasScripts = scripts.length;
      +
      +			// Use the original fragment for the last item
      +			// instead of the first because it can end up
      +			// being emptied incorrectly in certain situations (#8070).
      +			for ( ; i < l; i++ ) {
      +				node = fragment;
      +
      +				if ( i !== iNoClone ) {
      +					node = jQuery.clone( node, true, true );
      +
      +					// Keep references to cloned scripts for later restoration
      +					if ( hasScripts ) {
      +
      +						// Support: Android <=4.0 only, PhantomJS 1 only
      +						// push.apply(_, arraylike) throws on ancient WebKit
      +						jQuery.merge( scripts, getAll( node, "script" ) );
      +					}
      +				}
      +
      +				callback.call( collection[ i ], node, i );
      +			}
      +
      +			if ( hasScripts ) {
      +				doc = scripts[ scripts.length - 1 ].ownerDocument;
      +
      +				// Reenable scripts
      +				jQuery.map( scripts, restoreScript );
      +
      +				// Evaluate executable scripts on first document insertion
      +				for ( i = 0; i < hasScripts; i++ ) {
      +					node = scripts[ i ];
      +					if ( rscriptType.test( node.type || "" ) &&
      +						!dataPriv.access( node, "globalEval" ) &&
      +						jQuery.contains( doc, node ) ) {
      +
      +						if ( node.src && ( node.type || "" ).toLowerCase()  !== "module" ) {
      +
      +							// Optional AJAX dependency, but won't run scripts if not present
      +							if ( jQuery._evalUrl ) {
      +								jQuery._evalUrl( node.src );
      +							}
      +						} else {
      +							DOMEval( node.textContent.replace( rcleanScript, "" ), doc, node );
      +						}
      +					}
      +				}
      +			}
      +		}
      +	}
      +
      +	return collection;
      +}
      +
      +function remove( elem, selector, keepData ) {
      +	var node,
      +		nodes = selector ? jQuery.filter( selector, elem ) : elem,
      +		i = 0;
      +
      +	for ( ; ( node = nodes[ i ] ) != null; i++ ) {
      +		if ( !keepData && node.nodeType === 1 ) {
      +			jQuery.cleanData( getAll( node ) );
      +		}
      +
      +		if ( node.parentNode ) {
      +			if ( keepData && jQuery.contains( node.ownerDocument, node ) ) {
      +				setGlobalEval( getAll( node, "script" ) );
      +			}
      +			node.parentNode.removeChild( node );
      +		}
      +	}
      +
      +	return elem;
      +}
      +
      +jQuery.extend( {
      +	htmlPrefilter: function( html ) {
      +		return html.replace( rxhtmlTag, "<$1></$2>" );
      +	},
      +
      +	clone: function( elem, dataAndEvents, deepDataAndEvents ) {
      +		var i, l, srcElements, destElements,
      +			clone = elem.cloneNode( true ),
      +			inPage = jQuery.contains( elem.ownerDocument, elem );
      +
      +		// Fix IE cloning issues
      +		if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&
      +				!jQuery.isXMLDoc( elem ) ) {
      +
      +			// We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2
      +			destElements = getAll( clone );
      +			srcElements = getAll( elem );
      +
      +			for ( i = 0, l = srcElements.length; i < l; i++ ) {
      +				fixInput( srcElements[ i ], destElements[ i ] );
      +			}
      +		}
      +
      +		// Copy the events from the original to the clone
      +		if ( dataAndEvents ) {
      +			if ( deepDataAndEvents ) {
      +				srcElements = srcElements || getAll( elem );
      +				destElements = destElements || getAll( clone );
      +
      +				for ( i = 0, l = srcElements.length; i < l; i++ ) {
      +					cloneCopyEvent( srcElements[ i ], destElements[ i ] );
      +				}
      +			} else {
      +				cloneCopyEvent( elem, clone );
      +			}
      +		}
      +
      +		// Preserve script evaluation history
      +		destElements = getAll( clone, "script" );
      +		if ( destElements.length > 0 ) {
      +			setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
      +		}
      +
      +		// Return the cloned set
      +		return clone;
      +	},
      +
      +	cleanData: function( elems ) {
      +		var data, elem, type,
      +			special = jQuery.event.special,
      +			i = 0;
      +
      +		for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {
      +			if ( acceptData( elem ) ) {
      +				if ( ( data = elem[ dataPriv.expando ] ) ) {
      +					if ( data.events ) {
      +						for ( type in data.events ) {
      +							if ( special[ type ] ) {
      +								jQuery.event.remove( elem, type );
      +
      +							// This is a shortcut to avoid jQuery.event.remove's overhead
      +							} else {
      +								jQuery.removeEvent( elem, type, data.handle );
      +							}
      +						}
      +					}
      +
      +					// Support: Chrome <=35 - 45+
      +					// Assign undefined instead of using delete, see Data#remove
      +					elem[ dataPriv.expando ] = undefined;
      +				}
      +				if ( elem[ dataUser.expando ] ) {
      +
      +					// Support: Chrome <=35 - 45+
      +					// Assign undefined instead of using delete, see Data#remove
      +					elem[ dataUser.expando ] = undefined;
      +				}
      +			}
      +		}
      +	}
      +} );
      +
      +jQuery.fn.extend( {
      +	detach: function( selector ) {
      +		return remove( this, selector, true );
      +	},
      +
      +	remove: function( selector ) {
      +		return remove( this, selector );
      +	},
      +
      +	text: function( value ) {
      +		return access( this, function( value ) {
      +			return value === undefined ?
      +				jQuery.text( this ) :
      +				this.empty().each( function() {
      +					if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
      +						this.textContent = value;
      +					}
      +				} );
      +		}, null, value, arguments.length );
      +	},
      +
      +	append: function() {
      +		return domManip( this, arguments, function( elem ) {
      +			if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
      +				var target = manipulationTarget( this, elem );
      +				target.appendChild( elem );
      +			}
      +		} );
      +	},
      +
      +	prepend: function() {
      +		return domManip( this, arguments, function( elem ) {
      +			if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
      +				var target = manipulationTarget( this, elem );
      +				target.insertBefore( elem, target.firstChild );
      +			}
      +		} );
      +	},
      +
      +	before: function() {
      +		return domManip( this, arguments, function( elem ) {
      +			if ( this.parentNode ) {
      +				this.parentNode.insertBefore( elem, this );
      +			}
      +		} );
      +	},
      +
      +	after: function() {
      +		return domManip( this, arguments, function( elem ) {
      +			if ( this.parentNode ) {
      +				this.parentNode.insertBefore( elem, this.nextSibling );
      +			}
      +		} );
      +	},
      +
      +	empty: function() {
      +		var elem,
      +			i = 0;
      +
      +		for ( ; ( elem = this[ i ] ) != null; i++ ) {
      +			if ( elem.nodeType === 1 ) {
      +
      +				// Prevent memory leaks
      +				jQuery.cleanData( getAll( elem, false ) );
      +
      +				// Remove any remaining nodes
      +				elem.textContent = "";
      +			}
      +		}
      +
      +		return this;
      +	},
      +
      +	clone: function( dataAndEvents, deepDataAndEvents ) {
      +		dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
      +		deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
      +
      +		return this.map( function() {
      +			return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
      +		} );
      +	},
      +
      +	html: function( value ) {
      +		return access( this, function( value ) {
      +			var elem = this[ 0 ] || {},
      +				i = 0,
      +				l = this.length;
      +
      +			if ( value === undefined && elem.nodeType === 1 ) {
      +				return elem.innerHTML;
      +			}
      +
      +			// See if we can take a shortcut and just use innerHTML
      +			if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
      +				!wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) {
      +
      +				value = jQuery.htmlPrefilter( value );
      +
      +				try {
      +					for ( ; i < l; i++ ) {
      +						elem = this[ i ] || {};
      +
      +						// Remove element nodes and prevent memory leaks
      +						if ( elem.nodeType === 1 ) {
      +							jQuery.cleanData( getAll( elem, false ) );
      +							elem.innerHTML = value;
      +						}
      +					}
      +
      +					elem = 0;
      +
      +				// If using innerHTML throws an exception, use the fallback method
      +				} catch ( e ) {}
      +			}
      +
      +			if ( elem ) {
      +				this.empty().append( value );
      +			}
      +		}, null, value, arguments.length );
      +	},
      +
      +	replaceWith: function() {
      +		var ignored = [];
      +
      +		// Make the changes, replacing each non-ignored context element with the new content
      +		return domManip( this, arguments, function( elem ) {
      +			var parent = this.parentNode;
      +
      +			if ( jQuery.inArray( this, ignored ) < 0 ) {
      +				jQuery.cleanData( getAll( this ) );
      +				if ( parent ) {
      +					parent.replaceChild( elem, this );
      +				}
      +			}
      +
      +		// Force callback invocation
      +		}, ignored );
      +	}
      +} );
      +
      +jQuery.each( {
      +	appendTo: "append",
      +	prependTo: "prepend",
      +	insertBefore: "before",
      +	insertAfter: "after",
      +	replaceAll: "replaceWith"
      +}, function( name, original ) {
      +	jQuery.fn[ name ] = function( selector ) {
      +		var elems,
      +			ret = [],
      +			insert = jQuery( selector ),
      +			last = insert.length - 1,
      +			i = 0;
      +
      +		for ( ; i <= last; i++ ) {
      +			elems = i === last ? this : this.clone( true );
      +			jQuery( insert[ i ] )[ original ]( elems );
      +
      +			// Support: Android <=4.0 only, PhantomJS 1 only
      +			// .get() because push.apply(_, arraylike) throws on ancient WebKit
      +			push.apply( ret, elems.get() );
      +		}
      +
      +		return this.pushStack( ret );
      +	};
      +} );
      +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
      +
      +var getStyles = function( elem ) {
      +
      +		// Support: IE <=11 only, Firefox <=30 (#15098, #14150)
      +		// IE throws on elements created in popups
      +		// FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
      +		var view = elem.ownerDocument.defaultView;
      +
      +		if ( !view || !view.opener ) {
      +			view = window;
      +		}
      +
      +		return view.getComputedStyle( elem );
      +	};
      +
      +var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" );
      +
      +
      +
      +( function() {
      +
      +	// Executing both pixelPosition & boxSizingReliable tests require only one layout
      +	// so they're executed at the same time to save the second computation.
      +	function computeStyleTests() {
      +
      +		// This is a singleton, we need to execute it only once
      +		if ( !div ) {
      +			return;
      +		}
      +
      +		container.style.cssText = "position:absolute;left:-11111px;width:60px;" +
      +			"margin-top:1px;padding:0;border:0";
      +		div.style.cssText =
      +			"position:relative;display:block;box-sizing:border-box;overflow:scroll;" +
      +			"margin:auto;border:1px;padding:1px;" +
      +			"width:60%;top:1%";
      +		documentElement.appendChild( container ).appendChild( div );
      +
      +		var divStyle = window.getComputedStyle( div );
      +		pixelPositionVal = divStyle.top !== "1%";
      +
      +		// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44
      +		reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;
      +
      +		// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3
      +		// Some styles come back with percentage values, even though they shouldn't
      +		div.style.right = "60%";
      +		pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;
      +
      +		// Support: IE 9 - 11 only
      +		// Detect misreporting of content dimensions for box-sizing:border-box elements
      +		boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;
      +
      +		// Support: IE 9 only
      +		// Detect overflow:scroll screwiness (gh-3699)
      +		div.style.position = "absolute";
      +		scrollboxSizeVal = div.offsetWidth === 36 || "absolute";
      +
      +		documentElement.removeChild( container );
      +
      +		// Nullify the div so it wouldn't be stored in the memory and
      +		// it will also be a sign that checks already performed
      +		div = null;
      +	}
      +
      +	function roundPixelMeasures( measure ) {
      +		return Math.round( parseFloat( measure ) );
      +	}
      +
      +	var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,
      +		reliableMarginLeftVal,
      +		container = document.createElement( "div" ),
      +		div = document.createElement( "div" );
      +
      +	// Finish early in limited (non-browser) environments
      +	if ( !div.style ) {
      +		return;
      +	}
      +
      +	// Support: IE <=9 - 11 only
      +	// Style of cloned element affects source element cloned (#8908)
      +	div.style.backgroundClip = "content-box";
      +	div.cloneNode( true ).style.backgroundClip = "";
      +	support.clearCloneStyle = div.style.backgroundClip === "content-box";
      +
      +	jQuery.extend( support, {
      +		boxSizingReliable: function() {
      +			computeStyleTests();
      +			return boxSizingReliableVal;
      +		},
      +		pixelBoxStyles: function() {
      +			computeStyleTests();
      +			return pixelBoxStylesVal;
      +		},
      +		pixelPosition: function() {
      +			computeStyleTests();
      +			return pixelPositionVal;
      +		},
      +		reliableMarginLeft: function() {
      +			computeStyleTests();
      +			return reliableMarginLeftVal;
      +		},
      +		scrollboxSize: function() {
      +			computeStyleTests();
      +			return scrollboxSizeVal;
      +		}
      +	} );
      +} )();
      +
      +
      +function curCSS( elem, name, computed ) {
      +	var width, minWidth, maxWidth, ret,
      +
      +		// Support: Firefox 51+
      +		// Retrieving style before computed somehow
      +		// fixes an issue with getting wrong values
      +		// on detached elements
      +		style = elem.style;
      +
      +	computed = computed || getStyles( elem );
      +
      +	// getPropertyValue is needed for:
      +	//   .css('filter') (IE 9 only, #12537)
      +	//   .css('--customProperty) (#3144)
      +	if ( computed ) {
      +		ret = computed.getPropertyValue( name ) || computed[ name ];
      +
      +		if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) {
      +			ret = jQuery.style( elem, name );
      +		}
      +
      +		// A tribute to the "awesome hack by Dean Edwards"
      +		// Android Browser returns percentage for some values,
      +		// but width seems to be reliably pixels.
      +		// This is against the CSSOM draft spec:
      +		// https://drafts.csswg.org/cssom/#resolved-values
      +		if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {
      +
      +			// Remember the original values
      +			width = style.width;
      +			minWidth = style.minWidth;
      +			maxWidth = style.maxWidth;
      +
      +			// Put in the new values to get a computed value out
      +			style.minWidth = style.maxWidth = style.width = ret;
      +			ret = computed.width;
      +
      +			// Revert the changed values
      +			style.width = width;
      +			style.minWidth = minWidth;
      +			style.maxWidth = maxWidth;
      +		}
      +	}
      +
      +	return ret !== undefined ?
      +
      +		// Support: IE <=9 - 11 only
      +		// IE returns zIndex value as an integer.
      +		ret + "" :
      +		ret;
      +}
      +
      +
      +function addGetHookIf( conditionFn, hookFn ) {
      +
      +	// Define the hook, we'll check on the first run if it's really needed.
      +	return {
      +		get: function() {
      +			if ( conditionFn() ) {
      +
      +				// Hook not needed (or it's not possible to use it due
      +				// to missing dependency), remove it.
      +				delete this.get;
      +				return;
      +			}
      +
      +			// Hook needed; redefine it so that the support test is not executed again.
      +			return ( this.get = hookFn ).apply( this, arguments );
      +		}
      +	};
      +}
      +
      +
      +var
      +
      +	// Swappable if display is none or starts with table
      +	// except "table", "table-cell", or "table-caption"
      +	// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
      +	rdisplayswap = /^(none|table(?!-c[ea]).+)/,
      +	rcustomProp = /^--/,
      +	cssShow = { position: "absolute", visibility: "hidden", display: "block" },
      +	cssNormalTransform = {
      +		letterSpacing: "0",
      +		fontWeight: "400"
      +	},
      +
      +	cssPrefixes = [ "Webkit", "Moz", "ms" ],
      +	emptyStyle = document.createElement( "div" ).style;
      +
      +// Return a css property mapped to a potentially vendor prefixed property
      +function vendorPropName( name ) {
      +
      +	// Shortcut for names that are not vendor prefixed
      +	if ( name in emptyStyle ) {
      +		return name;
      +	}
      +
      +	// Check for vendor prefixed names
      +	var capName = name[ 0 ].toUpperCase() + name.slice( 1 ),
      +		i = cssPrefixes.length;
      +
      +	while ( i-- ) {
      +		name = cssPrefixes[ i ] + capName;
      +		if ( name in emptyStyle ) {
      +			return name;
      +		}
      +	}
      +}
      +
      +// Return a property mapped along what jQuery.cssProps suggests or to
      +// a vendor prefixed property.
      +function finalPropName( name ) {
      +	var ret = jQuery.cssProps[ name ];
      +	if ( !ret ) {
      +		ret = jQuery.cssProps[ name ] = vendorPropName( name ) || name;
      +	}
      +	return ret;
      +}
      +
      +function setPositiveNumber( elem, value, subtract ) {
      +
      +	// Any relative (+/-) values have already been
      +	// normalized at this point
      +	var matches = rcssNum.exec( value );
      +	return matches ?
      +
      +		// Guard against undefined "subtract", e.g., when used as in cssHooks
      +		Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) :
      +		value;
      +}
      +
      +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {
      +	var i = dimension === "width" ? 1 : 0,
      +		extra = 0,
      +		delta = 0;
      +
      +	// Adjustment may not be necessary
      +	if ( box === ( isBorderBox ? "border" : "content" ) ) {
      +		return 0;
      +	}
      +
      +	for ( ; i < 4; i += 2 ) {
      +
      +		// Both box models exclude margin
      +		if ( box === "margin" ) {
      +			delta += jQuery.css( elem, box + cssExpand[ i ], true, styles );
      +		}
      +
      +		// If we get here with a content-box, we're seeking "padding" or "border" or "margin"
      +		if ( !isBorderBox ) {
      +
      +			// Add padding
      +			delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
      +
      +			// For "border" or "margin", add border
      +			if ( box !== "padding" ) {
      +				delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
      +
      +			// But still keep track of it otherwise
      +			} else {
      +				extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
      +			}
      +
      +		// If we get here with a border-box (content + padding + border), we're seeking "content" or
      +		// "padding" or "margin"
      +		} else {
      +
      +			// For "content", subtract padding
      +			if ( box === "content" ) {
      +				delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
      +			}
      +
      +			// For "content" or "padding", subtract border
      +			if ( box !== "margin" ) {
      +				delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
      +			}
      +		}
      +	}
      +
      +	// Account for positive content-box scroll gutter when requested by providing computedVal
      +	if ( !isBorderBox && computedVal >= 0 ) {
      +
      +		// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border
      +		// Assuming integer scroll gutter, subtract the rest and round down
      +		delta += Math.max( 0, Math.ceil(
      +			elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -
      +			computedVal -
      +			delta -
      +			extra -
      +			0.5
      +		) );
      +	}
      +
      +	return delta;
      +}
      +
      +function getWidthOrHeight( elem, dimension, extra ) {
      +
      +	// Start with computed style
      +	var styles = getStyles( elem ),
      +		val = curCSS( elem, dimension, styles ),
      +		isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
      +		valueIsBorderBox = isBorderBox;
      +
      +	// Support: Firefox <=54
      +	// Return a confounding non-pixel value or feign ignorance, as appropriate.
      +	if ( rnumnonpx.test( val ) ) {
      +		if ( !extra ) {
      +			return val;
      +		}
      +		val = "auto";
      +	}
      +
      +	// Check for style in case a browser which returns unreliable values
      +	// for getComputedStyle silently falls back to the reliable elem.style
      +	valueIsBorderBox = valueIsBorderBox &&
      +		( support.boxSizingReliable() || val === elem.style[ dimension ] );
      +
      +	// Fall back to offsetWidth/offsetHeight when value is "auto"
      +	// This happens for inline elements with no explicit setting (gh-3571)
      +	// Support: Android <=4.1 - 4.3 only
      +	// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)
      +	if ( val === "auto" ||
      +		!parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) {
      +
      +		val = elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ];
      +
      +		// offsetWidth/offsetHeight provide border-box values
      +		valueIsBorderBox = true;
      +	}
      +
      +	// Normalize "" and auto
      +	val = parseFloat( val ) || 0;
      +
      +	// Adjust for the element's box model
      +	return ( val +
      +		boxModelAdjustment(
      +			elem,
      +			dimension,
      +			extra || ( isBorderBox ? "border" : "content" ),
      +			valueIsBorderBox,
      +			styles,
      +
      +			// Provide the current computed size to request scroll gutter calculation (gh-3589)
      +			val
      +		)
      +	) + "px";
      +}
      +
      +jQuery.extend( {
      +
      +	// Add in style property hooks for overriding the default
      +	// behavior of getting and setting a style property
      +	cssHooks: {
      +		opacity: {
      +			get: function( elem, computed ) {
      +				if ( computed ) {
      +
      +					// We should always get a number back from opacity
      +					var ret = curCSS( elem, "opacity" );
      +					return ret === "" ? "1" : ret;
      +				}
      +			}
      +		}
      +	},
      +
      +	// Don't automatically add "px" to these possibly-unitless properties
      +	cssNumber: {
      +		"animationIterationCount": true,
      +		"columnCount": true,
      +		"fillOpacity": true,
      +		"flexGrow": true,
      +		"flexShrink": true,
      +		"fontWeight": true,
      +		"lineHeight": true,
      +		"opacity": true,
      +		"order": true,
      +		"orphans": true,
      +		"widows": true,
      +		"zIndex": true,
      +		"zoom": true
      +	},
      +
      +	// Add in properties whose names you wish to fix before
      +	// setting or getting the value
      +	cssProps: {},
      +
      +	// Get and set the style property on a DOM Node
      +	style: function( elem, name, value, extra ) {
      +
      +		// Don't set styles on text and comment nodes
      +		if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
      +			return;
      +		}
      +
      +		// Make sure that we're working with the right name
      +		var ret, type, hooks,
      +			origName = camelCase( name ),
      +			isCustomProp = rcustomProp.test( name ),
      +			style = elem.style;
      +
      +		// Make sure that we're working with the right name. We don't
      +		// want to query the value if it is a CSS custom property
      +		// since they are user-defined.
      +		if ( !isCustomProp ) {
      +			name = finalPropName( origName );
      +		}
      +
      +		// Gets hook for the prefixed version, then unprefixed version
      +		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
      +
      +		// Check if we're setting a value
      +		if ( value !== undefined ) {
      +			type = typeof value;
      +
      +			// Convert "+=" or "-=" to relative numbers (#7345)
      +			if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {
      +				value = adjustCSS( elem, name, ret );
      +
      +				// Fixes bug #9237
      +				type = "number";
      +			}
      +
      +			// Make sure that null and NaN values aren't set (#7116)
      +			if ( value == null || value !== value ) {
      +				return;
      +			}
      +
      +			// If a number was passed in, add the unit (except for certain CSS properties)
      +			if ( type === "number" ) {
      +				value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" );
      +			}
      +
      +			// background-* props affect original clone's values
      +			if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) {
      +				style[ name ] = "inherit";
      +			}
      +
      +			// If a hook was provided, use that value, otherwise just set the specified value
      +			if ( !hooks || !( "set" in hooks ) ||
      +				( value = hooks.set( elem, value, extra ) ) !== undefined ) {
      +
      +				if ( isCustomProp ) {
      +					style.setProperty( name, value );
      +				} else {
      +					style[ name ] = value;
      +				}
      +			}
      +
      +		} else {
      +
      +			// If a hook was provided get the non-computed value from there
      +			if ( hooks && "get" in hooks &&
      +				( ret = hooks.get( elem, false, extra ) ) !== undefined ) {
      +
      +				return ret;
      +			}
      +
      +			// Otherwise just get the value from the style object
      +			return style[ name ];
      +		}
      +	},
      +
      +	css: function( elem, name, extra, styles ) {
      +		var val, num, hooks,
      +			origName = camelCase( name ),
      +			isCustomProp = rcustomProp.test( name );
      +
      +		// Make sure that we're working with the right name. We don't
      +		// want to modify the value if it is a CSS custom property
      +		// since they are user-defined.
      +		if ( !isCustomProp ) {
      +			name = finalPropName( origName );
      +		}
      +
      +		// Try prefixed name followed by the unprefixed name
      +		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
      +
      +		// If a hook was provided get the computed value from there
      +		if ( hooks && "get" in hooks ) {
      +			val = hooks.get( elem, true, extra );
      +		}
      +
      +		// Otherwise, if a way to get the computed value exists, use that
      +		if ( val === undefined ) {
      +			val = curCSS( elem, name, styles );
      +		}
      +
      +		// Convert "normal" to computed value
      +		if ( val === "normal" && name in cssNormalTransform ) {
      +			val = cssNormalTransform[ name ];
      +		}
      +
      +		// Make numeric if forced or a qualifier was provided and val looks numeric
      +		if ( extra === "" || extra ) {
      +			num = parseFloat( val );
      +			return extra === true || isFinite( num ) ? num || 0 : val;
      +		}
      +
      +		return val;
      +	}
      +} );
      +
      +jQuery.each( [ "height", "width" ], function( i, dimension ) {
      +	jQuery.cssHooks[ dimension ] = {
      +		get: function( elem, computed, extra ) {
      +			if ( computed ) {
      +
      +				// Certain elements can have dimension info if we invisibly show them
      +				// but it must have a current display style that would benefit
      +				return rdisplayswap.test( jQuery.css( elem, "display" ) ) &&
      +
      +					// Support: Safari 8+
      +					// Table columns in Safari have non-zero offsetWidth & zero
      +					// getBoundingClientRect().width unless display is changed.
      +					// Support: IE <=11 only
      +					// Running getBoundingClientRect on a disconnected node
      +					// in IE throws an error.
      +					( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?
      +						swap( elem, cssShow, function() {
      +							return getWidthOrHeight( elem, dimension, extra );
      +						} ) :
      +						getWidthOrHeight( elem, dimension, extra );
      +			}
      +		},
      +
      +		set: function( elem, value, extra ) {
      +			var matches,
      +				styles = getStyles( elem ),
      +				isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
      +				subtract = extra && boxModelAdjustment(
      +					elem,
      +					dimension,
      +					extra,
      +					isBorderBox,
      +					styles
      +				);
      +
      +			// Account for unreliable border-box dimensions by comparing offset* to computed and
      +			// faking a content-box to get border and padding (gh-3699)
      +			if ( isBorderBox && support.scrollboxSize() === styles.position ) {
      +				subtract -= Math.ceil(
      +					elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -
      +					parseFloat( styles[ dimension ] ) -
      +					boxModelAdjustment( elem, dimension, "border", false, styles ) -
      +					0.5
      +				);
      +			}
      +
      +			// Convert to pixels if value adjustment is needed
      +			if ( subtract && ( matches = rcssNum.exec( value ) ) &&
      +				( matches[ 3 ] || "px" ) !== "px" ) {
      +
      +				elem.style[ dimension ] = value;
      +				value = jQuery.css( elem, dimension );
      +			}
      +
      +			return setPositiveNumber( elem, value, subtract );
      +		}
      +	};
      +} );
      +
      +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,
      +	function( elem, computed ) {
      +		if ( computed ) {
      +			return ( parseFloat( curCSS( elem, "marginLeft" ) ) ||
      +				elem.getBoundingClientRect().left -
      +					swap( elem, { marginLeft: 0 }, function() {
      +						return elem.getBoundingClientRect().left;
      +					} )
      +				) + "px";
      +		}
      +	}
      +);
      +
      +// These hooks are used by animate to expand properties
      +jQuery.each( {
      +	margin: "",
      +	padding: "",
      +	border: "Width"
      +}, function( prefix, suffix ) {
      +	jQuery.cssHooks[ prefix + suffix ] = {
      +		expand: function( value ) {
      +			var i = 0,
      +				expanded = {},
      +
      +				// Assumes a single number if not a string
      +				parts = typeof value === "string" ? value.split( " " ) : [ value ];
      +
      +			for ( ; i < 4; i++ ) {
      +				expanded[ prefix + cssExpand[ i ] + suffix ] =
      +					parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
      +			}
      +
      +			return expanded;
      +		}
      +	};
      +
      +	if ( prefix !== "margin" ) {
      +		jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
      +	}
      +} );
      +
      +jQuery.fn.extend( {
      +	css: function( name, value ) {
      +		return access( this, function( elem, name, value ) {
      +			var styles, len,
      +				map = {},
      +				i = 0;
      +
      +			if ( Array.isArray( name ) ) {
      +				styles = getStyles( elem );
      +				len = name.length;
      +
      +				for ( ; i < len; i++ ) {
      +					map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );
      +				}
      +
      +				return map;
      +			}
      +
      +			return value !== undefined ?
      +				jQuery.style( elem, name, value ) :
      +				jQuery.css( elem, name );
      +		}, name, value, arguments.length > 1 );
      +	}
      +} );
      +
      +
      +function Tween( elem, options, prop, end, easing ) {
      +	return new Tween.prototype.init( elem, options, prop, end, easing );
      +}
      +jQuery.Tween = Tween;
      +
      +Tween.prototype = {
      +	constructor: Tween,
      +	init: function( elem, options, prop, end, easing, unit ) {
      +		this.elem = elem;
      +		this.prop = prop;
      +		this.easing = easing || jQuery.easing._default;
      +		this.options = options;
      +		this.start = this.now = this.cur();
      +		this.end = end;
      +		this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
      +	},
      +	cur: function() {
      +		var hooks = Tween.propHooks[ this.prop ];
      +
      +		return hooks && hooks.get ?
      +			hooks.get( this ) :
      +			Tween.propHooks._default.get( this );
      +	},
      +	run: function( percent ) {
      +		var eased,
      +			hooks = Tween.propHooks[ this.prop ];
      +
      +		if ( this.options.duration ) {
      +			this.pos = eased = jQuery.easing[ this.easing ](
      +				percent, this.options.duration * percent, 0, 1, this.options.duration
      +			);
      +		} else {
      +			this.pos = eased = percent;
      +		}
      +		this.now = ( this.end - this.start ) * eased + this.start;
      +
      +		if ( this.options.step ) {
      +			this.options.step.call( this.elem, this.now, this );
      +		}
      +
      +		if ( hooks && hooks.set ) {
      +			hooks.set( this );
      +		} else {
      +			Tween.propHooks._default.set( this );
      +		}
      +		return this;
      +	}
      +};
      +
      +Tween.prototype.init.prototype = Tween.prototype;
      +
      +Tween.propHooks = {
      +	_default: {
      +		get: function( tween ) {
      +			var result;
      +
      +			// Use a property on the element directly when it is not a DOM element,
      +			// or when there is no matching style property that exists.
      +			if ( tween.elem.nodeType !== 1 ||
      +				tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {
      +				return tween.elem[ tween.prop ];
      +			}
      +
      +			// Passing an empty string as a 3rd parameter to .css will automatically
      +			// attempt a parseFloat and fallback to a string if the parse fails.
      +			// Simple values such as "10px" are parsed to Float;
      +			// complex values such as "rotate(1rad)" are returned as-is.
      +			result = jQuery.css( tween.elem, tween.prop, "" );
      +
      +			// Empty strings, null, undefined and "auto" are converted to 0.
      +			return !result || result === "auto" ? 0 : result;
      +		},
      +		set: function( tween ) {
      +
      +			// Use step hook for back compat.
      +			// Use cssHook if its there.
      +			// Use .style if available and use plain properties where available.
      +			if ( jQuery.fx.step[ tween.prop ] ) {
      +				jQuery.fx.step[ tween.prop ]( tween );
      +			} else if ( tween.elem.nodeType === 1 &&
      +				( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null ||
      +					jQuery.cssHooks[ tween.prop ] ) ) {
      +				jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
      +			} else {
      +				tween.elem[ tween.prop ] = tween.now;
      +			}
      +		}
      +	}
      +};
      +
      +// Support: IE <=9 only
      +// Panic based approach to setting things on disconnected nodes
      +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
      +	set: function( tween ) {
      +		if ( tween.elem.nodeType && tween.elem.parentNode ) {
      +			tween.elem[ tween.prop ] = tween.now;
      +		}
      +	}
      +};
      +
      +jQuery.easing = {
      +	linear: function( p ) {
      +		return p;
      +	},
      +	swing: function( p ) {
      +		return 0.5 - Math.cos( p * Math.PI ) / 2;
      +	},
      +	_default: "swing"
      +};
      +
      +jQuery.fx = Tween.prototype.init;
      +
      +// Back compat <1.8 extension point
      +jQuery.fx.step = {};
      +
      +
      +
      +
      +var
      +	fxNow, inProgress,
      +	rfxtypes = /^(?:toggle|show|hide)$/,
      +	rrun = /queueHooks$/;
      +
      +function schedule() {
      +	if ( inProgress ) {
      +		if ( document.hidden === false && window.requestAnimationFrame ) {
      +			window.requestAnimationFrame( schedule );
      +		} else {
      +			window.setTimeout( schedule, jQuery.fx.interval );
      +		}
      +
      +		jQuery.fx.tick();
      +	}
      +}
      +
      +// Animations created synchronously will run synchronously
      +function createFxNow() {
      +	window.setTimeout( function() {
      +		fxNow = undefined;
      +	} );
      +	return ( fxNow = Date.now() );
      +}
      +
      +// Generate parameters to create a standard animation
      +function genFx( type, includeWidth ) {
      +	var which,
      +		i = 0,
      +		attrs = { height: type };
      +
      +	// If we include width, step value is 1 to do all cssExpand values,
      +	// otherwise step value is 2 to skip over Left and Right
      +	includeWidth = includeWidth ? 1 : 0;
      +	for ( ; i < 4; i += 2 - includeWidth ) {
      +		which = cssExpand[ i ];
      +		attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
      +	}
      +
      +	if ( includeWidth ) {
      +		attrs.opacity = attrs.width = type;
      +	}
      +
      +	return attrs;
      +}
      +
      +function createTween( value, prop, animation ) {
      +	var tween,
      +		collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ),
      +		index = 0,
      +		length = collection.length;
      +	for ( ; index < length; index++ ) {
      +		if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {
      +
      +			// We're done with this property
      +			return tween;
      +		}
      +	}
      +}
      +
      +function defaultPrefilter( elem, props, opts ) {
      +	var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,
      +		isBox = "width" in props || "height" in props,
      +		anim = this,
      +		orig = {},
      +		style = elem.style,
      +		hidden = elem.nodeType && isHiddenWithinTree( elem ),
      +		dataShow = dataPriv.get( elem, "fxshow" );
      +
      +	// Queue-skipping animations hijack the fx hooks
      +	if ( !opts.queue ) {
      +		hooks = jQuery._queueHooks( elem, "fx" );
      +		if ( hooks.unqueued == null ) {
      +			hooks.unqueued = 0;
      +			oldfire = hooks.empty.fire;
      +			hooks.empty.fire = function() {
      +				if ( !hooks.unqueued ) {
      +					oldfire();
      +				}
      +			};
      +		}
      +		hooks.unqueued++;
      +
      +		anim.always( function() {
      +
      +			// Ensure the complete handler is called before this completes
      +			anim.always( function() {
      +				hooks.unqueued--;
      +				if ( !jQuery.queue( elem, "fx" ).length ) {
      +					hooks.empty.fire();
      +				}
      +			} );
      +		} );
      +	}
      +
      +	// Detect show/hide animations
      +	for ( prop in props ) {
      +		value = props[ prop ];
      +		if ( rfxtypes.test( value ) ) {
      +			delete props[ prop ];
      +			toggle = toggle || value === "toggle";
      +			if ( value === ( hidden ? "hide" : "show" ) ) {
      +
      +				// Pretend to be hidden if this is a "show" and
      +				// there is still data from a stopped show/hide
      +				if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
      +					hidden = true;
      +
      +				// Ignore all other no-op show/hide data
      +				} else {
      +					continue;
      +				}
      +			}
      +			orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
      +		}
      +	}
      +
      +	// Bail out if this is a no-op like .hide().hide()
      +	propTween = !jQuery.isEmptyObject( props );
      +	if ( !propTween && jQuery.isEmptyObject( orig ) ) {
      +		return;
      +	}
      +
      +	// Restrict "overflow" and "display" styles during box animations
      +	if ( isBox && elem.nodeType === 1 ) {
      +
      +		// Support: IE <=9 - 11, Edge 12 - 15
      +		// Record all 3 overflow attributes because IE does not infer the shorthand
      +		// from identically-valued overflowX and overflowY and Edge just mirrors
      +		// the overflowX value there.
      +		opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
      +
      +		// Identify a display type, preferring old show/hide data over the CSS cascade
      +		restoreDisplay = dataShow && dataShow.display;
      +		if ( restoreDisplay == null ) {
      +			restoreDisplay = dataPriv.get( elem, "display" );
      +		}
      +		display = jQuery.css( elem, "display" );
      +		if ( display === "none" ) {
      +			if ( restoreDisplay ) {
      +				display = restoreDisplay;
      +			} else {
      +
      +				// Get nonempty value(s) by temporarily forcing visibility
      +				showHide( [ elem ], true );
      +				restoreDisplay = elem.style.display || restoreDisplay;
      +				display = jQuery.css( elem, "display" );
      +				showHide( [ elem ] );
      +			}
      +		}
      +
      +		// Animate inline elements as inline-block
      +		if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) {
      +			if ( jQuery.css( elem, "float" ) === "none" ) {
      +
      +				// Restore the original display value at the end of pure show/hide animations
      +				if ( !propTween ) {
      +					anim.done( function() {
      +						style.display = restoreDisplay;
      +					} );
      +					if ( restoreDisplay == null ) {
      +						display = style.display;
      +						restoreDisplay = display === "none" ? "" : display;
      +					}
      +				}
      +				style.display = "inline-block";
      +			}
      +		}
      +	}
      +
      +	if ( opts.overflow ) {
      +		style.overflow = "hidden";
      +		anim.always( function() {
      +			style.overflow = opts.overflow[ 0 ];
      +			style.overflowX = opts.overflow[ 1 ];
      +			style.overflowY = opts.overflow[ 2 ];
      +		} );
      +	}
      +
      +	// Implement show/hide animations
      +	propTween = false;
      +	for ( prop in orig ) {
      +
      +		// General show/hide setup for this element animation
      +		if ( !propTween ) {
      +			if ( dataShow ) {
      +				if ( "hidden" in dataShow ) {
      +					hidden = dataShow.hidden;
      +				}
      +			} else {
      +				dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } );
      +			}
      +
      +			// Store hidden/visible for toggle so `.stop().toggle()` "reverses"
      +			if ( toggle ) {
      +				dataShow.hidden = !hidden;
      +			}
      +
      +			// Show elements before animating them
      +			if ( hidden ) {
      +				showHide( [ elem ], true );
      +			}
      +
      +			/* eslint-disable no-loop-func */
      +
      +			anim.done( function() {
      +
      +			/* eslint-enable no-loop-func */
      +
      +				// The final step of a "hide" animation is actually hiding the element
      +				if ( !hidden ) {
      +					showHide( [ elem ] );
      +				}
      +				dataPriv.remove( elem, "fxshow" );
      +				for ( prop in orig ) {
      +					jQuery.style( elem, prop, orig[ prop ] );
      +				}
      +			} );
      +		}
      +
      +		// Per-property setup
      +		propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
      +		if ( !( prop in dataShow ) ) {
      +			dataShow[ prop ] = propTween.start;
      +			if ( hidden ) {
      +				propTween.end = propTween.start;
      +				propTween.start = 0;
      +			}
      +		}
      +	}
      +}
      +
      +function propFilter( props, specialEasing ) {
      +	var index, name, easing, value, hooks;
      +
      +	// camelCase, specialEasing and expand cssHook pass
      +	for ( index in props ) {
      +		name = camelCase( index );
      +		easing = specialEasing[ name ];
      +		value = props[ index ];
      +		if ( Array.isArray( value ) ) {
      +			easing = value[ 1 ];
      +			value = props[ index ] = value[ 0 ];
      +		}
      +
      +		if ( index !== name ) {
      +			props[ name ] = value;
      +			delete props[ index ];
      +		}
      +
      +		hooks = jQuery.cssHooks[ name ];
      +		if ( hooks && "expand" in hooks ) {
      +			value = hooks.expand( value );
      +			delete props[ name ];
      +
      +			// Not quite $.extend, this won't overwrite existing keys.
      +			// Reusing 'index' because we have the correct "name"
      +			for ( index in value ) {
      +				if ( !( index in props ) ) {
      +					props[ index ] = value[ index ];
      +					specialEasing[ index ] = easing;
      +				}
      +			}
      +		} else {
      +			specialEasing[ name ] = easing;
      +		}
      +	}
      +}
      +
      +function Animation( elem, properties, options ) {
      +	var result,
      +		stopped,
      +		index = 0,
      +		length = Animation.prefilters.length,
      +		deferred = jQuery.Deferred().always( function() {
      +
      +			// Don't match elem in the :animated selector
      +			delete tick.elem;
      +		} ),
      +		tick = function() {
      +			if ( stopped ) {
      +				return false;
      +			}
      +			var currentTime = fxNow || createFxNow(),
      +				remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
      +
      +				// Support: Android 2.3 only
      +				// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)
      +				temp = remaining / animation.duration || 0,
      +				percent = 1 - temp,
      +				index = 0,
      +				length = animation.tweens.length;
      +
      +			for ( ; index < length; index++ ) {
      +				animation.tweens[ index ].run( percent );
      +			}
      +
      +			deferred.notifyWith( elem, [ animation, percent, remaining ] );
      +
      +			// If there's more to do, yield
      +			if ( percent < 1 && length ) {
      +				return remaining;
      +			}
      +
      +			// If this was an empty animation, synthesize a final progress notification
      +			if ( !length ) {
      +				deferred.notifyWith( elem, [ animation, 1, 0 ] );
      +			}
      +
      +			// Resolve the animation and report its conclusion
      +			deferred.resolveWith( elem, [ animation ] );
      +			return false;
      +		},
      +		animation = deferred.promise( {
      +			elem: elem,
      +			props: jQuery.extend( {}, properties ),
      +			opts: jQuery.extend( true, {
      +				specialEasing: {},
      +				easing: jQuery.easing._default
      +			}, options ),
      +			originalProperties: properties,
      +			originalOptions: options,
      +			startTime: fxNow || createFxNow(),
      +			duration: options.duration,
      +			tweens: [],
      +			createTween: function( prop, end ) {
      +				var tween = jQuery.Tween( elem, animation.opts, prop, end,
      +						animation.opts.specialEasing[ prop ] || animation.opts.easing );
      +				animation.tweens.push( tween );
      +				return tween;
      +			},
      +			stop: function( gotoEnd ) {
      +				var index = 0,
      +
      +					// If we are going to the end, we want to run all the tweens
      +					// otherwise we skip this part
      +					length = gotoEnd ? animation.tweens.length : 0;
      +				if ( stopped ) {
      +					return this;
      +				}
      +				stopped = true;
      +				for ( ; index < length; index++ ) {
      +					animation.tweens[ index ].run( 1 );
      +				}
      +
      +				// Resolve when we played the last frame; otherwise, reject
      +				if ( gotoEnd ) {
      +					deferred.notifyWith( elem, [ animation, 1, 0 ] );
      +					deferred.resolveWith( elem, [ animation, gotoEnd ] );
      +				} else {
      +					deferred.rejectWith( elem, [ animation, gotoEnd ] );
      +				}
      +				return this;
      +			}
      +		} ),
      +		props = animation.props;
      +
      +	propFilter( props, animation.opts.specialEasing );
      +
      +	for ( ; index < length; index++ ) {
      +		result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );
      +		if ( result ) {
      +			if ( isFunction( result.stop ) ) {
      +				jQuery._queueHooks( animation.elem, animation.opts.queue ).stop =
      +					result.stop.bind( result );
      +			}
      +			return result;
      +		}
      +	}
      +
      +	jQuery.map( props, createTween, animation );
      +
      +	if ( isFunction( animation.opts.start ) ) {
      +		animation.opts.start.call( elem, animation );
      +	}
      +
      +	// Attach callbacks from options
      +	animation
      +		.progress( animation.opts.progress )
      +		.done( animation.opts.done, animation.opts.complete )
      +		.fail( animation.opts.fail )
      +		.always( animation.opts.always );
      +
      +	jQuery.fx.timer(
      +		jQuery.extend( tick, {
      +			elem: elem,
      +			anim: animation,
      +			queue: animation.opts.queue
      +		} )
      +	);
      +
      +	return animation;
      +}
      +
      +jQuery.Animation = jQuery.extend( Animation, {
      +
      +	tweeners: {
      +		"*": [ function( prop, value ) {
      +			var tween = this.createTween( prop, value );
      +			adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );
      +			return tween;
      +		} ]
      +	},
      +
      +	tweener: function( props, callback ) {
      +		if ( isFunction( props ) ) {
      +			callback = props;
      +			props = [ "*" ];
      +		} else {
      +			props = props.match( rnothtmlwhite );
      +		}
      +
      +		var prop,
      +			index = 0,
      +			length = props.length;
      +
      +		for ( ; index < length; index++ ) {
      +			prop = props[ index ];
      +			Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];
      +			Animation.tweeners[ prop ].unshift( callback );
      +		}
      +	},
      +
      +	prefilters: [ defaultPrefilter ],
      +
      +	prefilter: function( callback, prepend ) {
      +		if ( prepend ) {
      +			Animation.prefilters.unshift( callback );
      +		} else {
      +			Animation.prefilters.push( callback );
      +		}
      +	}
      +} );
      +
      +jQuery.speed = function( speed, easing, fn ) {
      +	var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
      +		complete: fn || !fn && easing ||
      +			isFunction( speed ) && speed,
      +		duration: speed,
      +		easing: fn && easing || easing && !isFunction( easing ) && easing
      +	};
      +
      +	// Go to the end state if fx are off
      +	if ( jQuery.fx.off ) {
      +		opt.duration = 0;
      +
      +	} else {
      +		if ( typeof opt.duration !== "number" ) {
      +			if ( opt.duration in jQuery.fx.speeds ) {
      +				opt.duration = jQuery.fx.speeds[ opt.duration ];
      +
      +			} else {
      +				opt.duration = jQuery.fx.speeds._default;
      +			}
      +		}
      +	}
      +
      +	// Normalize opt.queue - true/undefined/null -> "fx"
      +	if ( opt.queue == null || opt.queue === true ) {
      +		opt.queue = "fx";
      +	}
      +
      +	// Queueing
      +	opt.old = opt.complete;
      +
      +	opt.complete = function() {
      +		if ( isFunction( opt.old ) ) {
      +			opt.old.call( this );
      +		}
      +
      +		if ( opt.queue ) {
      +			jQuery.dequeue( this, opt.queue );
      +		}
      +	};
      +
      +	return opt;
      +};
      +
      +jQuery.fn.extend( {
      +	fadeTo: function( speed, to, easing, callback ) {
      +
      +		// Show any hidden elements after setting opacity to 0
      +		return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show()
      +
      +			// Animate to the value specified
      +			.end().animate( { opacity: to }, speed, easing, callback );
      +	},
      +	animate: function( prop, speed, easing, callback ) {
      +		var empty = jQuery.isEmptyObject( prop ),
      +			optall = jQuery.speed( speed, easing, callback ),
      +			doAnimation = function() {
      +
      +				// Operate on a copy of prop so per-property easing won't be lost
      +				var anim = Animation( this, jQuery.extend( {}, prop ), optall );
      +
      +				// Empty animations, or finishing resolves immediately
      +				if ( empty || dataPriv.get( this, "finish" ) ) {
      +					anim.stop( true );
      +				}
      +			};
      +			doAnimation.finish = doAnimation;
      +
      +		return empty || optall.queue === false ?
      +			this.each( doAnimation ) :
      +			this.queue( optall.queue, doAnimation );
      +	},
      +	stop: function( type, clearQueue, gotoEnd ) {
      +		var stopQueue = function( hooks ) {
      +			var stop = hooks.stop;
      +			delete hooks.stop;
      +			stop( gotoEnd );
      +		};
      +
      +		if ( typeof type !== "string" ) {
      +			gotoEnd = clearQueue;
      +			clearQueue = type;
      +			type = undefined;
      +		}
      +		if ( clearQueue && type !== false ) {
      +			this.queue( type || "fx", [] );
      +		}
      +
      +		return this.each( function() {
      +			var dequeue = true,
      +				index = type != null && type + "queueHooks",
      +				timers = jQuery.timers,
      +				data = dataPriv.get( this );
      +
      +			if ( index ) {
      +				if ( data[ index ] && data[ index ].stop ) {
      +					stopQueue( data[ index ] );
      +				}
      +			} else {
      +				for ( index in data ) {
      +					if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
      +						stopQueue( data[ index ] );
      +					}
      +				}
      +			}
      +
      +			for ( index = timers.length; index--; ) {
      +				if ( timers[ index ].elem === this &&
      +					( type == null || timers[ index ].queue === type ) ) {
      +
      +					timers[ index ].anim.stop( gotoEnd );
      +					dequeue = false;
      +					timers.splice( index, 1 );
      +				}
      +			}
      +
      +			// Start the next in the queue if the last step wasn't forced.
      +			// Timers currently will call their complete callbacks, which
      +			// will dequeue but only if they were gotoEnd.
      +			if ( dequeue || !gotoEnd ) {
      +				jQuery.dequeue( this, type );
      +			}
      +		} );
      +	},
      +	finish: function( type ) {
      +		if ( type !== false ) {
      +			type = type || "fx";
      +		}
      +		return this.each( function() {
      +			var index,
      +				data = dataPriv.get( this ),
      +				queue = data[ type + "queue" ],
      +				hooks = data[ type + "queueHooks" ],
      +				timers = jQuery.timers,
      +				length = queue ? queue.length : 0;
      +
      +			// Enable finishing flag on private data
      +			data.finish = true;
      +
      +			// Empty the queue first
      +			jQuery.queue( this, type, [] );
      +
      +			if ( hooks && hooks.stop ) {
      +				hooks.stop.call( this, true );
      +			}
      +
      +			// Look for any active animations, and finish them
      +			for ( index = timers.length; index--; ) {
      +				if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
      +					timers[ index ].anim.stop( true );
      +					timers.splice( index, 1 );
      +				}
      +			}
      +
      +			// Look for any animations in the old queue and finish them
      +			for ( index = 0; index < length; index++ ) {
      +				if ( queue[ index ] && queue[ index ].finish ) {
      +					queue[ index ].finish.call( this );
      +				}
      +			}
      +
      +			// Turn off finishing flag
      +			delete data.finish;
      +		} );
      +	}
      +} );
      +
      +jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) {
      +	var cssFn = jQuery.fn[ name ];
      +	jQuery.fn[ name ] = function( speed, easing, callback ) {
      +		return speed == null || typeof speed === "boolean" ?
      +			cssFn.apply( this, arguments ) :
      +			this.animate( genFx( name, true ), speed, easing, callback );
      +	};
      +} );
      +
      +// Generate shortcuts for custom animations
      +jQuery.each( {
      +	slideDown: genFx( "show" ),
      +	slideUp: genFx( "hide" ),
      +	slideToggle: genFx( "toggle" ),
      +	fadeIn: { opacity: "show" },
      +	fadeOut: { opacity: "hide" },
      +	fadeToggle: { opacity: "toggle" }
      +}, function( name, props ) {
      +	jQuery.fn[ name ] = function( speed, easing, callback ) {
      +		return this.animate( props, speed, easing, callback );
      +	};
      +} );
      +
      +jQuery.timers = [];
      +jQuery.fx.tick = function() {
      +	var timer,
      +		i = 0,
      +		timers = jQuery.timers;
      +
      +	fxNow = Date.now();
      +
      +	for ( ; i < timers.length; i++ ) {
      +		timer = timers[ i ];
      +
      +		// Run the timer and safely remove it when done (allowing for external removal)
      +		if ( !timer() && timers[ i ] === timer ) {
      +			timers.splice( i--, 1 );
      +		}
      +	}
      +
      +	if ( !timers.length ) {
      +		jQuery.fx.stop();
      +	}
      +	fxNow = undefined;
      +};
      +
      +jQuery.fx.timer = function( timer ) {
      +	jQuery.timers.push( timer );
      +	jQuery.fx.start();
      +};
      +
      +jQuery.fx.interval = 13;
      +jQuery.fx.start = function() {
      +	if ( inProgress ) {
      +		return;
      +	}
      +
      +	inProgress = true;
      +	schedule();
      +};
      +
      +jQuery.fx.stop = function() {
      +	inProgress = null;
      +};
      +
      +jQuery.fx.speeds = {
      +	slow: 600,
      +	fast: 200,
      +
      +	// Default speed
      +	_default: 400
      +};
      +
      +
      +// Based off of the plugin by Clint Helfers, with permission.
      +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/
      +jQuery.fn.delay = function( time, type ) {
      +	time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
      +	type = type || "fx";
      +
      +	return this.queue( type, function( next, hooks ) {
      +		var timeout = window.setTimeout( next, time );
      +		hooks.stop = function() {
      +			window.clearTimeout( timeout );
      +		};
      +	} );
      +};
      +
      +
      +( function() {
      +	var input = document.createElement( "input" ),
      +		select = document.createElement( "select" ),
      +		opt = select.appendChild( document.createElement( "option" ) );
      +
      +	input.type = "checkbox";
      +
      +	// Support: Android <=4.3 only
      +	// Default value for a checkbox should be "on"
      +	support.checkOn = input.value !== "";
      +
      +	// Support: IE <=11 only
      +	// Must access selectedIndex to make default options select
      +	support.optSelected = opt.selected;
      +
      +	// Support: IE <=11 only
      +	// An input loses its value after becoming a radio
      +	input = document.createElement( "input" );
      +	input.value = "t";
      +	input.type = "radio";
      +	support.radioValue = input.value === "t";
      +} )();
      +
      +
      +var boolHook,
      +	attrHandle = jQuery.expr.attrHandle;
      +
      +jQuery.fn.extend( {
      +	attr: function( name, value ) {
      +		return access( this, jQuery.attr, name, value, arguments.length > 1 );
      +	},
      +
      +	removeAttr: function( name ) {
      +		return this.each( function() {
      +			jQuery.removeAttr( this, name );
      +		} );
      +	}
      +} );
      +
      +jQuery.extend( {
      +	attr: function( elem, name, value ) {
      +		var ret, hooks,
      +			nType = elem.nodeType;
      +
      +		// Don't get/set attributes on text, comment and attribute nodes
      +		if ( nType === 3 || nType === 8 || nType === 2 ) {
      +			return;
      +		}
      +
      +		// Fallback to prop when attributes are not supported
      +		if ( typeof elem.getAttribute === "undefined" ) {
      +			return jQuery.prop( elem, name, value );
      +		}
      +
      +		// Attribute hooks are determined by the lowercase version
      +		// Grab necessary hook if one is defined
      +		if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
      +			hooks = jQuery.attrHooks[ name.toLowerCase() ] ||
      +				( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );
      +		}
      +
      +		if ( value !== undefined ) {
      +			if ( value === null ) {
      +				jQuery.removeAttr( elem, name );
      +				return;
      +			}
      +
      +			if ( hooks && "set" in hooks &&
      +				( ret = hooks.set( elem, value, name ) ) !== undefined ) {
      +				return ret;
      +			}
      +
      +			elem.setAttribute( name, value + "" );
      +			return value;
      +		}
      +
      +		if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
      +			return ret;
      +		}
      +
      +		ret = jQuery.find.attr( elem, name );
      +
      +		// Non-existent attributes return null, we normalize to undefined
      +		return ret == null ? undefined : ret;
      +	},
      +
      +	attrHooks: {
      +		type: {
      +			set: function( elem, value ) {
      +				if ( !support.radioValue && value === "radio" &&
      +					nodeName( elem, "input" ) ) {
      +					var val = elem.value;
      +					elem.setAttribute( "type", value );
      +					if ( val ) {
      +						elem.value = val;
      +					}
      +					return value;
      +				}
      +			}
      +		}
      +	},
      +
      +	removeAttr: function( elem, value ) {
      +		var name,
      +			i = 0,
      +
      +			// Attribute names can contain non-HTML whitespace characters
      +			// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2
      +			attrNames = value && value.match( rnothtmlwhite );
      +
      +		if ( attrNames && elem.nodeType === 1 ) {
      +			while ( ( name = attrNames[ i++ ] ) ) {
      +				elem.removeAttribute( name );
      +			}
      +		}
      +	}
      +} );
      +
      +// Hooks for boolean attributes
      +boolHook = {
      +	set: function( elem, value, name ) {
      +		if ( value === false ) {
      +
      +			// Remove boolean attributes when set to false
      +			jQuery.removeAttr( elem, name );
      +		} else {
      +			elem.setAttribute( name, name );
      +		}
      +		return name;
      +	}
      +};
      +
      +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {
      +	var getter = attrHandle[ name ] || jQuery.find.attr;
      +
      +	attrHandle[ name ] = function( elem, name, isXML ) {
      +		var ret, handle,
      +			lowercaseName = name.toLowerCase();
      +
      +		if ( !isXML ) {
      +
      +			// Avoid an infinite loop by temporarily removing this function from the getter
      +			handle = attrHandle[ lowercaseName ];
      +			attrHandle[ lowercaseName ] = ret;
      +			ret = getter( elem, name, isXML ) != null ?
      +				lowercaseName :
      +				null;
      +			attrHandle[ lowercaseName ] = handle;
      +		}
      +		return ret;
      +	};
      +} );
      +
      +
      +
      +
      +var rfocusable = /^(?:input|select|textarea|button)$/i,
      +	rclickable = /^(?:a|area)$/i;
      +
      +jQuery.fn.extend( {
      +	prop: function( name, value ) {
      +		return access( this, jQuery.prop, name, value, arguments.length > 1 );
      +	},
      +
      +	removeProp: function( name ) {
      +		return this.each( function() {
      +			delete this[ jQuery.propFix[ name ] || name ];
      +		} );
      +	}
      +} );
      +
      +jQuery.extend( {
      +	prop: function( elem, name, value ) {
      +		var ret, hooks,
      +			nType = elem.nodeType;
      +
      +		// Don't get/set properties on text, comment and attribute nodes
      +		if ( nType === 3 || nType === 8 || nType === 2 ) {
      +			return;
      +		}
      +
      +		if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
      +
      +			// Fix name and attach hooks
      +			name = jQuery.propFix[ name ] || name;
      +			hooks = jQuery.propHooks[ name ];
      +		}
      +
      +		if ( value !== undefined ) {
      +			if ( hooks && "set" in hooks &&
      +				( ret = hooks.set( elem, value, name ) ) !== undefined ) {
      +				return ret;
      +			}
      +
      +			return ( elem[ name ] = value );
      +		}
      +
      +		if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
      +			return ret;
      +		}
      +
      +		return elem[ name ];
      +	},
      +
      +	propHooks: {
      +		tabIndex: {
      +			get: function( elem ) {
      +
      +				// Support: IE <=9 - 11 only
      +				// elem.tabIndex doesn't always return the
      +				// correct value when it hasn't been explicitly set
      +				// https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
      +				// Use proper attribute retrieval(#12072)
      +				var tabindex = jQuery.find.attr( elem, "tabindex" );
      +
      +				if ( tabindex ) {
      +					return parseInt( tabindex, 10 );
      +				}
      +
      +				if (
      +					rfocusable.test( elem.nodeName ) ||
      +					rclickable.test( elem.nodeName ) &&
      +					elem.href
      +				) {
      +					return 0;
      +				}
      +
      +				return -1;
      +			}
      +		}
      +	},
      +
      +	propFix: {
      +		"for": "htmlFor",
      +		"class": "className"
      +	}
      +} );
      +
      +// Support: IE <=11 only
      +// Accessing the selectedIndex property
      +// forces the browser to respect setting selected
      +// on the option
      +// The getter ensures a default option is selected
      +// when in an optgroup
      +// eslint rule "no-unused-expressions" is disabled for this code
      +// since it considers such accessions noop
      +if ( !support.optSelected ) {
      +	jQuery.propHooks.selected = {
      +		get: function( elem ) {
      +
      +			/* eslint no-unused-expressions: "off" */
      +
      +			var parent = elem.parentNode;
      +			if ( parent && parent.parentNode ) {
      +				parent.parentNode.selectedIndex;
      +			}
      +			return null;
      +		},
      +		set: function( elem ) {
      +
      +			/* eslint no-unused-expressions: "off" */
      +
      +			var parent = elem.parentNode;
      +			if ( parent ) {
      +				parent.selectedIndex;
      +
      +				if ( parent.parentNode ) {
      +					parent.parentNode.selectedIndex;
      +				}
      +			}
      +		}
      +	};
      +}
      +
      +jQuery.each( [
      +	"tabIndex",
      +	"readOnly",
      +	"maxLength",
      +	"cellSpacing",
      +	"cellPadding",
      +	"rowSpan",
      +	"colSpan",
      +	"useMap",
      +	"frameBorder",
      +	"contentEditable"
      +], function() {
      +	jQuery.propFix[ this.toLowerCase() ] = this;
      +} );
      +
      +
      +
      +
      +	// Strip and collapse whitespace according to HTML spec
      +	// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace
      +	function stripAndCollapse( value ) {
      +		var tokens = value.match( rnothtmlwhite ) || [];
      +		return tokens.join( " " );
      +	}
      +
      +
      +function getClass( elem ) {
      +	return elem.getAttribute && elem.getAttribute( "class" ) || "";
      +}
      +
      +function classesToArray( value ) {
      +	if ( Array.isArray( value ) ) {
      +		return value;
      +	}
      +	if ( typeof value === "string" ) {
      +		return value.match( rnothtmlwhite ) || [];
      +	}
      +	return [];
      +}
      +
      +jQuery.fn.extend( {
      +	addClass: function( value ) {
      +		var classes, elem, cur, curValue, clazz, j, finalValue,
      +			i = 0;
      +
      +		if ( isFunction( value ) ) {
      +			return this.each( function( j ) {
      +				jQuery( this ).addClass( value.call( this, j, getClass( this ) ) );
      +			} );
      +		}
      +
      +		classes = classesToArray( value );
      +
      +		if ( classes.length ) {
      +			while ( ( elem = this[ i++ ] ) ) {
      +				curValue = getClass( elem );
      +				cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " );
      +
      +				if ( cur ) {
      +					j = 0;
      +					while ( ( clazz = classes[ j++ ] ) ) {
      +						if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
      +							cur += clazz + " ";
      +						}
      +					}
      +
      +					// Only assign if different to avoid unneeded rendering.
      +					finalValue = stripAndCollapse( cur );
      +					if ( curValue !== finalValue ) {
      +						elem.setAttribute( "class", finalValue );
      +					}
      +				}
      +			}
      +		}
      +
      +		return this;
      +	},
      +
      +	removeClass: function( value ) {
      +		var classes, elem, cur, curValue, clazz, j, finalValue,
      +			i = 0;
      +
      +		if ( isFunction( value ) ) {
      +			return this.each( function( j ) {
      +				jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );
      +			} );
      +		}
      +
      +		if ( !arguments.length ) {
      +			return this.attr( "class", "" );
      +		}
      +
      +		classes = classesToArray( value );
      +
      +		if ( classes.length ) {
      +			while ( ( elem = this[ i++ ] ) ) {
      +				curValue = getClass( elem );
      +
      +				// This expression is here for better compressibility (see addClass)
      +				cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " );
      +
      +				if ( cur ) {
      +					j = 0;
      +					while ( ( clazz = classes[ j++ ] ) ) {
      +
      +						// Remove *all* instances
      +						while ( cur.indexOf( " " + clazz + " " ) > -1 ) {
      +							cur = cur.replace( " " + clazz + " ", " " );
      +						}
      +					}
      +
      +					// Only assign if different to avoid unneeded rendering.
      +					finalValue = stripAndCollapse( cur );
      +					if ( curValue !== finalValue ) {
      +						elem.setAttribute( "class", finalValue );
      +					}
      +				}
      +			}
      +		}
      +
      +		return this;
      +	},
      +
      +	toggleClass: function( value, stateVal ) {
      +		var type = typeof value,
      +			isValidValue = type === "string" || Array.isArray( value );
      +
      +		if ( typeof stateVal === "boolean" && isValidValue ) {
      +			return stateVal ? this.addClass( value ) : this.removeClass( value );
      +		}
      +
      +		if ( isFunction( value ) ) {
      +			return this.each( function( i ) {
      +				jQuery( this ).toggleClass(
      +					value.call( this, i, getClass( this ), stateVal ),
      +					stateVal
      +				);
      +			} );
      +		}
      +
      +		return this.each( function() {
      +			var className, i, self, classNames;
      +
      +			if ( isValidValue ) {
      +
      +				// Toggle individual class names
      +				i = 0;
      +				self = jQuery( this );
      +				classNames = classesToArray( value );
      +
      +				while ( ( className = classNames[ i++ ] ) ) {
      +
      +					// Check each className given, space separated list
      +					if ( self.hasClass( className ) ) {
      +						self.removeClass( className );
      +					} else {
      +						self.addClass( className );
      +					}
      +				}
      +
      +			// Toggle whole class name
      +			} else if ( value === undefined || type === "boolean" ) {
      +				className = getClass( this );
      +				if ( className ) {
      +
      +					// Store className if set
      +					dataPriv.set( this, "__className__", className );
      +				}
      +
      +				// If the element has a class name or if we're passed `false`,
      +				// then remove the whole classname (if there was one, the above saved it).
      +				// Otherwise bring back whatever was previously saved (if anything),
      +				// falling back to the empty string if nothing was stored.
      +				if ( this.setAttribute ) {
      +					this.setAttribute( "class",
      +						className || value === false ?
      +						"" :
      +						dataPriv.get( this, "__className__" ) || ""
      +					);
      +				}
      +			}
      +		} );
      +	},
      +
      +	hasClass: function( selector ) {
      +		var className, elem,
      +			i = 0;
      +
      +		className = " " + selector + " ";
      +		while ( ( elem = this[ i++ ] ) ) {
      +			if ( elem.nodeType === 1 &&
      +				( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) {
      +					return true;
      +			}
      +		}
      +
      +		return false;
      +	}
      +} );
      +
      +
      +
      +
      +var rreturn = /\r/g;
      +
      +jQuery.fn.extend( {
      +	val: function( value ) {
      +		var hooks, ret, valueIsFunction,
      +			elem = this[ 0 ];
      +
      +		if ( !arguments.length ) {
      +			if ( elem ) {
      +				hooks = jQuery.valHooks[ elem.type ] ||
      +					jQuery.valHooks[ elem.nodeName.toLowerCase() ];
      +
      +				if ( hooks &&
      +					"get" in hooks &&
      +					( ret = hooks.get( elem, "value" ) ) !== undefined
      +				) {
      +					return ret;
      +				}
      +
      +				ret = elem.value;
      +
      +				// Handle most common string cases
      +				if ( typeof ret === "string" ) {
      +					return ret.replace( rreturn, "" );
      +				}
      +
      +				// Handle cases where value is null/undef or number
      +				return ret == null ? "" : ret;
      +			}
      +
      +			return;
      +		}
      +
      +		valueIsFunction = isFunction( value );
      +
      +		return this.each( function( i ) {
      +			var val;
      +
      +			if ( this.nodeType !== 1 ) {
      +				return;
      +			}
      +
      +			if ( valueIsFunction ) {
      +				val = value.call( this, i, jQuery( this ).val() );
      +			} else {
      +				val = value;
      +			}
      +
      +			// Treat null/undefined as ""; convert numbers to string
      +			if ( val == null ) {
      +				val = "";
      +
      +			} else if ( typeof val === "number" ) {
      +				val += "";
      +
      +			} else if ( Array.isArray( val ) ) {
      +				val = jQuery.map( val, function( value ) {
      +					return value == null ? "" : value + "";
      +				} );
      +			}
      +
      +			hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
      +
      +			// If set returns undefined, fall back to normal setting
      +			if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) {
      +				this.value = val;
      +			}
      +		} );
      +	}
      +} );
      +
      +jQuery.extend( {
      +	valHooks: {
      +		option: {
      +			get: function( elem ) {
      +
      +				var val = jQuery.find.attr( elem, "value" );
      +				return val != null ?
      +					val :
      +
      +					// Support: IE <=10 - 11 only
      +					// option.text throws exceptions (#14686, #14858)
      +					// Strip and collapse whitespace
      +					// https://html.spec.whatwg.org/#strip-and-collapse-whitespace
      +					stripAndCollapse( jQuery.text( elem ) );
      +			}
      +		},
      +		select: {
      +			get: function( elem ) {
      +				var value, option, i,
      +					options = elem.options,
      +					index = elem.selectedIndex,
      +					one = elem.type === "select-one",
      +					values = one ? null : [],
      +					max = one ? index + 1 : options.length;
      +
      +				if ( index < 0 ) {
      +					i = max;
      +
      +				} else {
      +					i = one ? index : 0;
      +				}
      +
      +				// Loop through all the selected options
      +				for ( ; i < max; i++ ) {
      +					option = options[ i ];
      +
      +					// Support: IE <=9 only
      +					// IE8-9 doesn't update selected after form reset (#2551)
      +					if ( ( option.selected || i === index ) &&
      +
      +							// Don't return options that are disabled or in a disabled optgroup
      +							!option.disabled &&
      +							( !option.parentNode.disabled ||
      +								!nodeName( option.parentNode, "optgroup" ) ) ) {
      +
      +						// Get the specific value for the option
      +						value = jQuery( option ).val();
      +
      +						// We don't need an array for one selects
      +						if ( one ) {
      +							return value;
      +						}
      +
      +						// Multi-Selects return an array
      +						values.push( value );
      +					}
      +				}
      +
      +				return values;
      +			},
      +
      +			set: function( elem, value ) {
      +				var optionSet, option,
      +					options = elem.options,
      +					values = jQuery.makeArray( value ),
      +					i = options.length;
      +
      +				while ( i-- ) {
      +					option = options[ i ];
      +
      +					/* eslint-disable no-cond-assign */
      +
      +					if ( option.selected =
      +						jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1
      +					) {
      +						optionSet = true;
      +					}
      +
      +					/* eslint-enable no-cond-assign */
      +				}
      +
      +				// Force browsers to behave consistently when non-matching value is set
      +				if ( !optionSet ) {
      +					elem.selectedIndex = -1;
      +				}
      +				return values;
      +			}
      +		}
      +	}
      +} );
      +
      +// Radios and checkboxes getter/setter
      +jQuery.each( [ "radio", "checkbox" ], function() {
      +	jQuery.valHooks[ this ] = {
      +		set: function( elem, value ) {
      +			if ( Array.isArray( value ) ) {
      +				return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );
      +			}
      +		}
      +	};
      +	if ( !support.checkOn ) {
      +		jQuery.valHooks[ this ].get = function( elem ) {
      +			return elem.getAttribute( "value" ) === null ? "on" : elem.value;
      +		};
      +	}
      +} );
      +
      +
      +
      +
      +// Return jQuery for attributes-only inclusion
      +
      +
      +support.focusin = "onfocusin" in window;
      +
      +
      +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
      +	stopPropagationCallback = function( e ) {
      +		e.stopPropagation();
      +	};
      +
      +jQuery.extend( jQuery.event, {
      +
      +	trigger: function( event, data, elem, onlyHandlers ) {
      +
      +		var i, cur, tmp, bubbleType, ontype, handle, special, lastElement,
      +			eventPath = [ elem || document ],
      +			type = hasOwn.call( event, "type" ) ? event.type : event,
      +			namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : [];
      +
      +		cur = lastElement = tmp = elem = elem || document;
      +
      +		// Don't do events on text and comment nodes
      +		if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
      +			return;
      +		}
      +
      +		// focus/blur morphs to focusin/out; ensure we're not firing them right now
      +		if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
      +			return;
      +		}
      +
      +		if ( type.indexOf( "." ) > -1 ) {
      +
      +			// Namespaced trigger; create a regexp to match event type in handle()
      +			namespaces = type.split( "." );
      +			type = namespaces.shift();
      +			namespaces.sort();
      +		}
      +		ontype = type.indexOf( ":" ) < 0 && "on" + type;
      +
      +		// Caller can pass in a jQuery.Event object, Object, or just an event type string
      +		event = event[ jQuery.expando ] ?
      +			event :
      +			new jQuery.Event( type, typeof event === "object" && event );
      +
      +		// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
      +		event.isTrigger = onlyHandlers ? 2 : 3;
      +		event.namespace = namespaces.join( "." );
      +		event.rnamespace = event.namespace ?
      +			new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) :
      +			null;
      +
      +		// Clean up the event in case it is being reused
      +		event.result = undefined;
      +		if ( !event.target ) {
      +			event.target = elem;
      +		}
      +
      +		// Clone any incoming data and prepend the event, creating the handler arg list
      +		data = data == null ?
      +			[ event ] :
      +			jQuery.makeArray( data, [ event ] );
      +
      +		// Allow special events to draw outside the lines
      +		special = jQuery.event.special[ type ] || {};
      +		if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
      +			return;
      +		}
      +
      +		// Determine event propagation path in advance, per W3C events spec (#9951)
      +		// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
      +		if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {
      +
      +			bubbleType = special.delegateType || type;
      +			if ( !rfocusMorph.test( bubbleType + type ) ) {
      +				cur = cur.parentNode;
      +			}
      +			for ( ; cur; cur = cur.parentNode ) {
      +				eventPath.push( cur );
      +				tmp = cur;
      +			}
      +
      +			// Only add window if we got to document (e.g., not plain obj or detached DOM)
      +			if ( tmp === ( elem.ownerDocument || document ) ) {
      +				eventPath.push( tmp.defaultView || tmp.parentWindow || window );
      +			}
      +		}
      +
      +		// Fire handlers on the event path
      +		i = 0;
      +		while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {
      +			lastElement = cur;
      +			event.type = i > 1 ?
      +				bubbleType :
      +				special.bindType || type;
      +
      +			// jQuery handler
      +			handle = ( dataPriv.get( cur, "events" ) || {} )[ event.type ] &&
      +				dataPriv.get( cur, "handle" );
      +			if ( handle ) {
      +				handle.apply( cur, data );
      +			}
      +
      +			// Native handler
      +			handle = ontype && cur[ ontype ];
      +			if ( handle && handle.apply && acceptData( cur ) ) {
      +				event.result = handle.apply( cur, data );
      +				if ( event.result === false ) {
      +					event.preventDefault();
      +				}
      +			}
      +		}
      +		event.type = type;
      +
      +		// If nobody prevented the default action, do it now
      +		if ( !onlyHandlers && !event.isDefaultPrevented() ) {
      +
      +			if ( ( !special._default ||
      +				special._default.apply( eventPath.pop(), data ) === false ) &&
      +				acceptData( elem ) ) {
      +
      +				// Call a native DOM method on the target with the same name as the event.
      +				// Don't do default actions on window, that's where global variables be (#6170)
      +				if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {
      +
      +					// Don't re-trigger an onFOO event when we call its FOO() method
      +					tmp = elem[ ontype ];
      +
      +					if ( tmp ) {
      +						elem[ ontype ] = null;
      +					}
      +
      +					// Prevent re-triggering of the same event, since we already bubbled it above
      +					jQuery.event.triggered = type;
      +
      +					if ( event.isPropagationStopped() ) {
      +						lastElement.addEventListener( type, stopPropagationCallback );
      +					}
      +
      +					elem[ type ]();
      +
      +					if ( event.isPropagationStopped() ) {
      +						lastElement.removeEventListener( type, stopPropagationCallback );
      +					}
      +
      +					jQuery.event.triggered = undefined;
      +
      +					if ( tmp ) {
      +						elem[ ontype ] = tmp;
      +					}
      +				}
      +			}
      +		}
      +
      +		return event.result;
      +	},
      +
      +	// Piggyback on a donor event to simulate a different one
      +	// Used only for `focus(in | out)` events
      +	simulate: function( type, elem, event ) {
      +		var e = jQuery.extend(
      +			new jQuery.Event(),
      +			event,
      +			{
      +				type: type,
      +				isSimulated: true
      +			}
      +		);
      +
      +		jQuery.event.trigger( e, null, elem );
      +	}
      +
      +} );
      +
      +jQuery.fn.extend( {
      +
      +	trigger: function( type, data ) {
      +		return this.each( function() {
      +			jQuery.event.trigger( type, data, this );
      +		} );
      +	},
      +	triggerHandler: function( type, data ) {
      +		var elem = this[ 0 ];
      +		if ( elem ) {
      +			return jQuery.event.trigger( type, data, elem, true );
      +		}
      +	}
      +} );
      +
      +
      +// Support: Firefox <=44
      +// Firefox doesn't have focus(in | out) events
      +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787
      +//
      +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1
      +// focus(in | out) events fire after focus & blur events,
      +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order
      +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857
      +if ( !support.focusin ) {
      +	jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) {
      +
      +		// Attach a single capturing handler on the document while someone wants focusin/focusout
      +		var handler = function( event ) {
      +			jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );
      +		};
      +
      +		jQuery.event.special[ fix ] = {
      +			setup: function() {
      +				var doc = this.ownerDocument || this,
      +					attaches = dataPriv.access( doc, fix );
      +
      +				if ( !attaches ) {
      +					doc.addEventListener( orig, handler, true );
      +				}
      +				dataPriv.access( doc, fix, ( attaches || 0 ) + 1 );
      +			},
      +			teardown: function() {
      +				var doc = this.ownerDocument || this,
      +					attaches = dataPriv.access( doc, fix ) - 1;
      +
      +				if ( !attaches ) {
      +					doc.removeEventListener( orig, handler, true );
      +					dataPriv.remove( doc, fix );
      +
      +				} else {
      +					dataPriv.access( doc, fix, attaches );
      +				}
      +			}
      +		};
      +	} );
      +}
      +var location = window.location;
      +
      +var nonce = Date.now();
      +
      +var rquery = ( /\?/ );
      +
      +
      +
      +// Cross-browser xml parsing
      +jQuery.parseXML = function( data ) {
      +	var xml;
      +	if ( !data || typeof data !== "string" ) {
      +		return null;
      +	}
      +
      +	// Support: IE 9 - 11 only
      +	// IE throws on parseFromString with invalid input.
      +	try {
      +		xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" );
      +	} catch ( e ) {
      +		xml = undefined;
      +	}
      +
      +	if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) {
      +		jQuery.error( "Invalid XML: " + data );
      +	}
      +	return xml;
      +};
      +
      +
      +var
      +	rbracket = /\[\]$/,
      +	rCRLF = /\r?\n/g,
      +	rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
      +	rsubmittable = /^(?:input|select|textarea|keygen)/i;
      +
      +function buildParams( prefix, obj, traditional, add ) {
      +	var name;
      +
      +	if ( Array.isArray( obj ) ) {
      +
      +		// Serialize array item.
      +		jQuery.each( obj, function( i, v ) {
      +			if ( traditional || rbracket.test( prefix ) ) {
      +
      +				// Treat each array item as a scalar.
      +				add( prefix, v );
      +
      +			} else {
      +
      +				// Item is non-scalar (array or object), encode its numeric index.
      +				buildParams(
      +					prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]",
      +					v,
      +					traditional,
      +					add
      +				);
      +			}
      +		} );
      +
      +	} else if ( !traditional && toType( obj ) === "object" ) {
      +
      +		// Serialize object item.
      +		for ( name in obj ) {
      +			buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
      +		}
      +
      +	} else {
      +
      +		// Serialize scalar item.
      +		add( prefix, obj );
      +	}
      +}
      +
      +// Serialize an array of form elements or a set of
      +// key/values into a query string
      +jQuery.param = function( a, traditional ) {
      +	var prefix,
      +		s = [],
      +		add = function( key, valueOrFunction ) {
      +
      +			// If value is a function, invoke it and use its return value
      +			var value = isFunction( valueOrFunction ) ?
      +				valueOrFunction() :
      +				valueOrFunction;
      +
      +			s[ s.length ] = encodeURIComponent( key ) + "=" +
      +				encodeURIComponent( value == null ? "" : value );
      +		};
      +
      +	// If an array was passed in, assume that it is an array of form elements.
      +	if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
      +
      +		// Serialize the form elements
      +		jQuery.each( a, function() {
      +			add( this.name, this.value );
      +		} );
      +
      +	} else {
      +
      +		// If traditional, encode the "old" way (the way 1.3.2 or older
      +		// did it), otherwise encode params recursively.
      +		for ( prefix in a ) {
      +			buildParams( prefix, a[ prefix ], traditional, add );
      +		}
      +	}
      +
      +	// Return the resulting serialization
      +	return s.join( "&" );
      +};
      +
      +jQuery.fn.extend( {
      +	serialize: function() {
      +		return jQuery.param( this.serializeArray() );
      +	},
      +	serializeArray: function() {
      +		return this.map( function() {
      +
      +			// Can add propHook for "elements" to filter or add form elements
      +			var elements = jQuery.prop( this, "elements" );
      +			return elements ? jQuery.makeArray( elements ) : this;
      +		} )
      +		.filter( function() {
      +			var type = this.type;
      +
      +			// Use .is( ":disabled" ) so that fieldset[disabled] works
      +			return this.name && !jQuery( this ).is( ":disabled" ) &&
      +				rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
      +				( this.checked || !rcheckableType.test( type ) );
      +		} )
      +		.map( function( i, elem ) {
      +			var val = jQuery( this ).val();
      +
      +			if ( val == null ) {
      +				return null;
      +			}
      +
      +			if ( Array.isArray( val ) ) {
      +				return jQuery.map( val, function( val ) {
      +					return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
      +				} );
      +			}
      +
      +			return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
      +		} ).get();
      +	}
      +} );
      +
      +
      +var
      +	r20 = /%20/g,
      +	rhash = /#.*$/,
      +	rantiCache = /([?&])_=[^&]*/,
      +	rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
      +
      +	// #7653, #8125, #8152: local protocol detection
      +	rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
      +	rnoContent = /^(?:GET|HEAD)$/,
      +	rprotocol = /^\/\//,
      +
      +	/* Prefilters
      +	 * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
      +	 * 2) These are called:
      +	 *    - BEFORE asking for a transport
      +	 *    - AFTER param serialization (s.data is a string if s.processData is true)
      +	 * 3) key is the dataType
      +	 * 4) the catchall symbol "*" can be used
      +	 * 5) execution will start with transport dataType and THEN continue down to "*" if needed
      +	 */
      +	prefilters = {},
      +
      +	/* Transports bindings
      +	 * 1) key is the dataType
      +	 * 2) the catchall symbol "*" can be used
      +	 * 3) selection will start with transport dataType and THEN go to "*" if needed
      +	 */
      +	transports = {},
      +
      +	// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
      +	allTypes = "*/".concat( "*" ),
      +
      +	// Anchor tag for parsing the document origin
      +	originAnchor = document.createElement( "a" );
      +	originAnchor.href = location.href;
      +
      +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
      +function addToPrefiltersOrTransports( structure ) {
      +
      +	// dataTypeExpression is optional and defaults to "*"
      +	return function( dataTypeExpression, func ) {
      +
      +		if ( typeof dataTypeExpression !== "string" ) {
      +			func = dataTypeExpression;
      +			dataTypeExpression = "*";
      +		}
      +
      +		var dataType,
      +			i = 0,
      +			dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];
      +
      +		if ( isFunction( func ) ) {
      +
      +			// For each dataType in the dataTypeExpression
      +			while ( ( dataType = dataTypes[ i++ ] ) ) {
      +
      +				// Prepend if requested
      +				if ( dataType[ 0 ] === "+" ) {
      +					dataType = dataType.slice( 1 ) || "*";
      +					( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );
      +
      +				// Otherwise append
      +				} else {
      +					( structure[ dataType ] = structure[ dataType ] || [] ).push( func );
      +				}
      +			}
      +		}
      +	};
      +}
      +
      +// Base inspection function for prefilters and transports
      +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
      +
      +	var inspected = {},
      +		seekingTransport = ( structure === transports );
      +
      +	function inspect( dataType ) {
      +		var selected;
      +		inspected[ dataType ] = true;
      +		jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
      +			var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
      +			if ( typeof dataTypeOrTransport === "string" &&
      +				!seekingTransport && !inspected[ dataTypeOrTransport ] ) {
      +
      +				options.dataTypes.unshift( dataTypeOrTransport );
      +				inspect( dataTypeOrTransport );
      +				return false;
      +			} else if ( seekingTransport ) {
      +				return !( selected = dataTypeOrTransport );
      +			}
      +		} );
      +		return selected;
      +	}
      +
      +	return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
      +}
      +
      +// A special extend for ajax options
      +// that takes "flat" options (not to be deep extended)
      +// Fixes #9887
      +function ajaxExtend( target, src ) {
      +	var key, deep,
      +		flatOptions = jQuery.ajaxSettings.flatOptions || {};
      +
      +	for ( key in src ) {
      +		if ( src[ key ] !== undefined ) {
      +			( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];
      +		}
      +	}
      +	if ( deep ) {
      +		jQuery.extend( true, target, deep );
      +	}
      +
      +	return target;
      +}
      +
      +/* Handles responses to an ajax request:
      + * - finds the right dataType (mediates between content-type and expected dataType)
      + * - returns the corresponding response
      + */
      +function ajaxHandleResponses( s, jqXHR, responses ) {
      +
      +	var ct, type, finalDataType, firstDataType,
      +		contents = s.contents,
      +		dataTypes = s.dataTypes;
      +
      +	// Remove auto dataType and get content-type in the process
      +	while ( dataTypes[ 0 ] === "*" ) {
      +		dataTypes.shift();
      +		if ( ct === undefined ) {
      +			ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" );
      +		}
      +	}
      +
      +	// Check if we're dealing with a known content-type
      +	if ( ct ) {
      +		for ( type in contents ) {
      +			if ( contents[ type ] && contents[ type ].test( ct ) ) {
      +				dataTypes.unshift( type );
      +				break;
      +			}
      +		}
      +	}
      +
      +	// Check to see if we have a response for the expected dataType
      +	if ( dataTypes[ 0 ] in responses ) {
      +		finalDataType = dataTypes[ 0 ];
      +	} else {
      +
      +		// Try convertible dataTypes
      +		for ( type in responses ) {
      +			if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) {
      +				finalDataType = type;
      +				break;
      +			}
      +			if ( !firstDataType ) {
      +				firstDataType = type;
      +			}
      +		}
      +
      +		// Or just use first one
      +		finalDataType = finalDataType || firstDataType;
      +	}
      +
      +	// If we found a dataType
      +	// We add the dataType to the list if needed
      +	// and return the corresponding response
      +	if ( finalDataType ) {
      +		if ( finalDataType !== dataTypes[ 0 ] ) {
      +			dataTypes.unshift( finalDataType );
      +		}
      +		return responses[ finalDataType ];
      +	}
      +}
      +
      +/* Chain conversions given the request and the original response
      + * Also sets the responseXXX fields on the jqXHR instance
      + */
      +function ajaxConvert( s, response, jqXHR, isSuccess ) {
      +	var conv2, current, conv, tmp, prev,
      +		converters = {},
      +
      +		// Work with a copy of dataTypes in case we need to modify it for conversion
      +		dataTypes = s.dataTypes.slice();
      +
      +	// Create converters map with lowercased keys
      +	if ( dataTypes[ 1 ] ) {
      +		for ( conv in s.converters ) {
      +			converters[ conv.toLowerCase() ] = s.converters[ conv ];
      +		}
      +	}
      +
      +	current = dataTypes.shift();
      +
      +	// Convert to each sequential dataType
      +	while ( current ) {
      +
      +		if ( s.responseFields[ current ] ) {
      +			jqXHR[ s.responseFields[ current ] ] = response;
      +		}
      +
      +		// Apply the dataFilter if provided
      +		if ( !prev && isSuccess && s.dataFilter ) {
      +			response = s.dataFilter( response, s.dataType );
      +		}
      +
      +		prev = current;
      +		current = dataTypes.shift();
      +
      +		if ( current ) {
      +
      +			// There's only work to do if current dataType is non-auto
      +			if ( current === "*" ) {
      +
      +				current = prev;
      +
      +			// Convert response if prev dataType is non-auto and differs from current
      +			} else if ( prev !== "*" && prev !== current ) {
      +
      +				// Seek a direct converter
      +				conv = converters[ prev + " " + current ] || converters[ "* " + current ];
      +
      +				// If none found, seek a pair
      +				if ( !conv ) {
      +					for ( conv2 in converters ) {
      +
      +						// If conv2 outputs current
      +						tmp = conv2.split( " " );
      +						if ( tmp[ 1 ] === current ) {
      +
      +							// If prev can be converted to accepted input
      +							conv = converters[ prev + " " + tmp[ 0 ] ] ||
      +								converters[ "* " + tmp[ 0 ] ];
      +							if ( conv ) {
      +
      +								// Condense equivalence converters
      +								if ( conv === true ) {
      +									conv = converters[ conv2 ];
      +
      +								// Otherwise, insert the intermediate dataType
      +								} else if ( converters[ conv2 ] !== true ) {
      +									current = tmp[ 0 ];
      +									dataTypes.unshift( tmp[ 1 ] );
      +								}
      +								break;
      +							}
      +						}
      +					}
      +				}
      +
      +				// Apply converter (if not an equivalence)
      +				if ( conv !== true ) {
      +
      +					// Unless errors are allowed to bubble, catch and return them
      +					if ( conv && s.throws ) {
      +						response = conv( response );
      +					} else {
      +						try {
      +							response = conv( response );
      +						} catch ( e ) {
      +							return {
      +								state: "parsererror",
      +								error: conv ? e : "No conversion from " + prev + " to " + current
      +							};
      +						}
      +					}
      +				}
      +			}
      +		}
      +	}
      +
      +	return { state: "success", data: response };
      +}
      +
      +jQuery.extend( {
      +
      +	// Counter for holding the number of active queries
      +	active: 0,
      +
      +	// Last-Modified header cache for next request
      +	lastModified: {},
      +	etag: {},
      +
      +	ajaxSettings: {
      +		url: location.href,
      +		type: "GET",
      +		isLocal: rlocalProtocol.test( location.protocol ),
      +		global: true,
      +		processData: true,
      +		async: true,
      +		contentType: "application/x-www-form-urlencoded; charset=UTF-8",
      +
      +		/*
      +		timeout: 0,
      +		data: null,
      +		dataType: null,
      +		username: null,
      +		password: null,
      +		cache: null,
      +		throws: false,
      +		traditional: false,
      +		headers: {},
      +		*/
      +
      +		accepts: {
      +			"*": allTypes,
      +			text: "text/plain",
      +			html: "text/html",
      +			xml: "application/xml, text/xml",
      +			json: "application/json, text/javascript"
      +		},
      +
      +		contents: {
      +			xml: /\bxml\b/,
      +			html: /\bhtml/,
      +			json: /\bjson\b/
      +		},
      +
      +		responseFields: {
      +			xml: "responseXML",
      +			text: "responseText",
      +			json: "responseJSON"
      +		},
      +
      +		// Data converters
      +		// Keys separate source (or catchall "*") and destination types with a single space
      +		converters: {
      +
      +			// Convert anything to text
      +			"* text": String,
      +
      +			// Text to html (true = no transformation)
      +			"text html": true,
      +
      +			// Evaluate text as a json expression
      +			"text json": JSON.parse,
      +
      +			// Parse text as xml
      +			"text xml": jQuery.parseXML
      +		},
      +
      +		// For options that shouldn't be deep extended:
      +		// you can add your own custom options here if
      +		// and when you create one that shouldn't be
      +		// deep extended (see ajaxExtend)
      +		flatOptions: {
      +			url: true,
      +			context: true
      +		}
      +	},
      +
      +	// Creates a full fledged settings object into target
      +	// with both ajaxSettings and settings fields.
      +	// If target is omitted, writes into ajaxSettings.
      +	ajaxSetup: function( target, settings ) {
      +		return settings ?
      +
      +			// Building a settings object
      +			ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
      +
      +			// Extending ajaxSettings
      +			ajaxExtend( jQuery.ajaxSettings, target );
      +	},
      +
      +	ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
      +	ajaxTransport: addToPrefiltersOrTransports( transports ),
      +
      +	// Main method
      +	ajax: function( url, options ) {
      +
      +		// If url is an object, simulate pre-1.5 signature
      +		if ( typeof url === "object" ) {
      +			options = url;
      +			url = undefined;
      +		}
      +
      +		// Force options to be an object
      +		options = options || {};
      +
      +		var transport,
      +
      +			// URL without anti-cache param
      +			cacheURL,
      +
      +			// Response headers
      +			responseHeadersString,
      +			responseHeaders,
      +
      +			// timeout handle
      +			timeoutTimer,
      +
      +			// Url cleanup var
      +			urlAnchor,
      +
      +			// Request state (becomes false upon send and true upon completion)
      +			completed,
      +
      +			// To know if global events are to be dispatched
      +			fireGlobals,
      +
      +			// Loop variable
      +			i,
      +
      +			// uncached part of the url
      +			uncached,
      +
      +			// Create the final options object
      +			s = jQuery.ajaxSetup( {}, options ),
      +
      +			// Callbacks context
      +			callbackContext = s.context || s,
      +
      +			// Context for global events is callbackContext if it is a DOM node or jQuery collection
      +			globalEventContext = s.context &&
      +				( callbackContext.nodeType || callbackContext.jquery ) ?
      +					jQuery( callbackContext ) :
      +					jQuery.event,
      +
      +			// Deferreds
      +			deferred = jQuery.Deferred(),
      +			completeDeferred = jQuery.Callbacks( "once memory" ),
      +
      +			// Status-dependent callbacks
      +			statusCode = s.statusCode || {},
      +
      +			// Headers (they are sent all at once)
      +			requestHeaders = {},
      +			requestHeadersNames = {},
      +
      +			// Default abort message
      +			strAbort = "canceled",
      +
      +			// Fake xhr
      +			jqXHR = {
      +				readyState: 0,
      +
      +				// Builds headers hashtable if needed
      +				getResponseHeader: function( key ) {
      +					var match;
      +					if ( completed ) {
      +						if ( !responseHeaders ) {
      +							responseHeaders = {};
      +							while ( ( match = rheaders.exec( responseHeadersString ) ) ) {
      +								responseHeaders[ match[ 1 ].toLowerCase() ] = match[ 2 ];
      +							}
      +						}
      +						match = responseHeaders[ key.toLowerCase() ];
      +					}
      +					return match == null ? null : match;
      +				},
      +
      +				// Raw string
      +				getAllResponseHeaders: function() {
      +					return completed ? responseHeadersString : null;
      +				},
      +
      +				// Caches the header
      +				setRequestHeader: function( name, value ) {
      +					if ( completed == null ) {
      +						name = requestHeadersNames[ name.toLowerCase() ] =
      +							requestHeadersNames[ name.toLowerCase() ] || name;
      +						requestHeaders[ name ] = value;
      +					}
      +					return this;
      +				},
      +
      +				// Overrides response content-type header
      +				overrideMimeType: function( type ) {
      +					if ( completed == null ) {
      +						s.mimeType = type;
      +					}
      +					return this;
      +				},
      +
      +				// Status-dependent callbacks
      +				statusCode: function( map ) {
      +					var code;
      +					if ( map ) {
      +						if ( completed ) {
      +
      +							// Execute the appropriate callbacks
      +							jqXHR.always( map[ jqXHR.status ] );
      +						} else {
      +
      +							// Lazy-add the new callbacks in a way that preserves old ones
      +							for ( code in map ) {
      +								statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
      +							}
      +						}
      +					}
      +					return this;
      +				},
      +
      +				// Cancel the request
      +				abort: function( statusText ) {
      +					var finalText = statusText || strAbort;
      +					if ( transport ) {
      +						transport.abort( finalText );
      +					}
      +					done( 0, finalText );
      +					return this;
      +				}
      +			};
      +
      +		// Attach deferreds
      +		deferred.promise( jqXHR );
      +
      +		// Add protocol if not provided (prefilters might expect it)
      +		// Handle falsy url in the settings object (#10093: consistency with old signature)
      +		// We also use the url parameter if available
      +		s.url = ( ( url || s.url || location.href ) + "" )
      +			.replace( rprotocol, location.protocol + "//" );
      +
      +		// Alias method option to type as per ticket #12004
      +		s.type = options.method || options.type || s.method || s.type;
      +
      +		// Extract dataTypes list
      +		s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ];
      +
      +		// A cross-domain request is in order when the origin doesn't match the current origin.
      +		if ( s.crossDomain == null ) {
      +			urlAnchor = document.createElement( "a" );
      +
      +			// Support: IE <=8 - 11, Edge 12 - 15
      +			// IE throws exception on accessing the href property if url is malformed,
      +			// e.g. http://example.com:80x/
      +			try {
      +				urlAnchor.href = s.url;
      +
      +				// Support: IE <=8 - 11 only
      +				// Anchor's host property isn't correctly set when s.url is relative
      +				urlAnchor.href = urlAnchor.href;
      +				s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !==
      +					urlAnchor.protocol + "//" + urlAnchor.host;
      +			} catch ( e ) {
      +
      +				// If there is an error parsing the URL, assume it is crossDomain,
      +				// it can be rejected by the transport if it is invalid
      +				s.crossDomain = true;
      +			}
      +		}
      +
      +		// Convert data if not already a string
      +		if ( s.data && s.processData && typeof s.data !== "string" ) {
      +			s.data = jQuery.param( s.data, s.traditional );
      +		}
      +
      +		// Apply prefilters
      +		inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
      +
      +		// If request was aborted inside a prefilter, stop there
      +		if ( completed ) {
      +			return jqXHR;
      +		}
      +
      +		// We can fire global events as of now if asked to
      +		// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)
      +		fireGlobals = jQuery.event && s.global;
      +
      +		// Watch for a new set of requests
      +		if ( fireGlobals && jQuery.active++ === 0 ) {
      +			jQuery.event.trigger( "ajaxStart" );
      +		}
      +
      +		// Uppercase the type
      +		s.type = s.type.toUpperCase();
      +
      +		// Determine if request has content
      +		s.hasContent = !rnoContent.test( s.type );
      +
      +		// Save the URL in case we're toying with the If-Modified-Since
      +		// and/or If-None-Match header later on
      +		// Remove hash to simplify url manipulation
      +		cacheURL = s.url.replace( rhash, "" );
      +
      +		// More options handling for requests with no content
      +		if ( !s.hasContent ) {
      +
      +			// Remember the hash so we can put it back
      +			uncached = s.url.slice( cacheURL.length );
      +
      +			// If data is available and should be processed, append data to url
      +			if ( s.data && ( s.processData || typeof s.data === "string" ) ) {
      +				cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data;
      +
      +				// #9682: remove data so that it's not used in an eventual retry
      +				delete s.data;
      +			}
      +
      +			// Add or update anti-cache param if needed
      +			if ( s.cache === false ) {
      +				cacheURL = cacheURL.replace( rantiCache, "$1" );
      +				uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce++ ) + uncached;
      +			}
      +
      +			// Put hash and anti-cache on the URL that will be requested (gh-1732)
      +			s.url = cacheURL + uncached;
      +
      +		// Change '%20' to '+' if this is encoded form body content (gh-2658)
      +		} else if ( s.data && s.processData &&
      +			( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) {
      +			s.data = s.data.replace( r20, "+" );
      +		}
      +
      +		// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
      +		if ( s.ifModified ) {
      +			if ( jQuery.lastModified[ cacheURL ] ) {
      +				jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
      +			}
      +			if ( jQuery.etag[ cacheURL ] ) {
      +				jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
      +			}
      +		}
      +
      +		// Set the correct header, if data is being sent
      +		if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
      +			jqXHR.setRequestHeader( "Content-Type", s.contentType );
      +		}
      +
      +		// Set the Accepts header for the server, depending on the dataType
      +		jqXHR.setRequestHeader(
      +			"Accept",
      +			s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?
      +				s.accepts[ s.dataTypes[ 0 ] ] +
      +					( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
      +				s.accepts[ "*" ]
      +		);
      +
      +		// Check for headers option
      +		for ( i in s.headers ) {
      +			jqXHR.setRequestHeader( i, s.headers[ i ] );
      +		}
      +
      +		// Allow custom headers/mimetypes and early abort
      +		if ( s.beforeSend &&
      +			( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {
      +
      +			// Abort if not done already and return
      +			return jqXHR.abort();
      +		}
      +
      +		// Aborting is no longer a cancellation
      +		strAbort = "abort";
      +
      +		// Install callbacks on deferreds
      +		completeDeferred.add( s.complete );
      +		jqXHR.done( s.success );
      +		jqXHR.fail( s.error );
      +
      +		// Get transport
      +		transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
      +
      +		// If no transport, we auto-abort
      +		if ( !transport ) {
      +			done( -1, "No Transport" );
      +		} else {
      +			jqXHR.readyState = 1;
      +
      +			// Send global event
      +			if ( fireGlobals ) {
      +				globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
      +			}
      +
      +			// If request was aborted inside ajaxSend, stop there
      +			if ( completed ) {
      +				return jqXHR;
      +			}
      +
      +			// Timeout
      +			if ( s.async && s.timeout > 0 ) {
      +				timeoutTimer = window.setTimeout( function() {
      +					jqXHR.abort( "timeout" );
      +				}, s.timeout );
      +			}
      +
      +			try {
      +				completed = false;
      +				transport.send( requestHeaders, done );
      +			} catch ( e ) {
      +
      +				// Rethrow post-completion exceptions
      +				if ( completed ) {
      +					throw e;
      +				}
      +
      +				// Propagate others as results
      +				done( -1, e );
      +			}
      +		}
      +
      +		// Callback for when everything is done
      +		function done( status, nativeStatusText, responses, headers ) {
      +			var isSuccess, success, error, response, modified,
      +				statusText = nativeStatusText;
      +
      +			// Ignore repeat invocations
      +			if ( completed ) {
      +				return;
      +			}
      +
      +			completed = true;
      +
      +			// Clear timeout if it exists
      +			if ( timeoutTimer ) {
      +				window.clearTimeout( timeoutTimer );
      +			}
      +
      +			// Dereference transport for early garbage collection
      +			// (no matter how long the jqXHR object will be used)
      +			transport = undefined;
      +
      +			// Cache response headers
      +			responseHeadersString = headers || "";
      +
      +			// Set readyState
      +			jqXHR.readyState = status > 0 ? 4 : 0;
      +
      +			// Determine if successful
      +			isSuccess = status >= 200 && status < 300 || status === 304;
      +
      +			// Get response data
      +			if ( responses ) {
      +				response = ajaxHandleResponses( s, jqXHR, responses );
      +			}
      +
      +			// Convert no matter what (that way responseXXX fields are always set)
      +			response = ajaxConvert( s, response, jqXHR, isSuccess );
      +
      +			// If successful, handle type chaining
      +			if ( isSuccess ) {
      +
      +				// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
      +				if ( s.ifModified ) {
      +					modified = jqXHR.getResponseHeader( "Last-Modified" );
      +					if ( modified ) {
      +						jQuery.lastModified[ cacheURL ] = modified;
      +					}
      +					modified = jqXHR.getResponseHeader( "etag" );
      +					if ( modified ) {
      +						jQuery.etag[ cacheURL ] = modified;
      +					}
      +				}
      +
      +				// if no content
      +				if ( status === 204 || s.type === "HEAD" ) {
      +					statusText = "nocontent";
      +
      +				// if not modified
      +				} else if ( status === 304 ) {
      +					statusText = "notmodified";
      +
      +				// If we have data, let's convert it
      +				} else {
      +					statusText = response.state;
      +					success = response.data;
      +					error = response.error;
      +					isSuccess = !error;
      +				}
      +			} else {
      +
      +				// Extract error from statusText and normalize for non-aborts
      +				error = statusText;
      +				if ( status || !statusText ) {
      +					statusText = "error";
      +					if ( status < 0 ) {
      +						status = 0;
      +					}
      +				}
      +			}
      +
      +			// Set data for the fake xhr object
      +			jqXHR.status = status;
      +			jqXHR.statusText = ( nativeStatusText || statusText ) + "";
      +
      +			// Success/Error
      +			if ( isSuccess ) {
      +				deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
      +			} else {
      +				deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
      +			}
      +
      +			// Status-dependent callbacks
      +			jqXHR.statusCode( statusCode );
      +			statusCode = undefined;
      +
      +			if ( fireGlobals ) {
      +				globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
      +					[ jqXHR, s, isSuccess ? success : error ] );
      +			}
      +
      +			// Complete
      +			completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
      +
      +			if ( fireGlobals ) {
      +				globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
      +
      +				// Handle the global AJAX counter
      +				if ( !( --jQuery.active ) ) {
      +					jQuery.event.trigger( "ajaxStop" );
      +				}
      +			}
      +		}
      +
      +		return jqXHR;
      +	},
      +
      +	getJSON: function( url, data, callback ) {
      +		return jQuery.get( url, data, callback, "json" );
      +	},
      +
      +	getScript: function( url, callback ) {
      +		return jQuery.get( url, undefined, callback, "script" );
      +	}
      +} );
      +
      +jQuery.each( [ "get", "post" ], function( i, method ) {
      +	jQuery[ method ] = function( url, data, callback, type ) {
      +
      +		// Shift arguments if data argument was omitted
      +		if ( isFunction( data ) ) {
      +			type = type || callback;
      +			callback = data;
      +			data = undefined;
      +		}
      +
      +		// The url can be an options object (which then must have .url)
      +		return jQuery.ajax( jQuery.extend( {
      +			url: url,
      +			type: method,
      +			dataType: type,
      +			data: data,
      +			success: callback
      +		}, jQuery.isPlainObject( url ) && url ) );
      +	};
      +} );
      +
      +
      +jQuery._evalUrl = function( url ) {
      +	return jQuery.ajax( {
      +		url: url,
      +
      +		// Make this explicit, since user can override this through ajaxSetup (#11264)
      +		type: "GET",
      +		dataType: "script",
      +		cache: true,
      +		async: false,
      +		global: false,
      +		"throws": true
      +	} );
      +};
      +
      +
      +jQuery.fn.extend( {
      +	wrapAll: function( html ) {
      +		var wrap;
      +
      +		if ( this[ 0 ] ) {
      +			if ( isFunction( html ) ) {
      +				html = html.call( this[ 0 ] );
      +			}
      +
      +			// The elements to wrap the target around
      +			wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );
      +
      +			if ( this[ 0 ].parentNode ) {
      +				wrap.insertBefore( this[ 0 ] );
      +			}
      +
      +			wrap.map( function() {
      +				var elem = this;
      +
      +				while ( elem.firstElementChild ) {
      +					elem = elem.firstElementChild;
      +				}
      +
      +				return elem;
      +			} ).append( this );
      +		}
      +
      +		return this;
      +	},
      +
      +	wrapInner: function( html ) {
      +		if ( isFunction( html ) ) {
      +			return this.each( function( i ) {
      +				jQuery( this ).wrapInner( html.call( this, i ) );
      +			} );
      +		}
      +
      +		return this.each( function() {
      +			var self = jQuery( this ),
      +				contents = self.contents();
      +
      +			if ( contents.length ) {
      +				contents.wrapAll( html );
      +
      +			} else {
      +				self.append( html );
      +			}
      +		} );
      +	},
      +
      +	wrap: function( html ) {
      +		var htmlIsFunction = isFunction( html );
      +
      +		return this.each( function( i ) {
      +			jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );
      +		} );
      +	},
      +
      +	unwrap: function( selector ) {
      +		this.parent( selector ).not( "body" ).each( function() {
      +			jQuery( this ).replaceWith( this.childNodes );
      +		} );
      +		return this;
      +	}
      +} );
      +
      +
      +jQuery.expr.pseudos.hidden = function( elem ) {
      +	return !jQuery.expr.pseudos.visible( elem );
      +};
      +jQuery.expr.pseudos.visible = function( elem ) {
      +	return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );
      +};
      +
      +
      +
      +
      +jQuery.ajaxSettings.xhr = function() {
      +	try {
      +		return new window.XMLHttpRequest();
      +	} catch ( e ) {}
      +};
      +
      +var xhrSuccessStatus = {
      +
      +		// File protocol always yields status code 0, assume 200
      +		0: 200,
      +
      +		// Support: IE <=9 only
      +		// #1450: sometimes IE returns 1223 when it should be 204
      +		1223: 204
      +	},
      +	xhrSupported = jQuery.ajaxSettings.xhr();
      +
      +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
      +support.ajax = xhrSupported = !!xhrSupported;
      +
      +jQuery.ajaxTransport( function( options ) {
      +	var callback, errorCallback;
      +
      +	// Cross domain only allowed if supported through XMLHttpRequest
      +	if ( support.cors || xhrSupported && !options.crossDomain ) {
      +		return {
      +			send: function( headers, complete ) {
      +				var i,
      +					xhr = options.xhr();
      +
      +				xhr.open(
      +					options.type,
      +					options.url,
      +					options.async,
      +					options.username,
      +					options.password
      +				);
      +
      +				// Apply custom fields if provided
      +				if ( options.xhrFields ) {
      +					for ( i in options.xhrFields ) {
      +						xhr[ i ] = options.xhrFields[ i ];
      +					}
      +				}
      +
      +				// Override mime type if needed
      +				if ( options.mimeType && xhr.overrideMimeType ) {
      +					xhr.overrideMimeType( options.mimeType );
      +				}
      +
      +				// X-Requested-With header
      +				// For cross-domain requests, seeing as conditions for a preflight are
      +				// akin to a jigsaw puzzle, we simply never set it to be sure.
      +				// (it can always be set on a per-request basis or even using ajaxSetup)
      +				// For same-domain requests, won't change header if already provided.
      +				if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) {
      +					headers[ "X-Requested-With" ] = "XMLHttpRequest";
      +				}
      +
      +				// Set headers
      +				for ( i in headers ) {
      +					xhr.setRequestHeader( i, headers[ i ] );
      +				}
      +
      +				// Callback
      +				callback = function( type ) {
      +					return function() {
      +						if ( callback ) {
      +							callback = errorCallback = xhr.onload =
      +								xhr.onerror = xhr.onabort = xhr.ontimeout =
      +									xhr.onreadystatechange = null;
      +
      +							if ( type === "abort" ) {
      +								xhr.abort();
      +							} else if ( type === "error" ) {
      +
      +								// Support: IE <=9 only
      +								// On a manual native abort, IE9 throws
      +								// errors on any property access that is not readyState
      +								if ( typeof xhr.status !== "number" ) {
      +									complete( 0, "error" );
      +								} else {
      +									complete(
      +
      +										// File: protocol always yields status 0; see #8605, #14207
      +										xhr.status,
      +										xhr.statusText
      +									);
      +								}
      +							} else {
      +								complete(
      +									xhrSuccessStatus[ xhr.status ] || xhr.status,
      +									xhr.statusText,
      +
      +									// Support: IE <=9 only
      +									// IE9 has no XHR2 but throws on binary (trac-11426)
      +									// For XHR2 non-text, let the caller handle it (gh-2498)
      +									( xhr.responseType || "text" ) !== "text"  ||
      +									typeof xhr.responseText !== "string" ?
      +										{ binary: xhr.response } :
      +										{ text: xhr.responseText },
      +									xhr.getAllResponseHeaders()
      +								);
      +							}
      +						}
      +					};
      +				};
      +
      +				// Listen to events
      +				xhr.onload = callback();
      +				errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" );
      +
      +				// Support: IE 9 only
      +				// Use onreadystatechange to replace onabort
      +				// to handle uncaught aborts
      +				if ( xhr.onabort !== undefined ) {
      +					xhr.onabort = errorCallback;
      +				} else {
      +					xhr.onreadystatechange = function() {
      +
      +						// Check readyState before timeout as it changes
      +						if ( xhr.readyState === 4 ) {
      +
      +							// Allow onerror to be called first,
      +							// but that will not handle a native abort
      +							// Also, save errorCallback to a variable
      +							// as xhr.onerror cannot be accessed
      +							window.setTimeout( function() {
      +								if ( callback ) {
      +									errorCallback();
      +								}
      +							} );
      +						}
      +					};
      +				}
      +
      +				// Create the abort callback
      +				callback = callback( "abort" );
      +
      +				try {
      +
      +					// Do send the request (this may raise an exception)
      +					xhr.send( options.hasContent && options.data || null );
      +				} catch ( e ) {
      +
      +					// #14683: Only rethrow if this hasn't been notified as an error yet
      +					if ( callback ) {
      +						throw e;
      +					}
      +				}
      +			},
      +
      +			abort: function() {
      +				if ( callback ) {
      +					callback();
      +				}
      +			}
      +		};
      +	}
      +} );
      +
      +
      +
      +
      +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)
      +jQuery.ajaxPrefilter( function( s ) {
      +	if ( s.crossDomain ) {
      +		s.contents.script = false;
      +	}
      +} );
      +
      +// Install script dataType
      +jQuery.ajaxSetup( {
      +	accepts: {
      +		script: "text/javascript, application/javascript, " +
      +			"application/ecmascript, application/x-ecmascript"
      +	},
      +	contents: {
      +		script: /\b(?:java|ecma)script\b/
      +	},
      +	converters: {
      +		"text script": function( text ) {
      +			jQuery.globalEval( text );
      +			return text;
      +		}
      +	}
      +} );
      +
      +// Handle cache's special case and crossDomain
      +jQuery.ajaxPrefilter( "script", function( s ) {
      +	if ( s.cache === undefined ) {
      +		s.cache = false;
      +	}
      +	if ( s.crossDomain ) {
      +		s.type = "GET";
      +	}
      +} );
      +
      +// Bind script tag hack transport
      +jQuery.ajaxTransport( "script", function( s ) {
      +
      +	// This transport only deals with cross domain requests
      +	if ( s.crossDomain ) {
      +		var script, callback;
      +		return {
      +			send: function( _, complete ) {
      +				script = jQuery( "<script>" ).prop( {
      +					charset: s.scriptCharset,
      +					src: s.url
      +				} ).on(
      +					"load error",
      +					callback = function( evt ) {
      +						script.remove();
      +						callback = null;
      +						if ( evt ) {
      +							complete( evt.type === "error" ? 404 : 200, evt.type );
      +						}
      +					}
      +				);
      +
      +				// Use native DOM manipulation to avoid our domManip AJAX trickery
      +				document.head.appendChild( script[ 0 ] );
      +			},
      +			abort: function() {
      +				if ( callback ) {
      +					callback();
      +				}
      +			}
      +		};
      +	}
      +} );
      +
      +
      +
      +
      +var oldCallbacks = [],
      +	rjsonp = /(=)\?(?=&|$)|\?\?/;
      +
      +// Default jsonp settings
      +jQuery.ajaxSetup( {
      +	jsonp: "callback",
      +	jsonpCallback: function() {
      +		var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) );
      +		this[ callback ] = true;
      +		return callback;
      +	}
      +} );
      +
      +// Detect, normalize options and install callbacks for jsonp requests
      +jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
      +
      +	var callbackName, overwritten, responseContainer,
      +		jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?
      +			"url" :
      +			typeof s.data === "string" &&
      +				( s.contentType || "" )
      +					.indexOf( "application/x-www-form-urlencoded" ) === 0 &&
      +				rjsonp.test( s.data ) && "data"
      +		);
      +
      +	// Handle iff the expected data type is "jsonp" or we have a parameter to set
      +	if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {
      +
      +		// Get callback name, remembering preexisting value associated with it
      +		callbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?
      +			s.jsonpCallback() :
      +			s.jsonpCallback;
      +
      +		// Insert callback into url or form data
      +		if ( jsonProp ) {
      +			s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName );
      +		} else if ( s.jsonp !== false ) {
      +			s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
      +		}
      +
      +		// Use data converter to retrieve json after script execution
      +		s.converters[ "script json" ] = function() {
      +			if ( !responseContainer ) {
      +				jQuery.error( callbackName + " was not called" );
      +			}
      +			return responseContainer[ 0 ];
      +		};
      +
      +		// Force json dataType
      +		s.dataTypes[ 0 ] = "json";
      +
      +		// Install callback
      +		overwritten = window[ callbackName ];
      +		window[ callbackName ] = function() {
      +			responseContainer = arguments;
      +		};
      +
      +		// Clean-up function (fires after converters)
      +		jqXHR.always( function() {
      +
      +			// If previous value didn't exist - remove it
      +			if ( overwritten === undefined ) {
      +				jQuery( window ).removeProp( callbackName );
      +
      +			// Otherwise restore preexisting value
      +			} else {
      +				window[ callbackName ] = overwritten;
      +			}
      +
      +			// Save back as free
      +			if ( s[ callbackName ] ) {
      +
      +				// Make sure that re-using the options doesn't screw things around
      +				s.jsonpCallback = originalSettings.jsonpCallback;
      +
      +				// Save the callback name for future use
      +				oldCallbacks.push( callbackName );
      +			}
      +
      +			// Call if it was a function and we have a response
      +			if ( responseContainer && isFunction( overwritten ) ) {
      +				overwritten( responseContainer[ 0 ] );
      +			}
      +
      +			responseContainer = overwritten = undefined;
      +		} );
      +
      +		// Delegate to script
      +		return "script";
      +	}
      +} );
      +
      +
      +
      +
      +// Support: Safari 8 only
      +// In Safari 8 documents created via document.implementation.createHTMLDocument
      +// collapse sibling forms: the second one becomes a child of the first one.
      +// Because of that, this security measure has to be disabled in Safari 8.
      +// https://bugs.webkit.org/show_bug.cgi?id=137337
      +support.createHTMLDocument = ( function() {
      +	var body = document.implementation.createHTMLDocument( "" ).body;
      +	body.innerHTML = "<form></form><form></form>";
      +	return body.childNodes.length === 2;
      +} )();
      +
      +
      +// Argument "data" should be string of html
      +// context (optional): If specified, the fragment will be created in this context,
      +// defaults to document
      +// keepScripts (optional): If true, will include scripts passed in the html string
      +jQuery.parseHTML = function( data, context, keepScripts ) {
      +	if ( typeof data !== "string" ) {
      +		return [];
      +	}
      +	if ( typeof context === "boolean" ) {
      +		keepScripts = context;
      +		context = false;
      +	}
      +
      +	var base, parsed, scripts;
      +
      +	if ( !context ) {
      +
      +		// Stop scripts or inline event handlers from being executed immediately
      +		// by using document.implementation
      +		if ( support.createHTMLDocument ) {
      +			context = document.implementation.createHTMLDocument( "" );
      +
      +			// Set the base href for the created document
      +			// so any parsed elements with URLs
      +			// are based on the document's URL (gh-2965)
      +			base = context.createElement( "base" );
      +			base.href = document.location.href;
      +			context.head.appendChild( base );
      +		} else {
      +			context = document;
      +		}
      +	}
      +
      +	parsed = rsingleTag.exec( data );
      +	scripts = !keepScripts && [];
      +
      +	// Single tag
      +	if ( parsed ) {
      +		return [ context.createElement( parsed[ 1 ] ) ];
      +	}
      +
      +	parsed = buildFragment( [ data ], context, scripts );
      +
      +	if ( scripts && scripts.length ) {
      +		jQuery( scripts ).remove();
      +	}
      +
      +	return jQuery.merge( [], parsed.childNodes );
      +};
      +
      +
      +/**
      + * Load a url into a page
      + */
      +jQuery.fn.load = function( url, params, callback ) {
      +	var selector, type, response,
      +		self = this,
      +		off = url.indexOf( " " );
      +
      +	if ( off > -1 ) {
      +		selector = stripAndCollapse( url.slice( off ) );
      +		url = url.slice( 0, off );
      +	}
      +
      +	// If it's a function
      +	if ( isFunction( params ) ) {
      +
      +		// We assume that it's the callback
      +		callback = params;
      +		params = undefined;
      +
      +	// Otherwise, build a param string
      +	} else if ( params && typeof params === "object" ) {
      +		type = "POST";
      +	}
      +
      +	// If we have elements to modify, make the request
      +	if ( self.length > 0 ) {
      +		jQuery.ajax( {
      +			url: url,
      +
      +			// If "type" variable is undefined, then "GET" method will be used.
      +			// Make value of this field explicit since
      +			// user can override it through ajaxSetup method
      +			type: type || "GET",
      +			dataType: "html",
      +			data: params
      +		} ).done( function( responseText ) {
      +
      +			// Save response for use in complete callback
      +			response = arguments;
      +
      +			self.html( selector ?
      +
      +				// If a selector was specified, locate the right elements in a dummy div
      +				// Exclude scripts to avoid IE 'Permission Denied' errors
      +				jQuery( "<div>" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :
      +
      +				// Otherwise use the full result
      +				responseText );
      +
      +		// If the request succeeds, this function gets "data", "status", "jqXHR"
      +		// but they are ignored because response was set above.
      +		// If it fails, this function gets "jqXHR", "status", "error"
      +		} ).always( callback && function( jqXHR, status ) {
      +			self.each( function() {
      +				callback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );
      +			} );
      +		} );
      +	}
      +
      +	return this;
      +};
      +
      +
      +
      +
      +// Attach a bunch of functions for handling common AJAX events
      +jQuery.each( [
      +	"ajaxStart",
      +	"ajaxStop",
      +	"ajaxComplete",
      +	"ajaxError",
      +	"ajaxSuccess",
      +	"ajaxSend"
      +], function( i, type ) {
      +	jQuery.fn[ type ] = function( fn ) {
      +		return this.on( type, fn );
      +	};
      +} );
      +
      +
      +
      +
      +jQuery.expr.pseudos.animated = function( elem ) {
      +	return jQuery.grep( jQuery.timers, function( fn ) {
      +		return elem === fn.elem;
      +	} ).length;
      +};
      +
      +
      +
      +
      +jQuery.offset = {
      +	setOffset: function( elem, options, i ) {
      +		var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
      +			position = jQuery.css( elem, "position" ),
      +			curElem = jQuery( elem ),
      +			props = {};
      +
      +		// Set position first, in-case top/left are set even on static elem
      +		if ( position === "static" ) {
      +			elem.style.position = "relative";
      +		}
      +
      +		curOffset = curElem.offset();
      +		curCSSTop = jQuery.css( elem, "top" );
      +		curCSSLeft = jQuery.css( elem, "left" );
      +		calculatePosition = ( position === "absolute" || position === "fixed" ) &&
      +			( curCSSTop + curCSSLeft ).indexOf( "auto" ) > -1;
      +
      +		// Need to be able to calculate position if either
      +		// top or left is auto and position is either absolute or fixed
      +		if ( calculatePosition ) {
      +			curPosition = curElem.position();
      +			curTop = curPosition.top;
      +			curLeft = curPosition.left;
      +
      +		} else {
      +			curTop = parseFloat( curCSSTop ) || 0;
      +			curLeft = parseFloat( curCSSLeft ) || 0;
      +		}
      +
      +		if ( isFunction( options ) ) {
      +
      +			// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)
      +			options = options.call( elem, i, jQuery.extend( {}, curOffset ) );
      +		}
      +
      +		if ( options.top != null ) {
      +			props.top = ( options.top - curOffset.top ) + curTop;
      +		}
      +		if ( options.left != null ) {
      +			props.left = ( options.left - curOffset.left ) + curLeft;
      +		}
      +
      +		if ( "using" in options ) {
      +			options.using.call( elem, props );
      +
      +		} else {
      +			curElem.css( props );
      +		}
      +	}
      +};
      +
      +jQuery.fn.extend( {
      +
      +	// offset() relates an element's border box to the document origin
      +	offset: function( options ) {
      +
      +		// Preserve chaining for setter
      +		if ( arguments.length ) {
      +			return options === undefined ?
      +				this :
      +				this.each( function( i ) {
      +					jQuery.offset.setOffset( this, options, i );
      +				} );
      +		}
      +
      +		var rect, win,
      +			elem = this[ 0 ];
      +
      +		if ( !elem ) {
      +			return;
      +		}
      +
      +		// Return zeros for disconnected and hidden (display: none) elements (gh-2310)
      +		// Support: IE <=11 only
      +		// Running getBoundingClientRect on a
      +		// disconnected node in IE throws an error
      +		if ( !elem.getClientRects().length ) {
      +			return { top: 0, left: 0 };
      +		}
      +
      +		// Get document-relative position by adding viewport scroll to viewport-relative gBCR
      +		rect = elem.getBoundingClientRect();
      +		win = elem.ownerDocument.defaultView;
      +		return {
      +			top: rect.top + win.pageYOffset,
      +			left: rect.left + win.pageXOffset
      +		};
      +	},
      +
      +	// position() relates an element's margin box to its offset parent's padding box
      +	// This corresponds to the behavior of CSS absolute positioning
      +	position: function() {
      +		if ( !this[ 0 ] ) {
      +			return;
      +		}
      +
      +		var offsetParent, offset, doc,
      +			elem = this[ 0 ],
      +			parentOffset = { top: 0, left: 0 };
      +
      +		// position:fixed elements are offset from the viewport, which itself always has zero offset
      +		if ( jQuery.css( elem, "position" ) === "fixed" ) {
      +
      +			// Assume position:fixed implies availability of getBoundingClientRect
      +			offset = elem.getBoundingClientRect();
      +
      +		} else {
      +			offset = this.offset();
      +
      +			// Account for the *real* offset parent, which can be the document or its root element
      +			// when a statically positioned element is identified
      +			doc = elem.ownerDocument;
      +			offsetParent = elem.offsetParent || doc.documentElement;
      +			while ( offsetParent &&
      +				( offsetParent === doc.body || offsetParent === doc.documentElement ) &&
      +				jQuery.css( offsetParent, "position" ) === "static" ) {
      +
      +				offsetParent = offsetParent.parentNode;
      +			}
      +			if ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {
      +
      +				// Incorporate borders into its offset, since they are outside its content origin
      +				parentOffset = jQuery( offsetParent ).offset();
      +				parentOffset.top += jQuery.css( offsetParent, "borderTopWidth", true );
      +				parentOffset.left += jQuery.css( offsetParent, "borderLeftWidth", true );
      +			}
      +		}
      +
      +		// Subtract parent offsets and element margins
      +		return {
      +			top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ),
      +			left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true )
      +		};
      +	},
      +
      +	// This method will return documentElement in the following cases:
      +	// 1) For the element inside the iframe without offsetParent, this method will return
      +	//    documentElement of the parent window
      +	// 2) For the hidden or detached element
      +	// 3) For body or html element, i.e. in case of the html node - it will return itself
      +	//
      +	// but those exceptions were never presented as a real life use-cases
      +	// and might be considered as more preferable results.
      +	//
      +	// This logic, however, is not guaranteed and can change at any point in the future
      +	offsetParent: function() {
      +		return this.map( function() {
      +			var offsetParent = this.offsetParent;
      +
      +			while ( offsetParent && jQuery.css( offsetParent, "position" ) === "static" ) {
      +				offsetParent = offsetParent.offsetParent;
      +			}
      +
      +			return offsetParent || documentElement;
      +		} );
      +	}
      +} );
      +
      +// Create scrollLeft and scrollTop methods
      +jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) {
      +	var top = "pageYOffset" === prop;
      +
      +	jQuery.fn[ method ] = function( val ) {
      +		return access( this, function( elem, method, val ) {
      +
      +			// Coalesce documents and windows
      +			var win;
      +			if ( isWindow( elem ) ) {
      +				win = elem;
      +			} else if ( elem.nodeType === 9 ) {
      +				win = elem.defaultView;
      +			}
      +
      +			if ( val === undefined ) {
      +				return win ? win[ prop ] : elem[ method ];
      +			}
      +
      +			if ( win ) {
      +				win.scrollTo(
      +					!top ? val : win.pageXOffset,
      +					top ? val : win.pageYOffset
      +				);
      +
      +			} else {
      +				elem[ method ] = val;
      +			}
      +		}, method, val, arguments.length );
      +	};
      +} );
      +
      +// Support: Safari <=7 - 9.1, Chrome <=37 - 49
      +// Add the top/left cssHooks using jQuery.fn.position
      +// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
      +// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347
      +// getComputedStyle returns percent when specified for top/left/bottom/right;
      +// rather than make the css module depend on the offset module, just check for it here
      +jQuery.each( [ "top", "left" ], function( i, prop ) {
      +	jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
      +		function( elem, computed ) {
      +			if ( computed ) {
      +				computed = curCSS( elem, prop );
      +
      +				// If curCSS returns percentage, fallback to offset
      +				return rnumnonpx.test( computed ) ?
      +					jQuery( elem ).position()[ prop ] + "px" :
      +					computed;
      +			}
      +		}
      +	);
      +} );
      +
      +
      +// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
      +jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
      +	jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name },
      +		function( defaultExtra, funcName ) {
      +
      +		// Margin is only for outerHeight, outerWidth
      +		jQuery.fn[ funcName ] = function( margin, value ) {
      +			var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
      +				extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
      +
      +			return access( this, function( elem, type, value ) {
      +				var doc;
      +
      +				if ( isWindow( elem ) ) {
      +
      +					// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)
      +					return funcName.indexOf( "outer" ) === 0 ?
      +						elem[ "inner" + name ] :
      +						elem.document.documentElement[ "client" + name ];
      +				}
      +
      +				// Get document width or height
      +				if ( elem.nodeType === 9 ) {
      +					doc = elem.documentElement;
      +
      +					// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],
      +					// whichever is greatest
      +					return Math.max(
      +						elem.body[ "scroll" + name ], doc[ "scroll" + name ],
      +						elem.body[ "offset" + name ], doc[ "offset" + name ],
      +						doc[ "client" + name ]
      +					);
      +				}
      +
      +				return value === undefined ?
      +
      +					// Get width or height on the element, requesting but not forcing parseFloat
      +					jQuery.css( elem, type, extra ) :
      +
      +					// Set width or height on the element
      +					jQuery.style( elem, type, value, extra );
      +			}, type, chainable ? margin : undefined, chainable );
      +		};
      +	} );
      +} );
      +
      +
      +jQuery.each( ( "blur focus focusin focusout resize scroll click dblclick " +
      +	"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
      +	"change select submit keydown keypress keyup contextmenu" ).split( " " ),
      +	function( i, name ) {
      +
      +	// Handle event binding
      +	jQuery.fn[ name ] = function( data, fn ) {
      +		return arguments.length > 0 ?
      +			this.on( name, null, data, fn ) :
      +			this.trigger( name );
      +	};
      +} );
      +
      +jQuery.fn.extend( {
      +	hover: function( fnOver, fnOut ) {
      +		return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
      +	}
      +} );
      +
      +
      +
      +
      +jQuery.fn.extend( {
      +
      +	bind: function( types, data, fn ) {
      +		return this.on( types, null, data, fn );
      +	},
      +	unbind: function( types, fn ) {
      +		return this.off( types, null, fn );
      +	},
      +
      +	delegate: function( selector, types, data, fn ) {
      +		return this.on( types, selector, data, fn );
      +	},
      +	undelegate: function( selector, types, fn ) {
      +
      +		// ( namespace ) or ( selector, types [, fn] )
      +		return arguments.length === 1 ?
      +			this.off( selector, "**" ) :
      +			this.off( types, selector || "**", fn );
      +	}
      +} );
      +
      +// Bind a function to a context, optionally partially applying any
      +// arguments.
      +// jQuery.proxy is deprecated to promote standards (specifically Function#bind)
      +// However, it is not slated for removal any time soon
      +jQuery.proxy = function( fn, context ) {
      +	var tmp, args, proxy;
      +
      +	if ( typeof context === "string" ) {
      +		tmp = fn[ context ];
      +		context = fn;
      +		fn = tmp;
      +	}
      +
      +	// Quick check to determine if target is callable, in the spec
      +	// this throws a TypeError, but we will just return undefined.
      +	if ( !isFunction( fn ) ) {
      +		return undefined;
      +	}
      +
      +	// Simulated bind
      +	args = slice.call( arguments, 2 );
      +	proxy = function() {
      +		return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
      +	};
      +
      +	// Set the guid of unique handler to the same of original handler, so it can be removed
      +	proxy.guid = fn.guid = fn.guid || jQuery.guid++;
      +
      +	return proxy;
      +};
      +
      +jQuery.holdReady = function( hold ) {
      +	if ( hold ) {
      +		jQuery.readyWait++;
      +	} else {
      +		jQuery.ready( true );
      +	}
      +};
      +jQuery.isArray = Array.isArray;
      +jQuery.parseJSON = JSON.parse;
      +jQuery.nodeName = nodeName;
      +jQuery.isFunction = isFunction;
      +jQuery.isWindow = isWindow;
      +jQuery.camelCase = camelCase;
      +jQuery.type = toType;
      +
      +jQuery.now = Date.now;
      +
      +jQuery.isNumeric = function( obj ) {
      +
      +	// As of jQuery 3.0, isNumeric is limited to
      +	// strings and numbers (primitives or objects)
      +	// that can be coerced to finite numbers (gh-2662)
      +	var type = jQuery.type( obj );
      +	return ( type === "number" || type === "string" ) &&
      +
      +		// parseFloat NaNs numeric-cast false positives ("")
      +		// ...but misinterprets leading-number strings, particularly hex literals ("0x...")
      +		// subtraction forces infinities to NaN
      +		!isNaN( obj - parseFloat( obj ) );
      +};
      +
      +
      +
      +
      +// Register as a named AMD module, since jQuery can be concatenated with other
      +// files that may use define, but not via a proper concatenation script that
      +// understands anonymous AMD modules. A named AMD is safest and most robust
      +// way to register. Lowercase jquery is used because AMD module names are
      +// derived from file names, and jQuery is normally delivered in a lowercase
      +// file name. Do this after creating the global so that if an AMD module wants
      +// to call noConflict to hide this version of jQuery, it will work.
      +
      +// Note that for maximum portability, libraries that are not jQuery should
      +// declare themselves as anonymous modules, and avoid setting a global if an
      +// AMD loader is present. jQuery is a special case. For more information, see
      +// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon
      +
      +if ( typeof define === "function" && define.amd ) {
      +	define( "jquery", [], function() {
      +		return jQuery;
      +	} );
      +}
      +
      +
      +
      +
      +var
      +
      +	// Map over jQuery in case of overwrite
      +	_jQuery = window.jQuery,
      +
      +	// Map over the $ in case of overwrite
      +	_$ = window.$;
      +
      +jQuery.noConflict = function( deep ) {
      +	if ( window.$ === jQuery ) {
      +		window.$ = _$;
      +	}
      +
      +	if ( deep && window.jQuery === jQuery ) {
      +		window.jQuery = _jQuery;
      +	}
      +
      +	return jQuery;
      +};
      +
      +// Expose jQuery and $ identifiers, even in AMD
      +// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
      +// and CommonJS for browser emulators (#13566)
      +if ( !noGlobal ) {
      +	window.jQuery = window.$ = jQuery;
      +}
      +
      +
      +
      +
      +return jQuery;
      +} );
      diff --git a/docs/site/testapidocs/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png b/docs/site/testapidocs/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png
      new file mode 100644
      index 00000000..34abd18f
      Binary files /dev/null and b/docs/site/testapidocs/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png differ
      diff --git a/docs/site/testapidocs/jquery/images/ui-bg_glass_65_dadada_1x400.png b/docs/site/testapidocs/jquery/images/ui-bg_glass_65_dadada_1x400.png
      new file mode 100644
      index 00000000..f058a938
      Binary files /dev/null and b/docs/site/testapidocs/jquery/images/ui-bg_glass_65_dadada_1x400.png differ
      diff --git a/docs/site/testapidocs/jquery/images/ui-bg_glass_75_dadada_1x400.png b/docs/site/testapidocs/jquery/images/ui-bg_glass_75_dadada_1x400.png
      new file mode 100644
      index 00000000..2ce04c16
      Binary files /dev/null and b/docs/site/testapidocs/jquery/images/ui-bg_glass_75_dadada_1x400.png differ
      diff --git a/docs/site/testapidocs/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png b/docs/site/testapidocs/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png
      new file mode 100644
      index 00000000..a90afb8b
      Binary files /dev/null and b/docs/site/testapidocs/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png differ
      diff --git a/docs/site/testapidocs/jquery/images/ui-bg_glass_95_fef1ec_1x400.png b/docs/site/testapidocs/jquery/images/ui-bg_glass_95_fef1ec_1x400.png
      new file mode 100644
      index 00000000..dbe091f6
      Binary files /dev/null and b/docs/site/testapidocs/jquery/images/ui-bg_glass_95_fef1ec_1x400.png differ
      diff --git a/docs/site/testapidocs/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png b/docs/site/testapidocs/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png
      new file mode 100644
      index 00000000..5dc3593e
      Binary files /dev/null and b/docs/site/testapidocs/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png differ
      diff --git a/docs/site/testapidocs/jquery/images/ui-icons_222222_256x240.png b/docs/site/testapidocs/jquery/images/ui-icons_222222_256x240.png
      new file mode 100644
      index 00000000..e723e17c
      Binary files /dev/null and b/docs/site/testapidocs/jquery/images/ui-icons_222222_256x240.png differ
      diff --git a/docs/site/testapidocs/jquery/images/ui-icons_2e83ff_256x240.png b/docs/site/testapidocs/jquery/images/ui-icons_2e83ff_256x240.png
      new file mode 100644
      index 00000000..1f5f4975
      Binary files /dev/null and b/docs/site/testapidocs/jquery/images/ui-icons_2e83ff_256x240.png differ
      diff --git a/docs/site/testapidocs/jquery/images/ui-icons_454545_256x240.png b/docs/site/testapidocs/jquery/images/ui-icons_454545_256x240.png
      new file mode 100644
      index 00000000..618f5b0c
      Binary files /dev/null and b/docs/site/testapidocs/jquery/images/ui-icons_454545_256x240.png differ
      diff --git a/docs/site/testapidocs/jquery/images/ui-icons_888888_256x240.png b/docs/site/testapidocs/jquery/images/ui-icons_888888_256x240.png
      new file mode 100644
      index 00000000..ee5e33f2
      Binary files /dev/null and b/docs/site/testapidocs/jquery/images/ui-icons_888888_256x240.png differ
      diff --git a/docs/site/testapidocs/jquery/images/ui-icons_cd0a0a_256x240.png b/docs/site/testapidocs/jquery/images/ui-icons_cd0a0a_256x240.png
      new file mode 100644
      index 00000000..7e8ebc18
      Binary files /dev/null and b/docs/site/testapidocs/jquery/images/ui-icons_cd0a0a_256x240.png differ
      diff --git a/docs/site/testapidocs/jquery/jquery-3.3.1.js b/docs/site/testapidocs/jquery/jquery-3.3.1.js
      new file mode 100644
      index 00000000..9b5206bc
      --- /dev/null
      +++ b/docs/site/testapidocs/jquery/jquery-3.3.1.js
      @@ -0,0 +1,10364 @@
      +/*!
      + * jQuery JavaScript Library v3.3.1
      + * https://jquery.com/
      + *
      + * Includes Sizzle.js
      + * https://sizzlejs.com/
      + *
      + * Copyright JS Foundation and other contributors
      + * Released under the MIT license
      + * https://jquery.org/license
      + *
      + * Date: 2018-01-20T17:24Z
      + */
      +( function( global, factory ) {
      +
      +	"use strict";
      +
      +	if ( typeof module === "object" && typeof module.exports === "object" ) {
      +
      +		// For CommonJS and CommonJS-like environments where a proper `window`
      +		// is present, execute the factory and get jQuery.
      +		// For environments that do not have a `window` with a `document`
      +		// (such as Node.js), expose a factory as module.exports.
      +		// This accentuates the need for the creation of a real `window`.
      +		// e.g. var jQuery = require("jquery")(window);
      +		// See ticket #14549 for more info.
      +		module.exports = global.document ?
      +			factory( global, true ) :
      +			function( w ) {
      +				if ( !w.document ) {
      +					throw new Error( "jQuery requires a window with a document" );
      +				}
      +				return factory( w );
      +			};
      +	} else {
      +		factory( global );
      +	}
      +
      +// Pass this if window is not defined yet
      +} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
      +
      +// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
      +// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
      +// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
      +// enough that all such attempts are guarded in a try block.
      +"use strict";
      +
      +var arr = [];
      +
      +var document = window.document;
      +
      +var getProto = Object.getPrototypeOf;
      +
      +var slice = arr.slice;
      +
      +var concat = arr.concat;
      +
      +var push = arr.push;
      +
      +var indexOf = arr.indexOf;
      +
      +var class2type = {};
      +
      +var toString = class2type.toString;
      +
      +var hasOwn = class2type.hasOwnProperty;
      +
      +var fnToString = hasOwn.toString;
      +
      +var ObjectFunctionString = fnToString.call( Object );
      +
      +var support = {};
      +
      +var isFunction = function isFunction( obj ) {
      +
      +      // Support: Chrome <=57, Firefox <=52
      +      // In some browsers, typeof returns "function" for HTML <object> elements
      +      // (i.e., `typeof document.createElement( "object" ) === "function"`).
      +      // We don't want to classify *any* DOM node as a function.
      +      return typeof obj === "function" && typeof obj.nodeType !== "number";
      +  };
      +
      +
      +var isWindow = function isWindow( obj ) {
      +		return obj != null && obj === obj.window;
      +	};
      +
      +
      +
      +
      +	var preservedScriptAttributes = {
      +		type: true,
      +		src: true,
      +		noModule: true
      +	};
      +
      +	function DOMEval( code, doc, node ) {
      +		doc = doc || document;
      +
      +		var i,
      +			script = doc.createElement( "script" );
      +
      +		script.text = code;
      +		if ( node ) {
      +			for ( i in preservedScriptAttributes ) {
      +				if ( node[ i ] ) {
      +					script[ i ] = node[ i ];
      +				}
      +			}
      +		}
      +		doc.head.appendChild( script ).parentNode.removeChild( script );
      +	}
      +
      +
      +function toType( obj ) {
      +	if ( obj == null ) {
      +		return obj + "";
      +	}
      +
      +	// Support: Android <=2.3 only (functionish RegExp)
      +	return typeof obj === "object" || typeof obj === "function" ?
      +		class2type[ toString.call( obj ) ] || "object" :
      +		typeof obj;
      +}
      +/* global Symbol */
      +// Defining this global in .eslintrc.json would create a danger of using the global
      +// unguarded in another place, it seems safer to define global only for this module
      +
      +
      +
      +var
      +	version = "3.3.1",
      +
      +	// Define a local copy of jQuery
      +	jQuery = function( selector, context ) {
      +
      +		// The jQuery object is actually just the init constructor 'enhanced'
      +		// Need init if jQuery is called (just allow error to be thrown if not included)
      +		return new jQuery.fn.init( selector, context );
      +	},
      +
      +	// Support: Android <=4.0 only
      +	// Make sure we trim BOM and NBSP
      +	rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
      +
      +jQuery.fn = jQuery.prototype = {
      +
      +	// The current version of jQuery being used
      +	jquery: version,
      +
      +	constructor: jQuery,
      +
      +	// The default length of a jQuery object is 0
      +	length: 0,
      +
      +	toArray: function() {
      +		return slice.call( this );
      +	},
      +
      +	// Get the Nth element in the matched element set OR
      +	// Get the whole matched element set as a clean array
      +	get: function( num ) {
      +
      +		// Return all the elements in a clean array
      +		if ( num == null ) {
      +			return slice.call( this );
      +		}
      +
      +		// Return just the one element from the set
      +		return num < 0 ? this[ num + this.length ] : this[ num ];
      +	},
      +
      +	// Take an array of elements and push it onto the stack
      +	// (returning the new matched element set)
      +	pushStack: function( elems ) {
      +
      +		// Build a new jQuery matched element set
      +		var ret = jQuery.merge( this.constructor(), elems );
      +
      +		// Add the old object onto the stack (as a reference)
      +		ret.prevObject = this;
      +
      +		// Return the newly-formed element set
      +		return ret;
      +	},
      +
      +	// Execute a callback for every element in the matched set.
      +	each: function( callback ) {
      +		return jQuery.each( this, callback );
      +	},
      +
      +	map: function( callback ) {
      +		return this.pushStack( jQuery.map( this, function( elem, i ) {
      +			return callback.call( elem, i, elem );
      +		} ) );
      +	},
      +
      +	slice: function() {
      +		return this.pushStack( slice.apply( this, arguments ) );
      +	},
      +
      +	first: function() {
      +		return this.eq( 0 );
      +	},
      +
      +	last: function() {
      +		return this.eq( -1 );
      +	},
      +
      +	eq: function( i ) {
      +		var len = this.length,
      +			j = +i + ( i < 0 ? len : 0 );
      +		return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );
      +	},
      +
      +	end: function() {
      +		return this.prevObject || this.constructor();
      +	},
      +
      +	// For internal use only.
      +	// Behaves like an Array's method, not like a jQuery method.
      +	push: push,
      +	sort: arr.sort,
      +	splice: arr.splice
      +};
      +
      +jQuery.extend = jQuery.fn.extend = function() {
      +	var options, name, src, copy, copyIsArray, clone,
      +		target = arguments[ 0 ] || {},
      +		i = 1,
      +		length = arguments.length,
      +		deep = false;
      +
      +	// Handle a deep copy situation
      +	if ( typeof target === "boolean" ) {
      +		deep = target;
      +
      +		// Skip the boolean and the target
      +		target = arguments[ i ] || {};
      +		i++;
      +	}
      +
      +	// Handle case when target is a string or something (possible in deep copy)
      +	if ( typeof target !== "object" && !isFunction( target ) ) {
      +		target = {};
      +	}
      +
      +	// Extend jQuery itself if only one argument is passed
      +	if ( i === length ) {
      +		target = this;
      +		i--;
      +	}
      +
      +	for ( ; i < length; i++ ) {
      +
      +		// Only deal with non-null/undefined values
      +		if ( ( options = arguments[ i ] ) != null ) {
      +
      +			// Extend the base object
      +			for ( name in options ) {
      +				src = target[ name ];
      +				copy = options[ name ];
      +
      +				// Prevent never-ending loop
      +				if ( target === copy ) {
      +					continue;
      +				}
      +
      +				// Recurse if we're merging plain objects or arrays
      +				if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
      +					( copyIsArray = Array.isArray( copy ) ) ) ) {
      +
      +					if ( copyIsArray ) {
      +						copyIsArray = false;
      +						clone = src && Array.isArray( src ) ? src : [];
      +
      +					} else {
      +						clone = src && jQuery.isPlainObject( src ) ? src : {};
      +					}
      +
      +					// Never move original objects, clone them
      +					target[ name ] = jQuery.extend( deep, clone, copy );
      +
      +				// Don't bring in undefined values
      +				} else if ( copy !== undefined ) {
      +					target[ name ] = copy;
      +				}
      +			}
      +		}
      +	}
      +
      +	// Return the modified object
      +	return target;
      +};
      +
      +jQuery.extend( {
      +
      +	// Unique for each copy of jQuery on the page
      +	expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
      +
      +	// Assume jQuery is ready without the ready module
      +	isReady: true,
      +
      +	error: function( msg ) {
      +		throw new Error( msg );
      +	},
      +
      +	noop: function() {},
      +
      +	isPlainObject: function( obj ) {
      +		var proto, Ctor;
      +
      +		// Detect obvious negatives
      +		// Use toString instead of jQuery.type to catch host objects
      +		if ( !obj || toString.call( obj ) !== "[object Object]" ) {
      +			return false;
      +		}
      +
      +		proto = getProto( obj );
      +
      +		// Objects with no prototype (e.g., `Object.create( null )`) are plain
      +		if ( !proto ) {
      +			return true;
      +		}
      +
      +		// Objects with prototype are plain iff they were constructed by a global Object function
      +		Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor;
      +		return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString;
      +	},
      +
      +	isEmptyObject: function( obj ) {
      +
      +		/* eslint-disable no-unused-vars */
      +		// See https://github.com/eslint/eslint/issues/6125
      +		var name;
      +
      +		for ( name in obj ) {
      +			return false;
      +		}
      +		return true;
      +	},
      +
      +	// Evaluates a script in a global context
      +	globalEval: function( code ) {
      +		DOMEval( code );
      +	},
      +
      +	each: function( obj, callback ) {
      +		var length, i = 0;
      +
      +		if ( isArrayLike( obj ) ) {
      +			length = obj.length;
      +			for ( ; i < length; i++ ) {
      +				if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
      +					break;
      +				}
      +			}
      +		} else {
      +			for ( i in obj ) {
      +				if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
      +					break;
      +				}
      +			}
      +		}
      +
      +		return obj;
      +	},
      +
      +	// Support: Android <=4.0 only
      +	trim: function( text ) {
      +		return text == null ?
      +			"" :
      +			( text + "" ).replace( rtrim, "" );
      +	},
      +
      +	// results is for internal usage only
      +	makeArray: function( arr, results ) {
      +		var ret = results || [];
      +
      +		if ( arr != null ) {
      +			if ( isArrayLike( Object( arr ) ) ) {
      +				jQuery.merge( ret,
      +					typeof arr === "string" ?
      +					[ arr ] : arr
      +				);
      +			} else {
      +				push.call( ret, arr );
      +			}
      +		}
      +
      +		return ret;
      +	},
      +
      +	inArray: function( elem, arr, i ) {
      +		return arr == null ? -1 : indexOf.call( arr, elem, i );
      +	},
      +
      +	// Support: Android <=4.0 only, PhantomJS 1 only
      +	// push.apply(_, arraylike) throws on ancient WebKit
      +	merge: function( first, second ) {
      +		var len = +second.length,
      +			j = 0,
      +			i = first.length;
      +
      +		for ( ; j < len; j++ ) {
      +			first[ i++ ] = second[ j ];
      +		}
      +
      +		first.length = i;
      +
      +		return first;
      +	},
      +
      +	grep: function( elems, callback, invert ) {
      +		var callbackInverse,
      +			matches = [],
      +			i = 0,
      +			length = elems.length,
      +			callbackExpect = !invert;
      +
      +		// Go through the array, only saving the items
      +		// that pass the validator function
      +		for ( ; i < length; i++ ) {
      +			callbackInverse = !callback( elems[ i ], i );
      +			if ( callbackInverse !== callbackExpect ) {
      +				matches.push( elems[ i ] );
      +			}
      +		}
      +
      +		return matches;
      +	},
      +
      +	// arg is for internal usage only
      +	map: function( elems, callback, arg ) {
      +		var length, value,
      +			i = 0,
      +			ret = [];
      +
      +		// Go through the array, translating each of the items to their new values
      +		if ( isArrayLike( elems ) ) {
      +			length = elems.length;
      +			for ( ; i < length; i++ ) {
      +				value = callback( elems[ i ], i, arg );
      +
      +				if ( value != null ) {
      +					ret.push( value );
      +				}
      +			}
      +
      +		// Go through every key on the object,
      +		} else {
      +			for ( i in elems ) {
      +				value = callback( elems[ i ], i, arg );
      +
      +				if ( value != null ) {
      +					ret.push( value );
      +				}
      +			}
      +		}
      +
      +		// Flatten any nested arrays
      +		return concat.apply( [], ret );
      +	},
      +
      +	// A global GUID counter for objects
      +	guid: 1,
      +
      +	// jQuery.support is not used in Core but other projects attach their
      +	// properties to it so it needs to exist.
      +	support: support
      +} );
      +
      +if ( typeof Symbol === "function" ) {
      +	jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];
      +}
      +
      +// Populate the class2type map
      +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ),
      +function( i, name ) {
      +	class2type[ "[object " + name + "]" ] = name.toLowerCase();
      +} );
      +
      +function isArrayLike( obj ) {
      +
      +	// Support: real iOS 8.2 only (not reproducible in simulator)
      +	// `in` check used to prevent JIT error (gh-2145)
      +	// hasOwn isn't used here due to false negatives
      +	// regarding Nodelist length in IE
      +	var length = !!obj && "length" in obj && obj.length,
      +		type = toType( obj );
      +
      +	if ( isFunction( obj ) || isWindow( obj ) ) {
      +		return false;
      +	}
      +
      +	return type === "array" || length === 0 ||
      +		typeof length === "number" && length > 0 && ( length - 1 ) in obj;
      +}
      +var Sizzle =
      +/*!
      + * Sizzle CSS Selector Engine v2.3.3
      + * https://sizzlejs.com/
      + *
      + * Copyright jQuery Foundation and other contributors
      + * Released under the MIT license
      + * http://jquery.org/license
      + *
      + * Date: 2016-08-08
      + */
      +(function( window ) {
      +
      +var i,
      +	support,
      +	Expr,
      +	getText,
      +	isXML,
      +	tokenize,
      +	compile,
      +	select,
      +	outermostContext,
      +	sortInput,
      +	hasDuplicate,
      +
      +	// Local document vars
      +	setDocument,
      +	document,
      +	docElem,
      +	documentIsHTML,
      +	rbuggyQSA,
      +	rbuggyMatches,
      +	matches,
      +	contains,
      +
      +	// Instance-specific data
      +	expando = "sizzle" + 1 * new Date(),
      +	preferredDoc = window.document,
      +	dirruns = 0,
      +	done = 0,
      +	classCache = createCache(),
      +	tokenCache = createCache(),
      +	compilerCache = createCache(),
      +	sortOrder = function( a, b ) {
      +		if ( a === b ) {
      +			hasDuplicate = true;
      +		}
      +		return 0;
      +	},
      +
      +	// Instance methods
      +	hasOwn = ({}).hasOwnProperty,
      +	arr = [],
      +	pop = arr.pop,
      +	push_native = arr.push,
      +	push = arr.push,
      +	slice = arr.slice,
      +	// Use a stripped-down indexOf as it's faster than native
      +	// https://jsperf.com/thor-indexof-vs-for/5
      +	indexOf = function( list, elem ) {
      +		var i = 0,
      +			len = list.length;
      +		for ( ; i < len; i++ ) {
      +			if ( list[i] === elem ) {
      +				return i;
      +			}
      +		}
      +		return -1;
      +	},
      +
      +	booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
      +
      +	// Regular expressions
      +
      +	// http://www.w3.org/TR/css3-selectors/#whitespace
      +	whitespace = "[\\x20\\t\\r\\n\\f]",
      +
      +	// http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
      +	identifier = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+",
      +
      +	// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors
      +	attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace +
      +		// Operator (capture 2)
      +		"*([*^$|!~]?=)" + whitespace +
      +		// "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]"
      +		"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace +
      +		"*\\]",
      +
      +	pseudos = ":(" + identifier + ")(?:\\((" +
      +		// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:
      +		// 1. quoted (capture 3; capture 4 or capture 5)
      +		"('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" +
      +		// 2. simple (capture 6)
      +		"((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" +
      +		// 3. anything else (capture 2)
      +		".*" +
      +		")\\)|)",
      +
      +	// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
      +	rwhitespace = new RegExp( whitespace + "+", "g" ),
      +	rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
      +
      +	rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
      +	rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
      +
      +	rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ),
      +
      +	rpseudo = new RegExp( pseudos ),
      +	ridentifier = new RegExp( "^" + identifier + "$" ),
      +
      +	matchExpr = {
      +		"ID": new RegExp( "^#(" + identifier + ")" ),
      +		"CLASS": new RegExp( "^\\.(" + identifier + ")" ),
      +		"TAG": new RegExp( "^(" + identifier + "|[*])" ),
      +		"ATTR": new RegExp( "^" + attributes ),
      +		"PSEUDO": new RegExp( "^" + pseudos ),
      +		"CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
      +			"*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
      +			"*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
      +		"bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
      +		// For use in libraries implementing .is()
      +		// We use this for POS matching in `select`
      +		"needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
      +			whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
      +	},
      +
      +	rinputs = /^(?:input|select|textarea|button)$/i,
      +	rheader = /^h\d$/i,
      +
      +	rnative = /^[^{]+\{\s*\[native \w/,
      +
      +	// Easily-parseable/retrievable ID or TAG or CLASS selectors
      +	rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
      +
      +	rsibling = /[+~]/,
      +
      +	// CSS escapes
      +	// http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
      +	runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ),
      +	funescape = function( _, escaped, escapedWhitespace ) {
      +		var high = "0x" + escaped - 0x10000;
      +		// NaN means non-codepoint
      +		// Support: Firefox<24
      +		// Workaround erroneous numeric interpretation of +"0x"
      +		return high !== high || escapedWhitespace ?
      +			escaped :
      +			high < 0 ?
      +				// BMP codepoint
      +				String.fromCharCode( high + 0x10000 ) :
      +				// Supplemental Plane codepoint (surrogate pair)
      +				String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
      +	},
      +
      +	// CSS string/identifier serialization
      +	// https://drafts.csswg.org/cssom/#common-serializing-idioms
      +	rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,
      +	fcssescape = function( ch, asCodePoint ) {
      +		if ( asCodePoint ) {
      +
      +			// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER
      +			if ( ch === "\0" ) {
      +				return "\uFFFD";
      +			}
      +
      +			// Control characters and (dependent upon position) numbers get escaped as code points
      +			return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " ";
      +		}
      +
      +		// Other potentially-special ASCII characters get backslash-escaped
      +		return "\\" + ch;
      +	},
      +
      +	// Used for iframes
      +	// See setDocument()
      +	// Removing the function wrapper causes a "Permission Denied"
      +	// error in IE
      +	unloadHandler = function() {
      +		setDocument();
      +	},
      +
      +	disabledAncestor = addCombinator(
      +		function( elem ) {
      +			return elem.disabled === true && ("form" in elem || "label" in elem);
      +		},
      +		{ dir: "parentNode", next: "legend" }
      +	);
      +
      +// Optimize for push.apply( _, NodeList )
      +try {
      +	push.apply(
      +		(arr = slice.call( preferredDoc.childNodes )),
      +		preferredDoc.childNodes
      +	);
      +	// Support: Android<4.0
      +	// Detect silently failing push.apply
      +	arr[ preferredDoc.childNodes.length ].nodeType;
      +} catch ( e ) {
      +	push = { apply: arr.length ?
      +
      +		// Leverage slice if possible
      +		function( target, els ) {
      +			push_native.apply( target, slice.call(els) );
      +		} :
      +
      +		// Support: IE<9
      +		// Otherwise append directly
      +		function( target, els ) {
      +			var j = target.length,
      +				i = 0;
      +			// Can't trust NodeList.length
      +			while ( (target[j++] = els[i++]) ) {}
      +			target.length = j - 1;
      +		}
      +	};
      +}
      +
      +function Sizzle( selector, context, results, seed ) {
      +	var m, i, elem, nid, match, groups, newSelector,
      +		newContext = context && context.ownerDocument,
      +
      +		// nodeType defaults to 9, since context defaults to document
      +		nodeType = context ? context.nodeType : 9;
      +
      +	results = results || [];
      +
      +	// Return early from calls with invalid selector or context
      +	if ( typeof selector !== "string" || !selector ||
      +		nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {
      +
      +		return results;
      +	}
      +
      +	// Try to shortcut find operations (as opposed to filters) in HTML documents
      +	if ( !seed ) {
      +
      +		if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
      +			setDocument( context );
      +		}
      +		context = context || document;
      +
      +		if ( documentIsHTML ) {
      +
      +			// If the selector is sufficiently simple, try using a "get*By*" DOM method
      +			// (excepting DocumentFragment context, where the methods don't exist)
      +			if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {
      +
      +				// ID selector
      +				if ( (m = match[1]) ) {
      +
      +					// Document context
      +					if ( nodeType === 9 ) {
      +						if ( (elem = context.getElementById( m )) ) {
      +
      +							// Support: IE, Opera, Webkit
      +							// TODO: identify versions
      +							// getElementById can match elements by name instead of ID
      +							if ( elem.id === m ) {
      +								results.push( elem );
      +								return results;
      +							}
      +						} else {
      +							return results;
      +						}
      +
      +					// Element context
      +					} else {
      +
      +						// Support: IE, Opera, Webkit
      +						// TODO: identify versions
      +						// getElementById can match elements by name instead of ID
      +						if ( newContext && (elem = newContext.getElementById( m )) &&
      +							contains( context, elem ) &&
      +							elem.id === m ) {
      +
      +							results.push( elem );
      +							return results;
      +						}
      +					}
      +
      +				// Type selector
      +				} else if ( match[2] ) {
      +					push.apply( results, context.getElementsByTagName( selector ) );
      +					return results;
      +
      +				// Class selector
      +				} else if ( (m = match[3]) && support.getElementsByClassName &&
      +					context.getElementsByClassName ) {
      +
      +					push.apply( results, context.getElementsByClassName( m ) );
      +					return results;
      +				}
      +			}
      +
      +			// Take advantage of querySelectorAll
      +			if ( support.qsa &&
      +				!compilerCache[ selector + " " ] &&
      +				(!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
      +
      +				if ( nodeType !== 1 ) {
      +					newContext = context;
      +					newSelector = selector;
      +
      +				// qSA looks outside Element context, which is not what we want
      +				// Thanks to Andrew Dupont for this workaround technique
      +				// Support: IE <=8
      +				// Exclude object elements
      +				} else if ( context.nodeName.toLowerCase() !== "object" ) {
      +
      +					// Capture the context ID, setting it first if necessary
      +					if ( (nid = context.getAttribute( "id" )) ) {
      +						nid = nid.replace( rcssescape, fcssescape );
      +					} else {
      +						context.setAttribute( "id", (nid = expando) );
      +					}
      +
      +					// Prefix every selector in the list
      +					groups = tokenize( selector );
      +					i = groups.length;
      +					while ( i-- ) {
      +						groups[i] = "#" + nid + " " + toSelector( groups[i] );
      +					}
      +					newSelector = groups.join( "," );
      +
      +					// Expand context for sibling selectors
      +					newContext = rsibling.test( selector ) && testContext( context.parentNode ) ||
      +						context;
      +				}
      +
      +				if ( newSelector ) {
      +					try {
      +						push.apply( results,
      +							newContext.querySelectorAll( newSelector )
      +						);
      +						return results;
      +					} catch ( qsaError ) {
      +					} finally {
      +						if ( nid === expando ) {
      +							context.removeAttribute( "id" );
      +						}
      +					}
      +				}
      +			}
      +		}
      +	}
      +
      +	// All others
      +	return select( selector.replace( rtrim, "$1" ), context, results, seed );
      +}
      +
      +/**
      + * Create key-value caches of limited size
      + * @returns {function(string, object)} Returns the Object data after storing it on itself with
      + *	property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
      + *	deleting the oldest entry
      + */
      +function createCache() {
      +	var keys = [];
      +
      +	function cache( key, value ) {
      +		// Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
      +		if ( keys.push( key + " " ) > Expr.cacheLength ) {
      +			// Only keep the most recent entries
      +			delete cache[ keys.shift() ];
      +		}
      +		return (cache[ key + " " ] = value);
      +	}
      +	return cache;
      +}
      +
      +/**
      + * Mark a function for special use by Sizzle
      + * @param {Function} fn The function to mark
      + */
      +function markFunction( fn ) {
      +	fn[ expando ] = true;
      +	return fn;
      +}
      +
      +/**
      + * Support testing using an element
      + * @param {Function} fn Passed the created element and returns a boolean result
      + */
      +function assert( fn ) {
      +	var el = document.createElement("fieldset");
      +
      +	try {
      +		return !!fn( el );
      +	} catch (e) {
      +		return false;
      +	} finally {
      +		// Remove from its parent by default
      +		if ( el.parentNode ) {
      +			el.parentNode.removeChild( el );
      +		}
      +		// release memory in IE
      +		el = null;
      +	}
      +}
      +
      +/**
      + * Adds the same handler for all of the specified attrs
      + * @param {String} attrs Pipe-separated list of attributes
      + * @param {Function} handler The method that will be applied
      + */
      +function addHandle( attrs, handler ) {
      +	var arr = attrs.split("|"),
      +		i = arr.length;
      +
      +	while ( i-- ) {
      +		Expr.attrHandle[ arr[i] ] = handler;
      +	}
      +}
      +
      +/**
      + * Checks document order of two siblings
      + * @param {Element} a
      + * @param {Element} b
      + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
      + */
      +function siblingCheck( a, b ) {
      +	var cur = b && a,
      +		diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
      +			a.sourceIndex - b.sourceIndex;
      +
      +	// Use IE sourceIndex if available on both nodes
      +	if ( diff ) {
      +		return diff;
      +	}
      +
      +	// Check if b follows a
      +	if ( cur ) {
      +		while ( (cur = cur.nextSibling) ) {
      +			if ( cur === b ) {
      +				return -1;
      +			}
      +		}
      +	}
      +
      +	return a ? 1 : -1;
      +}
      +
      +/**
      + * Returns a function to use in pseudos for input types
      + * @param {String} type
      + */
      +function createInputPseudo( type ) {
      +	return function( elem ) {
      +		var name = elem.nodeName.toLowerCase();
      +		return name === "input" && elem.type === type;
      +	};
      +}
      +
      +/**
      + * Returns a function to use in pseudos for buttons
      + * @param {String} type
      + */
      +function createButtonPseudo( type ) {
      +	return function( elem ) {
      +		var name = elem.nodeName.toLowerCase();
      +		return (name === "input" || name === "button") && elem.type === type;
      +	};
      +}
      +
      +/**
      + * Returns a function to use in pseudos for :enabled/:disabled
      + * @param {Boolean} disabled true for :disabled; false for :enabled
      + */
      +function createDisabledPseudo( disabled ) {
      +
      +	// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable
      +	return function( elem ) {
      +
      +		// Only certain elements can match :enabled or :disabled
      +		// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled
      +		// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled
      +		if ( "form" in elem ) {
      +
      +			// Check for inherited disabledness on relevant non-disabled elements:
      +			// * listed form-associated elements in a disabled fieldset
      +			//   https://html.spec.whatwg.org/multipage/forms.html#category-listed
      +			//   https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled
      +			// * option elements in a disabled optgroup
      +			//   https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled
      +			// All such elements have a "form" property.
      +			if ( elem.parentNode && elem.disabled === false ) {
      +
      +				// Option elements defer to a parent optgroup if present
      +				if ( "label" in elem ) {
      +					if ( "label" in elem.parentNode ) {
      +						return elem.parentNode.disabled === disabled;
      +					} else {
      +						return elem.disabled === disabled;
      +					}
      +				}
      +
      +				// Support: IE 6 - 11
      +				// Use the isDisabled shortcut property to check for disabled fieldset ancestors
      +				return elem.isDisabled === disabled ||
      +
      +					// Where there is no isDisabled, check manually
      +					/* jshint -W018 */
      +					elem.isDisabled !== !disabled &&
      +						disabledAncestor( elem ) === disabled;
      +			}
      +
      +			return elem.disabled === disabled;
      +
      +		// Try to winnow out elements that can't be disabled before trusting the disabled property.
      +		// Some victims get caught in our net (label, legend, menu, track), but it shouldn't
      +		// even exist on them, let alone have a boolean value.
      +		} else if ( "label" in elem ) {
      +			return elem.disabled === disabled;
      +		}
      +
      +		// Remaining elements are neither :enabled nor :disabled
      +		return false;
      +	};
      +}
      +
      +/**
      + * Returns a function to use in pseudos for positionals
      + * @param {Function} fn
      + */
      +function createPositionalPseudo( fn ) {
      +	return markFunction(function( argument ) {
      +		argument = +argument;
      +		return markFunction(function( seed, matches ) {
      +			var j,
      +				matchIndexes = fn( [], seed.length, argument ),
      +				i = matchIndexes.length;
      +
      +			// Match elements found at the specified indexes
      +			while ( i-- ) {
      +				if ( seed[ (j = matchIndexes[i]) ] ) {
      +					seed[j] = !(matches[j] = seed[j]);
      +				}
      +			}
      +		});
      +	});
      +}
      +
      +/**
      + * Checks a node for validity as a Sizzle context
      + * @param {Element|Object=} context
      + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
      + */
      +function testContext( context ) {
      +	return context && typeof context.getElementsByTagName !== "undefined" && context;
      +}
      +
      +// Expose support vars for convenience
      +support = Sizzle.support = {};
      +
      +/**
      + * Detects XML nodes
      + * @param {Element|Object} elem An element or a document
      + * @returns {Boolean} True iff elem is a non-HTML XML node
      + */
      +isXML = Sizzle.isXML = function( elem ) {
      +	// documentElement is verified for cases where it doesn't yet exist
      +	// (such as loading iframes in IE - #4833)
      +	var documentElement = elem && (elem.ownerDocument || elem).documentElement;
      +	return documentElement ? documentElement.nodeName !== "HTML" : false;
      +};
      +
      +/**
      + * Sets document-related variables once based on the current document
      + * @param {Element|Object} [doc] An element or document object to use to set the document
      + * @returns {Object} Returns the current document
      + */
      +setDocument = Sizzle.setDocument = function( node ) {
      +	var hasCompare, subWindow,
      +		doc = node ? node.ownerDocument || node : preferredDoc;
      +
      +	// Return early if doc is invalid or already selected
      +	if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
      +		return document;
      +	}
      +
      +	// Update global variables
      +	document = doc;
      +	docElem = document.documentElement;
      +	documentIsHTML = !isXML( document );
      +
      +	// Support: IE 9-11, Edge
      +	// Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936)
      +	if ( preferredDoc !== document &&
      +		(subWindow = document.defaultView) && subWindow.top !== subWindow ) {
      +
      +		// Support: IE 11, Edge
      +		if ( subWindow.addEventListener ) {
      +			subWindow.addEventListener( "unload", unloadHandler, false );
      +
      +		// Support: IE 9 - 10 only
      +		} else if ( subWindow.attachEvent ) {
      +			subWindow.attachEvent( "onunload", unloadHandler );
      +		}
      +	}
      +
      +	/* Attributes
      +	---------------------------------------------------------------------- */
      +
      +	// Support: IE<8
      +	// Verify that getAttribute really returns attributes and not properties
      +	// (excepting IE8 booleans)
      +	support.attributes = assert(function( el ) {
      +		el.className = "i";
      +		return !el.getAttribute("className");
      +	});
      +
      +	/* getElement(s)By*
      +	---------------------------------------------------------------------- */
      +
      +	// Check if getElementsByTagName("*") returns only elements
      +	support.getElementsByTagName = assert(function( el ) {
      +		el.appendChild( document.createComment("") );
      +		return !el.getElementsByTagName("*").length;
      +	});
      +
      +	// Support: IE<9
      +	support.getElementsByClassName = rnative.test( document.getElementsByClassName );
      +
      +	// Support: IE<10
      +	// Check if getElementById returns elements by name
      +	// The broken getElementById methods don't pick up programmatically-set names,
      +	// so use a roundabout getElementsByName test
      +	support.getById = assert(function( el ) {
      +		docElem.appendChild( el ).id = expando;
      +		return !document.getElementsByName || !document.getElementsByName( expando ).length;
      +	});
      +
      +	// ID filter and find
      +	if ( support.getById ) {
      +		Expr.filter["ID"] = function( id ) {
      +			var attrId = id.replace( runescape, funescape );
      +			return function( elem ) {
      +				return elem.getAttribute("id") === attrId;
      +			};
      +		};
      +		Expr.find["ID"] = function( id, context ) {
      +			if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
      +				var elem = context.getElementById( id );
      +				return elem ? [ elem ] : [];
      +			}
      +		};
      +	} else {
      +		Expr.filter["ID"] =  function( id ) {
      +			var attrId = id.replace( runescape, funescape );
      +			return function( elem ) {
      +				var node = typeof elem.getAttributeNode !== "undefined" &&
      +					elem.getAttributeNode("id");
      +				return node && node.value === attrId;
      +			};
      +		};
      +
      +		// Support: IE 6 - 7 only
      +		// getElementById is not reliable as a find shortcut
      +		Expr.find["ID"] = function( id, context ) {
      +			if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
      +				var node, i, elems,
      +					elem = context.getElementById( id );
      +
      +				if ( elem ) {
      +
      +					// Verify the id attribute
      +					node = elem.getAttributeNode("id");
      +					if ( node && node.value === id ) {
      +						return [ elem ];
      +					}
      +
      +					// Fall back on getElementsByName
      +					elems = context.getElementsByName( id );
      +					i = 0;
      +					while ( (elem = elems[i++]) ) {
      +						node = elem.getAttributeNode("id");
      +						if ( node && node.value === id ) {
      +							return [ elem ];
      +						}
      +					}
      +				}
      +
      +				return [];
      +			}
      +		};
      +	}
      +
      +	// Tag
      +	Expr.find["TAG"] = support.getElementsByTagName ?
      +		function( tag, context ) {
      +			if ( typeof context.getElementsByTagName !== "undefined" ) {
      +				return context.getElementsByTagName( tag );
      +
      +			// DocumentFragment nodes don't have gEBTN
      +			} else if ( support.qsa ) {
      +				return context.querySelectorAll( tag );
      +			}
      +		} :
      +
      +		function( tag, context ) {
      +			var elem,
      +				tmp = [],
      +				i = 0,
      +				// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too
      +				results = context.getElementsByTagName( tag );
      +
      +			// Filter out possible comments
      +			if ( tag === "*" ) {
      +				while ( (elem = results[i++]) ) {
      +					if ( elem.nodeType === 1 ) {
      +						tmp.push( elem );
      +					}
      +				}
      +
      +				return tmp;
      +			}
      +			return results;
      +		};
      +
      +	// Class
      +	Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) {
      +		if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) {
      +			return context.getElementsByClassName( className );
      +		}
      +	};
      +
      +	/* QSA/matchesSelector
      +	---------------------------------------------------------------------- */
      +
      +	// QSA and matchesSelector support
      +
      +	// matchesSelector(:active) reports false when true (IE9/Opera 11.5)
      +	rbuggyMatches = [];
      +
      +	// qSa(:focus) reports false when true (Chrome 21)
      +	// We allow this because of a bug in IE8/9 that throws an error
      +	// whenever `document.activeElement` is accessed on an iframe
      +	// So, we allow :focus to pass through QSA all the time to avoid the IE error
      +	// See https://bugs.jquery.com/ticket/13378
      +	rbuggyQSA = [];
      +
      +	if ( (support.qsa = rnative.test( document.querySelectorAll )) ) {
      +		// Build QSA regex
      +		// Regex strategy adopted from Diego Perini
      +		assert(function( el ) {
      +			// Select is set to empty string on purpose
      +			// This is to test IE's treatment of not explicitly
      +			// setting a boolean content attribute,
      +			// since its presence should be enough
      +			// https://bugs.jquery.com/ticket/12359
      +			docElem.appendChild( el ).innerHTML = "<a id='" + expando + "'></a>" +
      +				"<select id='" + expando + "-\r\\' msallowcapture=''>" +
      +				"<option selected=''></option></select>";
      +
      +			// Support: IE8, Opera 11-12.16
      +			// Nothing should be selected when empty strings follow ^= or $= or *=
      +			// The test attribute must be unknown in Opera but "safe" for WinRT
      +			// https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section
      +			if ( el.querySelectorAll("[msallowcapture^='']").length ) {
      +				rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
      +			}
      +
      +			// Support: IE8
      +			// Boolean attributes and "value" are not treated correctly
      +			if ( !el.querySelectorAll("[selected]").length ) {
      +				rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
      +			}
      +
      +			// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+
      +			if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) {
      +				rbuggyQSA.push("~=");
      +			}
      +
      +			// Webkit/Opera - :checked should return selected option elements
      +			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
      +			// IE8 throws error here and will not see later tests
      +			if ( !el.querySelectorAll(":checked").length ) {
      +				rbuggyQSA.push(":checked");
      +			}
      +
      +			// Support: Safari 8+, iOS 8+
      +			// https://bugs.webkit.org/show_bug.cgi?id=136851
      +			// In-page `selector#id sibling-combinator selector` fails
      +			if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) {
      +				rbuggyQSA.push(".#.+[+~]");
      +			}
      +		});
      +
      +		assert(function( el ) {
      +			el.innerHTML = "<a href='' disabled='disabled'></a>" +
      +				"<select disabled='disabled'><option/></select>";
      +
      +			// Support: Windows 8 Native Apps
      +			// The type and name attributes are restricted during .innerHTML assignment
      +			var input = document.createElement("input");
      +			input.setAttribute( "type", "hidden" );
      +			el.appendChild( input ).setAttribute( "name", "D" );
      +
      +			// Support: IE8
      +			// Enforce case-sensitivity of name attribute
      +			if ( el.querySelectorAll("[name=d]").length ) {
      +				rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
      +			}
      +
      +			// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
      +			// IE8 throws error here and will not see later tests
      +			if ( el.querySelectorAll(":enabled").length !== 2 ) {
      +				rbuggyQSA.push( ":enabled", ":disabled" );
      +			}
      +
      +			// Support: IE9-11+
      +			// IE's :disabled selector does not pick up the children of disabled fieldsets
      +			docElem.appendChild( el ).disabled = true;
      +			if ( el.querySelectorAll(":disabled").length !== 2 ) {
      +				rbuggyQSA.push( ":enabled", ":disabled" );
      +			}
      +
      +			// Opera 10-11 does not throw on post-comma invalid pseudos
      +			el.querySelectorAll("*,:x");
      +			rbuggyQSA.push(",.*:");
      +		});
      +	}
      +
      +	if ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||
      +		docElem.webkitMatchesSelector ||
      +		docElem.mozMatchesSelector ||
      +		docElem.oMatchesSelector ||
      +		docElem.msMatchesSelector) )) ) {
      +
      +		assert(function( el ) {
      +			// Check to see if it's possible to do matchesSelector
      +			// on a disconnected node (IE 9)
      +			support.disconnectedMatch = matches.call( el, "*" );
      +
      +			// This should fail with an exception
      +			// Gecko does not error, returns false instead
      +			matches.call( el, "[s!='']:x" );
      +			rbuggyMatches.push( "!=", pseudos );
      +		});
      +	}
      +
      +	rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") );
      +	rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") );
      +
      +	/* Contains
      +	---------------------------------------------------------------------- */
      +	hasCompare = rnative.test( docElem.compareDocumentPosition );
      +
      +	// Element contains another
      +	// Purposefully self-exclusive
      +	// As in, an element does not contain itself
      +	contains = hasCompare || rnative.test( docElem.contains ) ?
      +		function( a, b ) {
      +			var adown = a.nodeType === 9 ? a.documentElement : a,
      +				bup = b && b.parentNode;
      +			return a === bup || !!( bup && bup.nodeType === 1 && (
      +				adown.contains ?
      +					adown.contains( bup ) :
      +					a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
      +			));
      +		} :
      +		function( a, b ) {
      +			if ( b ) {
      +				while ( (b = b.parentNode) ) {
      +					if ( b === a ) {
      +						return true;
      +					}
      +				}
      +			}
      +			return false;
      +		};
      +
      +	/* Sorting
      +	---------------------------------------------------------------------- */
      +
      +	// Document order sorting
      +	sortOrder = hasCompare ?
      +	function( a, b ) {
      +
      +		// Flag for duplicate removal
      +		if ( a === b ) {
      +			hasDuplicate = true;
      +			return 0;
      +		}
      +
      +		// Sort on method existence if only one input has compareDocumentPosition
      +		var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
      +		if ( compare ) {
      +			return compare;
      +		}
      +
      +		// Calculate position if both inputs belong to the same document
      +		compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?
      +			a.compareDocumentPosition( b ) :
      +
      +			// Otherwise we know they are disconnected
      +			1;
      +
      +		// Disconnected nodes
      +		if ( compare & 1 ||
      +			(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
      +
      +			// Choose the first element that is related to our preferred document
      +			if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
      +				return -1;
      +			}
      +			if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {
      +				return 1;
      +			}
      +
      +			// Maintain original order
      +			return sortInput ?
      +				( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
      +				0;
      +		}
      +
      +		return compare & 4 ? -1 : 1;
      +	} :
      +	function( a, b ) {
      +		// Exit early if the nodes are identical
      +		if ( a === b ) {
      +			hasDuplicate = true;
      +			return 0;
      +		}
      +
      +		var cur,
      +			i = 0,
      +			aup = a.parentNode,
      +			bup = b.parentNode,
      +			ap = [ a ],
      +			bp = [ b ];
      +
      +		// Parentless nodes are either documents or disconnected
      +		if ( !aup || !bup ) {
      +			return a === document ? -1 :
      +				b === document ? 1 :
      +				aup ? -1 :
      +				bup ? 1 :
      +				sortInput ?
      +				( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
      +				0;
      +
      +		// If the nodes are siblings, we can do a quick check
      +		} else if ( aup === bup ) {
      +			return siblingCheck( a, b );
      +		}
      +
      +		// Otherwise we need full lists of their ancestors for comparison
      +		cur = a;
      +		while ( (cur = cur.parentNode) ) {
      +			ap.unshift( cur );
      +		}
      +		cur = b;
      +		while ( (cur = cur.parentNode) ) {
      +			bp.unshift( cur );
      +		}
      +
      +		// Walk down the tree looking for a discrepancy
      +		while ( ap[i] === bp[i] ) {
      +			i++;
      +		}
      +
      +		return i ?
      +			// Do a sibling check if the nodes have a common ancestor
      +			siblingCheck( ap[i], bp[i] ) :
      +
      +			// Otherwise nodes in our document sort first
      +			ap[i] === preferredDoc ? -1 :
      +			bp[i] === preferredDoc ? 1 :
      +			0;
      +	};
      +
      +	return document;
      +};
      +
      +Sizzle.matches = function( expr, elements ) {
      +	return Sizzle( expr, null, null, elements );
      +};
      +
      +Sizzle.matchesSelector = function( elem, expr ) {
      +	// Set document vars if needed
      +	if ( ( elem.ownerDocument || elem ) !== document ) {
      +		setDocument( elem );
      +	}
      +
      +	// Make sure that attribute selectors are quoted
      +	expr = expr.replace( rattributeQuotes, "='$1']" );
      +
      +	if ( support.matchesSelector && documentIsHTML &&
      +		!compilerCache[ expr + " " ] &&
      +		( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
      +		( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {
      +
      +		try {
      +			var ret = matches.call( elem, expr );
      +
      +			// IE 9's matchesSelector returns false on disconnected nodes
      +			if ( ret || support.disconnectedMatch ||
      +					// As well, disconnected nodes are said to be in a document
      +					// fragment in IE 9
      +					elem.document && elem.document.nodeType !== 11 ) {
      +				return ret;
      +			}
      +		} catch (e) {}
      +	}
      +
      +	return Sizzle( expr, document, null, [ elem ] ).length > 0;
      +};
      +
      +Sizzle.contains = function( context, elem ) {
      +	// Set document vars if needed
      +	if ( ( context.ownerDocument || context ) !== document ) {
      +		setDocument( context );
      +	}
      +	return contains( context, elem );
      +};
      +
      +Sizzle.attr = function( elem, name ) {
      +	// Set document vars if needed
      +	if ( ( elem.ownerDocument || elem ) !== document ) {
      +		setDocument( elem );
      +	}
      +
      +	var fn = Expr.attrHandle[ name.toLowerCase() ],
      +		// Don't get fooled by Object.prototype properties (jQuery #13807)
      +		val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
      +			fn( elem, name, !documentIsHTML ) :
      +			undefined;
      +
      +	return val !== undefined ?
      +		val :
      +		support.attributes || !documentIsHTML ?
      +			elem.getAttribute( name ) :
      +			(val = elem.getAttributeNode(name)) && val.specified ?
      +				val.value :
      +				null;
      +};
      +
      +Sizzle.escape = function( sel ) {
      +	return (sel + "").replace( rcssescape, fcssescape );
      +};
      +
      +Sizzle.error = function( msg ) {
      +	throw new Error( "Syntax error, unrecognized expression: " + msg );
      +};
      +
      +/**
      + * Document sorting and removing duplicates
      + * @param {ArrayLike} results
      + */
      +Sizzle.uniqueSort = function( results ) {
      +	var elem,
      +		duplicates = [],
      +		j = 0,
      +		i = 0;
      +
      +	// Unless we *know* we can detect duplicates, assume their presence
      +	hasDuplicate = !support.detectDuplicates;
      +	sortInput = !support.sortStable && results.slice( 0 );
      +	results.sort( sortOrder );
      +
      +	if ( hasDuplicate ) {
      +		while ( (elem = results[i++]) ) {
      +			if ( elem === results[ i ] ) {
      +				j = duplicates.push( i );
      +			}
      +		}
      +		while ( j-- ) {
      +			results.splice( duplicates[ j ], 1 );
      +		}
      +	}
      +
      +	// Clear input after sorting to release objects
      +	// See https://github.com/jquery/sizzle/pull/225
      +	sortInput = null;
      +
      +	return results;
      +};
      +
      +/**
      + * Utility function for retrieving the text value of an array of DOM nodes
      + * @param {Array|Element} elem
      + */
      +getText = Sizzle.getText = function( elem ) {
      +	var node,
      +		ret = "",
      +		i = 0,
      +		nodeType = elem.nodeType;
      +
      +	if ( !nodeType ) {
      +		// If no nodeType, this is expected to be an array
      +		while ( (node = elem[i++]) ) {
      +			// Do not traverse comment nodes
      +			ret += getText( node );
      +		}
      +	} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
      +		// Use textContent for elements
      +		// innerText usage removed for consistency of new lines (jQuery #11153)
      +		if ( typeof elem.textContent === "string" ) {
      +			return elem.textContent;
      +		} else {
      +			// Traverse its children
      +			for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
      +				ret += getText( elem );
      +			}
      +		}
      +	} else if ( nodeType === 3 || nodeType === 4 ) {
      +		return elem.nodeValue;
      +	}
      +	// Do not include comment or processing instruction nodes
      +
      +	return ret;
      +};
      +
      +Expr = Sizzle.selectors = {
      +
      +	// Can be adjusted by the user
      +	cacheLength: 50,
      +
      +	createPseudo: markFunction,
      +
      +	match: matchExpr,
      +
      +	attrHandle: {},
      +
      +	find: {},
      +
      +	relative: {
      +		">": { dir: "parentNode", first: true },
      +		" ": { dir: "parentNode" },
      +		"+": { dir: "previousSibling", first: true },
      +		"~": { dir: "previousSibling" }
      +	},
      +
      +	preFilter: {
      +		"ATTR": function( match ) {
      +			match[1] = match[1].replace( runescape, funescape );
      +
      +			// Move the given value to match[3] whether quoted or unquoted
      +			match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape );
      +
      +			if ( match[2] === "~=" ) {
      +				match[3] = " " + match[3] + " ";
      +			}
      +
      +			return match.slice( 0, 4 );
      +		},
      +
      +		"CHILD": function( match ) {
      +			/* matches from matchExpr["CHILD"]
      +				1 type (only|nth|...)
      +				2 what (child|of-type)
      +				3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
      +				4 xn-component of xn+y argument ([+-]?\d*n|)
      +				5 sign of xn-component
      +				6 x of xn-component
      +				7 sign of y-component
      +				8 y of y-component
      +			*/
      +			match[1] = match[1].toLowerCase();
      +
      +			if ( match[1].slice( 0, 3 ) === "nth" ) {
      +				// nth-* requires argument
      +				if ( !match[3] ) {
      +					Sizzle.error( match[0] );
      +				}
      +
      +				// numeric x and y parameters for Expr.filter.CHILD
      +				// remember that false/true cast respectively to 0/1
      +				match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
      +				match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );
      +
      +			// other types prohibit arguments
      +			} else if ( match[3] ) {
      +				Sizzle.error( match[0] );
      +			}
      +
      +			return match;
      +		},
      +
      +		"PSEUDO": function( match ) {
      +			var excess,
      +				unquoted = !match[6] && match[2];
      +
      +			if ( matchExpr["CHILD"].test( match[0] ) ) {
      +				return null;
      +			}
      +
      +			// Accept quoted arguments as-is
      +			if ( match[3] ) {
      +				match[2] = match[4] || match[5] || "";
      +
      +			// Strip excess characters from unquoted arguments
      +			} else if ( unquoted && rpseudo.test( unquoted ) &&
      +				// Get excess from tokenize (recursively)
      +				(excess = tokenize( unquoted, true )) &&
      +				// advance to the next closing parenthesis
      +				(excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
      +
      +				// excess is a negative index
      +				match[0] = match[0].slice( 0, excess );
      +				match[2] = unquoted.slice( 0, excess );
      +			}
      +
      +			// Return only captures needed by the pseudo filter method (type and argument)
      +			return match.slice( 0, 3 );
      +		}
      +	},
      +
      +	filter: {
      +
      +		"TAG": function( nodeNameSelector ) {
      +			var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
      +			return nodeNameSelector === "*" ?
      +				function() { return true; } :
      +				function( elem ) {
      +					return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
      +				};
      +		},
      +
      +		"CLASS": function( className ) {
      +			var pattern = classCache[ className + " " ];
      +
      +			return pattern ||
      +				(pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
      +				classCache( className, function( elem ) {
      +					return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" );
      +				});
      +		},
      +
      +		"ATTR": function( name, operator, check ) {
      +			return function( elem ) {
      +				var result = Sizzle.attr( elem, name );
      +
      +				if ( result == null ) {
      +					return operator === "!=";
      +				}
      +				if ( !operator ) {
      +					return true;
      +				}
      +
      +				result += "";
      +
      +				return operator === "=" ? result === check :
      +					operator === "!=" ? result !== check :
      +					operator === "^=" ? check && result.indexOf( check ) === 0 :
      +					operator === "*=" ? check && result.indexOf( check ) > -1 :
      +					operator === "$=" ? check && result.slice( -check.length ) === check :
      +					operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 :
      +					operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
      +					false;
      +			};
      +		},
      +
      +		"CHILD": function( type, what, argument, first, last ) {
      +			var simple = type.slice( 0, 3 ) !== "nth",
      +				forward = type.slice( -4 ) !== "last",
      +				ofType = what === "of-type";
      +
      +			return first === 1 && last === 0 ?
      +
      +				// Shortcut for :nth-*(n)
      +				function( elem ) {
      +					return !!elem.parentNode;
      +				} :
      +
      +				function( elem, context, xml ) {
      +					var cache, uniqueCache, outerCache, node, nodeIndex, start,
      +						dir = simple !== forward ? "nextSibling" : "previousSibling",
      +						parent = elem.parentNode,
      +						name = ofType && elem.nodeName.toLowerCase(),
      +						useCache = !xml && !ofType,
      +						diff = false;
      +
      +					if ( parent ) {
      +
      +						// :(first|last|only)-(child|of-type)
      +						if ( simple ) {
      +							while ( dir ) {
      +								node = elem;
      +								while ( (node = node[ dir ]) ) {
      +									if ( ofType ?
      +										node.nodeName.toLowerCase() === name :
      +										node.nodeType === 1 ) {
      +
      +										return false;
      +									}
      +								}
      +								// Reverse direction for :only-* (if we haven't yet done so)
      +								start = dir = type === "only" && !start && "nextSibling";
      +							}
      +							return true;
      +						}
      +
      +						start = [ forward ? parent.firstChild : parent.lastChild ];
      +
      +						// non-xml :nth-child(...) stores cache data on `parent`
      +						if ( forward && useCache ) {
      +
      +							// Seek `elem` from a previously-cached index
      +
      +							// ...in a gzip-friendly way
      +							node = parent;
      +							outerCache = node[ expando ] || (node[ expando ] = {});
      +
      +							// Support: IE <9 only
      +							// Defend against cloned attroperties (jQuery gh-1709)
      +							uniqueCache = outerCache[ node.uniqueID ] ||
      +								(outerCache[ node.uniqueID ] = {});
      +
      +							cache = uniqueCache[ type ] || [];
      +							nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
      +							diff = nodeIndex && cache[ 2 ];
      +							node = nodeIndex && parent.childNodes[ nodeIndex ];
      +
      +							while ( (node = ++nodeIndex && node && node[ dir ] ||
      +
      +								// Fallback to seeking `elem` from the start
      +								(diff = nodeIndex = 0) || start.pop()) ) {
      +
      +								// When found, cache indexes on `parent` and break
      +								if ( node.nodeType === 1 && ++diff && node === elem ) {
      +									uniqueCache[ type ] = [ dirruns, nodeIndex, diff ];
      +									break;
      +								}
      +							}
      +
      +						} else {
      +							// Use previously-cached element index if available
      +							if ( useCache ) {
      +								// ...in a gzip-friendly way
      +								node = elem;
      +								outerCache = node[ expando ] || (node[ expando ] = {});
      +
      +								// Support: IE <9 only
      +								// Defend against cloned attroperties (jQuery gh-1709)
      +								uniqueCache = outerCache[ node.uniqueID ] ||
      +									(outerCache[ node.uniqueID ] = {});
      +
      +								cache = uniqueCache[ type ] || [];
      +								nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
      +								diff = nodeIndex;
      +							}
      +
      +							// xml :nth-child(...)
      +							// or :nth-last-child(...) or :nth(-last)?-of-type(...)
      +							if ( diff === false ) {
      +								// Use the same loop as above to seek `elem` from the start
      +								while ( (node = ++nodeIndex && node && node[ dir ] ||
      +									(diff = nodeIndex = 0) || start.pop()) ) {
      +
      +									if ( ( ofType ?
      +										node.nodeName.toLowerCase() === name :
      +										node.nodeType === 1 ) &&
      +										++diff ) {
      +
      +										// Cache the index of each encountered element
      +										if ( useCache ) {
      +											outerCache = node[ expando ] || (node[ expando ] = {});
      +
      +											// Support: IE <9 only
      +											// Defend against cloned attroperties (jQuery gh-1709)
      +											uniqueCache = outerCache[ node.uniqueID ] ||
      +												(outerCache[ node.uniqueID ] = {});
      +
      +											uniqueCache[ type ] = [ dirruns, diff ];
      +										}
      +
      +										if ( node === elem ) {
      +											break;
      +										}
      +									}
      +								}
      +							}
      +						}
      +
      +						// Incorporate the offset, then check against cycle size
      +						diff -= last;
      +						return diff === first || ( diff % first === 0 && diff / first >= 0 );
      +					}
      +				};
      +		},
      +
      +		"PSEUDO": function( pseudo, argument ) {
      +			// pseudo-class names are case-insensitive
      +			// http://www.w3.org/TR/selectors/#pseudo-classes
      +			// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
      +			// Remember that setFilters inherits from pseudos
      +			var args,
      +				fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
      +					Sizzle.error( "unsupported pseudo: " + pseudo );
      +
      +			// The user may use createPseudo to indicate that
      +			// arguments are needed to create the filter function
      +			// just as Sizzle does
      +			if ( fn[ expando ] ) {
      +				return fn( argument );
      +			}
      +
      +			// But maintain support for old signatures
      +			if ( fn.length > 1 ) {
      +				args = [ pseudo, pseudo, "", argument ];
      +				return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
      +					markFunction(function( seed, matches ) {
      +						var idx,
      +							matched = fn( seed, argument ),
      +							i = matched.length;
      +						while ( i-- ) {
      +							idx = indexOf( seed, matched[i] );
      +							seed[ idx ] = !( matches[ idx ] = matched[i] );
      +						}
      +					}) :
      +					function( elem ) {
      +						return fn( elem, 0, args );
      +					};
      +			}
      +
      +			return fn;
      +		}
      +	},
      +
      +	pseudos: {
      +		// Potentially complex pseudos
      +		"not": markFunction(function( selector ) {
      +			// Trim the selector passed to compile
      +			// to avoid treating leading and trailing
      +			// spaces as combinators
      +			var input = [],
      +				results = [],
      +				matcher = compile( selector.replace( rtrim, "$1" ) );
      +
      +			return matcher[ expando ] ?
      +				markFunction(function( seed, matches, context, xml ) {
      +					var elem,
      +						unmatched = matcher( seed, null, xml, [] ),
      +						i = seed.length;
      +
      +					// Match elements unmatched by `matcher`
      +					while ( i-- ) {
      +						if ( (elem = unmatched[i]) ) {
      +							seed[i] = !(matches[i] = elem);
      +						}
      +					}
      +				}) :
      +				function( elem, context, xml ) {
      +					input[0] = elem;
      +					matcher( input, null, xml, results );
      +					// Don't keep the element (issue #299)
      +					input[0] = null;
      +					return !results.pop();
      +				};
      +		}),
      +
      +		"has": markFunction(function( selector ) {
      +			return function( elem ) {
      +				return Sizzle( selector, elem ).length > 0;
      +			};
      +		}),
      +
      +		"contains": markFunction(function( text ) {
      +			text = text.replace( runescape, funescape );
      +			return function( elem ) {
      +				return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
      +			};
      +		}),
      +
      +		// "Whether an element is represented by a :lang() selector
      +		// is based solely on the element's language value
      +		// being equal to the identifier C,
      +		// or beginning with the identifier C immediately followed by "-".
      +		// The matching of C against the element's language value is performed case-insensitively.
      +		// The identifier C does not have to be a valid language name."
      +		// http://www.w3.org/TR/selectors/#lang-pseudo
      +		"lang": markFunction( function( lang ) {
      +			// lang value must be a valid identifier
      +			if ( !ridentifier.test(lang || "") ) {
      +				Sizzle.error( "unsupported lang: " + lang );
      +			}
      +			lang = lang.replace( runescape, funescape ).toLowerCase();
      +			return function( elem ) {
      +				var elemLang;
      +				do {
      +					if ( (elemLang = documentIsHTML ?
      +						elem.lang :
      +						elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) {
      +
      +						elemLang = elemLang.toLowerCase();
      +						return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
      +					}
      +				} while ( (elem = elem.parentNode) && elem.nodeType === 1 );
      +				return false;
      +			};
      +		}),
      +
      +		// Miscellaneous
      +		"target": function( elem ) {
      +			var hash = window.location && window.location.hash;
      +			return hash && hash.slice( 1 ) === elem.id;
      +		},
      +
      +		"root": function( elem ) {
      +			return elem === docElem;
      +		},
      +
      +		"focus": function( elem ) {
      +			return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
      +		},
      +
      +		// Boolean properties
      +		"enabled": createDisabledPseudo( false ),
      +		"disabled": createDisabledPseudo( true ),
      +
      +		"checked": function( elem ) {
      +			// In CSS3, :checked should return both checked and selected elements
      +			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
      +			var nodeName = elem.nodeName.toLowerCase();
      +			return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
      +		},
      +
      +		"selected": function( elem ) {
      +			// Accessing this property makes selected-by-default
      +			// options in Safari work properly
      +			if ( elem.parentNode ) {
      +				elem.parentNode.selectedIndex;
      +			}
      +
      +			return elem.selected === true;
      +		},
      +
      +		// Contents
      +		"empty": function( elem ) {
      +			// http://www.w3.org/TR/selectors/#empty-pseudo
      +			// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
      +			//   but not by others (comment: 8; processing instruction: 7; etc.)
      +			// nodeType < 6 works because attributes (2) do not appear as children
      +			for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
      +				if ( elem.nodeType < 6 ) {
      +					return false;
      +				}
      +			}
      +			return true;
      +		},
      +
      +		"parent": function( elem ) {
      +			return !Expr.pseudos["empty"]( elem );
      +		},
      +
      +		// Element/input types
      +		"header": function( elem ) {
      +			return rheader.test( elem.nodeName );
      +		},
      +
      +		"input": function( elem ) {
      +			return rinputs.test( elem.nodeName );
      +		},
      +
      +		"button": function( elem ) {
      +			var name = elem.nodeName.toLowerCase();
      +			return name === "input" && elem.type === "button" || name === "button";
      +		},
      +
      +		"text": function( elem ) {
      +			var attr;
      +			return elem.nodeName.toLowerCase() === "input" &&
      +				elem.type === "text" &&
      +
      +				// Support: IE<8
      +				// New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
      +				( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" );
      +		},
      +
      +		// Position-in-collection
      +		"first": createPositionalPseudo(function() {
      +			return [ 0 ];
      +		}),
      +
      +		"last": createPositionalPseudo(function( matchIndexes, length ) {
      +			return [ length - 1 ];
      +		}),
      +
      +		"eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
      +			return [ argument < 0 ? argument + length : argument ];
      +		}),
      +
      +		"even": createPositionalPseudo(function( matchIndexes, length ) {
      +			var i = 0;
      +			for ( ; i < length; i += 2 ) {
      +				matchIndexes.push( i );
      +			}
      +			return matchIndexes;
      +		}),
      +
      +		"odd": createPositionalPseudo(function( matchIndexes, length ) {
      +			var i = 1;
      +			for ( ; i < length; i += 2 ) {
      +				matchIndexes.push( i );
      +			}
      +			return matchIndexes;
      +		}),
      +
      +		"lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
      +			var i = argument < 0 ? argument + length : argument;
      +			for ( ; --i >= 0; ) {
      +				matchIndexes.push( i );
      +			}
      +			return matchIndexes;
      +		}),
      +
      +		"gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
      +			var i = argument < 0 ? argument + length : argument;
      +			for ( ; ++i < length; ) {
      +				matchIndexes.push( i );
      +			}
      +			return matchIndexes;
      +		})
      +	}
      +};
      +
      +Expr.pseudos["nth"] = Expr.pseudos["eq"];
      +
      +// Add button/input type pseudos
      +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
      +	Expr.pseudos[ i ] = createInputPseudo( i );
      +}
      +for ( i in { submit: true, reset: true } ) {
      +	Expr.pseudos[ i ] = createButtonPseudo( i );
      +}
      +
      +// Easy API for creating new setFilters
      +function setFilters() {}
      +setFilters.prototype = Expr.filters = Expr.pseudos;
      +Expr.setFilters = new setFilters();
      +
      +tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
      +	var matched, match, tokens, type,
      +		soFar, groups, preFilters,
      +		cached = tokenCache[ selector + " " ];
      +
      +	if ( cached ) {
      +		return parseOnly ? 0 : cached.slice( 0 );
      +	}
      +
      +	soFar = selector;
      +	groups = [];
      +	preFilters = Expr.preFilter;
      +
      +	while ( soFar ) {
      +
      +		// Comma and first run
      +		if ( !matched || (match = rcomma.exec( soFar )) ) {
      +			if ( match ) {
      +				// Don't consume trailing commas as valid
      +				soFar = soFar.slice( match[0].length ) || soFar;
      +			}
      +			groups.push( (tokens = []) );
      +		}
      +
      +		matched = false;
      +
      +		// Combinators
      +		if ( (match = rcombinators.exec( soFar )) ) {
      +			matched = match.shift();
      +			tokens.push({
      +				value: matched,
      +				// Cast descendant combinators to space
      +				type: match[0].replace( rtrim, " " )
      +			});
      +			soFar = soFar.slice( matched.length );
      +		}
      +
      +		// Filters
      +		for ( type in Expr.filter ) {
      +			if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
      +				(match = preFilters[ type ]( match ))) ) {
      +				matched = match.shift();
      +				tokens.push({
      +					value: matched,
      +					type: type,
      +					matches: match
      +				});
      +				soFar = soFar.slice( matched.length );
      +			}
      +		}
      +
      +		if ( !matched ) {
      +			break;
      +		}
      +	}
      +
      +	// Return the length of the invalid excess
      +	// if we're just parsing
      +	// Otherwise, throw an error or return tokens
      +	return parseOnly ?
      +		soFar.length :
      +		soFar ?
      +			Sizzle.error( selector ) :
      +			// Cache the tokens
      +			tokenCache( selector, groups ).slice( 0 );
      +};
      +
      +function toSelector( tokens ) {
      +	var i = 0,
      +		len = tokens.length,
      +		selector = "";
      +	for ( ; i < len; i++ ) {
      +		selector += tokens[i].value;
      +	}
      +	return selector;
      +}
      +
      +function addCombinator( matcher, combinator, base ) {
      +	var dir = combinator.dir,
      +		skip = combinator.next,
      +		key = skip || dir,
      +		checkNonElements = base && key === "parentNode",
      +		doneName = done++;
      +
      +	return combinator.first ?
      +		// Check against closest ancestor/preceding element
      +		function( elem, context, xml ) {
      +			while ( (elem = elem[ dir ]) ) {
      +				if ( elem.nodeType === 1 || checkNonElements ) {
      +					return matcher( elem, context, xml );
      +				}
      +			}
      +			return false;
      +		} :
      +
      +		// Check against all ancestor/preceding elements
      +		function( elem, context, xml ) {
      +			var oldCache, uniqueCache, outerCache,
      +				newCache = [ dirruns, doneName ];
      +
      +			// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching
      +			if ( xml ) {
      +				while ( (elem = elem[ dir ]) ) {
      +					if ( elem.nodeType === 1 || checkNonElements ) {
      +						if ( matcher( elem, context, xml ) ) {
      +							return true;
      +						}
      +					}
      +				}
      +			} else {
      +				while ( (elem = elem[ dir ]) ) {
      +					if ( elem.nodeType === 1 || checkNonElements ) {
      +						outerCache = elem[ expando ] || (elem[ expando ] = {});
      +
      +						// Support: IE <9 only
      +						// Defend against cloned attroperties (jQuery gh-1709)
      +						uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {});
      +
      +						if ( skip && skip === elem.nodeName.toLowerCase() ) {
      +							elem = elem[ dir ] || elem;
      +						} else if ( (oldCache = uniqueCache[ key ]) &&
      +							oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
      +
      +							// Assign to newCache so results back-propagate to previous elements
      +							return (newCache[ 2 ] = oldCache[ 2 ]);
      +						} else {
      +							// Reuse newcache so results back-propagate to previous elements
      +							uniqueCache[ key ] = newCache;
      +
      +							// A match means we're done; a fail means we have to keep checking
      +							if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {
      +								return true;
      +							}
      +						}
      +					}
      +				}
      +			}
      +			return false;
      +		};
      +}
      +
      +function elementMatcher( matchers ) {
      +	return matchers.length > 1 ?
      +		function( elem, context, xml ) {
      +			var i = matchers.length;
      +			while ( i-- ) {
      +				if ( !matchers[i]( elem, context, xml ) ) {
      +					return false;
      +				}
      +			}
      +			return true;
      +		} :
      +		matchers[0];
      +}
      +
      +function multipleContexts( selector, contexts, results ) {
      +	var i = 0,
      +		len = contexts.length;
      +	for ( ; i < len; i++ ) {
      +		Sizzle( selector, contexts[i], results );
      +	}
      +	return results;
      +}
      +
      +function condense( unmatched, map, filter, context, xml ) {
      +	var elem,
      +		newUnmatched = [],
      +		i = 0,
      +		len = unmatched.length,
      +		mapped = map != null;
      +
      +	for ( ; i < len; i++ ) {
      +		if ( (elem = unmatched[i]) ) {
      +			if ( !filter || filter( elem, context, xml ) ) {
      +				newUnmatched.push( elem );
      +				if ( mapped ) {
      +					map.push( i );
      +				}
      +			}
      +		}
      +	}
      +
      +	return newUnmatched;
      +}
      +
      +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
      +	if ( postFilter && !postFilter[ expando ] ) {
      +		postFilter = setMatcher( postFilter );
      +	}
      +	if ( postFinder && !postFinder[ expando ] ) {
      +		postFinder = setMatcher( postFinder, postSelector );
      +	}
      +	return markFunction(function( seed, results, context, xml ) {
      +		var temp, i, elem,
      +			preMap = [],
      +			postMap = [],
      +			preexisting = results.length,
      +
      +			// Get initial elements from seed or context
      +			elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
      +
      +			// Prefilter to get matcher input, preserving a map for seed-results synchronization
      +			matcherIn = preFilter && ( seed || !selector ) ?
      +				condense( elems, preMap, preFilter, context, xml ) :
      +				elems,
      +
      +			matcherOut = matcher ?
      +				// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
      +				postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
      +
      +					// ...intermediate processing is necessary
      +					[] :
      +
      +					// ...otherwise use results directly
      +					results :
      +				matcherIn;
      +
      +		// Find primary matches
      +		if ( matcher ) {
      +			matcher( matcherIn, matcherOut, context, xml );
      +		}
      +
      +		// Apply postFilter
      +		if ( postFilter ) {
      +			temp = condense( matcherOut, postMap );
      +			postFilter( temp, [], context, xml );
      +
      +			// Un-match failing elements by moving them back to matcherIn
      +			i = temp.length;
      +			while ( i-- ) {
      +				if ( (elem = temp[i]) ) {
      +					matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
      +				}
      +			}
      +		}
      +
      +		if ( seed ) {
      +			if ( postFinder || preFilter ) {
      +				if ( postFinder ) {
      +					// Get the final matcherOut by condensing this intermediate into postFinder contexts
      +					temp = [];
      +					i = matcherOut.length;
      +					while ( i-- ) {
      +						if ( (elem = matcherOut[i]) ) {
      +							// Restore matcherIn since elem is not yet a final match
      +							temp.push( (matcherIn[i] = elem) );
      +						}
      +					}
      +					postFinder( null, (matcherOut = []), temp, xml );
      +				}
      +
      +				// Move matched elements from seed to results to keep them synchronized
      +				i = matcherOut.length;
      +				while ( i-- ) {
      +					if ( (elem = matcherOut[i]) &&
      +						(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {
      +
      +						seed[temp] = !(results[temp] = elem);
      +					}
      +				}
      +			}
      +
      +		// Add elements to results, through postFinder if defined
      +		} else {
      +			matcherOut = condense(
      +				matcherOut === results ?
      +					matcherOut.splice( preexisting, matcherOut.length ) :
      +					matcherOut
      +			);
      +			if ( postFinder ) {
      +				postFinder( null, results, matcherOut, xml );
      +			} else {
      +				push.apply( results, matcherOut );
      +			}
      +		}
      +	});
      +}
      +
      +function matcherFromTokens( tokens ) {
      +	var checkContext, matcher, j,
      +		len = tokens.length,
      +		leadingRelative = Expr.relative[ tokens[0].type ],
      +		implicitRelative = leadingRelative || Expr.relative[" "],
      +		i = leadingRelative ? 1 : 0,
      +
      +		// The foundational matcher ensures that elements are reachable from top-level context(s)
      +		matchContext = addCombinator( function( elem ) {
      +			return elem === checkContext;
      +		}, implicitRelative, true ),
      +		matchAnyContext = addCombinator( function( elem ) {
      +			return indexOf( checkContext, elem ) > -1;
      +		}, implicitRelative, true ),
      +		matchers = [ function( elem, context, xml ) {
      +			var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
      +				(checkContext = context).nodeType ?
      +					matchContext( elem, context, xml ) :
      +					matchAnyContext( elem, context, xml ) );
      +			// Avoid hanging onto element (issue #299)
      +			checkContext = null;
      +			return ret;
      +		} ];
      +
      +	for ( ; i < len; i++ ) {
      +		if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
      +			matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
      +		} else {
      +			matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
      +
      +			// Return special upon seeing a positional matcher
      +			if ( matcher[ expando ] ) {
      +				// Find the next relative operator (if any) for proper handling
      +				j = ++i;
      +				for ( ; j < len; j++ ) {
      +					if ( Expr.relative[ tokens[j].type ] ) {
      +						break;
      +					}
      +				}
      +				return setMatcher(
      +					i > 1 && elementMatcher( matchers ),
      +					i > 1 && toSelector(
      +						// If the preceding token was a descendant combinator, insert an implicit any-element `*`
      +						tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
      +					).replace( rtrim, "$1" ),
      +					matcher,
      +					i < j && matcherFromTokens( tokens.slice( i, j ) ),
      +					j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
      +					j < len && toSelector( tokens )
      +				);
      +			}
      +			matchers.push( matcher );
      +		}
      +	}
      +
      +	return elementMatcher( matchers );
      +}
      +
      +function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
      +	var bySet = setMatchers.length > 0,
      +		byElement = elementMatchers.length > 0,
      +		superMatcher = function( seed, context, xml, results, outermost ) {
      +			var elem, j, matcher,
      +				matchedCount = 0,
      +				i = "0",
      +				unmatched = seed && [],
      +				setMatched = [],
      +				contextBackup = outermostContext,
      +				// We must always have either seed elements or outermost context
      +				elems = seed || byElement && Expr.find["TAG"]( "*", outermost ),
      +				// Use integer dirruns iff this is the outermost matcher
      +				dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
      +				len = elems.length;
      +
      +			if ( outermost ) {
      +				outermostContext = context === document || context || outermost;
      +			}
      +
      +			// Add elements passing elementMatchers directly to results
      +			// Support: IE<9, Safari
      +			// Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id
      +			for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
      +				if ( byElement && elem ) {
      +					j = 0;
      +					if ( !context && elem.ownerDocument !== document ) {
      +						setDocument( elem );
      +						xml = !documentIsHTML;
      +					}
      +					while ( (matcher = elementMatchers[j++]) ) {
      +						if ( matcher( elem, context || document, xml) ) {
      +							results.push( elem );
      +							break;
      +						}
      +					}
      +					if ( outermost ) {
      +						dirruns = dirrunsUnique;
      +					}
      +				}
      +
      +				// Track unmatched elements for set filters
      +				if ( bySet ) {
      +					// They will have gone through all possible matchers
      +					if ( (elem = !matcher && elem) ) {
      +						matchedCount--;
      +					}
      +
      +					// Lengthen the array for every element, matched or not
      +					if ( seed ) {
      +						unmatched.push( elem );
      +					}
      +				}
      +			}
      +
      +			// `i` is now the count of elements visited above, and adding it to `matchedCount`
      +			// makes the latter nonnegative.
      +			matchedCount += i;
      +
      +			// Apply set filters to unmatched elements
      +			// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`
      +			// equals `i`), unless we didn't visit _any_ elements in the above loop because we have
      +			// no element matchers and no seed.
      +			// Incrementing an initially-string "0" `i` allows `i` to remain a string only in that
      +			// case, which will result in a "00" `matchedCount` that differs from `i` but is also
      +			// numerically zero.
      +			if ( bySet && i !== matchedCount ) {
      +				j = 0;
      +				while ( (matcher = setMatchers[j++]) ) {
      +					matcher( unmatched, setMatched, context, xml );
      +				}
      +
      +				if ( seed ) {
      +					// Reintegrate element matches to eliminate the need for sorting
      +					if ( matchedCount > 0 ) {
      +						while ( i-- ) {
      +							if ( !(unmatched[i] || setMatched[i]) ) {
      +								setMatched[i] = pop.call( results );
      +							}
      +						}
      +					}
      +
      +					// Discard index placeholder values to get only actual matches
      +					setMatched = condense( setMatched );
      +				}
      +
      +				// Add matches to results
      +				push.apply( results, setMatched );
      +
      +				// Seedless set matches succeeding multiple successful matchers stipulate sorting
      +				if ( outermost && !seed && setMatched.length > 0 &&
      +					( matchedCount + setMatchers.length ) > 1 ) {
      +
      +					Sizzle.uniqueSort( results );
      +				}
      +			}
      +
      +			// Override manipulation of globals by nested matchers
      +			if ( outermost ) {
      +				dirruns = dirrunsUnique;
      +				outermostContext = contextBackup;
      +			}
      +
      +			return unmatched;
      +		};
      +
      +	return bySet ?
      +		markFunction( superMatcher ) :
      +		superMatcher;
      +}
      +
      +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {
      +	var i,
      +		setMatchers = [],
      +		elementMatchers = [],
      +		cached = compilerCache[ selector + " " ];
      +
      +	if ( !cached ) {
      +		// Generate a function of recursive functions that can be used to check each element
      +		if ( !match ) {
      +			match = tokenize( selector );
      +		}
      +		i = match.length;
      +		while ( i-- ) {
      +			cached = matcherFromTokens( match[i] );
      +			if ( cached[ expando ] ) {
      +				setMatchers.push( cached );
      +			} else {
      +				elementMatchers.push( cached );
      +			}
      +		}
      +
      +		// Cache the compiled function
      +		cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
      +
      +		// Save selector and tokenization
      +		cached.selector = selector;
      +	}
      +	return cached;
      +};
      +
      +/**
      + * A low-level selection function that works with Sizzle's compiled
      + *  selector functions
      + * @param {String|Function} selector A selector or a pre-compiled
      + *  selector function built with Sizzle.compile
      + * @param {Element} context
      + * @param {Array} [results]
      + * @param {Array} [seed] A set of elements to match against
      + */
      +select = Sizzle.select = function( selector, context, results, seed ) {
      +	var i, tokens, token, type, find,
      +		compiled = typeof selector === "function" && selector,
      +		match = !seed && tokenize( (selector = compiled.selector || selector) );
      +
      +	results = results || [];
      +
      +	// Try to minimize operations if there is only one selector in the list and no seed
      +	// (the latter of which guarantees us context)
      +	if ( match.length === 1 ) {
      +
      +		// Reduce context if the leading compound selector is an ID
      +		tokens = match[0] = match[0].slice( 0 );
      +		if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
      +				context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) {
      +
      +			context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
      +			if ( !context ) {
      +				return results;
      +
      +			// Precompiled matchers will still verify ancestry, so step up a level
      +			} else if ( compiled ) {
      +				context = context.parentNode;
      +			}
      +
      +			selector = selector.slice( tokens.shift().value.length );
      +		}
      +
      +		// Fetch a seed set for right-to-left matching
      +		i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
      +		while ( i-- ) {
      +			token = tokens[i];
      +
      +			// Abort if we hit a combinator
      +			if ( Expr.relative[ (type = token.type) ] ) {
      +				break;
      +			}
      +			if ( (find = Expr.find[ type ]) ) {
      +				// Search, expanding context for leading sibling combinators
      +				if ( (seed = find(
      +					token.matches[0].replace( runescape, funescape ),
      +					rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
      +				)) ) {
      +
      +					// If seed is empty or no tokens remain, we can return early
      +					tokens.splice( i, 1 );
      +					selector = seed.length && toSelector( tokens );
      +					if ( !selector ) {
      +						push.apply( results, seed );
      +						return results;
      +					}
      +
      +					break;
      +				}
      +			}
      +		}
      +	}
      +
      +	// Compile and execute a filtering function if one is not provided
      +	// Provide `match` to avoid retokenization if we modified the selector above
      +	( compiled || compile( selector, match ) )(
      +		seed,
      +		context,
      +		!documentIsHTML,
      +		results,
      +		!context || rsibling.test( selector ) && testContext( context.parentNode ) || context
      +	);
      +	return results;
      +};
      +
      +// One-time assignments
      +
      +// Sort stability
      +support.sortStable = expando.split("").sort( sortOrder ).join("") === expando;
      +
      +// Support: Chrome 14-35+
      +// Always assume duplicates if they aren't passed to the comparison function
      +support.detectDuplicates = !!hasDuplicate;
      +
      +// Initialize against the default document
      +setDocument();
      +
      +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
      +// Detached nodes confoundingly follow *each other*
      +support.sortDetached = assert(function( el ) {
      +	// Should return 1, but returns 4 (following)
      +	return el.compareDocumentPosition( document.createElement("fieldset") ) & 1;
      +});
      +
      +// Support: IE<8
      +// Prevent attribute/property "interpolation"
      +// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
      +if ( !assert(function( el ) {
      +	el.innerHTML = "<a href='#'></a>";
      +	return el.firstChild.getAttribute("href") === "#" ;
      +}) ) {
      +	addHandle( "type|href|height|width", function( elem, name, isXML ) {
      +		if ( !isXML ) {
      +			return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
      +		}
      +	});
      +}
      +
      +// Support: IE<9
      +// Use defaultValue in place of getAttribute("value")
      +if ( !support.attributes || !assert(function( el ) {
      +	el.innerHTML = "<input/>";
      +	el.firstChild.setAttribute( "value", "" );
      +	return el.firstChild.getAttribute( "value" ) === "";
      +}) ) {
      +	addHandle( "value", function( elem, name, isXML ) {
      +		if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
      +			return elem.defaultValue;
      +		}
      +	});
      +}
      +
      +// Support: IE<9
      +// Use getAttributeNode to fetch booleans when getAttribute lies
      +if ( !assert(function( el ) {
      +	return el.getAttribute("disabled") == null;
      +}) ) {
      +	addHandle( booleans, function( elem, name, isXML ) {
      +		var val;
      +		if ( !isXML ) {
      +			return elem[ name ] === true ? name.toLowerCase() :
      +					(val = elem.getAttributeNode( name )) && val.specified ?
      +					val.value :
      +				null;
      +		}
      +	});
      +}
      +
      +return Sizzle;
      +
      +})( window );
      +
      +
      +
      +jQuery.find = Sizzle;
      +jQuery.expr = Sizzle.selectors;
      +
      +// Deprecated
      +jQuery.expr[ ":" ] = jQuery.expr.pseudos;
      +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;
      +jQuery.text = Sizzle.getText;
      +jQuery.isXMLDoc = Sizzle.isXML;
      +jQuery.contains = Sizzle.contains;
      +jQuery.escapeSelector = Sizzle.escape;
      +
      +
      +
      +
      +var dir = function( elem, dir, until ) {
      +	var matched = [],
      +		truncate = until !== undefined;
      +
      +	while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {
      +		if ( elem.nodeType === 1 ) {
      +			if ( truncate && jQuery( elem ).is( until ) ) {
      +				break;
      +			}
      +			matched.push( elem );
      +		}
      +	}
      +	return matched;
      +};
      +
      +
      +var siblings = function( n, elem ) {
      +	var matched = [];
      +
      +	for ( ; n; n = n.nextSibling ) {
      +		if ( n.nodeType === 1 && n !== elem ) {
      +			matched.push( n );
      +		}
      +	}
      +
      +	return matched;
      +};
      +
      +
      +var rneedsContext = jQuery.expr.match.needsContext;
      +
      +
      +
      +function nodeName( elem, name ) {
      +
      +  return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
      +
      +};
      +var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i );
      +
      +
      +
      +// Implement the identical functionality for filter and not
      +function winnow( elements, qualifier, not ) {
      +	if ( isFunction( qualifier ) ) {
      +		return jQuery.grep( elements, function( elem, i ) {
      +			return !!qualifier.call( elem, i, elem ) !== not;
      +		} );
      +	}
      +
      +	// Single element
      +	if ( qualifier.nodeType ) {
      +		return jQuery.grep( elements, function( elem ) {
      +			return ( elem === qualifier ) !== not;
      +		} );
      +	}
      +
      +	// Arraylike of elements (jQuery, arguments, Array)
      +	if ( typeof qualifier !== "string" ) {
      +		return jQuery.grep( elements, function( elem ) {
      +			return ( indexOf.call( qualifier, elem ) > -1 ) !== not;
      +		} );
      +	}
      +
      +	// Filtered directly for both simple and complex selectors
      +	return jQuery.filter( qualifier, elements, not );
      +}
      +
      +jQuery.filter = function( expr, elems, not ) {
      +	var elem = elems[ 0 ];
      +
      +	if ( not ) {
      +		expr = ":not(" + expr + ")";
      +	}
      +
      +	if ( elems.length === 1 && elem.nodeType === 1 ) {
      +		return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];
      +	}
      +
      +	return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
      +		return elem.nodeType === 1;
      +	} ) );
      +};
      +
      +jQuery.fn.extend( {
      +	find: function( selector ) {
      +		var i, ret,
      +			len = this.length,
      +			self = this;
      +
      +		if ( typeof selector !== "string" ) {
      +			return this.pushStack( jQuery( selector ).filter( function() {
      +				for ( i = 0; i < len; i++ ) {
      +					if ( jQuery.contains( self[ i ], this ) ) {
      +						return true;
      +					}
      +				}
      +			} ) );
      +		}
      +
      +		ret = this.pushStack( [] );
      +
      +		for ( i = 0; i < len; i++ ) {
      +			jQuery.find( selector, self[ i ], ret );
      +		}
      +
      +		return len > 1 ? jQuery.uniqueSort( ret ) : ret;
      +	},
      +	filter: function( selector ) {
      +		return this.pushStack( winnow( this, selector || [], false ) );
      +	},
      +	not: function( selector ) {
      +		return this.pushStack( winnow( this, selector || [], true ) );
      +	},
      +	is: function( selector ) {
      +		return !!winnow(
      +			this,
      +
      +			// If this is a positional/relative selector, check membership in the returned set
      +			// so $("p:first").is("p:last") won't return true for a doc with two "p".
      +			typeof selector === "string" && rneedsContext.test( selector ) ?
      +				jQuery( selector ) :
      +				selector || [],
      +			false
      +		).length;
      +	}
      +} );
      +
      +
      +// Initialize a jQuery object
      +
      +
      +// A central reference to the root jQuery(document)
      +var rootjQuery,
      +
      +	// A simple way to check for HTML strings
      +	// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
      +	// Strict HTML recognition (#11290: must start with <)
      +	// Shortcut simple #id case for speed
      +	rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,
      +
      +	init = jQuery.fn.init = function( selector, context, root ) {
      +		var match, elem;
      +
      +		// HANDLE: $(""), $(null), $(undefined), $(false)
      +		if ( !selector ) {
      +			return this;
      +		}
      +
      +		// Method init() accepts an alternate rootjQuery
      +		// so migrate can support jQuery.sub (gh-2101)
      +		root = root || rootjQuery;
      +
      +		// Handle HTML strings
      +		if ( typeof selector === "string" ) {
      +			if ( selector[ 0 ] === "<" &&
      +				selector[ selector.length - 1 ] === ">" &&
      +				selector.length >= 3 ) {
      +
      +				// Assume that strings that start and end with <> are HTML and skip the regex check
      +				match = [ null, selector, null ];
      +
      +			} else {
      +				match = rquickExpr.exec( selector );
      +			}
      +
      +			// Match html or make sure no context is specified for #id
      +			if ( match && ( match[ 1 ] || !context ) ) {
      +
      +				// HANDLE: $(html) -> $(array)
      +				if ( match[ 1 ] ) {
      +					context = context instanceof jQuery ? context[ 0 ] : context;
      +
      +					// Option to run scripts is true for back-compat
      +					// Intentionally let the error be thrown if parseHTML is not present
      +					jQuery.merge( this, jQuery.parseHTML(
      +						match[ 1 ],
      +						context && context.nodeType ? context.ownerDocument || context : document,
      +						true
      +					) );
      +
      +					// HANDLE: $(html, props)
      +					if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {
      +						for ( match in context ) {
      +
      +							// Properties of context are called as methods if possible
      +							if ( isFunction( this[ match ] ) ) {
      +								this[ match ]( context[ match ] );
      +
      +							// ...and otherwise set as attributes
      +							} else {
      +								this.attr( match, context[ match ] );
      +							}
      +						}
      +					}
      +
      +					return this;
      +
      +				// HANDLE: $(#id)
      +				} else {
      +					elem = document.getElementById( match[ 2 ] );
      +
      +					if ( elem ) {
      +
      +						// Inject the element directly into the jQuery object
      +						this[ 0 ] = elem;
      +						this.length = 1;
      +					}
      +					return this;
      +				}
      +
      +			// HANDLE: $(expr, $(...))
      +			} else if ( !context || context.jquery ) {
      +				return ( context || root ).find( selector );
      +
      +			// HANDLE: $(expr, context)
      +			// (which is just equivalent to: $(context).find(expr)
      +			} else {
      +				return this.constructor( context ).find( selector );
      +			}
      +
      +		// HANDLE: $(DOMElement)
      +		} else if ( selector.nodeType ) {
      +			this[ 0 ] = selector;
      +			this.length = 1;
      +			return this;
      +
      +		// HANDLE: $(function)
      +		// Shortcut for document ready
      +		} else if ( isFunction( selector ) ) {
      +			return root.ready !== undefined ?
      +				root.ready( selector ) :
      +
      +				// Execute immediately if ready is not present
      +				selector( jQuery );
      +		}
      +
      +		return jQuery.makeArray( selector, this );
      +	};
      +
      +// Give the init function the jQuery prototype for later instantiation
      +init.prototype = jQuery.fn;
      +
      +// Initialize central reference
      +rootjQuery = jQuery( document );
      +
      +
      +var rparentsprev = /^(?:parents|prev(?:Until|All))/,
      +
      +	// Methods guaranteed to produce a unique set when starting from a unique set
      +	guaranteedUnique = {
      +		children: true,
      +		contents: true,
      +		next: true,
      +		prev: true
      +	};
      +
      +jQuery.fn.extend( {
      +	has: function( target ) {
      +		var targets = jQuery( target, this ),
      +			l = targets.length;
      +
      +		return this.filter( function() {
      +			var i = 0;
      +			for ( ; i < l; i++ ) {
      +				if ( jQuery.contains( this, targets[ i ] ) ) {
      +					return true;
      +				}
      +			}
      +		} );
      +	},
      +
      +	closest: function( selectors, context ) {
      +		var cur,
      +			i = 0,
      +			l = this.length,
      +			matched = [],
      +			targets = typeof selectors !== "string" && jQuery( selectors );
      +
      +		// Positional selectors never match, since there's no _selection_ context
      +		if ( !rneedsContext.test( selectors ) ) {
      +			for ( ; i < l; i++ ) {
      +				for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {
      +
      +					// Always skip document fragments
      +					if ( cur.nodeType < 11 && ( targets ?
      +						targets.index( cur ) > -1 :
      +
      +						// Don't pass non-elements to Sizzle
      +						cur.nodeType === 1 &&
      +							jQuery.find.matchesSelector( cur, selectors ) ) ) {
      +
      +						matched.push( cur );
      +						break;
      +					}
      +				}
      +			}
      +		}
      +
      +		return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );
      +	},
      +
      +	// Determine the position of an element within the set
      +	index: function( elem ) {
      +
      +		// No argument, return index in parent
      +		if ( !elem ) {
      +			return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
      +		}
      +
      +		// Index in selector
      +		if ( typeof elem === "string" ) {
      +			return indexOf.call( jQuery( elem ), this[ 0 ] );
      +		}
      +
      +		// Locate the position of the desired element
      +		return indexOf.call( this,
      +
      +			// If it receives a jQuery object, the first element is used
      +			elem.jquery ? elem[ 0 ] : elem
      +		);
      +	},
      +
      +	add: function( selector, context ) {
      +		return this.pushStack(
      +			jQuery.uniqueSort(
      +				jQuery.merge( this.get(), jQuery( selector, context ) )
      +			)
      +		);
      +	},
      +
      +	addBack: function( selector ) {
      +		return this.add( selector == null ?
      +			this.prevObject : this.prevObject.filter( selector )
      +		);
      +	}
      +} );
      +
      +function sibling( cur, dir ) {
      +	while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}
      +	return cur;
      +}
      +
      +jQuery.each( {
      +	parent: function( elem ) {
      +		var parent = elem.parentNode;
      +		return parent && parent.nodeType !== 11 ? parent : null;
      +	},
      +	parents: function( elem ) {
      +		return dir( elem, "parentNode" );
      +	},
      +	parentsUntil: function( elem, i, until ) {
      +		return dir( elem, "parentNode", until );
      +	},
      +	next: function( elem ) {
      +		return sibling( elem, "nextSibling" );
      +	},
      +	prev: function( elem ) {
      +		return sibling( elem, "previousSibling" );
      +	},
      +	nextAll: function( elem ) {
      +		return dir( elem, "nextSibling" );
      +	},
      +	prevAll: function( elem ) {
      +		return dir( elem, "previousSibling" );
      +	},
      +	nextUntil: function( elem, i, until ) {
      +		return dir( elem, "nextSibling", until );
      +	},
      +	prevUntil: function( elem, i, until ) {
      +		return dir( elem, "previousSibling", until );
      +	},
      +	siblings: function( elem ) {
      +		return siblings( ( elem.parentNode || {} ).firstChild, elem );
      +	},
      +	children: function( elem ) {
      +		return siblings( elem.firstChild );
      +	},
      +	contents: function( elem ) {
      +        if ( nodeName( elem, "iframe" ) ) {
      +            return elem.contentDocument;
      +        }
      +
      +        // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only
      +        // Treat the template element as a regular one in browsers that
      +        // don't support it.
      +        if ( nodeName( elem, "template" ) ) {
      +            elem = elem.content || elem;
      +        }
      +
      +        return jQuery.merge( [], elem.childNodes );
      +	}
      +}, function( name, fn ) {
      +	jQuery.fn[ name ] = function( until, selector ) {
      +		var matched = jQuery.map( this, fn, until );
      +
      +		if ( name.slice( -5 ) !== "Until" ) {
      +			selector = until;
      +		}
      +
      +		if ( selector && typeof selector === "string" ) {
      +			matched = jQuery.filter( selector, matched );
      +		}
      +
      +		if ( this.length > 1 ) {
      +
      +			// Remove duplicates
      +			if ( !guaranteedUnique[ name ] ) {
      +				jQuery.uniqueSort( matched );
      +			}
      +
      +			// Reverse order for parents* and prev-derivatives
      +			if ( rparentsprev.test( name ) ) {
      +				matched.reverse();
      +			}
      +		}
      +
      +		return this.pushStack( matched );
      +	};
      +} );
      +var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g );
      +
      +
      +
      +// Convert String-formatted options into Object-formatted ones
      +function createOptions( options ) {
      +	var object = {};
      +	jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {
      +		object[ flag ] = true;
      +	} );
      +	return object;
      +}
      +
      +/*
      + * Create a callback list using the following parameters:
      + *
      + *	options: an optional list of space-separated options that will change how
      + *			the callback list behaves or a more traditional option object
      + *
      + * By default a callback list will act like an event callback list and can be
      + * "fired" multiple times.
      + *
      + * Possible options:
      + *
      + *	once:			will ensure the callback list can only be fired once (like a Deferred)
      + *
      + *	memory:			will keep track of previous values and will call any callback added
      + *					after the list has been fired right away with the latest "memorized"
      + *					values (like a Deferred)
      + *
      + *	unique:			will ensure a callback can only be added once (no duplicate in the list)
      + *
      + *	stopOnFalse:	interrupt callings when a callback returns false
      + *
      + */
      +jQuery.Callbacks = function( options ) {
      +
      +	// Convert options from String-formatted to Object-formatted if needed
      +	// (we check in cache first)
      +	options = typeof options === "string" ?
      +		createOptions( options ) :
      +		jQuery.extend( {}, options );
      +
      +	var // Flag to know if list is currently firing
      +		firing,
      +
      +		// Last fire value for non-forgettable lists
      +		memory,
      +
      +		// Flag to know if list was already fired
      +		fired,
      +
      +		// Flag to prevent firing
      +		locked,
      +
      +		// Actual callback list
      +		list = [],
      +
      +		// Queue of execution data for repeatable lists
      +		queue = [],
      +
      +		// Index of currently firing callback (modified by add/remove as needed)
      +		firingIndex = -1,
      +
      +		// Fire callbacks
      +		fire = function() {
      +
      +			// Enforce single-firing
      +			locked = locked || options.once;
      +
      +			// Execute callbacks for all pending executions,
      +			// respecting firingIndex overrides and runtime changes
      +			fired = firing = true;
      +			for ( ; queue.length; firingIndex = -1 ) {
      +				memory = queue.shift();
      +				while ( ++firingIndex < list.length ) {
      +
      +					// Run callback and check for early termination
      +					if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&
      +						options.stopOnFalse ) {
      +
      +						// Jump to end and forget the data so .add doesn't re-fire
      +						firingIndex = list.length;
      +						memory = false;
      +					}
      +				}
      +			}
      +
      +			// Forget the data if we're done with it
      +			if ( !options.memory ) {
      +				memory = false;
      +			}
      +
      +			firing = false;
      +
      +			// Clean up if we're done firing for good
      +			if ( locked ) {
      +
      +				// Keep an empty list if we have data for future add calls
      +				if ( memory ) {
      +					list = [];
      +
      +				// Otherwise, this object is spent
      +				} else {
      +					list = "";
      +				}
      +			}
      +		},
      +
      +		// Actual Callbacks object
      +		self = {
      +
      +			// Add a callback or a collection of callbacks to the list
      +			add: function() {
      +				if ( list ) {
      +
      +					// If we have memory from a past run, we should fire after adding
      +					if ( memory && !firing ) {
      +						firingIndex = list.length - 1;
      +						queue.push( memory );
      +					}
      +
      +					( function add( args ) {
      +						jQuery.each( args, function( _, arg ) {
      +							if ( isFunction( arg ) ) {
      +								if ( !options.unique || !self.has( arg ) ) {
      +									list.push( arg );
      +								}
      +							} else if ( arg && arg.length && toType( arg ) !== "string" ) {
      +
      +								// Inspect recursively
      +								add( arg );
      +							}
      +						} );
      +					} )( arguments );
      +
      +					if ( memory && !firing ) {
      +						fire();
      +					}
      +				}
      +				return this;
      +			},
      +
      +			// Remove a callback from the list
      +			remove: function() {
      +				jQuery.each( arguments, function( _, arg ) {
      +					var index;
      +					while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
      +						list.splice( index, 1 );
      +
      +						// Handle firing indexes
      +						if ( index <= firingIndex ) {
      +							firingIndex--;
      +						}
      +					}
      +				} );
      +				return this;
      +			},
      +
      +			// Check if a given callback is in the list.
      +			// If no argument is given, return whether or not list has callbacks attached.
      +			has: function( fn ) {
      +				return fn ?
      +					jQuery.inArray( fn, list ) > -1 :
      +					list.length > 0;
      +			},
      +
      +			// Remove all callbacks from the list
      +			empty: function() {
      +				if ( list ) {
      +					list = [];
      +				}
      +				return this;
      +			},
      +
      +			// Disable .fire and .add
      +			// Abort any current/pending executions
      +			// Clear all callbacks and values
      +			disable: function() {
      +				locked = queue = [];
      +				list = memory = "";
      +				return this;
      +			},
      +			disabled: function() {
      +				return !list;
      +			},
      +
      +			// Disable .fire
      +			// Also disable .add unless we have memory (since it would have no effect)
      +			// Abort any pending executions
      +			lock: function() {
      +				locked = queue = [];
      +				if ( !memory && !firing ) {
      +					list = memory = "";
      +				}
      +				return this;
      +			},
      +			locked: function() {
      +				return !!locked;
      +			},
      +
      +			// Call all callbacks with the given context and arguments
      +			fireWith: function( context, args ) {
      +				if ( !locked ) {
      +					args = args || [];
      +					args = [ context, args.slice ? args.slice() : args ];
      +					queue.push( args );
      +					if ( !firing ) {
      +						fire();
      +					}
      +				}
      +				return this;
      +			},
      +
      +			// Call all the callbacks with the given arguments
      +			fire: function() {
      +				self.fireWith( this, arguments );
      +				return this;
      +			},
      +
      +			// To know if the callbacks have already been called at least once
      +			fired: function() {
      +				return !!fired;
      +			}
      +		};
      +
      +	return self;
      +};
      +
      +
      +function Identity( v ) {
      +	return v;
      +}
      +function Thrower( ex ) {
      +	throw ex;
      +}
      +
      +function adoptValue( value, resolve, reject, noValue ) {
      +	var method;
      +
      +	try {
      +
      +		// Check for promise aspect first to privilege synchronous behavior
      +		if ( value && isFunction( ( method = value.promise ) ) ) {
      +			method.call( value ).done( resolve ).fail( reject );
      +
      +		// Other thenables
      +		} else if ( value && isFunction( ( method = value.then ) ) ) {
      +			method.call( value, resolve, reject );
      +
      +		// Other non-thenables
      +		} else {
      +
      +			// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:
      +			// * false: [ value ].slice( 0 ) => resolve( value )
      +			// * true: [ value ].slice( 1 ) => resolve()
      +			resolve.apply( undefined, [ value ].slice( noValue ) );
      +		}
      +
      +	// For Promises/A+, convert exceptions into rejections
      +	// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in
      +	// Deferred#then to conditionally suppress rejection.
      +	} catch ( value ) {
      +
      +		// Support: Android 4.0 only
      +		// Strict mode functions invoked without .call/.apply get global-object context
      +		reject.apply( undefined, [ value ] );
      +	}
      +}
      +
      +jQuery.extend( {
      +
      +	Deferred: function( func ) {
      +		var tuples = [
      +
      +				// action, add listener, callbacks,
      +				// ... .then handlers, argument index, [final state]
      +				[ "notify", "progress", jQuery.Callbacks( "memory" ),
      +					jQuery.Callbacks( "memory" ), 2 ],
      +				[ "resolve", "done", jQuery.Callbacks( "once memory" ),
      +					jQuery.Callbacks( "once memory" ), 0, "resolved" ],
      +				[ "reject", "fail", jQuery.Callbacks( "once memory" ),
      +					jQuery.Callbacks( "once memory" ), 1, "rejected" ]
      +			],
      +			state = "pending",
      +			promise = {
      +				state: function() {
      +					return state;
      +				},
      +				always: function() {
      +					deferred.done( arguments ).fail( arguments );
      +					return this;
      +				},
      +				"catch": function( fn ) {
      +					return promise.then( null, fn );
      +				},
      +
      +				// Keep pipe for back-compat
      +				pipe: function( /* fnDone, fnFail, fnProgress */ ) {
      +					var fns = arguments;
      +
      +					return jQuery.Deferred( function( newDefer ) {
      +						jQuery.each( tuples, function( i, tuple ) {
      +
      +							// Map tuples (progress, done, fail) to arguments (done, fail, progress)
      +							var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];
      +
      +							// deferred.progress(function() { bind to newDefer or newDefer.notify })
      +							// deferred.done(function() { bind to newDefer or newDefer.resolve })
      +							// deferred.fail(function() { bind to newDefer or newDefer.reject })
      +							deferred[ tuple[ 1 ] ]( function() {
      +								var returned = fn && fn.apply( this, arguments );
      +								if ( returned && isFunction( returned.promise ) ) {
      +									returned.promise()
      +										.progress( newDefer.notify )
      +										.done( newDefer.resolve )
      +										.fail( newDefer.reject );
      +								} else {
      +									newDefer[ tuple[ 0 ] + "With" ](
      +										this,
      +										fn ? [ returned ] : arguments
      +									);
      +								}
      +							} );
      +						} );
      +						fns = null;
      +					} ).promise();
      +				},
      +				then: function( onFulfilled, onRejected, onProgress ) {
      +					var maxDepth = 0;
      +					function resolve( depth, deferred, handler, special ) {
      +						return function() {
      +							var that = this,
      +								args = arguments,
      +								mightThrow = function() {
      +									var returned, then;
      +
      +									// Support: Promises/A+ section 2.3.3.3.3
      +									// https://promisesaplus.com/#point-59
      +									// Ignore double-resolution attempts
      +									if ( depth < maxDepth ) {
      +										return;
      +									}
      +
      +									returned = handler.apply( that, args );
      +
      +									// Support: Promises/A+ section 2.3.1
      +									// https://promisesaplus.com/#point-48
      +									if ( returned === deferred.promise() ) {
      +										throw new TypeError( "Thenable self-resolution" );
      +									}
      +
      +									// Support: Promises/A+ sections 2.3.3.1, 3.5
      +									// https://promisesaplus.com/#point-54
      +									// https://promisesaplus.com/#point-75
      +									// Retrieve `then` only once
      +									then = returned &&
      +
      +										// Support: Promises/A+ section 2.3.4
      +										// https://promisesaplus.com/#point-64
      +										// Only check objects and functions for thenability
      +										( typeof returned === "object" ||
      +											typeof returned === "function" ) &&
      +										returned.then;
      +
      +									// Handle a returned thenable
      +									if ( isFunction( then ) ) {
      +
      +										// Special processors (notify) just wait for resolution
      +										if ( special ) {
      +											then.call(
      +												returned,
      +												resolve( maxDepth, deferred, Identity, special ),
      +												resolve( maxDepth, deferred, Thrower, special )
      +											);
      +
      +										// Normal processors (resolve) also hook into progress
      +										} else {
      +
      +											// ...and disregard older resolution values
      +											maxDepth++;
      +
      +											then.call(
      +												returned,
      +												resolve( maxDepth, deferred, Identity, special ),
      +												resolve( maxDepth, deferred, Thrower, special ),
      +												resolve( maxDepth, deferred, Identity,
      +													deferred.notifyWith )
      +											);
      +										}
      +
      +									// Handle all other returned values
      +									} else {
      +
      +										// Only substitute handlers pass on context
      +										// and multiple values (non-spec behavior)
      +										if ( handler !== Identity ) {
      +											that = undefined;
      +											args = [ returned ];
      +										}
      +
      +										// Process the value(s)
      +										// Default process is resolve
      +										( special || deferred.resolveWith )( that, args );
      +									}
      +								},
      +
      +								// Only normal processors (resolve) catch and reject exceptions
      +								process = special ?
      +									mightThrow :
      +									function() {
      +										try {
      +											mightThrow();
      +										} catch ( e ) {
      +
      +											if ( jQuery.Deferred.exceptionHook ) {
      +												jQuery.Deferred.exceptionHook( e,
      +													process.stackTrace );
      +											}
      +
      +											// Support: Promises/A+ section 2.3.3.3.4.1
      +											// https://promisesaplus.com/#point-61
      +											// Ignore post-resolution exceptions
      +											if ( depth + 1 >= maxDepth ) {
      +
      +												// Only substitute handlers pass on context
      +												// and multiple values (non-spec behavior)
      +												if ( handler !== Thrower ) {
      +													that = undefined;
      +													args = [ e ];
      +												}
      +
      +												deferred.rejectWith( that, args );
      +											}
      +										}
      +									};
      +
      +							// Support: Promises/A+ section 2.3.3.3.1
      +							// https://promisesaplus.com/#point-57
      +							// Re-resolve promises immediately to dodge false rejection from
      +							// subsequent errors
      +							if ( depth ) {
      +								process();
      +							} else {
      +
      +								// Call an optional hook to record the stack, in case of exception
      +								// since it's otherwise lost when execution goes async
      +								if ( jQuery.Deferred.getStackHook ) {
      +									process.stackTrace = jQuery.Deferred.getStackHook();
      +								}
      +								window.setTimeout( process );
      +							}
      +						};
      +					}
      +
      +					return jQuery.Deferred( function( newDefer ) {
      +
      +						// progress_handlers.add( ... )
      +						tuples[ 0 ][ 3 ].add(
      +							resolve(
      +								0,
      +								newDefer,
      +								isFunction( onProgress ) ?
      +									onProgress :
      +									Identity,
      +								newDefer.notifyWith
      +							)
      +						);
      +
      +						// fulfilled_handlers.add( ... )
      +						tuples[ 1 ][ 3 ].add(
      +							resolve(
      +								0,
      +								newDefer,
      +								isFunction( onFulfilled ) ?
      +									onFulfilled :
      +									Identity
      +							)
      +						);
      +
      +						// rejected_handlers.add( ... )
      +						tuples[ 2 ][ 3 ].add(
      +							resolve(
      +								0,
      +								newDefer,
      +								isFunction( onRejected ) ?
      +									onRejected :
      +									Thrower
      +							)
      +						);
      +					} ).promise();
      +				},
      +
      +				// Get a promise for this deferred
      +				// If obj is provided, the promise aspect is added to the object
      +				promise: function( obj ) {
      +					return obj != null ? jQuery.extend( obj, promise ) : promise;
      +				}
      +			},
      +			deferred = {};
      +
      +		// Add list-specific methods
      +		jQuery.each( tuples, function( i, tuple ) {
      +			var list = tuple[ 2 ],
      +				stateString = tuple[ 5 ];
      +
      +			// promise.progress = list.add
      +			// promise.done = list.add
      +			// promise.fail = list.add
      +			promise[ tuple[ 1 ] ] = list.add;
      +
      +			// Handle state
      +			if ( stateString ) {
      +				list.add(
      +					function() {
      +
      +						// state = "resolved" (i.e., fulfilled)
      +						// state = "rejected"
      +						state = stateString;
      +					},
      +
      +					// rejected_callbacks.disable
      +					// fulfilled_callbacks.disable
      +					tuples[ 3 - i ][ 2 ].disable,
      +
      +					// rejected_handlers.disable
      +					// fulfilled_handlers.disable
      +					tuples[ 3 - i ][ 3 ].disable,
      +
      +					// progress_callbacks.lock
      +					tuples[ 0 ][ 2 ].lock,
      +
      +					// progress_handlers.lock
      +					tuples[ 0 ][ 3 ].lock
      +				);
      +			}
      +
      +			// progress_handlers.fire
      +			// fulfilled_handlers.fire
      +			// rejected_handlers.fire
      +			list.add( tuple[ 3 ].fire );
      +
      +			// deferred.notify = function() { deferred.notifyWith(...) }
      +			// deferred.resolve = function() { deferred.resolveWith(...) }
      +			// deferred.reject = function() { deferred.rejectWith(...) }
      +			deferred[ tuple[ 0 ] ] = function() {
      +				deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments );
      +				return this;
      +			};
      +
      +			// deferred.notifyWith = list.fireWith
      +			// deferred.resolveWith = list.fireWith
      +			// deferred.rejectWith = list.fireWith
      +			deferred[ tuple[ 0 ] + "With" ] = list.fireWith;
      +		} );
      +
      +		// Make the deferred a promise
      +		promise.promise( deferred );
      +
      +		// Call given func if any
      +		if ( func ) {
      +			func.call( deferred, deferred );
      +		}
      +
      +		// All done!
      +		return deferred;
      +	},
      +
      +	// Deferred helper
      +	when: function( singleValue ) {
      +		var
      +
      +			// count of uncompleted subordinates
      +			remaining = arguments.length,
      +
      +			// count of unprocessed arguments
      +			i = remaining,
      +
      +			// subordinate fulfillment data
      +			resolveContexts = Array( i ),
      +			resolveValues = slice.call( arguments ),
      +
      +			// the master Deferred
      +			master = jQuery.Deferred(),
      +
      +			// subordinate callback factory
      +			updateFunc = function( i ) {
      +				return function( value ) {
      +					resolveContexts[ i ] = this;
      +					resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
      +					if ( !( --remaining ) ) {
      +						master.resolveWith( resolveContexts, resolveValues );
      +					}
      +				};
      +			};
      +
      +		// Single- and empty arguments are adopted like Promise.resolve
      +		if ( remaining <= 1 ) {
      +			adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject,
      +				!remaining );
      +
      +			// Use .then() to unwrap secondary thenables (cf. gh-3000)
      +			if ( master.state() === "pending" ||
      +				isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {
      +
      +				return master.then();
      +			}
      +		}
      +
      +		// Multiple arguments are aggregated like Promise.all array elements
      +		while ( i-- ) {
      +			adoptValue( resolveValues[ i ], updateFunc( i ), master.reject );
      +		}
      +
      +		return master.promise();
      +	}
      +} );
      +
      +
      +// These usually indicate a programmer mistake during development,
      +// warn about them ASAP rather than swallowing them by default.
      +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;
      +
      +jQuery.Deferred.exceptionHook = function( error, stack ) {
      +
      +	// Support: IE 8 - 9 only
      +	// Console exists when dev tools are open, which can happen at any time
      +	if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {
      +		window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack );
      +	}
      +};
      +
      +
      +
      +
      +jQuery.readyException = function( error ) {
      +	window.setTimeout( function() {
      +		throw error;
      +	} );
      +};
      +
      +
      +
      +
      +// The deferred used on DOM ready
      +var readyList = jQuery.Deferred();
      +
      +jQuery.fn.ready = function( fn ) {
      +
      +	readyList
      +		.then( fn )
      +
      +		// Wrap jQuery.readyException in a function so that the lookup
      +		// happens at the time of error handling instead of callback
      +		// registration.
      +		.catch( function( error ) {
      +			jQuery.readyException( error );
      +		} );
      +
      +	return this;
      +};
      +
      +jQuery.extend( {
      +
      +	// Is the DOM ready to be used? Set to true once it occurs.
      +	isReady: false,
      +
      +	// A counter to track how many items to wait for before
      +	// the ready event fires. See #6781
      +	readyWait: 1,
      +
      +	// Handle when the DOM is ready
      +	ready: function( wait ) {
      +
      +		// Abort if there are pending holds or we're already ready
      +		if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
      +			return;
      +		}
      +
      +		// Remember that the DOM is ready
      +		jQuery.isReady = true;
      +
      +		// If a normal DOM Ready event fired, decrement, and wait if need be
      +		if ( wait !== true && --jQuery.readyWait > 0 ) {
      +			return;
      +		}
      +
      +		// If there are functions bound, to execute
      +		readyList.resolveWith( document, [ jQuery ] );
      +	}
      +} );
      +
      +jQuery.ready.then = readyList.then;
      +
      +// The ready event handler and self cleanup method
      +function completed() {
      +	document.removeEventListener( "DOMContentLoaded", completed );
      +	window.removeEventListener( "load", completed );
      +	jQuery.ready();
      +}
      +
      +// Catch cases where $(document).ready() is called
      +// after the browser event has already occurred.
      +// Support: IE <=9 - 10 only
      +// Older IE sometimes signals "interactive" too soon
      +if ( document.readyState === "complete" ||
      +	( document.readyState !== "loading" && !document.documentElement.doScroll ) ) {
      +
      +	// Handle it asynchronously to allow scripts the opportunity to delay ready
      +	window.setTimeout( jQuery.ready );
      +
      +} else {
      +
      +	// Use the handy event callback
      +	document.addEventListener( "DOMContentLoaded", completed );
      +
      +	// A fallback to window.onload, that will always work
      +	window.addEventListener( "load", completed );
      +}
      +
      +
      +
      +
      +// Multifunctional method to get and set values of a collection
      +// The value/s can optionally be executed if it's a function
      +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
      +	var i = 0,
      +		len = elems.length,
      +		bulk = key == null;
      +
      +	// Sets many values
      +	if ( toType( key ) === "object" ) {
      +		chainable = true;
      +		for ( i in key ) {
      +			access( elems, fn, i, key[ i ], true, emptyGet, raw );
      +		}
      +
      +	// Sets one value
      +	} else if ( value !== undefined ) {
      +		chainable = true;
      +
      +		if ( !isFunction( value ) ) {
      +			raw = true;
      +		}
      +
      +		if ( bulk ) {
      +
      +			// Bulk operations run against the entire set
      +			if ( raw ) {
      +				fn.call( elems, value );
      +				fn = null;
      +
      +			// ...except when executing function values
      +			} else {
      +				bulk = fn;
      +				fn = function( elem, key, value ) {
      +					return bulk.call( jQuery( elem ), value );
      +				};
      +			}
      +		}
      +
      +		if ( fn ) {
      +			for ( ; i < len; i++ ) {
      +				fn(
      +					elems[ i ], key, raw ?
      +					value :
      +					value.call( elems[ i ], i, fn( elems[ i ], key ) )
      +				);
      +			}
      +		}
      +	}
      +
      +	if ( chainable ) {
      +		return elems;
      +	}
      +
      +	// Gets
      +	if ( bulk ) {
      +		return fn.call( elems );
      +	}
      +
      +	return len ? fn( elems[ 0 ], key ) : emptyGet;
      +};
      +
      +
      +// Matches dashed string for camelizing
      +var rmsPrefix = /^-ms-/,
      +	rdashAlpha = /-([a-z])/g;
      +
      +// Used by camelCase as callback to replace()
      +function fcamelCase( all, letter ) {
      +	return letter.toUpperCase();
      +}
      +
      +// Convert dashed to camelCase; used by the css and data modules
      +// Support: IE <=9 - 11, Edge 12 - 15
      +// Microsoft forgot to hump their vendor prefix (#9572)
      +function camelCase( string ) {
      +	return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
      +}
      +var acceptData = function( owner ) {
      +
      +	// Accepts only:
      +	//  - Node
      +	//    - Node.ELEMENT_NODE
      +	//    - Node.DOCUMENT_NODE
      +	//  - Object
      +	//    - Any
      +	return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
      +};
      +
      +
      +
      +
      +function Data() {
      +	this.expando = jQuery.expando + Data.uid++;
      +}
      +
      +Data.uid = 1;
      +
      +Data.prototype = {
      +
      +	cache: function( owner ) {
      +
      +		// Check if the owner object already has a cache
      +		var value = owner[ this.expando ];
      +
      +		// If not, create one
      +		if ( !value ) {
      +			value = {};
      +
      +			// We can accept data for non-element nodes in modern browsers,
      +			// but we should not, see #8335.
      +			// Always return an empty object.
      +			if ( acceptData( owner ) ) {
      +
      +				// If it is a node unlikely to be stringify-ed or looped over
      +				// use plain assignment
      +				if ( owner.nodeType ) {
      +					owner[ this.expando ] = value;
      +
      +				// Otherwise secure it in a non-enumerable property
      +				// configurable must be true to allow the property to be
      +				// deleted when data is removed
      +				} else {
      +					Object.defineProperty( owner, this.expando, {
      +						value: value,
      +						configurable: true
      +					} );
      +				}
      +			}
      +		}
      +
      +		return value;
      +	},
      +	set: function( owner, data, value ) {
      +		var prop,
      +			cache = this.cache( owner );
      +
      +		// Handle: [ owner, key, value ] args
      +		// Always use camelCase key (gh-2257)
      +		if ( typeof data === "string" ) {
      +			cache[ camelCase( data ) ] = value;
      +
      +		// Handle: [ owner, { properties } ] args
      +		} else {
      +
      +			// Copy the properties one-by-one to the cache object
      +			for ( prop in data ) {
      +				cache[ camelCase( prop ) ] = data[ prop ];
      +			}
      +		}
      +		return cache;
      +	},
      +	get: function( owner, key ) {
      +		return key === undefined ?
      +			this.cache( owner ) :
      +
      +			// Always use camelCase key (gh-2257)
      +			owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];
      +	},
      +	access: function( owner, key, value ) {
      +
      +		// In cases where either:
      +		//
      +		//   1. No key was specified
      +		//   2. A string key was specified, but no value provided
      +		//
      +		// Take the "read" path and allow the get method to determine
      +		// which value to return, respectively either:
      +		//
      +		//   1. The entire cache object
      +		//   2. The data stored at the key
      +		//
      +		if ( key === undefined ||
      +				( ( key && typeof key === "string" ) && value === undefined ) ) {
      +
      +			return this.get( owner, key );
      +		}
      +
      +		// When the key is not a string, or both a key and value
      +		// are specified, set or extend (existing objects) with either:
      +		//
      +		//   1. An object of properties
      +		//   2. A key and value
      +		//
      +		this.set( owner, key, value );
      +
      +		// Since the "set" path can have two possible entry points
      +		// return the expected data based on which path was taken[*]
      +		return value !== undefined ? value : key;
      +	},
      +	remove: function( owner, key ) {
      +		var i,
      +			cache = owner[ this.expando ];
      +
      +		if ( cache === undefined ) {
      +			return;
      +		}
      +
      +		if ( key !== undefined ) {
      +
      +			// Support array or space separated string of keys
      +			if ( Array.isArray( key ) ) {
      +
      +				// If key is an array of keys...
      +				// We always set camelCase keys, so remove that.
      +				key = key.map( camelCase );
      +			} else {
      +				key = camelCase( key );
      +
      +				// If a key with the spaces exists, use it.
      +				// Otherwise, create an array by matching non-whitespace
      +				key = key in cache ?
      +					[ key ] :
      +					( key.match( rnothtmlwhite ) || [] );
      +			}
      +
      +			i = key.length;
      +
      +			while ( i-- ) {
      +				delete cache[ key[ i ] ];
      +			}
      +		}
      +
      +		// Remove the expando if there's no more data
      +		if ( key === undefined || jQuery.isEmptyObject( cache ) ) {
      +
      +			// Support: Chrome <=35 - 45
      +			// Webkit & Blink performance suffers when deleting properties
      +			// from DOM nodes, so set to undefined instead
      +			// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)
      +			if ( owner.nodeType ) {
      +				owner[ this.expando ] = undefined;
      +			} else {
      +				delete owner[ this.expando ];
      +			}
      +		}
      +	},
      +	hasData: function( owner ) {
      +		var cache = owner[ this.expando ];
      +		return cache !== undefined && !jQuery.isEmptyObject( cache );
      +	}
      +};
      +var dataPriv = new Data();
      +
      +var dataUser = new Data();
      +
      +
      +
      +//	Implementation Summary
      +//
      +//	1. Enforce API surface and semantic compatibility with 1.9.x branch
      +//	2. Improve the module's maintainability by reducing the storage
      +//		paths to a single mechanism.
      +//	3. Use the same single mechanism to support "private" and "user" data.
      +//	4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)
      +//	5. Avoid exposing implementation details on user objects (eg. expando properties)
      +//	6. Provide a clear path for implementation upgrade to WeakMap in 2014
      +
      +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
      +	rmultiDash = /[A-Z]/g;
      +
      +function getData( data ) {
      +	if ( data === "true" ) {
      +		return true;
      +	}
      +
      +	if ( data === "false" ) {
      +		return false;
      +	}
      +
      +	if ( data === "null" ) {
      +		return null;
      +	}
      +
      +	// Only convert to a number if it doesn't change the string
      +	if ( data === +data + "" ) {
      +		return +data;
      +	}
      +
      +	if ( rbrace.test( data ) ) {
      +		return JSON.parse( data );
      +	}
      +
      +	return data;
      +}
      +
      +function dataAttr( elem, key, data ) {
      +	var name;
      +
      +	// If nothing was found internally, try to fetch any
      +	// data from the HTML5 data-* attribute
      +	if ( data === undefined && elem.nodeType === 1 ) {
      +		name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase();
      +		data = elem.getAttribute( name );
      +
      +		if ( typeof data === "string" ) {
      +			try {
      +				data = getData( data );
      +			} catch ( e ) {}
      +
      +			// Make sure we set the data so it isn't changed later
      +			dataUser.set( elem, key, data );
      +		} else {
      +			data = undefined;
      +		}
      +	}
      +	return data;
      +}
      +
      +jQuery.extend( {
      +	hasData: function( elem ) {
      +		return dataUser.hasData( elem ) || dataPriv.hasData( elem );
      +	},
      +
      +	data: function( elem, name, data ) {
      +		return dataUser.access( elem, name, data );
      +	},
      +
      +	removeData: function( elem, name ) {
      +		dataUser.remove( elem, name );
      +	},
      +
      +	// TODO: Now that all calls to _data and _removeData have been replaced
      +	// with direct calls to dataPriv methods, these can be deprecated.
      +	_data: function( elem, name, data ) {
      +		return dataPriv.access( elem, name, data );
      +	},
      +
      +	_removeData: function( elem, name ) {
      +		dataPriv.remove( elem, name );
      +	}
      +} );
      +
      +jQuery.fn.extend( {
      +	data: function( key, value ) {
      +		var i, name, data,
      +			elem = this[ 0 ],
      +			attrs = elem && elem.attributes;
      +
      +		// Gets all values
      +		if ( key === undefined ) {
      +			if ( this.length ) {
      +				data = dataUser.get( elem );
      +
      +				if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) {
      +					i = attrs.length;
      +					while ( i-- ) {
      +
      +						// Support: IE 11 only
      +						// The attrs elements can be null (#14894)
      +						if ( attrs[ i ] ) {
      +							name = attrs[ i ].name;
      +							if ( name.indexOf( "data-" ) === 0 ) {
      +								name = camelCase( name.slice( 5 ) );
      +								dataAttr( elem, name, data[ name ] );
      +							}
      +						}
      +					}
      +					dataPriv.set( elem, "hasDataAttrs", true );
      +				}
      +			}
      +
      +			return data;
      +		}
      +
      +		// Sets multiple values
      +		if ( typeof key === "object" ) {
      +			return this.each( function() {
      +				dataUser.set( this, key );
      +			} );
      +		}
      +
      +		return access( this, function( value ) {
      +			var data;
      +
      +			// The calling jQuery object (element matches) is not empty
      +			// (and therefore has an element appears at this[ 0 ]) and the
      +			// `value` parameter was not undefined. An empty jQuery object
      +			// will result in `undefined` for elem = this[ 0 ] which will
      +			// throw an exception if an attempt to read a data cache is made.
      +			if ( elem && value === undefined ) {
      +
      +				// Attempt to get data from the cache
      +				// The key will always be camelCased in Data
      +				data = dataUser.get( elem, key );
      +				if ( data !== undefined ) {
      +					return data;
      +				}
      +
      +				// Attempt to "discover" the data in
      +				// HTML5 custom data-* attrs
      +				data = dataAttr( elem, key );
      +				if ( data !== undefined ) {
      +					return data;
      +				}
      +
      +				// We tried really hard, but the data doesn't exist.
      +				return;
      +			}
      +
      +			// Set the data...
      +			this.each( function() {
      +
      +				// We always store the camelCased key
      +				dataUser.set( this, key, value );
      +			} );
      +		}, null, value, arguments.length > 1, null, true );
      +	},
      +
      +	removeData: function( key ) {
      +		return this.each( function() {
      +			dataUser.remove( this, key );
      +		} );
      +	}
      +} );
      +
      +
      +jQuery.extend( {
      +	queue: function( elem, type, data ) {
      +		var queue;
      +
      +		if ( elem ) {
      +			type = ( type || "fx" ) + "queue";
      +			queue = dataPriv.get( elem, type );
      +
      +			// Speed up dequeue by getting out quickly if this is just a lookup
      +			if ( data ) {
      +				if ( !queue || Array.isArray( data ) ) {
      +					queue = dataPriv.access( elem, type, jQuery.makeArray( data ) );
      +				} else {
      +					queue.push( data );
      +				}
      +			}
      +			return queue || [];
      +		}
      +	},
      +
      +	dequeue: function( elem, type ) {
      +		type = type || "fx";
      +
      +		var queue = jQuery.queue( elem, type ),
      +			startLength = queue.length,
      +			fn = queue.shift(),
      +			hooks = jQuery._queueHooks( elem, type ),
      +			next = function() {
      +				jQuery.dequeue( elem, type );
      +			};
      +
      +		// If the fx queue is dequeued, always remove the progress sentinel
      +		if ( fn === "inprogress" ) {
      +			fn = queue.shift();
      +			startLength--;
      +		}
      +
      +		if ( fn ) {
      +
      +			// Add a progress sentinel to prevent the fx queue from being
      +			// automatically dequeued
      +			if ( type === "fx" ) {
      +				queue.unshift( "inprogress" );
      +			}
      +
      +			// Clear up the last queue stop function
      +			delete hooks.stop;
      +			fn.call( elem, next, hooks );
      +		}
      +
      +		if ( !startLength && hooks ) {
      +			hooks.empty.fire();
      +		}
      +	},
      +
      +	// Not public - generate a queueHooks object, or return the current one
      +	_queueHooks: function( elem, type ) {
      +		var key = type + "queueHooks";
      +		return dataPriv.get( elem, key ) || dataPriv.access( elem, key, {
      +			empty: jQuery.Callbacks( "once memory" ).add( function() {
      +				dataPriv.remove( elem, [ type + "queue", key ] );
      +			} )
      +		} );
      +	}
      +} );
      +
      +jQuery.fn.extend( {
      +	queue: function( type, data ) {
      +		var setter = 2;
      +
      +		if ( typeof type !== "string" ) {
      +			data = type;
      +			type = "fx";
      +			setter--;
      +		}
      +
      +		if ( arguments.length < setter ) {
      +			return jQuery.queue( this[ 0 ], type );
      +		}
      +
      +		return data === undefined ?
      +			this :
      +			this.each( function() {
      +				var queue = jQuery.queue( this, type, data );
      +
      +				// Ensure a hooks for this queue
      +				jQuery._queueHooks( this, type );
      +
      +				if ( type === "fx" && queue[ 0 ] !== "inprogress" ) {
      +					jQuery.dequeue( this, type );
      +				}
      +			} );
      +	},
      +	dequeue: function( type ) {
      +		return this.each( function() {
      +			jQuery.dequeue( this, type );
      +		} );
      +	},
      +	clearQueue: function( type ) {
      +		return this.queue( type || "fx", [] );
      +	},
      +
      +	// Get a promise resolved when queues of a certain type
      +	// are emptied (fx is the type by default)
      +	promise: function( type, obj ) {
      +		var tmp,
      +			count = 1,
      +			defer = jQuery.Deferred(),
      +			elements = this,
      +			i = this.length,
      +			resolve = function() {
      +				if ( !( --count ) ) {
      +					defer.resolveWith( elements, [ elements ] );
      +				}
      +			};
      +
      +		if ( typeof type !== "string" ) {
      +			obj = type;
      +			type = undefined;
      +		}
      +		type = type || "fx";
      +
      +		while ( i-- ) {
      +			tmp = dataPriv.get( elements[ i ], type + "queueHooks" );
      +			if ( tmp && tmp.empty ) {
      +				count++;
      +				tmp.empty.add( resolve );
      +			}
      +		}
      +		resolve();
      +		return defer.promise( obj );
      +	}
      +} );
      +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
      +
      +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
      +
      +
      +var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
      +
      +var isHiddenWithinTree = function( elem, el ) {
      +
      +		// isHiddenWithinTree might be called from jQuery#filter function;
      +		// in that case, element will be second argument
      +		elem = el || elem;
      +
      +		// Inline style trumps all
      +		return elem.style.display === "none" ||
      +			elem.style.display === "" &&
      +
      +			// Otherwise, check computed style
      +			// Support: Firefox <=43 - 45
      +			// Disconnected elements can have computed display: none, so first confirm that elem is
      +			// in the document.
      +			jQuery.contains( elem.ownerDocument, elem ) &&
      +
      +			jQuery.css( elem, "display" ) === "none";
      +	};
      +
      +var swap = function( elem, options, callback, args ) {
      +	var ret, name,
      +		old = {};
      +
      +	// Remember the old values, and insert the new ones
      +	for ( name in options ) {
      +		old[ name ] = elem.style[ name ];
      +		elem.style[ name ] = options[ name ];
      +	}
      +
      +	ret = callback.apply( elem, args || [] );
      +
      +	// Revert the old values
      +	for ( name in options ) {
      +		elem.style[ name ] = old[ name ];
      +	}
      +
      +	return ret;
      +};
      +
      +
      +
      +
      +function adjustCSS( elem, prop, valueParts, tween ) {
      +	var adjusted, scale,
      +		maxIterations = 20,
      +		currentValue = tween ?
      +			function() {
      +				return tween.cur();
      +			} :
      +			function() {
      +				return jQuery.css( elem, prop, "" );
      +			},
      +		initial = currentValue(),
      +		unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
      +
      +		// Starting value computation is required for potential unit mismatches
      +		initialInUnit = ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) &&
      +			rcssNum.exec( jQuery.css( elem, prop ) );
      +
      +	if ( initialInUnit && initialInUnit[ 3 ] !== unit ) {
      +
      +		// Support: Firefox <=54
      +		// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)
      +		initial = initial / 2;
      +
      +		// Trust units reported by jQuery.css
      +		unit = unit || initialInUnit[ 3 ];
      +
      +		// Iteratively approximate from a nonzero starting point
      +		initialInUnit = +initial || 1;
      +
      +		while ( maxIterations-- ) {
      +
      +			// Evaluate and update our best guess (doubling guesses that zero out).
      +			// Finish if the scale equals or crosses 1 (making the old*new product non-positive).
      +			jQuery.style( elem, prop, initialInUnit + unit );
      +			if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {
      +				maxIterations = 0;
      +			}
      +			initialInUnit = initialInUnit / scale;
      +
      +		}
      +
      +		initialInUnit = initialInUnit * 2;
      +		jQuery.style( elem, prop, initialInUnit + unit );
      +
      +		// Make sure we update the tween properties later on
      +		valueParts = valueParts || [];
      +	}
      +
      +	if ( valueParts ) {
      +		initialInUnit = +initialInUnit || +initial || 0;
      +
      +		// Apply relative offset (+=/-=) if specified
      +		adjusted = valueParts[ 1 ] ?
      +			initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :
      +			+valueParts[ 2 ];
      +		if ( tween ) {
      +			tween.unit = unit;
      +			tween.start = initialInUnit;
      +			tween.end = adjusted;
      +		}
      +	}
      +	return adjusted;
      +}
      +
      +
      +var defaultDisplayMap = {};
      +
      +function getDefaultDisplay( elem ) {
      +	var temp,
      +		doc = elem.ownerDocument,
      +		nodeName = elem.nodeName,
      +		display = defaultDisplayMap[ nodeName ];
      +
      +	if ( display ) {
      +		return display;
      +	}
      +
      +	temp = doc.body.appendChild( doc.createElement( nodeName ) );
      +	display = jQuery.css( temp, "display" );
      +
      +	temp.parentNode.removeChild( temp );
      +
      +	if ( display === "none" ) {
      +		display = "block";
      +	}
      +	defaultDisplayMap[ nodeName ] = display;
      +
      +	return display;
      +}
      +
      +function showHide( elements, show ) {
      +	var display, elem,
      +		values = [],
      +		index = 0,
      +		length = elements.length;
      +
      +	// Determine new display value for elements that need to change
      +	for ( ; index < length; index++ ) {
      +		elem = elements[ index ];
      +		if ( !elem.style ) {
      +			continue;
      +		}
      +
      +		display = elem.style.display;
      +		if ( show ) {
      +
      +			// Since we force visibility upon cascade-hidden elements, an immediate (and slow)
      +			// check is required in this first loop unless we have a nonempty display value (either
      +			// inline or about-to-be-restored)
      +			if ( display === "none" ) {
      +				values[ index ] = dataPriv.get( elem, "display" ) || null;
      +				if ( !values[ index ] ) {
      +					elem.style.display = "";
      +				}
      +			}
      +			if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) {
      +				values[ index ] = getDefaultDisplay( elem );
      +			}
      +		} else {
      +			if ( display !== "none" ) {
      +				values[ index ] = "none";
      +
      +				// Remember what we're overwriting
      +				dataPriv.set( elem, "display", display );
      +			}
      +		}
      +	}
      +
      +	// Set the display of the elements in a second loop to avoid constant reflow
      +	for ( index = 0; index < length; index++ ) {
      +		if ( values[ index ] != null ) {
      +			elements[ index ].style.display = values[ index ];
      +		}
      +	}
      +
      +	return elements;
      +}
      +
      +jQuery.fn.extend( {
      +	show: function() {
      +		return showHide( this, true );
      +	},
      +	hide: function() {
      +		return showHide( this );
      +	},
      +	toggle: function( state ) {
      +		if ( typeof state === "boolean" ) {
      +			return state ? this.show() : this.hide();
      +		}
      +
      +		return this.each( function() {
      +			if ( isHiddenWithinTree( this ) ) {
      +				jQuery( this ).show();
      +			} else {
      +				jQuery( this ).hide();
      +			}
      +		} );
      +	}
      +} );
      +var rcheckableType = ( /^(?:checkbox|radio)$/i );
      +
      +var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]+)/i );
      +
      +var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i );
      +
      +
      +
      +// We have to close these tags to support XHTML (#13200)
      +var wrapMap = {
      +
      +	// Support: IE <=9 only
      +	option: [ 1, "<select multiple='multiple'>", "</select>" ],
      +
      +	// XHTML parsers do not magically insert elements in the
      +	// same way that tag soup parsers do. So we cannot shorten
      +	// this by omitting <tbody> or other required elements.
      +	thead: [ 1, "<table>", "</table>" ],
      +	col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
      +	tr: [ 2, "<table><tbody>", "</tbody></table>" ],
      +	td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
      +
      +	_default: [ 0, "", "" ]
      +};
      +
      +// Support: IE <=9 only
      +wrapMap.optgroup = wrapMap.option;
      +
      +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
      +wrapMap.th = wrapMap.td;
      +
      +
      +function getAll( context, tag ) {
      +
      +	// Support: IE <=9 - 11 only
      +	// Use typeof to avoid zero-argument method invocation on host objects (#15151)
      +	var ret;
      +
      +	if ( typeof context.getElementsByTagName !== "undefined" ) {
      +		ret = context.getElementsByTagName( tag || "*" );
      +
      +	} else if ( typeof context.querySelectorAll !== "undefined" ) {
      +		ret = context.querySelectorAll( tag || "*" );
      +
      +	} else {
      +		ret = [];
      +	}
      +
      +	if ( tag === undefined || tag && nodeName( context, tag ) ) {
      +		return jQuery.merge( [ context ], ret );
      +	}
      +
      +	return ret;
      +}
      +
      +
      +// Mark scripts as having already been evaluated
      +function setGlobalEval( elems, refElements ) {
      +	var i = 0,
      +		l = elems.length;
      +
      +	for ( ; i < l; i++ ) {
      +		dataPriv.set(
      +			elems[ i ],
      +			"globalEval",
      +			!refElements || dataPriv.get( refElements[ i ], "globalEval" )
      +		);
      +	}
      +}
      +
      +
      +var rhtml = /<|&#?\w+;/;
      +
      +function buildFragment( elems, context, scripts, selection, ignored ) {
      +	var elem, tmp, tag, wrap, contains, j,
      +		fragment = context.createDocumentFragment(),
      +		nodes = [],
      +		i = 0,
      +		l = elems.length;
      +
      +	for ( ; i < l; i++ ) {
      +		elem = elems[ i ];
      +
      +		if ( elem || elem === 0 ) {
      +
      +			// Add nodes directly
      +			if ( toType( elem ) === "object" ) {
      +
      +				// Support: Android <=4.0 only, PhantomJS 1 only
      +				// push.apply(_, arraylike) throws on ancient WebKit
      +				jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
      +
      +			// Convert non-html into a text node
      +			} else if ( !rhtml.test( elem ) ) {
      +				nodes.push( context.createTextNode( elem ) );
      +
      +			// Convert html into DOM nodes
      +			} else {
      +				tmp = tmp || fragment.appendChild( context.createElement( "div" ) );
      +
      +				// Deserialize a standard representation
      +				tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase();
      +				wrap = wrapMap[ tag ] || wrapMap._default;
      +				tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];
      +
      +				// Descend through wrappers to the right content
      +				j = wrap[ 0 ];
      +				while ( j-- ) {
      +					tmp = tmp.lastChild;
      +				}
      +
      +				// Support: Android <=4.0 only, PhantomJS 1 only
      +				// push.apply(_, arraylike) throws on ancient WebKit
      +				jQuery.merge( nodes, tmp.childNodes );
      +
      +				// Remember the top-level container
      +				tmp = fragment.firstChild;
      +
      +				// Ensure the created nodes are orphaned (#12392)
      +				tmp.textContent = "";
      +			}
      +		}
      +	}
      +
      +	// Remove wrapper from fragment
      +	fragment.textContent = "";
      +
      +	i = 0;
      +	while ( ( elem = nodes[ i++ ] ) ) {
      +
      +		// Skip elements already in the context collection (trac-4087)
      +		if ( selection && jQuery.inArray( elem, selection ) > -1 ) {
      +			if ( ignored ) {
      +				ignored.push( elem );
      +			}
      +			continue;
      +		}
      +
      +		contains = jQuery.contains( elem.ownerDocument, elem );
      +
      +		// Append to fragment
      +		tmp = getAll( fragment.appendChild( elem ), "script" );
      +
      +		// Preserve script evaluation history
      +		if ( contains ) {
      +			setGlobalEval( tmp );
      +		}
      +
      +		// Capture executables
      +		if ( scripts ) {
      +			j = 0;
      +			while ( ( elem = tmp[ j++ ] ) ) {
      +				if ( rscriptType.test( elem.type || "" ) ) {
      +					scripts.push( elem );
      +				}
      +			}
      +		}
      +	}
      +
      +	return fragment;
      +}
      +
      +
      +( function() {
      +	var fragment = document.createDocumentFragment(),
      +		div = fragment.appendChild( document.createElement( "div" ) ),
      +		input = document.createElement( "input" );
      +
      +	// Support: Android 4.0 - 4.3 only
      +	// Check state lost if the name is set (#11217)
      +	// Support: Windows Web Apps (WWA)
      +	// `name` and `type` must use .setAttribute for WWA (#14901)
      +	input.setAttribute( "type", "radio" );
      +	input.setAttribute( "checked", "checked" );
      +	input.setAttribute( "name", "t" );
      +
      +	div.appendChild( input );
      +
      +	// Support: Android <=4.1 only
      +	// Older WebKit doesn't clone checked state correctly in fragments
      +	support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
      +
      +	// Support: IE <=11 only
      +	// Make sure textarea (and checkbox) defaultValue is properly cloned
      +	div.innerHTML = "<textarea>x</textarea>";
      +	support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
      +} )();
      +var documentElement = document.documentElement;
      +
      +
      +
      +var
      +	rkeyEvent = /^key/,
      +	rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,
      +	rtypenamespace = /^([^.]*)(?:\.(.+)|)/;
      +
      +function returnTrue() {
      +	return true;
      +}
      +
      +function returnFalse() {
      +	return false;
      +}
      +
      +// Support: IE <=9 only
      +// See #13393 for more info
      +function safeActiveElement() {
      +	try {
      +		return document.activeElement;
      +	} catch ( err ) { }
      +}
      +
      +function on( elem, types, selector, data, fn, one ) {
      +	var origFn, type;
      +
      +	// Types can be a map of types/handlers
      +	if ( typeof types === "object" ) {
      +
      +		// ( types-Object, selector, data )
      +		if ( typeof selector !== "string" ) {
      +
      +			// ( types-Object, data )
      +			data = data || selector;
      +			selector = undefined;
      +		}
      +		for ( type in types ) {
      +			on( elem, type, selector, data, types[ type ], one );
      +		}
      +		return elem;
      +	}
      +
      +	if ( data == null && fn == null ) {
      +
      +		// ( types, fn )
      +		fn = selector;
      +		data = selector = undefined;
      +	} else if ( fn == null ) {
      +		if ( typeof selector === "string" ) {
      +
      +			// ( types, selector, fn )
      +			fn = data;
      +			data = undefined;
      +		} else {
      +
      +			// ( types, data, fn )
      +			fn = data;
      +			data = selector;
      +			selector = undefined;
      +		}
      +	}
      +	if ( fn === false ) {
      +		fn = returnFalse;
      +	} else if ( !fn ) {
      +		return elem;
      +	}
      +
      +	if ( one === 1 ) {
      +		origFn = fn;
      +		fn = function( event ) {
      +
      +			// Can use an empty set, since event contains the info
      +			jQuery().off( event );
      +			return origFn.apply( this, arguments );
      +		};
      +
      +		// Use same guid so caller can remove using origFn
      +		fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
      +	}
      +	return elem.each( function() {
      +		jQuery.event.add( this, types, fn, data, selector );
      +	} );
      +}
      +
      +/*
      + * Helper functions for managing events -- not part of the public interface.
      + * Props to Dean Edwards' addEvent library for many of the ideas.
      + */
      +jQuery.event = {
      +
      +	global: {},
      +
      +	add: function( elem, types, handler, data, selector ) {
      +
      +		var handleObjIn, eventHandle, tmp,
      +			events, t, handleObj,
      +			special, handlers, type, namespaces, origType,
      +			elemData = dataPriv.get( elem );
      +
      +		// Don't attach events to noData or text/comment nodes (but allow plain objects)
      +		if ( !elemData ) {
      +			return;
      +		}
      +
      +		// Caller can pass in an object of custom data in lieu of the handler
      +		if ( handler.handler ) {
      +			handleObjIn = handler;
      +			handler = handleObjIn.handler;
      +			selector = handleObjIn.selector;
      +		}
      +
      +		// Ensure that invalid selectors throw exceptions at attach time
      +		// Evaluate against documentElement in case elem is a non-element node (e.g., document)
      +		if ( selector ) {
      +			jQuery.find.matchesSelector( documentElement, selector );
      +		}
      +
      +		// Make sure that the handler has a unique ID, used to find/remove it later
      +		if ( !handler.guid ) {
      +			handler.guid = jQuery.guid++;
      +		}
      +
      +		// Init the element's event structure and main handler, if this is the first
      +		if ( !( events = elemData.events ) ) {
      +			events = elemData.events = {};
      +		}
      +		if ( !( eventHandle = elemData.handle ) ) {
      +			eventHandle = elemData.handle = function( e ) {
      +
      +				// Discard the second event of a jQuery.event.trigger() and
      +				// when an event is called after a page has unloaded
      +				return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ?
      +					jQuery.event.dispatch.apply( elem, arguments ) : undefined;
      +			};
      +		}
      +
      +		// Handle multiple events separated by a space
      +		types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
      +		t = types.length;
      +		while ( t-- ) {
      +			tmp = rtypenamespace.exec( types[ t ] ) || [];
      +			type = origType = tmp[ 1 ];
      +			namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
      +
      +			// There *must* be a type, no attaching namespace-only handlers
      +			if ( !type ) {
      +				continue;
      +			}
      +
      +			// If event changes its type, use the special event handlers for the changed type
      +			special = jQuery.event.special[ type ] || {};
      +
      +			// If selector defined, determine special event api type, otherwise given type
      +			type = ( selector ? special.delegateType : special.bindType ) || type;
      +
      +			// Update special based on newly reset type
      +			special = jQuery.event.special[ type ] || {};
      +
      +			// handleObj is passed to all event handlers
      +			handleObj = jQuery.extend( {
      +				type: type,
      +				origType: origType,
      +				data: data,
      +				handler: handler,
      +				guid: handler.guid,
      +				selector: selector,
      +				needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
      +				namespace: namespaces.join( "." )
      +			}, handleObjIn );
      +
      +			// Init the event handler queue if we're the first
      +			if ( !( handlers = events[ type ] ) ) {
      +				handlers = events[ type ] = [];
      +				handlers.delegateCount = 0;
      +
      +				// Only use addEventListener if the special events handler returns false
      +				if ( !special.setup ||
      +					special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
      +
      +					if ( elem.addEventListener ) {
      +						elem.addEventListener( type, eventHandle );
      +					}
      +				}
      +			}
      +
      +			if ( special.add ) {
      +				special.add.call( elem, handleObj );
      +
      +				if ( !handleObj.handler.guid ) {
      +					handleObj.handler.guid = handler.guid;
      +				}
      +			}
      +
      +			// Add to the element's handler list, delegates in front
      +			if ( selector ) {
      +				handlers.splice( handlers.delegateCount++, 0, handleObj );
      +			} else {
      +				handlers.push( handleObj );
      +			}
      +
      +			// Keep track of which events have ever been used, for event optimization
      +			jQuery.event.global[ type ] = true;
      +		}
      +
      +	},
      +
      +	// Detach an event or set of events from an element
      +	remove: function( elem, types, handler, selector, mappedTypes ) {
      +
      +		var j, origCount, tmp,
      +			events, t, handleObj,
      +			special, handlers, type, namespaces, origType,
      +			elemData = dataPriv.hasData( elem ) && dataPriv.get( elem );
      +
      +		if ( !elemData || !( events = elemData.events ) ) {
      +			return;
      +		}
      +
      +		// Once for each type.namespace in types; type may be omitted
      +		types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
      +		t = types.length;
      +		while ( t-- ) {
      +			tmp = rtypenamespace.exec( types[ t ] ) || [];
      +			type = origType = tmp[ 1 ];
      +			namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
      +
      +			// Unbind all events (on this namespace, if provided) for the element
      +			if ( !type ) {
      +				for ( type in events ) {
      +					jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
      +				}
      +				continue;
      +			}
      +
      +			special = jQuery.event.special[ type ] || {};
      +			type = ( selector ? special.delegateType : special.bindType ) || type;
      +			handlers = events[ type ] || [];
      +			tmp = tmp[ 2 ] &&
      +				new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" );
      +
      +			// Remove matching events
      +			origCount = j = handlers.length;
      +			while ( j-- ) {
      +				handleObj = handlers[ j ];
      +
      +				if ( ( mappedTypes || origType === handleObj.origType ) &&
      +					( !handler || handler.guid === handleObj.guid ) &&
      +					( !tmp || tmp.test( handleObj.namespace ) ) &&
      +					( !selector || selector === handleObj.selector ||
      +						selector === "**" && handleObj.selector ) ) {
      +					handlers.splice( j, 1 );
      +
      +					if ( handleObj.selector ) {
      +						handlers.delegateCount--;
      +					}
      +					if ( special.remove ) {
      +						special.remove.call( elem, handleObj );
      +					}
      +				}
      +			}
      +
      +			// Remove generic event handler if we removed something and no more handlers exist
      +			// (avoids potential for endless recursion during removal of special event handlers)
      +			if ( origCount && !handlers.length ) {
      +				if ( !special.teardown ||
      +					special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
      +
      +					jQuery.removeEvent( elem, type, elemData.handle );
      +				}
      +
      +				delete events[ type ];
      +			}
      +		}
      +
      +		// Remove data and the expando if it's no longer used
      +		if ( jQuery.isEmptyObject( events ) ) {
      +			dataPriv.remove( elem, "handle events" );
      +		}
      +	},
      +
      +	dispatch: function( nativeEvent ) {
      +
      +		// Make a writable jQuery.Event from the native event object
      +		var event = jQuery.event.fix( nativeEvent );
      +
      +		var i, j, ret, matched, handleObj, handlerQueue,
      +			args = new Array( arguments.length ),
      +			handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [],
      +			special = jQuery.event.special[ event.type ] || {};
      +
      +		// Use the fix-ed jQuery.Event rather than the (read-only) native event
      +		args[ 0 ] = event;
      +
      +		for ( i = 1; i < arguments.length; i++ ) {
      +			args[ i ] = arguments[ i ];
      +		}
      +
      +		event.delegateTarget = this;
      +
      +		// Call the preDispatch hook for the mapped type, and let it bail if desired
      +		if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
      +			return;
      +		}
      +
      +		// Determine handlers
      +		handlerQueue = jQuery.event.handlers.call( this, event, handlers );
      +
      +		// Run delegates first; they may want to stop propagation beneath us
      +		i = 0;
      +		while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {
      +			event.currentTarget = matched.elem;
      +
      +			j = 0;
      +			while ( ( handleObj = matched.handlers[ j++ ] ) &&
      +				!event.isImmediatePropagationStopped() ) {
      +
      +				// Triggered event must either 1) have no namespace, or 2) have namespace(s)
      +				// a subset or equal to those in the bound event (both can have no namespace).
      +				if ( !event.rnamespace || event.rnamespace.test( handleObj.namespace ) ) {
      +
      +					event.handleObj = handleObj;
      +					event.data = handleObj.data;
      +
      +					ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||
      +						handleObj.handler ).apply( matched.elem, args );
      +
      +					if ( ret !== undefined ) {
      +						if ( ( event.result = ret ) === false ) {
      +							event.preventDefault();
      +							event.stopPropagation();
      +						}
      +					}
      +				}
      +			}
      +		}
      +
      +		// Call the postDispatch hook for the mapped type
      +		if ( special.postDispatch ) {
      +			special.postDispatch.call( this, event );
      +		}
      +
      +		return event.result;
      +	},
      +
      +	handlers: function( event, handlers ) {
      +		var i, handleObj, sel, matchedHandlers, matchedSelectors,
      +			handlerQueue = [],
      +			delegateCount = handlers.delegateCount,
      +			cur = event.target;
      +
      +		// Find delegate handlers
      +		if ( delegateCount &&
      +
      +			// Support: IE <=9
      +			// Black-hole SVG <use> instance trees (trac-13180)
      +			cur.nodeType &&
      +
      +			// Support: Firefox <=42
      +			// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)
      +			// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click
      +			// Support: IE 11 only
      +			// ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343)
      +			!( event.type === "click" && event.button >= 1 ) ) {
      +
      +			for ( ; cur !== this; cur = cur.parentNode || this ) {
      +
      +				// Don't check non-elements (#13208)
      +				// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
      +				if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) {
      +					matchedHandlers = [];
      +					matchedSelectors = {};
      +					for ( i = 0; i < delegateCount; i++ ) {
      +						handleObj = handlers[ i ];
      +
      +						// Don't conflict with Object.prototype properties (#13203)
      +						sel = handleObj.selector + " ";
      +
      +						if ( matchedSelectors[ sel ] === undefined ) {
      +							matchedSelectors[ sel ] = handleObj.needsContext ?
      +								jQuery( sel, this ).index( cur ) > -1 :
      +								jQuery.find( sel, this, null, [ cur ] ).length;
      +						}
      +						if ( matchedSelectors[ sel ] ) {
      +							matchedHandlers.push( handleObj );
      +						}
      +					}
      +					if ( matchedHandlers.length ) {
      +						handlerQueue.push( { elem: cur, handlers: matchedHandlers } );
      +					}
      +				}
      +			}
      +		}
      +
      +		// Add the remaining (directly-bound) handlers
      +		cur = this;
      +		if ( delegateCount < handlers.length ) {
      +			handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );
      +		}
      +
      +		return handlerQueue;
      +	},
      +
      +	addProp: function( name, hook ) {
      +		Object.defineProperty( jQuery.Event.prototype, name, {
      +			enumerable: true,
      +			configurable: true,
      +
      +			get: isFunction( hook ) ?
      +				function() {
      +					if ( this.originalEvent ) {
      +							return hook( this.originalEvent );
      +					}
      +				} :
      +				function() {
      +					if ( this.originalEvent ) {
      +							return this.originalEvent[ name ];
      +					}
      +				},
      +
      +			set: function( value ) {
      +				Object.defineProperty( this, name, {
      +					enumerable: true,
      +					configurable: true,
      +					writable: true,
      +					value: value
      +				} );
      +			}
      +		} );
      +	},
      +
      +	fix: function( originalEvent ) {
      +		return originalEvent[ jQuery.expando ] ?
      +			originalEvent :
      +			new jQuery.Event( originalEvent );
      +	},
      +
      +	special: {
      +		load: {
      +
      +			// Prevent triggered image.load events from bubbling to window.load
      +			noBubble: true
      +		},
      +		focus: {
      +
      +			// Fire native event if possible so blur/focus sequence is correct
      +			trigger: function() {
      +				if ( this !== safeActiveElement() && this.focus ) {
      +					this.focus();
      +					return false;
      +				}
      +			},
      +			delegateType: "focusin"
      +		},
      +		blur: {
      +			trigger: function() {
      +				if ( this === safeActiveElement() && this.blur ) {
      +					this.blur();
      +					return false;
      +				}
      +			},
      +			delegateType: "focusout"
      +		},
      +		click: {
      +
      +			// For checkbox, fire native event so checked state will be right
      +			trigger: function() {
      +				if ( this.type === "checkbox" && this.click && nodeName( this, "input" ) ) {
      +					this.click();
      +					return false;
      +				}
      +			},
      +
      +			// For cross-browser consistency, don't fire native .click() on links
      +			_default: function( event ) {
      +				return nodeName( event.target, "a" );
      +			}
      +		},
      +
      +		beforeunload: {
      +			postDispatch: function( event ) {
      +
      +				// Support: Firefox 20+
      +				// Firefox doesn't alert if the returnValue field is not set.
      +				if ( event.result !== undefined && event.originalEvent ) {
      +					event.originalEvent.returnValue = event.result;
      +				}
      +			}
      +		}
      +	}
      +};
      +
      +jQuery.removeEvent = function( elem, type, handle ) {
      +
      +	// This "if" is needed for plain objects
      +	if ( elem.removeEventListener ) {
      +		elem.removeEventListener( type, handle );
      +	}
      +};
      +
      +jQuery.Event = function( src, props ) {
      +
      +	// Allow instantiation without the 'new' keyword
      +	if ( !( this instanceof jQuery.Event ) ) {
      +		return new jQuery.Event( src, props );
      +	}
      +
      +	// Event object
      +	if ( src && src.type ) {
      +		this.originalEvent = src;
      +		this.type = src.type;
      +
      +		// Events bubbling up the document may have been marked as prevented
      +		// by a handler lower down the tree; reflect the correct value.
      +		this.isDefaultPrevented = src.defaultPrevented ||
      +				src.defaultPrevented === undefined &&
      +
      +				// Support: Android <=2.3 only
      +				src.returnValue === false ?
      +			returnTrue :
      +			returnFalse;
      +
      +		// Create target properties
      +		// Support: Safari <=6 - 7 only
      +		// Target should not be a text node (#504, #13143)
      +		this.target = ( src.target && src.target.nodeType === 3 ) ?
      +			src.target.parentNode :
      +			src.target;
      +
      +		this.currentTarget = src.currentTarget;
      +		this.relatedTarget = src.relatedTarget;
      +
      +	// Event type
      +	} else {
      +		this.type = src;
      +	}
      +
      +	// Put explicitly provided properties onto the event object
      +	if ( props ) {
      +		jQuery.extend( this, props );
      +	}
      +
      +	// Create a timestamp if incoming event doesn't have one
      +	this.timeStamp = src && src.timeStamp || Date.now();
      +
      +	// Mark it as fixed
      +	this[ jQuery.expando ] = true;
      +};
      +
      +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
      +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
      +jQuery.Event.prototype = {
      +	constructor: jQuery.Event,
      +	isDefaultPrevented: returnFalse,
      +	isPropagationStopped: returnFalse,
      +	isImmediatePropagationStopped: returnFalse,
      +	isSimulated: false,
      +
      +	preventDefault: function() {
      +		var e = this.originalEvent;
      +
      +		this.isDefaultPrevented = returnTrue;
      +
      +		if ( e && !this.isSimulated ) {
      +			e.preventDefault();
      +		}
      +	},
      +	stopPropagation: function() {
      +		var e = this.originalEvent;
      +
      +		this.isPropagationStopped = returnTrue;
      +
      +		if ( e && !this.isSimulated ) {
      +			e.stopPropagation();
      +		}
      +	},
      +	stopImmediatePropagation: function() {
      +		var e = this.originalEvent;
      +
      +		this.isImmediatePropagationStopped = returnTrue;
      +
      +		if ( e && !this.isSimulated ) {
      +			e.stopImmediatePropagation();
      +		}
      +
      +		this.stopPropagation();
      +	}
      +};
      +
      +// Includes all common event props including KeyEvent and MouseEvent specific props
      +jQuery.each( {
      +	altKey: true,
      +	bubbles: true,
      +	cancelable: true,
      +	changedTouches: true,
      +	ctrlKey: true,
      +	detail: true,
      +	eventPhase: true,
      +	metaKey: true,
      +	pageX: true,
      +	pageY: true,
      +	shiftKey: true,
      +	view: true,
      +	"char": true,
      +	charCode: true,
      +	key: true,
      +	keyCode: true,
      +	button: true,
      +	buttons: true,
      +	clientX: true,
      +	clientY: true,
      +	offsetX: true,
      +	offsetY: true,
      +	pointerId: true,
      +	pointerType: true,
      +	screenX: true,
      +	screenY: true,
      +	targetTouches: true,
      +	toElement: true,
      +	touches: true,
      +
      +	which: function( event ) {
      +		var button = event.button;
      +
      +		// Add which for key events
      +		if ( event.which == null && rkeyEvent.test( event.type ) ) {
      +			return event.charCode != null ? event.charCode : event.keyCode;
      +		}
      +
      +		// Add which for click: 1 === left; 2 === middle; 3 === right
      +		if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) {
      +			if ( button & 1 ) {
      +				return 1;
      +			}
      +
      +			if ( button & 2 ) {
      +				return 3;
      +			}
      +
      +			if ( button & 4 ) {
      +				return 2;
      +			}
      +
      +			return 0;
      +		}
      +
      +		return event.which;
      +	}
      +}, jQuery.event.addProp );
      +
      +// Create mouseenter/leave events using mouseover/out and event-time checks
      +// so that event delegation works in jQuery.
      +// Do the same for pointerenter/pointerleave and pointerover/pointerout
      +//
      +// Support: Safari 7 only
      +// Safari sends mouseenter too often; see:
      +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258
      +// for the description of the bug (it existed in older Chrome versions as well).
      +jQuery.each( {
      +	mouseenter: "mouseover",
      +	mouseleave: "mouseout",
      +	pointerenter: "pointerover",
      +	pointerleave: "pointerout"
      +}, function( orig, fix ) {
      +	jQuery.event.special[ orig ] = {
      +		delegateType: fix,
      +		bindType: fix,
      +
      +		handle: function( event ) {
      +			var ret,
      +				target = this,
      +				related = event.relatedTarget,
      +				handleObj = event.handleObj;
      +
      +			// For mouseenter/leave call the handler if related is outside the target.
      +			// NB: No relatedTarget if the mouse left/entered the browser window
      +			if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {
      +				event.type = handleObj.origType;
      +				ret = handleObj.handler.apply( this, arguments );
      +				event.type = fix;
      +			}
      +			return ret;
      +		}
      +	};
      +} );
      +
      +jQuery.fn.extend( {
      +
      +	on: function( types, selector, data, fn ) {
      +		return on( this, types, selector, data, fn );
      +	},
      +	one: function( types, selector, data, fn ) {
      +		return on( this, types, selector, data, fn, 1 );
      +	},
      +	off: function( types, selector, fn ) {
      +		var handleObj, type;
      +		if ( types && types.preventDefault && types.handleObj ) {
      +
      +			// ( event )  dispatched jQuery.Event
      +			handleObj = types.handleObj;
      +			jQuery( types.delegateTarget ).off(
      +				handleObj.namespace ?
      +					handleObj.origType + "." + handleObj.namespace :
      +					handleObj.origType,
      +				handleObj.selector,
      +				handleObj.handler
      +			);
      +			return this;
      +		}
      +		if ( typeof types === "object" ) {
      +
      +			// ( types-object [, selector] )
      +			for ( type in types ) {
      +				this.off( type, selector, types[ type ] );
      +			}
      +			return this;
      +		}
      +		if ( selector === false || typeof selector === "function" ) {
      +
      +			// ( types [, fn] )
      +			fn = selector;
      +			selector = undefined;
      +		}
      +		if ( fn === false ) {
      +			fn = returnFalse;
      +		}
      +		return this.each( function() {
      +			jQuery.event.remove( this, types, fn, selector );
      +		} );
      +	}
      +} );
      +
      +
      +var
      +
      +	/* eslint-disable max-len */
      +
      +	// See https://github.com/eslint/eslint/issues/3229
      +	rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,
      +
      +	/* eslint-enable */
      +
      +	// Support: IE <=10 - 11, Edge 12 - 13 only
      +	// In IE/Edge using regex groups here causes severe slowdowns.
      +	// See https://connect.microsoft.com/IE/feedback/details/1736512/
      +	rnoInnerhtml = /<script|<style|<link/i,
      +
      +	// checked="checked" or checked
      +	rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
      +	rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;
      +
      +// Prefer a tbody over its parent table for containing new rows
      +function manipulationTarget( elem, content ) {
      +	if ( nodeName( elem, "table" ) &&
      +		nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) {
      +
      +		return jQuery( elem ).children( "tbody" )[ 0 ] || elem;
      +	}
      +
      +	return elem;
      +}
      +
      +// Replace/restore the type attribute of script elements for safe DOM manipulation
      +function disableScript( elem ) {
      +	elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type;
      +	return elem;
      +}
      +function restoreScript( elem ) {
      +	if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) {
      +		elem.type = elem.type.slice( 5 );
      +	} else {
      +		elem.removeAttribute( "type" );
      +	}
      +
      +	return elem;
      +}
      +
      +function cloneCopyEvent( src, dest ) {
      +	var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;
      +
      +	if ( dest.nodeType !== 1 ) {
      +		return;
      +	}
      +
      +	// 1. Copy private data: events, handlers, etc.
      +	if ( dataPriv.hasData( src ) ) {
      +		pdataOld = dataPriv.access( src );
      +		pdataCur = dataPriv.set( dest, pdataOld );
      +		events = pdataOld.events;
      +
      +		if ( events ) {
      +			delete pdataCur.handle;
      +			pdataCur.events = {};
      +
      +			for ( type in events ) {
      +				for ( i = 0, l = events[ type ].length; i < l; i++ ) {
      +					jQuery.event.add( dest, type, events[ type ][ i ] );
      +				}
      +			}
      +		}
      +	}
      +
      +	// 2. Copy user data
      +	if ( dataUser.hasData( src ) ) {
      +		udataOld = dataUser.access( src );
      +		udataCur = jQuery.extend( {}, udataOld );
      +
      +		dataUser.set( dest, udataCur );
      +	}
      +}
      +
      +// Fix IE bugs, see support tests
      +function fixInput( src, dest ) {
      +	var nodeName = dest.nodeName.toLowerCase();
      +
      +	// Fails to persist the checked state of a cloned checkbox or radio button.
      +	if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
      +		dest.checked = src.checked;
      +
      +	// Fails to return the selected option to the default selected state when cloning options
      +	} else if ( nodeName === "input" || nodeName === "textarea" ) {
      +		dest.defaultValue = src.defaultValue;
      +	}
      +}
      +
      +function domManip( collection, args, callback, ignored ) {
      +
      +	// Flatten any nested arrays
      +	args = concat.apply( [], args );
      +
      +	var fragment, first, scripts, hasScripts, node, doc,
      +		i = 0,
      +		l = collection.length,
      +		iNoClone = l - 1,
      +		value = args[ 0 ],
      +		valueIsFunction = isFunction( value );
      +
      +	// We can't cloneNode fragments that contain checked, in WebKit
      +	if ( valueIsFunction ||
      +			( l > 1 && typeof value === "string" &&
      +				!support.checkClone && rchecked.test( value ) ) ) {
      +		return collection.each( function( index ) {
      +			var self = collection.eq( index );
      +			if ( valueIsFunction ) {
      +				args[ 0 ] = value.call( this, index, self.html() );
      +			}
      +			domManip( self, args, callback, ignored );
      +		} );
      +	}
      +
      +	if ( l ) {
      +		fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );
      +		first = fragment.firstChild;
      +
      +		if ( fragment.childNodes.length === 1 ) {
      +			fragment = first;
      +		}
      +
      +		// Require either new content or an interest in ignored elements to invoke the callback
      +		if ( first || ignored ) {
      +			scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
      +			hasScripts = scripts.length;
      +
      +			// Use the original fragment for the last item
      +			// instead of the first because it can end up
      +			// being emptied incorrectly in certain situations (#8070).
      +			for ( ; i < l; i++ ) {
      +				node = fragment;
      +
      +				if ( i !== iNoClone ) {
      +					node = jQuery.clone( node, true, true );
      +
      +					// Keep references to cloned scripts for later restoration
      +					if ( hasScripts ) {
      +
      +						// Support: Android <=4.0 only, PhantomJS 1 only
      +						// push.apply(_, arraylike) throws on ancient WebKit
      +						jQuery.merge( scripts, getAll( node, "script" ) );
      +					}
      +				}
      +
      +				callback.call( collection[ i ], node, i );
      +			}
      +
      +			if ( hasScripts ) {
      +				doc = scripts[ scripts.length - 1 ].ownerDocument;
      +
      +				// Reenable scripts
      +				jQuery.map( scripts, restoreScript );
      +
      +				// Evaluate executable scripts on first document insertion
      +				for ( i = 0; i < hasScripts; i++ ) {
      +					node = scripts[ i ];
      +					if ( rscriptType.test( node.type || "" ) &&
      +						!dataPriv.access( node, "globalEval" ) &&
      +						jQuery.contains( doc, node ) ) {
      +
      +						if ( node.src && ( node.type || "" ).toLowerCase()  !== "module" ) {
      +
      +							// Optional AJAX dependency, but won't run scripts if not present
      +							if ( jQuery._evalUrl ) {
      +								jQuery._evalUrl( node.src );
      +							}
      +						} else {
      +							DOMEval( node.textContent.replace( rcleanScript, "" ), doc, node );
      +						}
      +					}
      +				}
      +			}
      +		}
      +	}
      +
      +	return collection;
      +}
      +
      +function remove( elem, selector, keepData ) {
      +	var node,
      +		nodes = selector ? jQuery.filter( selector, elem ) : elem,
      +		i = 0;
      +
      +	for ( ; ( node = nodes[ i ] ) != null; i++ ) {
      +		if ( !keepData && node.nodeType === 1 ) {
      +			jQuery.cleanData( getAll( node ) );
      +		}
      +
      +		if ( node.parentNode ) {
      +			if ( keepData && jQuery.contains( node.ownerDocument, node ) ) {
      +				setGlobalEval( getAll( node, "script" ) );
      +			}
      +			node.parentNode.removeChild( node );
      +		}
      +	}
      +
      +	return elem;
      +}
      +
      +jQuery.extend( {
      +	htmlPrefilter: function( html ) {
      +		return html.replace( rxhtmlTag, "<$1></$2>" );
      +	},
      +
      +	clone: function( elem, dataAndEvents, deepDataAndEvents ) {
      +		var i, l, srcElements, destElements,
      +			clone = elem.cloneNode( true ),
      +			inPage = jQuery.contains( elem.ownerDocument, elem );
      +
      +		// Fix IE cloning issues
      +		if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&
      +				!jQuery.isXMLDoc( elem ) ) {
      +
      +			// We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2
      +			destElements = getAll( clone );
      +			srcElements = getAll( elem );
      +
      +			for ( i = 0, l = srcElements.length; i < l; i++ ) {
      +				fixInput( srcElements[ i ], destElements[ i ] );
      +			}
      +		}
      +
      +		// Copy the events from the original to the clone
      +		if ( dataAndEvents ) {
      +			if ( deepDataAndEvents ) {
      +				srcElements = srcElements || getAll( elem );
      +				destElements = destElements || getAll( clone );
      +
      +				for ( i = 0, l = srcElements.length; i < l; i++ ) {
      +					cloneCopyEvent( srcElements[ i ], destElements[ i ] );
      +				}
      +			} else {
      +				cloneCopyEvent( elem, clone );
      +			}
      +		}
      +
      +		// Preserve script evaluation history
      +		destElements = getAll( clone, "script" );
      +		if ( destElements.length > 0 ) {
      +			setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
      +		}
      +
      +		// Return the cloned set
      +		return clone;
      +	},
      +
      +	cleanData: function( elems ) {
      +		var data, elem, type,
      +			special = jQuery.event.special,
      +			i = 0;
      +
      +		for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {
      +			if ( acceptData( elem ) ) {
      +				if ( ( data = elem[ dataPriv.expando ] ) ) {
      +					if ( data.events ) {
      +						for ( type in data.events ) {
      +							if ( special[ type ] ) {
      +								jQuery.event.remove( elem, type );
      +
      +							// This is a shortcut to avoid jQuery.event.remove's overhead
      +							} else {
      +								jQuery.removeEvent( elem, type, data.handle );
      +							}
      +						}
      +					}
      +
      +					// Support: Chrome <=35 - 45+
      +					// Assign undefined instead of using delete, see Data#remove
      +					elem[ dataPriv.expando ] = undefined;
      +				}
      +				if ( elem[ dataUser.expando ] ) {
      +
      +					// Support: Chrome <=35 - 45+
      +					// Assign undefined instead of using delete, see Data#remove
      +					elem[ dataUser.expando ] = undefined;
      +				}
      +			}
      +		}
      +	}
      +} );
      +
      +jQuery.fn.extend( {
      +	detach: function( selector ) {
      +		return remove( this, selector, true );
      +	},
      +
      +	remove: function( selector ) {
      +		return remove( this, selector );
      +	},
      +
      +	text: function( value ) {
      +		return access( this, function( value ) {
      +			return value === undefined ?
      +				jQuery.text( this ) :
      +				this.empty().each( function() {
      +					if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
      +						this.textContent = value;
      +					}
      +				} );
      +		}, null, value, arguments.length );
      +	},
      +
      +	append: function() {
      +		return domManip( this, arguments, function( elem ) {
      +			if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
      +				var target = manipulationTarget( this, elem );
      +				target.appendChild( elem );
      +			}
      +		} );
      +	},
      +
      +	prepend: function() {
      +		return domManip( this, arguments, function( elem ) {
      +			if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
      +				var target = manipulationTarget( this, elem );
      +				target.insertBefore( elem, target.firstChild );
      +			}
      +		} );
      +	},
      +
      +	before: function() {
      +		return domManip( this, arguments, function( elem ) {
      +			if ( this.parentNode ) {
      +				this.parentNode.insertBefore( elem, this );
      +			}
      +		} );
      +	},
      +
      +	after: function() {
      +		return domManip( this, arguments, function( elem ) {
      +			if ( this.parentNode ) {
      +				this.parentNode.insertBefore( elem, this.nextSibling );
      +			}
      +		} );
      +	},
      +
      +	empty: function() {
      +		var elem,
      +			i = 0;
      +
      +		for ( ; ( elem = this[ i ] ) != null; i++ ) {
      +			if ( elem.nodeType === 1 ) {
      +
      +				// Prevent memory leaks
      +				jQuery.cleanData( getAll( elem, false ) );
      +
      +				// Remove any remaining nodes
      +				elem.textContent = "";
      +			}
      +		}
      +
      +		return this;
      +	},
      +
      +	clone: function( dataAndEvents, deepDataAndEvents ) {
      +		dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
      +		deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
      +
      +		return this.map( function() {
      +			return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
      +		} );
      +	},
      +
      +	html: function( value ) {
      +		return access( this, function( value ) {
      +			var elem = this[ 0 ] || {},
      +				i = 0,
      +				l = this.length;
      +
      +			if ( value === undefined && elem.nodeType === 1 ) {
      +				return elem.innerHTML;
      +			}
      +
      +			// See if we can take a shortcut and just use innerHTML
      +			if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
      +				!wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) {
      +
      +				value = jQuery.htmlPrefilter( value );
      +
      +				try {
      +					for ( ; i < l; i++ ) {
      +						elem = this[ i ] || {};
      +
      +						// Remove element nodes and prevent memory leaks
      +						if ( elem.nodeType === 1 ) {
      +							jQuery.cleanData( getAll( elem, false ) );
      +							elem.innerHTML = value;
      +						}
      +					}
      +
      +					elem = 0;
      +
      +				// If using innerHTML throws an exception, use the fallback method
      +				} catch ( e ) {}
      +			}
      +
      +			if ( elem ) {
      +				this.empty().append( value );
      +			}
      +		}, null, value, arguments.length );
      +	},
      +
      +	replaceWith: function() {
      +		var ignored = [];
      +
      +		// Make the changes, replacing each non-ignored context element with the new content
      +		return domManip( this, arguments, function( elem ) {
      +			var parent = this.parentNode;
      +
      +			if ( jQuery.inArray( this, ignored ) < 0 ) {
      +				jQuery.cleanData( getAll( this ) );
      +				if ( parent ) {
      +					parent.replaceChild( elem, this );
      +				}
      +			}
      +
      +		// Force callback invocation
      +		}, ignored );
      +	}
      +} );
      +
      +jQuery.each( {
      +	appendTo: "append",
      +	prependTo: "prepend",
      +	insertBefore: "before",
      +	insertAfter: "after",
      +	replaceAll: "replaceWith"
      +}, function( name, original ) {
      +	jQuery.fn[ name ] = function( selector ) {
      +		var elems,
      +			ret = [],
      +			insert = jQuery( selector ),
      +			last = insert.length - 1,
      +			i = 0;
      +
      +		for ( ; i <= last; i++ ) {
      +			elems = i === last ? this : this.clone( true );
      +			jQuery( insert[ i ] )[ original ]( elems );
      +
      +			// Support: Android <=4.0 only, PhantomJS 1 only
      +			// .get() because push.apply(_, arraylike) throws on ancient WebKit
      +			push.apply( ret, elems.get() );
      +		}
      +
      +		return this.pushStack( ret );
      +	};
      +} );
      +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
      +
      +var getStyles = function( elem ) {
      +
      +		// Support: IE <=11 only, Firefox <=30 (#15098, #14150)
      +		// IE throws on elements created in popups
      +		// FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
      +		var view = elem.ownerDocument.defaultView;
      +
      +		if ( !view || !view.opener ) {
      +			view = window;
      +		}
      +
      +		return view.getComputedStyle( elem );
      +	};
      +
      +var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" );
      +
      +
      +
      +( function() {
      +
      +	// Executing both pixelPosition & boxSizingReliable tests require only one layout
      +	// so they're executed at the same time to save the second computation.
      +	function computeStyleTests() {
      +
      +		// This is a singleton, we need to execute it only once
      +		if ( !div ) {
      +			return;
      +		}
      +
      +		container.style.cssText = "position:absolute;left:-11111px;width:60px;" +
      +			"margin-top:1px;padding:0;border:0";
      +		div.style.cssText =
      +			"position:relative;display:block;box-sizing:border-box;overflow:scroll;" +
      +			"margin:auto;border:1px;padding:1px;" +
      +			"width:60%;top:1%";
      +		documentElement.appendChild( container ).appendChild( div );
      +
      +		var divStyle = window.getComputedStyle( div );
      +		pixelPositionVal = divStyle.top !== "1%";
      +
      +		// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44
      +		reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;
      +
      +		// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3
      +		// Some styles come back with percentage values, even though they shouldn't
      +		div.style.right = "60%";
      +		pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;
      +
      +		// Support: IE 9 - 11 only
      +		// Detect misreporting of content dimensions for box-sizing:border-box elements
      +		boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;
      +
      +		// Support: IE 9 only
      +		// Detect overflow:scroll screwiness (gh-3699)
      +		div.style.position = "absolute";
      +		scrollboxSizeVal = div.offsetWidth === 36 || "absolute";
      +
      +		documentElement.removeChild( container );
      +
      +		// Nullify the div so it wouldn't be stored in the memory and
      +		// it will also be a sign that checks already performed
      +		div = null;
      +	}
      +
      +	function roundPixelMeasures( measure ) {
      +		return Math.round( parseFloat( measure ) );
      +	}
      +
      +	var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,
      +		reliableMarginLeftVal,
      +		container = document.createElement( "div" ),
      +		div = document.createElement( "div" );
      +
      +	// Finish early in limited (non-browser) environments
      +	if ( !div.style ) {
      +		return;
      +	}
      +
      +	// Support: IE <=9 - 11 only
      +	// Style of cloned element affects source element cloned (#8908)
      +	div.style.backgroundClip = "content-box";
      +	div.cloneNode( true ).style.backgroundClip = "";
      +	support.clearCloneStyle = div.style.backgroundClip === "content-box";
      +
      +	jQuery.extend( support, {
      +		boxSizingReliable: function() {
      +			computeStyleTests();
      +			return boxSizingReliableVal;
      +		},
      +		pixelBoxStyles: function() {
      +			computeStyleTests();
      +			return pixelBoxStylesVal;
      +		},
      +		pixelPosition: function() {
      +			computeStyleTests();
      +			return pixelPositionVal;
      +		},
      +		reliableMarginLeft: function() {
      +			computeStyleTests();
      +			return reliableMarginLeftVal;
      +		},
      +		scrollboxSize: function() {
      +			computeStyleTests();
      +			return scrollboxSizeVal;
      +		}
      +	} );
      +} )();
      +
      +
      +function curCSS( elem, name, computed ) {
      +	var width, minWidth, maxWidth, ret,
      +
      +		// Support: Firefox 51+
      +		// Retrieving style before computed somehow
      +		// fixes an issue with getting wrong values
      +		// on detached elements
      +		style = elem.style;
      +
      +	computed = computed || getStyles( elem );
      +
      +	// getPropertyValue is needed for:
      +	//   .css('filter') (IE 9 only, #12537)
      +	//   .css('--customProperty) (#3144)
      +	if ( computed ) {
      +		ret = computed.getPropertyValue( name ) || computed[ name ];
      +
      +		if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) {
      +			ret = jQuery.style( elem, name );
      +		}
      +
      +		// A tribute to the "awesome hack by Dean Edwards"
      +		// Android Browser returns percentage for some values,
      +		// but width seems to be reliably pixels.
      +		// This is against the CSSOM draft spec:
      +		// https://drafts.csswg.org/cssom/#resolved-values
      +		if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {
      +
      +			// Remember the original values
      +			width = style.width;
      +			minWidth = style.minWidth;
      +			maxWidth = style.maxWidth;
      +
      +			// Put in the new values to get a computed value out
      +			style.minWidth = style.maxWidth = style.width = ret;
      +			ret = computed.width;
      +
      +			// Revert the changed values
      +			style.width = width;
      +			style.minWidth = minWidth;
      +			style.maxWidth = maxWidth;
      +		}
      +	}
      +
      +	return ret !== undefined ?
      +
      +		// Support: IE <=9 - 11 only
      +		// IE returns zIndex value as an integer.
      +		ret + "" :
      +		ret;
      +}
      +
      +
      +function addGetHookIf( conditionFn, hookFn ) {
      +
      +	// Define the hook, we'll check on the first run if it's really needed.
      +	return {
      +		get: function() {
      +			if ( conditionFn() ) {
      +
      +				// Hook not needed (or it's not possible to use it due
      +				// to missing dependency), remove it.
      +				delete this.get;
      +				return;
      +			}
      +
      +			// Hook needed; redefine it so that the support test is not executed again.
      +			return ( this.get = hookFn ).apply( this, arguments );
      +		}
      +	};
      +}
      +
      +
      +var
      +
      +	// Swappable if display is none or starts with table
      +	// except "table", "table-cell", or "table-caption"
      +	// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
      +	rdisplayswap = /^(none|table(?!-c[ea]).+)/,
      +	rcustomProp = /^--/,
      +	cssShow = { position: "absolute", visibility: "hidden", display: "block" },
      +	cssNormalTransform = {
      +		letterSpacing: "0",
      +		fontWeight: "400"
      +	},
      +
      +	cssPrefixes = [ "Webkit", "Moz", "ms" ],
      +	emptyStyle = document.createElement( "div" ).style;
      +
      +// Return a css property mapped to a potentially vendor prefixed property
      +function vendorPropName( name ) {
      +
      +	// Shortcut for names that are not vendor prefixed
      +	if ( name in emptyStyle ) {
      +		return name;
      +	}
      +
      +	// Check for vendor prefixed names
      +	var capName = name[ 0 ].toUpperCase() + name.slice( 1 ),
      +		i = cssPrefixes.length;
      +
      +	while ( i-- ) {
      +		name = cssPrefixes[ i ] + capName;
      +		if ( name in emptyStyle ) {
      +			return name;
      +		}
      +	}
      +}
      +
      +// Return a property mapped along what jQuery.cssProps suggests or to
      +// a vendor prefixed property.
      +function finalPropName( name ) {
      +	var ret = jQuery.cssProps[ name ];
      +	if ( !ret ) {
      +		ret = jQuery.cssProps[ name ] = vendorPropName( name ) || name;
      +	}
      +	return ret;
      +}
      +
      +function setPositiveNumber( elem, value, subtract ) {
      +
      +	// Any relative (+/-) values have already been
      +	// normalized at this point
      +	var matches = rcssNum.exec( value );
      +	return matches ?
      +
      +		// Guard against undefined "subtract", e.g., when used as in cssHooks
      +		Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) :
      +		value;
      +}
      +
      +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {
      +	var i = dimension === "width" ? 1 : 0,
      +		extra = 0,
      +		delta = 0;
      +
      +	// Adjustment may not be necessary
      +	if ( box === ( isBorderBox ? "border" : "content" ) ) {
      +		return 0;
      +	}
      +
      +	for ( ; i < 4; i += 2 ) {
      +
      +		// Both box models exclude margin
      +		if ( box === "margin" ) {
      +			delta += jQuery.css( elem, box + cssExpand[ i ], true, styles );
      +		}
      +
      +		// If we get here with a content-box, we're seeking "padding" or "border" or "margin"
      +		if ( !isBorderBox ) {
      +
      +			// Add padding
      +			delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
      +
      +			// For "border" or "margin", add border
      +			if ( box !== "padding" ) {
      +				delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
      +
      +			// But still keep track of it otherwise
      +			} else {
      +				extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
      +			}
      +
      +		// If we get here with a border-box (content + padding + border), we're seeking "content" or
      +		// "padding" or "margin"
      +		} else {
      +
      +			// For "content", subtract padding
      +			if ( box === "content" ) {
      +				delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
      +			}
      +
      +			// For "content" or "padding", subtract border
      +			if ( box !== "margin" ) {
      +				delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
      +			}
      +		}
      +	}
      +
      +	// Account for positive content-box scroll gutter when requested by providing computedVal
      +	if ( !isBorderBox && computedVal >= 0 ) {
      +
      +		// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border
      +		// Assuming integer scroll gutter, subtract the rest and round down
      +		delta += Math.max( 0, Math.ceil(
      +			elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -
      +			computedVal -
      +			delta -
      +			extra -
      +			0.5
      +		) );
      +	}
      +
      +	return delta;
      +}
      +
      +function getWidthOrHeight( elem, dimension, extra ) {
      +
      +	// Start with computed style
      +	var styles = getStyles( elem ),
      +		val = curCSS( elem, dimension, styles ),
      +		isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
      +		valueIsBorderBox = isBorderBox;
      +
      +	// Support: Firefox <=54
      +	// Return a confounding non-pixel value or feign ignorance, as appropriate.
      +	if ( rnumnonpx.test( val ) ) {
      +		if ( !extra ) {
      +			return val;
      +		}
      +		val = "auto";
      +	}
      +
      +	// Check for style in case a browser which returns unreliable values
      +	// for getComputedStyle silently falls back to the reliable elem.style
      +	valueIsBorderBox = valueIsBorderBox &&
      +		( support.boxSizingReliable() || val === elem.style[ dimension ] );
      +
      +	// Fall back to offsetWidth/offsetHeight when value is "auto"
      +	// This happens for inline elements with no explicit setting (gh-3571)
      +	// Support: Android <=4.1 - 4.3 only
      +	// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)
      +	if ( val === "auto" ||
      +		!parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) {
      +
      +		val = elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ];
      +
      +		// offsetWidth/offsetHeight provide border-box values
      +		valueIsBorderBox = true;
      +	}
      +
      +	// Normalize "" and auto
      +	val = parseFloat( val ) || 0;
      +
      +	// Adjust for the element's box model
      +	return ( val +
      +		boxModelAdjustment(
      +			elem,
      +			dimension,
      +			extra || ( isBorderBox ? "border" : "content" ),
      +			valueIsBorderBox,
      +			styles,
      +
      +			// Provide the current computed size to request scroll gutter calculation (gh-3589)
      +			val
      +		)
      +	) + "px";
      +}
      +
      +jQuery.extend( {
      +
      +	// Add in style property hooks for overriding the default
      +	// behavior of getting and setting a style property
      +	cssHooks: {
      +		opacity: {
      +			get: function( elem, computed ) {
      +				if ( computed ) {
      +
      +					// We should always get a number back from opacity
      +					var ret = curCSS( elem, "opacity" );
      +					return ret === "" ? "1" : ret;
      +				}
      +			}
      +		}
      +	},
      +
      +	// Don't automatically add "px" to these possibly-unitless properties
      +	cssNumber: {
      +		"animationIterationCount": true,
      +		"columnCount": true,
      +		"fillOpacity": true,
      +		"flexGrow": true,
      +		"flexShrink": true,
      +		"fontWeight": true,
      +		"lineHeight": true,
      +		"opacity": true,
      +		"order": true,
      +		"orphans": true,
      +		"widows": true,
      +		"zIndex": true,
      +		"zoom": true
      +	},
      +
      +	// Add in properties whose names you wish to fix before
      +	// setting or getting the value
      +	cssProps: {},
      +
      +	// Get and set the style property on a DOM Node
      +	style: function( elem, name, value, extra ) {
      +
      +		// Don't set styles on text and comment nodes
      +		if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
      +			return;
      +		}
      +
      +		// Make sure that we're working with the right name
      +		var ret, type, hooks,
      +			origName = camelCase( name ),
      +			isCustomProp = rcustomProp.test( name ),
      +			style = elem.style;
      +
      +		// Make sure that we're working with the right name. We don't
      +		// want to query the value if it is a CSS custom property
      +		// since they are user-defined.
      +		if ( !isCustomProp ) {
      +			name = finalPropName( origName );
      +		}
      +
      +		// Gets hook for the prefixed version, then unprefixed version
      +		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
      +
      +		// Check if we're setting a value
      +		if ( value !== undefined ) {
      +			type = typeof value;
      +
      +			// Convert "+=" or "-=" to relative numbers (#7345)
      +			if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {
      +				value = adjustCSS( elem, name, ret );
      +
      +				// Fixes bug #9237
      +				type = "number";
      +			}
      +
      +			// Make sure that null and NaN values aren't set (#7116)
      +			if ( value == null || value !== value ) {
      +				return;
      +			}
      +
      +			// If a number was passed in, add the unit (except for certain CSS properties)
      +			if ( type === "number" ) {
      +				value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" );
      +			}
      +
      +			// background-* props affect original clone's values
      +			if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) {
      +				style[ name ] = "inherit";
      +			}
      +
      +			// If a hook was provided, use that value, otherwise just set the specified value
      +			if ( !hooks || !( "set" in hooks ) ||
      +				( value = hooks.set( elem, value, extra ) ) !== undefined ) {
      +
      +				if ( isCustomProp ) {
      +					style.setProperty( name, value );
      +				} else {
      +					style[ name ] = value;
      +				}
      +			}
      +
      +		} else {
      +
      +			// If a hook was provided get the non-computed value from there
      +			if ( hooks && "get" in hooks &&
      +				( ret = hooks.get( elem, false, extra ) ) !== undefined ) {
      +
      +				return ret;
      +			}
      +
      +			// Otherwise just get the value from the style object
      +			return style[ name ];
      +		}
      +	},
      +
      +	css: function( elem, name, extra, styles ) {
      +		var val, num, hooks,
      +			origName = camelCase( name ),
      +			isCustomProp = rcustomProp.test( name );
      +
      +		// Make sure that we're working with the right name. We don't
      +		// want to modify the value if it is a CSS custom property
      +		// since they are user-defined.
      +		if ( !isCustomProp ) {
      +			name = finalPropName( origName );
      +		}
      +
      +		// Try prefixed name followed by the unprefixed name
      +		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
      +
      +		// If a hook was provided get the computed value from there
      +		if ( hooks && "get" in hooks ) {
      +			val = hooks.get( elem, true, extra );
      +		}
      +
      +		// Otherwise, if a way to get the computed value exists, use that
      +		if ( val === undefined ) {
      +			val = curCSS( elem, name, styles );
      +		}
      +
      +		// Convert "normal" to computed value
      +		if ( val === "normal" && name in cssNormalTransform ) {
      +			val = cssNormalTransform[ name ];
      +		}
      +
      +		// Make numeric if forced or a qualifier was provided and val looks numeric
      +		if ( extra === "" || extra ) {
      +			num = parseFloat( val );
      +			return extra === true || isFinite( num ) ? num || 0 : val;
      +		}
      +
      +		return val;
      +	}
      +} );
      +
      +jQuery.each( [ "height", "width" ], function( i, dimension ) {
      +	jQuery.cssHooks[ dimension ] = {
      +		get: function( elem, computed, extra ) {
      +			if ( computed ) {
      +
      +				// Certain elements can have dimension info if we invisibly show them
      +				// but it must have a current display style that would benefit
      +				return rdisplayswap.test( jQuery.css( elem, "display" ) ) &&
      +
      +					// Support: Safari 8+
      +					// Table columns in Safari have non-zero offsetWidth & zero
      +					// getBoundingClientRect().width unless display is changed.
      +					// Support: IE <=11 only
      +					// Running getBoundingClientRect on a disconnected node
      +					// in IE throws an error.
      +					( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?
      +						swap( elem, cssShow, function() {
      +							return getWidthOrHeight( elem, dimension, extra );
      +						} ) :
      +						getWidthOrHeight( elem, dimension, extra );
      +			}
      +		},
      +
      +		set: function( elem, value, extra ) {
      +			var matches,
      +				styles = getStyles( elem ),
      +				isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
      +				subtract = extra && boxModelAdjustment(
      +					elem,
      +					dimension,
      +					extra,
      +					isBorderBox,
      +					styles
      +				);
      +
      +			// Account for unreliable border-box dimensions by comparing offset* to computed and
      +			// faking a content-box to get border and padding (gh-3699)
      +			if ( isBorderBox && support.scrollboxSize() === styles.position ) {
      +				subtract -= Math.ceil(
      +					elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -
      +					parseFloat( styles[ dimension ] ) -
      +					boxModelAdjustment( elem, dimension, "border", false, styles ) -
      +					0.5
      +				);
      +			}
      +
      +			// Convert to pixels if value adjustment is needed
      +			if ( subtract && ( matches = rcssNum.exec( value ) ) &&
      +				( matches[ 3 ] || "px" ) !== "px" ) {
      +
      +				elem.style[ dimension ] = value;
      +				value = jQuery.css( elem, dimension );
      +			}
      +
      +			return setPositiveNumber( elem, value, subtract );
      +		}
      +	};
      +} );
      +
      +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,
      +	function( elem, computed ) {
      +		if ( computed ) {
      +			return ( parseFloat( curCSS( elem, "marginLeft" ) ) ||
      +				elem.getBoundingClientRect().left -
      +					swap( elem, { marginLeft: 0 }, function() {
      +						return elem.getBoundingClientRect().left;
      +					} )
      +				) + "px";
      +		}
      +	}
      +);
      +
      +// These hooks are used by animate to expand properties
      +jQuery.each( {
      +	margin: "",
      +	padding: "",
      +	border: "Width"
      +}, function( prefix, suffix ) {
      +	jQuery.cssHooks[ prefix + suffix ] = {
      +		expand: function( value ) {
      +			var i = 0,
      +				expanded = {},
      +
      +				// Assumes a single number if not a string
      +				parts = typeof value === "string" ? value.split( " " ) : [ value ];
      +
      +			for ( ; i < 4; i++ ) {
      +				expanded[ prefix + cssExpand[ i ] + suffix ] =
      +					parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
      +			}
      +
      +			return expanded;
      +		}
      +	};
      +
      +	if ( prefix !== "margin" ) {
      +		jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
      +	}
      +} );
      +
      +jQuery.fn.extend( {
      +	css: function( name, value ) {
      +		return access( this, function( elem, name, value ) {
      +			var styles, len,
      +				map = {},
      +				i = 0;
      +
      +			if ( Array.isArray( name ) ) {
      +				styles = getStyles( elem );
      +				len = name.length;
      +
      +				for ( ; i < len; i++ ) {
      +					map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );
      +				}
      +
      +				return map;
      +			}
      +
      +			return value !== undefined ?
      +				jQuery.style( elem, name, value ) :
      +				jQuery.css( elem, name );
      +		}, name, value, arguments.length > 1 );
      +	}
      +} );
      +
      +
      +function Tween( elem, options, prop, end, easing ) {
      +	return new Tween.prototype.init( elem, options, prop, end, easing );
      +}
      +jQuery.Tween = Tween;
      +
      +Tween.prototype = {
      +	constructor: Tween,
      +	init: function( elem, options, prop, end, easing, unit ) {
      +		this.elem = elem;
      +		this.prop = prop;
      +		this.easing = easing || jQuery.easing._default;
      +		this.options = options;
      +		this.start = this.now = this.cur();
      +		this.end = end;
      +		this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
      +	},
      +	cur: function() {
      +		var hooks = Tween.propHooks[ this.prop ];
      +
      +		return hooks && hooks.get ?
      +			hooks.get( this ) :
      +			Tween.propHooks._default.get( this );
      +	},
      +	run: function( percent ) {
      +		var eased,
      +			hooks = Tween.propHooks[ this.prop ];
      +
      +		if ( this.options.duration ) {
      +			this.pos = eased = jQuery.easing[ this.easing ](
      +				percent, this.options.duration * percent, 0, 1, this.options.duration
      +			);
      +		} else {
      +			this.pos = eased = percent;
      +		}
      +		this.now = ( this.end - this.start ) * eased + this.start;
      +
      +		if ( this.options.step ) {
      +			this.options.step.call( this.elem, this.now, this );
      +		}
      +
      +		if ( hooks && hooks.set ) {
      +			hooks.set( this );
      +		} else {
      +			Tween.propHooks._default.set( this );
      +		}
      +		return this;
      +	}
      +};
      +
      +Tween.prototype.init.prototype = Tween.prototype;
      +
      +Tween.propHooks = {
      +	_default: {
      +		get: function( tween ) {
      +			var result;
      +
      +			// Use a property on the element directly when it is not a DOM element,
      +			// or when there is no matching style property that exists.
      +			if ( tween.elem.nodeType !== 1 ||
      +				tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {
      +				return tween.elem[ tween.prop ];
      +			}
      +
      +			// Passing an empty string as a 3rd parameter to .css will automatically
      +			// attempt a parseFloat and fallback to a string if the parse fails.
      +			// Simple values such as "10px" are parsed to Float;
      +			// complex values such as "rotate(1rad)" are returned as-is.
      +			result = jQuery.css( tween.elem, tween.prop, "" );
      +
      +			// Empty strings, null, undefined and "auto" are converted to 0.
      +			return !result || result === "auto" ? 0 : result;
      +		},
      +		set: function( tween ) {
      +
      +			// Use step hook for back compat.
      +			// Use cssHook if its there.
      +			// Use .style if available and use plain properties where available.
      +			if ( jQuery.fx.step[ tween.prop ] ) {
      +				jQuery.fx.step[ tween.prop ]( tween );
      +			} else if ( tween.elem.nodeType === 1 &&
      +				( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null ||
      +					jQuery.cssHooks[ tween.prop ] ) ) {
      +				jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
      +			} else {
      +				tween.elem[ tween.prop ] = tween.now;
      +			}
      +		}
      +	}
      +};
      +
      +// Support: IE <=9 only
      +// Panic based approach to setting things on disconnected nodes
      +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
      +	set: function( tween ) {
      +		if ( tween.elem.nodeType && tween.elem.parentNode ) {
      +			tween.elem[ tween.prop ] = tween.now;
      +		}
      +	}
      +};
      +
      +jQuery.easing = {
      +	linear: function( p ) {
      +		return p;
      +	},
      +	swing: function( p ) {
      +		return 0.5 - Math.cos( p * Math.PI ) / 2;
      +	},
      +	_default: "swing"
      +};
      +
      +jQuery.fx = Tween.prototype.init;
      +
      +// Back compat <1.8 extension point
      +jQuery.fx.step = {};
      +
      +
      +
      +
      +var
      +	fxNow, inProgress,
      +	rfxtypes = /^(?:toggle|show|hide)$/,
      +	rrun = /queueHooks$/;
      +
      +function schedule() {
      +	if ( inProgress ) {
      +		if ( document.hidden === false && window.requestAnimationFrame ) {
      +			window.requestAnimationFrame( schedule );
      +		} else {
      +			window.setTimeout( schedule, jQuery.fx.interval );
      +		}
      +
      +		jQuery.fx.tick();
      +	}
      +}
      +
      +// Animations created synchronously will run synchronously
      +function createFxNow() {
      +	window.setTimeout( function() {
      +		fxNow = undefined;
      +	} );
      +	return ( fxNow = Date.now() );
      +}
      +
      +// Generate parameters to create a standard animation
      +function genFx( type, includeWidth ) {
      +	var which,
      +		i = 0,
      +		attrs = { height: type };
      +
      +	// If we include width, step value is 1 to do all cssExpand values,
      +	// otherwise step value is 2 to skip over Left and Right
      +	includeWidth = includeWidth ? 1 : 0;
      +	for ( ; i < 4; i += 2 - includeWidth ) {
      +		which = cssExpand[ i ];
      +		attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
      +	}
      +
      +	if ( includeWidth ) {
      +		attrs.opacity = attrs.width = type;
      +	}
      +
      +	return attrs;
      +}
      +
      +function createTween( value, prop, animation ) {
      +	var tween,
      +		collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ),
      +		index = 0,
      +		length = collection.length;
      +	for ( ; index < length; index++ ) {
      +		if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {
      +
      +			// We're done with this property
      +			return tween;
      +		}
      +	}
      +}
      +
      +function defaultPrefilter( elem, props, opts ) {
      +	var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,
      +		isBox = "width" in props || "height" in props,
      +		anim = this,
      +		orig = {},
      +		style = elem.style,
      +		hidden = elem.nodeType && isHiddenWithinTree( elem ),
      +		dataShow = dataPriv.get( elem, "fxshow" );
      +
      +	// Queue-skipping animations hijack the fx hooks
      +	if ( !opts.queue ) {
      +		hooks = jQuery._queueHooks( elem, "fx" );
      +		if ( hooks.unqueued == null ) {
      +			hooks.unqueued = 0;
      +			oldfire = hooks.empty.fire;
      +			hooks.empty.fire = function() {
      +				if ( !hooks.unqueued ) {
      +					oldfire();
      +				}
      +			};
      +		}
      +		hooks.unqueued++;
      +
      +		anim.always( function() {
      +
      +			// Ensure the complete handler is called before this completes
      +			anim.always( function() {
      +				hooks.unqueued--;
      +				if ( !jQuery.queue( elem, "fx" ).length ) {
      +					hooks.empty.fire();
      +				}
      +			} );
      +		} );
      +	}
      +
      +	// Detect show/hide animations
      +	for ( prop in props ) {
      +		value = props[ prop ];
      +		if ( rfxtypes.test( value ) ) {
      +			delete props[ prop ];
      +			toggle = toggle || value === "toggle";
      +			if ( value === ( hidden ? "hide" : "show" ) ) {
      +
      +				// Pretend to be hidden if this is a "show" and
      +				// there is still data from a stopped show/hide
      +				if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
      +					hidden = true;
      +
      +				// Ignore all other no-op show/hide data
      +				} else {
      +					continue;
      +				}
      +			}
      +			orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
      +		}
      +	}
      +
      +	// Bail out if this is a no-op like .hide().hide()
      +	propTween = !jQuery.isEmptyObject( props );
      +	if ( !propTween && jQuery.isEmptyObject( orig ) ) {
      +		return;
      +	}
      +
      +	// Restrict "overflow" and "display" styles during box animations
      +	if ( isBox && elem.nodeType === 1 ) {
      +
      +		// Support: IE <=9 - 11, Edge 12 - 15
      +		// Record all 3 overflow attributes because IE does not infer the shorthand
      +		// from identically-valued overflowX and overflowY and Edge just mirrors
      +		// the overflowX value there.
      +		opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
      +
      +		// Identify a display type, preferring old show/hide data over the CSS cascade
      +		restoreDisplay = dataShow && dataShow.display;
      +		if ( restoreDisplay == null ) {
      +			restoreDisplay = dataPriv.get( elem, "display" );
      +		}
      +		display = jQuery.css( elem, "display" );
      +		if ( display === "none" ) {
      +			if ( restoreDisplay ) {
      +				display = restoreDisplay;
      +			} else {
      +
      +				// Get nonempty value(s) by temporarily forcing visibility
      +				showHide( [ elem ], true );
      +				restoreDisplay = elem.style.display || restoreDisplay;
      +				display = jQuery.css( elem, "display" );
      +				showHide( [ elem ] );
      +			}
      +		}
      +
      +		// Animate inline elements as inline-block
      +		if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) {
      +			if ( jQuery.css( elem, "float" ) === "none" ) {
      +
      +				// Restore the original display value at the end of pure show/hide animations
      +				if ( !propTween ) {
      +					anim.done( function() {
      +						style.display = restoreDisplay;
      +					} );
      +					if ( restoreDisplay == null ) {
      +						display = style.display;
      +						restoreDisplay = display === "none" ? "" : display;
      +					}
      +				}
      +				style.display = "inline-block";
      +			}
      +		}
      +	}
      +
      +	if ( opts.overflow ) {
      +		style.overflow = "hidden";
      +		anim.always( function() {
      +			style.overflow = opts.overflow[ 0 ];
      +			style.overflowX = opts.overflow[ 1 ];
      +			style.overflowY = opts.overflow[ 2 ];
      +		} );
      +	}
      +
      +	// Implement show/hide animations
      +	propTween = false;
      +	for ( prop in orig ) {
      +
      +		// General show/hide setup for this element animation
      +		if ( !propTween ) {
      +			if ( dataShow ) {
      +				if ( "hidden" in dataShow ) {
      +					hidden = dataShow.hidden;
      +				}
      +			} else {
      +				dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } );
      +			}
      +
      +			// Store hidden/visible for toggle so `.stop().toggle()` "reverses"
      +			if ( toggle ) {
      +				dataShow.hidden = !hidden;
      +			}
      +
      +			// Show elements before animating them
      +			if ( hidden ) {
      +				showHide( [ elem ], true );
      +			}
      +
      +			/* eslint-disable no-loop-func */
      +
      +			anim.done( function() {
      +
      +			/* eslint-enable no-loop-func */
      +
      +				// The final step of a "hide" animation is actually hiding the element
      +				if ( !hidden ) {
      +					showHide( [ elem ] );
      +				}
      +				dataPriv.remove( elem, "fxshow" );
      +				for ( prop in orig ) {
      +					jQuery.style( elem, prop, orig[ prop ] );
      +				}
      +			} );
      +		}
      +
      +		// Per-property setup
      +		propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
      +		if ( !( prop in dataShow ) ) {
      +			dataShow[ prop ] = propTween.start;
      +			if ( hidden ) {
      +				propTween.end = propTween.start;
      +				propTween.start = 0;
      +			}
      +		}
      +	}
      +}
      +
      +function propFilter( props, specialEasing ) {
      +	var index, name, easing, value, hooks;
      +
      +	// camelCase, specialEasing and expand cssHook pass
      +	for ( index in props ) {
      +		name = camelCase( index );
      +		easing = specialEasing[ name ];
      +		value = props[ index ];
      +		if ( Array.isArray( value ) ) {
      +			easing = value[ 1 ];
      +			value = props[ index ] = value[ 0 ];
      +		}
      +
      +		if ( index !== name ) {
      +			props[ name ] = value;
      +			delete props[ index ];
      +		}
      +
      +		hooks = jQuery.cssHooks[ name ];
      +		if ( hooks && "expand" in hooks ) {
      +			value = hooks.expand( value );
      +			delete props[ name ];
      +
      +			// Not quite $.extend, this won't overwrite existing keys.
      +			// Reusing 'index' because we have the correct "name"
      +			for ( index in value ) {
      +				if ( !( index in props ) ) {
      +					props[ index ] = value[ index ];
      +					specialEasing[ index ] = easing;
      +				}
      +			}
      +		} else {
      +			specialEasing[ name ] = easing;
      +		}
      +	}
      +}
      +
      +function Animation( elem, properties, options ) {
      +	var result,
      +		stopped,
      +		index = 0,
      +		length = Animation.prefilters.length,
      +		deferred = jQuery.Deferred().always( function() {
      +
      +			// Don't match elem in the :animated selector
      +			delete tick.elem;
      +		} ),
      +		tick = function() {
      +			if ( stopped ) {
      +				return false;
      +			}
      +			var currentTime = fxNow || createFxNow(),
      +				remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
      +
      +				// Support: Android 2.3 only
      +				// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)
      +				temp = remaining / animation.duration || 0,
      +				percent = 1 - temp,
      +				index = 0,
      +				length = animation.tweens.length;
      +
      +			for ( ; index < length; index++ ) {
      +				animation.tweens[ index ].run( percent );
      +			}
      +
      +			deferred.notifyWith( elem, [ animation, percent, remaining ] );
      +
      +			// If there's more to do, yield
      +			if ( percent < 1 && length ) {
      +				return remaining;
      +			}
      +
      +			// If this was an empty animation, synthesize a final progress notification
      +			if ( !length ) {
      +				deferred.notifyWith( elem, [ animation, 1, 0 ] );
      +			}
      +
      +			// Resolve the animation and report its conclusion
      +			deferred.resolveWith( elem, [ animation ] );
      +			return false;
      +		},
      +		animation = deferred.promise( {
      +			elem: elem,
      +			props: jQuery.extend( {}, properties ),
      +			opts: jQuery.extend( true, {
      +				specialEasing: {},
      +				easing: jQuery.easing._default
      +			}, options ),
      +			originalProperties: properties,
      +			originalOptions: options,
      +			startTime: fxNow || createFxNow(),
      +			duration: options.duration,
      +			tweens: [],
      +			createTween: function( prop, end ) {
      +				var tween = jQuery.Tween( elem, animation.opts, prop, end,
      +						animation.opts.specialEasing[ prop ] || animation.opts.easing );
      +				animation.tweens.push( tween );
      +				return tween;
      +			},
      +			stop: function( gotoEnd ) {
      +				var index = 0,
      +
      +					// If we are going to the end, we want to run all the tweens
      +					// otherwise we skip this part
      +					length = gotoEnd ? animation.tweens.length : 0;
      +				if ( stopped ) {
      +					return this;
      +				}
      +				stopped = true;
      +				for ( ; index < length; index++ ) {
      +					animation.tweens[ index ].run( 1 );
      +				}
      +
      +				// Resolve when we played the last frame; otherwise, reject
      +				if ( gotoEnd ) {
      +					deferred.notifyWith( elem, [ animation, 1, 0 ] );
      +					deferred.resolveWith( elem, [ animation, gotoEnd ] );
      +				} else {
      +					deferred.rejectWith( elem, [ animation, gotoEnd ] );
      +				}
      +				return this;
      +			}
      +		} ),
      +		props = animation.props;
      +
      +	propFilter( props, animation.opts.specialEasing );
      +
      +	for ( ; index < length; index++ ) {
      +		result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );
      +		if ( result ) {
      +			if ( isFunction( result.stop ) ) {
      +				jQuery._queueHooks( animation.elem, animation.opts.queue ).stop =
      +					result.stop.bind( result );
      +			}
      +			return result;
      +		}
      +	}
      +
      +	jQuery.map( props, createTween, animation );
      +
      +	if ( isFunction( animation.opts.start ) ) {
      +		animation.opts.start.call( elem, animation );
      +	}
      +
      +	// Attach callbacks from options
      +	animation
      +		.progress( animation.opts.progress )
      +		.done( animation.opts.done, animation.opts.complete )
      +		.fail( animation.opts.fail )
      +		.always( animation.opts.always );
      +
      +	jQuery.fx.timer(
      +		jQuery.extend( tick, {
      +			elem: elem,
      +			anim: animation,
      +			queue: animation.opts.queue
      +		} )
      +	);
      +
      +	return animation;
      +}
      +
      +jQuery.Animation = jQuery.extend( Animation, {
      +
      +	tweeners: {
      +		"*": [ function( prop, value ) {
      +			var tween = this.createTween( prop, value );
      +			adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );
      +			return tween;
      +		} ]
      +	},
      +
      +	tweener: function( props, callback ) {
      +		if ( isFunction( props ) ) {
      +			callback = props;
      +			props = [ "*" ];
      +		} else {
      +			props = props.match( rnothtmlwhite );
      +		}
      +
      +		var prop,
      +			index = 0,
      +			length = props.length;
      +
      +		for ( ; index < length; index++ ) {
      +			prop = props[ index ];
      +			Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];
      +			Animation.tweeners[ prop ].unshift( callback );
      +		}
      +	},
      +
      +	prefilters: [ defaultPrefilter ],
      +
      +	prefilter: function( callback, prepend ) {
      +		if ( prepend ) {
      +			Animation.prefilters.unshift( callback );
      +		} else {
      +			Animation.prefilters.push( callback );
      +		}
      +	}
      +} );
      +
      +jQuery.speed = function( speed, easing, fn ) {
      +	var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
      +		complete: fn || !fn && easing ||
      +			isFunction( speed ) && speed,
      +		duration: speed,
      +		easing: fn && easing || easing && !isFunction( easing ) && easing
      +	};
      +
      +	// Go to the end state if fx are off
      +	if ( jQuery.fx.off ) {
      +		opt.duration = 0;
      +
      +	} else {
      +		if ( typeof opt.duration !== "number" ) {
      +			if ( opt.duration in jQuery.fx.speeds ) {
      +				opt.duration = jQuery.fx.speeds[ opt.duration ];
      +
      +			} else {
      +				opt.duration = jQuery.fx.speeds._default;
      +			}
      +		}
      +	}
      +
      +	// Normalize opt.queue - true/undefined/null -> "fx"
      +	if ( opt.queue == null || opt.queue === true ) {
      +		opt.queue = "fx";
      +	}
      +
      +	// Queueing
      +	opt.old = opt.complete;
      +
      +	opt.complete = function() {
      +		if ( isFunction( opt.old ) ) {
      +			opt.old.call( this );
      +		}
      +
      +		if ( opt.queue ) {
      +			jQuery.dequeue( this, opt.queue );
      +		}
      +	};
      +
      +	return opt;
      +};
      +
      +jQuery.fn.extend( {
      +	fadeTo: function( speed, to, easing, callback ) {
      +
      +		// Show any hidden elements after setting opacity to 0
      +		return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show()
      +
      +			// Animate to the value specified
      +			.end().animate( { opacity: to }, speed, easing, callback );
      +	},
      +	animate: function( prop, speed, easing, callback ) {
      +		var empty = jQuery.isEmptyObject( prop ),
      +			optall = jQuery.speed( speed, easing, callback ),
      +			doAnimation = function() {
      +
      +				// Operate on a copy of prop so per-property easing won't be lost
      +				var anim = Animation( this, jQuery.extend( {}, prop ), optall );
      +
      +				// Empty animations, or finishing resolves immediately
      +				if ( empty || dataPriv.get( this, "finish" ) ) {
      +					anim.stop( true );
      +				}
      +			};
      +			doAnimation.finish = doAnimation;
      +
      +		return empty || optall.queue === false ?
      +			this.each( doAnimation ) :
      +			this.queue( optall.queue, doAnimation );
      +	},
      +	stop: function( type, clearQueue, gotoEnd ) {
      +		var stopQueue = function( hooks ) {
      +			var stop = hooks.stop;
      +			delete hooks.stop;
      +			stop( gotoEnd );
      +		};
      +
      +		if ( typeof type !== "string" ) {
      +			gotoEnd = clearQueue;
      +			clearQueue = type;
      +			type = undefined;
      +		}
      +		if ( clearQueue && type !== false ) {
      +			this.queue( type || "fx", [] );
      +		}
      +
      +		return this.each( function() {
      +			var dequeue = true,
      +				index = type != null && type + "queueHooks",
      +				timers = jQuery.timers,
      +				data = dataPriv.get( this );
      +
      +			if ( index ) {
      +				if ( data[ index ] && data[ index ].stop ) {
      +					stopQueue( data[ index ] );
      +				}
      +			} else {
      +				for ( index in data ) {
      +					if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
      +						stopQueue( data[ index ] );
      +					}
      +				}
      +			}
      +
      +			for ( index = timers.length; index--; ) {
      +				if ( timers[ index ].elem === this &&
      +					( type == null || timers[ index ].queue === type ) ) {
      +
      +					timers[ index ].anim.stop( gotoEnd );
      +					dequeue = false;
      +					timers.splice( index, 1 );
      +				}
      +			}
      +
      +			// Start the next in the queue if the last step wasn't forced.
      +			// Timers currently will call their complete callbacks, which
      +			// will dequeue but only if they were gotoEnd.
      +			if ( dequeue || !gotoEnd ) {
      +				jQuery.dequeue( this, type );
      +			}
      +		} );
      +	},
      +	finish: function( type ) {
      +		if ( type !== false ) {
      +			type = type || "fx";
      +		}
      +		return this.each( function() {
      +			var index,
      +				data = dataPriv.get( this ),
      +				queue = data[ type + "queue" ],
      +				hooks = data[ type + "queueHooks" ],
      +				timers = jQuery.timers,
      +				length = queue ? queue.length : 0;
      +
      +			// Enable finishing flag on private data
      +			data.finish = true;
      +
      +			// Empty the queue first
      +			jQuery.queue( this, type, [] );
      +
      +			if ( hooks && hooks.stop ) {
      +				hooks.stop.call( this, true );
      +			}
      +
      +			// Look for any active animations, and finish them
      +			for ( index = timers.length; index--; ) {
      +				if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
      +					timers[ index ].anim.stop( true );
      +					timers.splice( index, 1 );
      +				}
      +			}
      +
      +			// Look for any animations in the old queue and finish them
      +			for ( index = 0; index < length; index++ ) {
      +				if ( queue[ index ] && queue[ index ].finish ) {
      +					queue[ index ].finish.call( this );
      +				}
      +			}
      +
      +			// Turn off finishing flag
      +			delete data.finish;
      +		} );
      +	}
      +} );
      +
      +jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) {
      +	var cssFn = jQuery.fn[ name ];
      +	jQuery.fn[ name ] = function( speed, easing, callback ) {
      +		return speed == null || typeof speed === "boolean" ?
      +			cssFn.apply( this, arguments ) :
      +			this.animate( genFx( name, true ), speed, easing, callback );
      +	};
      +} );
      +
      +// Generate shortcuts for custom animations
      +jQuery.each( {
      +	slideDown: genFx( "show" ),
      +	slideUp: genFx( "hide" ),
      +	slideToggle: genFx( "toggle" ),
      +	fadeIn: { opacity: "show" },
      +	fadeOut: { opacity: "hide" },
      +	fadeToggle: { opacity: "toggle" }
      +}, function( name, props ) {
      +	jQuery.fn[ name ] = function( speed, easing, callback ) {
      +		return this.animate( props, speed, easing, callback );
      +	};
      +} );
      +
      +jQuery.timers = [];
      +jQuery.fx.tick = function() {
      +	var timer,
      +		i = 0,
      +		timers = jQuery.timers;
      +
      +	fxNow = Date.now();
      +
      +	for ( ; i < timers.length; i++ ) {
      +		timer = timers[ i ];
      +
      +		// Run the timer and safely remove it when done (allowing for external removal)
      +		if ( !timer() && timers[ i ] === timer ) {
      +			timers.splice( i--, 1 );
      +		}
      +	}
      +
      +	if ( !timers.length ) {
      +		jQuery.fx.stop();
      +	}
      +	fxNow = undefined;
      +};
      +
      +jQuery.fx.timer = function( timer ) {
      +	jQuery.timers.push( timer );
      +	jQuery.fx.start();
      +};
      +
      +jQuery.fx.interval = 13;
      +jQuery.fx.start = function() {
      +	if ( inProgress ) {
      +		return;
      +	}
      +
      +	inProgress = true;
      +	schedule();
      +};
      +
      +jQuery.fx.stop = function() {
      +	inProgress = null;
      +};
      +
      +jQuery.fx.speeds = {
      +	slow: 600,
      +	fast: 200,
      +
      +	// Default speed
      +	_default: 400
      +};
      +
      +
      +// Based off of the plugin by Clint Helfers, with permission.
      +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/
      +jQuery.fn.delay = function( time, type ) {
      +	time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
      +	type = type || "fx";
      +
      +	return this.queue( type, function( next, hooks ) {
      +		var timeout = window.setTimeout( next, time );
      +		hooks.stop = function() {
      +			window.clearTimeout( timeout );
      +		};
      +	} );
      +};
      +
      +
      +( function() {
      +	var input = document.createElement( "input" ),
      +		select = document.createElement( "select" ),
      +		opt = select.appendChild( document.createElement( "option" ) );
      +
      +	input.type = "checkbox";
      +
      +	// Support: Android <=4.3 only
      +	// Default value for a checkbox should be "on"
      +	support.checkOn = input.value !== "";
      +
      +	// Support: IE <=11 only
      +	// Must access selectedIndex to make default options select
      +	support.optSelected = opt.selected;
      +
      +	// Support: IE <=11 only
      +	// An input loses its value after becoming a radio
      +	input = document.createElement( "input" );
      +	input.value = "t";
      +	input.type = "radio";
      +	support.radioValue = input.value === "t";
      +} )();
      +
      +
      +var boolHook,
      +	attrHandle = jQuery.expr.attrHandle;
      +
      +jQuery.fn.extend( {
      +	attr: function( name, value ) {
      +		return access( this, jQuery.attr, name, value, arguments.length > 1 );
      +	},
      +
      +	removeAttr: function( name ) {
      +		return this.each( function() {
      +			jQuery.removeAttr( this, name );
      +		} );
      +	}
      +} );
      +
      +jQuery.extend( {
      +	attr: function( elem, name, value ) {
      +		var ret, hooks,
      +			nType = elem.nodeType;
      +
      +		// Don't get/set attributes on text, comment and attribute nodes
      +		if ( nType === 3 || nType === 8 || nType === 2 ) {
      +			return;
      +		}
      +
      +		// Fallback to prop when attributes are not supported
      +		if ( typeof elem.getAttribute === "undefined" ) {
      +			return jQuery.prop( elem, name, value );
      +		}
      +
      +		// Attribute hooks are determined by the lowercase version
      +		// Grab necessary hook if one is defined
      +		if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
      +			hooks = jQuery.attrHooks[ name.toLowerCase() ] ||
      +				( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );
      +		}
      +
      +		if ( value !== undefined ) {
      +			if ( value === null ) {
      +				jQuery.removeAttr( elem, name );
      +				return;
      +			}
      +
      +			if ( hooks && "set" in hooks &&
      +				( ret = hooks.set( elem, value, name ) ) !== undefined ) {
      +				return ret;
      +			}
      +
      +			elem.setAttribute( name, value + "" );
      +			return value;
      +		}
      +
      +		if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
      +			return ret;
      +		}
      +
      +		ret = jQuery.find.attr( elem, name );
      +
      +		// Non-existent attributes return null, we normalize to undefined
      +		return ret == null ? undefined : ret;
      +	},
      +
      +	attrHooks: {
      +		type: {
      +			set: function( elem, value ) {
      +				if ( !support.radioValue && value === "radio" &&
      +					nodeName( elem, "input" ) ) {
      +					var val = elem.value;
      +					elem.setAttribute( "type", value );
      +					if ( val ) {
      +						elem.value = val;
      +					}
      +					return value;
      +				}
      +			}
      +		}
      +	},
      +
      +	removeAttr: function( elem, value ) {
      +		var name,
      +			i = 0,
      +
      +			// Attribute names can contain non-HTML whitespace characters
      +			// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2
      +			attrNames = value && value.match( rnothtmlwhite );
      +
      +		if ( attrNames && elem.nodeType === 1 ) {
      +			while ( ( name = attrNames[ i++ ] ) ) {
      +				elem.removeAttribute( name );
      +			}
      +		}
      +	}
      +} );
      +
      +// Hooks for boolean attributes
      +boolHook = {
      +	set: function( elem, value, name ) {
      +		if ( value === false ) {
      +
      +			// Remove boolean attributes when set to false
      +			jQuery.removeAttr( elem, name );
      +		} else {
      +			elem.setAttribute( name, name );
      +		}
      +		return name;
      +	}
      +};
      +
      +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {
      +	var getter = attrHandle[ name ] || jQuery.find.attr;
      +
      +	attrHandle[ name ] = function( elem, name, isXML ) {
      +		var ret, handle,
      +			lowercaseName = name.toLowerCase();
      +
      +		if ( !isXML ) {
      +
      +			// Avoid an infinite loop by temporarily removing this function from the getter
      +			handle = attrHandle[ lowercaseName ];
      +			attrHandle[ lowercaseName ] = ret;
      +			ret = getter( elem, name, isXML ) != null ?
      +				lowercaseName :
      +				null;
      +			attrHandle[ lowercaseName ] = handle;
      +		}
      +		return ret;
      +	};
      +} );
      +
      +
      +
      +
      +var rfocusable = /^(?:input|select|textarea|button)$/i,
      +	rclickable = /^(?:a|area)$/i;
      +
      +jQuery.fn.extend( {
      +	prop: function( name, value ) {
      +		return access( this, jQuery.prop, name, value, arguments.length > 1 );
      +	},
      +
      +	removeProp: function( name ) {
      +		return this.each( function() {
      +			delete this[ jQuery.propFix[ name ] || name ];
      +		} );
      +	}
      +} );
      +
      +jQuery.extend( {
      +	prop: function( elem, name, value ) {
      +		var ret, hooks,
      +			nType = elem.nodeType;
      +
      +		// Don't get/set properties on text, comment and attribute nodes
      +		if ( nType === 3 || nType === 8 || nType === 2 ) {
      +			return;
      +		}
      +
      +		if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
      +
      +			// Fix name and attach hooks
      +			name = jQuery.propFix[ name ] || name;
      +			hooks = jQuery.propHooks[ name ];
      +		}
      +
      +		if ( value !== undefined ) {
      +			if ( hooks && "set" in hooks &&
      +				( ret = hooks.set( elem, value, name ) ) !== undefined ) {
      +				return ret;
      +			}
      +
      +			return ( elem[ name ] = value );
      +		}
      +
      +		if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
      +			return ret;
      +		}
      +
      +		return elem[ name ];
      +	},
      +
      +	propHooks: {
      +		tabIndex: {
      +			get: function( elem ) {
      +
      +				// Support: IE <=9 - 11 only
      +				// elem.tabIndex doesn't always return the
      +				// correct value when it hasn't been explicitly set
      +				// https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
      +				// Use proper attribute retrieval(#12072)
      +				var tabindex = jQuery.find.attr( elem, "tabindex" );
      +
      +				if ( tabindex ) {
      +					return parseInt( tabindex, 10 );
      +				}
      +
      +				if (
      +					rfocusable.test( elem.nodeName ) ||
      +					rclickable.test( elem.nodeName ) &&
      +					elem.href
      +				) {
      +					return 0;
      +				}
      +
      +				return -1;
      +			}
      +		}
      +	},
      +
      +	propFix: {
      +		"for": "htmlFor",
      +		"class": "className"
      +	}
      +} );
      +
      +// Support: IE <=11 only
      +// Accessing the selectedIndex property
      +// forces the browser to respect setting selected
      +// on the option
      +// The getter ensures a default option is selected
      +// when in an optgroup
      +// eslint rule "no-unused-expressions" is disabled for this code
      +// since it considers such accessions noop
      +if ( !support.optSelected ) {
      +	jQuery.propHooks.selected = {
      +		get: function( elem ) {
      +
      +			/* eslint no-unused-expressions: "off" */
      +
      +			var parent = elem.parentNode;
      +			if ( parent && parent.parentNode ) {
      +				parent.parentNode.selectedIndex;
      +			}
      +			return null;
      +		},
      +		set: function( elem ) {
      +
      +			/* eslint no-unused-expressions: "off" */
      +
      +			var parent = elem.parentNode;
      +			if ( parent ) {
      +				parent.selectedIndex;
      +
      +				if ( parent.parentNode ) {
      +					parent.parentNode.selectedIndex;
      +				}
      +			}
      +		}
      +	};
      +}
      +
      +jQuery.each( [
      +	"tabIndex",
      +	"readOnly",
      +	"maxLength",
      +	"cellSpacing",
      +	"cellPadding",
      +	"rowSpan",
      +	"colSpan",
      +	"useMap",
      +	"frameBorder",
      +	"contentEditable"
      +], function() {
      +	jQuery.propFix[ this.toLowerCase() ] = this;
      +} );
      +
      +
      +
      +
      +	// Strip and collapse whitespace according to HTML spec
      +	// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace
      +	function stripAndCollapse( value ) {
      +		var tokens = value.match( rnothtmlwhite ) || [];
      +		return tokens.join( " " );
      +	}
      +
      +
      +function getClass( elem ) {
      +	return elem.getAttribute && elem.getAttribute( "class" ) || "";
      +}
      +
      +function classesToArray( value ) {
      +	if ( Array.isArray( value ) ) {
      +		return value;
      +	}
      +	if ( typeof value === "string" ) {
      +		return value.match( rnothtmlwhite ) || [];
      +	}
      +	return [];
      +}
      +
      +jQuery.fn.extend( {
      +	addClass: function( value ) {
      +		var classes, elem, cur, curValue, clazz, j, finalValue,
      +			i = 0;
      +
      +		if ( isFunction( value ) ) {
      +			return this.each( function( j ) {
      +				jQuery( this ).addClass( value.call( this, j, getClass( this ) ) );
      +			} );
      +		}
      +
      +		classes = classesToArray( value );
      +
      +		if ( classes.length ) {
      +			while ( ( elem = this[ i++ ] ) ) {
      +				curValue = getClass( elem );
      +				cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " );
      +
      +				if ( cur ) {
      +					j = 0;
      +					while ( ( clazz = classes[ j++ ] ) ) {
      +						if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
      +							cur += clazz + " ";
      +						}
      +					}
      +
      +					// Only assign if different to avoid unneeded rendering.
      +					finalValue = stripAndCollapse( cur );
      +					if ( curValue !== finalValue ) {
      +						elem.setAttribute( "class", finalValue );
      +					}
      +				}
      +			}
      +		}
      +
      +		return this;
      +	},
      +
      +	removeClass: function( value ) {
      +		var classes, elem, cur, curValue, clazz, j, finalValue,
      +			i = 0;
      +
      +		if ( isFunction( value ) ) {
      +			return this.each( function( j ) {
      +				jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );
      +			} );
      +		}
      +
      +		if ( !arguments.length ) {
      +			return this.attr( "class", "" );
      +		}
      +
      +		classes = classesToArray( value );
      +
      +		if ( classes.length ) {
      +			while ( ( elem = this[ i++ ] ) ) {
      +				curValue = getClass( elem );
      +
      +				// This expression is here for better compressibility (see addClass)
      +				cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " );
      +
      +				if ( cur ) {
      +					j = 0;
      +					while ( ( clazz = classes[ j++ ] ) ) {
      +
      +						// Remove *all* instances
      +						while ( cur.indexOf( " " + clazz + " " ) > -1 ) {
      +							cur = cur.replace( " " + clazz + " ", " " );
      +						}
      +					}
      +
      +					// Only assign if different to avoid unneeded rendering.
      +					finalValue = stripAndCollapse( cur );
      +					if ( curValue !== finalValue ) {
      +						elem.setAttribute( "class", finalValue );
      +					}
      +				}
      +			}
      +		}
      +
      +		return this;
      +	},
      +
      +	toggleClass: function( value, stateVal ) {
      +		var type = typeof value,
      +			isValidValue = type === "string" || Array.isArray( value );
      +
      +		if ( typeof stateVal === "boolean" && isValidValue ) {
      +			return stateVal ? this.addClass( value ) : this.removeClass( value );
      +		}
      +
      +		if ( isFunction( value ) ) {
      +			return this.each( function( i ) {
      +				jQuery( this ).toggleClass(
      +					value.call( this, i, getClass( this ), stateVal ),
      +					stateVal
      +				);
      +			} );
      +		}
      +
      +		return this.each( function() {
      +			var className, i, self, classNames;
      +
      +			if ( isValidValue ) {
      +
      +				// Toggle individual class names
      +				i = 0;
      +				self = jQuery( this );
      +				classNames = classesToArray( value );
      +
      +				while ( ( className = classNames[ i++ ] ) ) {
      +
      +					// Check each className given, space separated list
      +					if ( self.hasClass( className ) ) {
      +						self.removeClass( className );
      +					} else {
      +						self.addClass( className );
      +					}
      +				}
      +
      +			// Toggle whole class name
      +			} else if ( value === undefined || type === "boolean" ) {
      +				className = getClass( this );
      +				if ( className ) {
      +
      +					// Store className if set
      +					dataPriv.set( this, "__className__", className );
      +				}
      +
      +				// If the element has a class name or if we're passed `false`,
      +				// then remove the whole classname (if there was one, the above saved it).
      +				// Otherwise bring back whatever was previously saved (if anything),
      +				// falling back to the empty string if nothing was stored.
      +				if ( this.setAttribute ) {
      +					this.setAttribute( "class",
      +						className || value === false ?
      +						"" :
      +						dataPriv.get( this, "__className__" ) || ""
      +					);
      +				}
      +			}
      +		} );
      +	},
      +
      +	hasClass: function( selector ) {
      +		var className, elem,
      +			i = 0;
      +
      +		className = " " + selector + " ";
      +		while ( ( elem = this[ i++ ] ) ) {
      +			if ( elem.nodeType === 1 &&
      +				( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) {
      +					return true;
      +			}
      +		}
      +
      +		return false;
      +	}
      +} );
      +
      +
      +
      +
      +var rreturn = /\r/g;
      +
      +jQuery.fn.extend( {
      +	val: function( value ) {
      +		var hooks, ret, valueIsFunction,
      +			elem = this[ 0 ];
      +
      +		if ( !arguments.length ) {
      +			if ( elem ) {
      +				hooks = jQuery.valHooks[ elem.type ] ||
      +					jQuery.valHooks[ elem.nodeName.toLowerCase() ];
      +
      +				if ( hooks &&
      +					"get" in hooks &&
      +					( ret = hooks.get( elem, "value" ) ) !== undefined
      +				) {
      +					return ret;
      +				}
      +
      +				ret = elem.value;
      +
      +				// Handle most common string cases
      +				if ( typeof ret === "string" ) {
      +					return ret.replace( rreturn, "" );
      +				}
      +
      +				// Handle cases where value is null/undef or number
      +				return ret == null ? "" : ret;
      +			}
      +
      +			return;
      +		}
      +
      +		valueIsFunction = isFunction( value );
      +
      +		return this.each( function( i ) {
      +			var val;
      +
      +			if ( this.nodeType !== 1 ) {
      +				return;
      +			}
      +
      +			if ( valueIsFunction ) {
      +				val = value.call( this, i, jQuery( this ).val() );
      +			} else {
      +				val = value;
      +			}
      +
      +			// Treat null/undefined as ""; convert numbers to string
      +			if ( val == null ) {
      +				val = "";
      +
      +			} else if ( typeof val === "number" ) {
      +				val += "";
      +
      +			} else if ( Array.isArray( val ) ) {
      +				val = jQuery.map( val, function( value ) {
      +					return value == null ? "" : value + "";
      +				} );
      +			}
      +
      +			hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
      +
      +			// If set returns undefined, fall back to normal setting
      +			if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) {
      +				this.value = val;
      +			}
      +		} );
      +	}
      +} );
      +
      +jQuery.extend( {
      +	valHooks: {
      +		option: {
      +			get: function( elem ) {
      +
      +				var val = jQuery.find.attr( elem, "value" );
      +				return val != null ?
      +					val :
      +
      +					// Support: IE <=10 - 11 only
      +					// option.text throws exceptions (#14686, #14858)
      +					// Strip and collapse whitespace
      +					// https://html.spec.whatwg.org/#strip-and-collapse-whitespace
      +					stripAndCollapse( jQuery.text( elem ) );
      +			}
      +		},
      +		select: {
      +			get: function( elem ) {
      +				var value, option, i,
      +					options = elem.options,
      +					index = elem.selectedIndex,
      +					one = elem.type === "select-one",
      +					values = one ? null : [],
      +					max = one ? index + 1 : options.length;
      +
      +				if ( index < 0 ) {
      +					i = max;
      +
      +				} else {
      +					i = one ? index : 0;
      +				}
      +
      +				// Loop through all the selected options
      +				for ( ; i < max; i++ ) {
      +					option = options[ i ];
      +
      +					// Support: IE <=9 only
      +					// IE8-9 doesn't update selected after form reset (#2551)
      +					if ( ( option.selected || i === index ) &&
      +
      +							// Don't return options that are disabled or in a disabled optgroup
      +							!option.disabled &&
      +							( !option.parentNode.disabled ||
      +								!nodeName( option.parentNode, "optgroup" ) ) ) {
      +
      +						// Get the specific value for the option
      +						value = jQuery( option ).val();
      +
      +						// We don't need an array for one selects
      +						if ( one ) {
      +							return value;
      +						}
      +
      +						// Multi-Selects return an array
      +						values.push( value );
      +					}
      +				}
      +
      +				return values;
      +			},
      +
      +			set: function( elem, value ) {
      +				var optionSet, option,
      +					options = elem.options,
      +					values = jQuery.makeArray( value ),
      +					i = options.length;
      +
      +				while ( i-- ) {
      +					option = options[ i ];
      +
      +					/* eslint-disable no-cond-assign */
      +
      +					if ( option.selected =
      +						jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1
      +					) {
      +						optionSet = true;
      +					}
      +
      +					/* eslint-enable no-cond-assign */
      +				}
      +
      +				// Force browsers to behave consistently when non-matching value is set
      +				if ( !optionSet ) {
      +					elem.selectedIndex = -1;
      +				}
      +				return values;
      +			}
      +		}
      +	}
      +} );
      +
      +// Radios and checkboxes getter/setter
      +jQuery.each( [ "radio", "checkbox" ], function() {
      +	jQuery.valHooks[ this ] = {
      +		set: function( elem, value ) {
      +			if ( Array.isArray( value ) ) {
      +				return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );
      +			}
      +		}
      +	};
      +	if ( !support.checkOn ) {
      +		jQuery.valHooks[ this ].get = function( elem ) {
      +			return elem.getAttribute( "value" ) === null ? "on" : elem.value;
      +		};
      +	}
      +} );
      +
      +
      +
      +
      +// Return jQuery for attributes-only inclusion
      +
      +
      +support.focusin = "onfocusin" in window;
      +
      +
      +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
      +	stopPropagationCallback = function( e ) {
      +		e.stopPropagation();
      +	};
      +
      +jQuery.extend( jQuery.event, {
      +
      +	trigger: function( event, data, elem, onlyHandlers ) {
      +
      +		var i, cur, tmp, bubbleType, ontype, handle, special, lastElement,
      +			eventPath = [ elem || document ],
      +			type = hasOwn.call( event, "type" ) ? event.type : event,
      +			namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : [];
      +
      +		cur = lastElement = tmp = elem = elem || document;
      +
      +		// Don't do events on text and comment nodes
      +		if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
      +			return;
      +		}
      +
      +		// focus/blur morphs to focusin/out; ensure we're not firing them right now
      +		if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
      +			return;
      +		}
      +
      +		if ( type.indexOf( "." ) > -1 ) {
      +
      +			// Namespaced trigger; create a regexp to match event type in handle()
      +			namespaces = type.split( "." );
      +			type = namespaces.shift();
      +			namespaces.sort();
      +		}
      +		ontype = type.indexOf( ":" ) < 0 && "on" + type;
      +
      +		// Caller can pass in a jQuery.Event object, Object, or just an event type string
      +		event = event[ jQuery.expando ] ?
      +			event :
      +			new jQuery.Event( type, typeof event === "object" && event );
      +
      +		// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
      +		event.isTrigger = onlyHandlers ? 2 : 3;
      +		event.namespace = namespaces.join( "." );
      +		event.rnamespace = event.namespace ?
      +			new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) :
      +			null;
      +
      +		// Clean up the event in case it is being reused
      +		event.result = undefined;
      +		if ( !event.target ) {
      +			event.target = elem;
      +		}
      +
      +		// Clone any incoming data and prepend the event, creating the handler arg list
      +		data = data == null ?
      +			[ event ] :
      +			jQuery.makeArray( data, [ event ] );
      +
      +		// Allow special events to draw outside the lines
      +		special = jQuery.event.special[ type ] || {};
      +		if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
      +			return;
      +		}
      +
      +		// Determine event propagation path in advance, per W3C events spec (#9951)
      +		// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
      +		if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {
      +
      +			bubbleType = special.delegateType || type;
      +			if ( !rfocusMorph.test( bubbleType + type ) ) {
      +				cur = cur.parentNode;
      +			}
      +			for ( ; cur; cur = cur.parentNode ) {
      +				eventPath.push( cur );
      +				tmp = cur;
      +			}
      +
      +			// Only add window if we got to document (e.g., not plain obj or detached DOM)
      +			if ( tmp === ( elem.ownerDocument || document ) ) {
      +				eventPath.push( tmp.defaultView || tmp.parentWindow || window );
      +			}
      +		}
      +
      +		// Fire handlers on the event path
      +		i = 0;
      +		while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {
      +			lastElement = cur;
      +			event.type = i > 1 ?
      +				bubbleType :
      +				special.bindType || type;
      +
      +			// jQuery handler
      +			handle = ( dataPriv.get( cur, "events" ) || {} )[ event.type ] &&
      +				dataPriv.get( cur, "handle" );
      +			if ( handle ) {
      +				handle.apply( cur, data );
      +			}
      +
      +			// Native handler
      +			handle = ontype && cur[ ontype ];
      +			if ( handle && handle.apply && acceptData( cur ) ) {
      +				event.result = handle.apply( cur, data );
      +				if ( event.result === false ) {
      +					event.preventDefault();
      +				}
      +			}
      +		}
      +		event.type = type;
      +
      +		// If nobody prevented the default action, do it now
      +		if ( !onlyHandlers && !event.isDefaultPrevented() ) {
      +
      +			if ( ( !special._default ||
      +				special._default.apply( eventPath.pop(), data ) === false ) &&
      +				acceptData( elem ) ) {
      +
      +				// Call a native DOM method on the target with the same name as the event.
      +				// Don't do default actions on window, that's where global variables be (#6170)
      +				if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {
      +
      +					// Don't re-trigger an onFOO event when we call its FOO() method
      +					tmp = elem[ ontype ];
      +
      +					if ( tmp ) {
      +						elem[ ontype ] = null;
      +					}
      +
      +					// Prevent re-triggering of the same event, since we already bubbled it above
      +					jQuery.event.triggered = type;
      +
      +					if ( event.isPropagationStopped() ) {
      +						lastElement.addEventListener( type, stopPropagationCallback );
      +					}
      +
      +					elem[ type ]();
      +
      +					if ( event.isPropagationStopped() ) {
      +						lastElement.removeEventListener( type, stopPropagationCallback );
      +					}
      +
      +					jQuery.event.triggered = undefined;
      +
      +					if ( tmp ) {
      +						elem[ ontype ] = tmp;
      +					}
      +				}
      +			}
      +		}
      +
      +		return event.result;
      +	},
      +
      +	// Piggyback on a donor event to simulate a different one
      +	// Used only for `focus(in | out)` events
      +	simulate: function( type, elem, event ) {
      +		var e = jQuery.extend(
      +			new jQuery.Event(),
      +			event,
      +			{
      +				type: type,
      +				isSimulated: true
      +			}
      +		);
      +
      +		jQuery.event.trigger( e, null, elem );
      +	}
      +
      +} );
      +
      +jQuery.fn.extend( {
      +
      +	trigger: function( type, data ) {
      +		return this.each( function() {
      +			jQuery.event.trigger( type, data, this );
      +		} );
      +	},
      +	triggerHandler: function( type, data ) {
      +		var elem = this[ 0 ];
      +		if ( elem ) {
      +			return jQuery.event.trigger( type, data, elem, true );
      +		}
      +	}
      +} );
      +
      +
      +// Support: Firefox <=44
      +// Firefox doesn't have focus(in | out) events
      +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787
      +//
      +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1
      +// focus(in | out) events fire after focus & blur events,
      +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order
      +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857
      +if ( !support.focusin ) {
      +	jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) {
      +
      +		// Attach a single capturing handler on the document while someone wants focusin/focusout
      +		var handler = function( event ) {
      +			jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );
      +		};
      +
      +		jQuery.event.special[ fix ] = {
      +			setup: function() {
      +				var doc = this.ownerDocument || this,
      +					attaches = dataPriv.access( doc, fix );
      +
      +				if ( !attaches ) {
      +					doc.addEventListener( orig, handler, true );
      +				}
      +				dataPriv.access( doc, fix, ( attaches || 0 ) + 1 );
      +			},
      +			teardown: function() {
      +				var doc = this.ownerDocument || this,
      +					attaches = dataPriv.access( doc, fix ) - 1;
      +
      +				if ( !attaches ) {
      +					doc.removeEventListener( orig, handler, true );
      +					dataPriv.remove( doc, fix );
      +
      +				} else {
      +					dataPriv.access( doc, fix, attaches );
      +				}
      +			}
      +		};
      +	} );
      +}
      +var location = window.location;
      +
      +var nonce = Date.now();
      +
      +var rquery = ( /\?/ );
      +
      +
      +
      +// Cross-browser xml parsing
      +jQuery.parseXML = function( data ) {
      +	var xml;
      +	if ( !data || typeof data !== "string" ) {
      +		return null;
      +	}
      +
      +	// Support: IE 9 - 11 only
      +	// IE throws on parseFromString with invalid input.
      +	try {
      +		xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" );
      +	} catch ( e ) {
      +		xml = undefined;
      +	}
      +
      +	if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) {
      +		jQuery.error( "Invalid XML: " + data );
      +	}
      +	return xml;
      +};
      +
      +
      +var
      +	rbracket = /\[\]$/,
      +	rCRLF = /\r?\n/g,
      +	rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
      +	rsubmittable = /^(?:input|select|textarea|keygen)/i;
      +
      +function buildParams( prefix, obj, traditional, add ) {
      +	var name;
      +
      +	if ( Array.isArray( obj ) ) {
      +
      +		// Serialize array item.
      +		jQuery.each( obj, function( i, v ) {
      +			if ( traditional || rbracket.test( prefix ) ) {
      +
      +				// Treat each array item as a scalar.
      +				add( prefix, v );
      +
      +			} else {
      +
      +				// Item is non-scalar (array or object), encode its numeric index.
      +				buildParams(
      +					prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]",
      +					v,
      +					traditional,
      +					add
      +				);
      +			}
      +		} );
      +
      +	} else if ( !traditional && toType( obj ) === "object" ) {
      +
      +		// Serialize object item.
      +		for ( name in obj ) {
      +			buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
      +		}
      +
      +	} else {
      +
      +		// Serialize scalar item.
      +		add( prefix, obj );
      +	}
      +}
      +
      +// Serialize an array of form elements or a set of
      +// key/values into a query string
      +jQuery.param = function( a, traditional ) {
      +	var prefix,
      +		s = [],
      +		add = function( key, valueOrFunction ) {
      +
      +			// If value is a function, invoke it and use its return value
      +			var value = isFunction( valueOrFunction ) ?
      +				valueOrFunction() :
      +				valueOrFunction;
      +
      +			s[ s.length ] = encodeURIComponent( key ) + "=" +
      +				encodeURIComponent( value == null ? "" : value );
      +		};
      +
      +	// If an array was passed in, assume that it is an array of form elements.
      +	if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
      +
      +		// Serialize the form elements
      +		jQuery.each( a, function() {
      +			add( this.name, this.value );
      +		} );
      +
      +	} else {
      +
      +		// If traditional, encode the "old" way (the way 1.3.2 or older
      +		// did it), otherwise encode params recursively.
      +		for ( prefix in a ) {
      +			buildParams( prefix, a[ prefix ], traditional, add );
      +		}
      +	}
      +
      +	// Return the resulting serialization
      +	return s.join( "&" );
      +};
      +
      +jQuery.fn.extend( {
      +	serialize: function() {
      +		return jQuery.param( this.serializeArray() );
      +	},
      +	serializeArray: function() {
      +		return this.map( function() {
      +
      +			// Can add propHook for "elements" to filter or add form elements
      +			var elements = jQuery.prop( this, "elements" );
      +			return elements ? jQuery.makeArray( elements ) : this;
      +		} )
      +		.filter( function() {
      +			var type = this.type;
      +
      +			// Use .is( ":disabled" ) so that fieldset[disabled] works
      +			return this.name && !jQuery( this ).is( ":disabled" ) &&
      +				rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
      +				( this.checked || !rcheckableType.test( type ) );
      +		} )
      +		.map( function( i, elem ) {
      +			var val = jQuery( this ).val();
      +
      +			if ( val == null ) {
      +				return null;
      +			}
      +
      +			if ( Array.isArray( val ) ) {
      +				return jQuery.map( val, function( val ) {
      +					return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
      +				} );
      +			}
      +
      +			return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
      +		} ).get();
      +	}
      +} );
      +
      +
      +var
      +	r20 = /%20/g,
      +	rhash = /#.*$/,
      +	rantiCache = /([?&])_=[^&]*/,
      +	rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
      +
      +	// #7653, #8125, #8152: local protocol detection
      +	rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
      +	rnoContent = /^(?:GET|HEAD)$/,
      +	rprotocol = /^\/\//,
      +
      +	/* Prefilters
      +	 * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
      +	 * 2) These are called:
      +	 *    - BEFORE asking for a transport
      +	 *    - AFTER param serialization (s.data is a string if s.processData is true)
      +	 * 3) key is the dataType
      +	 * 4) the catchall symbol "*" can be used
      +	 * 5) execution will start with transport dataType and THEN continue down to "*" if needed
      +	 */
      +	prefilters = {},
      +
      +	/* Transports bindings
      +	 * 1) key is the dataType
      +	 * 2) the catchall symbol "*" can be used
      +	 * 3) selection will start with transport dataType and THEN go to "*" if needed
      +	 */
      +	transports = {},
      +
      +	// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
      +	allTypes = "*/".concat( "*" ),
      +
      +	// Anchor tag for parsing the document origin
      +	originAnchor = document.createElement( "a" );
      +	originAnchor.href = location.href;
      +
      +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
      +function addToPrefiltersOrTransports( structure ) {
      +
      +	// dataTypeExpression is optional and defaults to "*"
      +	return function( dataTypeExpression, func ) {
      +
      +		if ( typeof dataTypeExpression !== "string" ) {
      +			func = dataTypeExpression;
      +			dataTypeExpression = "*";
      +		}
      +
      +		var dataType,
      +			i = 0,
      +			dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];
      +
      +		if ( isFunction( func ) ) {
      +
      +			// For each dataType in the dataTypeExpression
      +			while ( ( dataType = dataTypes[ i++ ] ) ) {
      +
      +				// Prepend if requested
      +				if ( dataType[ 0 ] === "+" ) {
      +					dataType = dataType.slice( 1 ) || "*";
      +					( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );
      +
      +				// Otherwise append
      +				} else {
      +					( structure[ dataType ] = structure[ dataType ] || [] ).push( func );
      +				}
      +			}
      +		}
      +	};
      +}
      +
      +// Base inspection function for prefilters and transports
      +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
      +
      +	var inspected = {},
      +		seekingTransport = ( structure === transports );
      +
      +	function inspect( dataType ) {
      +		var selected;
      +		inspected[ dataType ] = true;
      +		jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
      +			var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
      +			if ( typeof dataTypeOrTransport === "string" &&
      +				!seekingTransport && !inspected[ dataTypeOrTransport ] ) {
      +
      +				options.dataTypes.unshift( dataTypeOrTransport );
      +				inspect( dataTypeOrTransport );
      +				return false;
      +			} else if ( seekingTransport ) {
      +				return !( selected = dataTypeOrTransport );
      +			}
      +		} );
      +		return selected;
      +	}
      +
      +	return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
      +}
      +
      +// A special extend for ajax options
      +// that takes "flat" options (not to be deep extended)
      +// Fixes #9887
      +function ajaxExtend( target, src ) {
      +	var key, deep,
      +		flatOptions = jQuery.ajaxSettings.flatOptions || {};
      +
      +	for ( key in src ) {
      +		if ( src[ key ] !== undefined ) {
      +			( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];
      +		}
      +	}
      +	if ( deep ) {
      +		jQuery.extend( true, target, deep );
      +	}
      +
      +	return target;
      +}
      +
      +/* Handles responses to an ajax request:
      + * - finds the right dataType (mediates between content-type and expected dataType)
      + * - returns the corresponding response
      + */
      +function ajaxHandleResponses( s, jqXHR, responses ) {
      +
      +	var ct, type, finalDataType, firstDataType,
      +		contents = s.contents,
      +		dataTypes = s.dataTypes;
      +
      +	// Remove auto dataType and get content-type in the process
      +	while ( dataTypes[ 0 ] === "*" ) {
      +		dataTypes.shift();
      +		if ( ct === undefined ) {
      +			ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" );
      +		}
      +	}
      +
      +	// Check if we're dealing with a known content-type
      +	if ( ct ) {
      +		for ( type in contents ) {
      +			if ( contents[ type ] && contents[ type ].test( ct ) ) {
      +				dataTypes.unshift( type );
      +				break;
      +			}
      +		}
      +	}
      +
      +	// Check to see if we have a response for the expected dataType
      +	if ( dataTypes[ 0 ] in responses ) {
      +		finalDataType = dataTypes[ 0 ];
      +	} else {
      +
      +		// Try convertible dataTypes
      +		for ( type in responses ) {
      +			if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) {
      +				finalDataType = type;
      +				break;
      +			}
      +			if ( !firstDataType ) {
      +				firstDataType = type;
      +			}
      +		}
      +
      +		// Or just use first one
      +		finalDataType = finalDataType || firstDataType;
      +	}
      +
      +	// If we found a dataType
      +	// We add the dataType to the list if needed
      +	// and return the corresponding response
      +	if ( finalDataType ) {
      +		if ( finalDataType !== dataTypes[ 0 ] ) {
      +			dataTypes.unshift( finalDataType );
      +		}
      +		return responses[ finalDataType ];
      +	}
      +}
      +
      +/* Chain conversions given the request and the original response
      + * Also sets the responseXXX fields on the jqXHR instance
      + */
      +function ajaxConvert( s, response, jqXHR, isSuccess ) {
      +	var conv2, current, conv, tmp, prev,
      +		converters = {},
      +
      +		// Work with a copy of dataTypes in case we need to modify it for conversion
      +		dataTypes = s.dataTypes.slice();
      +
      +	// Create converters map with lowercased keys
      +	if ( dataTypes[ 1 ] ) {
      +		for ( conv in s.converters ) {
      +			converters[ conv.toLowerCase() ] = s.converters[ conv ];
      +		}
      +	}
      +
      +	current = dataTypes.shift();
      +
      +	// Convert to each sequential dataType
      +	while ( current ) {
      +
      +		if ( s.responseFields[ current ] ) {
      +			jqXHR[ s.responseFields[ current ] ] = response;
      +		}
      +
      +		// Apply the dataFilter if provided
      +		if ( !prev && isSuccess && s.dataFilter ) {
      +			response = s.dataFilter( response, s.dataType );
      +		}
      +
      +		prev = current;
      +		current = dataTypes.shift();
      +
      +		if ( current ) {
      +
      +			// There's only work to do if current dataType is non-auto
      +			if ( current === "*" ) {
      +
      +				current = prev;
      +
      +			// Convert response if prev dataType is non-auto and differs from current
      +			} else if ( prev !== "*" && prev !== current ) {
      +
      +				// Seek a direct converter
      +				conv = converters[ prev + " " + current ] || converters[ "* " + current ];
      +
      +				// If none found, seek a pair
      +				if ( !conv ) {
      +					for ( conv2 in converters ) {
      +
      +						// If conv2 outputs current
      +						tmp = conv2.split( " " );
      +						if ( tmp[ 1 ] === current ) {
      +
      +							// If prev can be converted to accepted input
      +							conv = converters[ prev + " " + tmp[ 0 ] ] ||
      +								converters[ "* " + tmp[ 0 ] ];
      +							if ( conv ) {
      +
      +								// Condense equivalence converters
      +								if ( conv === true ) {
      +									conv = converters[ conv2 ];
      +
      +								// Otherwise, insert the intermediate dataType
      +								} else if ( converters[ conv2 ] !== true ) {
      +									current = tmp[ 0 ];
      +									dataTypes.unshift( tmp[ 1 ] );
      +								}
      +								break;
      +							}
      +						}
      +					}
      +				}
      +
      +				// Apply converter (if not an equivalence)
      +				if ( conv !== true ) {
      +
      +					// Unless errors are allowed to bubble, catch and return them
      +					if ( conv && s.throws ) {
      +						response = conv( response );
      +					} else {
      +						try {
      +							response = conv( response );
      +						} catch ( e ) {
      +							return {
      +								state: "parsererror",
      +								error: conv ? e : "No conversion from " + prev + " to " + current
      +							};
      +						}
      +					}
      +				}
      +			}
      +		}
      +	}
      +
      +	return { state: "success", data: response };
      +}
      +
      +jQuery.extend( {
      +
      +	// Counter for holding the number of active queries
      +	active: 0,
      +
      +	// Last-Modified header cache for next request
      +	lastModified: {},
      +	etag: {},
      +
      +	ajaxSettings: {
      +		url: location.href,
      +		type: "GET",
      +		isLocal: rlocalProtocol.test( location.protocol ),
      +		global: true,
      +		processData: true,
      +		async: true,
      +		contentType: "application/x-www-form-urlencoded; charset=UTF-8",
      +
      +		/*
      +		timeout: 0,
      +		data: null,
      +		dataType: null,
      +		username: null,
      +		password: null,
      +		cache: null,
      +		throws: false,
      +		traditional: false,
      +		headers: {},
      +		*/
      +
      +		accepts: {
      +			"*": allTypes,
      +			text: "text/plain",
      +			html: "text/html",
      +			xml: "application/xml, text/xml",
      +			json: "application/json, text/javascript"
      +		},
      +
      +		contents: {
      +			xml: /\bxml\b/,
      +			html: /\bhtml/,
      +			json: /\bjson\b/
      +		},
      +
      +		responseFields: {
      +			xml: "responseXML",
      +			text: "responseText",
      +			json: "responseJSON"
      +		},
      +
      +		// Data converters
      +		// Keys separate source (or catchall "*") and destination types with a single space
      +		converters: {
      +
      +			// Convert anything to text
      +			"* text": String,
      +
      +			// Text to html (true = no transformation)
      +			"text html": true,
      +
      +			// Evaluate text as a json expression
      +			"text json": JSON.parse,
      +
      +			// Parse text as xml
      +			"text xml": jQuery.parseXML
      +		},
      +
      +		// For options that shouldn't be deep extended:
      +		// you can add your own custom options here if
      +		// and when you create one that shouldn't be
      +		// deep extended (see ajaxExtend)
      +		flatOptions: {
      +			url: true,
      +			context: true
      +		}
      +	},
      +
      +	// Creates a full fledged settings object into target
      +	// with both ajaxSettings and settings fields.
      +	// If target is omitted, writes into ajaxSettings.
      +	ajaxSetup: function( target, settings ) {
      +		return settings ?
      +
      +			// Building a settings object
      +			ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
      +
      +			// Extending ajaxSettings
      +			ajaxExtend( jQuery.ajaxSettings, target );
      +	},
      +
      +	ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
      +	ajaxTransport: addToPrefiltersOrTransports( transports ),
      +
      +	// Main method
      +	ajax: function( url, options ) {
      +
      +		// If url is an object, simulate pre-1.5 signature
      +		if ( typeof url === "object" ) {
      +			options = url;
      +			url = undefined;
      +		}
      +
      +		// Force options to be an object
      +		options = options || {};
      +
      +		var transport,
      +
      +			// URL without anti-cache param
      +			cacheURL,
      +
      +			// Response headers
      +			responseHeadersString,
      +			responseHeaders,
      +
      +			// timeout handle
      +			timeoutTimer,
      +
      +			// Url cleanup var
      +			urlAnchor,
      +
      +			// Request state (becomes false upon send and true upon completion)
      +			completed,
      +
      +			// To know if global events are to be dispatched
      +			fireGlobals,
      +
      +			// Loop variable
      +			i,
      +
      +			// uncached part of the url
      +			uncached,
      +
      +			// Create the final options object
      +			s = jQuery.ajaxSetup( {}, options ),
      +
      +			// Callbacks context
      +			callbackContext = s.context || s,
      +
      +			// Context for global events is callbackContext if it is a DOM node or jQuery collection
      +			globalEventContext = s.context &&
      +				( callbackContext.nodeType || callbackContext.jquery ) ?
      +					jQuery( callbackContext ) :
      +					jQuery.event,
      +
      +			// Deferreds
      +			deferred = jQuery.Deferred(),
      +			completeDeferred = jQuery.Callbacks( "once memory" ),
      +
      +			// Status-dependent callbacks
      +			statusCode = s.statusCode || {},
      +
      +			// Headers (they are sent all at once)
      +			requestHeaders = {},
      +			requestHeadersNames = {},
      +
      +			// Default abort message
      +			strAbort = "canceled",
      +
      +			// Fake xhr
      +			jqXHR = {
      +				readyState: 0,
      +
      +				// Builds headers hashtable if needed
      +				getResponseHeader: function( key ) {
      +					var match;
      +					if ( completed ) {
      +						if ( !responseHeaders ) {
      +							responseHeaders = {};
      +							while ( ( match = rheaders.exec( responseHeadersString ) ) ) {
      +								responseHeaders[ match[ 1 ].toLowerCase() ] = match[ 2 ];
      +							}
      +						}
      +						match = responseHeaders[ key.toLowerCase() ];
      +					}
      +					return match == null ? null : match;
      +				},
      +
      +				// Raw string
      +				getAllResponseHeaders: function() {
      +					return completed ? responseHeadersString : null;
      +				},
      +
      +				// Caches the header
      +				setRequestHeader: function( name, value ) {
      +					if ( completed == null ) {
      +						name = requestHeadersNames[ name.toLowerCase() ] =
      +							requestHeadersNames[ name.toLowerCase() ] || name;
      +						requestHeaders[ name ] = value;
      +					}
      +					return this;
      +				},
      +
      +				// Overrides response content-type header
      +				overrideMimeType: function( type ) {
      +					if ( completed == null ) {
      +						s.mimeType = type;
      +					}
      +					return this;
      +				},
      +
      +				// Status-dependent callbacks
      +				statusCode: function( map ) {
      +					var code;
      +					if ( map ) {
      +						if ( completed ) {
      +
      +							// Execute the appropriate callbacks
      +							jqXHR.always( map[ jqXHR.status ] );
      +						} else {
      +
      +							// Lazy-add the new callbacks in a way that preserves old ones
      +							for ( code in map ) {
      +								statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
      +							}
      +						}
      +					}
      +					return this;
      +				},
      +
      +				// Cancel the request
      +				abort: function( statusText ) {
      +					var finalText = statusText || strAbort;
      +					if ( transport ) {
      +						transport.abort( finalText );
      +					}
      +					done( 0, finalText );
      +					return this;
      +				}
      +			};
      +
      +		// Attach deferreds
      +		deferred.promise( jqXHR );
      +
      +		// Add protocol if not provided (prefilters might expect it)
      +		// Handle falsy url in the settings object (#10093: consistency with old signature)
      +		// We also use the url parameter if available
      +		s.url = ( ( url || s.url || location.href ) + "" )
      +			.replace( rprotocol, location.protocol + "//" );
      +
      +		// Alias method option to type as per ticket #12004
      +		s.type = options.method || options.type || s.method || s.type;
      +
      +		// Extract dataTypes list
      +		s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ];
      +
      +		// A cross-domain request is in order when the origin doesn't match the current origin.
      +		if ( s.crossDomain == null ) {
      +			urlAnchor = document.createElement( "a" );
      +
      +			// Support: IE <=8 - 11, Edge 12 - 15
      +			// IE throws exception on accessing the href property if url is malformed,
      +			// e.g. http://example.com:80x/
      +			try {
      +				urlAnchor.href = s.url;
      +
      +				// Support: IE <=8 - 11 only
      +				// Anchor's host property isn't correctly set when s.url is relative
      +				urlAnchor.href = urlAnchor.href;
      +				s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !==
      +					urlAnchor.protocol + "//" + urlAnchor.host;
      +			} catch ( e ) {
      +
      +				// If there is an error parsing the URL, assume it is crossDomain,
      +				// it can be rejected by the transport if it is invalid
      +				s.crossDomain = true;
      +			}
      +		}
      +
      +		// Convert data if not already a string
      +		if ( s.data && s.processData && typeof s.data !== "string" ) {
      +			s.data = jQuery.param( s.data, s.traditional );
      +		}
      +
      +		// Apply prefilters
      +		inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
      +
      +		// If request was aborted inside a prefilter, stop there
      +		if ( completed ) {
      +			return jqXHR;
      +		}
      +
      +		// We can fire global events as of now if asked to
      +		// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)
      +		fireGlobals = jQuery.event && s.global;
      +
      +		// Watch for a new set of requests
      +		if ( fireGlobals && jQuery.active++ === 0 ) {
      +			jQuery.event.trigger( "ajaxStart" );
      +		}
      +
      +		// Uppercase the type
      +		s.type = s.type.toUpperCase();
      +
      +		// Determine if request has content
      +		s.hasContent = !rnoContent.test( s.type );
      +
      +		// Save the URL in case we're toying with the If-Modified-Since
      +		// and/or If-None-Match header later on
      +		// Remove hash to simplify url manipulation
      +		cacheURL = s.url.replace( rhash, "" );
      +
      +		// More options handling for requests with no content
      +		if ( !s.hasContent ) {
      +
      +			// Remember the hash so we can put it back
      +			uncached = s.url.slice( cacheURL.length );
      +
      +			// If data is available and should be processed, append data to url
      +			if ( s.data && ( s.processData || typeof s.data === "string" ) ) {
      +				cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data;
      +
      +				// #9682: remove data so that it's not used in an eventual retry
      +				delete s.data;
      +			}
      +
      +			// Add or update anti-cache param if needed
      +			if ( s.cache === false ) {
      +				cacheURL = cacheURL.replace( rantiCache, "$1" );
      +				uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce++ ) + uncached;
      +			}
      +
      +			// Put hash and anti-cache on the URL that will be requested (gh-1732)
      +			s.url = cacheURL + uncached;
      +
      +		// Change '%20' to '+' if this is encoded form body content (gh-2658)
      +		} else if ( s.data && s.processData &&
      +			( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) {
      +			s.data = s.data.replace( r20, "+" );
      +		}
      +
      +		// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
      +		if ( s.ifModified ) {
      +			if ( jQuery.lastModified[ cacheURL ] ) {
      +				jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
      +			}
      +			if ( jQuery.etag[ cacheURL ] ) {
      +				jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
      +			}
      +		}
      +
      +		// Set the correct header, if data is being sent
      +		if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
      +			jqXHR.setRequestHeader( "Content-Type", s.contentType );
      +		}
      +
      +		// Set the Accepts header for the server, depending on the dataType
      +		jqXHR.setRequestHeader(
      +			"Accept",
      +			s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?
      +				s.accepts[ s.dataTypes[ 0 ] ] +
      +					( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
      +				s.accepts[ "*" ]
      +		);
      +
      +		// Check for headers option
      +		for ( i in s.headers ) {
      +			jqXHR.setRequestHeader( i, s.headers[ i ] );
      +		}
      +
      +		// Allow custom headers/mimetypes and early abort
      +		if ( s.beforeSend &&
      +			( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {
      +
      +			// Abort if not done already and return
      +			return jqXHR.abort();
      +		}
      +
      +		// Aborting is no longer a cancellation
      +		strAbort = "abort";
      +
      +		// Install callbacks on deferreds
      +		completeDeferred.add( s.complete );
      +		jqXHR.done( s.success );
      +		jqXHR.fail( s.error );
      +
      +		// Get transport
      +		transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
      +
      +		// If no transport, we auto-abort
      +		if ( !transport ) {
      +			done( -1, "No Transport" );
      +		} else {
      +			jqXHR.readyState = 1;
      +
      +			// Send global event
      +			if ( fireGlobals ) {
      +				globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
      +			}
      +
      +			// If request was aborted inside ajaxSend, stop there
      +			if ( completed ) {
      +				return jqXHR;
      +			}
      +
      +			// Timeout
      +			if ( s.async && s.timeout > 0 ) {
      +				timeoutTimer = window.setTimeout( function() {
      +					jqXHR.abort( "timeout" );
      +				}, s.timeout );
      +			}
      +
      +			try {
      +				completed = false;
      +				transport.send( requestHeaders, done );
      +			} catch ( e ) {
      +
      +				// Rethrow post-completion exceptions
      +				if ( completed ) {
      +					throw e;
      +				}
      +
      +				// Propagate others as results
      +				done( -1, e );
      +			}
      +		}
      +
      +		// Callback for when everything is done
      +		function done( status, nativeStatusText, responses, headers ) {
      +			var isSuccess, success, error, response, modified,
      +				statusText = nativeStatusText;
      +
      +			// Ignore repeat invocations
      +			if ( completed ) {
      +				return;
      +			}
      +
      +			completed = true;
      +
      +			// Clear timeout if it exists
      +			if ( timeoutTimer ) {
      +				window.clearTimeout( timeoutTimer );
      +			}
      +
      +			// Dereference transport for early garbage collection
      +			// (no matter how long the jqXHR object will be used)
      +			transport = undefined;
      +
      +			// Cache response headers
      +			responseHeadersString = headers || "";
      +
      +			// Set readyState
      +			jqXHR.readyState = status > 0 ? 4 : 0;
      +
      +			// Determine if successful
      +			isSuccess = status >= 200 && status < 300 || status === 304;
      +
      +			// Get response data
      +			if ( responses ) {
      +				response = ajaxHandleResponses( s, jqXHR, responses );
      +			}
      +
      +			// Convert no matter what (that way responseXXX fields are always set)
      +			response = ajaxConvert( s, response, jqXHR, isSuccess );
      +
      +			// If successful, handle type chaining
      +			if ( isSuccess ) {
      +
      +				// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
      +				if ( s.ifModified ) {
      +					modified = jqXHR.getResponseHeader( "Last-Modified" );
      +					if ( modified ) {
      +						jQuery.lastModified[ cacheURL ] = modified;
      +					}
      +					modified = jqXHR.getResponseHeader( "etag" );
      +					if ( modified ) {
      +						jQuery.etag[ cacheURL ] = modified;
      +					}
      +				}
      +
      +				// if no content
      +				if ( status === 204 || s.type === "HEAD" ) {
      +					statusText = "nocontent";
      +
      +				// if not modified
      +				} else if ( status === 304 ) {
      +					statusText = "notmodified";
      +
      +				// If we have data, let's convert it
      +				} else {
      +					statusText = response.state;
      +					success = response.data;
      +					error = response.error;
      +					isSuccess = !error;
      +				}
      +			} else {
      +
      +				// Extract error from statusText and normalize for non-aborts
      +				error = statusText;
      +				if ( status || !statusText ) {
      +					statusText = "error";
      +					if ( status < 0 ) {
      +						status = 0;
      +					}
      +				}
      +			}
      +
      +			// Set data for the fake xhr object
      +			jqXHR.status = status;
      +			jqXHR.statusText = ( nativeStatusText || statusText ) + "";
      +
      +			// Success/Error
      +			if ( isSuccess ) {
      +				deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
      +			} else {
      +				deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
      +			}
      +
      +			// Status-dependent callbacks
      +			jqXHR.statusCode( statusCode );
      +			statusCode = undefined;
      +
      +			if ( fireGlobals ) {
      +				globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
      +					[ jqXHR, s, isSuccess ? success : error ] );
      +			}
      +
      +			// Complete
      +			completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
      +
      +			if ( fireGlobals ) {
      +				globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
      +
      +				// Handle the global AJAX counter
      +				if ( !( --jQuery.active ) ) {
      +					jQuery.event.trigger( "ajaxStop" );
      +				}
      +			}
      +		}
      +
      +		return jqXHR;
      +	},
      +
      +	getJSON: function( url, data, callback ) {
      +		return jQuery.get( url, data, callback, "json" );
      +	},
      +
      +	getScript: function( url, callback ) {
      +		return jQuery.get( url, undefined, callback, "script" );
      +	}
      +} );
      +
      +jQuery.each( [ "get", "post" ], function( i, method ) {
      +	jQuery[ method ] = function( url, data, callback, type ) {
      +
      +		// Shift arguments if data argument was omitted
      +		if ( isFunction( data ) ) {
      +			type = type || callback;
      +			callback = data;
      +			data = undefined;
      +		}
      +
      +		// The url can be an options object (which then must have .url)
      +		return jQuery.ajax( jQuery.extend( {
      +			url: url,
      +			type: method,
      +			dataType: type,
      +			data: data,
      +			success: callback
      +		}, jQuery.isPlainObject( url ) && url ) );
      +	};
      +} );
      +
      +
      +jQuery._evalUrl = function( url ) {
      +	return jQuery.ajax( {
      +		url: url,
      +
      +		// Make this explicit, since user can override this through ajaxSetup (#11264)
      +		type: "GET",
      +		dataType: "script",
      +		cache: true,
      +		async: false,
      +		global: false,
      +		"throws": true
      +	} );
      +};
      +
      +
      +jQuery.fn.extend( {
      +	wrapAll: function( html ) {
      +		var wrap;
      +
      +		if ( this[ 0 ] ) {
      +			if ( isFunction( html ) ) {
      +				html = html.call( this[ 0 ] );
      +			}
      +
      +			// The elements to wrap the target around
      +			wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );
      +
      +			if ( this[ 0 ].parentNode ) {
      +				wrap.insertBefore( this[ 0 ] );
      +			}
      +
      +			wrap.map( function() {
      +				var elem = this;
      +
      +				while ( elem.firstElementChild ) {
      +					elem = elem.firstElementChild;
      +				}
      +
      +				return elem;
      +			} ).append( this );
      +		}
      +
      +		return this;
      +	},
      +
      +	wrapInner: function( html ) {
      +		if ( isFunction( html ) ) {
      +			return this.each( function( i ) {
      +				jQuery( this ).wrapInner( html.call( this, i ) );
      +			} );
      +		}
      +
      +		return this.each( function() {
      +			var self = jQuery( this ),
      +				contents = self.contents();
      +
      +			if ( contents.length ) {
      +				contents.wrapAll( html );
      +
      +			} else {
      +				self.append( html );
      +			}
      +		} );
      +	},
      +
      +	wrap: function( html ) {
      +		var htmlIsFunction = isFunction( html );
      +
      +		return this.each( function( i ) {
      +			jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );
      +		} );
      +	},
      +
      +	unwrap: function( selector ) {
      +		this.parent( selector ).not( "body" ).each( function() {
      +			jQuery( this ).replaceWith( this.childNodes );
      +		} );
      +		return this;
      +	}
      +} );
      +
      +
      +jQuery.expr.pseudos.hidden = function( elem ) {
      +	return !jQuery.expr.pseudos.visible( elem );
      +};
      +jQuery.expr.pseudos.visible = function( elem ) {
      +	return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );
      +};
      +
      +
      +
      +
      +jQuery.ajaxSettings.xhr = function() {
      +	try {
      +		return new window.XMLHttpRequest();
      +	} catch ( e ) {}
      +};
      +
      +var xhrSuccessStatus = {
      +
      +		// File protocol always yields status code 0, assume 200
      +		0: 200,
      +
      +		// Support: IE <=9 only
      +		// #1450: sometimes IE returns 1223 when it should be 204
      +		1223: 204
      +	},
      +	xhrSupported = jQuery.ajaxSettings.xhr();
      +
      +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
      +support.ajax = xhrSupported = !!xhrSupported;
      +
      +jQuery.ajaxTransport( function( options ) {
      +	var callback, errorCallback;
      +
      +	// Cross domain only allowed if supported through XMLHttpRequest
      +	if ( support.cors || xhrSupported && !options.crossDomain ) {
      +		return {
      +			send: function( headers, complete ) {
      +				var i,
      +					xhr = options.xhr();
      +
      +				xhr.open(
      +					options.type,
      +					options.url,
      +					options.async,
      +					options.username,
      +					options.password
      +				);
      +
      +				// Apply custom fields if provided
      +				if ( options.xhrFields ) {
      +					for ( i in options.xhrFields ) {
      +						xhr[ i ] = options.xhrFields[ i ];
      +					}
      +				}
      +
      +				// Override mime type if needed
      +				if ( options.mimeType && xhr.overrideMimeType ) {
      +					xhr.overrideMimeType( options.mimeType );
      +				}
      +
      +				// X-Requested-With header
      +				// For cross-domain requests, seeing as conditions for a preflight are
      +				// akin to a jigsaw puzzle, we simply never set it to be sure.
      +				// (it can always be set on a per-request basis or even using ajaxSetup)
      +				// For same-domain requests, won't change header if already provided.
      +				if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) {
      +					headers[ "X-Requested-With" ] = "XMLHttpRequest";
      +				}
      +
      +				// Set headers
      +				for ( i in headers ) {
      +					xhr.setRequestHeader( i, headers[ i ] );
      +				}
      +
      +				// Callback
      +				callback = function( type ) {
      +					return function() {
      +						if ( callback ) {
      +							callback = errorCallback = xhr.onload =
      +								xhr.onerror = xhr.onabort = xhr.ontimeout =
      +									xhr.onreadystatechange = null;
      +
      +							if ( type === "abort" ) {
      +								xhr.abort();
      +							} else if ( type === "error" ) {
      +
      +								// Support: IE <=9 only
      +								// On a manual native abort, IE9 throws
      +								// errors on any property access that is not readyState
      +								if ( typeof xhr.status !== "number" ) {
      +									complete( 0, "error" );
      +								} else {
      +									complete(
      +
      +										// File: protocol always yields status 0; see #8605, #14207
      +										xhr.status,
      +										xhr.statusText
      +									);
      +								}
      +							} else {
      +								complete(
      +									xhrSuccessStatus[ xhr.status ] || xhr.status,
      +									xhr.statusText,
      +
      +									// Support: IE <=9 only
      +									// IE9 has no XHR2 but throws on binary (trac-11426)
      +									// For XHR2 non-text, let the caller handle it (gh-2498)
      +									( xhr.responseType || "text" ) !== "text"  ||
      +									typeof xhr.responseText !== "string" ?
      +										{ binary: xhr.response } :
      +										{ text: xhr.responseText },
      +									xhr.getAllResponseHeaders()
      +								);
      +							}
      +						}
      +					};
      +				};
      +
      +				// Listen to events
      +				xhr.onload = callback();
      +				errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" );
      +
      +				// Support: IE 9 only
      +				// Use onreadystatechange to replace onabort
      +				// to handle uncaught aborts
      +				if ( xhr.onabort !== undefined ) {
      +					xhr.onabort = errorCallback;
      +				} else {
      +					xhr.onreadystatechange = function() {
      +
      +						// Check readyState before timeout as it changes
      +						if ( xhr.readyState === 4 ) {
      +
      +							// Allow onerror to be called first,
      +							// but that will not handle a native abort
      +							// Also, save errorCallback to a variable
      +							// as xhr.onerror cannot be accessed
      +							window.setTimeout( function() {
      +								if ( callback ) {
      +									errorCallback();
      +								}
      +							} );
      +						}
      +					};
      +				}
      +
      +				// Create the abort callback
      +				callback = callback( "abort" );
      +
      +				try {
      +
      +					// Do send the request (this may raise an exception)
      +					xhr.send( options.hasContent && options.data || null );
      +				} catch ( e ) {
      +
      +					// #14683: Only rethrow if this hasn't been notified as an error yet
      +					if ( callback ) {
      +						throw e;
      +					}
      +				}
      +			},
      +
      +			abort: function() {
      +				if ( callback ) {
      +					callback();
      +				}
      +			}
      +		};
      +	}
      +} );
      +
      +
      +
      +
      +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)
      +jQuery.ajaxPrefilter( function( s ) {
      +	if ( s.crossDomain ) {
      +		s.contents.script = false;
      +	}
      +} );
      +
      +// Install script dataType
      +jQuery.ajaxSetup( {
      +	accepts: {
      +		script: "text/javascript, application/javascript, " +
      +			"application/ecmascript, application/x-ecmascript"
      +	},
      +	contents: {
      +		script: /\b(?:java|ecma)script\b/
      +	},
      +	converters: {
      +		"text script": function( text ) {
      +			jQuery.globalEval( text );
      +			return text;
      +		}
      +	}
      +} );
      +
      +// Handle cache's special case and crossDomain
      +jQuery.ajaxPrefilter( "script", function( s ) {
      +	if ( s.cache === undefined ) {
      +		s.cache = false;
      +	}
      +	if ( s.crossDomain ) {
      +		s.type = "GET";
      +	}
      +} );
      +
      +// Bind script tag hack transport
      +jQuery.ajaxTransport( "script", function( s ) {
      +
      +	// This transport only deals with cross domain requests
      +	if ( s.crossDomain ) {
      +		var script, callback;
      +		return {
      +			send: function( _, complete ) {
      +				script = jQuery( "<script>" ).prop( {
      +					charset: s.scriptCharset,
      +					src: s.url
      +				} ).on(
      +					"load error",
      +					callback = function( evt ) {
      +						script.remove();
      +						callback = null;
      +						if ( evt ) {
      +							complete( evt.type === "error" ? 404 : 200, evt.type );
      +						}
      +					}
      +				);
      +
      +				// Use native DOM manipulation to avoid our domManip AJAX trickery
      +				document.head.appendChild( script[ 0 ] );
      +			},
      +			abort: function() {
      +				if ( callback ) {
      +					callback();
      +				}
      +			}
      +		};
      +	}
      +} );
      +
      +
      +
      +
      +var oldCallbacks = [],
      +	rjsonp = /(=)\?(?=&|$)|\?\?/;
      +
      +// Default jsonp settings
      +jQuery.ajaxSetup( {
      +	jsonp: "callback",
      +	jsonpCallback: function() {
      +		var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) );
      +		this[ callback ] = true;
      +		return callback;
      +	}
      +} );
      +
      +// Detect, normalize options and install callbacks for jsonp requests
      +jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
      +
      +	var callbackName, overwritten, responseContainer,
      +		jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?
      +			"url" :
      +			typeof s.data === "string" &&
      +				( s.contentType || "" )
      +					.indexOf( "application/x-www-form-urlencoded" ) === 0 &&
      +				rjsonp.test( s.data ) && "data"
      +		);
      +
      +	// Handle iff the expected data type is "jsonp" or we have a parameter to set
      +	if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {
      +
      +		// Get callback name, remembering preexisting value associated with it
      +		callbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?
      +			s.jsonpCallback() :
      +			s.jsonpCallback;
      +
      +		// Insert callback into url or form data
      +		if ( jsonProp ) {
      +			s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName );
      +		} else if ( s.jsonp !== false ) {
      +			s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
      +		}
      +
      +		// Use data converter to retrieve json after script execution
      +		s.converters[ "script json" ] = function() {
      +			if ( !responseContainer ) {
      +				jQuery.error( callbackName + " was not called" );
      +			}
      +			return responseContainer[ 0 ];
      +		};
      +
      +		// Force json dataType
      +		s.dataTypes[ 0 ] = "json";
      +
      +		// Install callback
      +		overwritten = window[ callbackName ];
      +		window[ callbackName ] = function() {
      +			responseContainer = arguments;
      +		};
      +
      +		// Clean-up function (fires after converters)
      +		jqXHR.always( function() {
      +
      +			// If previous value didn't exist - remove it
      +			if ( overwritten === undefined ) {
      +				jQuery( window ).removeProp( callbackName );
      +
      +			// Otherwise restore preexisting value
      +			} else {
      +				window[ callbackName ] = overwritten;
      +			}
      +
      +			// Save back as free
      +			if ( s[ callbackName ] ) {
      +
      +				// Make sure that re-using the options doesn't screw things around
      +				s.jsonpCallback = originalSettings.jsonpCallback;
      +
      +				// Save the callback name for future use
      +				oldCallbacks.push( callbackName );
      +			}
      +
      +			// Call if it was a function and we have a response
      +			if ( responseContainer && isFunction( overwritten ) ) {
      +				overwritten( responseContainer[ 0 ] );
      +			}
      +
      +			responseContainer = overwritten = undefined;
      +		} );
      +
      +		// Delegate to script
      +		return "script";
      +	}
      +} );
      +
      +
      +
      +
      +// Support: Safari 8 only
      +// In Safari 8 documents created via document.implementation.createHTMLDocument
      +// collapse sibling forms: the second one becomes a child of the first one.
      +// Because of that, this security measure has to be disabled in Safari 8.
      +// https://bugs.webkit.org/show_bug.cgi?id=137337
      +support.createHTMLDocument = ( function() {
      +	var body = document.implementation.createHTMLDocument( "" ).body;
      +	body.innerHTML = "<form></form><form></form>";
      +	return body.childNodes.length === 2;
      +} )();
      +
      +
      +// Argument "data" should be string of html
      +// context (optional): If specified, the fragment will be created in this context,
      +// defaults to document
      +// keepScripts (optional): If true, will include scripts passed in the html string
      +jQuery.parseHTML = function( data, context, keepScripts ) {
      +	if ( typeof data !== "string" ) {
      +		return [];
      +	}
      +	if ( typeof context === "boolean" ) {
      +		keepScripts = context;
      +		context = false;
      +	}
      +
      +	var base, parsed, scripts;
      +
      +	if ( !context ) {
      +
      +		// Stop scripts or inline event handlers from being executed immediately
      +		// by using document.implementation
      +		if ( support.createHTMLDocument ) {
      +			context = document.implementation.createHTMLDocument( "" );
      +
      +			// Set the base href for the created document
      +			// so any parsed elements with URLs
      +			// are based on the document's URL (gh-2965)
      +			base = context.createElement( "base" );
      +			base.href = document.location.href;
      +			context.head.appendChild( base );
      +		} else {
      +			context = document;
      +		}
      +	}
      +
      +	parsed = rsingleTag.exec( data );
      +	scripts = !keepScripts && [];
      +
      +	// Single tag
      +	if ( parsed ) {
      +		return [ context.createElement( parsed[ 1 ] ) ];
      +	}
      +
      +	parsed = buildFragment( [ data ], context, scripts );
      +
      +	if ( scripts && scripts.length ) {
      +		jQuery( scripts ).remove();
      +	}
      +
      +	return jQuery.merge( [], parsed.childNodes );
      +};
      +
      +
      +/**
      + * Load a url into a page
      + */
      +jQuery.fn.load = function( url, params, callback ) {
      +	var selector, type, response,
      +		self = this,
      +		off = url.indexOf( " " );
      +
      +	if ( off > -1 ) {
      +		selector = stripAndCollapse( url.slice( off ) );
      +		url = url.slice( 0, off );
      +	}
      +
      +	// If it's a function
      +	if ( isFunction( params ) ) {
      +
      +		// We assume that it's the callback
      +		callback = params;
      +		params = undefined;
      +
      +	// Otherwise, build a param string
      +	} else if ( params && typeof params === "object" ) {
      +		type = "POST";
      +	}
      +
      +	// If we have elements to modify, make the request
      +	if ( self.length > 0 ) {
      +		jQuery.ajax( {
      +			url: url,
      +
      +			// If "type" variable is undefined, then "GET" method will be used.
      +			// Make value of this field explicit since
      +			// user can override it through ajaxSetup method
      +			type: type || "GET",
      +			dataType: "html",
      +			data: params
      +		} ).done( function( responseText ) {
      +
      +			// Save response for use in complete callback
      +			response = arguments;
      +
      +			self.html( selector ?
      +
      +				// If a selector was specified, locate the right elements in a dummy div
      +				// Exclude scripts to avoid IE 'Permission Denied' errors
      +				jQuery( "<div>" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :
      +
      +				// Otherwise use the full result
      +				responseText );
      +
      +		// If the request succeeds, this function gets "data", "status", "jqXHR"
      +		// but they are ignored because response was set above.
      +		// If it fails, this function gets "jqXHR", "status", "error"
      +		} ).always( callback && function( jqXHR, status ) {
      +			self.each( function() {
      +				callback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );
      +			} );
      +		} );
      +	}
      +
      +	return this;
      +};
      +
      +
      +
      +
      +// Attach a bunch of functions for handling common AJAX events
      +jQuery.each( [
      +	"ajaxStart",
      +	"ajaxStop",
      +	"ajaxComplete",
      +	"ajaxError",
      +	"ajaxSuccess",
      +	"ajaxSend"
      +], function( i, type ) {
      +	jQuery.fn[ type ] = function( fn ) {
      +		return this.on( type, fn );
      +	};
      +} );
      +
      +
      +
      +
      +jQuery.expr.pseudos.animated = function( elem ) {
      +	return jQuery.grep( jQuery.timers, function( fn ) {
      +		return elem === fn.elem;
      +	} ).length;
      +};
      +
      +
      +
      +
      +jQuery.offset = {
      +	setOffset: function( elem, options, i ) {
      +		var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
      +			position = jQuery.css( elem, "position" ),
      +			curElem = jQuery( elem ),
      +			props = {};
      +
      +		// Set position first, in-case top/left are set even on static elem
      +		if ( position === "static" ) {
      +			elem.style.position = "relative";
      +		}
      +
      +		curOffset = curElem.offset();
      +		curCSSTop = jQuery.css( elem, "top" );
      +		curCSSLeft = jQuery.css( elem, "left" );
      +		calculatePosition = ( position === "absolute" || position === "fixed" ) &&
      +			( curCSSTop + curCSSLeft ).indexOf( "auto" ) > -1;
      +
      +		// Need to be able to calculate position if either
      +		// top or left is auto and position is either absolute or fixed
      +		if ( calculatePosition ) {
      +			curPosition = curElem.position();
      +			curTop = curPosition.top;
      +			curLeft = curPosition.left;
      +
      +		} else {
      +			curTop = parseFloat( curCSSTop ) || 0;
      +			curLeft = parseFloat( curCSSLeft ) || 0;
      +		}
      +
      +		if ( isFunction( options ) ) {
      +
      +			// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)
      +			options = options.call( elem, i, jQuery.extend( {}, curOffset ) );
      +		}
      +
      +		if ( options.top != null ) {
      +			props.top = ( options.top - curOffset.top ) + curTop;
      +		}
      +		if ( options.left != null ) {
      +			props.left = ( options.left - curOffset.left ) + curLeft;
      +		}
      +
      +		if ( "using" in options ) {
      +			options.using.call( elem, props );
      +
      +		} else {
      +			curElem.css( props );
      +		}
      +	}
      +};
      +
      +jQuery.fn.extend( {
      +
      +	// offset() relates an element's border box to the document origin
      +	offset: function( options ) {
      +
      +		// Preserve chaining for setter
      +		if ( arguments.length ) {
      +			return options === undefined ?
      +				this :
      +				this.each( function( i ) {
      +					jQuery.offset.setOffset( this, options, i );
      +				} );
      +		}
      +
      +		var rect, win,
      +			elem = this[ 0 ];
      +
      +		if ( !elem ) {
      +			return;
      +		}
      +
      +		// Return zeros for disconnected and hidden (display: none) elements (gh-2310)
      +		// Support: IE <=11 only
      +		// Running getBoundingClientRect on a
      +		// disconnected node in IE throws an error
      +		if ( !elem.getClientRects().length ) {
      +			return { top: 0, left: 0 };
      +		}
      +
      +		// Get document-relative position by adding viewport scroll to viewport-relative gBCR
      +		rect = elem.getBoundingClientRect();
      +		win = elem.ownerDocument.defaultView;
      +		return {
      +			top: rect.top + win.pageYOffset,
      +			left: rect.left + win.pageXOffset
      +		};
      +	},
      +
      +	// position() relates an element's margin box to its offset parent's padding box
      +	// This corresponds to the behavior of CSS absolute positioning
      +	position: function() {
      +		if ( !this[ 0 ] ) {
      +			return;
      +		}
      +
      +		var offsetParent, offset, doc,
      +			elem = this[ 0 ],
      +			parentOffset = { top: 0, left: 0 };
      +
      +		// position:fixed elements are offset from the viewport, which itself always has zero offset
      +		if ( jQuery.css( elem, "position" ) === "fixed" ) {
      +
      +			// Assume position:fixed implies availability of getBoundingClientRect
      +			offset = elem.getBoundingClientRect();
      +
      +		} else {
      +			offset = this.offset();
      +
      +			// Account for the *real* offset parent, which can be the document or its root element
      +			// when a statically positioned element is identified
      +			doc = elem.ownerDocument;
      +			offsetParent = elem.offsetParent || doc.documentElement;
      +			while ( offsetParent &&
      +				( offsetParent === doc.body || offsetParent === doc.documentElement ) &&
      +				jQuery.css( offsetParent, "position" ) === "static" ) {
      +
      +				offsetParent = offsetParent.parentNode;
      +			}
      +			if ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {
      +
      +				// Incorporate borders into its offset, since they are outside its content origin
      +				parentOffset = jQuery( offsetParent ).offset();
      +				parentOffset.top += jQuery.css( offsetParent, "borderTopWidth", true );
      +				parentOffset.left += jQuery.css( offsetParent, "borderLeftWidth", true );
      +			}
      +		}
      +
      +		// Subtract parent offsets and element margins
      +		return {
      +			top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ),
      +			left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true )
      +		};
      +	},
      +
      +	// This method will return documentElement in the following cases:
      +	// 1) For the element inside the iframe without offsetParent, this method will return
      +	//    documentElement of the parent window
      +	// 2) For the hidden or detached element
      +	// 3) For body or html element, i.e. in case of the html node - it will return itself
      +	//
      +	// but those exceptions were never presented as a real life use-cases
      +	// and might be considered as more preferable results.
      +	//
      +	// This logic, however, is not guaranteed and can change at any point in the future
      +	offsetParent: function() {
      +		return this.map( function() {
      +			var offsetParent = this.offsetParent;
      +
      +			while ( offsetParent && jQuery.css( offsetParent, "position" ) === "static" ) {
      +				offsetParent = offsetParent.offsetParent;
      +			}
      +
      +			return offsetParent || documentElement;
      +		} );
      +	}
      +} );
      +
      +// Create scrollLeft and scrollTop methods
      +jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) {
      +	var top = "pageYOffset" === prop;
      +
      +	jQuery.fn[ method ] = function( val ) {
      +		return access( this, function( elem, method, val ) {
      +
      +			// Coalesce documents and windows
      +			var win;
      +			if ( isWindow( elem ) ) {
      +				win = elem;
      +			} else if ( elem.nodeType === 9 ) {
      +				win = elem.defaultView;
      +			}
      +
      +			if ( val === undefined ) {
      +				return win ? win[ prop ] : elem[ method ];
      +			}
      +
      +			if ( win ) {
      +				win.scrollTo(
      +					!top ? val : win.pageXOffset,
      +					top ? val : win.pageYOffset
      +				);
      +
      +			} else {
      +				elem[ method ] = val;
      +			}
      +		}, method, val, arguments.length );
      +	};
      +} );
      +
      +// Support: Safari <=7 - 9.1, Chrome <=37 - 49
      +// Add the top/left cssHooks using jQuery.fn.position
      +// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
      +// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347
      +// getComputedStyle returns percent when specified for top/left/bottom/right;
      +// rather than make the css module depend on the offset module, just check for it here
      +jQuery.each( [ "top", "left" ], function( i, prop ) {
      +	jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
      +		function( elem, computed ) {
      +			if ( computed ) {
      +				computed = curCSS( elem, prop );
      +
      +				// If curCSS returns percentage, fallback to offset
      +				return rnumnonpx.test( computed ) ?
      +					jQuery( elem ).position()[ prop ] + "px" :
      +					computed;
      +			}
      +		}
      +	);
      +} );
      +
      +
      +// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
      +jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
      +	jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name },
      +		function( defaultExtra, funcName ) {
      +
      +		// Margin is only for outerHeight, outerWidth
      +		jQuery.fn[ funcName ] = function( margin, value ) {
      +			var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
      +				extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
      +
      +			return access( this, function( elem, type, value ) {
      +				var doc;
      +
      +				if ( isWindow( elem ) ) {
      +
      +					// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)
      +					return funcName.indexOf( "outer" ) === 0 ?
      +						elem[ "inner" + name ] :
      +						elem.document.documentElement[ "client" + name ];
      +				}
      +
      +				// Get document width or height
      +				if ( elem.nodeType === 9 ) {
      +					doc = elem.documentElement;
      +
      +					// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],
      +					// whichever is greatest
      +					return Math.max(
      +						elem.body[ "scroll" + name ], doc[ "scroll" + name ],
      +						elem.body[ "offset" + name ], doc[ "offset" + name ],
      +						doc[ "client" + name ]
      +					);
      +				}
      +
      +				return value === undefined ?
      +
      +					// Get width or height on the element, requesting but not forcing parseFloat
      +					jQuery.css( elem, type, extra ) :
      +
      +					// Set width or height on the element
      +					jQuery.style( elem, type, value, extra );
      +			}, type, chainable ? margin : undefined, chainable );
      +		};
      +	} );
      +} );
      +
      +
      +jQuery.each( ( "blur focus focusin focusout resize scroll click dblclick " +
      +	"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
      +	"change select submit keydown keypress keyup contextmenu" ).split( " " ),
      +	function( i, name ) {
      +
      +	// Handle event binding
      +	jQuery.fn[ name ] = function( data, fn ) {
      +		return arguments.length > 0 ?
      +			this.on( name, null, data, fn ) :
      +			this.trigger( name );
      +	};
      +} );
      +
      +jQuery.fn.extend( {
      +	hover: function( fnOver, fnOut ) {
      +		return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
      +	}
      +} );
      +
      +
      +
      +
      +jQuery.fn.extend( {
      +
      +	bind: function( types, data, fn ) {
      +		return this.on( types, null, data, fn );
      +	},
      +	unbind: function( types, fn ) {
      +		return this.off( types, null, fn );
      +	},
      +
      +	delegate: function( selector, types, data, fn ) {
      +		return this.on( types, selector, data, fn );
      +	},
      +	undelegate: function( selector, types, fn ) {
      +
      +		// ( namespace ) or ( selector, types [, fn] )
      +		return arguments.length === 1 ?
      +			this.off( selector, "**" ) :
      +			this.off( types, selector || "**", fn );
      +	}
      +} );
      +
      +// Bind a function to a context, optionally partially applying any
      +// arguments.
      +// jQuery.proxy is deprecated to promote standards (specifically Function#bind)
      +// However, it is not slated for removal any time soon
      +jQuery.proxy = function( fn, context ) {
      +	var tmp, args, proxy;
      +
      +	if ( typeof context === "string" ) {
      +		tmp = fn[ context ];
      +		context = fn;
      +		fn = tmp;
      +	}
      +
      +	// Quick check to determine if target is callable, in the spec
      +	// this throws a TypeError, but we will just return undefined.
      +	if ( !isFunction( fn ) ) {
      +		return undefined;
      +	}
      +
      +	// Simulated bind
      +	args = slice.call( arguments, 2 );
      +	proxy = function() {
      +		return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
      +	};
      +
      +	// Set the guid of unique handler to the same of original handler, so it can be removed
      +	proxy.guid = fn.guid = fn.guid || jQuery.guid++;
      +
      +	return proxy;
      +};
      +
      +jQuery.holdReady = function( hold ) {
      +	if ( hold ) {
      +		jQuery.readyWait++;
      +	} else {
      +		jQuery.ready( true );
      +	}
      +};
      +jQuery.isArray = Array.isArray;
      +jQuery.parseJSON = JSON.parse;
      +jQuery.nodeName = nodeName;
      +jQuery.isFunction = isFunction;
      +jQuery.isWindow = isWindow;
      +jQuery.camelCase = camelCase;
      +jQuery.type = toType;
      +
      +jQuery.now = Date.now;
      +
      +jQuery.isNumeric = function( obj ) {
      +
      +	// As of jQuery 3.0, isNumeric is limited to
      +	// strings and numbers (primitives or objects)
      +	// that can be coerced to finite numbers (gh-2662)
      +	var type = jQuery.type( obj );
      +	return ( type === "number" || type === "string" ) &&
      +
      +		// parseFloat NaNs numeric-cast false positives ("")
      +		// ...but misinterprets leading-number strings, particularly hex literals ("0x...")
      +		// subtraction forces infinities to NaN
      +		!isNaN( obj - parseFloat( obj ) );
      +};
      +
      +
      +
      +
      +// Register as a named AMD module, since jQuery can be concatenated with other
      +// files that may use define, but not via a proper concatenation script that
      +// understands anonymous AMD modules. A named AMD is safest and most robust
      +// way to register. Lowercase jquery is used because AMD module names are
      +// derived from file names, and jQuery is normally delivered in a lowercase
      +// file name. Do this after creating the global so that if an AMD module wants
      +// to call noConflict to hide this version of jQuery, it will work.
      +
      +// Note that for maximum portability, libraries that are not jQuery should
      +// declare themselves as anonymous modules, and avoid setting a global if an
      +// AMD loader is present. jQuery is a special case. For more information, see
      +// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon
      +
      +if ( typeof define === "function" && define.amd ) {
      +	define( "jquery", [], function() {
      +		return jQuery;
      +	} );
      +}
      +
      +
      +
      +
      +var
      +
      +	// Map over jQuery in case of overwrite
      +	_jQuery = window.jQuery,
      +
      +	// Map over the $ in case of overwrite
      +	_$ = window.$;
      +
      +jQuery.noConflict = function( deep ) {
      +	if ( window.$ === jQuery ) {
      +		window.$ = _$;
      +	}
      +
      +	if ( deep && window.jQuery === jQuery ) {
      +		window.jQuery = _jQuery;
      +	}
      +
      +	return jQuery;
      +};
      +
      +// Expose jQuery and $ identifiers, even in AMD
      +// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
      +// and CommonJS for browser emulators (#13566)
      +if ( !noGlobal ) {
      +	window.jQuery = window.$ = jQuery;
      +}
      +
      +
      +
      +
      +return jQuery;
      +} );
      diff --git a/docs/site/testapidocs/jquery/jquery-migrate-3.0.1.js b/docs/site/testapidocs/jquery/jquery-migrate-3.0.1.js
      new file mode 100644
      index 00000000..6c1d4ff2
      --- /dev/null
      +++ b/docs/site/testapidocs/jquery/jquery-migrate-3.0.1.js
      @@ -0,0 +1,628 @@
      +/*!
      + * jQuery Migrate - v3.0.1 - 2017-09-26
      + * Copyright jQuery Foundation and other contributors
      + */
      +;( function( factory ) {
      +	if ( typeof define === "function" && define.amd ) {
      +
      +		// AMD. Register as an anonymous module.
      +		define( [ "jquery" ], window, factory );
      +	} else if ( typeof module === "object" && module.exports ) {
      +
      +		// Node/CommonJS
      +		// eslint-disable-next-line no-undef
      +		module.exports = factory( require( "jquery" ), window );
      +	} else {
      +
      +		// Browser globals
      +		factory( jQuery, window );
      +	}
      +} )( function( jQuery, window ) {
      +"use strict";
      +
      +
      +jQuery.migrateVersion = "3.0.1";
      +
      +jQuery.migrateMute = true;
      +
      +/* exported migrateWarn, migrateWarnFunc, migrateWarnProp */
      +
      +( function() {
      +
      +	var rbadVersions = /^[12]\./;
      +
      +	// Support: IE9 only
      +	// IE9 only creates console object when dev tools are first opened
      +	// IE9 console is a host object, callable but doesn't have .apply()
      +	if ( !window.console || !window.console.log ) {
      +		return;
      +	}
      +
      +	// Need jQuery 3.0.0+ and no older Migrate loaded
      +	if ( !jQuery || rbadVersions.test( jQuery.fn.jquery ) ) {
      +		window.console.log( "JQMIGRATE: jQuery 3.0.0+ REQUIRED" );
      +	}
      +	if ( jQuery.migrateWarnings ) {
      +		window.console.log( "JQMIGRATE: Migrate plugin loaded multiple times" );
      +	}
      +
      +	// Show a message on the console so devs know we're active
      +	window.console.log( "JQMIGRATE: Migrate is installed" +
      +		( jQuery.migrateMute ? "" : " with logging active" ) +
      +		", version " + jQuery.migrateVersion );
      +
      +} )();
      +
      +var warnedAbout = {};
      +
      +// List of warnings already given; public read only
      +jQuery.migrateWarnings = [];
      +
      +// Set to false to disable traces that appear with warnings
      +if ( jQuery.migrateTrace === undefined ) {
      +	jQuery.migrateTrace = true;
      +}
      +
      +// Forget any warnings we've already given; public
      +jQuery.migrateReset = function() {
      +	warnedAbout = {};
      +	jQuery.migrateWarnings.length = 0;
      +};
      +
      +function migrateWarn( msg ) {
      +	var console = window.console;
      +	if ( !warnedAbout[ msg ] ) {
      +		warnedAbout[ msg ] = true;
      +		jQuery.migrateWarnings.push( msg );
      +		if ( console && console.warn && !jQuery.migrateMute ) {
      +			console.warn( "JQMIGRATE: " + msg );
      +			if ( jQuery.migrateTrace && console.trace ) {
      +				console.trace();
      +			}
      +		}
      +	}
      +}
      +
      +function migrateWarnProp( obj, prop, value, msg ) {
      +	Object.defineProperty( obj, prop, {
      +		configurable: true,
      +		enumerable: true,
      +		get: function() {
      +			migrateWarn( msg );
      +			return value;
      +		},
      +		set: function( newValue ) {
      +			migrateWarn( msg );
      +			value = newValue;
      +		}
      +	} );
      +}
      +
      +function migrateWarnFunc( obj, prop, newFunc, msg ) {
      +	obj[ prop ] = function() {
      +		migrateWarn( msg );
      +		return newFunc.apply( this, arguments );
      +	};
      +}
      +
      +if ( window.document.compatMode === "BackCompat" ) {
      +
      +	// JQuery has never supported or tested Quirks Mode
      +	migrateWarn( "jQuery is not compatible with Quirks Mode" );
      +}
      +
      +
      +var oldInit = jQuery.fn.init,
      +	oldIsNumeric = jQuery.isNumeric,
      +	oldFind = jQuery.find,
      +	rattrHashTest = /\[(\s*[-\w]+\s*)([~|^$*]?=)\s*([-\w#]*?#[-\w#]*)\s*\]/,
      +	rattrHashGlob = /\[(\s*[-\w]+\s*)([~|^$*]?=)\s*([-\w#]*?#[-\w#]*)\s*\]/g;
      +
      +jQuery.fn.init = function( arg1 ) {
      +	var args = Array.prototype.slice.call( arguments );
      +
      +	if ( typeof arg1 === "string" && arg1 === "#" ) {
      +
      +		// JQuery( "#" ) is a bogus ID selector, but it returned an empty set before jQuery 3.0
      +		migrateWarn( "jQuery( '#' ) is not a valid selector" );
      +		args[ 0 ] = [];
      +	}
      +
      +	return oldInit.apply( this, args );
      +};
      +jQuery.fn.init.prototype = jQuery.fn;
      +
      +jQuery.find = function( selector ) {
      +	var args = Array.prototype.slice.call( arguments );
      +
      +	// Support: PhantomJS 1.x
      +	// String#match fails to match when used with a //g RegExp, only on some strings
      +	if ( typeof selector === "string" && rattrHashTest.test( selector ) ) {
      +
      +		// The nonstandard and undocumented unquoted-hash was removed in jQuery 1.12.0
      +		// First see if qS thinks it's a valid selector, if so avoid a false positive
      +		try {
      +			window.document.querySelector( selector );
      +		} catch ( err1 ) {
      +
      +			// Didn't *look* valid to qSA, warn and try quoting what we think is the value
      +			selector = selector.replace( rattrHashGlob, function( _, attr, op, value ) {
      +				return "[" + attr + op + "\"" + value + "\"]";
      +			} );
      +
      +			// If the regexp *may* have created an invalid selector, don't update it
      +			// Note that there may be false alarms if selector uses jQuery extensions
      +			try {
      +				window.document.querySelector( selector );
      +				migrateWarn( "Attribute selector with '#' must be quoted: " + args[ 0 ] );
      +				args[ 0 ] = selector;
      +			} catch ( err2 ) {
      +				migrateWarn( "Attribute selector with '#' was not fixed: " + args[ 0 ] );
      +			}
      +		}
      +	}
      +
      +	return oldFind.apply( this, args );
      +};
      +
      +// Copy properties attached to original jQuery.find method (e.g. .attr, .isXML)
      +var findProp;
      +for ( findProp in oldFind ) {
      +	if ( Object.prototype.hasOwnProperty.call( oldFind, findProp ) ) {
      +		jQuery.find[ findProp ] = oldFind[ findProp ];
      +	}
      +}
      +
      +// The number of elements contained in the matched element set
      +jQuery.fn.size = function() {
      +	migrateWarn( "jQuery.fn.size() is deprecated and removed; use the .length property" );
      +	return this.length;
      +};
      +
      +jQuery.parseJSON = function() {
      +	migrateWarn( "jQuery.parseJSON is deprecated; use JSON.parse" );
      +	return JSON.parse.apply( null, arguments );
      +};
      +
      +jQuery.isNumeric = function( val ) {
      +
      +	// The jQuery 2.2.3 implementation of isNumeric
      +	function isNumeric2( obj ) {
      +		var realStringObj = obj && obj.toString();
      +		return !jQuery.isArray( obj ) && ( realStringObj - parseFloat( realStringObj ) + 1 ) >= 0;
      +	}
      +
      +	var newValue = oldIsNumeric( val ),
      +		oldValue = isNumeric2( val );
      +
      +	if ( newValue !== oldValue ) {
      +		migrateWarn( "jQuery.isNumeric() should not be called on constructed objects" );
      +	}
      +
      +	return oldValue;
      +};
      +
      +migrateWarnFunc( jQuery, "holdReady", jQuery.holdReady,
      +	"jQuery.holdReady is deprecated" );
      +
      +migrateWarnFunc( jQuery, "unique", jQuery.uniqueSort,
      +	"jQuery.unique is deprecated; use jQuery.uniqueSort" );
      +
      +// Now jQuery.expr.pseudos is the standard incantation
      +migrateWarnProp( jQuery.expr, "filters", jQuery.expr.pseudos,
      +	"jQuery.expr.filters is deprecated; use jQuery.expr.pseudos" );
      +migrateWarnProp( jQuery.expr, ":", jQuery.expr.pseudos,
      +	"jQuery.expr[':'] is deprecated; use jQuery.expr.pseudos" );
      +
      +
      +var oldAjax = jQuery.ajax;
      +
      +jQuery.ajax = function( ) {
      +	var jQXHR = oldAjax.apply( this, arguments );
      +
      +	// Be sure we got a jQXHR (e.g., not sync)
      +	if ( jQXHR.promise ) {
      +		migrateWarnFunc( jQXHR, "success", jQXHR.done,
      +			"jQXHR.success is deprecated and removed" );
      +		migrateWarnFunc( jQXHR, "error", jQXHR.fail,
      +			"jQXHR.error is deprecated and removed" );
      +		migrateWarnFunc( jQXHR, "complete", jQXHR.always,
      +			"jQXHR.complete is deprecated and removed" );
      +	}
      +
      +	return jQXHR;
      +};
      +
      +
      +var oldRemoveAttr = jQuery.fn.removeAttr,
      +	oldToggleClass = jQuery.fn.toggleClass,
      +	rmatchNonSpace = /\S+/g;
      +
      +jQuery.fn.removeAttr = function( name ) {
      +	var self = this;
      +
      +	jQuery.each( name.match( rmatchNonSpace ), function( i, attr ) {
      +		if ( jQuery.expr.match.bool.test( attr ) ) {
      +			migrateWarn( "jQuery.fn.removeAttr no longer sets boolean properties: " + attr );
      +			self.prop( attr, false );
      +		}
      +	} );
      +
      +	return oldRemoveAttr.apply( this, arguments );
      +};
      +
      +jQuery.fn.toggleClass = function( state ) {
      +
      +	// Only deprecating no-args or single boolean arg
      +	if ( state !== undefined && typeof state !== "boolean" ) {
      +		return oldToggleClass.apply( this, arguments );
      +	}
      +
      +	migrateWarn( "jQuery.fn.toggleClass( boolean ) is deprecated" );
      +
      +	// Toggle entire class name of each element
      +	return this.each( function() {
      +		var className = this.getAttribute && this.getAttribute( "class" ) || "";
      +
      +		if ( className ) {
      +			jQuery.data( this, "__className__", className );
      +		}
      +
      +		// If the element has a class name or if we're passed `false`,
      +		// then remove the whole classname (if there was one, the above saved it).
      +		// Otherwise bring back whatever was previously saved (if anything),
      +		// falling back to the empty string if nothing was stored.
      +		if ( this.setAttribute ) {
      +			this.setAttribute( "class",
      +				className || state === false ?
      +				"" :
      +				jQuery.data( this, "__className__" ) || ""
      +			);
      +		}
      +	} );
      +};
      +
      +
      +var internalSwapCall = false;
      +
      +// If this version of jQuery has .swap(), don't false-alarm on internal uses
      +if ( jQuery.swap ) {
      +	jQuery.each( [ "height", "width", "reliableMarginRight" ], function( _, name ) {
      +		var oldHook = jQuery.cssHooks[ name ] && jQuery.cssHooks[ name ].get;
      +
      +		if ( oldHook ) {
      +			jQuery.cssHooks[ name ].get = function() {
      +				var ret;
      +
      +				internalSwapCall = true;
      +				ret = oldHook.apply( this, arguments );
      +				internalSwapCall = false;
      +				return ret;
      +			};
      +		}
      +	} );
      +}
      +
      +jQuery.swap = function( elem, options, callback, args ) {
      +	var ret, name,
      +		old = {};
      +
      +	if ( !internalSwapCall ) {
      +		migrateWarn( "jQuery.swap() is undocumented and deprecated" );
      +	}
      +
      +	// Remember the old values, and insert the new ones
      +	for ( name in options ) {
      +		old[ name ] = elem.style[ name ];
      +		elem.style[ name ] = options[ name ];
      +	}
      +
      +	ret = callback.apply( elem, args || [] );
      +
      +	// Revert the old values
      +	for ( name in options ) {
      +		elem.style[ name ] = old[ name ];
      +	}
      +
      +	return ret;
      +};
      +
      +var oldData = jQuery.data;
      +
      +jQuery.data = function( elem, name, value ) {
      +	var curData;
      +
      +	// Name can be an object, and each entry in the object is meant to be set as data
      +	if ( name && typeof name === "object" && arguments.length === 2 ) {
      +		curData = jQuery.hasData( elem ) && oldData.call( this, elem );
      +		var sameKeys = {};
      +		for ( var key in name ) {
      +			if ( key !== jQuery.camelCase( key ) ) {
      +				migrateWarn( "jQuery.data() always sets/gets camelCased names: " + key );
      +				curData[ key ] = name[ key ];
      +			} else {
      +				sameKeys[ key ] = name[ key ];
      +			}
      +		}
      +
      +		oldData.call( this, elem, sameKeys );
      +
      +		return name;
      +	}
      +
      +	// If the name is transformed, look for the un-transformed name in the data object
      +	if ( name && typeof name === "string" && name !== jQuery.camelCase( name ) ) {
      +		curData = jQuery.hasData( elem ) && oldData.call( this, elem );
      +		if ( curData && name in curData ) {
      +			migrateWarn( "jQuery.data() always sets/gets camelCased names: " + name );
      +			if ( arguments.length > 2 ) {
      +				curData[ name ] = value;
      +			}
      +			return curData[ name ];
      +		}
      +	}
      +
      +	return oldData.apply( this, arguments );
      +};
      +
      +var oldTweenRun = jQuery.Tween.prototype.run;
      +var linearEasing = function( pct ) {
      +		return pct;
      +	};
      +
      +jQuery.Tween.prototype.run = function( ) {
      +	if ( jQuery.easing[ this.easing ].length > 1 ) {
      +		migrateWarn(
      +			"'jQuery.easing." + this.easing.toString() + "' should use only one argument"
      +		);
      +
      +		jQuery.easing[ this.easing ] = linearEasing;
      +	}
      +
      +	oldTweenRun.apply( this, arguments );
      +};
      +
      +jQuery.fx.interval = jQuery.fx.interval || 13;
      +
      +// Support: IE9, Android <=4.4
      +// Avoid false positives on browsers that lack rAF
      +if ( window.requestAnimationFrame ) {
      +	migrateWarnProp( jQuery.fx, "interval", jQuery.fx.interval,
      +		"jQuery.fx.interval is deprecated" );
      +}
      +
      +var oldLoad = jQuery.fn.load,
      +	oldEventAdd = jQuery.event.add,
      +	originalFix = jQuery.event.fix;
      +
      +jQuery.event.props = [];
      +jQuery.event.fixHooks = {};
      +
      +migrateWarnProp( jQuery.event.props, "concat", jQuery.event.props.concat,
      +	"jQuery.event.props.concat() is deprecated and removed" );
      +
      +jQuery.event.fix = function( originalEvent ) {
      +	var event,
      +		type = originalEvent.type,
      +		fixHook = this.fixHooks[ type ],
      +		props = jQuery.event.props;
      +
      +	if ( props.length ) {
      +		migrateWarn( "jQuery.event.props are deprecated and removed: " + props.join() );
      +		while ( props.length ) {
      +			jQuery.event.addProp( props.pop() );
      +		}
      +	}
      +
      +	if ( fixHook && !fixHook._migrated_ ) {
      +		fixHook._migrated_ = true;
      +		migrateWarn( "jQuery.event.fixHooks are deprecated and removed: " + type );
      +		if ( ( props = fixHook.props ) && props.length ) {
      +			while ( props.length ) {
      +				jQuery.event.addProp( props.pop() );
      +			}
      +		}
      +	}
      +
      +	event = originalFix.call( this, originalEvent );
      +
      +	return fixHook && fixHook.filter ? fixHook.filter( event, originalEvent ) : event;
      +};
      +
      +jQuery.event.add = function( elem, types ) {
      +
      +	// This misses the multiple-types case but that seems awfully rare
      +	if ( elem === window && types === "load" && window.document.readyState === "complete" ) {
      +		migrateWarn( "jQuery(window).on('load'...) called after load event occurred" );
      +	}
      +	return oldEventAdd.apply( this, arguments );
      +};
      +
      +jQuery.each( [ "load", "unload", "error" ], function( _, name ) {
      +
      +	jQuery.fn[ name ] = function() {
      +		var args = Array.prototype.slice.call( arguments, 0 );
      +
      +		// If this is an ajax load() the first arg should be the string URL;
      +		// technically this could also be the "Anything" arg of the event .load()
      +		// which just goes to show why this dumb signature has been deprecated!
      +		// jQuery custom builds that exclude the Ajax module justifiably die here.
      +		if ( name === "load" && typeof args[ 0 ] === "string" ) {
      +			return oldLoad.apply( this, args );
      +		}
      +
      +		migrateWarn( "jQuery.fn." + name + "() is deprecated" );
      +
      +		args.splice( 0, 0, name );
      +		if ( arguments.length ) {
      +			return this.on.apply( this, args );
      +		}
      +
      +		// Use .triggerHandler here because:
      +		// - load and unload events don't need to bubble, only applied to window or image
      +		// - error event should not bubble to window, although it does pre-1.7
      +		// See http://bugs.jquery.com/ticket/11820
      +		this.triggerHandler.apply( this, args );
      +		return this;
      +	};
      +
      +} );
      +
      +jQuery.each( ( "blur focus focusin focusout resize scroll click dblclick " +
      +	"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
      +	"change select submit keydown keypress keyup contextmenu" ).split( " " ),
      +	function( i, name ) {
      +
      +	// Handle event binding
      +	jQuery.fn[ name ] = function( data, fn ) {
      +		migrateWarn( "jQuery.fn." + name + "() event shorthand is deprecated" );
      +		return arguments.length > 0 ?
      +			this.on( name, null, data, fn ) :
      +			this.trigger( name );
      +	};
      +} );
      +
      +// Trigger "ready" event only once, on document ready
      +jQuery( function() {
      +	jQuery( window.document ).triggerHandler( "ready" );
      +} );
      +
      +jQuery.event.special.ready = {
      +	setup: function() {
      +		if ( this === window.document ) {
      +			migrateWarn( "'ready' event is deprecated" );
      +		}
      +	}
      +};
      +
      +jQuery.fn.extend( {
      +
      +	bind: function( types, data, fn ) {
      +		migrateWarn( "jQuery.fn.bind() is deprecated" );
      +		return this.on( types, null, data, fn );
      +	},
      +	unbind: function( types, fn ) {
      +		migrateWarn( "jQuery.fn.unbind() is deprecated" );
      +		return this.off( types, null, fn );
      +	},
      +	delegate: function( selector, types, data, fn ) {
      +		migrateWarn( "jQuery.fn.delegate() is deprecated" );
      +		return this.on( types, selector, data, fn );
      +	},
      +	undelegate: function( selector, types, fn ) {
      +		migrateWarn( "jQuery.fn.undelegate() is deprecated" );
      +		return arguments.length === 1 ?
      +			this.off( selector, "**" ) :
      +			this.off( types, selector || "**", fn );
      +	},
      +	hover: function( fnOver, fnOut ) {
      +		migrateWarn( "jQuery.fn.hover() is deprecated" );
      +		return this.on( "mouseenter", fnOver ).on( "mouseleave", fnOut || fnOver );
      +	}
      +} );
      +
      +
      +var oldOffset = jQuery.fn.offset;
      +
      +jQuery.fn.offset = function() {
      +	var docElem,
      +		elem = this[ 0 ],
      +		origin = { top: 0, left: 0 };
      +
      +	if ( !elem || !elem.nodeType ) {
      +		migrateWarn( "jQuery.fn.offset() requires a valid DOM element" );
      +		return origin;
      +	}
      +
      +	docElem = ( elem.ownerDocument || window.document ).documentElement;
      +	if ( !jQuery.contains( docElem, elem ) ) {
      +		migrateWarn( "jQuery.fn.offset() requires an element connected to a document" );
      +		return origin;
      +	}
      +
      +	return oldOffset.apply( this, arguments );
      +};
      +
      +
      +var oldParam = jQuery.param;
      +
      +jQuery.param = function( data, traditional ) {
      +	var ajaxTraditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;
      +
      +	if ( traditional === undefined && ajaxTraditional ) {
      +
      +		migrateWarn( "jQuery.param() no longer uses jQuery.ajaxSettings.traditional" );
      +		traditional = ajaxTraditional;
      +	}
      +
      +	return oldParam.call( this, data, traditional );
      +};
      +
      +var oldSelf = jQuery.fn.andSelf || jQuery.fn.addBack;
      +
      +jQuery.fn.andSelf = function() {
      +	migrateWarn( "jQuery.fn.andSelf() is deprecated and removed, use jQuery.fn.addBack()" );
      +	return oldSelf.apply( this, arguments );
      +};
      +
      +
      +var oldDeferred = jQuery.Deferred,
      +	tuples = [
      +
      +		// Action, add listener, callbacks, .then handlers, final state
      +		[ "resolve", "done", jQuery.Callbacks( "once memory" ),
      +			jQuery.Callbacks( "once memory" ), "resolved" ],
      +		[ "reject", "fail", jQuery.Callbacks( "once memory" ),
      +			jQuery.Callbacks( "once memory" ), "rejected" ],
      +		[ "notify", "progress", jQuery.Callbacks( "memory" ),
      +			jQuery.Callbacks( "memory" ) ]
      +	];
      +
      +jQuery.Deferred = function( func ) {
      +	var deferred = oldDeferred(),
      +		promise = deferred.promise();
      +
      +	deferred.pipe = promise.pipe = function( /* fnDone, fnFail, fnProgress */ ) {
      +		var fns = arguments;
      +
      +		migrateWarn( "deferred.pipe() is deprecated" );
      +
      +		return jQuery.Deferred( function( newDefer ) {
      +			jQuery.each( tuples, function( i, tuple ) {
      +				var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];
      +
      +				// Deferred.done(function() { bind to newDefer or newDefer.resolve })
      +				// deferred.fail(function() { bind to newDefer or newDefer.reject })
      +				// deferred.progress(function() { bind to newDefer or newDefer.notify })
      +				deferred[ tuple[ 1 ] ]( function() {
      +					var returned = fn && fn.apply( this, arguments );
      +					if ( returned && jQuery.isFunction( returned.promise ) ) {
      +						returned.promise()
      +							.done( newDefer.resolve )
      +							.fail( newDefer.reject )
      +							.progress( newDefer.notify );
      +					} else {
      +						newDefer[ tuple[ 0 ] + "With" ](
      +							this === promise ? newDefer.promise() : this,
      +							fn ? [ returned ] : arguments
      +						);
      +					}
      +				} );
      +			} );
      +			fns = null;
      +		} ).promise();
      +
      +	};
      +
      +	if ( func ) {
      +		func.call( deferred, deferred );
      +	}
      +
      +	return deferred;
      +};
      +
      +// Preserve handler of uncaught exceptions in promise chains
      +jQuery.Deferred.exceptionHook = oldDeferred.exceptionHook;
      +
      +return jQuery;
      +} );
      diff --git a/docs/site/testapidocs/jquery/jquery-ui.css b/docs/site/testapidocs/jquery/jquery-ui.css
      new file mode 100644
      index 00000000..c4487b41
      --- /dev/null
      +++ b/docs/site/testapidocs/jquery/jquery-ui.css
      @@ -0,0 +1,582 @@
      +/*! jQuery UI - v1.12.1 - 2018-12-06
      +* http://jqueryui.com
      +* Includes: core.css, autocomplete.css, menu.css, theme.css
      +* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=custom-theme&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgImgOpacityContent=75&bgImgOpacityHeader=75&cornerRadiusShadow=8px&offsetLeftShadow=-8px&offsetTopShadow=-8px&thicknessShadow=8px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=%23aaaaaa&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=%23aaaaaa&iconColorError=%23cd0a0a&fcError=%23cd0a0a&borderColorError=%23cd0a0a&bgTextureError=glass&bgColorError=%23fef1ec&iconColorHighlight=%232e83ff&fcHighlight=%23363636&borderColorHighlight=%23fcefa1&bgTextureHighlight=glass&bgColorHighlight=%23fbf9ee&iconColorActive=%23454545&fcActive=%23212121&borderColorActive=%23aaaaaa&bgTextureActive=glass&bgColorActive=%23dadada&iconColorHover=%23454545&fcHover=%23212121&borderColorHover=%23999999&bgTextureHover=glass&bgColorHover=%23dadada&iconColorDefault=%23888888&fcDefault=%23555555&borderColorDefault=%23d3d3d3&bgTextureDefault=glass&bgColorDefault=%23e6e6e6&iconColorContent=%23222222&fcContent=%23222222&borderColorContent=%23aaaaaa&bgTextureContent=flat&bgColorContent=%23ffffff&iconColorHeader=%23222222&fcHeader=%23222222&borderColorHeader=%23aaaaaa&bgTextureHeader=highlight_soft&bgColorHeader=%23cccccc&cornerRadius=4px&fwDefault=normal&fsDefault=1.1em&ffDefault=Verdana%2CArial%2Csans-serif
      +* Copyright jQuery Foundation and other contributors; Licensed MIT */
      +
      +/* Layout helpers
      +----------------------------------*/
      +.ui-helper-hidden {
      +	display: none;
      +}
      +.ui-helper-hidden-accessible {
      +	border: 0;
      +	clip: rect(0 0 0 0);
      +	height: 1px;
      +	margin: -1px;
      +	overflow: hidden;
      +	padding: 0;
      +	position: absolute;
      +	width: 1px;
      +}
      +.ui-helper-reset {
      +	margin: 0;
      +	padding: 0;
      +	border: 0;
      +	outline: 0;
      +	line-height: 1.3;
      +	text-decoration: none;
      +	font-size: 100%;
      +	list-style: none;
      +}
      +.ui-helper-clearfix:before,
      +.ui-helper-clearfix:after {
      +	content: "";
      +	display: table;
      +	border-collapse: collapse;
      +}
      +.ui-helper-clearfix:after {
      +	clear: both;
      +}
      +.ui-helper-zfix {
      +	width: 100%;
      +	height: 100%;
      +	top: 0;
      +	left: 0;
      +	position: absolute;
      +	opacity: 0;
      +	filter:Alpha(Opacity=0); /* support: IE8 */
      +}
      +
      +.ui-front {
      +	z-index: 100;
      +}
      +
      +
      +/* Interaction Cues
      +----------------------------------*/
      +.ui-state-disabled {
      +	cursor: default !important;
      +	pointer-events: none;
      +}
      +
      +
      +/* Icons
      +----------------------------------*/
      +.ui-icon {
      +	display: inline-block;
      +	vertical-align: middle;
      +	margin-top: -.25em;
      +	position: relative;
      +	text-indent: -99999px;
      +	overflow: hidden;
      +	background-repeat: no-repeat;
      +}
      +
      +.ui-widget-icon-block {
      +	left: 50%;
      +	margin-left: -8px;
      +	display: block;
      +}
      +
      +/* Misc visuals
      +----------------------------------*/
      +
      +/* Overlays */
      +.ui-widget-overlay {
      +	position: fixed;
      +	top: 0;
      +	left: 0;
      +	width: 100%;
      +	height: 100%;
      +}
      +.ui-autocomplete {
      +	position: absolute;
      +	top: 0;
      +	left: 0;
      +	cursor: default;
      +}
      +.ui-menu {
      +	list-style: none;
      +	padding: 0;
      +	margin: 0;
      +	display: block;
      +	outline: 0;
      +}
      +.ui-menu .ui-menu {
      +	position: absolute;
      +}
      +.ui-menu .ui-menu-item {
      +	margin: 0;
      +	cursor: pointer;
      +	/* support: IE10, see #8844 */
      +	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
      +}
      +.ui-menu .ui-menu-item-wrapper {
      +	position: relative;
      +	padding: 3px 1em 3px .4em;
      +}
      +.ui-menu .ui-menu-divider {
      +	margin: 5px 0;
      +	height: 0;
      +	font-size: 0;
      +	line-height: 0;
      +	border-width: 1px 0 0 0;
      +}
      +.ui-menu .ui-state-focus,
      +.ui-menu .ui-state-active {
      +	margin: -1px;
      +}
      +
      +/* icon support */
      +.ui-menu-icons {
      +	position: relative;
      +}
      +.ui-menu-icons .ui-menu-item-wrapper {
      +	padding-left: 2em;
      +}
      +
      +/* left-aligned */
      +.ui-menu .ui-icon {
      +	position: absolute;
      +	top: 0;
      +	bottom: 0;
      +	left: .2em;
      +	margin: auto 0;
      +}
      +
      +/* right-aligned */
      +.ui-menu .ui-menu-icon {
      +	left: auto;
      +	right: 0;
      +}
      +
      +/* Component containers
      +----------------------------------*/
      +.ui-widget {
      +	font-family: Verdana,Arial,sans-serif;
      +	font-size: 1.1em;
      +}
      +.ui-widget .ui-widget {
      +	font-size: 1em;
      +}
      +.ui-widget input,
      +.ui-widget select,
      +.ui-widget textarea,
      +.ui-widget button {
      +	font-family: Verdana,Arial,sans-serif;
      +	font-size: 1em;
      +}
      +.ui-widget.ui-widget-content {
      +	border: 1px solid #d3d3d3;
      +}
      +.ui-widget-content {
      +	border: 1px solid #aaaaaa;
      +	background: #ffffff;
      +	color: #222222;
      +}
      +.ui-widget-content a {
      +	color: #222222;
      +}
      +.ui-widget-header {
      +	border: 1px solid #aaaaaa;
      +	background: #cccccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
      +	color: #222222;
      +	font-weight: bold;
      +}
      +.ui-widget-header a {
      +	color: #222222;
      +}
      +
      +/* Interaction states
      +----------------------------------*/
      +.ui-state-default,
      +.ui-widget-content .ui-state-default,
      +.ui-widget-header .ui-state-default,
      +.ui-button,
      +
      +/* We use html here because we need a greater specificity to make sure disabled
      +works properly when clicked or hovered */
      +html .ui-button.ui-state-disabled:hover,
      +html .ui-button.ui-state-disabled:active {
      +	border: 1px solid #d3d3d3;
      +	background: #e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
      +	font-weight: normal;
      +	color: #555555;
      +}
      +.ui-state-default a,
      +.ui-state-default a:link,
      +.ui-state-default a:visited,
      +a.ui-button,
      +a:link.ui-button,
      +a:visited.ui-button,
      +.ui-button {
      +	color: #555555;
      +	text-decoration: none;
      +}
      +.ui-state-hover,
      +.ui-widget-content .ui-state-hover,
      +.ui-widget-header .ui-state-hover,
      +.ui-state-focus,
      +.ui-widget-content .ui-state-focus,
      +.ui-widget-header .ui-state-focus,
      +.ui-button:hover,
      +.ui-button:focus {
      +	border: 1px solid #999999;
      +	background: #dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;
      +	font-weight: normal;
      +	color: #212121;
      +}
      +.ui-state-hover a,
      +.ui-state-hover a:hover,
      +.ui-state-hover a:link,
      +.ui-state-hover a:visited,
      +.ui-state-focus a,
      +.ui-state-focus a:hover,
      +.ui-state-focus a:link,
      +.ui-state-focus a:visited,
      +a.ui-button:hover,
      +a.ui-button:focus {
      +	color: #212121;
      +	text-decoration: none;
      +}
      +
      +.ui-visual-focus {
      +	box-shadow: 0 0 3px 1px rgb(94, 158, 214);
      +}
      +.ui-state-active,
      +.ui-widget-content .ui-state-active,
      +.ui-widget-header .ui-state-active,
      +a.ui-button:active,
      +.ui-button:active,
      +.ui-button.ui-state-active:hover {
      +	border: 1px solid #aaaaaa;
      +	background: #dadada url("images/ui-bg_glass_65_dadada_1x400.png") 50% 50% repeat-x;
      +	font-weight: normal;
      +	color: #212121;
      +}
      +.ui-icon-background,
      +.ui-state-active .ui-icon-background {
      +	border: #aaaaaa;
      +	background-color: #212121;
      +}
      +.ui-state-active a,
      +.ui-state-active a:link,
      +.ui-state-active a:visited {
      +	color: #212121;
      +	text-decoration: none;
      +}
      +
      +/* Interaction Cues
      +----------------------------------*/
      +.ui-state-highlight,
      +.ui-widget-content .ui-state-highlight,
      +.ui-widget-header .ui-state-highlight {
      +	border: 1px solid #fcefa1;
      +	background: #fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
      +	color: #363636;
      +}
      +.ui-state-checked {
      +	border: 1px solid #fcefa1;
      +	background: #fbf9ee;
      +}
      +.ui-state-highlight a,
      +.ui-widget-content .ui-state-highlight a,
      +.ui-widget-header .ui-state-highlight a {
      +	color: #363636;
      +}
      +.ui-state-error,
      +.ui-widget-content .ui-state-error,
      +.ui-widget-header .ui-state-error {
      +	border: 1px solid #cd0a0a;
      +	background: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
      +	color: #cd0a0a;
      +}
      +.ui-state-error a,
      +.ui-widget-content .ui-state-error a,
      +.ui-widget-header .ui-state-error a {
      +	color: #cd0a0a;
      +}
      +.ui-state-error-text,
      +.ui-widget-content .ui-state-error-text,
      +.ui-widget-header .ui-state-error-text {
      +	color: #cd0a0a;
      +}
      +.ui-priority-primary,
      +.ui-widget-content .ui-priority-primary,
      +.ui-widget-header .ui-priority-primary {
      +	font-weight: bold;
      +}
      +.ui-priority-secondary,
      +.ui-widget-content .ui-priority-secondary,
      +.ui-widget-header .ui-priority-secondary {
      +	opacity: .7;
      +	filter:Alpha(Opacity=70); /* support: IE8 */
      +	font-weight: normal;
      +}
      +.ui-state-disabled,
      +.ui-widget-content .ui-state-disabled,
      +.ui-widget-header .ui-state-disabled {
      +	opacity: .35;
      +	filter:Alpha(Opacity=35); /* support: IE8 */
      +	background-image: none;
      +}
      +.ui-state-disabled .ui-icon {
      +	filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
      +}
      +
      +/* Icons
      +----------------------------------*/
      +
      +/* states and images */
      +.ui-icon {
      +	width: 16px;
      +	height: 16px;
      +}
      +.ui-icon,
      +.ui-widget-content .ui-icon {
      +	background-image: url("images/ui-icons_222222_256x240.png");
      +}
      +.ui-widget-header .ui-icon {
      +	background-image: url("images/ui-icons_222222_256x240.png");
      +}
      +.ui-state-hover .ui-icon,
      +.ui-state-focus .ui-icon,
      +.ui-button:hover .ui-icon,
      +.ui-button:focus .ui-icon {
      +	background-image: url("images/ui-icons_454545_256x240.png");
      +}
      +.ui-state-active .ui-icon,
      +.ui-button:active .ui-icon {
      +	background-image: url("images/ui-icons_454545_256x240.png");
      +}
      +.ui-state-highlight .ui-icon,
      +.ui-button .ui-state-highlight.ui-icon {
      +	background-image: url("images/ui-icons_2e83ff_256x240.png");
      +}
      +.ui-state-error .ui-icon,
      +.ui-state-error-text .ui-icon {
      +	background-image: url("images/ui-icons_cd0a0a_256x240.png");
      +}
      +.ui-button .ui-icon {
      +	background-image: url("images/ui-icons_888888_256x240.png");
      +}
      +
      +/* positioning */
      +.ui-icon-blank { background-position: 16px 16px; }
      +.ui-icon-caret-1-n { background-position: 0 0; }
      +.ui-icon-caret-1-ne { background-position: -16px 0; }
      +.ui-icon-caret-1-e { background-position: -32px 0; }
      +.ui-icon-caret-1-se { background-position: -48px 0; }
      +.ui-icon-caret-1-s { background-position: -65px 0; }
      +.ui-icon-caret-1-sw { background-position: -80px 0; }
      +.ui-icon-caret-1-w { background-position: -96px 0; }
      +.ui-icon-caret-1-nw { background-position: -112px 0; }
      +.ui-icon-caret-2-n-s { background-position: -128px 0; }
      +.ui-icon-caret-2-e-w { background-position: -144px 0; }
      +.ui-icon-triangle-1-n { background-position: 0 -16px; }
      +.ui-icon-triangle-1-ne { background-position: -16px -16px; }
      +.ui-icon-triangle-1-e { background-position: -32px -16px; }
      +.ui-icon-triangle-1-se { background-position: -48px -16px; }
      +.ui-icon-triangle-1-s { background-position: -65px -16px; }
      +.ui-icon-triangle-1-sw { background-position: -80px -16px; }
      +.ui-icon-triangle-1-w { background-position: -96px -16px; }
      +.ui-icon-triangle-1-nw { background-position: -112px -16px; }
      +.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
      +.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
      +.ui-icon-arrow-1-n { background-position: 0 -32px; }
      +.ui-icon-arrow-1-ne { background-position: -16px -32px; }
      +.ui-icon-arrow-1-e { background-position: -32px -32px; }
      +.ui-icon-arrow-1-se { background-position: -48px -32px; }
      +.ui-icon-arrow-1-s { background-position: -65px -32px; }
      +.ui-icon-arrow-1-sw { background-position: -80px -32px; }
      +.ui-icon-arrow-1-w { background-position: -96px -32px; }
      +.ui-icon-arrow-1-nw { background-position: -112px -32px; }
      +.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
      +.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
      +.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
      +.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
      +.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
      +.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
      +.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
      +.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
      +.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
      +.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
      +.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
      +.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
      +.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
      +.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
      +.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
      +.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
      +.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
      +.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
      +.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
      +.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
      +.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
      +.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
      +.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
      +.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
      +.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
      +.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
      +.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
      +.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
      +.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
      +.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
      +.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
      +.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
      +.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
      +.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
      +.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
      +.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
      +.ui-icon-arrow-4 { background-position: 0 -80px; }
      +.ui-icon-arrow-4-diag { background-position: -16px -80px; }
      +.ui-icon-extlink { background-position: -32px -80px; }
      +.ui-icon-newwin { background-position: -48px -80px; }
      +.ui-icon-refresh { background-position: -64px -80px; }
      +.ui-icon-shuffle { background-position: -80px -80px; }
      +.ui-icon-transfer-e-w { background-position: -96px -80px; }
      +.ui-icon-transferthick-e-w { background-position: -112px -80px; }
      +.ui-icon-folder-collapsed { background-position: 0 -96px; }
      +.ui-icon-folder-open { background-position: -16px -96px; }
      +.ui-icon-document { background-position: -32px -96px; }
      +.ui-icon-document-b { background-position: -48px -96px; }
      +.ui-icon-note { background-position: -64px -96px; }
      +.ui-icon-mail-closed { background-position: -80px -96px; }
      +.ui-icon-mail-open { background-position: -96px -96px; }
      +.ui-icon-suitcase { background-position: -112px -96px; }
      +.ui-icon-comment { background-position: -128px -96px; }
      +.ui-icon-person { background-position: -144px -96px; }
      +.ui-icon-print { background-position: -160px -96px; }
      +.ui-icon-trash { background-position: -176px -96px; }
      +.ui-icon-locked { background-position: -192px -96px; }
      +.ui-icon-unlocked { background-position: -208px -96px; }
      +.ui-icon-bookmark { background-position: -224px -96px; }
      +.ui-icon-tag { background-position: -240px -96px; }
      +.ui-icon-home { background-position: 0 -112px; }
      +.ui-icon-flag { background-position: -16px -112px; }
      +.ui-icon-calendar { background-position: -32px -112px; }
      +.ui-icon-cart { background-position: -48px -112px; }
      +.ui-icon-pencil { background-position: -64px -112px; }
      +.ui-icon-clock { background-position: -80px -112px; }
      +.ui-icon-disk { background-position: -96px -112px; }
      +.ui-icon-calculator { background-position: -112px -112px; }
      +.ui-icon-zoomin { background-position: -128px -112px; }
      +.ui-icon-zoomout { background-position: -144px -112px; }
      +.ui-icon-search { background-position: -160px -112px; }
      +.ui-icon-wrench { background-position: -176px -112px; }
      +.ui-icon-gear { background-position: -192px -112px; }
      +.ui-icon-heart { background-position: -208px -112px; }
      +.ui-icon-star { background-position: -224px -112px; }
      +.ui-icon-link { background-position: -240px -112px; }
      +.ui-icon-cancel { background-position: 0 -128px; }
      +.ui-icon-plus { background-position: -16px -128px; }
      +.ui-icon-plusthick { background-position: -32px -128px; }
      +.ui-icon-minus { background-position: -48px -128px; }
      +.ui-icon-minusthick { background-position: -64px -128px; }
      +.ui-icon-close { background-position: -80px -128px; }
      +.ui-icon-closethick { background-position: -96px -128px; }
      +.ui-icon-key { background-position: -112px -128px; }
      +.ui-icon-lightbulb { background-position: -128px -128px; }
      +.ui-icon-scissors { background-position: -144px -128px; }
      +.ui-icon-clipboard { background-position: -160px -128px; }
      +.ui-icon-copy { background-position: -176px -128px; }
      +.ui-icon-contact { background-position: -192px -128px; }
      +.ui-icon-image { background-position: -208px -128px; }
      +.ui-icon-video { background-position: -224px -128px; }
      +.ui-icon-script { background-position: -240px -128px; }
      +.ui-icon-alert { background-position: 0 -144px; }
      +.ui-icon-info { background-position: -16px -144px; }
      +.ui-icon-notice { background-position: -32px -144px; }
      +.ui-icon-help { background-position: -48px -144px; }
      +.ui-icon-check { background-position: -64px -144px; }
      +.ui-icon-bullet { background-position: -80px -144px; }
      +.ui-icon-radio-on { background-position: -96px -144px; }
      +.ui-icon-radio-off { background-position: -112px -144px; }
      +.ui-icon-pin-w { background-position: -128px -144px; }
      +.ui-icon-pin-s { background-position: -144px -144px; }
      +.ui-icon-play { background-position: 0 -160px; }
      +.ui-icon-pause { background-position: -16px -160px; }
      +.ui-icon-seek-next { background-position: -32px -160px; }
      +.ui-icon-seek-prev { background-position: -48px -160px; }
      +.ui-icon-seek-end { background-position: -64px -160px; }
      +.ui-icon-seek-start { background-position: -80px -160px; }
      +/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
      +.ui-icon-seek-first { background-position: -80px -160px; }
      +.ui-icon-stop { background-position: -96px -160px; }
      +.ui-icon-eject { background-position: -112px -160px; }
      +.ui-icon-volume-off { background-position: -128px -160px; }
      +.ui-icon-volume-on { background-position: -144px -160px; }
      +.ui-icon-power { background-position: 0 -176px; }
      +.ui-icon-signal-diag { background-position: -16px -176px; }
      +.ui-icon-signal { background-position: -32px -176px; }
      +.ui-icon-battery-0 { background-position: -48px -176px; }
      +.ui-icon-battery-1 { background-position: -64px -176px; }
      +.ui-icon-battery-2 { background-position: -80px -176px; }
      +.ui-icon-battery-3 { background-position: -96px -176px; }
      +.ui-icon-circle-plus { background-position: 0 -192px; }
      +.ui-icon-circle-minus { background-position: -16px -192px; }
      +.ui-icon-circle-close { background-position: -32px -192px; }
      +.ui-icon-circle-triangle-e { background-position: -48px -192px; }
      +.ui-icon-circle-triangle-s { background-position: -64px -192px; }
      +.ui-icon-circle-triangle-w { background-position: -80px -192px; }
      +.ui-icon-circle-triangle-n { background-position: -96px -192px; }
      +.ui-icon-circle-arrow-e { background-position: -112px -192px; }
      +.ui-icon-circle-arrow-s { background-position: -128px -192px; }
      +.ui-icon-circle-arrow-w { background-position: -144px -192px; }
      +.ui-icon-circle-arrow-n { background-position: -160px -192px; }
      +.ui-icon-circle-zoomin { background-position: -176px -192px; }
      +.ui-icon-circle-zoomout { background-position: -192px -192px; }
      +.ui-icon-circle-check { background-position: -208px -192px; }
      +.ui-icon-circlesmall-plus { background-position: 0 -208px; }
      +.ui-icon-circlesmall-minus { background-position: -16px -208px; }
      +.ui-icon-circlesmall-close { background-position: -32px -208px; }
      +.ui-icon-squaresmall-plus { background-position: -48px -208px; }
      +.ui-icon-squaresmall-minus { background-position: -64px -208px; }
      +.ui-icon-squaresmall-close { background-position: -80px -208px; }
      +.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
      +.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
      +.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
      +.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
      +.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
      +.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
      +
      +
      +/* Misc visuals
      +----------------------------------*/
      +
      +/* Corner radius */
      +.ui-corner-all,
      +.ui-corner-top,
      +.ui-corner-left,
      +.ui-corner-tl {
      +	border-top-left-radius: 4px;
      +}
      +.ui-corner-all,
      +.ui-corner-top,
      +.ui-corner-right,
      +.ui-corner-tr {
      +	border-top-right-radius: 4px;
      +}
      +.ui-corner-all,
      +.ui-corner-bottom,
      +.ui-corner-left,
      +.ui-corner-bl {
      +	border-bottom-left-radius: 4px;
      +}
      +.ui-corner-all,
      +.ui-corner-bottom,
      +.ui-corner-right,
      +.ui-corner-br {
      +	border-bottom-right-radius: 4px;
      +}
      +
      +/* Overlays */
      +.ui-widget-overlay {
      +	background: #aaaaaa;
      +	opacity: .3;
      +	filter: Alpha(Opacity=30); /* support: IE8 */
      +}
      +.ui-widget-shadow {
      +	-webkit-box-shadow: -8px -8px 8px #aaaaaa;
      +	box-shadow: -8px -8px 8px #aaaaaa;
      +}
      diff --git a/docs/site/testapidocs/jquery/jquery-ui.js b/docs/site/testapidocs/jquery/jquery-ui.js
      new file mode 100644
      index 00000000..87fb2143
      --- /dev/null
      +++ b/docs/site/testapidocs/jquery/jquery-ui.js
      @@ -0,0 +1,2659 @@
      +/*! jQuery UI - v1.12.1 - 2018-12-06
      +* http://jqueryui.com
      +* Includes: widget.js, position.js, keycode.js, unique-id.js, widgets/autocomplete.js, widgets/menu.js
      +* Copyright jQuery Foundation and other contributors; Licensed MIT */
      +
      +(function( factory ) {
      +	if ( typeof define === "function" && define.amd ) {
      +
      +		// AMD. Register as an anonymous module.
      +		define([ "jquery" ], factory );
      +	} else {
      +
      +		// Browser globals
      +		factory( jQuery );
      +	}
      +}(function( $ ) {
      +
      +$.ui = $.ui || {};
      +
      +var version = $.ui.version = "1.12.1";
      +
      +
      +/*!
      + * jQuery UI Widget 1.12.1
      + * http://jqueryui.com
      + *
      + * Copyright jQuery Foundation and other contributors
      + * Released under the MIT license.
      + * http://jquery.org/license
      + */
      +
      +//>>label: Widget
      +//>>group: Core
      +//>>description: Provides a factory for creating stateful widgets with a common API.
      +//>>docs: http://api.jqueryui.com/jQuery.widget/
      +//>>demos: http://jqueryui.com/widget/
      +
      +
      +
      +var widgetUuid = 0;
      +var widgetSlice = Array.prototype.slice;
      +
      +$.cleanData = ( function( orig ) {
      +	return function( elems ) {
      +		var events, elem, i;
      +		for ( i = 0; ( elem = elems[ i ] ) != null; i++ ) {
      +			try {
      +
      +				// Only trigger remove when necessary to save time
      +				events = $._data( elem, "events" );
      +				if ( events && events.remove ) {
      +					$( elem ).triggerHandler( "remove" );
      +				}
      +
      +			// Http://bugs.jquery.com/ticket/8235
      +			} catch ( e ) {}
      +		}
      +		orig( elems );
      +	};
      +} )( $.cleanData );
      +
      +$.widget = function( name, base, prototype ) {
      +	var existingConstructor, constructor, basePrototype;
      +
      +	// ProxiedPrototype allows the provided prototype to remain unmodified
      +	// so that it can be used as a mixin for multiple widgets (#8876)
      +	var proxiedPrototype = {};
      +
      +	var namespace = name.split( "." )[ 0 ];
      +	name = name.split( "." )[ 1 ];
      +	var fullName = namespace + "-" + name;
      +
      +	if ( !prototype ) {
      +		prototype = base;
      +		base = $.Widget;
      +	}
      +
      +	if ( $.isArray( prototype ) ) {
      +		prototype = $.extend.apply( null, [ {} ].concat( prototype ) );
      +	}
      +
      +	// Create selector for plugin
      +	$.expr[ ":" ][ fullName.toLowerCase() ] = function( elem ) {
      +		return !!$.data( elem, fullName );
      +	};
      +
      +	$[ namespace ] = $[ namespace ] || {};
      +	existingConstructor = $[ namespace ][ name ];
      +	constructor = $[ namespace ][ name ] = function( options, element ) {
      +
      +		// Allow instantiation without "new" keyword
      +		if ( !this._createWidget ) {
      +			return new constructor( options, element );
      +		}
      +
      +		// Allow instantiation without initializing for simple inheritance
      +		// must use "new" keyword (the code above always passes args)
      +		if ( arguments.length ) {
      +			this._createWidget( options, element );
      +		}
      +	};
      +
      +	// Extend with the existing constructor to carry over any static properties
      +	$.extend( constructor, existingConstructor, {
      +		version: prototype.version,
      +
      +		// Copy the object used to create the prototype in case we need to
      +		// redefine the widget later
      +		_proto: $.extend( {}, prototype ),
      +
      +		// Track widgets that inherit from this widget in case this widget is
      +		// redefined after a widget inherits from it
      +		_childConstructors: []
      +	} );
      +
      +	basePrototype = new base();
      +
      +	// We need to make the options hash a property directly on the new instance
      +	// otherwise we'll modify the options hash on the prototype that we're
      +	// inheriting from
      +	basePrototype.options = $.widget.extend( {}, basePrototype.options );
      +	$.each( prototype, function( prop, value ) {
      +		if ( !$.isFunction( value ) ) {
      +			proxiedPrototype[ prop ] = value;
      +			return;
      +		}
      +		proxiedPrototype[ prop ] = ( function() {
      +			function _super() {
      +				return base.prototype[ prop ].apply( this, arguments );
      +			}
      +
      +			function _superApply( args ) {
      +				return base.prototype[ prop ].apply( this, args );
      +			}
      +
      +			return function() {
      +				var __super = this._super;
      +				var __superApply = this._superApply;
      +				var returnValue;
      +
      +				this._super = _super;
      +				this._superApply = _superApply;
      +
      +				returnValue = value.apply( this, arguments );
      +
      +				this._super = __super;
      +				this._superApply = __superApply;
      +
      +				return returnValue;
      +			};
      +		} )();
      +	} );
      +	constructor.prototype = $.widget.extend( basePrototype, {
      +
      +		// TODO: remove support for widgetEventPrefix
      +		// always use the name + a colon as the prefix, e.g., draggable:start
      +		// don't prefix for widgets that aren't DOM-based
      +		widgetEventPrefix: existingConstructor ? ( basePrototype.widgetEventPrefix || name ) : name
      +	}, proxiedPrototype, {
      +		constructor: constructor,
      +		namespace: namespace,
      +		widgetName: name,
      +		widgetFullName: fullName
      +	} );
      +
      +	// If this widget is being redefined then we need to find all widgets that
      +	// are inheriting from it and redefine all of them so that they inherit from
      +	// the new version of this widget. We're essentially trying to replace one
      +	// level in the prototype chain.
      +	if ( existingConstructor ) {
      +		$.each( existingConstructor._childConstructors, function( i, child ) {
      +			var childPrototype = child.prototype;
      +
      +			// Redefine the child widget using the same prototype that was
      +			// originally used, but inherit from the new version of the base
      +			$.widget( childPrototype.namespace + "." + childPrototype.widgetName, constructor,
      +				child._proto );
      +		} );
      +
      +		// Remove the list of existing child constructors from the old constructor
      +		// so the old child constructors can be garbage collected
      +		delete existingConstructor._childConstructors;
      +	} else {
      +		base._childConstructors.push( constructor );
      +	}
      +
      +	$.widget.bridge( name, constructor );
      +
      +	return constructor;
      +};
      +
      +$.widget.extend = function( target ) {
      +	var input = widgetSlice.call( arguments, 1 );
      +	var inputIndex = 0;
      +	var inputLength = input.length;
      +	var key;
      +	var value;
      +
      +	for ( ; inputIndex < inputLength; inputIndex++ ) {
      +		for ( key in input[ inputIndex ] ) {
      +			value = input[ inputIndex ][ key ];
      +			if ( input[ inputIndex ].hasOwnProperty( key ) && value !== undefined ) {
      +
      +				// Clone objects
      +				if ( $.isPlainObject( value ) ) {
      +					target[ key ] = $.isPlainObject( target[ key ] ) ?
      +						$.widget.extend( {}, target[ key ], value ) :
      +
      +						// Don't extend strings, arrays, etc. with objects
      +						$.widget.extend( {}, value );
      +
      +				// Copy everything else by reference
      +				} else {
      +					target[ key ] = value;
      +				}
      +			}
      +		}
      +	}
      +	return target;
      +};
      +
      +$.widget.bridge = function( name, object ) {
      +	var fullName = object.prototype.widgetFullName || name;
      +	$.fn[ name ] = function( options ) {
      +		var isMethodCall = typeof options === "string";
      +		var args = widgetSlice.call( arguments, 1 );
      +		var returnValue = this;
      +
      +		if ( isMethodCall ) {
      +
      +			// If this is an empty collection, we need to have the instance method
      +			// return undefined instead of the jQuery instance
      +			if ( !this.length && options === "instance" ) {
      +				returnValue = undefined;
      +			} else {
      +				this.each( function() {
      +					var methodValue;
      +					var instance = $.data( this, fullName );
      +
      +					if ( options === "instance" ) {
      +						returnValue = instance;
      +						return false;
      +					}
      +
      +					if ( !instance ) {
      +						return $.error( "cannot call methods on " + name +
      +							" prior to initialization; " +
      +							"attempted to call method '" + options + "'" );
      +					}
      +
      +					if ( !$.isFunction( instance[ options ] ) || options.charAt( 0 ) === "_" ) {
      +						return $.error( "no such method '" + options + "' for " + name +
      +							" widget instance" );
      +					}
      +
      +					methodValue = instance[ options ].apply( instance, args );
      +
      +					if ( methodValue !== instance && methodValue !== undefined ) {
      +						returnValue = methodValue && methodValue.jquery ?
      +							returnValue.pushStack( methodValue.get() ) :
      +							methodValue;
      +						return false;
      +					}
      +				} );
      +			}
      +		} else {
      +
      +			// Allow multiple hashes to be passed on init
      +			if ( args.length ) {
      +				options = $.widget.extend.apply( null, [ options ].concat( args ) );
      +			}
      +
      +			this.each( function() {
      +				var instance = $.data( this, fullName );
      +				if ( instance ) {
      +					instance.option( options || {} );
      +					if ( instance._init ) {
      +						instance._init();
      +					}
      +				} else {
      +					$.data( this, fullName, new object( options, this ) );
      +				}
      +			} );
      +		}
      +
      +		return returnValue;
      +	};
      +};
      +
      +$.Widget = function( /* options, element */ ) {};
      +$.Widget._childConstructors = [];
      +
      +$.Widget.prototype = {
      +	widgetName: "widget",
      +	widgetEventPrefix: "",
      +	defaultElement: "<div>",
      +
      +	options: {
      +		classes: {},
      +		disabled: false,
      +
      +		// Callbacks
      +		create: null
      +	},
      +
      +	_createWidget: function( options, element ) {
      +		element = $( element || this.defaultElement || this )[ 0 ];
      +		this.element = $( element );
      +		this.uuid = widgetUuid++;
      +		this.eventNamespace = "." + this.widgetName + this.uuid;
      +
      +		this.bindings = $();
      +		this.hoverable = $();
      +		this.focusable = $();
      +		this.classesElementLookup = {};
      +
      +		if ( element !== this ) {
      +			$.data( element, this.widgetFullName, this );
      +			this._on( true, this.element, {
      +				remove: function( event ) {
      +					if ( event.target === element ) {
      +						this.destroy();
      +					}
      +				}
      +			} );
      +			this.document = $( element.style ?
      +
      +				// Element within the document
      +				element.ownerDocument :
      +
      +				// Element is window or document
      +				element.document || element );
      +			this.window = $( this.document[ 0 ].defaultView || this.document[ 0 ].parentWindow );
      +		}
      +
      +		this.options = $.widget.extend( {},
      +			this.options,
      +			this._getCreateOptions(),
      +			options );
      +
      +		this._create();
      +
      +		if ( this.options.disabled ) {
      +			this._setOptionDisabled( this.options.disabled );
      +		}
      +
      +		this._trigger( "create", null, this._getCreateEventData() );
      +		this._init();
      +	},
      +
      +	_getCreateOptions: function() {
      +		return {};
      +	},
      +
      +	_getCreateEventData: $.noop,
      +
      +	_create: $.noop,
      +
      +	_init: $.noop,
      +
      +	destroy: function() {
      +		var that = this;
      +
      +		this._destroy();
      +		$.each( this.classesElementLookup, function( key, value ) {
      +			that._removeClass( value, key );
      +		} );
      +
      +		// We can probably remove the unbind calls in 2.0
      +		// all event bindings should go through this._on()
      +		this.element
      +			.off( this.eventNamespace )
      +			.removeData( this.widgetFullName );
      +		this.widget()
      +			.off( this.eventNamespace )
      +			.removeAttr( "aria-disabled" );
      +
      +		// Clean up events and states
      +		this.bindings.off( this.eventNamespace );
      +	},
      +
      +	_destroy: $.noop,
      +
      +	widget: function() {
      +		return this.element;
      +	},
      +
      +	option: function( key, value ) {
      +		var options = key;
      +		var parts;
      +		var curOption;
      +		var i;
      +
      +		if ( arguments.length === 0 ) {
      +
      +			// Don't return a reference to the internal hash
      +			return $.widget.extend( {}, this.options );
      +		}
      +
      +		if ( typeof key === "string" ) {
      +
      +			// Handle nested keys, e.g., "foo.bar" => { foo: { bar: ___ } }
      +			options = {};
      +			parts = key.split( "." );
      +			key = parts.shift();
      +			if ( parts.length ) {
      +				curOption = options[ key ] = $.widget.extend( {}, this.options[ key ] );
      +				for ( i = 0; i < parts.length - 1; i++ ) {
      +					curOption[ parts[ i ] ] = curOption[ parts[ i ] ] || {};
      +					curOption = curOption[ parts[ i ] ];
      +				}
      +				key = parts.pop();
      +				if ( arguments.length === 1 ) {
      +					return curOption[ key ] === undefined ? null : curOption[ key ];
      +				}
      +				curOption[ key ] = value;
      +			} else {
      +				if ( arguments.length === 1 ) {
      +					return this.options[ key ] === undefined ? null : this.options[ key ];
      +				}
      +				options[ key ] = value;
      +			}
      +		}
      +
      +		this._setOptions( options );
      +
      +		return this;
      +	},
      +
      +	_setOptions: function( options ) {
      +		var key;
      +
      +		for ( key in options ) {
      +			this._setOption( key, options[ key ] );
      +		}
      +
      +		return this;
      +	},
      +
      +	_setOption: function( key, value ) {
      +		if ( key === "classes" ) {
      +			this._setOptionClasses( value );
      +		}
      +
      +		this.options[ key ] = value;
      +
      +		if ( key === "disabled" ) {
      +			this._setOptionDisabled( value );
      +		}
      +
      +		return this;
      +	},
      +
      +	_setOptionClasses: function( value ) {
      +		var classKey, elements, currentElements;
      +
      +		for ( classKey in value ) {
      +			currentElements = this.classesElementLookup[ classKey ];
      +			if ( value[ classKey ] === this.options.classes[ classKey ] ||
      +					!currentElements ||
      +					!currentElements.length ) {
      +				continue;
      +			}
      +
      +			// We are doing this to create a new jQuery object because the _removeClass() call
      +			// on the next line is going to destroy the reference to the current elements being
      +			// tracked. We need to save a copy of this collection so that we can add the new classes
      +			// below.
      +			elements = $( currentElements.get() );
      +			this._removeClass( currentElements, classKey );
      +
      +			// We don't use _addClass() here, because that uses this.options.classes
      +			// for generating the string of classes. We want to use the value passed in from
      +			// _setOption(), this is the new value of the classes option which was passed to
      +			// _setOption(). We pass this value directly to _classes().
      +			elements.addClass( this._classes( {
      +				element: elements,
      +				keys: classKey,
      +				classes: value,
      +				add: true
      +			} ) );
      +		}
      +	},
      +
      +	_setOptionDisabled: function( value ) {
      +		this._toggleClass( this.widget(), this.widgetFullName + "-disabled", null, !!value );
      +
      +		// If the widget is becoming disabled, then nothing is interactive
      +		if ( value ) {
      +			this._removeClass( this.hoverable, null, "ui-state-hover" );
      +			this._removeClass( this.focusable, null, "ui-state-focus" );
      +		}
      +	},
      +
      +	enable: function() {
      +		return this._setOptions( { disabled: false } );
      +	},
      +
      +	disable: function() {
      +		return this._setOptions( { disabled: true } );
      +	},
      +
      +	_classes: function( options ) {
      +		var full = [];
      +		var that = this;
      +
      +		options = $.extend( {
      +			element: this.element,
      +			classes: this.options.classes || {}
      +		}, options );
      +
      +		function processClassString( classes, checkOption ) {
      +			var current, i;
      +			for ( i = 0; i < classes.length; i++ ) {
      +				current = that.classesElementLookup[ classes[ i ] ] || $();
      +				if ( options.add ) {
      +					current = $( $.unique( current.get().concat( options.element.get() ) ) );
      +				} else {
      +					current = $( current.not( options.element ).get() );
      +				}
      +				that.classesElementLookup[ classes[ i ] ] = current;
      +				full.push( classes[ i ] );
      +				if ( checkOption && options.classes[ classes[ i ] ] ) {
      +					full.push( options.classes[ classes[ i ] ] );
      +				}
      +			}
      +		}
      +
      +		this._on( options.element, {
      +			"remove": "_untrackClassesElement"
      +		} );
      +
      +		if ( options.keys ) {
      +			processClassString( options.keys.match( /\S+/g ) || [], true );
      +		}
      +		if ( options.extra ) {
      +			processClassString( options.extra.match( /\S+/g ) || [] );
      +		}
      +
      +		return full.join( " " );
      +	},
      +
      +	_untrackClassesElement: function( event ) {
      +		var that = this;
      +		$.each( that.classesElementLookup, function( key, value ) {
      +			if ( $.inArray( event.target, value ) !== -1 ) {
      +				that.classesElementLookup[ key ] = $( value.not( event.target ).get() );
      +			}
      +		} );
      +	},
      +
      +	_removeClass: function( element, keys, extra ) {
      +		return this._toggleClass( element, keys, extra, false );
      +	},
      +
      +	_addClass: function( element, keys, extra ) {
      +		return this._toggleClass( element, keys, extra, true );
      +	},
      +
      +	_toggleClass: function( element, keys, extra, add ) {
      +		add = ( typeof add === "boolean" ) ? add : extra;
      +		var shift = ( typeof element === "string" || element === null ),
      +			options = {
      +				extra: shift ? keys : extra,
      +				keys: shift ? element : keys,
      +				element: shift ? this.element : element,
      +				add: add
      +			};
      +		options.element.toggleClass( this._classes( options ), add );
      +		return this;
      +	},
      +
      +	_on: function( suppressDisabledCheck, element, handlers ) {
      +		var delegateElement;
      +		var instance = this;
      +
      +		// No suppressDisabledCheck flag, shuffle arguments
      +		if ( typeof suppressDisabledCheck !== "boolean" ) {
      +			handlers = element;
      +			element = suppressDisabledCheck;
      +			suppressDisabledCheck = false;
      +		}
      +
      +		// No element argument, shuffle and use this.element
      +		if ( !handlers ) {
      +			handlers = element;
      +			element = this.element;
      +			delegateElement = this.widget();
      +		} else {
      +			element = delegateElement = $( element );
      +			this.bindings = this.bindings.add( element );
      +		}
      +
      +		$.each( handlers, function( event, handler ) {
      +			function handlerProxy() {
      +
      +				// Allow widgets to customize the disabled handling
      +				// - disabled as an array instead of boolean
      +				// - disabled class as method for disabling individual parts
      +				if ( !suppressDisabledCheck &&
      +						( instance.options.disabled === true ||
      +						$( this ).hasClass( "ui-state-disabled" ) ) ) {
      +					return;
      +				}
      +				return ( typeof handler === "string" ? instance[ handler ] : handler )
      +					.apply( instance, arguments );
      +			}
      +
      +			// Copy the guid so direct unbinding works
      +			if ( typeof handler !== "string" ) {
      +				handlerProxy.guid = handler.guid =
      +					handler.guid || handlerProxy.guid || $.guid++;
      +			}
      +
      +			var match = event.match( /^([\w:-]*)\s*(.*)$/ );
      +			var eventName = match[ 1 ] + instance.eventNamespace;
      +			var selector = match[ 2 ];
      +
      +			if ( selector ) {
      +				delegateElement.on( eventName, selector, handlerProxy );
      +			} else {
      +				element.on( eventName, handlerProxy );
      +			}
      +		} );
      +	},
      +
      +	_off: function( element, eventName ) {
      +		eventName = ( eventName || "" ).split( " " ).join( this.eventNamespace + " " ) +
      +			this.eventNamespace;
      +		element.off( eventName ).off( eventName );
      +
      +		// Clear the stack to avoid memory leaks (#10056)
      +		this.bindings = $( this.bindings.not( element ).get() );
      +		this.focusable = $( this.focusable.not( element ).get() );
      +		this.hoverable = $( this.hoverable.not( element ).get() );
      +	},
      +
      +	_delay: function( handler, delay ) {
      +		function handlerProxy() {
      +			return ( typeof handler === "string" ? instance[ handler ] : handler )
      +				.apply( instance, arguments );
      +		}
      +		var instance = this;
      +		return setTimeout( handlerProxy, delay || 0 );
      +	},
      +
      +	_hoverable: function( element ) {
      +		this.hoverable = this.hoverable.add( element );
      +		this._on( element, {
      +			mouseenter: function( event ) {
      +				this._addClass( $( event.currentTarget ), null, "ui-state-hover" );
      +			},
      +			mouseleave: function( event ) {
      +				this._removeClass( $( event.currentTarget ), null, "ui-state-hover" );
      +			}
      +		} );
      +	},
      +
      +	_focusable: function( element ) {
      +		this.focusable = this.focusable.add( element );
      +		this._on( element, {
      +			focusin: function( event ) {
      +				this._addClass( $( event.currentTarget ), null, "ui-state-focus" );
      +			},
      +			focusout: function( event ) {
      +				this._removeClass( $( event.currentTarget ), null, "ui-state-focus" );
      +			}
      +		} );
      +	},
      +
      +	_trigger: function( type, event, data ) {
      +		var prop, orig;
      +		var callback = this.options[ type ];
      +
      +		data = data || {};
      +		event = $.Event( event );
      +		event.type = ( type === this.widgetEventPrefix ?
      +			type :
      +			this.widgetEventPrefix + type ).toLowerCase();
      +
      +		// The original event may come from any element
      +		// so we need to reset the target on the new event
      +		event.target = this.element[ 0 ];
      +
      +		// Copy original event properties over to the new event
      +		orig = event.originalEvent;
      +		if ( orig ) {
      +			for ( prop in orig ) {
      +				if ( !( prop in event ) ) {
      +					event[ prop ] = orig[ prop ];
      +				}
      +			}
      +		}
      +
      +		this.element.trigger( event, data );
      +		return !( $.isFunction( callback ) &&
      +			callback.apply( this.element[ 0 ], [ event ].concat( data ) ) === false ||
      +			event.isDefaultPrevented() );
      +	}
      +};
      +
      +$.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) {
      +	$.Widget.prototype[ "_" + method ] = function( element, options, callback ) {
      +		if ( typeof options === "string" ) {
      +			options = { effect: options };
      +		}
      +
      +		var hasOptions;
      +		var effectName = !options ?
      +			method :
      +			options === true || typeof options === "number" ?
      +				defaultEffect :
      +				options.effect || defaultEffect;
      +
      +		options = options || {};
      +		if ( typeof options === "number" ) {
      +			options = { duration: options };
      +		}
      +
      +		hasOptions = !$.isEmptyObject( options );
      +		options.complete = callback;
      +
      +		if ( options.delay ) {
      +			element.delay( options.delay );
      +		}
      +
      +		if ( hasOptions && $.effects && $.effects.effect[ effectName ] ) {
      +			element[ method ]( options );
      +		} else if ( effectName !== method && element[ effectName ] ) {
      +			element[ effectName ]( options.duration, options.easing, callback );
      +		} else {
      +			element.queue( function( next ) {
      +				$( this )[ method ]();
      +				if ( callback ) {
      +					callback.call( element[ 0 ] );
      +				}
      +				next();
      +			} );
      +		}
      +	};
      +} );
      +
      +var widget = $.widget;
      +
      +
      +/*!
      + * jQuery UI Position 1.12.1
      + * http://jqueryui.com
      + *
      + * Copyright jQuery Foundation and other contributors
      + * Released under the MIT license.
      + * http://jquery.org/license
      + *
      + * http://api.jqueryui.com/position/
      + */
      +
      +//>>label: Position
      +//>>group: Core
      +//>>description: Positions elements relative to other elements.
      +//>>docs: http://api.jqueryui.com/position/
      +//>>demos: http://jqueryui.com/position/
      +
      +
      +( function() {
      +var cachedScrollbarWidth,
      +	max = Math.max,
      +	abs = Math.abs,
      +	rhorizontal = /left|center|right/,
      +	rvertical = /top|center|bottom/,
      +	roffset = /[\+\-]\d+(\.[\d]+)?%?/,
      +	rposition = /^\w+/,
      +	rpercent = /%$/,
      +	_position = $.fn.position;
      +
      +function getOffsets( offsets, width, height ) {
      +	return [
      +		parseFloat( offsets[ 0 ] ) * ( rpercent.test( offsets[ 0 ] ) ? width / 100 : 1 ),
      +		parseFloat( offsets[ 1 ] ) * ( rpercent.test( offsets[ 1 ] ) ? height / 100 : 1 )
      +	];
      +}
      +
      +function parseCss( element, property ) {
      +	return parseInt( $.css( element, property ), 10 ) || 0;
      +}
      +
      +function getDimensions( elem ) {
      +	var raw = elem[ 0 ];
      +	if ( raw.nodeType === 9 ) {
      +		return {
      +			width: elem.width(),
      +			height: elem.height(),
      +			offset: { top: 0, left: 0 }
      +		};
      +	}
      +	if ( $.isWindow( raw ) ) {
      +		return {
      +			width: elem.width(),
      +			height: elem.height(),
      +			offset: { top: elem.scrollTop(), left: elem.scrollLeft() }
      +		};
      +	}
      +	if ( raw.preventDefault ) {
      +		return {
      +			width: 0,
      +			height: 0,
      +			offset: { top: raw.pageY, left: raw.pageX }
      +		};
      +	}
      +	return {
      +		width: elem.outerWidth(),
      +		height: elem.outerHeight(),
      +		offset: elem.offset()
      +	};
      +}
      +
      +$.position = {
      +	scrollbarWidth: function() {
      +		if ( cachedScrollbarWidth !== undefined ) {
      +			return cachedScrollbarWidth;
      +		}
      +		var w1, w2,
      +			div = $( "<div " +
      +				"style='display:block;position:absolute;width:50px;height:50px;overflow:hidden;'>" +
      +				"<div style='height:100px;width:auto;'></div></div>" ),
      +			innerDiv = div.children()[ 0 ];
      +
      +		$( "body" ).append( div );
      +		w1 = innerDiv.offsetWidth;
      +		div.css( "overflow", "scroll" );
      +
      +		w2 = innerDiv.offsetWidth;
      +
      +		if ( w1 === w2 ) {
      +			w2 = div[ 0 ].clientWidth;
      +		}
      +
      +		div.remove();
      +
      +		return ( cachedScrollbarWidth = w1 - w2 );
      +	},
      +	getScrollInfo: function( within ) {
      +		var overflowX = within.isWindow || within.isDocument ? "" :
      +				within.element.css( "overflow-x" ),
      +			overflowY = within.isWindow || within.isDocument ? "" :
      +				within.element.css( "overflow-y" ),
      +			hasOverflowX = overflowX === "scroll" ||
      +				( overflowX === "auto" && within.width < within.element[ 0 ].scrollWidth ),
      +			hasOverflowY = overflowY === "scroll" ||
      +				( overflowY === "auto" && within.height < within.element[ 0 ].scrollHeight );
      +		return {
      +			width: hasOverflowY ? $.position.scrollbarWidth() : 0,
      +			height: hasOverflowX ? $.position.scrollbarWidth() : 0
      +		};
      +	},
      +	getWithinInfo: function( element ) {
      +		var withinElement = $( element || window ),
      +			isWindow = $.isWindow( withinElement[ 0 ] ),
      +			isDocument = !!withinElement[ 0 ] && withinElement[ 0 ].nodeType === 9,
      +			hasOffset = !isWindow && !isDocument;
      +		return {
      +			element: withinElement,
      +			isWindow: isWindow,
      +			isDocument: isDocument,
      +			offset: hasOffset ? $( element ).offset() : { left: 0, top: 0 },
      +			scrollLeft: withinElement.scrollLeft(),
      +			scrollTop: withinElement.scrollTop(),
      +			width: withinElement.outerWidth(),
      +			height: withinElement.outerHeight()
      +		};
      +	}
      +};
      +
      +$.fn.position = function( options ) {
      +	if ( !options || !options.of ) {
      +		return _position.apply( this, arguments );
      +	}
      +
      +	// Make a copy, we don't want to modify arguments
      +	options = $.extend( {}, options );
      +
      +	var atOffset, targetWidth, targetHeight, targetOffset, basePosition, dimensions,
      +		target = $( options.of ),
      +		within = $.position.getWithinInfo( options.within ),
      +		scrollInfo = $.position.getScrollInfo( within ),
      +		collision = ( options.collision || "flip" ).split( " " ),
      +		offsets = {};
      +
      +	dimensions = getDimensions( target );
      +	if ( target[ 0 ].preventDefault ) {
      +
      +		// Force left top to allow flipping
      +		options.at = "left top";
      +	}
      +	targetWidth = dimensions.width;
      +	targetHeight = dimensions.height;
      +	targetOffset = dimensions.offset;
      +
      +	// Clone to reuse original targetOffset later
      +	basePosition = $.extend( {}, targetOffset );
      +
      +	// Force my and at to have valid horizontal and vertical positions
      +	// if a value is missing or invalid, it will be converted to center
      +	$.each( [ "my", "at" ], function() {
      +		var pos = ( options[ this ] || "" ).split( " " ),
      +			horizontalOffset,
      +			verticalOffset;
      +
      +		if ( pos.length === 1 ) {
      +			pos = rhorizontal.test( pos[ 0 ] ) ?
      +				pos.concat( [ "center" ] ) :
      +				rvertical.test( pos[ 0 ] ) ?
      +					[ "center" ].concat( pos ) :
      +					[ "center", "center" ];
      +		}
      +		pos[ 0 ] = rhorizontal.test( pos[ 0 ] ) ? pos[ 0 ] : "center";
      +		pos[ 1 ] = rvertical.test( pos[ 1 ] ) ? pos[ 1 ] : "center";
      +
      +		// Calculate offsets
      +		horizontalOffset = roffset.exec( pos[ 0 ] );
      +		verticalOffset = roffset.exec( pos[ 1 ] );
      +		offsets[ this ] = [
      +			horizontalOffset ? horizontalOffset[ 0 ] : 0,
      +			verticalOffset ? verticalOffset[ 0 ] : 0
      +		];
      +
      +		// Reduce to just the positions without the offsets
      +		options[ this ] = [
      +			rposition.exec( pos[ 0 ] )[ 0 ],
      +			rposition.exec( pos[ 1 ] )[ 0 ]
      +		];
      +	} );
      +
      +	// Normalize collision option
      +	if ( collision.length === 1 ) {
      +		collision[ 1 ] = collision[ 0 ];
      +	}
      +
      +	if ( options.at[ 0 ] === "right" ) {
      +		basePosition.left += targetWidth;
      +	} else if ( options.at[ 0 ] === "center" ) {
      +		basePosition.left += targetWidth / 2;
      +	}
      +
      +	if ( options.at[ 1 ] === "bottom" ) {
      +		basePosition.top += targetHeight;
      +	} else if ( options.at[ 1 ] === "center" ) {
      +		basePosition.top += targetHeight / 2;
      +	}
      +
      +	atOffset = getOffsets( offsets.at, targetWidth, targetHeight );
      +	basePosition.left += atOffset[ 0 ];
      +	basePosition.top += atOffset[ 1 ];
      +
      +	return this.each( function() {
      +		var collisionPosition, using,
      +			elem = $( this ),
      +			elemWidth = elem.outerWidth(),
      +			elemHeight = elem.outerHeight(),
      +			marginLeft = parseCss( this, "marginLeft" ),
      +			marginTop = parseCss( this, "marginTop" ),
      +			collisionWidth = elemWidth + marginLeft + parseCss( this, "marginRight" ) +
      +				scrollInfo.width,
      +			collisionHeight = elemHeight + marginTop + parseCss( this, "marginBottom" ) +
      +				scrollInfo.height,
      +			position = $.extend( {}, basePosition ),
      +			myOffset = getOffsets( offsets.my, elem.outerWidth(), elem.outerHeight() );
      +
      +		if ( options.my[ 0 ] === "right" ) {
      +			position.left -= elemWidth;
      +		} else if ( options.my[ 0 ] === "center" ) {
      +			position.left -= elemWidth / 2;
      +		}
      +
      +		if ( options.my[ 1 ] === "bottom" ) {
      +			position.top -= elemHeight;
      +		} else if ( options.my[ 1 ] === "center" ) {
      +			position.top -= elemHeight / 2;
      +		}
      +
      +		position.left += myOffset[ 0 ];
      +		position.top += myOffset[ 1 ];
      +
      +		collisionPosition = {
      +			marginLeft: marginLeft,
      +			marginTop: marginTop
      +		};
      +
      +		$.each( [ "left", "top" ], function( i, dir ) {
      +			if ( $.ui.position[ collision[ i ] ] ) {
      +				$.ui.position[ collision[ i ] ][ dir ]( position, {
      +					targetWidth: targetWidth,
      +					targetHeight: targetHeight,
      +					elemWidth: elemWidth,
      +					elemHeight: elemHeight,
      +					collisionPosition: collisionPosition,
      +					collisionWidth: collisionWidth,
      +					collisionHeight: collisionHeight,
      +					offset: [ atOffset[ 0 ] + myOffset[ 0 ], atOffset [ 1 ] + myOffset[ 1 ] ],
      +					my: options.my,
      +					at: options.at,
      +					within: within,
      +					elem: elem
      +				} );
      +			}
      +		} );
      +
      +		if ( options.using ) {
      +
      +			// Adds feedback as second argument to using callback, if present
      +			using = function( props ) {
      +				var left = targetOffset.left - position.left,
      +					right = left + targetWidth - elemWidth,
      +					top = targetOffset.top - position.top,
      +					bottom = top + targetHeight - elemHeight,
      +					feedback = {
      +						target: {
      +							element: target,
      +							left: targetOffset.left,
      +							top: targetOffset.top,
      +							width: targetWidth,
      +							height: targetHeight
      +						},
      +						element: {
      +							element: elem,
      +							left: position.left,
      +							top: position.top,
      +							width: elemWidth,
      +							height: elemHeight
      +						},
      +						horizontal: right < 0 ? "left" : left > 0 ? "right" : "center",
      +						vertical: bottom < 0 ? "top" : top > 0 ? "bottom" : "middle"
      +					};
      +				if ( targetWidth < elemWidth && abs( left + right ) < targetWidth ) {
      +					feedback.horizontal = "center";
      +				}
      +				if ( targetHeight < elemHeight && abs( top + bottom ) < targetHeight ) {
      +					feedback.vertical = "middle";
      +				}
      +				if ( max( abs( left ), abs( right ) ) > max( abs( top ), abs( bottom ) ) ) {
      +					feedback.important = "horizontal";
      +				} else {
      +					feedback.important = "vertical";
      +				}
      +				options.using.call( this, props, feedback );
      +			};
      +		}
      +
      +		elem.offset( $.extend( position, { using: using } ) );
      +	} );
      +};
      +
      +$.ui.position = {
      +	fit: {
      +		left: function( position, data ) {
      +			var within = data.within,
      +				withinOffset = within.isWindow ? within.scrollLeft : within.offset.left,
      +				outerWidth = within.width,
      +				collisionPosLeft = position.left - data.collisionPosition.marginLeft,
      +				overLeft = withinOffset - collisionPosLeft,
      +				overRight = collisionPosLeft + data.collisionWidth - outerWidth - withinOffset,
      +				newOverRight;
      +
      +			// Element is wider than within
      +			if ( data.collisionWidth > outerWidth ) {
      +
      +				// Element is initially over the left side of within
      +				if ( overLeft > 0 && overRight <= 0 ) {
      +					newOverRight = position.left + overLeft + data.collisionWidth - outerWidth -
      +						withinOffset;
      +					position.left += overLeft - newOverRight;
      +
      +				// Element is initially over right side of within
      +				} else if ( overRight > 0 && overLeft <= 0 ) {
      +					position.left = withinOffset;
      +
      +				// Element is initially over both left and right sides of within
      +				} else {
      +					if ( overLeft > overRight ) {
      +						position.left = withinOffset + outerWidth - data.collisionWidth;
      +					} else {
      +						position.left = withinOffset;
      +					}
      +				}
      +
      +			// Too far left -> align with left edge
      +			} else if ( overLeft > 0 ) {
      +				position.left += overLeft;
      +
      +			// Too far right -> align with right edge
      +			} else if ( overRight > 0 ) {
      +				position.left -= overRight;
      +
      +			// Adjust based on position and margin
      +			} else {
      +				position.left = max( position.left - collisionPosLeft, position.left );
      +			}
      +		},
      +		top: function( position, data ) {
      +			var within = data.within,
      +				withinOffset = within.isWindow ? within.scrollTop : within.offset.top,
      +				outerHeight = data.within.height,
      +				collisionPosTop = position.top - data.collisionPosition.marginTop,
      +				overTop = withinOffset - collisionPosTop,
      +				overBottom = collisionPosTop + data.collisionHeight - outerHeight - withinOffset,
      +				newOverBottom;
      +
      +			// Element is taller than within
      +			if ( data.collisionHeight > outerHeight ) {
      +
      +				// Element is initially over the top of within
      +				if ( overTop > 0 && overBottom <= 0 ) {
      +					newOverBottom = position.top + overTop + data.collisionHeight - outerHeight -
      +						withinOffset;
      +					position.top += overTop - newOverBottom;
      +
      +				// Element is initially over bottom of within
      +				} else if ( overBottom > 0 && overTop <= 0 ) {
      +					position.top = withinOffset;
      +
      +				// Element is initially over both top and bottom of within
      +				} else {
      +					if ( overTop > overBottom ) {
      +						position.top = withinOffset + outerHeight - data.collisionHeight;
      +					} else {
      +						position.top = withinOffset;
      +					}
      +				}
      +
      +			// Too far up -> align with top
      +			} else if ( overTop > 0 ) {
      +				position.top += overTop;
      +
      +			// Too far down -> align with bottom edge
      +			} else if ( overBottom > 0 ) {
      +				position.top -= overBottom;
      +
      +			// Adjust based on position and margin
      +			} else {
      +				position.top = max( position.top - collisionPosTop, position.top );
      +			}
      +		}
      +	},
      +	flip: {
      +		left: function( position, data ) {
      +			var within = data.within,
      +				withinOffset = within.offset.left + within.scrollLeft,
      +				outerWidth = within.width,
      +				offsetLeft = within.isWindow ? within.scrollLeft : within.offset.left,
      +				collisionPosLeft = position.left - data.collisionPosition.marginLeft,
      +				overLeft = collisionPosLeft - offsetLeft,
      +				overRight = collisionPosLeft + data.collisionWidth - outerWidth - offsetLeft,
      +				myOffset = data.my[ 0 ] === "left" ?
      +					-data.elemWidth :
      +					data.my[ 0 ] === "right" ?
      +						data.elemWidth :
      +						0,
      +				atOffset = data.at[ 0 ] === "left" ?
      +					data.targetWidth :
      +					data.at[ 0 ] === "right" ?
      +						-data.targetWidth :
      +						0,
      +				offset = -2 * data.offset[ 0 ],
      +				newOverRight,
      +				newOverLeft;
      +
      +			if ( overLeft < 0 ) {
      +				newOverRight = position.left + myOffset + atOffset + offset + data.collisionWidth -
      +					outerWidth - withinOffset;
      +				if ( newOverRight < 0 || newOverRight < abs( overLeft ) ) {
      +					position.left += myOffset + atOffset + offset;
      +				}
      +			} else if ( overRight > 0 ) {
      +				newOverLeft = position.left - data.collisionPosition.marginLeft + myOffset +
      +					atOffset + offset - offsetLeft;
      +				if ( newOverLeft > 0 || abs( newOverLeft ) < overRight ) {
      +					position.left += myOffset + atOffset + offset;
      +				}
      +			}
      +		},
      +		top: function( position, data ) {
      +			var within = data.within,
      +				withinOffset = within.offset.top + within.scrollTop,
      +				outerHeight = within.height,
      +				offsetTop = within.isWindow ? within.scrollTop : within.offset.top,
      +				collisionPosTop = position.top - data.collisionPosition.marginTop,
      +				overTop = collisionPosTop - offsetTop,
      +				overBottom = collisionPosTop + data.collisionHeight - outerHeight - offsetTop,
      +				top = data.my[ 1 ] === "top",
      +				myOffset = top ?
      +					-data.elemHeight :
      +					data.my[ 1 ] === "bottom" ?
      +						data.elemHeight :
      +						0,
      +				atOffset = data.at[ 1 ] === "top" ?
      +					data.targetHeight :
      +					data.at[ 1 ] === "bottom" ?
      +						-data.targetHeight :
      +						0,
      +				offset = -2 * data.offset[ 1 ],
      +				newOverTop,
      +				newOverBottom;
      +			if ( overTop < 0 ) {
      +				newOverBottom = position.top + myOffset + atOffset + offset + data.collisionHeight -
      +					outerHeight - withinOffset;
      +				if ( newOverBottom < 0 || newOverBottom < abs( overTop ) ) {
      +					position.top += myOffset + atOffset + offset;
      +				}
      +			} else if ( overBottom > 0 ) {
      +				newOverTop = position.top - data.collisionPosition.marginTop + myOffset + atOffset +
      +					offset - offsetTop;
      +				if ( newOverTop > 0 || abs( newOverTop ) < overBottom ) {
      +					position.top += myOffset + atOffset + offset;
      +				}
      +			}
      +		}
      +	},
      +	flipfit: {
      +		left: function() {
      +			$.ui.position.flip.left.apply( this, arguments );
      +			$.ui.position.fit.left.apply( this, arguments );
      +		},
      +		top: function() {
      +			$.ui.position.flip.top.apply( this, arguments );
      +			$.ui.position.fit.top.apply( this, arguments );
      +		}
      +	}
      +};
      +
      +} )();
      +
      +var position = $.ui.position;
      +
      +
      +/*!
      + * jQuery UI Keycode 1.12.1
      + * http://jqueryui.com
      + *
      + * Copyright jQuery Foundation and other contributors
      + * Released under the MIT license.
      + * http://jquery.org/license
      + */
      +
      +//>>label: Keycode
      +//>>group: Core
      +//>>description: Provide keycodes as keynames
      +//>>docs: http://api.jqueryui.com/jQuery.ui.keyCode/
      +
      +
      +var keycode = $.ui.keyCode = {
      +	BACKSPACE: 8,
      +	COMMA: 188,
      +	DELETE: 46,
      +	DOWN: 40,
      +	END: 35,
      +	ENTER: 13,
      +	ESCAPE: 27,
      +	HOME: 36,
      +	LEFT: 37,
      +	PAGE_DOWN: 34,
      +	PAGE_UP: 33,
      +	PERIOD: 190,
      +	RIGHT: 39,
      +	SPACE: 32,
      +	TAB: 9,
      +	UP: 38
      +};
      +
      +
      +/*!
      + * jQuery UI Unique ID 1.12.1
      + * http://jqueryui.com
      + *
      + * Copyright jQuery Foundation and other contributors
      + * Released under the MIT license.
      + * http://jquery.org/license
      + */
      +
      +//>>label: uniqueId
      +//>>group: Core
      +//>>description: Functions to generate and remove uniqueId's
      +//>>docs: http://api.jqueryui.com/uniqueId/
      +
      +
      +
      +var uniqueId = $.fn.extend( {
      +	uniqueId: ( function() {
      +		var uuid = 0;
      +
      +		return function() {
      +			return this.each( function() {
      +				if ( !this.id ) {
      +					this.id = "ui-id-" + ( ++uuid );
      +				}
      +			} );
      +		};
      +	} )(),
      +
      +	removeUniqueId: function() {
      +		return this.each( function() {
      +			if ( /^ui-id-\d+$/.test( this.id ) ) {
      +				$( this ).removeAttr( "id" );
      +			}
      +		} );
      +	}
      +} );
      +
      +
      +
      +var safeActiveElement = $.ui.safeActiveElement = function( document ) {
      +	var activeElement;
      +
      +	// Support: IE 9 only
      +	// IE9 throws an "Unspecified error" accessing document.activeElement from an <iframe>
      +	try {
      +		activeElement = document.activeElement;
      +	} catch ( error ) {
      +		activeElement = document.body;
      +	}
      +
      +	// Support: IE 9 - 11 only
      +	// IE may return null instead of an element
      +	// Interestingly, this only seems to occur when NOT in an iframe
      +	if ( !activeElement ) {
      +		activeElement = document.body;
      +	}
      +
      +	// Support: IE 11 only
      +	// IE11 returns a seemingly empty object in some cases when accessing
      +	// document.activeElement from an <iframe>
      +	if ( !activeElement.nodeName ) {
      +		activeElement = document.body;
      +	}
      +
      +	return activeElement;
      +};
      +
      +
      +/*!
      + * jQuery UI Menu 1.12.1
      + * http://jqueryui.com
      + *
      + * Copyright jQuery Foundation and other contributors
      + * Released under the MIT license.
      + * http://jquery.org/license
      + */
      +
      +//>>label: Menu
      +//>>group: Widgets
      +//>>description: Creates nestable menus.
      +//>>docs: http://api.jqueryui.com/menu/
      +//>>demos: http://jqueryui.com/menu/
      +//>>css.structure: ../../themes/base/core.css
      +//>>css.structure: ../../themes/base/menu.css
      +//>>css.theme: ../../themes/base/theme.css
      +
      +
      +
      +var widgetsMenu = $.widget( "ui.menu", {
      +	version: "1.12.1",
      +	defaultElement: "<ul>",
      +	delay: 300,
      +	options: {
      +		icons: {
      +			submenu: "ui-icon-caret-1-e"
      +		},
      +		items: "> *",
      +		menus: "ul",
      +		position: {
      +			my: "left top",
      +			at: "right top"
      +		},
      +		role: "menu",
      +
      +		// Callbacks
      +		blur: null,
      +		focus: null,
      +		select: null
      +	},
      +
      +	_create: function() {
      +		this.activeMenu = this.element;
      +
      +		// Flag used to prevent firing of the click handler
      +		// as the event bubbles up through nested menus
      +		this.mouseHandled = false;
      +		this.element
      +			.uniqueId()
      +			.attr( {
      +				role: this.options.role,
      +				tabIndex: 0
      +			} );
      +
      +		this._addClass( "ui-menu", "ui-widget ui-widget-content" );
      +		this._on( {
      +
      +			// Prevent focus from sticking to links inside menu after clicking
      +			// them (focus should always stay on UL during navigation).
      +			"mousedown .ui-menu-item": function( event ) {
      +				event.preventDefault();
      +			},
      +			"click .ui-menu-item": function( event ) {
      +				var target = $( event.target );
      +				var active = $( $.ui.safeActiveElement( this.document[ 0 ] ) );
      +				if ( !this.mouseHandled && target.not( ".ui-state-disabled" ).length ) {
      +					this.select( event );
      +
      +					// Only set the mouseHandled flag if the event will bubble, see #9469.
      +					if ( !event.isPropagationStopped() ) {
      +						this.mouseHandled = true;
      +					}
      +
      +					// Open submenu on click
      +					if ( target.has( ".ui-menu" ).length ) {
      +						this.expand( event );
      +					} else if ( !this.element.is( ":focus" ) &&
      +							active.closest( ".ui-menu" ).length ) {
      +
      +						// Redirect focus to the menu
      +						this.element.trigger( "focus", [ true ] );
      +
      +						// If the active item is on the top level, let it stay active.
      +						// Otherwise, blur the active item since it is no longer visible.
      +						if ( this.active && this.active.parents( ".ui-menu" ).length === 1 ) {
      +							clearTimeout( this.timer );
      +						}
      +					}
      +				}
      +			},
      +			"mouseenter .ui-menu-item": function( event ) {
      +
      +				// Ignore mouse events while typeahead is active, see #10458.
      +				// Prevents focusing the wrong item when typeahead causes a scroll while the mouse
      +				// is over an item in the menu
      +				if ( this.previousFilter ) {
      +					return;
      +				}
      +
      +				var actualTarget = $( event.target ).closest( ".ui-menu-item" ),
      +					target = $( event.currentTarget );
      +
      +				// Ignore bubbled events on parent items, see #11641
      +				if ( actualTarget[ 0 ] !== target[ 0 ] ) {
      +					return;
      +				}
      +
      +				// Remove ui-state-active class from siblings of the newly focused menu item
      +				// to avoid a jump caused by adjacent elements both having a class with a border
      +				this._removeClass( target.siblings().children( ".ui-state-active" ),
      +					null, "ui-state-active" );
      +				this.focus( event, target );
      +			},
      +			mouseleave: "collapseAll",
      +			"mouseleave .ui-menu": "collapseAll",
      +			focus: function( event, keepActiveItem ) {
      +
      +				// If there's already an active item, keep it active
      +				// If not, activate the first item
      +				var item = this.active || this.element.find( this.options.items ).eq( 0 );
      +
      +				if ( !keepActiveItem ) {
      +					this.focus( event, item );
      +				}
      +			},
      +			blur: function( event ) {
      +				this._delay( function() {
      +					var notContained = !$.contains(
      +						this.element[ 0 ],
      +						$.ui.safeActiveElement( this.document[ 0 ] )
      +					);
      +					if ( notContained ) {
      +						this.collapseAll( event );
      +					}
      +				} );
      +			},
      +			keydown: "_keydown"
      +		} );
      +
      +		this.refresh();
      +
      +		// Clicks outside of a menu collapse any open menus
      +		this._on( this.document, {
      +			click: function( event ) {
      +				if ( this._closeOnDocumentClick( event ) ) {
      +					this.collapseAll( event );
      +				}
      +
      +				// Reset the mouseHandled flag
      +				this.mouseHandled = false;
      +			}
      +		} );
      +	},
      +
      +	_destroy: function() {
      +		var items = this.element.find( ".ui-menu-item" )
      +				.removeAttr( "role aria-disabled" ),
      +			submenus = items.children( ".ui-menu-item-wrapper" )
      +				.removeUniqueId()
      +				.removeAttr( "tabIndex role aria-haspopup" );
      +
      +		// Destroy (sub)menus
      +		this.element
      +			.removeAttr( "aria-activedescendant" )
      +			.find( ".ui-menu" ).addBack()
      +				.removeAttr( "role aria-labelledby aria-expanded aria-hidden aria-disabled " +
      +					"tabIndex" )
      +				.removeUniqueId()
      +				.show();
      +
      +		submenus.children().each( function() {
      +			var elem = $( this );
      +			if ( elem.data( "ui-menu-submenu-caret" ) ) {
      +				elem.remove();
      +			}
      +		} );
      +	},
      +
      +	_keydown: function( event ) {
      +		var match, prev, character, skip,
      +			preventDefault = true;
      +
      +		switch ( event.keyCode ) {
      +		case $.ui.keyCode.PAGE_UP:
      +			this.previousPage( event );
      +			break;
      +		case $.ui.keyCode.PAGE_DOWN:
      +			this.nextPage( event );
      +			break;
      +		case $.ui.keyCode.HOME:
      +			this._move( "first", "first", event );
      +			break;
      +		case $.ui.keyCode.END:
      +			this._move( "last", "last", event );
      +			break;
      +		case $.ui.keyCode.UP:
      +			this.previous( event );
      +			break;
      +		case $.ui.keyCode.DOWN:
      +			this.next( event );
      +			break;
      +		case $.ui.keyCode.LEFT:
      +			this.collapse( event );
      +			break;
      +		case $.ui.keyCode.RIGHT:
      +			if ( this.active && !this.active.is( ".ui-state-disabled" ) ) {
      +				this.expand( event );
      +			}
      +			break;
      +		case $.ui.keyCode.ENTER:
      +		case $.ui.keyCode.SPACE:
      +			this._activate( event );
      +			break;
      +		case $.ui.keyCode.ESCAPE:
      +			this.collapse( event );
      +			break;
      +		default:
      +			preventDefault = false;
      +			prev = this.previousFilter || "";
      +			skip = false;
      +
      +			// Support number pad values
      +			character = event.keyCode >= 96 && event.keyCode <= 105 ?
      +				( event.keyCode - 96 ).toString() : String.fromCharCode( event.keyCode );
      +
      +			clearTimeout( this.filterTimer );
      +
      +			if ( character === prev ) {
      +				skip = true;
      +			} else {
      +				character = prev + character;
      +			}
      +
      +			match = this._filterMenuItems( character );
      +			match = skip && match.index( this.active.next() ) !== -1 ?
      +				this.active.nextAll( ".ui-menu-item" ) :
      +				match;
      +
      +			// If no matches on the current filter, reset to the last character pressed
      +			// to move down the menu to the first item that starts with that character
      +			if ( !match.length ) {
      +				character = String.fromCharCode( event.keyCode );
      +				match = this._filterMenuItems( character );
      +			}
      +
      +			if ( match.length ) {
      +				this.focus( event, match );
      +				this.previousFilter = character;
      +				this.filterTimer = this._delay( function() {
      +					delete this.previousFilter;
      +				}, 1000 );
      +			} else {
      +				delete this.previousFilter;
      +			}
      +		}
      +
      +		if ( preventDefault ) {
      +			event.preventDefault();
      +		}
      +	},
      +
      +	_activate: function( event ) {
      +		if ( this.active && !this.active.is( ".ui-state-disabled" ) ) {
      +			if ( this.active.children( "[aria-haspopup='true']" ).length ) {
      +				this.expand( event );
      +			} else {
      +				this.select( event );
      +			}
      +		}
      +	},
      +
      +	refresh: function() {
      +		var menus, items, newSubmenus, newItems, newWrappers,
      +			that = this,
      +			icon = this.options.icons.submenu,
      +			submenus = this.element.find( this.options.menus );
      +
      +		this._toggleClass( "ui-menu-icons", null, !!this.element.find( ".ui-icon" ).length );
      +
      +		// Initialize nested menus
      +		newSubmenus = submenus.filter( ":not(.ui-menu)" )
      +			.hide()
      +			.attr( {
      +				role: this.options.role,
      +				"aria-hidden": "true",
      +				"aria-expanded": "false"
      +			} )
      +			.each( function() {
      +				var menu = $( this ),
      +					item = menu.prev(),
      +					submenuCaret = $( "<span>" ).data( "ui-menu-submenu-caret", true );
      +
      +				that._addClass( submenuCaret, "ui-menu-icon", "ui-icon " + icon );
      +				item
      +					.attr( "aria-haspopup", "true" )
      +					.prepend( submenuCaret );
      +				menu.attr( "aria-labelledby", item.attr( "id" ) );
      +			} );
      +
      +		this._addClass( newSubmenus, "ui-menu", "ui-widget ui-widget-content ui-front" );
      +
      +		menus = submenus.add( this.element );
      +		items = menus.find( this.options.items );
      +
      +		// Initialize menu-items containing spaces and/or dashes only as dividers
      +		items.not( ".ui-menu-item" ).each( function() {
      +			var item = $( this );
      +			if ( that._isDivider( item ) ) {
      +				that._addClass( item, "ui-menu-divider", "ui-widget-content" );
      +			}
      +		} );
      +
      +		// Don't refresh list items that are already adapted
      +		newItems = items.not( ".ui-menu-item, .ui-menu-divider" );
      +		newWrappers = newItems.children()
      +			.not( ".ui-menu" )
      +				.uniqueId()
      +				.attr( {
      +					tabIndex: -1,
      +					role: this._itemRole()
      +				} );
      +		this._addClass( newItems, "ui-menu-item" )
      +			._addClass( newWrappers, "ui-menu-item-wrapper" );
      +
      +		// Add aria-disabled attribute to any disabled menu item
      +		items.filter( ".ui-state-disabled" ).attr( "aria-disabled", "true" );
      +
      +		// If the active item has been removed, blur the menu
      +		if ( this.active && !$.contains( this.element[ 0 ], this.active[ 0 ] ) ) {
      +			this.blur();
      +		}
      +	},
      +
      +	_itemRole: function() {
      +		return {
      +			menu: "menuitem",
      +			listbox: "option"
      +		}[ this.options.role ];
      +	},
      +
      +	_setOption: function( key, value ) {
      +		if ( key === "icons" ) {
      +			var icons = this.element.find( ".ui-menu-icon" );
      +			this._removeClass( icons, null, this.options.icons.submenu )
      +				._addClass( icons, null, value.submenu );
      +		}
      +		this._super( key, value );
      +	},
      +
      +	_setOptionDisabled: function( value ) {
      +		this._super( value );
      +
      +		this.element.attr( "aria-disabled", String( value ) );
      +		this._toggleClass( null, "ui-state-disabled", !!value );
      +	},
      +
      +	focus: function( event, item ) {
      +		var nested, focused, activeParent;
      +		this.blur( event, event && event.type === "focus" );
      +
      +		this._scrollIntoView( item );
      +
      +		this.active = item.first();
      +
      +		focused = this.active.children( ".ui-menu-item-wrapper" );
      +		this._addClass( focused, null, "ui-state-active" );
      +
      +		// Only update aria-activedescendant if there's a role
      +		// otherwise we assume focus is managed elsewhere
      +		if ( this.options.role ) {
      +			this.element.attr( "aria-activedescendant", focused.attr( "id" ) );
      +		}
      +
      +		// Highlight active parent menu item, if any
      +		activeParent = this.active
      +			.parent()
      +				.closest( ".ui-menu-item" )
      +					.children( ".ui-menu-item-wrapper" );
      +		this._addClass( activeParent, null, "ui-state-active" );
      +
      +		if ( event && event.type === "keydown" ) {
      +			this._close();
      +		} else {
      +			this.timer = this._delay( function() {
      +				this._close();
      +			}, this.delay );
      +		}
      +
      +		nested = item.children( ".ui-menu" );
      +		if ( nested.length && event && ( /^mouse/.test( event.type ) ) ) {
      +			this._startOpening( nested );
      +		}
      +		this.activeMenu = item.parent();
      +
      +		this._trigger( "focus", event, { item: item } );
      +	},
      +
      +	_scrollIntoView: function( item ) {
      +		var borderTop, paddingTop, offset, scroll, elementHeight, itemHeight;
      +		if ( this._hasScroll() ) {
      +			borderTop = parseFloat( $.css( this.activeMenu[ 0 ], "borderTopWidth" ) ) || 0;
      +			paddingTop = parseFloat( $.css( this.activeMenu[ 0 ], "paddingTop" ) ) || 0;
      +			offset = item.offset().top - this.activeMenu.offset().top - borderTop - paddingTop;
      +			scroll = this.activeMenu.scrollTop();
      +			elementHeight = this.activeMenu.height();
      +			itemHeight = item.outerHeight();
      +
      +			if ( offset < 0 ) {
      +				this.activeMenu.scrollTop( scroll + offset );
      +			} else if ( offset + itemHeight > elementHeight ) {
      +				this.activeMenu.scrollTop( scroll + offset - elementHeight + itemHeight );
      +			}
      +		}
      +	},
      +
      +	blur: function( event, fromFocus ) {
      +		if ( !fromFocus ) {
      +			clearTimeout( this.timer );
      +		}
      +
      +		if ( !this.active ) {
      +			return;
      +		}
      +
      +		this._removeClass( this.active.children( ".ui-menu-item-wrapper" ),
      +			null, "ui-state-active" );
      +
      +		this._trigger( "blur", event, { item: this.active } );
      +		this.active = null;
      +	},
      +
      +	_startOpening: function( submenu ) {
      +		clearTimeout( this.timer );
      +
      +		// Don't open if already open fixes a Firefox bug that caused a .5 pixel
      +		// shift in the submenu position when mousing over the caret icon
      +		if ( submenu.attr( "aria-hidden" ) !== "true" ) {
      +			return;
      +		}
      +
      +		this.timer = this._delay( function() {
      +			this._close();
      +			this._open( submenu );
      +		}, this.delay );
      +	},
      +
      +	_open: function( submenu ) {
      +		var position = $.extend( {
      +			of: this.active
      +		}, this.options.position );
      +
      +		clearTimeout( this.timer );
      +		this.element.find( ".ui-menu" ).not( submenu.parents( ".ui-menu" ) )
      +			.hide()
      +			.attr( "aria-hidden", "true" );
      +
      +		submenu
      +			.show()
      +			.removeAttr( "aria-hidden" )
      +			.attr( "aria-expanded", "true" )
      +			.position( position );
      +	},
      +
      +	collapseAll: function( event, all ) {
      +		clearTimeout( this.timer );
      +		this.timer = this._delay( function() {
      +
      +			// If we were passed an event, look for the submenu that contains the event
      +			var currentMenu = all ? this.element :
      +				$( event && event.target ).closest( this.element.find( ".ui-menu" ) );
      +
      +			// If we found no valid submenu ancestor, use the main menu to close all
      +			// sub menus anyway
      +			if ( !currentMenu.length ) {
      +				currentMenu = this.element;
      +			}
      +
      +			this._close( currentMenu );
      +
      +			this.blur( event );
      +
      +			// Work around active item staying active after menu is blurred
      +			this._removeClass( currentMenu.find( ".ui-state-active" ), null, "ui-state-active" );
      +
      +			this.activeMenu = currentMenu;
      +		}, this.delay );
      +	},
      +
      +	// With no arguments, closes the currently active menu - if nothing is active
      +	// it closes all menus.  If passed an argument, it will search for menus BELOW
      +	_close: function( startMenu ) {
      +		if ( !startMenu ) {
      +			startMenu = this.active ? this.active.parent() : this.element;
      +		}
      +
      +		startMenu.find( ".ui-menu" )
      +			.hide()
      +			.attr( "aria-hidden", "true" )
      +			.attr( "aria-expanded", "false" );
      +	},
      +
      +	_closeOnDocumentClick: function( event ) {
      +		return !$( event.target ).closest( ".ui-menu" ).length;
      +	},
      +
      +	_isDivider: function( item ) {
      +
      +		// Match hyphen, em dash, en dash
      +		return !/[^\-\u2014\u2013\s]/.test( item.text() );
      +	},
      +
      +	collapse: function( event ) {
      +		var newItem = this.active &&
      +			this.active.parent().closest( ".ui-menu-item", this.element );
      +		if ( newItem && newItem.length ) {
      +			this._close();
      +			this.focus( event, newItem );
      +		}
      +	},
      +
      +	expand: function( event ) {
      +		var newItem = this.active &&
      +			this.active
      +				.children( ".ui-menu " )
      +					.find( this.options.items )
      +						.first();
      +
      +		if ( newItem && newItem.length ) {
      +			this._open( newItem.parent() );
      +
      +			// Delay so Firefox will not hide activedescendant change in expanding submenu from AT
      +			this._delay( function() {
      +				this.focus( event, newItem );
      +			} );
      +		}
      +	},
      +
      +	next: function( event ) {
      +		this._move( "next", "first", event );
      +	},
      +
      +	previous: function( event ) {
      +		this._move( "prev", "last", event );
      +	},
      +
      +	isFirstItem: function() {
      +		return this.active && !this.active.prevAll( ".ui-menu-item" ).length;
      +	},
      +
      +	isLastItem: function() {
      +		return this.active && !this.active.nextAll( ".ui-menu-item" ).length;
      +	},
      +
      +	_move: function( direction, filter, event ) {
      +		var next;
      +		if ( this.active ) {
      +			if ( direction === "first" || direction === "last" ) {
      +				next = this.active
      +					[ direction === "first" ? "prevAll" : "nextAll" ]( ".ui-menu-item" )
      +					.eq( -1 );
      +			} else {
      +				next = this.active
      +					[ direction + "All" ]( ".ui-menu-item" )
      +					.eq( 0 );
      +			}
      +		}
      +		if ( !next || !next.length || !this.active ) {
      +			next = this.activeMenu.find( this.options.items )[ filter ]();
      +		}
      +
      +		this.focus( event, next );
      +	},
      +
      +	nextPage: function( event ) {
      +		var item, base, height;
      +
      +		if ( !this.active ) {
      +			this.next( event );
      +			return;
      +		}
      +		if ( this.isLastItem() ) {
      +			return;
      +		}
      +		if ( this._hasScroll() ) {
      +			base = this.active.offset().top;
      +			height = this.element.height();
      +			this.active.nextAll( ".ui-menu-item" ).each( function() {
      +				item = $( this );
      +				return item.offset().top - base - height < 0;
      +			} );
      +
      +			this.focus( event, item );
      +		} else {
      +			this.focus( event, this.activeMenu.find( this.options.items )
      +				[ !this.active ? "first" : "last" ]() );
      +		}
      +	},
      +
      +	previousPage: function( event ) {
      +		var item, base, height;
      +		if ( !this.active ) {
      +			this.next( event );
      +			return;
      +		}
      +		if ( this.isFirstItem() ) {
      +			return;
      +		}
      +		if ( this._hasScroll() ) {
      +			base = this.active.offset().top;
      +			height = this.element.height();
      +			this.active.prevAll( ".ui-menu-item" ).each( function() {
      +				item = $( this );
      +				return item.offset().top - base + height > 0;
      +			} );
      +
      +			this.focus( event, item );
      +		} else {
      +			this.focus( event, this.activeMenu.find( this.options.items ).first() );
      +		}
      +	},
      +
      +	_hasScroll: function() {
      +		return this.element.outerHeight() < this.element.prop( "scrollHeight" );
      +	},
      +
      +	select: function( event ) {
      +
      +		// TODO: It should never be possible to not have an active item at this
      +		// point, but the tests don't trigger mouseenter before click.
      +		this.active = this.active || $( event.target ).closest( ".ui-menu-item" );
      +		var ui = { item: this.active };
      +		if ( !this.active.has( ".ui-menu" ).length ) {
      +			this.collapseAll( event, true );
      +		}
      +		this._trigger( "select", event, ui );
      +	},
      +
      +	_filterMenuItems: function( character ) {
      +		var escapedCharacter = character.replace( /[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&" ),
      +			regex = new RegExp( "^" + escapedCharacter, "i" );
      +
      +		return this.activeMenu
      +			.find( this.options.items )
      +
      +				// Only match on items, not dividers or other content (#10571)
      +				.filter( ".ui-menu-item" )
      +					.filter( function() {
      +						return regex.test(
      +							$.trim( $( this ).children( ".ui-menu-item-wrapper" ).text() ) );
      +					} );
      +	}
      +} );
      +
      +
      +/*!
      + * jQuery UI Autocomplete 1.12.1
      + * http://jqueryui.com
      + *
      + * Copyright jQuery Foundation and other contributors
      + * Released under the MIT license.
      + * http://jquery.org/license
      + */
      +
      +//>>label: Autocomplete
      +//>>group: Widgets
      +//>>description: Lists suggested words as the user is typing.
      +//>>docs: http://api.jqueryui.com/autocomplete/
      +//>>demos: http://jqueryui.com/autocomplete/
      +//>>css.structure: ../../themes/base/core.css
      +//>>css.structure: ../../themes/base/autocomplete.css
      +//>>css.theme: ../../themes/base/theme.css
      +
      +
      +
      +$.widget( "ui.autocomplete", {
      +	version: "1.12.1",
      +	defaultElement: "<input>",
      +	options: {
      +		appendTo: null,
      +		autoFocus: false,
      +		delay: 300,
      +		minLength: 1,
      +		position: {
      +			my: "left top",
      +			at: "left bottom",
      +			collision: "none"
      +		},
      +		source: null,
      +
      +		// Callbacks
      +		change: null,
      +		close: null,
      +		focus: null,
      +		open: null,
      +		response: null,
      +		search: null,
      +		select: null
      +	},
      +
      +	requestIndex: 0,
      +	pending: 0,
      +
      +	_create: function() {
      +
      +		// Some browsers only repeat keydown events, not keypress events,
      +		// so we use the suppressKeyPress flag to determine if we've already
      +		// handled the keydown event. #7269
      +		// Unfortunately the code for & in keypress is the same as the up arrow,
      +		// so we use the suppressKeyPressRepeat flag to avoid handling keypress
      +		// events when we know the keydown event was used to modify the
      +		// search term. #7799
      +		var suppressKeyPress, suppressKeyPressRepeat, suppressInput,
      +			nodeName = this.element[ 0 ].nodeName.toLowerCase(),
      +			isTextarea = nodeName === "textarea",
      +			isInput = nodeName === "input";
      +
      +		// Textareas are always multi-line
      +		// Inputs are always single-line, even if inside a contentEditable element
      +		// IE also treats inputs as contentEditable
      +		// All other element types are determined by whether or not they're contentEditable
      +		this.isMultiLine = isTextarea || !isInput && this._isContentEditable( this.element );
      +
      +		this.valueMethod = this.element[ isTextarea || isInput ? "val" : "text" ];
      +		this.isNewMenu = true;
      +
      +		this._addClass( "ui-autocomplete-input" );
      +		this.element.attr( "autocomplete", "off" );
      +
      +		this._on( this.element, {
      +			keydown: function( event ) {
      +				if ( this.element.prop( "readOnly" ) ) {
      +					suppressKeyPress = true;
      +					suppressInput = true;
      +					suppressKeyPressRepeat = true;
      +					return;
      +				}
      +
      +				suppressKeyPress = false;
      +				suppressInput = false;
      +				suppressKeyPressRepeat = false;
      +				var keyCode = $.ui.keyCode;
      +				switch ( event.keyCode ) {
      +				case keyCode.PAGE_UP:
      +					suppressKeyPress = true;
      +					this._move( "previousPage", event );
      +					break;
      +				case keyCode.PAGE_DOWN:
      +					suppressKeyPress = true;
      +					this._move( "nextPage", event );
      +					break;
      +				case keyCode.UP:
      +					suppressKeyPress = true;
      +					this._keyEvent( "previous", event );
      +					break;
      +				case keyCode.DOWN:
      +					suppressKeyPress = true;
      +					this._keyEvent( "next", event );
      +					break;
      +				case keyCode.ENTER:
      +
      +					// when menu is open and has focus
      +					if ( this.menu.active ) {
      +
      +						// #6055 - Opera still allows the keypress to occur
      +						// which causes forms to submit
      +						suppressKeyPress = true;
      +						event.preventDefault();
      +						this.menu.select( event );
      +					}
      +					break;
      +				case keyCode.TAB:
      +					if ( this.menu.active ) {
      +						this.menu.select( event );
      +					}
      +					break;
      +				case keyCode.ESCAPE:
      +					if ( this.menu.element.is( ":visible" ) ) {
      +						if ( !this.isMultiLine ) {
      +							this._value( this.term );
      +						}
      +						this.close( event );
      +
      +						// Different browsers have different default behavior for escape
      +						// Single press can mean undo or clear
      +						// Double press in IE means clear the whole form
      +						event.preventDefault();
      +					}
      +					break;
      +				default:
      +					suppressKeyPressRepeat = true;
      +
      +					// search timeout should be triggered before the input value is changed
      +					this._searchTimeout( event );
      +					break;
      +				}
      +			},
      +			keypress: function( event ) {
      +				if ( suppressKeyPress ) {
      +					suppressKeyPress = false;
      +					if ( !this.isMultiLine || this.menu.element.is( ":visible" ) ) {
      +						event.preventDefault();
      +					}
      +					return;
      +				}
      +				if ( suppressKeyPressRepeat ) {
      +					return;
      +				}
      +
      +				// Replicate some key handlers to allow them to repeat in Firefox and Opera
      +				var keyCode = $.ui.keyCode;
      +				switch ( event.keyCode ) {
      +				case keyCode.PAGE_UP:
      +					this._move( "previousPage", event );
      +					break;
      +				case keyCode.PAGE_DOWN:
      +					this._move( "nextPage", event );
      +					break;
      +				case keyCode.UP:
      +					this._keyEvent( "previous", event );
      +					break;
      +				case keyCode.DOWN:
      +					this._keyEvent( "next", event );
      +					break;
      +				}
      +			},
      +			input: function( event ) {
      +				if ( suppressInput ) {
      +					suppressInput = false;
      +					event.preventDefault();
      +					return;
      +				}
      +				this._searchTimeout( event );
      +			},
      +			focus: function() {
      +				this.selectedItem = null;
      +				this.previous = this._value();
      +			},
      +			blur: function( event ) {
      +				if ( this.cancelBlur ) {
      +					delete this.cancelBlur;
      +					return;
      +				}
      +
      +				clearTimeout( this.searching );
      +				this.close( event );
      +				this._change( event );
      +			}
      +		} );
      +
      +		this._initSource();
      +		this.menu = $( "<ul>" )
      +			.appendTo( this._appendTo() )
      +			.menu( {
      +
      +				// disable ARIA support, the live region takes care of that
      +				role: null
      +			} )
      +			.hide()
      +			.menu( "instance" );
      +
      +		this._addClass( this.menu.element, "ui-autocomplete", "ui-front" );
      +		this._on( this.menu.element, {
      +			mousedown: function( event ) {
      +
      +				// prevent moving focus out of the text field
      +				event.preventDefault();
      +
      +				// IE doesn't prevent moving focus even with event.preventDefault()
      +				// so we set a flag to know when we should ignore the blur event
      +				this.cancelBlur = true;
      +				this._delay( function() {
      +					delete this.cancelBlur;
      +
      +					// Support: IE 8 only
      +					// Right clicking a menu item or selecting text from the menu items will
      +					// result in focus moving out of the input. However, we've already received
      +					// and ignored the blur event because of the cancelBlur flag set above. So
      +					// we restore focus to ensure that the menu closes properly based on the user's
      +					// next actions.
      +					if ( this.element[ 0 ] !== $.ui.safeActiveElement( this.document[ 0 ] ) ) {
      +						this.element.trigger( "focus" );
      +					}
      +				} );
      +			},
      +			menufocus: function( event, ui ) {
      +				var label, item;
      +
      +				// support: Firefox
      +				// Prevent accidental activation of menu items in Firefox (#7024 #9118)
      +				if ( this.isNewMenu ) {
      +					this.isNewMenu = false;
      +					if ( event.originalEvent && /^mouse/.test( event.originalEvent.type ) ) {
      +						this.menu.blur();
      +
      +						this.document.one( "mousemove", function() {
      +							$( event.target ).trigger( event.originalEvent );
      +						} );
      +
      +						return;
      +					}
      +				}
      +
      +				item = ui.item.data( "ui-autocomplete-item" );
      +				if ( false !== this._trigger( "focus", event, { item: item } ) ) {
      +
      +					// use value to match what will end up in the input, if it was a key event
      +					if ( event.originalEvent && /^key/.test( event.originalEvent.type ) ) {
      +						this._value( item.value );
      +					}
      +				}
      +
      +				// Announce the value in the liveRegion
      +				label = ui.item.attr( "aria-label" ) || item.value;
      +				if ( label && $.trim( label ).length ) {
      +					this.liveRegion.children().hide();
      +					$( "<div>" ).text( label ).appendTo( this.liveRegion );
      +				}
      +			},
      +			menuselect: function( event, ui ) {
      +				var item = ui.item.data( "ui-autocomplete-item" ),
      +					previous = this.previous;
      +
      +				// Only trigger when focus was lost (click on menu)
      +				if ( this.element[ 0 ] !== $.ui.safeActiveElement( this.document[ 0 ] ) ) {
      +					this.element.trigger( "focus" );
      +					this.previous = previous;
      +
      +					// #6109 - IE triggers two focus events and the second
      +					// is asynchronous, so we need to reset the previous
      +					// term synchronously and asynchronously :-(
      +					this._delay( function() {
      +						this.previous = previous;
      +						this.selectedItem = item;
      +					} );
      +				}
      +
      +				if ( false !== this._trigger( "select", event, { item: item } ) ) {
      +					this._value( item.value );
      +				}
      +
      +				// reset the term after the select event
      +				// this allows custom select handling to work properly
      +				this.term = this._value();
      +
      +				this.close( event );
      +				this.selectedItem = item;
      +			}
      +		} );
      +
      +		this.liveRegion = $( "<div>", {
      +			role: "status",
      +			"aria-live": "assertive",
      +			"aria-relevant": "additions"
      +		} )
      +			.appendTo( this.document[ 0 ].body );
      +
      +		this._addClass( this.liveRegion, null, "ui-helper-hidden-accessible" );
      +
      +		// Turning off autocomplete prevents the browser from remembering the
      +		// value when navigating through history, so we re-enable autocomplete
      +		// if the page is unloaded before the widget is destroyed. #7790
      +		this._on( this.window, {
      +			beforeunload: function() {
      +				this.element.removeAttr( "autocomplete" );
      +			}
      +		} );
      +	},
      +
      +	_destroy: function() {
      +		clearTimeout( this.searching );
      +		this.element.removeAttr( "autocomplete" );
      +		this.menu.element.remove();
      +		this.liveRegion.remove();
      +	},
      +
      +	_setOption: function( key, value ) {
      +		this._super( key, value );
      +		if ( key === "source" ) {
      +			this._initSource();
      +		}
      +		if ( key === "appendTo" ) {
      +			this.menu.element.appendTo( this._appendTo() );
      +		}
      +		if ( key === "disabled" && value && this.xhr ) {
      +			this.xhr.abort();
      +		}
      +	},
      +
      +	_isEventTargetInWidget: function( event ) {
      +		var menuElement = this.menu.element[ 0 ];
      +
      +		return event.target === this.element[ 0 ] ||
      +			event.target === menuElement ||
      +			$.contains( menuElement, event.target );
      +	},
      +
      +	_closeOnClickOutside: function( event ) {
      +		if ( !this._isEventTargetInWidget( event ) ) {
      +			this.close();
      +		}
      +	},
      +
      +	_appendTo: function() {
      +		var element = this.options.appendTo;
      +
      +		if ( element ) {
      +			element = element.jquery || element.nodeType ?
      +				$( element ) :
      +				this.document.find( element ).eq( 0 );
      +		}
      +
      +		if ( !element || !element[ 0 ] ) {
      +			element = this.element.closest( ".ui-front, dialog" );
      +		}
      +
      +		if ( !element.length ) {
      +			element = this.document[ 0 ].body;
      +		}
      +
      +		return element;
      +	},
      +
      +	_initSource: function() {
      +		var array, url,
      +			that = this;
      +		if ( $.isArray( this.options.source ) ) {
      +			array = this.options.source;
      +			this.source = function( request, response ) {
      +				response( $.ui.autocomplete.filter( array, request.term ) );
      +			};
      +		} else if ( typeof this.options.source === "string" ) {
      +			url = this.options.source;
      +			this.source = function( request, response ) {
      +				if ( that.xhr ) {
      +					that.xhr.abort();
      +				}
      +				that.xhr = $.ajax( {
      +					url: url,
      +					data: request,
      +					dataType: "json",
      +					success: function( data ) {
      +						response( data );
      +					},
      +					error: function() {
      +						response( [] );
      +					}
      +				} );
      +			};
      +		} else {
      +			this.source = this.options.source;
      +		}
      +	},
      +
      +	_searchTimeout: function( event ) {
      +		clearTimeout( this.searching );
      +		this.searching = this._delay( function() {
      +
      +			// Search if the value has changed, or if the user retypes the same value (see #7434)
      +			var equalValues = this.term === this._value(),
      +				menuVisible = this.menu.element.is( ":visible" ),
      +				modifierKey = event.altKey || event.ctrlKey || event.metaKey || event.shiftKey;
      +
      +			if ( !equalValues || ( equalValues && !menuVisible && !modifierKey ) ) {
      +				this.selectedItem = null;
      +				this.search( null, event );
      +			}
      +		}, this.options.delay );
      +	},
      +
      +	search: function( value, event ) {
      +		value = value != null ? value : this._value();
      +
      +		// Always save the actual value, not the one passed as an argument
      +		this.term = this._value();
      +
      +		if ( value.length < this.options.minLength ) {
      +			return this.close( event );
      +		}
      +
      +		if ( this._trigger( "search", event ) === false ) {
      +			return;
      +		}
      +
      +		return this._search( value );
      +	},
      +
      +	_search: function( value ) {
      +		this.pending++;
      +		this._addClass( "ui-autocomplete-loading" );
      +		this.cancelSearch = false;
      +
      +		this.source( { term: value }, this._response() );
      +	},
      +
      +	_response: function() {
      +		var index = ++this.requestIndex;
      +
      +		return $.proxy( function( content ) {
      +			if ( index === this.requestIndex ) {
      +				this.__response( content );
      +			}
      +
      +			this.pending--;
      +			if ( !this.pending ) {
      +				this._removeClass( "ui-autocomplete-loading" );
      +			}
      +		}, this );
      +	},
      +
      +	__response: function( content ) {
      +		if ( content ) {
      +			content = this._normalize( content );
      +		}
      +		this._trigger( "response", null, { content: content } );
      +		if ( !this.options.disabled && content && content.length && !this.cancelSearch ) {
      +			this._suggest( content );
      +			this._trigger( "open" );
      +		} else {
      +
      +			// use ._close() instead of .close() so we don't cancel future searches
      +			this._close();
      +		}
      +	},
      +
      +	close: function( event ) {
      +		this.cancelSearch = true;
      +		this._close( event );
      +	},
      +
      +	_close: function( event ) {
      +
      +		// Remove the handler that closes the menu on outside clicks
      +		this._off( this.document, "mousedown" );
      +
      +		if ( this.menu.element.is( ":visible" ) ) {
      +			this.menu.element.hide();
      +			this.menu.blur();
      +			this.isNewMenu = true;
      +			this._trigger( "close", event );
      +		}
      +	},
      +
      +	_change: function( event ) {
      +		if ( this.previous !== this._value() ) {
      +			this._trigger( "change", event, { item: this.selectedItem } );
      +		}
      +	},
      +
      +	_normalize: function( items ) {
      +
      +		// assume all items have the right format when the first item is complete
      +		if ( items.length && items[ 0 ].label && items[ 0 ].value ) {
      +			return items;
      +		}
      +		return $.map( items, function( item ) {
      +			if ( typeof item === "string" ) {
      +				return {
      +					label: item,
      +					value: item
      +				};
      +			}
      +			return $.extend( {}, item, {
      +				label: item.label || item.value,
      +				value: item.value || item.label
      +			} );
      +		} );
      +	},
      +
      +	_suggest: function( items ) {
      +		var ul = this.menu.element.empty();
      +		this._renderMenu( ul, items );
      +		this.isNewMenu = true;
      +		this.menu.refresh();
      +
      +		// Size and position menu
      +		ul.show();
      +		this._resizeMenu();
      +		ul.position( $.extend( {
      +			of: this.element
      +		}, this.options.position ) );
      +
      +		if ( this.options.autoFocus ) {
      +			this.menu.next();
      +		}
      +
      +		// Listen for interactions outside of the widget (#6642)
      +		this._on( this.document, {
      +			mousedown: "_closeOnClickOutside"
      +		} );
      +	},
      +
      +	_resizeMenu: function() {
      +		var ul = this.menu.element;
      +		ul.outerWidth( Math.max(
      +
      +			// Firefox wraps long text (possibly a rounding bug)
      +			// so we add 1px to avoid the wrapping (#7513)
      +			ul.width( "" ).outerWidth() + 1,
      +			this.element.outerWidth()
      +		) );
      +	},
      +
      +	_renderMenu: function( ul, items ) {
      +		var that = this;
      +		$.each( items, function( index, item ) {
      +			that._renderItemData( ul, item );
      +		} );
      +	},
      +
      +	_renderItemData: function( ul, item ) {
      +		return this._renderItem( ul, item ).data( "ui-autocomplete-item", item );
      +	},
      +
      +	_renderItem: function( ul, item ) {
      +		return $( "<li>" )
      +			.append( $( "<div>" ).text( item.label ) )
      +			.appendTo( ul );
      +	},
      +
      +	_move: function( direction, event ) {
      +		if ( !this.menu.element.is( ":visible" ) ) {
      +			this.search( null, event );
      +			return;
      +		}
      +		if ( this.menu.isFirstItem() && /^previous/.test( direction ) ||
      +				this.menu.isLastItem() && /^next/.test( direction ) ) {
      +
      +			if ( !this.isMultiLine ) {
      +				this._value( this.term );
      +			}
      +
      +			this.menu.blur();
      +			return;
      +		}
      +		this.menu[ direction ]( event );
      +	},
      +
      +	widget: function() {
      +		return this.menu.element;
      +	},
      +
      +	_value: function() {
      +		return this.valueMethod.apply( this.element, arguments );
      +	},
      +
      +	_keyEvent: function( keyEvent, event ) {
      +		if ( !this.isMultiLine || this.menu.element.is( ":visible" ) ) {
      +			this._move( keyEvent, event );
      +
      +			// Prevents moving cursor to beginning/end of the text field in some browsers
      +			event.preventDefault();
      +		}
      +	},
      +
      +	// Support: Chrome <=50
      +	// We should be able to just use this.element.prop( "isContentEditable" )
      +	// but hidden elements always report false in Chrome.
      +	// https://code.google.com/p/chromium/issues/detail?id=313082
      +	_isContentEditable: function( element ) {
      +		if ( !element.length ) {
      +			return false;
      +		}
      +
      +		var editable = element.prop( "contentEditable" );
      +
      +		if ( editable === "inherit" ) {
      +		  return this._isContentEditable( element.parent() );
      +		}
      +
      +		return editable === "true";
      +	}
      +} );
      +
      +$.extend( $.ui.autocomplete, {
      +	escapeRegex: function( value ) {
      +		return value.replace( /[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&" );
      +	},
      +	filter: function( array, term ) {
      +		var matcher = new RegExp( $.ui.autocomplete.escapeRegex( term ), "i" );
      +		return $.grep( array, function( value ) {
      +			return matcher.test( value.label || value.value || value );
      +		} );
      +	}
      +} );
      +
      +// Live region extension, adding a `messages` option
      +// NOTE: This is an experimental API. We are still investigating
      +// a full solution for string manipulation and internationalization.
      +$.widget( "ui.autocomplete", $.ui.autocomplete, {
      +	options: {
      +		messages: {
      +			noResults: "No search results.",
      +			results: function( amount ) {
      +				return amount + ( amount > 1 ? " results are" : " result is" ) +
      +					" available, use up and down arrow keys to navigate.";
      +			}
      +		}
      +	},
      +
      +	__response: function( content ) {
      +		var message;
      +		this._superApply( arguments );
      +		if ( this.options.disabled || this.cancelSearch ) {
      +			return;
      +		}
      +		if ( content && content.length ) {
      +			message = this.options.messages.results( content.length );
      +		} else {
      +			message = this.options.messages.noResults;
      +		}
      +		this.liveRegion.children().hide();
      +		$( "<div>" ).text( message ).appendTo( this.liveRegion );
      +	}
      +} );
      +
      +var widgetsAutocomplete = $.ui.autocomplete;
      +
      +
      +
      +
      +}));
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/jquery/jquery-ui.min.css b/docs/site/testapidocs/jquery/jquery-ui.min.css
      new file mode 100644
      index 00000000..6be72f58
      --- /dev/null
      +++ b/docs/site/testapidocs/jquery/jquery-ui.min.css
      @@ -0,0 +1,7 @@
      +/*! jQuery UI - v1.12.1 - 2018-12-06
      +* http://jqueryui.com
      +* Includes: core.css, autocomplete.css, menu.css, theme.css
      +* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=custom-theme&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgImgOpacityContent=75&bgImgOpacityHeader=75&cornerRadiusShadow=8px&offsetLeftShadow=-8px&offsetTopShadow=-8px&thicknessShadow=8px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=%23aaaaaa&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=%23aaaaaa&iconColorError=%23cd0a0a&fcError=%23cd0a0a&borderColorError=%23cd0a0a&bgTextureError=glass&bgColorError=%23fef1ec&iconColorHighlight=%232e83ff&fcHighlight=%23363636&borderColorHighlight=%23fcefa1&bgTextureHighlight=glass&bgColorHighlight=%23fbf9ee&iconColorActive=%23454545&fcActive=%23212121&borderColorActive=%23aaaaaa&bgTextureActive=glass&bgColorActive=%23dadada&iconColorHover=%23454545&fcHover=%23212121&borderColorHover=%23999999&bgTextureHover=glass&bgColorHover=%23dadada&iconColorDefault=%23888888&fcDefault=%23555555&borderColorDefault=%23d3d3d3&bgTextureDefault=glass&bgColorDefault=%23e6e6e6&iconColorContent=%23222222&fcContent=%23222222&borderColorContent=%23aaaaaa&bgTextureContent=flat&bgColorContent=%23ffffff&iconColorHeader=%23222222&fcHeader=%23222222&borderColorHeader=%23aaaaaa&bgTextureHeader=highlight_soft&bgColorHeader=%23cccccc&cornerRadius=4px&fwDefault=normal&fsDefault=1.1em&ffDefault=Verdana%2CArial%2Csans-serif
      +* Copyright jQuery Foundation and other contributors; Licensed MIT */
      +
      +.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-widget{font-family:Verdana,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Verdana,Arial,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #d3d3d3}.ui-widget-content{border:1px solid #aaa;background:#fff;color:#222}.ui-widget-content a{color:#222}.ui-widget-header{border:1px solid #aaa;background:#ccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;color:#222;font-weight:bold}.ui-widget-header a{color:#222}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active{border:1px solid #d3d3d3;background:#e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#555}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button,.ui-button{color:#555;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus{border:1px solid #999;background:#dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#212121}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,a.ui-button:hover,a.ui-button:focus{color:#212121;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px rgb(94,158,214)}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active,.ui-button:active,.ui-button.ui-state-active:hover{border:1px solid #aaa;background:#dadada url("images/ui-bg_glass_65_dadada_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#212121}.ui-icon-background,.ui-state-active .ui-icon-background{border:#aaa;background-color:#212121}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#212121;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fcefa1;background:#fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;color:#363636}.ui-state-checked{border:1px solid #fcefa1;background:#fbf9ee}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;color:#cd0a0a}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#cd0a0a}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#cd0a0a}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon,.ui-button:hover .ui-icon,.ui-button:focus .ui-icon{background-image:url("images/ui-icons_454545_256x240.png")}.ui-state-active .ui-icon,.ui-button:active .ui-icon{background-image:url("images/ui-icons_454545_256x240.png")}.ui-state-highlight .ui-icon,.ui-button .ui-state-highlight.ui-icon{background-image:url("images/ui-icons_2e83ff_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_cd0a0a_256x240.png")}.ui-button .ui-icon{background-image:url("images/ui-icons_888888_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{-webkit-box-shadow:-8px -8px 8px #aaa;box-shadow:-8px -8px 8px #aaa}
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/jquery/jquery-ui.min.js b/docs/site/testapidocs/jquery/jquery-ui.min.js
      new file mode 100644
      index 00000000..54d4beb8
      --- /dev/null
      +++ b/docs/site/testapidocs/jquery/jquery-ui.min.js
      @@ -0,0 +1,6 @@
      +/*! jQuery UI - v1.12.1 - 2018-12-06
      +* http://jqueryui.com
      +* Includes: widget.js, position.js, keycode.js, unique-id.js, widgets/autocomplete.js, widgets/menu.js
      +* Copyright jQuery Foundation and other contributors; Licensed MIT */
      +
      +(function(t){"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)})(function(t){t.ui=t.ui||{},t.ui.version="1.12.1";var e=0,i=Array.prototype.slice;t.cleanData=function(e){return function(i){var s,n,o;for(o=0;null!=(n=i[o]);o++)try{s=t._data(n,"events"),s&&s.remove&&t(n).triggerHandler("remove")}catch(a){}e(i)}}(t.cleanData),t.widget=function(e,i,s){var n,o,a,r={},l=e.split(".")[0];e=e.split(".")[1];var h=l+"-"+e;return s||(s=i,i=t.Widget),t.isArray(s)&&(s=t.extend.apply(null,[{}].concat(s))),t.expr[":"][h.toLowerCase()]=function(e){return!!t.data(e,h)},t[l]=t[l]||{},n=t[l][e],o=t[l][e]=function(t,e){return this._createWidget?(arguments.length&&this._createWidget(t,e),void 0):new o(t,e)},t.extend(o,n,{version:s.version,_proto:t.extend({},s),_childConstructors:[]}),a=new i,a.options=t.widget.extend({},a.options),t.each(s,function(e,s){return t.isFunction(s)?(r[e]=function(){function t(){return i.prototype[e].apply(this,arguments)}function n(t){return i.prototype[e].apply(this,t)}return function(){var e,i=this._super,o=this._superApply;return this._super=t,this._superApply=n,e=s.apply(this,arguments),this._super=i,this._superApply=o,e}}(),void 0):(r[e]=s,void 0)}),o.prototype=t.widget.extend(a,{widgetEventPrefix:n?a.widgetEventPrefix||e:e},r,{constructor:o,namespace:l,widgetName:e,widgetFullName:h}),n?(t.each(n._childConstructors,function(e,i){var s=i.prototype;t.widget(s.namespace+"."+s.widgetName,o,i._proto)}),delete n._childConstructors):i._childConstructors.push(o),t.widget.bridge(e,o),o},t.widget.extend=function(e){for(var s,n,o=i.call(arguments,1),a=0,r=o.length;r>a;a++)for(s in o[a])n=o[a][s],o[a].hasOwnProperty(s)&&void 0!==n&&(e[s]=t.isPlainObject(n)?t.isPlainObject(e[s])?t.widget.extend({},e[s],n):t.widget.extend({},n):n);return e},t.widget.bridge=function(e,s){var n=s.prototype.widgetFullName||e;t.fn[e]=function(o){var a="string"==typeof o,r=i.call(arguments,1),l=this;return a?this.length||"instance"!==o?this.each(function(){var i,s=t.data(this,n);return"instance"===o?(l=s,!1):s?t.isFunction(s[o])&&"_"!==o.charAt(0)?(i=s[o].apply(s,r),i!==s&&void 0!==i?(l=i&&i.jquery?l.pushStack(i.get()):i,!1):void 0):t.error("no such method '"+o+"' for "+e+" widget instance"):t.error("cannot call methods on "+e+" prior to initialization; "+"attempted to call method '"+o+"'")}):l=void 0:(r.length&&(o=t.widget.extend.apply(null,[o].concat(r))),this.each(function(){var e=t.data(this,n);e?(e.option(o||{}),e._init&&e._init()):t.data(this,n,new s(o,this))})),l}},t.Widget=function(){},t.Widget._childConstructors=[],t.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"<div>",options:{classes:{},disabled:!1,create:null},_createWidget:function(i,s){s=t(s||this.defaultElement||this)[0],this.element=t(s),this.uuid=e++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=t(),this.hoverable=t(),this.focusable=t(),this.classesElementLookup={},s!==this&&(t.data(s,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===s&&this.destroy()}}),this.document=t(s.style?s.ownerDocument:s.document||s),this.window=t(this.document[0].defaultView||this.document[0].parentWindow)),this.options=t.widget.extend({},this.options,this._getCreateOptions(),i),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:t.noop,_create:t.noop,_init:t.noop,destroy:function(){var e=this;this._destroy(),t.each(this.classesElementLookup,function(t,i){e._removeClass(i,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:t.noop,widget:function(){return this.element},option:function(e,i){var s,n,o,a=e;if(0===arguments.length)return t.widget.extend({},this.options);if("string"==typeof e)if(a={},s=e.split("."),e=s.shift(),s.length){for(n=a[e]=t.widget.extend({},this.options[e]),o=0;s.length-1>o;o++)n[s[o]]=n[s[o]]||{},n=n[s[o]];if(e=s.pop(),1===arguments.length)return void 0===n[e]?null:n[e];n[e]=i}else{if(1===arguments.length)return void 0===this.options[e]?null:this.options[e];a[e]=i}return this._setOptions(a),this},_setOptions:function(t){var e;for(e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(e){var i,s,n;for(i in e)n=this.classesElementLookup[i],e[i]!==this.options.classes[i]&&n&&n.length&&(s=t(n.get()),this._removeClass(n,i),s.addClass(this._classes({element:s,keys:i,classes:e,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(e){function i(i,o){var a,r;for(r=0;i.length>r;r++)a=n.classesElementLookup[i[r]]||t(),a=e.add?t(t.unique(a.get().concat(e.element.get()))):t(a.not(e.element).get()),n.classesElementLookup[i[r]]=a,s.push(i[r]),o&&e.classes[i[r]]&&s.push(e.classes[i[r]])}var s=[],n=this;return e=t.extend({element:this.element,classes:this.options.classes||{}},e),this._on(e.element,{remove:"_untrackClassesElement"}),e.keys&&i(e.keys.match(/\S+/g)||[],!0),e.extra&&i(e.extra.match(/\S+/g)||[]),s.join(" ")},_untrackClassesElement:function(e){var i=this;t.each(i.classesElementLookup,function(s,n){-1!==t.inArray(e.target,n)&&(i.classesElementLookup[s]=t(n.not(e.target).get()))})},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){s="boolean"==typeof s?s:i;var n="string"==typeof t||null===t,o={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s};return o.element.toggleClass(this._classes(o),s),this},_on:function(e,i,s){var n,o=this;"boolean"!=typeof e&&(s=i,i=e,e=!1),s?(i=n=t(i),this.bindings=this.bindings.add(i)):(s=i,i=this.element,n=this.widget()),t.each(s,function(s,a){function r(){return e||o.options.disabled!==!0&&!t(this).hasClass("ui-state-disabled")?("string"==typeof a?o[a]:a).apply(o,arguments):void 0}"string"!=typeof a&&(r.guid=a.guid=a.guid||r.guid||t.guid++);var l=s.match(/^([\w:-]*)\s*(.*)$/),h=l[1]+o.eventNamespace,c=l[2];c?n.on(h,c,r):i.on(h,r)})},_off:function(e,i){i=(i||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,e.off(i).off(i),this.bindings=t(this.bindings.not(e).get()),this.focusable=t(this.focusable.not(e).get()),this.hoverable=t(this.hoverable.not(e).get())},_delay:function(t,e){function i(){return("string"==typeof t?s[t]:t).apply(s,arguments)}var s=this;return setTimeout(i,e||0)},_hoverable:function(e){this.hoverable=this.hoverable.add(e),this._on(e,{mouseenter:function(e){this._addClass(t(e.currentTarget),null,"ui-state-hover")},mouseleave:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-hover")}})},_focusable:function(e){this.focusable=this.focusable.add(e),this._on(e,{focusin:function(e){this._addClass(t(e.currentTarget),null,"ui-state-focus")},focusout:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-focus")}})},_trigger:function(e,i,s){var n,o,a=this.options[e];if(s=s||{},i=t.Event(i),i.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase(),i.target=this.element[0],o=i.originalEvent)for(n in o)n in i||(i[n]=o[n]);return this.element.trigger(i,s),!(t.isFunction(a)&&a.apply(this.element[0],[i].concat(s))===!1||i.isDefaultPrevented())}},t.each({show:"fadeIn",hide:"fadeOut"},function(e,i){t.Widget.prototype["_"+e]=function(s,n,o){"string"==typeof n&&(n={effect:n});var a,r=n?n===!0||"number"==typeof n?i:n.effect||i:e;n=n||{},"number"==typeof n&&(n={duration:n}),a=!t.isEmptyObject(n),n.complete=o,n.delay&&s.delay(n.delay),a&&t.effects&&t.effects.effect[r]?s[e](n):r!==e&&s[r]?s[r](n.duration,n.easing,o):s.queue(function(i){t(this)[e](),o&&o.call(s[0]),i()})}}),t.widget,function(){function e(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function i(e,i){return parseInt(t.css(e,i),10)||0}function s(e){var i=e[0];return 9===i.nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:t.isWindow(i)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:i.preventDefault?{width:0,height:0,offset:{top:i.pageY,left:i.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()}}var n,o=Math.max,a=Math.abs,r=/left|center|right/,l=/top|center|bottom/,h=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,u=/%$/,d=t.fn.position;t.position={scrollbarWidth:function(){if(void 0!==n)return n;var e,i,s=t("<div style='display:block;position:absolute;width:50px;height:50px;overflow:hidden;'><div style='height:100px;width:auto;'></div></div>"),o=s.children()[0];return t("body").append(s),e=o.offsetWidth,s.css("overflow","scroll"),i=o.offsetWidth,e===i&&(i=s[0].clientWidth),s.remove(),n=e-i},getScrollInfo:function(e){var i=e.isWindow||e.isDocument?"":e.element.css("overflow-x"),s=e.isWindow||e.isDocument?"":e.element.css("overflow-y"),n="scroll"===i||"auto"===i&&e.width<e.element[0].scrollWidth,o="scroll"===s||"auto"===s&&e.height<e.element[0].scrollHeight;return{width:o?t.position.scrollbarWidth():0,height:n?t.position.scrollbarWidth():0}},getWithinInfo:function(e){var i=t(e||window),s=t.isWindow(i[0]),n=!!i[0]&&9===i[0].nodeType,o=!s&&!n;return{element:i,isWindow:s,isDocument:n,offset:o?t(e).offset():{left:0,top:0},scrollLeft:i.scrollLeft(),scrollTop:i.scrollTop(),width:i.outerWidth(),height:i.outerHeight()}}},t.fn.position=function(n){if(!n||!n.of)return d.apply(this,arguments);n=t.extend({},n);var u,p,f,g,m,_,v=t(n.of),b=t.position.getWithinInfo(n.within),y=t.position.getScrollInfo(b),w=(n.collision||"flip").split(" "),k={};return _=s(v),v[0].preventDefault&&(n.at="left top"),p=_.width,f=_.height,g=_.offset,m=t.extend({},g),t.each(["my","at"],function(){var t,e,i=(n[this]||"").split(" ");1===i.length&&(i=r.test(i[0])?i.concat(["center"]):l.test(i[0])?["center"].concat(i):["center","center"]),i[0]=r.test(i[0])?i[0]:"center",i[1]=l.test(i[1])?i[1]:"center",t=h.exec(i[0]),e=h.exec(i[1]),k[this]=[t?t[0]:0,e?e[0]:0],n[this]=[c.exec(i[0])[0],c.exec(i[1])[0]]}),1===w.length&&(w[1]=w[0]),"right"===n.at[0]?m.left+=p:"center"===n.at[0]&&(m.left+=p/2),"bottom"===n.at[1]?m.top+=f:"center"===n.at[1]&&(m.top+=f/2),u=e(k.at,p,f),m.left+=u[0],m.top+=u[1],this.each(function(){var s,r,l=t(this),h=l.outerWidth(),c=l.outerHeight(),d=i(this,"marginLeft"),_=i(this,"marginTop"),x=h+d+i(this,"marginRight")+y.width,C=c+_+i(this,"marginBottom")+y.height,D=t.extend({},m),T=e(k.my,l.outerWidth(),l.outerHeight());"right"===n.my[0]?D.left-=h:"center"===n.my[0]&&(D.left-=h/2),"bottom"===n.my[1]?D.top-=c:"center"===n.my[1]&&(D.top-=c/2),D.left+=T[0],D.top+=T[1],s={marginLeft:d,marginTop:_},t.each(["left","top"],function(e,i){t.ui.position[w[e]]&&t.ui.position[w[e]][i](D,{targetWidth:p,targetHeight:f,elemWidth:h,elemHeight:c,collisionPosition:s,collisionWidth:x,collisionHeight:C,offset:[u[0]+T[0],u[1]+T[1]],my:n.my,at:n.at,within:b,elem:l})}),n.using&&(r=function(t){var e=g.left-D.left,i=e+p-h,s=g.top-D.top,r=s+f-c,u={target:{element:v,left:g.left,top:g.top,width:p,height:f},element:{element:l,left:D.left,top:D.top,width:h,height:c},horizontal:0>i?"left":e>0?"right":"center",vertical:0>r?"top":s>0?"bottom":"middle"};h>p&&p>a(e+i)&&(u.horizontal="center"),c>f&&f>a(s+r)&&(u.vertical="middle"),u.important=o(a(e),a(i))>o(a(s),a(r))?"horizontal":"vertical",n.using.call(this,t,u)}),l.offset(t.extend(D,{using:r}))})},t.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,a=s.width,r=t.left-e.collisionPosition.marginLeft,l=n-r,h=r+e.collisionWidth-a-n;e.collisionWidth>a?l>0&&0>=h?(i=t.left+l+e.collisionWidth-a-n,t.left+=l-i):t.left=h>0&&0>=l?n:l>h?n+a-e.collisionWidth:n:l>0?t.left+=l:h>0?t.left-=h:t.left=o(t.left-r,t.left)},top:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollTop:s.offset.top,a=e.within.height,r=t.top-e.collisionPosition.marginTop,l=n-r,h=r+e.collisionHeight-a-n;e.collisionHeight>a?l>0&&0>=h?(i=t.top+l+e.collisionHeight-a-n,t.top+=l-i):t.top=h>0&&0>=l?n:l>h?n+a-e.collisionHeight:n:l>0?t.top+=l:h>0?t.top-=h:t.top=o(t.top-r,t.top)}},flip:{left:function(t,e){var i,s,n=e.within,o=n.offset.left+n.scrollLeft,r=n.width,l=n.isWindow?n.scrollLeft:n.offset.left,h=t.left-e.collisionPosition.marginLeft,c=h-l,u=h+e.collisionWidth-r-l,d="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,p="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,f=-2*e.offset[0];0>c?(i=t.left+d+p+f+e.collisionWidth-r-o,(0>i||a(c)>i)&&(t.left+=d+p+f)):u>0&&(s=t.left-e.collisionPosition.marginLeft+d+p+f-l,(s>0||u>a(s))&&(t.left+=d+p+f))},top:function(t,e){var i,s,n=e.within,o=n.offset.top+n.scrollTop,r=n.height,l=n.isWindow?n.scrollTop:n.offset.top,h=t.top-e.collisionPosition.marginTop,c=h-l,u=h+e.collisionHeight-r-l,d="top"===e.my[1],p=d?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,f="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,g=-2*e.offset[1];0>c?(s=t.top+p+f+g+e.collisionHeight-r-o,(0>s||a(c)>s)&&(t.top+=p+f+g)):u>0&&(i=t.top-e.collisionPosition.marginTop+p+f+g-l,(i>0||u>a(i))&&(t.top+=p+f+g))}},flipfit:{left:function(){t.ui.position.flip.left.apply(this,arguments),t.ui.position.fit.left.apply(this,arguments)},top:function(){t.ui.position.flip.top.apply(this,arguments),t.ui.position.fit.top.apply(this,arguments)}}}}(),t.ui.position,t.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},t.fn.extend({uniqueId:function(){var t=0;return function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++t)})}}(),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&t(this).removeAttr("id")})}}),t.ui.safeActiveElement=function(t){var e;try{e=t.activeElement}catch(i){e=t.body}return e||(e=t.body),e.nodeName||(e=t.body),e},t.widget("ui.menu",{version:"1.12.1",defaultElement:"<ul>",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault()},"click .ui-menu-item":function(e){var i=t(e.target),s=t(t.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&i.not(".ui-state-disabled").length&&(this.select(e),e.isPropagationStopped()||(this.mouseHandled=!0),i.has(".ui-menu").length?this.expand(e):!this.element.is(":focus")&&s.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":function(e){if(!this.previousFilter){var i=t(e.target).closest(".ui-menu-item"),s=t(e.currentTarget);i[0]===s[0]&&(this._removeClass(s.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(e,s))}},mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this.element.find(this.options.items).eq(0);e||this.focus(t,i)},blur:function(e){this._delay(function(){var i=!t.contains(this.element[0],t.ui.safeActiveElement(this.document[0]));i&&this.collapseAll(e)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t),this.mouseHandled=!1}})},_destroy:function(){var e=this.element.find(".ui-menu-item").removeAttr("role aria-disabled"),i=e.children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),i.children().each(function(){var e=t(this);e.data("ui-menu-submenu-caret")&&e.remove()})},_keydown:function(e){var i,s,n,o,a=!0;switch(e.keyCode){case t.ui.keyCode.PAGE_UP:this.previousPage(e);break;case t.ui.keyCode.PAGE_DOWN:this.nextPage(e);break;case t.ui.keyCode.HOME:this._move("first","first",e);break;case t.ui.keyCode.END:this._move("last","last",e);break;case t.ui.keyCode.UP:this.previous(e);break;case t.ui.keyCode.DOWN:this.next(e);break;case t.ui.keyCode.LEFT:this.collapse(e);break;case t.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(e);break;case t.ui.keyCode.ENTER:case t.ui.keyCode.SPACE:this._activate(e);break;case t.ui.keyCode.ESCAPE:this.collapse(e);break;default:a=!1,s=this.previousFilter||"",o=!1,n=e.keyCode>=96&&105>=e.keyCode?""+(e.keyCode-96):String.fromCharCode(e.keyCode),clearTimeout(this.filterTimer),n===s?o=!0:n=s+n,i=this._filterMenuItems(n),i=o&&-1!==i.index(this.active.next())?this.active.nextAll(".ui-menu-item"):i,i.length||(n=String.fromCharCode(e.keyCode),i=this._filterMenuItems(n)),i.length?(this.focus(e,i),this.previousFilter=n,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}a&&e.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var e,i,s,n,o,a=this,r=this.options.icons.submenu,l=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),s=l.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var e=t(this),i=e.prev(),s=t("<span>").data("ui-menu-submenu-caret",!0);a._addClass(s,"ui-menu-icon","ui-icon "+r),i.attr("aria-haspopup","true").prepend(s),e.attr("aria-labelledby",i.attr("id"))}),this._addClass(s,"ui-menu","ui-widget ui-widget-content ui-front"),e=l.add(this.element),i=e.find(this.options.items),i.not(".ui-menu-item").each(function(){var e=t(this);a._isDivider(e)&&a._addClass(e,"ui-menu-divider","ui-widget-content")}),n=i.not(".ui-menu-item, .ui-menu-divider"),o=n.children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(n,"ui-menu-item")._addClass(o,"ui-menu-item-wrapper"),i.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!t.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){if("icons"===t){var i=this.element.find(".ui-menu-icon");this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)}this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t+""),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i,s,n;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),s=this.active.children(".ui-menu-item-wrapper"),this._addClass(s,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",s.attr("id")),n=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(n,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),i=e.children(".ui-menu"),i.length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(e){var i,s,n,o,a,r;this._hasScroll()&&(i=parseFloat(t.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(t.css(this.activeMenu[0],"paddingTop"))||0,n=e.offset().top-this.activeMenu.offset().top-i-s,o=this.activeMenu.scrollTop(),a=this.activeMenu.height(),r=e.outerHeight(),0>n?this.activeMenu.scrollTop(o+n):n+r>a&&this.activeMenu.scrollTop(o+n-a+r))},blur:function(t,e){e||clearTimeout(this.timer),this.active&&(this._removeClass(this.active.children(".ui-menu-item-wrapper"),null,"ui-state-active"),this._trigger("blur",t,{item:this.active}),this.active=null)},_startOpening:function(t){clearTimeout(this.timer),"true"===t.attr("aria-hidden")&&(this.timer=this._delay(function(){this._close(),this._open(t)},this.delay))},_open:function(e){var i=t.extend({of:this.active},this.options.position);clearTimeout(this.timer),this.element.find(".ui-menu").not(e.parents(".ui-menu")).hide().attr("aria-hidden","true"),e.show().removeAttr("aria-hidden").attr("aria-expanded","true").position(i)},collapseAll:function(e,i){clearTimeout(this.timer),this.timer=this._delay(function(){var s=i?this.element:t(e&&e.target).closest(this.element.find(".ui-menu"));s.length||(s=this.element),this._close(s),this.blur(e),this._removeClass(s.find(".ui-state-active"),null,"ui-state-active"),this.activeMenu=s},this.delay)},_close:function(t){t||(t=this.active?this.active.parent():this.element),t.find(".ui-menu").hide().attr("aria-hidden","true").attr("aria-expanded","false")},_closeOnDocumentClick:function(e){return!t(e.target).closest(".ui-menu").length},_isDivider:function(t){return!/[^\-\u2014\u2013\s]/.test(t.text())},collapse:function(t){var e=this.active&&this.active.parent().closest(".ui-menu-item",this.element);e&&e.length&&(this._close(),this.focus(t,e))},expand:function(t){var e=this.active&&this.active.children(".ui-menu ").find(this.options.items).first();e&&e.length&&(this._open(e.parent()),this._delay(function(){this.focus(t,e)}))},next:function(t){this._move("next","first",t)},previous:function(t){this._move("prev","last",t)},isFirstItem:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},isLastItem:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},_move:function(t,e,i){var s;this.active&&(s="first"===t||"last"===t?this.active["first"===t?"prevAll":"nextAll"](".ui-menu-item").eq(-1):this.active[t+"All"](".ui-menu-item").eq(0)),s&&s.length&&this.active||(s=this.activeMenu.find(this.options.items)[e]()),this.focus(i,s)},nextPage:function(e){var i,s,n;return this.active?(this.isLastItem()||(this._hasScroll()?(s=this.active.offset().top,n=this.element.height(),this.active.nextAll(".ui-menu-item").each(function(){return i=t(this),0>i.offset().top-s-n}),this.focus(e,i)):this.focus(e,this.activeMenu.find(this.options.items)[this.active?"last":"first"]())),void 0):(this.next(e),void 0)},previousPage:function(e){var i,s,n;return this.active?(this.isFirstItem()||(this._hasScroll()?(s=this.active.offset().top,n=this.element.height(),this.active.prevAll(".ui-menu-item").each(function(){return i=t(this),i.offset().top-s+n>0}),this.focus(e,i)):this.focus(e,this.activeMenu.find(this.options.items).first())),void 0):(this.next(e),void 0)},_hasScroll:function(){return this.element.outerHeight()<this.element.prop("scrollHeight")},select:function(e){this.active=this.active||t(e.target).closest(".ui-menu-item");var i={item:this.active};this.active.has(".ui-menu").length||this.collapseAll(e,!0),this._trigger("select",e,i)},_filterMenuItems:function(e){var i=e.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&"),s=RegExp("^"+i,"i");return this.activeMenu.find(this.options.items).filter(".ui-menu-item").filter(function(){return s.test(t.trim(t(this).children(".ui-menu-item-wrapper").text()))})}}),t.widget("ui.autocomplete",{version:"1.12.1",defaultElement:"<input>",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,_create:function(){var e,i,s,n=this.element[0].nodeName.toLowerCase(),o="textarea"===n,a="input"===n;this.isMultiLine=o||!a&&this._isContentEditable(this.element),this.valueMethod=this.element[o||a?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(n){if(this.element.prop("readOnly"))return e=!0,s=!0,i=!0,void 0;e=!1,s=!1,i=!1;var o=t.ui.keyCode;switch(n.keyCode){case o.PAGE_UP:e=!0,this._move("previousPage",n);break;case o.PAGE_DOWN:e=!0,this._move("nextPage",n);break;case o.UP:e=!0,this._keyEvent("previous",n);break;case o.DOWN:e=!0,this._keyEvent("next",n);break;case o.ENTER:this.menu.active&&(e=!0,n.preventDefault(),this.menu.select(n));break;case o.TAB:this.menu.active&&this.menu.select(n);break;case o.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(n),n.preventDefault());break;default:i=!0,this._searchTimeout(n)}},keypress:function(s){if(e)return e=!1,(!this.isMultiLine||this.menu.element.is(":visible"))&&s.preventDefault(),void 0;if(!i){var n=t.ui.keyCode;switch(s.keyCode){case n.PAGE_UP:this._move("previousPage",s);break;case n.PAGE_DOWN:this._move("nextPage",s);break;case n.UP:this._keyEvent("previous",s);break;case n.DOWN:this._keyEvent("next",s)}}},input:function(t){return s?(s=!1,t.preventDefault(),void 0):(this._searchTimeout(t),void 0)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){return this.cancelBlur?(delete this.cancelBlur,void 0):(clearTimeout(this.searching),this.close(t),this._change(t),void 0)}}),this._initSource(),this.menu=t("<ul>").appendTo(this._appendTo()).menu({role:null}).hide().menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(e){e.preventDefault(),this.cancelBlur=!0,this._delay(function(){delete this.cancelBlur,this.element[0]!==t.ui.safeActiveElement(this.document[0])&&this.element.trigger("focus")})},menufocus:function(e,i){var s,n;return this.isNewMenu&&(this.isNewMenu=!1,e.originalEvent&&/^mouse/.test(e.originalEvent.type))?(this.menu.blur(),this.document.one("mousemove",function(){t(e.target).trigger(e.originalEvent)}),void 0):(n=i.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",e,{item:n})&&e.originalEvent&&/^key/.test(e.originalEvent.type)&&this._value(n.value),s=i.item.attr("aria-label")||n.value,s&&t.trim(s).length&&(this.liveRegion.children().hide(),t("<div>").text(s).appendTo(this.liveRegion)),void 0)},menuselect:function(e,i){var s=i.item.data("ui-autocomplete-item"),n=this.previous;this.element[0]!==t.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=n,this._delay(function(){this.previous=n,this.selectedItem=s})),!1!==this._trigger("select",e,{item:s})&&this._value(s.value),this.term=this._value(),this.close(e),this.selectedItem=s}}),this.liveRegion=t("<div>",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(e){var i=this.menu.element[0];return e.target===this.element[0]||e.target===i||t.contains(i,e.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var e=this.options.appendTo;return e&&(e=e.jquery||e.nodeType?t(e):this.document.find(e).eq(0)),e&&e[0]||(e=this.element.closest(".ui-front, dialog")),e.length||(e=this.document[0].body),e},_initSource:function(){var e,i,s=this;t.isArray(this.options.source)?(e=this.options.source,this.source=function(i,s){s(t.ui.autocomplete.filter(e,i.term))}):"string"==typeof this.options.source?(i=this.options.source,this.source=function(e,n){s.xhr&&s.xhr.abort(),s.xhr=t.ajax({url:i,data:e,dataType:"json",success:function(t){n(t)},error:function(){n([])}})}):this.source=this.options.source},_searchTimeout:function(t){clearTimeout(this.searching),this.searching=this._delay(function(){var e=this.term===this._value(),i=this.menu.element.is(":visible"),s=t.altKey||t.ctrlKey||t.metaKey||t.shiftKey;(!e||e&&!i&&!s)&&(this.selectedItem=null,this.search(null,t))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length<this.options.minLength?this.close(e):this._trigger("search",e)!==!1?this._search(t):void 0},_search:function(t){this.pending++,this._addClass("ui-autocomplete-loading"),this.cancelSearch=!1,this.source({term:t},this._response())},_response:function(){var e=++this.requestIndex;return t.proxy(function(t){e===this.requestIndex&&this.__response(t),this.pending--,this.pending||this._removeClass("ui-autocomplete-loading")},this)},__response:function(t){t&&(t=this._normalize(t)),this._trigger("response",null,{content:t}),!this.options.disabled&&t&&t.length&&!this.cancelSearch?(this._suggest(t),this._trigger("open")):this._close()},close:function(t){this.cancelSearch=!0,this._close(t)},_close:function(t){this._off(this.document,"mousedown"),this.menu.element.is(":visible")&&(this.menu.element.hide(),this.menu.blur(),this.isNewMenu=!0,this._trigger("close",t))},_change:function(t){this.previous!==this._value()&&this._trigger("change",t,{item:this.selectedItem})},_normalize:function(e){return e.length&&e[0].label&&e[0].value?e:t.map(e,function(e){return"string"==typeof e?{label:e,value:e}:t.extend({},e,{label:e.label||e.value,value:e.value||e.label})})},_suggest:function(e){var i=this.menu.element.empty();this._renderMenu(i,e),this.isNewMenu=!0,this.menu.refresh(),i.show(),this._resizeMenu(),i.position(t.extend({of:this.element},this.options.position)),this.options.autoFocus&&this.menu.next(),this._on(this.document,{mousedown:"_closeOnClickOutside"})},_resizeMenu:function(){var t=this.menu.element;t.outerWidth(Math.max(t.width("").outerWidth()+1,this.element.outerWidth()))},_renderMenu:function(e,i){var s=this;t.each(i,function(t,i){s._renderItemData(e,i)})},_renderItemData:function(t,e){return this._renderItem(t,e).data("ui-autocomplete-item",e)},_renderItem:function(e,i){return t("<li>").append(t("<div>").text(i.label)).appendTo(e)},_move:function(t,e){return this.menu.element.is(":visible")?this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),this.menu.blur(),void 0):(this.menu[t](e),void 0):(this.search(null,e),void 0)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){(!this.isMultiLine||this.menu.element.is(":visible"))&&(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),t.extend(t.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(e,i){var s=RegExp(t.ui.autocomplete.escapeRegex(i),"i");return t.grep(e,function(t){return s.test(t.label||t.value||t)})}}),t.widget("ui.autocomplete",t.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(t>1?" results are":" result is")+" available, use up and down arrow keys to navigate."}}},__response:function(e){var i;this._superApply(arguments),this.options.disabled||this.cancelSearch||(i=e&&e.length?this.options.messages.results(e.length):this.options.messages.noResults,this.liveRegion.children().hide(),t("<div>").text(i).appendTo(this.liveRegion))}}),t.ui.autocomplete});
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/jquery/jquery-ui.structure.css b/docs/site/testapidocs/jquery/jquery-ui.structure.css
      new file mode 100644
      index 00000000..d8c81c2b
      --- /dev/null
      +++ b/docs/site/testapidocs/jquery/jquery-ui.structure.css
      @@ -0,0 +1,156 @@
      +/*!
      + * jQuery UI CSS Framework 1.12.1
      + * http://jqueryui.com
      + *
      + * Copyright jQuery Foundation and other contributors
      + * Released under the MIT license.
      + * http://jquery.org/license
      + *
      + * http://api.jqueryui.com/category/theming/
      + */
      +/* Layout helpers
      +----------------------------------*/
      +.ui-helper-hidden {
      +	display: none;
      +}
      +.ui-helper-hidden-accessible {
      +	border: 0;
      +	clip: rect(0 0 0 0);
      +	height: 1px;
      +	margin: -1px;
      +	overflow: hidden;
      +	padding: 0;
      +	position: absolute;
      +	width: 1px;
      +}
      +.ui-helper-reset {
      +	margin: 0;
      +	padding: 0;
      +	border: 0;
      +	outline: 0;
      +	line-height: 1.3;
      +	text-decoration: none;
      +	font-size: 100%;
      +	list-style: none;
      +}
      +.ui-helper-clearfix:before,
      +.ui-helper-clearfix:after {
      +	content: "";
      +	display: table;
      +	border-collapse: collapse;
      +}
      +.ui-helper-clearfix:after {
      +	clear: both;
      +}
      +.ui-helper-zfix {
      +	width: 100%;
      +	height: 100%;
      +	top: 0;
      +	left: 0;
      +	position: absolute;
      +	opacity: 0;
      +	filter:Alpha(Opacity=0); /* support: IE8 */
      +}
      +
      +.ui-front {
      +	z-index: 100;
      +}
      +
      +
      +/* Interaction Cues
      +----------------------------------*/
      +.ui-state-disabled {
      +	cursor: default !important;
      +	pointer-events: none;
      +}
      +
      +
      +/* Icons
      +----------------------------------*/
      +.ui-icon {
      +	display: inline-block;
      +	vertical-align: middle;
      +	margin-top: -.25em;
      +	position: relative;
      +	text-indent: -99999px;
      +	overflow: hidden;
      +	background-repeat: no-repeat;
      +}
      +
      +.ui-widget-icon-block {
      +	left: 50%;
      +	margin-left: -8px;
      +	display: block;
      +}
      +
      +/* Misc visuals
      +----------------------------------*/
      +
      +/* Overlays */
      +.ui-widget-overlay {
      +	position: fixed;
      +	top: 0;
      +	left: 0;
      +	width: 100%;
      +	height: 100%;
      +}
      +.ui-autocomplete {
      +	position: absolute;
      +	top: 0;
      +	left: 0;
      +	cursor: default;
      +}
      +.ui-menu {
      +	list-style: none;
      +	padding: 0;
      +	margin: 0;
      +	display: block;
      +	outline: 0;
      +}
      +.ui-menu .ui-menu {
      +	position: absolute;
      +}
      +.ui-menu .ui-menu-item {
      +	margin: 0;
      +	cursor: pointer;
      +	/* support: IE10, see #8844 */
      +	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
      +}
      +.ui-menu .ui-menu-item-wrapper {
      +	position: relative;
      +	padding: 3px 1em 3px .4em;
      +}
      +.ui-menu .ui-menu-divider {
      +	margin: 5px 0;
      +	height: 0;
      +	font-size: 0;
      +	line-height: 0;
      +	border-width: 1px 0 0 0;
      +}
      +.ui-menu .ui-state-focus,
      +.ui-menu .ui-state-active {
      +	margin: -1px;
      +}
      +
      +/* icon support */
      +.ui-menu-icons {
      +	position: relative;
      +}
      +.ui-menu-icons .ui-menu-item-wrapper {
      +	padding-left: 2em;
      +}
      +
      +/* left-aligned */
      +.ui-menu .ui-icon {
      +	position: absolute;
      +	top: 0;
      +	bottom: 0;
      +	left: .2em;
      +	margin: auto 0;
      +}
      +
      +/* right-aligned */
      +.ui-menu .ui-menu-icon {
      +	left: auto;
      +	right: 0;
      +}
      diff --git a/docs/site/testapidocs/jquery/jquery-ui.structure.min.css b/docs/site/testapidocs/jquery/jquery-ui.structure.min.css
      new file mode 100644
      index 00000000..e8808927
      --- /dev/null
      +++ b/docs/site/testapidocs/jquery/jquery-ui.structure.min.css
      @@ -0,0 +1,5 @@
      +/*! jQuery UI - v1.12.1 - 2018-12-06
      +* http://jqueryui.com
      +* Copyright jQuery Foundation and other contributors; Licensed MIT */
      +
      +.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/jquery/jszip-utils/dist/jszip-utils-ie.js b/docs/site/testapidocs/jquery/jszip-utils/dist/jszip-utils-ie.js
      new file mode 100644
      index 00000000..a74cc709
      --- /dev/null
      +++ b/docs/site/testapidocs/jquery/jszip-utils/dist/jszip-utils-ie.js
      @@ -0,0 +1,56 @@
      +/*!
      +
      +JSZipUtils - A collection of cross-browser utilities to go along with JSZip.
      +<http://stuk.github.io/jszip-utils>
      +
      +(c) 2014 Stuart Knightley, David Duponchel
      +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown.
      +
      +*/
      +;(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
      +var global=typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {};/* jshint evil: true, newcap: false */
      +/* global IEBinaryToArray_ByteStr, IEBinaryToArray_ByteStr_Last */
      +"use strict";
      +
      +// Adapted from http://stackoverflow.com/questions/1095102/how-do-i-load-binary-image-data-using-javascript-and-xmlhttprequest
      +var IEBinaryToArray_ByteStr_Script =
      +    "<!-- IEBinaryToArray_ByteStr -->\r\n"+
      +    "<script type='text/vbscript'>\r\n"+
      +    "Function IEBinaryToArray_ByteStr(Binary)\r\n"+
      +    "   IEBinaryToArray_ByteStr = CStr(Binary)\r\n"+
      +    "End Function\r\n"+
      +    "Function IEBinaryToArray_ByteStr_Last(Binary)\r\n"+
      +    "   Dim lastIndex\r\n"+
      +    "   lastIndex = LenB(Binary)\r\n"+
      +    "   if lastIndex mod 2 Then\r\n"+
      +    "       IEBinaryToArray_ByteStr_Last = Chr( AscB( MidB( Binary, lastIndex, 1 ) ) )\r\n"+
      +    "   Else\r\n"+
      +    "       IEBinaryToArray_ByteStr_Last = "+'""'+"\r\n"+
      +    "   End If\r\n"+
      +    "End Function\r\n"+
      +    "</script>\r\n";
      +
      +// inject VBScript
      +document.write(IEBinaryToArray_ByteStr_Script);
      +
      +global.JSZipUtils._getBinaryFromXHR = function (xhr) {
      +    var binary = xhr.responseBody;
      +    var byteMapping = {};
      +    for ( var i = 0; i < 256; i++ ) {
      +        for ( var j = 0; j < 256; j++ ) {
      +            byteMapping[ String.fromCharCode( i + (j << 8) ) ] =
      +                String.fromCharCode(i) + String.fromCharCode(j);
      +        }
      +    }
      +    var rawBytes = IEBinaryToArray_ByteStr(binary);
      +    var lastChr = IEBinaryToArray_ByteStr_Last(binary);
      +    return rawBytes.replace(/[\s\S]/g, function( match ) {
      +        return byteMapping[match];
      +    }) + lastChr;
      +};
      +
      +// enforcing Stuk's coding style
      +// vim: set shiftwidth=4 softtabstop=4:
      +
      +},{}]},{},[1])
      +;
      diff --git a/docs/site/testapidocs/jquery/jszip-utils/dist/jszip-utils-ie.min.js b/docs/site/testapidocs/jquery/jszip-utils/dist/jszip-utils-ie.min.js
      new file mode 100644
      index 00000000..93d8bc8e
      --- /dev/null
      +++ b/docs/site/testapidocs/jquery/jszip-utils/dist/jszip-utils-ie.min.js
      @@ -0,0 +1,10 @@
      +/*!
      +
      +JSZipUtils - A collection of cross-browser utilities to go along with JSZip.
      +<http://stuk.github.io/jszip-utils>
      +
      +(c) 2014 Stuart Knightley, David Duponchel
      +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown.
      +
      +*/
      +!function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g<d.length;g++)e(d[g]);return e}({1:[function(){var a="undefined"!=typeof self?self:"undefined"!=typeof window?window:{},b="<!-- IEBinaryToArray_ByteStr -->\r\n<script type='text/vbscript'>\r\nFunction IEBinaryToArray_ByteStr(Binary)\r\n   IEBinaryToArray_ByteStr = CStr(Binary)\r\nEnd Function\r\nFunction IEBinaryToArray_ByteStr_Last(Binary)\r\n   Dim lastIndex\r\n   lastIndex = LenB(Binary)\r\n   if lastIndex mod 2 Then\r\n       IEBinaryToArray_ByteStr_Last = Chr( AscB( MidB( Binary, lastIndex, 1 ) ) )\r\n   Else\r\n       IEBinaryToArray_ByteStr_Last = \"\"\r\n   End If\r\nEnd Function\r\n</script>\r\n";document.write(b),a.JSZipUtils._getBinaryFromXHR=function(a){for(var b=a.responseBody,c={},d=0;256>d;d++)for(var e=0;256>e;e++)c[String.fromCharCode(d+(e<<8))]=String.fromCharCode(d)+String.fromCharCode(e);var f=IEBinaryToArray_ByteStr(b),g=IEBinaryToArray_ByteStr_Last(b);return f.replace(/[\s\S]/g,function(a){return c[a]})+g}},{}]},{},[1]);
      diff --git a/docs/site/testapidocs/jquery/jszip-utils/dist/jszip-utils.js b/docs/site/testapidocs/jquery/jszip-utils/dist/jszip-utils.js
      new file mode 100644
      index 00000000..775895ec
      --- /dev/null
      +++ b/docs/site/testapidocs/jquery/jszip-utils/dist/jszip-utils.js
      @@ -0,0 +1,118 @@
      +/*!
      +
      +JSZipUtils - A collection of cross-browser utilities to go along with JSZip.
      +<http://stuk.github.io/jszip-utils>
      +
      +(c) 2014 Stuart Knightley, David Duponchel
      +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown.
      +
      +*/
      +!function(e){"object"==typeof exports?module.exports=e():"function"==typeof define&&define.amd?define(e):"undefined"!=typeof window?window.JSZipUtils=e():"undefined"!=typeof global?global.JSZipUtils=e():"undefined"!=typeof self&&(self.JSZipUtils=e())}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
      +'use strict';
      +
      +var JSZipUtils = {};
      +// just use the responseText with xhr1, response with xhr2.
      +// The transformation doesn't throw away high-order byte (with responseText)
      +// because JSZip handles that case. If not used with JSZip, you may need to
      +// do it, see https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data
      +JSZipUtils._getBinaryFromXHR = function (xhr) {
      +    // for xhr.responseText, the 0xFF mask is applied by JSZip
      +    return xhr.response || xhr.responseText;
      +};
      +
      +// taken from jQuery
      +function createStandardXHR() {
      +    try {
      +        return new window.XMLHttpRequest();
      +    } catch( e ) {}
      +}
      +
      +function createActiveXHR() {
      +    try {
      +        return new window.ActiveXObject("Microsoft.XMLHTTP");
      +    } catch( e ) {}
      +}
      +
      +// Create the request object
      +var createXHR = window.ActiveXObject ?
      +    /* Microsoft failed to properly
      +     * implement the XMLHttpRequest in IE7 (can't request local files),
      +     * so we use the ActiveXObject when it is available
      +     * Additionally XMLHttpRequest can be disabled in IE7/IE8 so
      +     * we need a fallback.
      +     */
      +    function() {
      +    return createStandardXHR() || createActiveXHR();
      +} :
      +    // For all other browsers, use the standard XMLHttpRequest object
      +    createStandardXHR;
      +
      +
      +
      +JSZipUtils.getBinaryContent = function(path, callback) {
      +    /*
      +     * Here is the tricky part : getting the data.
      +     * In firefox/chrome/opera/... setting the mimeType to 'text/plain; charset=x-user-defined'
      +     * is enough, the result is in the standard xhr.responseText.
      +     * cf https://developer.mozilla.org/En/XMLHttpRequest/Using_XMLHttpRequest#Receiving_binary_data_in_older_browsers
      +     * In IE <= 9, we must use (the IE only) attribute responseBody
      +     * (for binary data, its content is different from responseText).
      +     * In IE 10, the 'charset=x-user-defined' trick doesn't work, only the
      +     * responseType will work :
      +     * http://msdn.microsoft.com/en-us/library/ie/hh673569%28v=vs.85%29.aspx#Binary_Object_upload_and_download
      +     *
      +     * I'd like to use jQuery to avoid this XHR madness, but it doesn't support
      +     * the responseType attribute : http://bugs.jquery.com/ticket/11461
      +     */
      +    try {
      +
      +        var xhr = createXHR();
      +
      +        xhr.open('GET', path, true);
      +
      +        // recent browsers
      +        if ("responseType" in xhr) {
      +            xhr.responseType = "arraybuffer";
      +        }
      +
      +        // older browser
      +        if(xhr.overrideMimeType) {
      +            xhr.overrideMimeType("text/plain; charset=x-user-defined");
      +        }
      +
      +        xhr.onreadystatechange = function(evt) {
      +            var file, err;
      +            // use `xhr` and not `this`... thanks IE
      +            if (xhr.readyState === 4) {
      +                if (xhr.status === 200 || xhr.status === 0) {
      +                    file = null;
      +                    err = null;
      +                    try {
      +                        file = JSZipUtils._getBinaryFromXHR(xhr);
      +                    } catch(e) {
      +                        err = new Error(e);
      +                    }
      +                    callback(err, file);
      +                } else {
      +                    callback(new Error("Ajax error for " + path + " : " + this.status + " " + this.statusText), null);
      +                }
      +            }
      +        };
      +
      +        xhr.send();
      +
      +    } catch (e) {
      +        callback(new Error(e), null);
      +    }
      +};
      +
      +// export
      +module.exports = JSZipUtils;
      +
      +// enforcing Stuk's coding style
      +// vim: set shiftwidth=4 softtabstop=4:
      +
      +},{}]},{},[1])
      +(1)
      +});
      +;
      diff --git a/docs/site/testapidocs/jquery/jszip-utils/dist/jszip-utils.min.js b/docs/site/testapidocs/jquery/jszip-utils/dist/jszip-utils.min.js
      new file mode 100644
      index 00000000..78c7f5e5
      --- /dev/null
      +++ b/docs/site/testapidocs/jquery/jszip-utils/dist/jszip-utils.min.js
      @@ -0,0 +1,10 @@
      +/*!
      +
      +JSZipUtils - A collection of cross-browser utilities to go along with JSZip.
      +<http://stuk.github.io/jszip-utils>
      +
      +(c) 2014 Stuart Knightley, David Duponchel
      +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown.
      +
      +*/
      +!function(a){"object"==typeof exports?module.exports=a():"function"==typeof define&&define.amd?define(a):"undefined"!=typeof window?window.JSZipUtils=a():"undefined"!=typeof global?global.JSZipUtils=a():"undefined"!=typeof self&&(self.JSZipUtils=a())}(function(){return function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g<d.length;g++)e(d[g]);return e}({1:[function(a,b){"use strict";function c(){try{return new window.XMLHttpRequest}catch(a){}}function d(){try{return new window.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}}var e={};e._getBinaryFromXHR=function(a){return a.response||a.responseText};var f=window.ActiveXObject?function(){return c()||d()}:c;e.getBinaryContent=function(a,b){try{var c=f();c.open("GET",a,!0),"responseType"in c&&(c.responseType="arraybuffer"),c.overrideMimeType&&c.overrideMimeType("text/plain; charset=x-user-defined"),c.onreadystatechange=function(){var d,f;if(4===c.readyState)if(200===c.status||0===c.status){d=null,f=null;try{d=e._getBinaryFromXHR(c)}catch(g){f=new Error(g)}b(f,d)}else b(new Error("Ajax error for "+a+" : "+this.status+" "+this.statusText),null)},c.send()}catch(d){b(new Error(d),null)}},b.exports=e},{}]},{},[1])(1)});
      diff --git a/docs/site/testapidocs/jquery/jszip/dist/jszip.js b/docs/site/testapidocs/jquery/jszip/dist/jszip.js
      new file mode 100644
      index 00000000..f44b7054
      --- /dev/null
      +++ b/docs/site/testapidocs/jquery/jszip/dist/jszip.js
      @@ -0,0 +1,11623 @@
      +/*!
      +
      +JSZip v3.1.5 - A JavaScript class for generating and reading zip files
      +<http://stuartk.com/jszip>
      +
      +(c) 2009-2016 Stuart Knightley <stuart [at] stuartk.com>
      +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/master/LICENSE.markdown.
      +
      +JSZip uses the library pako released under the MIT license :
      +https://github.com/nodeca/pako/blob/master/LICENSE
      +*/
      +
      +(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.JSZip = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
      +'use strict';
      +var utils = require('./utils');
      +var support = require('./support');
      +// private property
      +var _keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
      +
      +
      +// public method for encoding
      +exports.encode = function(input) {
      +    var output = [];
      +    var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
      +    var i = 0, len = input.length, remainingBytes = len;
      +
      +    var isArray = utils.getTypeOf(input) !== "string";
      +    while (i < input.length) {
      +        remainingBytes = len - i;
      +
      +        if (!isArray) {
      +            chr1 = input.charCodeAt(i++);
      +            chr2 = i < len ? input.charCodeAt(i++) : 0;
      +            chr3 = i < len ? input.charCodeAt(i++) : 0;
      +        } else {
      +            chr1 = input[i++];
      +            chr2 = i < len ? input[i++] : 0;
      +            chr3 = i < len ? input[i++] : 0;
      +        }
      +
      +        enc1 = chr1 >> 2;
      +        enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
      +        enc3 = remainingBytes > 1 ? (((chr2 & 15) << 2) | (chr3 >> 6)) : 64;
      +        enc4 = remainingBytes > 2 ? (chr3 & 63) : 64;
      +
      +        output.push(_keyStr.charAt(enc1) + _keyStr.charAt(enc2) + _keyStr.charAt(enc3) + _keyStr.charAt(enc4));
      +
      +    }
      +
      +    return output.join("");
      +};
      +
      +// public method for decoding
      +exports.decode = function(input) {
      +    var chr1, chr2, chr3;
      +    var enc1, enc2, enc3, enc4;
      +    var i = 0, resultIndex = 0;
      +
      +    var dataUrlPrefix = "data:";
      +
      +    if (input.substr(0, dataUrlPrefix.length) === dataUrlPrefix) {
      +        // This is a common error: people give a data url
      +        // (data:image/png;base64,iVBOR...) with a {base64: true} and
      +        // wonders why things don't work.
      +        // We can detect that the string input looks like a data url but we
      +        // *can't* be sure it is one: removing everything up to the comma would
      +        // be too dangerous.
      +        throw new Error("Invalid base64 input, it looks like a data url.");
      +    }
      +
      +    input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
      +
      +    var totalLength = input.length * 3 / 4;
      +    if(input.charAt(input.length - 1) === _keyStr.charAt(64)) {
      +        totalLength--;
      +    }
      +    if(input.charAt(input.length - 2) === _keyStr.charAt(64)) {
      +        totalLength--;
      +    }
      +    if (totalLength % 1 !== 0) {
      +        // totalLength is not an integer, the length does not match a valid
      +        // base64 content. That can happen if:
      +        // - the input is not a base64 content
      +        // - the input is *almost* a base64 content, with a extra chars at the
      +        //   beginning or at the end
      +        // - the input uses a base64 variant (base64url for example)
      +        throw new Error("Invalid base64 input, bad content length.");
      +    }
      +    var output;
      +    if (support.uint8array) {
      +        output = new Uint8Array(totalLength|0);
      +    } else {
      +        output = new Array(totalLength|0);
      +    }
      +
      +    while (i < input.length) {
      +
      +        enc1 = _keyStr.indexOf(input.charAt(i++));
      +        enc2 = _keyStr.indexOf(input.charAt(i++));
      +        enc3 = _keyStr.indexOf(input.charAt(i++));
      +        enc4 = _keyStr.indexOf(input.charAt(i++));
      +
      +        chr1 = (enc1 << 2) | (enc2 >> 4);
      +        chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
      +        chr3 = ((enc3 & 3) << 6) | enc4;
      +
      +        output[resultIndex++] = chr1;
      +
      +        if (enc3 !== 64) {
      +            output[resultIndex++] = chr2;
      +        }
      +        if (enc4 !== 64) {
      +            output[resultIndex++] = chr3;
      +        }
      +
      +    }
      +
      +    return output;
      +};
      +
      +},{"./support":30,"./utils":32}],2:[function(require,module,exports){
      +'use strict';
      +
      +var external = require("./external");
      +var DataWorker = require('./stream/DataWorker');
      +var DataLengthProbe = require('./stream/DataLengthProbe');
      +var Crc32Probe = require('./stream/Crc32Probe');
      +var DataLengthProbe = require('./stream/DataLengthProbe');
      +
      +/**
      + * Represent a compressed object, with everything needed to decompress it.
      + * @constructor
      + * @param {number} compressedSize the size of the data compressed.
      + * @param {number} uncompressedSize the size of the data after decompression.
      + * @param {number} crc32 the crc32 of the decompressed file.
      + * @param {object} compression the type of compression, see lib/compressions.js.
      + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the compressed data.
      + */
      +function CompressedObject(compressedSize, uncompressedSize, crc32, compression, data) {
      +    this.compressedSize = compressedSize;
      +    this.uncompressedSize = uncompressedSize;
      +    this.crc32 = crc32;
      +    this.compression = compression;
      +    this.compressedContent = data;
      +}
      +
      +CompressedObject.prototype = {
      +    /**
      +     * Create a worker to get the uncompressed content.
      +     * @return {GenericWorker} the worker.
      +     */
      +    getContentWorker : function () {
      +        var worker = new DataWorker(external.Promise.resolve(this.compressedContent))
      +        .pipe(this.compression.uncompressWorker())
      +        .pipe(new DataLengthProbe("data_length"));
      +
      +        var that = this;
      +        worker.on("end", function () {
      +            if(this.streamInfo['data_length'] !== that.uncompressedSize) {
      +                throw new Error("Bug : uncompressed data size mismatch");
      +            }
      +        });
      +        return worker;
      +    },
      +    /**
      +     * Create a worker to get the compressed content.
      +     * @return {GenericWorker} the worker.
      +     */
      +    getCompressedWorker : function () {
      +        return new DataWorker(external.Promise.resolve(this.compressedContent))
      +        .withStreamInfo("compressedSize", this.compressedSize)
      +        .withStreamInfo("uncompressedSize", this.uncompressedSize)
      +        .withStreamInfo("crc32", this.crc32)
      +        .withStreamInfo("compression", this.compression)
      +        ;
      +    }
      +};
      +
      +/**
      + * Chain the given worker with other workers to compress the content with the
      + * given compresion.
      + * @param {GenericWorker} uncompressedWorker the worker to pipe.
      + * @param {Object} compression the compression object.
      + * @param {Object} compressionOptions the options to use when compressing.
      + * @return {GenericWorker} the new worker compressing the content.
      + */
      +CompressedObject.createWorkerFrom = function (uncompressedWorker, compression, compressionOptions) {
      +    return uncompressedWorker
      +    .pipe(new Crc32Probe())
      +    .pipe(new DataLengthProbe("uncompressedSize"))
      +    .pipe(compression.compressWorker(compressionOptions))
      +    .pipe(new DataLengthProbe("compressedSize"))
      +    .withStreamInfo("compression", compression);
      +};
      +
      +module.exports = CompressedObject;
      +
      +},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(require,module,exports){
      +'use strict';
      +
      +var GenericWorker = require("./stream/GenericWorker");
      +
      +exports.STORE = {
      +    magic: "\x00\x00",
      +    compressWorker : function (compressionOptions) {
      +        return new GenericWorker("STORE compression");
      +    },
      +    uncompressWorker : function () {
      +        return new GenericWorker("STORE decompression");
      +    }
      +};
      +exports.DEFLATE = require('./flate');
      +
      +},{"./flate":7,"./stream/GenericWorker":28}],4:[function(require,module,exports){
      +'use strict';
      +
      +var utils = require('./utils');
      +
      +/**
      + * The following functions come from pako, from pako/lib/zlib/crc32.js
      + * released under the MIT license, see pako https://github.com/nodeca/pako/
      + */
      +
      +// Use ordinary array, since untyped makes no boost here
      +function makeTable() {
      +    var c, table = [];
      +
      +    for(var n =0; n < 256; n++){
      +        c = n;
      +        for(var k =0; k < 8; k++){
      +            c = ((c&1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1));
      +        }
      +        table[n] = c;
      +    }
      +
      +    return table;
      +}
      +
      +// Create table on load. Just 255 signed longs. Not a problem.
      +var crcTable = makeTable();
      +
      +
      +function crc32(crc, buf, len, pos) {
      +    var t = crcTable, end = pos + len;
      +
      +    crc = crc ^ (-1);
      +
      +    for (var i = pos; i < end; i++ ) {
      +        crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF];
      +    }
      +
      +    return (crc ^ (-1)); // >>> 0;
      +}
      +
      +// That's all for the pako functions.
      +
      +/**
      + * Compute the crc32 of a string.
      + * This is almost the same as the function crc32, but for strings. Using the
      + * same function for the two use cases leads to horrible performances.
      + * @param {Number} crc the starting value of the crc.
      + * @param {String} str the string to use.
      + * @param {Number} len the length of the string.
      + * @param {Number} pos the starting position for the crc32 computation.
      + * @return {Number} the computed crc32.
      + */
      +function crc32str(crc, str, len, pos) {
      +    var t = crcTable, end = pos + len;
      +
      +    crc = crc ^ (-1);
      +
      +    for (var i = pos; i < end; i++ ) {
      +        crc = (crc >>> 8) ^ t[(crc ^ str.charCodeAt(i)) & 0xFF];
      +    }
      +
      +    return (crc ^ (-1)); // >>> 0;
      +}
      +
      +module.exports = function crc32wrapper(input, crc) {
      +    if (typeof input === "undefined" || !input.length) {
      +        return 0;
      +    }
      +
      +    var isArray = utils.getTypeOf(input) !== "string";
      +
      +    if(isArray) {
      +        return crc32(crc|0, input, input.length, 0);
      +    } else {
      +        return crc32str(crc|0, input, input.length, 0);
      +    }
      +};
      +
      +},{"./utils":32}],5:[function(require,module,exports){
      +'use strict';
      +exports.base64 = false;
      +exports.binary = false;
      +exports.dir = false;
      +exports.createFolders = true;
      +exports.date = null;
      +exports.compression = null;
      +exports.compressionOptions = null;
      +exports.comment = null;
      +exports.unixPermissions = null;
      +exports.dosPermissions = null;
      +
      +},{}],6:[function(require,module,exports){
      +/* global Promise */
      +'use strict';
      +
      +// load the global object first:
      +// - it should be better integrated in the system (unhandledRejection in node)
      +// - the environment may have a custom Promise implementation (see zone.js)
      +var ES6Promise = null;
      +if (typeof Promise !== "undefined") {
      +    ES6Promise = Promise;
      +} else {
      +    ES6Promise = require("lie");
      +}
      +
      +/**
      + * Let the user use/change some implementations.
      + */
      +module.exports = {
      +    Promise: ES6Promise
      +};
      +
      +},{"lie":58}],7:[function(require,module,exports){
      +'use strict';
      +var USE_TYPEDARRAY = (typeof Uint8Array !== 'undefined') && (typeof Uint16Array !== 'undefined') && (typeof Uint32Array !== 'undefined');
      +
      +var pako = require("pako");
      +var utils = require("./utils");
      +var GenericWorker = require("./stream/GenericWorker");
      +
      +var ARRAY_TYPE = USE_TYPEDARRAY ? "uint8array" : "array";
      +
      +exports.magic = "\x08\x00";
      +
      +/**
      + * Create a worker that uses pako to inflate/deflate.
      + * @constructor
      + * @param {String} action the name of the pako function to call : either "Deflate" or "Inflate".
      + * @param {Object} options the options to use when (de)compressing.
      + */
      +function FlateWorker(action, options) {
      +    GenericWorker.call(this, "FlateWorker/" + action);
      +
      +    this._pako = null;
      +    this._pakoAction = action;
      +    this._pakoOptions = options;
      +    // the `meta` object from the last chunk received
      +    // this allow this worker to pass around metadata
      +    this.meta = {};
      +}
      +
      +utils.inherits(FlateWorker, GenericWorker);
      +
      +/**
      + * @see GenericWorker.processChunk
      + */
      +FlateWorker.prototype.processChunk = function (chunk) {
      +    this.meta = chunk.meta;
      +    if (this._pako === null) {
      +        this._createPako();
      +    }
      +    this._pako.push(utils.transformTo(ARRAY_TYPE, chunk.data), false);
      +};
      +
      +/**
      + * @see GenericWorker.flush
      + */
      +FlateWorker.prototype.flush = function () {
      +    GenericWorker.prototype.flush.call(this);
      +    if (this._pako === null) {
      +        this._createPako();
      +    }
      +    this._pako.push([], true);
      +};
      +/**
      + * @see GenericWorker.cleanUp
      + */
      +FlateWorker.prototype.cleanUp = function () {
      +    GenericWorker.prototype.cleanUp.call(this);
      +    this._pako = null;
      +};
      +
      +/**
      + * Create the _pako object.
      + * TODO: lazy-loading this object isn't the best solution but it's the
      + * quickest. The best solution is to lazy-load the worker list. See also the
      + * issue #446.
      + */
      +FlateWorker.prototype._createPako = function () {
      +    this._pako = new pako[this._pakoAction]({
      +        raw: true,
      +        level: this._pakoOptions.level || -1 // default compression
      +    });
      +    var self = this;
      +    this._pako.onData = function(data) {
      +        self.push({
      +            data : data,
      +            meta : self.meta
      +        });
      +    };
      +};
      +
      +exports.compressWorker = function (compressionOptions) {
      +    return new FlateWorker("Deflate", compressionOptions);
      +};
      +exports.uncompressWorker = function () {
      +    return new FlateWorker("Inflate", {});
      +};
      +
      +},{"./stream/GenericWorker":28,"./utils":32,"pako":59}],8:[function(require,module,exports){
      +'use strict';
      +
      +var utils = require('../utils');
      +var GenericWorker = require('../stream/GenericWorker');
      +var utf8 = require('../utf8');
      +var crc32 = require('../crc32');
      +var signature = require('../signature');
      +
      +/**
      + * Transform an integer into a string in hexadecimal.
      + * @private
      + * @param {number} dec the number to convert.
      + * @param {number} bytes the number of bytes to generate.
      + * @returns {string} the result.
      + */
      +var decToHex = function(dec, bytes) {
      +    var hex = "", i;
      +    for (i = 0; i < bytes; i++) {
      +        hex += String.fromCharCode(dec & 0xff);
      +        dec = dec >>> 8;
      +    }
      +    return hex;
      +};
      +
      +/**
      + * Generate the UNIX part of the external file attributes.
      + * @param {Object} unixPermissions the unix permissions or null.
      + * @param {Boolean} isDir true if the entry is a directory, false otherwise.
      + * @return {Number} a 32 bit integer.
      + *
      + * adapted from http://unix.stackexchange.com/questions/14705/the-zip-formats-external-file-attribute :
      + *
      + * TTTTsstrwxrwxrwx0000000000ADVSHR
      + * ^^^^____________________________ file type, see zipinfo.c (UNX_*)
      + *     ^^^_________________________ setuid, setgid, sticky
      + *        ^^^^^^^^^________________ permissions
      + *                 ^^^^^^^^^^______ not used ?
      + *                           ^^^^^^ DOS attribute bits : Archive, Directory, Volume label, System file, Hidden, Read only
      + */
      +var generateUnixExternalFileAttr = function (unixPermissions, isDir) {
      +
      +    var result = unixPermissions;
      +    if (!unixPermissions) {
      +        // I can't use octal values in strict mode, hence the hexa.
      +        //  040775 => 0x41fd
      +        // 0100664 => 0x81b4
      +        result = isDir ? 0x41fd : 0x81b4;
      +    }
      +    return (result & 0xFFFF) << 16;
      +};
      +
      +/**
      + * Generate the DOS part of the external file attributes.
      + * @param {Object} dosPermissions the dos permissions or null.
      + * @param {Boolean} isDir true if the entry is a directory, false otherwise.
      + * @return {Number} a 32 bit integer.
      + *
      + * Bit 0     Read-Only
      + * Bit 1     Hidden
      + * Bit 2     System
      + * Bit 3     Volume Label
      + * Bit 4     Directory
      + * Bit 5     Archive
      + */
      +var generateDosExternalFileAttr = function (dosPermissions, isDir) {
      +
      +    // the dir flag is already set for compatibility
      +    return (dosPermissions || 0)  & 0x3F;
      +};
      +
      +/**
      + * Generate the various parts used in the construction of the final zip file.
      + * @param {Object} streamInfo the hash with informations about the compressed file.
      + * @param {Boolean} streamedContent is the content streamed ?
      + * @param {Boolean} streamingEnded is the stream finished ?
      + * @param {number} offset the current offset from the start of the zip file.
      + * @param {String} platform let's pretend we are this platform (change platform dependents fields)
      + * @param {Function} encodeFileName the function to encode the file name / comment.
      + * @return {Object} the zip parts.
      + */
      +var generateZipParts = function(streamInfo, streamedContent, streamingEnded, offset, platform, encodeFileName) {
      +    var file = streamInfo['file'],
      +    compression = streamInfo['compression'],
      +    useCustomEncoding = encodeFileName !== utf8.utf8encode,
      +    encodedFileName = utils.transformTo("string", encodeFileName(file.name)),
      +    utfEncodedFileName = utils.transformTo("string", utf8.utf8encode(file.name)),
      +    comment = file.comment,
      +    encodedComment = utils.transformTo("string", encodeFileName(comment)),
      +    utfEncodedComment = utils.transformTo("string", utf8.utf8encode(comment)),
      +    useUTF8ForFileName = utfEncodedFileName.length !== file.name.length,
      +    useUTF8ForComment = utfEncodedComment.length !== comment.length,
      +    dosTime,
      +    dosDate,
      +    extraFields = "",
      +    unicodePathExtraField = "",
      +    unicodeCommentExtraField = "",
      +    dir = file.dir,
      +    date = file.date;
      +
      +
      +    var dataInfo = {
      +        crc32 : 0,
      +        compressedSize : 0,
      +        uncompressedSize : 0
      +    };
      +
      +    // if the content is streamed, the sizes/crc32 are only available AFTER
      +    // the end of the stream.
      +    if (!streamedContent || streamingEnded) {
      +        dataInfo.crc32 = streamInfo['crc32'];
      +        dataInfo.compressedSize = streamInfo['compressedSize'];
      +        dataInfo.uncompressedSize = streamInfo['uncompressedSize'];
      +    }
      +
      +    var bitflag = 0;
      +    if (streamedContent) {
      +        // Bit 3: the sizes/crc32 are set to zero in the local header.
      +        // The correct values are put in the data descriptor immediately
      +        // following the compressed data.
      +        bitflag |= 0x0008;
      +    }
      +    if (!useCustomEncoding && (useUTF8ForFileName || useUTF8ForComment)) {
      +        // Bit 11: Language encoding flag (EFS).
      +        bitflag |= 0x0800;
      +    }
      +
      +
      +    var extFileAttr = 0;
      +    var versionMadeBy = 0;
      +    if (dir) {
      +        // dos or unix, we set the dos dir flag
      +        extFileAttr |= 0x00010;
      +    }
      +    if(platform === "UNIX") {
      +        versionMadeBy = 0x031E; // UNIX, version 3.0
      +        extFileAttr |= generateUnixExternalFileAttr(file.unixPermissions, dir);
      +    } else { // DOS or other, fallback to DOS
      +        versionMadeBy = 0x0014; // DOS, version 2.0
      +        extFileAttr |= generateDosExternalFileAttr(file.dosPermissions, dir);
      +    }
      +
      +    // date
      +    // @see http://www.delorie.com/djgpp/doc/rbinter/it/52/13.html
      +    // @see http://www.delorie.com/djgpp/doc/rbinter/it/65/16.html
      +    // @see http://www.delorie.com/djgpp/doc/rbinter/it/66/16.html
      +
      +    dosTime = date.getUTCHours();
      +    dosTime = dosTime << 6;
      +    dosTime = dosTime | date.getUTCMinutes();
      +    dosTime = dosTime << 5;
      +    dosTime = dosTime | date.getUTCSeconds() / 2;
      +
      +    dosDate = date.getUTCFullYear() - 1980;
      +    dosDate = dosDate << 4;
      +    dosDate = dosDate | (date.getUTCMonth() + 1);
      +    dosDate = dosDate << 5;
      +    dosDate = dosDate | date.getUTCDate();
      +
      +    if (useUTF8ForFileName) {
      +        // set the unicode path extra field. unzip needs at least one extra
      +        // field to correctly handle unicode path, so using the path is as good
      +        // as any other information. This could improve the situation with
      +        // other archive managers too.
      +        // This field is usually used without the utf8 flag, with a non
      +        // unicode path in the header (winrar, winzip). This helps (a bit)
      +        // with the messy Windows' default compressed folders feature but
      +        // breaks on p7zip which doesn't seek the unicode path extra field.
      +        // So for now, UTF-8 everywhere !
      +        unicodePathExtraField =
      +            // Version
      +            decToHex(1, 1) +
      +            // NameCRC32
      +            decToHex(crc32(encodedFileName), 4) +
      +            // UnicodeName
      +            utfEncodedFileName;
      +
      +        extraFields +=
      +            // Info-ZIP Unicode Path Extra Field
      +            "\x75\x70" +
      +            // size
      +            decToHex(unicodePathExtraField.length, 2) +
      +            // content
      +            unicodePathExtraField;
      +    }
      +
      +    if(useUTF8ForComment) {
      +
      +        unicodeCommentExtraField =
      +            // Version
      +            decToHex(1, 1) +
      +            // CommentCRC32
      +            decToHex(crc32(encodedComment), 4) +
      +            // UnicodeName
      +            utfEncodedComment;
      +
      +        extraFields +=
      +            // Info-ZIP Unicode Path Extra Field
      +            "\x75\x63" +
      +            // size
      +            decToHex(unicodeCommentExtraField.length, 2) +
      +            // content
      +            unicodeCommentExtraField;
      +    }
      +
      +    var header = "";
      +
      +    // version needed to extract
      +    header += "\x0A\x00";
      +    // general purpose bit flag
      +    header += decToHex(bitflag, 2);
      +    // compression method
      +    header += compression.magic;
      +    // last mod file time
      +    header += decToHex(dosTime, 2);
      +    // last mod file date
      +    header += decToHex(dosDate, 2);
      +    // crc-32
      +    header += decToHex(dataInfo.crc32, 4);
      +    // compressed size
      +    header += decToHex(dataInfo.compressedSize, 4);
      +    // uncompressed size
      +    header += decToHex(dataInfo.uncompressedSize, 4);
      +    // file name length
      +    header += decToHex(encodedFileName.length, 2);
      +    // extra field length
      +    header += decToHex(extraFields.length, 2);
      +
      +
      +    var fileRecord = signature.LOCAL_FILE_HEADER + header + encodedFileName + extraFields;
      +
      +    var dirRecord = signature.CENTRAL_FILE_HEADER +
      +        // version made by (00: DOS)
      +        decToHex(versionMadeBy, 2) +
      +        // file header (common to file and central directory)
      +        header +
      +        // file comment length
      +        decToHex(encodedComment.length, 2) +
      +        // disk number start
      +        "\x00\x00" +
      +        // internal file attributes TODO
      +        "\x00\x00" +
      +        // external file attributes
      +        decToHex(extFileAttr, 4) +
      +        // relative offset of local header
      +        decToHex(offset, 4) +
      +        // file name
      +        encodedFileName +
      +        // extra field
      +        extraFields +
      +        // file comment
      +        encodedComment;
      +
      +    return {
      +        fileRecord: fileRecord,
      +        dirRecord: dirRecord
      +    };
      +};
      +
      +/**
      + * Generate the EOCD record.
      + * @param {Number} entriesCount the number of entries in the zip file.
      + * @param {Number} centralDirLength the length (in bytes) of the central dir.
      + * @param {Number} localDirLength the length (in bytes) of the local dir.
      + * @param {String} comment the zip file comment as a binary string.
      + * @param {Function} encodeFileName the function to encode the comment.
      + * @return {String} the EOCD record.
      + */
      +var generateCentralDirectoryEnd = function (entriesCount, centralDirLength, localDirLength, comment, encodeFileName) {
      +    var dirEnd = "";
      +    var encodedComment = utils.transformTo("string", encodeFileName(comment));
      +
      +    // end of central dir signature
      +    dirEnd = signature.CENTRAL_DIRECTORY_END +
      +        // number of this disk
      +        "\x00\x00" +
      +        // number of the disk with the start of the central directory
      +        "\x00\x00" +
      +        // total number of entries in the central directory on this disk
      +        decToHex(entriesCount, 2) +
      +        // total number of entries in the central directory
      +        decToHex(entriesCount, 2) +
      +        // size of the central directory   4 bytes
      +        decToHex(centralDirLength, 4) +
      +        // offset of start of central directory with respect to the starting disk number
      +        decToHex(localDirLength, 4) +
      +        // .ZIP file comment length
      +        decToHex(encodedComment.length, 2) +
      +        // .ZIP file comment
      +        encodedComment;
      +
      +    return dirEnd;
      +};
      +
      +/**
      + * Generate data descriptors for a file entry.
      + * @param {Object} streamInfo the hash generated by a worker, containing informations
      + * on the file entry.
      + * @return {String} the data descriptors.
      + */
      +var generateDataDescriptors = function (streamInfo) {
      +    var descriptor = "";
      +    descriptor = signature.DATA_DESCRIPTOR +
      +        // crc-32                          4 bytes
      +        decToHex(streamInfo['crc32'], 4) +
      +        // compressed size                 4 bytes
      +        decToHex(streamInfo['compressedSize'], 4) +
      +        // uncompressed size               4 bytes
      +        decToHex(streamInfo['uncompressedSize'], 4);
      +
      +    return descriptor;
      +};
      +
      +
      +/**
      + * A worker to concatenate other workers to create a zip file.
      + * @param {Boolean} streamFiles `true` to stream the content of the files,
      + * `false` to accumulate it.
      + * @param {String} comment the comment to use.
      + * @param {String} platform the platform to use, "UNIX" or "DOS".
      + * @param {Function} encodeFileName the function to encode file names and comments.
      + */
      +function ZipFileWorker(streamFiles, comment, platform, encodeFileName) {
      +    GenericWorker.call(this, "ZipFileWorker");
      +    // The number of bytes written so far. This doesn't count accumulated chunks.
      +    this.bytesWritten = 0;
      +    // The comment of the zip file
      +    this.zipComment = comment;
      +    // The platform "generating" the zip file.
      +    this.zipPlatform = platform;
      +    // the function to encode file names and comments.
      +    this.encodeFileName = encodeFileName;
      +    // Should we stream the content of the files ?
      +    this.streamFiles = streamFiles;
      +    // If `streamFiles` is false, we will need to accumulate the content of the
      +    // files to calculate sizes / crc32 (and write them *before* the content).
      +    // This boolean indicates if we are accumulating chunks (it will change a lot
      +    // during the lifetime of this worker).
      +    this.accumulate = false;
      +    // The buffer receiving chunks when accumulating content.
      +    this.contentBuffer = [];
      +    // The list of generated directory records.
      +    this.dirRecords = [];
      +    // The offset (in bytes) from the beginning of the zip file for the current source.
      +    this.currentSourceOffset = 0;
      +    // The total number of entries in this zip file.
      +    this.entriesCount = 0;
      +    // the name of the file currently being added, null when handling the end of the zip file.
      +    // Used for the emited metadata.
      +    this.currentFile = null;
      +
      +
      +
      +    this._sources = [];
      +}
      +utils.inherits(ZipFileWorker, GenericWorker);
      +
      +/**
      + * @see GenericWorker.push
      + */
      +ZipFileWorker.prototype.push = function (chunk) {
      +
      +    var currentFilePercent = chunk.meta.percent || 0;
      +    var entriesCount = this.entriesCount;
      +    var remainingFiles = this._sources.length;
      +
      +    if(this.accumulate) {
      +        this.contentBuffer.push(chunk);
      +    } else {
      +        this.bytesWritten += chunk.data.length;
      +
      +        GenericWorker.prototype.push.call(this, {
      +            data : chunk.data,
      +            meta : {
      +                currentFile : this.currentFile,
      +                percent : entriesCount ? (currentFilePercent + 100 * (entriesCount - remainingFiles - 1)) / entriesCount : 100
      +            }
      +        });
      +    }
      +};
      +
      +/**
      + * The worker started a new source (an other worker).
      + * @param {Object} streamInfo the streamInfo object from the new source.
      + */
      +ZipFileWorker.prototype.openedSource = function (streamInfo) {
      +    this.currentSourceOffset = this.bytesWritten;
      +    this.currentFile = streamInfo['file'].name;
      +
      +    var streamedContent = this.streamFiles && !streamInfo['file'].dir;
      +
      +    // don't stream folders (because they don't have any content)
      +    if(streamedContent) {
      +        var record = generateZipParts(streamInfo, streamedContent, false, this.currentSourceOffset, this.zipPlatform, this.encodeFileName);
      +        this.push({
      +            data : record.fileRecord,
      +            meta : {percent:0}
      +        });
      +    } else {
      +        // we need to wait for the whole file before pushing anything
      +        this.accumulate = true;
      +    }
      +};
      +
      +/**
      + * The worker finished a source (an other worker).
      + * @param {Object} streamInfo the streamInfo object from the finished source.
      + */
      +ZipFileWorker.prototype.closedSource = function (streamInfo) {
      +    this.accumulate = false;
      +    var streamedContent = this.streamFiles && !streamInfo['file'].dir;
      +    var record = generateZipParts(streamInfo, streamedContent, true, this.currentSourceOffset, this.zipPlatform, this.encodeFileName);
      +
      +    this.dirRecords.push(record.dirRecord);
      +    if(streamedContent) {
      +        // after the streamed file, we put data descriptors
      +        this.push({
      +            data : generateDataDescriptors(streamInfo),
      +            meta : {percent:100}
      +        });
      +    } else {
      +        // the content wasn't streamed, we need to push everything now
      +        // first the file record, then the content
      +        this.push({
      +            data : record.fileRecord,
      +            meta : {percent:0}
      +        });
      +        while(this.contentBuffer.length) {
      +            this.push(this.contentBuffer.shift());
      +        }
      +    }
      +    this.currentFile = null;
      +};
      +
      +/**
      + * @see GenericWorker.flush
      + */
      +ZipFileWorker.prototype.flush = function () {
      +
      +    var localDirLength = this.bytesWritten;
      +    for(var i = 0; i < this.dirRecords.length; i++) {
      +        this.push({
      +            data : this.dirRecords[i],
      +            meta : {percent:100}
      +        });
      +    }
      +    var centralDirLength = this.bytesWritten - localDirLength;
      +
      +    var dirEnd = generateCentralDirectoryEnd(this.dirRecords.length, centralDirLength, localDirLength, this.zipComment, this.encodeFileName);
      +
      +    this.push({
      +        data : dirEnd,
      +        meta : {percent:100}
      +    });
      +};
      +
      +/**
      + * Prepare the next source to be read.
      + */
      +ZipFileWorker.prototype.prepareNextSource = function () {
      +    this.previous = this._sources.shift();
      +    this.openedSource(this.previous.streamInfo);
      +    if (this.isPaused) {
      +        this.previous.pause();
      +    } else {
      +        this.previous.resume();
      +    }
      +};
      +
      +/**
      + * @see GenericWorker.registerPrevious
      + */
      +ZipFileWorker.prototype.registerPrevious = function (previous) {
      +    this._sources.push(previous);
      +    var self = this;
      +
      +    previous.on('data', function (chunk) {
      +        self.processChunk(chunk);
      +    });
      +    previous.on('end', function () {
      +        self.closedSource(self.previous.streamInfo);
      +        if(self._sources.length) {
      +            self.prepareNextSource();
      +        } else {
      +            self.end();
      +        }
      +    });
      +    previous.on('error', function (e) {
      +        self.error(e);
      +    });
      +    return this;
      +};
      +
      +/**
      + * @see GenericWorker.resume
      + */
      +ZipFileWorker.prototype.resume = function () {
      +    if(!GenericWorker.prototype.resume.call(this)) {
      +        return false;
      +    }
      +
      +    if (!this.previous && this._sources.length) {
      +        this.prepareNextSource();
      +        return true;
      +    }
      +    if (!this.previous && !this._sources.length && !this.generatedError) {
      +        this.end();
      +        return true;
      +    }
      +};
      +
      +/**
      + * @see GenericWorker.error
      + */
      +ZipFileWorker.prototype.error = function (e) {
      +    var sources = this._sources;
      +    if(!GenericWorker.prototype.error.call(this, e)) {
      +        return false;
      +    }
      +    for(var i = 0; i < sources.length; i++) {
      +        try {
      +            sources[i].error(e);
      +        } catch(e) {
      +            // the `error` exploded, nothing to do
      +        }
      +    }
      +    return true;
      +};
      +
      +/**
      + * @see GenericWorker.lock
      + */
      +ZipFileWorker.prototype.lock = function () {
      +    GenericWorker.prototype.lock.call(this);
      +    var sources = this._sources;
      +    for(var i = 0; i < sources.length; i++) {
      +        sources[i].lock();
      +    }
      +};
      +
      +module.exports = ZipFileWorker;
      +
      +},{"../crc32":4,"../signature":23,"../stream/GenericWorker":28,"../utf8":31,"../utils":32}],9:[function(require,module,exports){
      +'use strict';
      +
      +var compressions = require('../compressions');
      +var ZipFileWorker = require('./ZipFileWorker');
      +
      +/**
      + * Find the compression to use.
      + * @param {String} fileCompression the compression defined at the file level, if any.
      + * @param {String} zipCompression the compression defined at the load() level.
      + * @return {Object} the compression object to use.
      + */
      +var getCompression = function (fileCompression, zipCompression) {
      +
      +    var compressionName = fileCompression || zipCompression;
      +    var compression = compressions[compressionName];
      +    if (!compression) {
      +        throw new Error(compressionName + " is not a valid compression method !");
      +    }
      +    return compression;
      +};
      +
      +/**
      + * Create a worker to generate a zip file.
      + * @param {JSZip} zip the JSZip instance at the right root level.
      + * @param {Object} options to generate the zip file.
      + * @param {String} comment the comment to use.
      + */
      +exports.generateWorker = function (zip, options, comment) {
      +
      +    var zipFileWorker = new ZipFileWorker(options.streamFiles, comment, options.platform, options.encodeFileName);
      +    var entriesCount = 0;
      +    try {
      +
      +        zip.forEach(function (relativePath, file) {
      +            entriesCount++;
      +            var compression = getCompression(file.options.compression, options.compression);
      +            var compressionOptions = file.options.compressionOptions || options.compressionOptions || {};
      +            var dir = file.dir, date = file.date;
      +
      +            file._compressWorker(compression, compressionOptions)
      +            .withStreamInfo("file", {
      +                name : relativePath,
      +                dir : dir,
      +                date : date,
      +                comment : file.comment || "",
      +                unixPermissions : file.unixPermissions,
      +                dosPermissions : file.dosPermissions
      +            })
      +            .pipe(zipFileWorker);
      +        });
      +        zipFileWorker.entriesCount = entriesCount;
      +    } catch (e) {
      +        zipFileWorker.error(e);
      +    }
      +
      +    return zipFileWorker;
      +};
      +
      +},{"../compressions":3,"./ZipFileWorker":8}],10:[function(require,module,exports){
      +'use strict';
      +
      +/**
      + * Representation a of zip file in js
      + * @constructor
      + */
      +function JSZip() {
      +    // if this constructor is used without `new`, it adds `new` before itself:
      +    if(!(this instanceof JSZip)) {
      +        return new JSZip();
      +    }
      +
      +    if(arguments.length) {
      +        throw new Error("The constructor with parameters has been removed in JSZip 3.0, please check the upgrade guide.");
      +    }
      +
      +    // object containing the files :
      +    // {
      +    //   "folder/" : {...},
      +    //   "folder/data.txt" : {...}
      +    // }
      +    this.files = {};
      +
      +    this.comment = null;
      +
      +    // Where we are in the hierarchy
      +    this.root = "";
      +    this.clone = function() {
      +        var newObj = new JSZip();
      +        for (var i in this) {
      +            if (typeof this[i] !== "function") {
      +                newObj[i] = this[i];
      +            }
      +        }
      +        return newObj;
      +    };
      +}
      +JSZip.prototype = require('./object');
      +JSZip.prototype.loadAsync = require('./load');
      +JSZip.support = require('./support');
      +JSZip.defaults = require('./defaults');
      +
      +// TODO find a better way to handle this version,
      +// a require('package.json').version doesn't work with webpack, see #327
      +JSZip.version = "3.1.5";
      +
      +JSZip.loadAsync = function (content, options) {
      +    return new JSZip().loadAsync(content, options);
      +};
      +
      +JSZip.external = require("./external");
      +module.exports = JSZip;
      +
      +},{"./defaults":5,"./external":6,"./load":11,"./object":15,"./support":30}],11:[function(require,module,exports){
      +'use strict';
      +var utils = require('./utils');
      +var external = require("./external");
      +var utf8 = require('./utf8');
      +var utils = require('./utils');
      +var ZipEntries = require('./zipEntries');
      +var Crc32Probe = require('./stream/Crc32Probe');
      +var nodejsUtils = require("./nodejsUtils");
      +
      +/**
      + * Check the CRC32 of an entry.
      + * @param {ZipEntry} zipEntry the zip entry to check.
      + * @return {Promise} the result.
      + */
      +function checkEntryCRC32(zipEntry) {
      +    return new external.Promise(function (resolve, reject) {
      +        var worker = zipEntry.decompressed.getContentWorker().pipe(new Crc32Probe());
      +        worker.on("error", function (e) {
      +            reject(e);
      +        })
      +        .on("end", function () {
      +            if (worker.streamInfo.crc32 !== zipEntry.decompressed.crc32) {
      +                reject(new Error("Corrupted zip : CRC32 mismatch"));
      +            } else {
      +                resolve();
      +            }
      +        })
      +        .resume();
      +    });
      +}
      +
      +module.exports = function(data, options) {
      +    var zip = this;
      +    options = utils.extend(options || {}, {
      +        base64: false,
      +        checkCRC32: false,
      +        optimizedBinaryString: false,
      +        createFolders: false,
      +        decodeFileName: utf8.utf8decode
      +    });
      +
      +    if (nodejsUtils.isNode && nodejsUtils.isStream(data)) {
      +        return external.Promise.reject(new Error("JSZip can't accept a stream when loading a zip file."));
      +    }
      +
      +    return utils.prepareContent("the loaded zip file", data, true, options.optimizedBinaryString, options.base64)
      +    .then(function(data) {
      +        var zipEntries = new ZipEntries(options);
      +        zipEntries.load(data);
      +        return zipEntries;
      +    }).then(function checkCRC32(zipEntries) {
      +        var promises = [external.Promise.resolve(zipEntries)];
      +        var files = zipEntries.files;
      +        if (options.checkCRC32) {
      +            for (var i = 0; i < files.length; i++) {
      +                promises.push(checkEntryCRC32(files[i]));
      +            }
      +        }
      +        return external.Promise.all(promises);
      +    }).then(function addFiles(results) {
      +        var zipEntries = results.shift();
      +        var files = zipEntries.files;
      +        for (var i = 0; i < files.length; i++) {
      +            var input = files[i];
      +            zip.file(input.fileNameStr, input.decompressed, {
      +                binary: true,
      +                optimizedBinaryString: true,
      +                date: input.date,
      +                dir: input.dir,
      +                comment : input.fileCommentStr.length ? input.fileCommentStr : null,
      +                unixPermissions : input.unixPermissions,
      +                dosPermissions : input.dosPermissions,
      +                createFolders: options.createFolders
      +            });
      +        }
      +        if (zipEntries.zipComment.length) {
      +            zip.comment = zipEntries.zipComment;
      +        }
      +
      +        return zip;
      +    });
      +};
      +
      +},{"./external":6,"./nodejsUtils":14,"./stream/Crc32Probe":25,"./utf8":31,"./utils":32,"./zipEntries":33}],12:[function(require,module,exports){
      +"use strict";
      +
      +var utils = require('../utils');
      +var GenericWorker = require('../stream/GenericWorker');
      +
      +/**
      + * A worker that use a nodejs stream as source.
      + * @constructor
      + * @param {String} filename the name of the file entry for this stream.
      + * @param {Readable} stream the nodejs stream.
      + */
      +function NodejsStreamInputAdapter(filename, stream) {
      +    GenericWorker.call(this, "Nodejs stream input adapter for " + filename);
      +    this._upstreamEnded = false;
      +    this._bindStream(stream);
      +}
      +
      +utils.inherits(NodejsStreamInputAdapter, GenericWorker);
      +
      +/**
      + * Prepare the stream and bind the callbacks on it.
      + * Do this ASAP on node 0.10 ! A lazy binding doesn't always work.
      + * @param {Stream} stream the nodejs stream to use.
      + */
      +NodejsStreamInputAdapter.prototype._bindStream = function (stream) {
      +    var self = this;
      +    this._stream = stream;
      +    stream.pause();
      +    stream
      +    .on("data", function (chunk) {
      +        self.push({
      +            data: chunk,
      +            meta : {
      +                percent : 0
      +            }
      +        });
      +    })
      +    .on("error", function (e) {
      +        if(self.isPaused) {
      +            this.generatedError = e;
      +        } else {
      +            self.error(e);
      +        }
      +    })
      +    .on("end", function () {
      +        if(self.isPaused) {
      +            self._upstreamEnded = true;
      +        } else {
      +            self.end();
      +        }
      +    });
      +};
      +NodejsStreamInputAdapter.prototype.pause = function () {
      +    if(!GenericWorker.prototype.pause.call(this)) {
      +        return false;
      +    }
      +    this._stream.pause();
      +    return true;
      +};
      +NodejsStreamInputAdapter.prototype.resume = function () {
      +    if(!GenericWorker.prototype.resume.call(this)) {
      +        return false;
      +    }
      +
      +    if(this._upstreamEnded) {
      +        this.end();
      +    } else {
      +        this._stream.resume();
      +    }
      +
      +    return true;
      +};
      +
      +module.exports = NodejsStreamInputAdapter;
      +
      +},{"../stream/GenericWorker":28,"../utils":32}],13:[function(require,module,exports){
      +'use strict';
      +
      +var Readable = require('readable-stream').Readable;
      +
      +var utils = require('../utils');
      +utils.inherits(NodejsStreamOutputAdapter, Readable);
      +
      +/**
      +* A nodejs stream using a worker as source.
      +* @see the SourceWrapper in http://nodejs.org/api/stream.html
      +* @constructor
      +* @param {StreamHelper} helper the helper wrapping the worker
      +* @param {Object} options the nodejs stream options
      +* @param {Function} updateCb the update callback.
      +*/
      +function NodejsStreamOutputAdapter(helper, options, updateCb) {
      +    Readable.call(this, options);
      +    this._helper = helper;
      +
      +    var self = this;
      +    helper.on("data", function (data, meta) {
      +        if (!self.push(data)) {
      +            self._helper.pause();
      +        }
      +        if(updateCb) {
      +            updateCb(meta);
      +        }
      +    })
      +    .on("error", function(e) {
      +        self.emit('error', e);
      +    })
      +    .on("end", function () {
      +        self.push(null);
      +    });
      +}
      +
      +
      +NodejsStreamOutputAdapter.prototype._read = function() {
      +    this._helper.resume();
      +};
      +
      +module.exports = NodejsStreamOutputAdapter;
      +
      +},{"../utils":32,"readable-stream":16}],14:[function(require,module,exports){
      +'use strict';
      +
      +module.exports = {
      +    /**
      +     * True if this is running in Nodejs, will be undefined in a browser.
      +     * In a browser, browserify won't include this file and the whole module
      +     * will be resolved an empty object.
      +     */
      +    isNode : typeof Buffer !== "undefined",
      +    /**
      +     * Create a new nodejs Buffer from an existing content.
      +     * @param {Object} data the data to pass to the constructor.
      +     * @param {String} encoding the encoding to use.
      +     * @return {Buffer} a new Buffer.
      +     */
      +    newBufferFrom: function(data, encoding) {
      +        // XXX We can't use `Buffer.from` which comes from `Uint8Array.from`
      +        // in nodejs v4 (< v.4.5). It's not the expected implementation (and
      +        // has a different signature).
      +        // see https://github.com/nodejs/node/issues/8053
      +        // A condition on nodejs' version won't solve the issue as we don't
      +        // control the Buffer polyfills that may or may not be used.
      +        return new Buffer(data, encoding);
      +    },
      +    /**
      +     * Create a new nodejs Buffer with the specified size.
      +     * @param {Integer} size the size of the buffer.
      +     * @return {Buffer} a new Buffer.
      +     */
      +    allocBuffer: function (size) {
      +        if (Buffer.alloc) {
      +            return Buffer.alloc(size);
      +        } else {
      +            return new Buffer(size);
      +        }
      +    },
      +    /**
      +     * Find out if an object is a Buffer.
      +     * @param {Object} b the object to test.
      +     * @return {Boolean} true if the object is a Buffer, false otherwise.
      +     */
      +    isBuffer : function(b){
      +        return Buffer.isBuffer(b);
      +    },
      +
      +    isStream : function (obj) {
      +        return obj &&
      +            typeof obj.on === "function" &&
      +            typeof obj.pause === "function" &&
      +            typeof obj.resume === "function";
      +    }
      +};
      +
      +},{}],15:[function(require,module,exports){
      +'use strict';
      +var utf8 = require('./utf8');
      +var utils = require('./utils');
      +var GenericWorker = require('./stream/GenericWorker');
      +var StreamHelper = require('./stream/StreamHelper');
      +var defaults = require('./defaults');
      +var CompressedObject = require('./compressedObject');
      +var ZipObject = require('./zipObject');
      +var generate = require("./generate");
      +var nodejsUtils = require("./nodejsUtils");
      +var NodejsStreamInputAdapter = require("./nodejs/NodejsStreamInputAdapter");
      +
      +
      +/**
      + * Add a file in the current folder.
      + * @private
      + * @param {string} name the name of the file
      + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data of the file
      + * @param {Object} originalOptions the options of the file
      + * @return {Object} the new file.
      + */
      +var fileAdd = function(name, data, originalOptions) {
      +    // be sure sub folders exist
      +    var dataType = utils.getTypeOf(data),
      +        parent;
      +
      +
      +    /*
      +     * Correct options.
      +     */
      +
      +    var o = utils.extend(originalOptions || {}, defaults);
      +    o.date = o.date || new Date();
      +    if (o.compression !== null) {
      +        o.compression = o.compression.toUpperCase();
      +    }
      +
      +    if (typeof o.unixPermissions === "string") {
      +        o.unixPermissions = parseInt(o.unixPermissions, 8);
      +    }
      +
      +    // UNX_IFDIR  0040000 see zipinfo.c
      +    if (o.unixPermissions && (o.unixPermissions & 0x4000)) {
      +        o.dir = true;
      +    }
      +    // Bit 4    Directory
      +    if (o.dosPermissions && (o.dosPermissions & 0x0010)) {
      +        o.dir = true;
      +    }
      +
      +    if (o.dir) {
      +        name = forceTrailingSlash(name);
      +    }
      +    if (o.createFolders && (parent = parentFolder(name))) {
      +        folderAdd.call(this, parent, true);
      +    }
      +
      +    var isUnicodeString = dataType === "string" && o.binary === false && o.base64 === false;
      +    if (!originalOptions || typeof originalOptions.binary === "undefined") {
      +        o.binary = !isUnicodeString;
      +    }
      +
      +
      +    var isCompressedEmpty = (data instanceof CompressedObject) && data.uncompressedSize === 0;
      +
      +    if (isCompressedEmpty || o.dir || !data || data.length === 0) {
      +        o.base64 = false;
      +        o.binary = true;
      +        data = "";
      +        o.compression = "STORE";
      +        dataType = "string";
      +    }
      +
      +    /*
      +     * Convert content to fit.
      +     */
      +
      +    var zipObjectContent = null;
      +    if (data instanceof CompressedObject || data instanceof GenericWorker) {
      +        zipObjectContent = data;
      +    } else if (nodejsUtils.isNode && nodejsUtils.isStream(data)) {
      +        zipObjectContent = new NodejsStreamInputAdapter(name, data);
      +    } else {
      +        zipObjectContent = utils.prepareContent(name, data, o.binary, o.optimizedBinaryString, o.base64);
      +    }
      +
      +    var object = new ZipObject(name, zipObjectContent, o);
      +    this.files[name] = object;
      +    /*
      +    TODO: we can't throw an exception because we have async promises
      +    (we can have a promise of a Date() for example) but returning a
      +    promise is useless because file(name, data) returns the JSZip
      +    object for chaining. Should we break that to allow the user
      +    to catch the error ?
      +
      +    return external.Promise.resolve(zipObjectContent)
      +    .then(function () {
      +        return object;
      +    });
      +    */
      +};
      +
      +/**
      + * Find the parent folder of the path.
      + * @private
      + * @param {string} path the path to use
      + * @return {string} the parent folder, or ""
      + */
      +var parentFolder = function (path) {
      +    if (path.slice(-1) === '/') {
      +        path = path.substring(0, path.length - 1);
      +    }
      +    var lastSlash = path.lastIndexOf('/');
      +    return (lastSlash > 0) ? path.substring(0, lastSlash) : "";
      +};
      +
      +/**
      + * Returns the path with a slash at the end.
      + * @private
      + * @param {String} path the path to check.
      + * @return {String} the path with a trailing slash.
      + */
      +var forceTrailingSlash = function(path) {
      +    // Check the name ends with a /
      +    if (path.slice(-1) !== "/") {
      +        path += "/"; // IE doesn't like substr(-1)
      +    }
      +    return path;
      +};
      +
      +/**
      + * Add a (sub) folder in the current folder.
      + * @private
      + * @param {string} name the folder's name
      + * @param {boolean=} [createFolders] If true, automatically create sub
      + *  folders. Defaults to false.
      + * @return {Object} the new folder.
      + */
      +var folderAdd = function(name, createFolders) {
      +    createFolders = (typeof createFolders !== 'undefined') ? createFolders : defaults.createFolders;
      +
      +    name = forceTrailingSlash(name);
      +
      +    // Does this folder already exist?
      +    if (!this.files[name]) {
      +        fileAdd.call(this, name, null, {
      +            dir: true,
      +            createFolders: createFolders
      +        });
      +    }
      +    return this.files[name];
      +};
      +
      +/**
      +* Cross-window, cross-Node-context regular expression detection
      +* @param  {Object}  object Anything
      +* @return {Boolean}        true if the object is a regular expression,
      +* false otherwise
      +*/
      +function isRegExp(object) {
      +    return Object.prototype.toString.call(object) === "[object RegExp]";
      +}
      +
      +// return the actual prototype of JSZip
      +var out = {
      +    /**
      +     * @see loadAsync
      +     */
      +    load: function() {
      +        throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.");
      +    },
      +
      +
      +    /**
      +     * Call a callback function for each entry at this folder level.
      +     * @param {Function} cb the callback function:
      +     * function (relativePath, file) {...}
      +     * It takes 2 arguments : the relative path and the file.
      +     */
      +    forEach: function(cb) {
      +        var filename, relativePath, file;
      +        for (filename in this.files) {
      +            if (!this.files.hasOwnProperty(filename)) {
      +                continue;
      +            }
      +            file = this.files[filename];
      +            relativePath = filename.slice(this.root.length, filename.length);
      +            if (relativePath && filename.slice(0, this.root.length) === this.root) { // the file is in the current root
      +                cb(relativePath, file); // TODO reverse the parameters ? need to be clean AND consistent with the filter search fn...
      +            }
      +        }
      +    },
      +
      +    /**
      +     * Filter nested files/folders with the specified function.
      +     * @param {Function} search the predicate to use :
      +     * function (relativePath, file) {...}
      +     * It takes 2 arguments : the relative path and the file.
      +     * @return {Array} An array of matching elements.
      +     */
      +    filter: function(search) {
      +        var result = [];
      +        this.forEach(function (relativePath, entry) {
      +            if (search(relativePath, entry)) { // the file matches the function
      +                result.push(entry);
      +            }
      +
      +        });
      +        return result;
      +    },
      +
      +    /**
      +     * Add a file to the zip file, or search a file.
      +     * @param   {string|RegExp} name The name of the file to add (if data is defined),
      +     * the name of the file to find (if no data) or a regex to match files.
      +     * @param   {String|ArrayBuffer|Uint8Array|Buffer} data  The file data, either raw or base64 encoded
      +     * @param   {Object} o     File options
      +     * @return  {JSZip|Object|Array} this JSZip object (when adding a file),
      +     * a file (when searching by string) or an array of files (when searching by regex).
      +     */
      +    file: function(name, data, o) {
      +        if (arguments.length === 1) {
      +            if (isRegExp(name)) {
      +                var regexp = name;
      +                return this.filter(function(relativePath, file) {
      +                    return !file.dir && regexp.test(relativePath);
      +                });
      +            }
      +            else { // text
      +                var obj = this.files[this.root + name];
      +                if (obj && !obj.dir) {
      +                    return obj;
      +                } else {
      +                    return null;
      +                }
      +            }
      +        }
      +        else { // more than one argument : we have data !
      +            name = this.root + name;
      +            fileAdd.call(this, name, data, o);
      +        }
      +        return this;
      +    },
      +
      +    /**
      +     * Add a directory to the zip file, or search.
      +     * @param   {String|RegExp} arg The name of the directory to add, or a regex to search folders.
      +     * @return  {JSZip} an object with the new directory as the root, or an array containing matching folders.
      +     */
      +    folder: function(arg) {
      +        if (!arg) {
      +            return this;
      +        }
      +
      +        if (isRegExp(arg)) {
      +            return this.filter(function(relativePath, file) {
      +                return file.dir && arg.test(relativePath);
      +            });
      +        }
      +
      +        // else, name is a new folder
      +        var name = this.root + arg;
      +        var newFolder = folderAdd.call(this, name);
      +
      +        // Allow chaining by returning a new object with this folder as the root
      +        var ret = this.clone();
      +        ret.root = newFolder.name;
      +        return ret;
      +    },
      +
      +    /**
      +     * Delete a file, or a directory and all sub-files, from the zip
      +     * @param {string} name the name of the file to delete
      +     * @return {JSZip} this JSZip object
      +     */
      +    remove: function(name) {
      +        name = this.root + name;
      +        var file = this.files[name];
      +        if (!file) {
      +            // Look for any folders
      +            if (name.slice(-1) !== "/") {
      +                name += "/";
      +            }
      +            file = this.files[name];
      +        }
      +
      +        if (file && !file.dir) {
      +            // file
      +            delete this.files[name];
      +        } else {
      +            // maybe a folder, delete recursively
      +            var kids = this.filter(function(relativePath, file) {
      +                return file.name.slice(0, name.length) === name;
      +            });
      +            for (var i = 0; i < kids.length; i++) {
      +                delete this.files[kids[i].name];
      +            }
      +        }
      +
      +        return this;
      +    },
      +
      +    /**
      +     * Generate the complete zip file
      +     * @param {Object} options the options to generate the zip file :
      +     * - compression, "STORE" by default.
      +     * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob.
      +     * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the zip file
      +     */
      +    generate: function(options) {
      +        throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.");
      +    },
      +
      +    /**
      +     * Generate the complete zip file as an internal stream.
      +     * @param {Object} options the options to generate the zip file :
      +     * - compression, "STORE" by default.
      +     * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob.
      +     * @return {StreamHelper} the streamed zip file.
      +     */
      +    generateInternalStream: function(options) {
      +      var worker, opts = {};
      +      try {
      +          opts = utils.extend(options || {}, {
      +              streamFiles: false,
      +              compression: "STORE",
      +              compressionOptions : null,
      +              type: "",
      +              platform: "DOS",
      +              comment: null,
      +              mimeType: 'application/zip',
      +              encodeFileName: utf8.utf8encode
      +          });
      +
      +          opts.type = opts.type.toLowerCase();
      +          opts.compression = opts.compression.toUpperCase();
      +
      +          // "binarystring" is prefered but the internals use "string".
      +          if(opts.type === "binarystring") {
      +            opts.type = "string";
      +          }
      +
      +          if (!opts.type) {
      +            throw new Error("No output type specified.");
      +          }
      +
      +          utils.checkSupport(opts.type);
      +
      +          // accept nodejs `process.platform`
      +          if(
      +              opts.platform === 'darwin' ||
      +              opts.platform === 'freebsd' ||
      +              opts.platform === 'linux' ||
      +              opts.platform === 'sunos'
      +          ) {
      +              opts.platform = "UNIX";
      +          }
      +          if (opts.platform === 'win32') {
      +              opts.platform = "DOS";
      +          }
      +
      +          var comment = opts.comment || this.comment || "";
      +          worker = generate.generateWorker(this, opts, comment);
      +      } catch (e) {
      +        worker = new GenericWorker("error");
      +        worker.error(e);
      +      }
      +      return new StreamHelper(worker, opts.type || "string", opts.mimeType);
      +    },
      +    /**
      +     * Generate the complete zip file asynchronously.
      +     * @see generateInternalStream
      +     */
      +    generateAsync: function(options, onUpdate) {
      +        return this.generateInternalStream(options).accumulate(onUpdate);
      +    },
      +    /**
      +     * Generate the complete zip file asynchronously.
      +     * @see generateInternalStream
      +     */
      +    generateNodeStream: function(options, onUpdate) {
      +        options = options || {};
      +        if (!options.type) {
      +            options.type = "nodebuffer";
      +        }
      +        return this.generateInternalStream(options).toNodejsStream(onUpdate);
      +    }
      +};
      +module.exports = out;
      +
      +},{"./compressedObject":2,"./defaults":5,"./generate":9,"./nodejs/NodejsStreamInputAdapter":12,"./nodejsUtils":14,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31,"./utils":32,"./zipObject":35}],16:[function(require,module,exports){
      +/*
      + * This file is used by module bundlers (browserify/webpack/etc) when
      + * including a stream implementation. We use "readable-stream" to get a
      + * consistent behavior between nodejs versions but bundlers often have a shim
      + * for "stream". Using this shim greatly improve the compatibility and greatly
      + * reduce the final size of the bundle (only one stream implementation, not
      + * two).
      + */
      +module.exports = require("stream");
      +
      +},{"stream":undefined}],17:[function(require,module,exports){
      +'use strict';
      +var DataReader = require('./DataReader');
      +var utils = require('../utils');
      +
      +function ArrayReader(data) {
      +    DataReader.call(this, data);
      +	for(var i = 0; i < this.data.length; i++) {
      +		data[i] = data[i] & 0xFF;
      +	}
      +}
      +utils.inherits(ArrayReader, DataReader);
      +/**
      + * @see DataReader.byteAt
      + */
      +ArrayReader.prototype.byteAt = function(i) {
      +    return this.data[this.zero + i];
      +};
      +/**
      + * @see DataReader.lastIndexOfSignature
      + */
      +ArrayReader.prototype.lastIndexOfSignature = function(sig) {
      +    var sig0 = sig.charCodeAt(0),
      +        sig1 = sig.charCodeAt(1),
      +        sig2 = sig.charCodeAt(2),
      +        sig3 = sig.charCodeAt(3);
      +    for (var i = this.length - 4; i >= 0; --i) {
      +        if (this.data[i] === sig0 && this.data[i + 1] === sig1 && this.data[i + 2] === sig2 && this.data[i + 3] === sig3) {
      +            return i - this.zero;
      +        }
      +    }
      +
      +    return -1;
      +};
      +/**
      + * @see DataReader.readAndCheckSignature
      + */
      +ArrayReader.prototype.readAndCheckSignature = function (sig) {
      +    var sig0 = sig.charCodeAt(0),
      +        sig1 = sig.charCodeAt(1),
      +        sig2 = sig.charCodeAt(2),
      +        sig3 = sig.charCodeAt(3),
      +        data = this.readData(4);
      +    return sig0 === data[0] && sig1 === data[1] && sig2 === data[2] && sig3 === data[3];
      +};
      +/**
      + * @see DataReader.readData
      + */
      +ArrayReader.prototype.readData = function(size) {
      +    this.checkOffset(size);
      +    if(size === 0) {
      +        return [];
      +    }
      +    var result = this.data.slice(this.zero + this.index, this.zero + this.index + size);
      +    this.index += size;
      +    return result;
      +};
      +module.exports = ArrayReader;
      +
      +},{"../utils":32,"./DataReader":18}],18:[function(require,module,exports){
      +'use strict';
      +var utils = require('../utils');
      +
      +function DataReader(data) {
      +    this.data = data; // type : see implementation
      +    this.length = data.length;
      +    this.index = 0;
      +    this.zero = 0;
      +}
      +DataReader.prototype = {
      +    /**
      +     * Check that the offset will not go too far.
      +     * @param {string} offset the additional offset to check.
      +     * @throws {Error} an Error if the offset is out of bounds.
      +     */
      +    checkOffset: function(offset) {
      +        this.checkIndex(this.index + offset);
      +    },
      +    /**
      +     * Check that the specified index will not be too far.
      +     * @param {string} newIndex the index to check.
      +     * @throws {Error} an Error if the index is out of bounds.
      +     */
      +    checkIndex: function(newIndex) {
      +        if (this.length < this.zero + newIndex || newIndex < 0) {
      +            throw new Error("End of data reached (data length = " + this.length + ", asked index = " + (newIndex) + "). Corrupted zip ?");
      +        }
      +    },
      +    /**
      +     * Change the index.
      +     * @param {number} newIndex The new index.
      +     * @throws {Error} if the new index is out of the data.
      +     */
      +    setIndex: function(newIndex) {
      +        this.checkIndex(newIndex);
      +        this.index = newIndex;
      +    },
      +    /**
      +     * Skip the next n bytes.
      +     * @param {number} n the number of bytes to skip.
      +     * @throws {Error} if the new index is out of the data.
      +     */
      +    skip: function(n) {
      +        this.setIndex(this.index + n);
      +    },
      +    /**
      +     * Get the byte at the specified index.
      +     * @param {number} i the index to use.
      +     * @return {number} a byte.
      +     */
      +    byteAt: function(i) {
      +        // see implementations
      +    },
      +    /**
      +     * Get the next number with a given byte size.
      +     * @param {number} size the number of bytes to read.
      +     * @return {number} the corresponding number.
      +     */
      +    readInt: function(size) {
      +        var result = 0,
      +            i;
      +        this.checkOffset(size);
      +        for (i = this.index + size - 1; i >= this.index; i--) {
      +            result = (result << 8) + this.byteAt(i);
      +        }
      +        this.index += size;
      +        return result;
      +    },
      +    /**
      +     * Get the next string with a given byte size.
      +     * @param {number} size the number of bytes to read.
      +     * @return {string} the corresponding string.
      +     */
      +    readString: function(size) {
      +        return utils.transformTo("string", this.readData(size));
      +    },
      +    /**
      +     * Get raw data without conversion, <size> bytes.
      +     * @param {number} size the number of bytes to read.
      +     * @return {Object} the raw data, implementation specific.
      +     */
      +    readData: function(size) {
      +        // see implementations
      +    },
      +    /**
      +     * Find the last occurence of a zip signature (4 bytes).
      +     * @param {string} sig the signature to find.
      +     * @return {number} the index of the last occurence, -1 if not found.
      +     */
      +    lastIndexOfSignature: function(sig) {
      +        // see implementations
      +    },
      +    /**
      +     * Read the signature (4 bytes) at the current position and compare it with sig.
      +     * @param {string} sig the expected signature
      +     * @return {boolean} true if the signature matches, false otherwise.
      +     */
      +    readAndCheckSignature: function(sig) {
      +        // see implementations
      +    },
      +    /**
      +     * Get the next date.
      +     * @return {Date} the date.
      +     */
      +    readDate: function() {
      +        var dostime = this.readInt(4);
      +        return new Date(Date.UTC(
      +        ((dostime >> 25) & 0x7f) + 1980, // year
      +        ((dostime >> 21) & 0x0f) - 1, // month
      +        (dostime >> 16) & 0x1f, // day
      +        (dostime >> 11) & 0x1f, // hour
      +        (dostime >> 5) & 0x3f, // minute
      +        (dostime & 0x1f) << 1)); // second
      +    }
      +};
      +module.exports = DataReader;
      +
      +},{"../utils":32}],19:[function(require,module,exports){
      +'use strict';
      +var Uint8ArrayReader = require('./Uint8ArrayReader');
      +var utils = require('../utils');
      +
      +function NodeBufferReader(data) {
      +    Uint8ArrayReader.call(this, data);
      +}
      +utils.inherits(NodeBufferReader, Uint8ArrayReader);
      +
      +/**
      + * @see DataReader.readData
      + */
      +NodeBufferReader.prototype.readData = function(size) {
      +    this.checkOffset(size);
      +    var result = this.data.slice(this.zero + this.index, this.zero + this.index + size);
      +    this.index += size;
      +    return result;
      +};
      +module.exports = NodeBufferReader;
      +
      +},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(require,module,exports){
      +'use strict';
      +var DataReader = require('./DataReader');
      +var utils = require('../utils');
      +
      +function StringReader(data) {
      +    DataReader.call(this, data);
      +}
      +utils.inherits(StringReader, DataReader);
      +/**
      + * @see DataReader.byteAt
      + */
      +StringReader.prototype.byteAt = function(i) {
      +    return this.data.charCodeAt(this.zero + i);
      +};
      +/**
      + * @see DataReader.lastIndexOfSignature
      + */
      +StringReader.prototype.lastIndexOfSignature = function(sig) {
      +    return this.data.lastIndexOf(sig) - this.zero;
      +};
      +/**
      + * @see DataReader.readAndCheckSignature
      + */
      +StringReader.prototype.readAndCheckSignature = function (sig) {
      +    var data = this.readData(4);
      +    return sig === data;
      +};
      +/**
      + * @see DataReader.readData
      + */
      +StringReader.prototype.readData = function(size) {
      +    this.checkOffset(size);
      +    // this will work because the constructor applied the "& 0xff" mask.
      +    var result = this.data.slice(this.zero + this.index, this.zero + this.index + size);
      +    this.index += size;
      +    return result;
      +};
      +module.exports = StringReader;
      +
      +},{"../utils":32,"./DataReader":18}],21:[function(require,module,exports){
      +'use strict';
      +var ArrayReader = require('./ArrayReader');
      +var utils = require('../utils');
      +
      +function Uint8ArrayReader(data) {
      +    ArrayReader.call(this, data);
      +}
      +utils.inherits(Uint8ArrayReader, ArrayReader);
      +/**
      + * @see DataReader.readData
      + */
      +Uint8ArrayReader.prototype.readData = function(size) {
      +    this.checkOffset(size);
      +    if(size === 0) {
      +        // in IE10, when using subarray(idx, idx), we get the array [0x00] instead of [].
      +        return new Uint8Array(0);
      +    }
      +    var result = this.data.subarray(this.zero + this.index, this.zero + this.index + size);
      +    this.index += size;
      +    return result;
      +};
      +module.exports = Uint8ArrayReader;
      +
      +},{"../utils":32,"./ArrayReader":17}],22:[function(require,module,exports){
      +'use strict';
      +
      +var utils = require('../utils');
      +var support = require('../support');
      +var ArrayReader = require('./ArrayReader');
      +var StringReader = require('./StringReader');
      +var NodeBufferReader = require('./NodeBufferReader');
      +var Uint8ArrayReader = require('./Uint8ArrayReader');
      +
      +/**
      + * Create a reader adapted to the data.
      + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data to read.
      + * @return {DataReader} the data reader.
      + */
      +module.exports = function (data) {
      +    var type = utils.getTypeOf(data);
      +    utils.checkSupport(type);
      +    if (type === "string" && !support.uint8array) {
      +        return new StringReader(data);
      +    }
      +    if (type === "nodebuffer") {
      +        return new NodeBufferReader(data);
      +    }
      +    if (support.uint8array) {
      +        return new Uint8ArrayReader(utils.transformTo("uint8array", data));
      +    }
      +    return new ArrayReader(utils.transformTo("array", data));
      +};
      +
      +},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(require,module,exports){
      +'use strict';
      +exports.LOCAL_FILE_HEADER = "PK\x03\x04";
      +exports.CENTRAL_FILE_HEADER = "PK\x01\x02";
      +exports.CENTRAL_DIRECTORY_END = "PK\x05\x06";
      +exports.ZIP64_CENTRAL_DIRECTORY_LOCATOR = "PK\x06\x07";
      +exports.ZIP64_CENTRAL_DIRECTORY_END = "PK\x06\x06";
      +exports.DATA_DESCRIPTOR = "PK\x07\x08";
      +
      +},{}],24:[function(require,module,exports){
      +'use strict';
      +
      +var GenericWorker = require('./GenericWorker');
      +var utils = require('../utils');
      +
      +/**
      + * A worker which convert chunks to a specified type.
      + * @constructor
      + * @param {String} destType the destination type.
      + */
      +function ConvertWorker(destType) {
      +    GenericWorker.call(this, "ConvertWorker to " + destType);
      +    this.destType = destType;
      +}
      +utils.inherits(ConvertWorker, GenericWorker);
      +
      +/**
      + * @see GenericWorker.processChunk
      + */
      +ConvertWorker.prototype.processChunk = function (chunk) {
      +    this.push({
      +        data : utils.transformTo(this.destType, chunk.data),
      +        meta : chunk.meta
      +    });
      +};
      +module.exports = ConvertWorker;
      +
      +},{"../utils":32,"./GenericWorker":28}],25:[function(require,module,exports){
      +'use strict';
      +
      +var GenericWorker = require('./GenericWorker');
      +var crc32 = require('../crc32');
      +var utils = require('../utils');
      +
      +/**
      + * A worker which calculate the crc32 of the data flowing through.
      + * @constructor
      + */
      +function Crc32Probe() {
      +    GenericWorker.call(this, "Crc32Probe");
      +    this.withStreamInfo("crc32", 0);
      +}
      +utils.inherits(Crc32Probe, GenericWorker);
      +
      +/**
      + * @see GenericWorker.processChunk
      + */
      +Crc32Probe.prototype.processChunk = function (chunk) {
      +    this.streamInfo.crc32 = crc32(chunk.data, this.streamInfo.crc32 || 0);
      +    this.push(chunk);
      +};
      +module.exports = Crc32Probe;
      +
      +},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(require,module,exports){
      +'use strict';
      +
      +var utils = require('../utils');
      +var GenericWorker = require('./GenericWorker');
      +
      +/**
      + * A worker which calculate the total length of the data flowing through.
      + * @constructor
      + * @param {String} propName the name used to expose the length
      + */
      +function DataLengthProbe(propName) {
      +    GenericWorker.call(this, "DataLengthProbe for " + propName);
      +    this.propName = propName;
      +    this.withStreamInfo(propName, 0);
      +}
      +utils.inherits(DataLengthProbe, GenericWorker);
      +
      +/**
      + * @see GenericWorker.processChunk
      + */
      +DataLengthProbe.prototype.processChunk = function (chunk) {
      +    if(chunk) {
      +        var length = this.streamInfo[this.propName] || 0;
      +        this.streamInfo[this.propName] = length + chunk.data.length;
      +    }
      +    GenericWorker.prototype.processChunk.call(this, chunk);
      +};
      +module.exports = DataLengthProbe;
      +
      +
      +},{"../utils":32,"./GenericWorker":28}],27:[function(require,module,exports){
      +'use strict';
      +
      +var utils = require('../utils');
      +var GenericWorker = require('./GenericWorker');
      +
      +// the size of the generated chunks
      +// TODO expose this as a public variable
      +var DEFAULT_BLOCK_SIZE = 16 * 1024;
      +
      +/**
      + * A worker that reads a content and emits chunks.
      + * @constructor
      + * @param {Promise} dataP the promise of the data to split
      + */
      +function DataWorker(dataP) {
      +    GenericWorker.call(this, "DataWorker");
      +    var self = this;
      +    this.dataIsReady = false;
      +    this.index = 0;
      +    this.max = 0;
      +    this.data = null;
      +    this.type = "";
      +
      +    this._tickScheduled = false;
      +
      +    dataP.then(function (data) {
      +        self.dataIsReady = true;
      +        self.data = data;
      +        self.max = data && data.length || 0;
      +        self.type = utils.getTypeOf(data);
      +        if(!self.isPaused) {
      +            self._tickAndRepeat();
      +        }
      +    }, function (e) {
      +        self.error(e);
      +    });
      +}
      +
      +utils.inherits(DataWorker, GenericWorker);
      +
      +/**
      + * @see GenericWorker.cleanUp
      + */
      +DataWorker.prototype.cleanUp = function () {
      +    GenericWorker.prototype.cleanUp.call(this);
      +    this.data = null;
      +};
      +
      +/**
      + * @see GenericWorker.resume
      + */
      +DataWorker.prototype.resume = function () {
      +    if(!GenericWorker.prototype.resume.call(this)) {
      +        return false;
      +    }
      +
      +    if (!this._tickScheduled && this.dataIsReady) {
      +        this._tickScheduled = true;
      +        utils.delay(this._tickAndRepeat, [], this);
      +    }
      +    return true;
      +};
      +
      +/**
      + * Trigger a tick a schedule an other call to this function.
      + */
      +DataWorker.prototype._tickAndRepeat = function() {
      +    this._tickScheduled = false;
      +    if(this.isPaused || this.isFinished) {
      +        return;
      +    }
      +    this._tick();
      +    if(!this.isFinished) {
      +        utils.delay(this._tickAndRepeat, [], this);
      +        this._tickScheduled = true;
      +    }
      +};
      +
      +/**
      + * Read and push a chunk.
      + */
      +DataWorker.prototype._tick = function() {
      +
      +    if(this.isPaused || this.isFinished) {
      +        return false;
      +    }
      +
      +    var size = DEFAULT_BLOCK_SIZE;
      +    var data = null, nextIndex = Math.min(this.max, this.index + size);
      +    if (this.index >= this.max) {
      +        // EOF
      +        return this.end();
      +    } else {
      +        switch(this.type) {
      +            case "string":
      +                data = this.data.substring(this.index, nextIndex);
      +            break;
      +            case "uint8array":
      +                data = this.data.subarray(this.index, nextIndex);
      +            break;
      +            case "array":
      +            case "nodebuffer":
      +                data = this.data.slice(this.index, nextIndex);
      +            break;
      +        }
      +        this.index = nextIndex;
      +        return this.push({
      +            data : data,
      +            meta : {
      +                percent : this.max ? this.index / this.max * 100 : 0
      +            }
      +        });
      +    }
      +};
      +
      +module.exports = DataWorker;
      +
      +},{"../utils":32,"./GenericWorker":28}],28:[function(require,module,exports){
      +'use strict';
      +
      +/**
      + * A worker that does nothing but passing chunks to the next one. This is like
      + * a nodejs stream but with some differences. On the good side :
      + * - it works on IE 6-9 without any issue / polyfill
      + * - it weights less than the full dependencies bundled with browserify
      + * - it forwards errors (no need to declare an error handler EVERYWHERE)
      + *
      + * A chunk is an object with 2 attributes : `meta` and `data`. The former is an
      + * object containing anything (`percent` for example), see each worker for more
      + * details. The latter is the real data (String, Uint8Array, etc).
      + *
      + * @constructor
      + * @param {String} name the name of the stream (mainly used for debugging purposes)
      + */
      +function GenericWorker(name) {
      +    // the name of the worker
      +    this.name = name || "default";
      +    // an object containing metadata about the workers chain
      +    this.streamInfo = {};
      +    // an error which happened when the worker was paused
      +    this.generatedError = null;
      +    // an object containing metadata to be merged by this worker into the general metadata
      +    this.extraStreamInfo = {};
      +    // true if the stream is paused (and should not do anything), false otherwise
      +    this.isPaused = true;
      +    // true if the stream is finished (and should not do anything), false otherwise
      +    this.isFinished = false;
      +    // true if the stream is locked to prevent further structure updates (pipe), false otherwise
      +    this.isLocked = false;
      +    // the event listeners
      +    this._listeners = {
      +        'data':[],
      +        'end':[],
      +        'error':[]
      +    };
      +    // the previous worker, if any
      +    this.previous = null;
      +}
      +
      +GenericWorker.prototype = {
      +    /**
      +     * Push a chunk to the next workers.
      +     * @param {Object} chunk the chunk to push
      +     */
      +    push : function (chunk) {
      +        this.emit("data", chunk);
      +    },
      +    /**
      +     * End the stream.
      +     * @return {Boolean} true if this call ended the worker, false otherwise.
      +     */
      +    end : function () {
      +        if (this.isFinished) {
      +            return false;
      +        }
      +
      +        this.flush();
      +        try {
      +            this.emit("end");
      +            this.cleanUp();
      +            this.isFinished = true;
      +        } catch (e) {
      +            this.emit("error", e);
      +        }
      +        return true;
      +    },
      +    /**
      +     * End the stream with an error.
      +     * @param {Error} e the error which caused the premature end.
      +     * @return {Boolean} true if this call ended the worker with an error, false otherwise.
      +     */
      +    error : function (e) {
      +        if (this.isFinished) {
      +            return false;
      +        }
      +
      +        if(this.isPaused) {
      +            this.generatedError = e;
      +        } else {
      +            this.isFinished = true;
      +
      +            this.emit("error", e);
      +
      +            // in the workers chain exploded in the middle of the chain,
      +            // the error event will go downward but we also need to notify
      +            // workers upward that there has been an error.
      +            if(this.previous) {
      +                this.previous.error(e);
      +            }
      +
      +            this.cleanUp();
      +        }
      +        return true;
      +    },
      +    /**
      +     * Add a callback on an event.
      +     * @param {String} name the name of the event (data, end, error)
      +     * @param {Function} listener the function to call when the event is triggered
      +     * @return {GenericWorker} the current object for chainability
      +     */
      +    on : function (name, listener) {
      +        this._listeners[name].push(listener);
      +        return this;
      +    },
      +    /**
      +     * Clean any references when a worker is ending.
      +     */
      +    cleanUp : function () {
      +        this.streamInfo = this.generatedError = this.extraStreamInfo = null;
      +        this._listeners = [];
      +    },
      +    /**
      +     * Trigger an event. This will call registered callback with the provided arg.
      +     * @param {String} name the name of the event (data, end, error)
      +     * @param {Object} arg the argument to call the callback with.
      +     */
      +    emit : function (name, arg) {
      +        if (this._listeners[name]) {
      +            for(var i = 0; i < this._listeners[name].length; i++) {
      +                this._listeners[name][i].call(this, arg);
      +            }
      +        }
      +    },
      +    /**
      +     * Chain a worker with an other.
      +     * @param {Worker} next the worker receiving events from the current one.
      +     * @return {worker} the next worker for chainability
      +     */
      +    pipe : function (next) {
      +        return next.registerPrevious(this);
      +    },
      +    /**
      +     * Same as `pipe` in the other direction.
      +     * Using an API with `pipe(next)` is very easy.
      +     * Implementing the API with the point of view of the next one registering
      +     * a source is easier, see the ZipFileWorker.
      +     * @param {Worker} previous the previous worker, sending events to this one
      +     * @return {Worker} the current worker for chainability
      +     */
      +    registerPrevious : function (previous) {
      +        if (this.isLocked) {
      +            throw new Error("The stream '" + this + "' has already been used.");
      +        }
      +
      +        // sharing the streamInfo...
      +        this.streamInfo = previous.streamInfo;
      +        // ... and adding our own bits
      +        this.mergeStreamInfo();
      +        this.previous =  previous;
      +        var self = this;
      +        previous.on('data', function (chunk) {
      +            self.processChunk(chunk);
      +        });
      +        previous.on('end', function () {
      +            self.end();
      +        });
      +        previous.on('error', function (e) {
      +            self.error(e);
      +        });
      +        return this;
      +    },
      +    /**
      +     * Pause the stream so it doesn't send events anymore.
      +     * @return {Boolean} true if this call paused the worker, false otherwise.
      +     */
      +    pause : function () {
      +        if(this.isPaused || this.isFinished) {
      +            return false;
      +        }
      +        this.isPaused = true;
      +
      +        if(this.previous) {
      +            this.previous.pause();
      +        }
      +        return true;
      +    },
      +    /**
      +     * Resume a paused stream.
      +     * @return {Boolean} true if this call resumed the worker, false otherwise.
      +     */
      +    resume : function () {
      +        if(!this.isPaused || this.isFinished) {
      +            return false;
      +        }
      +        this.isPaused = false;
      +
      +        // if true, the worker tried to resume but failed
      +        var withError = false;
      +        if(this.generatedError) {
      +            this.error(this.generatedError);
      +            withError = true;
      +        }
      +        if(this.previous) {
      +            this.previous.resume();
      +        }
      +
      +        return !withError;
      +    },
      +    /**
      +     * Flush any remaining bytes as the stream is ending.
      +     */
      +    flush : function () {},
      +    /**
      +     * Process a chunk. This is usually the method overridden.
      +     * @param {Object} chunk the chunk to process.
      +     */
      +    processChunk : function(chunk) {
      +        this.push(chunk);
      +    },
      +    /**
      +     * Add a key/value to be added in the workers chain streamInfo once activated.
      +     * @param {String} key the key to use
      +     * @param {Object} value the associated value
      +     * @return {Worker} the current worker for chainability
      +     */
      +    withStreamInfo : function (key, value) {
      +        this.extraStreamInfo[key] = value;
      +        this.mergeStreamInfo();
      +        return this;
      +    },
      +    /**
      +     * Merge this worker's streamInfo into the chain's streamInfo.
      +     */
      +    mergeStreamInfo : function () {
      +        for(var key in this.extraStreamInfo) {
      +            if (!this.extraStreamInfo.hasOwnProperty(key)) {
      +                continue;
      +            }
      +            this.streamInfo[key] = this.extraStreamInfo[key];
      +        }
      +    },
      +
      +    /**
      +     * Lock the stream to prevent further updates on the workers chain.
      +     * After calling this method, all calls to pipe will fail.
      +     */
      +    lock: function () {
      +        if (this.isLocked) {
      +            throw new Error("The stream '" + this + "' has already been used.");
      +        }
      +        this.isLocked = true;
      +        if (this.previous) {
      +            this.previous.lock();
      +        }
      +    },
      +
      +    /**
      +     *
      +     * Pretty print the workers chain.
      +     */
      +    toString : function () {
      +        var me = "Worker " + this.name;
      +        if (this.previous) {
      +            return this.previous + " -> " + me;
      +        } else {
      +            return me;
      +        }
      +    }
      +};
      +
      +module.exports = GenericWorker;
      +
      +},{}],29:[function(require,module,exports){
      +'use strict';
      +
      +var utils = require('../utils');
      +var ConvertWorker = require('./ConvertWorker');
      +var GenericWorker = require('./GenericWorker');
      +var base64 = require('../base64');
      +var support = require("../support");
      +var external = require("../external");
      +
      +var NodejsStreamOutputAdapter = null;
      +if (support.nodestream) {
      +    try {
      +        NodejsStreamOutputAdapter = require('../nodejs/NodejsStreamOutputAdapter');
      +    } catch(e) {}
      +}
      +
      +/**
      + * Apply the final transformation of the data. If the user wants a Blob for
      + * example, it's easier to work with an U8intArray and finally do the
      + * ArrayBuffer/Blob conversion.
      + * @param {String} type the name of the final type
      + * @param {String|Uint8Array|Buffer} content the content to transform
      + * @param {String} mimeType the mime type of the content, if applicable.
      + * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the content in the right format.
      + */
      +function transformZipOutput(type, content, mimeType) {
      +    switch(type) {
      +        case "blob" :
      +            return utils.newBlob(utils.transformTo("arraybuffer", content), mimeType);
      +        case "base64" :
      +            return base64.encode(content);
      +        default :
      +            return utils.transformTo(type, content);
      +    }
      +}
      +
      +/**
      + * Concatenate an array of data of the given type.
      + * @param {String} type the type of the data in the given array.
      + * @param {Array} dataArray the array containing the data chunks to concatenate
      + * @return {String|Uint8Array|Buffer} the concatenated data
      + * @throws Error if the asked type is unsupported
      + */
      +function concat (type, dataArray) {
      +    var i, index = 0, res = null, totalLength = 0;
      +    for(i = 0; i < dataArray.length; i++) {
      +        totalLength += dataArray[i].length;
      +    }
      +    switch(type) {
      +        case "string":
      +            return dataArray.join("");
      +          case "array":
      +            return Array.prototype.concat.apply([], dataArray);
      +        case "uint8array":
      +            res = new Uint8Array(totalLength);
      +            for(i = 0; i < dataArray.length; i++) {
      +                res.set(dataArray[i], index);
      +                index += dataArray[i].length;
      +            }
      +            return res;
      +        case "nodebuffer":
      +            return Buffer.concat(dataArray);
      +        default:
      +            throw new Error("concat : unsupported type '"  + type + "'");
      +    }
      +}
      +
      +/**
      + * Listen a StreamHelper, accumulate its content and concatenate it into a
      + * complete block.
      + * @param {StreamHelper} helper the helper to use.
      + * @param {Function} updateCallback a callback called on each update. Called
      + * with one arg :
      + * - the metadata linked to the update received.
      + * @return Promise the promise for the accumulation.
      + */
      +function accumulate(helper, updateCallback) {
      +    return new external.Promise(function (resolve, reject){
      +        var dataArray = [];
      +        var chunkType = helper._internalType,
      +            resultType = helper._outputType,
      +            mimeType = helper._mimeType;
      +        helper
      +        .on('data', function (data, meta) {
      +            dataArray.push(data);
      +            if(updateCallback) {
      +                updateCallback(meta);
      +            }
      +        })
      +        .on('error', function(err) {
      +            dataArray = [];
      +            reject(err);
      +        })
      +        .on('end', function (){
      +            try {
      +                var result = transformZipOutput(resultType, concat(chunkType, dataArray), mimeType);
      +                resolve(result);
      +            } catch (e) {
      +                reject(e);
      +            }
      +            dataArray = [];
      +        })
      +        .resume();
      +    });
      +}
      +
      +/**
      + * An helper to easily use workers outside of JSZip.
      + * @constructor
      + * @param {Worker} worker the worker to wrap
      + * @param {String} outputType the type of data expected by the use
      + * @param {String} mimeType the mime type of the content, if applicable.
      + */
      +function StreamHelper(worker, outputType, mimeType) {
      +    var internalType = outputType;
      +    switch(outputType) {
      +        case "blob":
      +        case "arraybuffer":
      +            internalType = "uint8array";
      +        break;
      +        case "base64":
      +            internalType = "string";
      +        break;
      +    }
      +
      +    try {
      +        // the type used internally
      +        this._internalType = internalType;
      +        // the type used to output results
      +        this._outputType = outputType;
      +        // the mime type
      +        this._mimeType = mimeType;
      +        utils.checkSupport(internalType);
      +        this._worker = worker.pipe(new ConvertWorker(internalType));
      +        // the last workers can be rewired without issues but we need to
      +        // prevent any updates on previous workers.
      +        worker.lock();
      +    } catch(e) {
      +        this._worker = new GenericWorker("error");
      +        this._worker.error(e);
      +    }
      +}
      +
      +StreamHelper.prototype = {
      +    /**
      +     * Listen a StreamHelper, accumulate its content and concatenate it into a
      +     * complete block.
      +     * @param {Function} updateCb the update callback.
      +     * @return Promise the promise for the accumulation.
      +     */
      +    accumulate : function (updateCb) {
      +        return accumulate(this, updateCb);
      +    },
      +    /**
      +     * Add a listener on an event triggered on a stream.
      +     * @param {String} evt the name of the event
      +     * @param {Function} fn the listener
      +     * @return {StreamHelper} the current helper.
      +     */
      +    on : function (evt, fn) {
      +        var self = this;
      +
      +        if(evt === "data") {
      +            this._worker.on(evt, function (chunk) {
      +                fn.call(self, chunk.data, chunk.meta);
      +            });
      +        } else {
      +            this._worker.on(evt, function () {
      +                utils.delay(fn, arguments, self);
      +            });
      +        }
      +        return this;
      +    },
      +    /**
      +     * Resume the flow of chunks.
      +     * @return {StreamHelper} the current helper.
      +     */
      +    resume : function () {
      +        utils.delay(this._worker.resume, [], this._worker);
      +        return this;
      +    },
      +    /**
      +     * Pause the flow of chunks.
      +     * @return {StreamHelper} the current helper.
      +     */
      +    pause : function () {
      +        this._worker.pause();
      +        return this;
      +    },
      +    /**
      +     * Return a nodejs stream for this helper.
      +     * @param {Function} updateCb the update callback.
      +     * @return {NodejsStreamOutputAdapter} the nodejs stream.
      +     */
      +    toNodejsStream : function (updateCb) {
      +        utils.checkSupport("nodestream");
      +        if (this._outputType !== "nodebuffer") {
      +            // an object stream containing blob/arraybuffer/uint8array/string
      +            // is strange and I don't know if it would be useful.
      +            // I you find this comment and have a good usecase, please open a
      +            // bug report !
      +            throw new Error(this._outputType + " is not supported by this method");
      +        }
      +
      +        return new NodejsStreamOutputAdapter(this, {
      +            objectMode : this._outputType !== "nodebuffer"
      +        }, updateCb);
      +    }
      +};
      +
      +
      +module.exports = StreamHelper;
      +
      +},{"../base64":1,"../external":6,"../nodejs/NodejsStreamOutputAdapter":13,"../support":30,"../utils":32,"./ConvertWorker":24,"./GenericWorker":28}],30:[function(require,module,exports){
      +'use strict';
      +
      +exports.base64 = true;
      +exports.array = true;
      +exports.string = true;
      +exports.arraybuffer = typeof ArrayBuffer !== "undefined" && typeof Uint8Array !== "undefined";
      +exports.nodebuffer = typeof Buffer !== "undefined";
      +// contains true if JSZip can read/generate Uint8Array, false otherwise.
      +exports.uint8array = typeof Uint8Array !== "undefined";
      +
      +if (typeof ArrayBuffer === "undefined") {
      +    exports.blob = false;
      +}
      +else {
      +    var buffer = new ArrayBuffer(0);
      +    try {
      +        exports.blob = new Blob([buffer], {
      +            type: "application/zip"
      +        }).size === 0;
      +    }
      +    catch (e) {
      +        try {
      +            var Builder = self.BlobBuilder || self.WebKitBlobBuilder || self.MozBlobBuilder || self.MSBlobBuilder;
      +            var builder = new Builder();
      +            builder.append(buffer);
      +            exports.blob = builder.getBlob('application/zip').size === 0;
      +        }
      +        catch (e) {
      +            exports.blob = false;
      +        }
      +    }
      +}
      +
      +try {
      +    exports.nodestream = !!require('readable-stream').Readable;
      +} catch(e) {
      +    exports.nodestream = false;
      +}
      +
      +},{"readable-stream":16}],31:[function(require,module,exports){
      +'use strict';
      +
      +var utils = require('./utils');
      +var support = require('./support');
      +var nodejsUtils = require('./nodejsUtils');
      +var GenericWorker = require('./stream/GenericWorker');
      +
      +/**
      + * The following functions come from pako, from pako/lib/utils/strings
      + * released under the MIT license, see pako https://github.com/nodeca/pako/
      + */
      +
      +// Table with utf8 lengths (calculated by first byte of sequence)
      +// Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS,
      +// because max possible codepoint is 0x10ffff
      +var _utf8len = new Array(256);
      +for (var i=0; i<256; i++) {
      +  _utf8len[i] = (i >= 252 ? 6 : i >= 248 ? 5 : i >= 240 ? 4 : i >= 224 ? 3 : i >= 192 ? 2 : 1);
      +}
      +_utf8len[254]=_utf8len[254]=1; // Invalid sequence start
      +
      +// convert string to array (typed, when possible)
      +var string2buf = function (str) {
      +    var buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0;
      +
      +    // count binary size
      +    for (m_pos = 0; m_pos < str_len; m_pos++) {
      +        c = str.charCodeAt(m_pos);
      +        if ((c & 0xfc00) === 0xd800 && (m_pos+1 < str_len)) {
      +            c2 = str.charCodeAt(m_pos+1);
      +            if ((c2 & 0xfc00) === 0xdc00) {
      +                c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
      +                m_pos++;
      +            }
      +        }
      +        buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4;
      +    }
      +
      +    // allocate buffer
      +    if (support.uint8array) {
      +        buf = new Uint8Array(buf_len);
      +    } else {
      +        buf = new Array(buf_len);
      +    }
      +
      +    // convert
      +    for (i=0, m_pos = 0; i < buf_len; m_pos++) {
      +        c = str.charCodeAt(m_pos);
      +        if ((c & 0xfc00) === 0xd800 && (m_pos+1 < str_len)) {
      +            c2 = str.charCodeAt(m_pos+1);
      +            if ((c2 & 0xfc00) === 0xdc00) {
      +                c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
      +                m_pos++;
      +            }
      +        }
      +        if (c < 0x80) {
      +            /* one byte */
      +            buf[i++] = c;
      +        } else if (c < 0x800) {
      +            /* two bytes */
      +            buf[i++] = 0xC0 | (c >>> 6);
      +            buf[i++] = 0x80 | (c & 0x3f);
      +        } else if (c < 0x10000) {
      +            /* three bytes */
      +            buf[i++] = 0xE0 | (c >>> 12);
      +            buf[i++] = 0x80 | (c >>> 6 & 0x3f);
      +            buf[i++] = 0x80 | (c & 0x3f);
      +        } else {
      +            /* four bytes */
      +            buf[i++] = 0xf0 | (c >>> 18);
      +            buf[i++] = 0x80 | (c >>> 12 & 0x3f);
      +            buf[i++] = 0x80 | (c >>> 6 & 0x3f);
      +            buf[i++] = 0x80 | (c & 0x3f);
      +        }
      +    }
      +
      +    return buf;
      +};
      +
      +// Calculate max possible position in utf8 buffer,
      +// that will not break sequence. If that's not possible
      +// - (very small limits) return max size as is.
      +//
      +// buf[] - utf8 bytes array
      +// max   - length limit (mandatory);
      +var utf8border = function(buf, max) {
      +    var pos;
      +
      +    max = max || buf.length;
      +    if (max > buf.length) { max = buf.length; }
      +
      +    // go back from last position, until start of sequence found
      +    pos = max-1;
      +    while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; }
      +
      +    // Fuckup - very small and broken sequence,
      +    // return max, because we should return something anyway.
      +    if (pos < 0) { return max; }
      +
      +    // If we came to start of buffer - that means vuffer is too small,
      +    // return max too.
      +    if (pos === 0) { return max; }
      +
      +    return (pos + _utf8len[buf[pos]] > max) ? pos : max;
      +};
      +
      +// convert array to string
      +var buf2string = function (buf) {
      +    var str, i, out, c, c_len;
      +    var len = buf.length;
      +
      +    // Reserve max possible length (2 words per char)
      +    // NB: by unknown reasons, Array is significantly faster for
      +    //     String.fromCharCode.apply than Uint16Array.
      +    var utf16buf = new Array(len*2);
      +
      +    for (out=0, i=0; i<len;) {
      +        c = buf[i++];
      +        // quick process ascii
      +        if (c < 0x80) { utf16buf[out++] = c; continue; }
      +
      +        c_len = _utf8len[c];
      +        // skip 5 & 6 byte codes
      +        if (c_len > 4) { utf16buf[out++] = 0xfffd; i += c_len-1; continue; }
      +
      +        // apply mask on first byte
      +        c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07;
      +        // join the rest
      +        while (c_len > 1 && i < len) {
      +            c = (c << 6) | (buf[i++] & 0x3f);
      +            c_len--;
      +        }
      +
      +        // terminated by end of string?
      +        if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; }
      +
      +        if (c < 0x10000) {
      +            utf16buf[out++] = c;
      +        } else {
      +            c -= 0x10000;
      +            utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff);
      +            utf16buf[out++] = 0xdc00 | (c & 0x3ff);
      +        }
      +    }
      +
      +    // shrinkBuf(utf16buf, out)
      +    if (utf16buf.length !== out) {
      +        if(utf16buf.subarray) {
      +            utf16buf = utf16buf.subarray(0, out);
      +        } else {
      +            utf16buf.length = out;
      +        }
      +    }
      +
      +    // return String.fromCharCode.apply(null, utf16buf);
      +    return utils.applyFromCharCode(utf16buf);
      +};
      +
      +
      +// That's all for the pako functions.
      +
      +
      +/**
      + * Transform a javascript string into an array (typed if possible) of bytes,
      + * UTF-8 encoded.
      + * @param {String} str the string to encode
      + * @return {Array|Uint8Array|Buffer} the UTF-8 encoded string.
      + */
      +exports.utf8encode = function utf8encode(str) {
      +    if (support.nodebuffer) {
      +        return nodejsUtils.newBufferFrom(str, "utf-8");
      +    }
      +
      +    return string2buf(str);
      +};
      +
      +
      +/**
      + * Transform a bytes array (or a representation) representing an UTF-8 encoded
      + * string into a javascript string.
      + * @param {Array|Uint8Array|Buffer} buf the data de decode
      + * @return {String} the decoded string.
      + */
      +exports.utf8decode = function utf8decode(buf) {
      +    if (support.nodebuffer) {
      +        return utils.transformTo("nodebuffer", buf).toString("utf-8");
      +    }
      +
      +    buf = utils.transformTo(support.uint8array ? "uint8array" : "array", buf);
      +
      +    return buf2string(buf);
      +};
      +
      +/**
      + * A worker to decode utf8 encoded binary chunks into string chunks.
      + * @constructor
      + */
      +function Utf8DecodeWorker() {
      +    GenericWorker.call(this, "utf-8 decode");
      +    // the last bytes if a chunk didn't end with a complete codepoint.
      +    this.leftOver = null;
      +}
      +utils.inherits(Utf8DecodeWorker, GenericWorker);
      +
      +/**
      + * @see GenericWorker.processChunk
      + */
      +Utf8DecodeWorker.prototype.processChunk = function (chunk) {
      +
      +    var data = utils.transformTo(support.uint8array ? "uint8array" : "array", chunk.data);
      +
      +    // 1st step, re-use what's left of the previous chunk
      +    if (this.leftOver && this.leftOver.length) {
      +        if(support.uint8array) {
      +            var previousData = data;
      +            data = new Uint8Array(previousData.length + this.leftOver.length);
      +            data.set(this.leftOver, 0);
      +            data.set(previousData, this.leftOver.length);
      +        } else {
      +            data = this.leftOver.concat(data);
      +        }
      +        this.leftOver = null;
      +    }
      +
      +    var nextBoundary = utf8border(data);
      +    var usableData = data;
      +    if (nextBoundary !== data.length) {
      +        if (support.uint8array) {
      +            usableData = data.subarray(0, nextBoundary);
      +            this.leftOver = data.subarray(nextBoundary, data.length);
      +        } else {
      +            usableData = data.slice(0, nextBoundary);
      +            this.leftOver = data.slice(nextBoundary, data.length);
      +        }
      +    }
      +
      +    this.push({
      +        data : exports.utf8decode(usableData),
      +        meta : chunk.meta
      +    });
      +};
      +
      +/**
      + * @see GenericWorker.flush
      + */
      +Utf8DecodeWorker.prototype.flush = function () {
      +    if(this.leftOver && this.leftOver.length) {
      +        this.push({
      +            data : exports.utf8decode(this.leftOver),
      +            meta : {}
      +        });
      +        this.leftOver = null;
      +    }
      +};
      +exports.Utf8DecodeWorker = Utf8DecodeWorker;
      +
      +/**
      + * A worker to endcode string chunks into utf8 encoded binary chunks.
      + * @constructor
      + */
      +function Utf8EncodeWorker() {
      +    GenericWorker.call(this, "utf-8 encode");
      +}
      +utils.inherits(Utf8EncodeWorker, GenericWorker);
      +
      +/**
      + * @see GenericWorker.processChunk
      + */
      +Utf8EncodeWorker.prototype.processChunk = function (chunk) {
      +    this.push({
      +        data : exports.utf8encode(chunk.data),
      +        meta : chunk.meta
      +    });
      +};
      +exports.Utf8EncodeWorker = Utf8EncodeWorker;
      +
      +},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(require,module,exports){
      +'use strict';
      +
      +var support = require('./support');
      +var base64 = require('./base64');
      +var nodejsUtils = require('./nodejsUtils');
      +var setImmediate = require('core-js/library/fn/set-immediate');
      +var external = require("./external");
      +
      +
      +/**
      + * Convert a string that pass as a "binary string": it should represent a byte
      + * array but may have > 255 char codes. Be sure to take only the first byte
      + * and returns the byte array.
      + * @param {String} str the string to transform.
      + * @return {Array|Uint8Array} the string in a binary format.
      + */
      +function string2binary(str) {
      +    var result = null;
      +    if (support.uint8array) {
      +      result = new Uint8Array(str.length);
      +    } else {
      +      result = new Array(str.length);
      +    }
      +    return stringToArrayLike(str, result);
      +}
      +
      +/**
      + * Create a new blob with the given content and the given type.
      + * @param {String|ArrayBuffer} part the content to put in the blob. DO NOT use
      + * an Uint8Array because the stock browser of android 4 won't accept it (it
      + * will be silently converted to a string, "[object Uint8Array]").
      + *
      + * Use only ONE part to build the blob to avoid a memory leak in IE11 / Edge:
      + * when a large amount of Array is used to create the Blob, the amount of
      + * memory consumed is nearly 100 times the original data amount.
      + *
      + * @param {String} type the mime type of the blob.
      + * @return {Blob} the created blob.
      + */
      +exports.newBlob = function(part, type) {
      +    exports.checkSupport("blob");
      +
      +    try {
      +        // Blob constructor
      +        return new Blob([part], {
      +            type: type
      +        });
      +    }
      +    catch (e) {
      +
      +        try {
      +            // deprecated, browser only, old way
      +            var Builder = self.BlobBuilder || self.WebKitBlobBuilder || self.MozBlobBuilder || self.MSBlobBuilder;
      +            var builder = new Builder();
      +            builder.append(part);
      +            return builder.getBlob(type);
      +        }
      +        catch (e) {
      +
      +            // well, fuck ?!
      +            throw new Error("Bug : can't construct the Blob.");
      +        }
      +    }
      +
      +
      +};
      +/**
      + * The identity function.
      + * @param {Object} input the input.
      + * @return {Object} the same input.
      + */
      +function identity(input) {
      +    return input;
      +}
      +
      +/**
      + * Fill in an array with a string.
      + * @param {String} str the string to use.
      + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to fill in (will be mutated).
      + * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated array.
      + */
      +function stringToArrayLike(str, array) {
      +    for (var i = 0; i < str.length; ++i) {
      +        array[i] = str.charCodeAt(i) & 0xFF;
      +    }
      +    return array;
      +}
      +
      +/**
      + * An helper for the function arrayLikeToString.
      + * This contains static informations and functions that
      + * can be optimized by the browser JIT compiler.
      + */
      +var arrayToStringHelper = {
      +    /**
      +     * Transform an array of int into a string, chunk by chunk.
      +     * See the performances notes on arrayLikeToString.
      +     * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform.
      +     * @param {String} type the type of the array.
      +     * @param {Integer} chunk the chunk size.
      +     * @return {String} the resulting string.
      +     * @throws Error if the chunk is too big for the stack.
      +     */
      +    stringifyByChunk: function(array, type, chunk) {
      +        var result = [], k = 0, len = array.length;
      +        // shortcut
      +        if (len <= chunk) {
      +            return String.fromCharCode.apply(null, array);
      +        }
      +        while (k < len) {
      +            if (type === "array" || type === "nodebuffer") {
      +                result.push(String.fromCharCode.apply(null, array.slice(k, Math.min(k + chunk, len))));
      +            }
      +            else {
      +                result.push(String.fromCharCode.apply(null, array.subarray(k, Math.min(k + chunk, len))));
      +            }
      +            k += chunk;
      +        }
      +        return result.join("");
      +    },
      +    /**
      +     * Call String.fromCharCode on every item in the array.
      +     * This is the naive implementation, which generate A LOT of intermediate string.
      +     * This should be used when everything else fail.
      +     * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform.
      +     * @return {String} the result.
      +     */
      +    stringifyByChar: function(array){
      +        var resultStr = "";
      +        for(var i = 0; i < array.length; i++) {
      +            resultStr += String.fromCharCode(array[i]);
      +        }
      +        return resultStr;
      +    },
      +    applyCanBeUsed : {
      +        /**
      +         * true if the browser accepts to use String.fromCharCode on Uint8Array
      +         */
      +        uint8array : (function () {
      +            try {
      +                return support.uint8array && String.fromCharCode.apply(null, new Uint8Array(1)).length === 1;
      +            } catch (e) {
      +                return false;
      +            }
      +        })(),
      +        /**
      +         * true if the browser accepts to use String.fromCharCode on nodejs Buffer.
      +         */
      +        nodebuffer : (function () {
      +            try {
      +                return support.nodebuffer && String.fromCharCode.apply(null, nodejsUtils.allocBuffer(1)).length === 1;
      +            } catch (e) {
      +                return false;
      +            }
      +        })()
      +    }
      +};
      +
      +/**
      + * Transform an array-like object to a string.
      + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform.
      + * @return {String} the result.
      + */
      +function arrayLikeToString(array) {
      +    // Performances notes :
      +    // --------------------
      +    // String.fromCharCode.apply(null, array) is the fastest, see
      +    // see http://jsperf.com/converting-a-uint8array-to-a-string/2
      +    // but the stack is limited (and we can get huge arrays !).
      +    //
      +    // result += String.fromCharCode(array[i]); generate too many strings !
      +    //
      +    // This code is inspired by http://jsperf.com/arraybuffer-to-string-apply-performance/2
      +    // TODO : we now have workers that split the work. Do we still need that ?
      +    var chunk = 65536,
      +        type = exports.getTypeOf(array),
      +        canUseApply = true;
      +    if (type === "uint8array") {
      +        canUseApply = arrayToStringHelper.applyCanBeUsed.uint8array;
      +    } else if (type === "nodebuffer") {
      +        canUseApply = arrayToStringHelper.applyCanBeUsed.nodebuffer;
      +    }
      +
      +    if (canUseApply) {
      +        while (chunk > 1) {
      +            try {
      +                return arrayToStringHelper.stringifyByChunk(array, type, chunk);
      +            } catch (e) {
      +                chunk = Math.floor(chunk / 2);
      +            }
      +        }
      +    }
      +
      +    // no apply or chunk error : slow and painful algorithm
      +    // default browser on android 4.*
      +    return arrayToStringHelper.stringifyByChar(array);
      +}
      +
      +exports.applyFromCharCode = arrayLikeToString;
      +
      +
      +/**
      + * Copy the data from an array-like to an other array-like.
      + * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayFrom the origin array.
      + * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayTo the destination array which will be mutated.
      + * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated destination array.
      + */
      +function arrayLikeToArrayLike(arrayFrom, arrayTo) {
      +    for (var i = 0; i < arrayFrom.length; i++) {
      +        arrayTo[i] = arrayFrom[i];
      +    }
      +    return arrayTo;
      +}
      +
      +// a matrix containing functions to transform everything into everything.
      +var transform = {};
      +
      +// string to ?
      +transform["string"] = {
      +    "string": identity,
      +    "array": function(input) {
      +        return stringToArrayLike(input, new Array(input.length));
      +    },
      +    "arraybuffer": function(input) {
      +        return transform["string"]["uint8array"](input).buffer;
      +    },
      +    "uint8array": function(input) {
      +        return stringToArrayLike(input, new Uint8Array(input.length));
      +    },
      +    "nodebuffer": function(input) {
      +        return stringToArrayLike(input, nodejsUtils.allocBuffer(input.length));
      +    }
      +};
      +
      +// array to ?
      +transform["array"] = {
      +    "string": arrayLikeToString,
      +    "array": identity,
      +    "arraybuffer": function(input) {
      +        return (new Uint8Array(input)).buffer;
      +    },
      +    "uint8array": function(input) {
      +        return new Uint8Array(input);
      +    },
      +    "nodebuffer": function(input) {
      +        return nodejsUtils.newBufferFrom(input);
      +    }
      +};
      +
      +// arraybuffer to ?
      +transform["arraybuffer"] = {
      +    "string": function(input) {
      +        return arrayLikeToString(new Uint8Array(input));
      +    },
      +    "array": function(input) {
      +        return arrayLikeToArrayLike(new Uint8Array(input), new Array(input.byteLength));
      +    },
      +    "arraybuffer": identity,
      +    "uint8array": function(input) {
      +        return new Uint8Array(input);
      +    },
      +    "nodebuffer": function(input) {
      +        return nodejsUtils.newBufferFrom(new Uint8Array(input));
      +    }
      +};
      +
      +// uint8array to ?
      +transform["uint8array"] = {
      +    "string": arrayLikeToString,
      +    "array": function(input) {
      +        return arrayLikeToArrayLike(input, new Array(input.length));
      +    },
      +    "arraybuffer": function(input) {
      +        return input.buffer;
      +    },
      +    "uint8array": identity,
      +    "nodebuffer": function(input) {
      +        return nodejsUtils.newBufferFrom(input);
      +    }
      +};
      +
      +// nodebuffer to ?
      +transform["nodebuffer"] = {
      +    "string": arrayLikeToString,
      +    "array": function(input) {
      +        return arrayLikeToArrayLike(input, new Array(input.length));
      +    },
      +    "arraybuffer": function(input) {
      +        return transform["nodebuffer"]["uint8array"](input).buffer;
      +    },
      +    "uint8array": function(input) {
      +        return arrayLikeToArrayLike(input, new Uint8Array(input.length));
      +    },
      +    "nodebuffer": identity
      +};
      +
      +/**
      + * Transform an input into any type.
      + * The supported output type are : string, array, uint8array, arraybuffer, nodebuffer.
      + * If no output type is specified, the unmodified input will be returned.
      + * @param {String} outputType the output type.
      + * @param {String|Array|ArrayBuffer|Uint8Array|Buffer} input the input to convert.
      + * @throws {Error} an Error if the browser doesn't support the requested output type.
      + */
      +exports.transformTo = function(outputType, input) {
      +    if (!input) {
      +        // undefined, null, etc
      +        // an empty string won't harm.
      +        input = "";
      +    }
      +    if (!outputType) {
      +        return input;
      +    }
      +    exports.checkSupport(outputType);
      +    var inputType = exports.getTypeOf(input);
      +    var result = transform[inputType][outputType](input);
      +    return result;
      +};
      +
      +/**
      + * Return the type of the input.
      + * The type will be in a format valid for JSZip.utils.transformTo : string, array, uint8array, arraybuffer.
      + * @param {Object} input the input to identify.
      + * @return {String} the (lowercase) type of the input.
      + */
      +exports.getTypeOf = function(input) {
      +    if (typeof input === "string") {
      +        return "string";
      +    }
      +    if (Object.prototype.toString.call(input) === "[object Array]") {
      +        return "array";
      +    }
      +    if (support.nodebuffer && nodejsUtils.isBuffer(input)) {
      +        return "nodebuffer";
      +    }
      +    if (support.uint8array && input instanceof Uint8Array) {
      +        return "uint8array";
      +    }
      +    if (support.arraybuffer && input instanceof ArrayBuffer) {
      +        return "arraybuffer";
      +    }
      +};
      +
      +/**
      + * Throw an exception if the type is not supported.
      + * @param {String} type the type to check.
      + * @throws {Error} an Error if the browser doesn't support the requested type.
      + */
      +exports.checkSupport = function(type) {
      +    var supported = support[type.toLowerCase()];
      +    if (!supported) {
      +        throw new Error(type + " is not supported by this platform");
      +    }
      +};
      +
      +exports.MAX_VALUE_16BITS = 65535;
      +exports.MAX_VALUE_32BITS = -1; // well, "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" is parsed as -1
      +
      +/**
      + * Prettify a string read as binary.
      + * @param {string} str the string to prettify.
      + * @return {string} a pretty string.
      + */
      +exports.pretty = function(str) {
      +    var res = '',
      +        code, i;
      +    for (i = 0; i < (str || "").length; i++) {
      +        code = str.charCodeAt(i);
      +        res += '\\x' + (code < 16 ? "0" : "") + code.toString(16).toUpperCase();
      +    }
      +    return res;
      +};
      +
      +/**
      + * Defer the call of a function.
      + * @param {Function} callback the function to call asynchronously.
      + * @param {Array} args the arguments to give to the callback.
      + */
      +exports.delay = function(callback, args, self) {
      +    setImmediate(function () {
      +        callback.apply(self || null, args || []);
      +    });
      +};
      +
      +/**
      + * Extends a prototype with an other, without calling a constructor with
      + * side effects. Inspired by nodejs' `utils.inherits`
      + * @param {Function} ctor the constructor to augment
      + * @param {Function} superCtor the parent constructor to use
      + */
      +exports.inherits = function (ctor, superCtor) {
      +    var Obj = function() {};
      +    Obj.prototype = superCtor.prototype;
      +    ctor.prototype = new Obj();
      +};
      +
      +/**
      + * Merge the objects passed as parameters into a new one.
      + * @private
      + * @param {...Object} var_args All objects to merge.
      + * @return {Object} a new object with the data of the others.
      + */
      +exports.extend = function() {
      +    var result = {}, i, attr;
      +    for (i = 0; i < arguments.length; i++) { // arguments is not enumerable in some browsers
      +        for (attr in arguments[i]) {
      +            if (arguments[i].hasOwnProperty(attr) && typeof result[attr] === "undefined") {
      +                result[attr] = arguments[i][attr];
      +            }
      +        }
      +    }
      +    return result;
      +};
      +
      +/**
      + * Transform arbitrary content into a Promise.
      + * @param {String} name a name for the content being processed.
      + * @param {Object} inputData the content to process.
      + * @param {Boolean} isBinary true if the content is not an unicode string
      + * @param {Boolean} isOptimizedBinaryString true if the string content only has one byte per character.
      + * @param {Boolean} isBase64 true if the string content is encoded with base64.
      + * @return {Promise} a promise in a format usable by JSZip.
      + */
      +exports.prepareContent = function(name, inputData, isBinary, isOptimizedBinaryString, isBase64) {
      +
      +    // if inputData is already a promise, this flatten it.
      +    var promise = external.Promise.resolve(inputData).then(function(data) {
      +        
      +        
      +        var isBlob = support.blob && (data instanceof Blob || ['[object File]', '[object Blob]'].indexOf(Object.prototype.toString.call(data)) !== -1);
      +
      +        if (isBlob && typeof FileReader !== "undefined") {
      +            return new external.Promise(function (resolve, reject) {
      +                var reader = new FileReader();
      +
      +                reader.onload = function(e) {
      +                    resolve(e.target.result);
      +                };
      +                reader.onerror = function(e) {
      +                    reject(e.target.error);
      +                };
      +                reader.readAsArrayBuffer(data);
      +            });
      +        } else {
      +            return data;
      +        }
      +    });
      +
      +    return promise.then(function(data) {
      +        var dataType = exports.getTypeOf(data);
      +
      +        if (!dataType) {
      +            return external.Promise.reject(
      +                new Error("Can't read the data of '" + name + "'. Is it " +
      +                          "in a supported JavaScript type (String, Blob, ArrayBuffer, etc) ?")
      +            );
      +        }
      +        // special case : it's way easier to work with Uint8Array than with ArrayBuffer
      +        if (dataType === "arraybuffer") {
      +            data = exports.transformTo("uint8array", data);
      +        } else if (dataType === "string") {
      +            if (isBase64) {
      +                data = base64.decode(data);
      +            }
      +            else if (isBinary) {
      +                // optimizedBinaryString === true means that the file has already been filtered with a 0xFF mask
      +                if (isOptimizedBinaryString !== true) {
      +                    // this is a string, not in a base64 format.
      +                    // Be sure that this is a correct "binary string"
      +                    data = string2binary(data);
      +                }
      +            }
      +        }
      +        return data;
      +    });
      +};
      +
      +},{"./base64":1,"./external":6,"./nodejsUtils":14,"./support":30,"core-js/library/fn/set-immediate":36}],33:[function(require,module,exports){
      +'use strict';
      +var readerFor = require('./reader/readerFor');
      +var utils = require('./utils');
      +var sig = require('./signature');
      +var ZipEntry = require('./zipEntry');
      +var utf8 = require('./utf8');
      +var support = require('./support');
      +//  class ZipEntries {{{
      +/**
      + * All the entries in the zip file.
      + * @constructor
      + * @param {Object} loadOptions Options for loading the stream.
      + */
      +function ZipEntries(loadOptions) {
      +    this.files = [];
      +    this.loadOptions = loadOptions;
      +}
      +ZipEntries.prototype = {
      +    /**
      +     * Check that the reader is on the specified signature.
      +     * @param {string} expectedSignature the expected signature.
      +     * @throws {Error} if it is an other signature.
      +     */
      +    checkSignature: function(expectedSignature) {
      +        if (!this.reader.readAndCheckSignature(expectedSignature)) {
      +            this.reader.index -= 4;
      +            var signature = this.reader.readString(4);
      +            throw new Error("Corrupted zip or bug: unexpected signature " + "(" + utils.pretty(signature) + ", expected " + utils.pretty(expectedSignature) + ")");
      +        }
      +    },
      +    /**
      +     * Check if the given signature is at the given index.
      +     * @param {number} askedIndex the index to check.
      +     * @param {string} expectedSignature the signature to expect.
      +     * @return {boolean} true if the signature is here, false otherwise.
      +     */
      +    isSignature: function(askedIndex, expectedSignature) {
      +        var currentIndex = this.reader.index;
      +        this.reader.setIndex(askedIndex);
      +        var signature = this.reader.readString(4);
      +        var result = signature === expectedSignature;
      +        this.reader.setIndex(currentIndex);
      +        return result;
      +    },
      +    /**
      +     * Read the end of the central directory.
      +     */
      +    readBlockEndOfCentral: function() {
      +        this.diskNumber = this.reader.readInt(2);
      +        this.diskWithCentralDirStart = this.reader.readInt(2);
      +        this.centralDirRecordsOnThisDisk = this.reader.readInt(2);
      +        this.centralDirRecords = this.reader.readInt(2);
      +        this.centralDirSize = this.reader.readInt(4);
      +        this.centralDirOffset = this.reader.readInt(4);
      +
      +        this.zipCommentLength = this.reader.readInt(2);
      +        // warning : the encoding depends of the system locale
      +        // On a linux machine with LANG=en_US.utf8, this field is utf8 encoded.
      +        // On a windows machine, this field is encoded with the localized windows code page.
      +        var zipComment = this.reader.readData(this.zipCommentLength);
      +        var decodeParamType = support.uint8array ? "uint8array" : "array";
      +        // To get consistent behavior with the generation part, we will assume that
      +        // this is utf8 encoded unless specified otherwise.
      +        var decodeContent = utils.transformTo(decodeParamType, zipComment);
      +        this.zipComment = this.loadOptions.decodeFileName(decodeContent);
      +    },
      +    /**
      +     * Read the end of the Zip 64 central directory.
      +     * Not merged with the method readEndOfCentral :
      +     * The end of central can coexist with its Zip64 brother,
      +     * I don't want to read the wrong number of bytes !
      +     */
      +    readBlockZip64EndOfCentral: function() {
      +        this.zip64EndOfCentralSize = this.reader.readInt(8);
      +        this.reader.skip(4);
      +        // this.versionMadeBy = this.reader.readString(2);
      +        // this.versionNeeded = this.reader.readInt(2);
      +        this.diskNumber = this.reader.readInt(4);
      +        this.diskWithCentralDirStart = this.reader.readInt(4);
      +        this.centralDirRecordsOnThisDisk = this.reader.readInt(8);
      +        this.centralDirRecords = this.reader.readInt(8);
      +        this.centralDirSize = this.reader.readInt(8);
      +        this.centralDirOffset = this.reader.readInt(8);
      +
      +        this.zip64ExtensibleData = {};
      +        var extraDataSize = this.zip64EndOfCentralSize - 44,
      +            index = 0,
      +            extraFieldId,
      +            extraFieldLength,
      +            extraFieldValue;
      +        while (index < extraDataSize) {
      +            extraFieldId = this.reader.readInt(2);
      +            extraFieldLength = this.reader.readInt(4);
      +            extraFieldValue = this.reader.readData(extraFieldLength);
      +            this.zip64ExtensibleData[extraFieldId] = {
      +                id: extraFieldId,
      +                length: extraFieldLength,
      +                value: extraFieldValue
      +            };
      +        }
      +    },
      +    /**
      +     * Read the end of the Zip 64 central directory locator.
      +     */
      +    readBlockZip64EndOfCentralLocator: function() {
      +        this.diskWithZip64CentralDirStart = this.reader.readInt(4);
      +        this.relativeOffsetEndOfZip64CentralDir = this.reader.readInt(8);
      +        this.disksCount = this.reader.readInt(4);
      +        if (this.disksCount > 1) {
      +            throw new Error("Multi-volumes zip are not supported");
      +        }
      +    },
      +    /**
      +     * Read the local files, based on the offset read in the central part.
      +     */
      +    readLocalFiles: function() {
      +        var i, file;
      +        for (i = 0; i < this.files.length; i++) {
      +            file = this.files[i];
      +            this.reader.setIndex(file.localHeaderOffset);
      +            this.checkSignature(sig.LOCAL_FILE_HEADER);
      +            file.readLocalPart(this.reader);
      +            file.handleUTF8();
      +            file.processAttributes();
      +        }
      +    },
      +    /**
      +     * Read the central directory.
      +     */
      +    readCentralDir: function() {
      +        var file;
      +
      +        this.reader.setIndex(this.centralDirOffset);
      +        while (this.reader.readAndCheckSignature(sig.CENTRAL_FILE_HEADER)) {
      +            file = new ZipEntry({
      +                zip64: this.zip64
      +            }, this.loadOptions);
      +            file.readCentralPart(this.reader);
      +            this.files.push(file);
      +        }
      +
      +        if (this.centralDirRecords !== this.files.length) {
      +            if (this.centralDirRecords !== 0 && this.files.length === 0) {
      +                // We expected some records but couldn't find ANY.
      +                // This is really suspicious, as if something went wrong.
      +                throw new Error("Corrupted zip or bug: expected " + this.centralDirRecords + " records in central dir, got " + this.files.length);
      +            } else {
      +                // We found some records but not all.
      +                // Something is wrong but we got something for the user: no error here.
      +                // console.warn("expected", this.centralDirRecords, "records in central dir, got", this.files.length);
      +            }
      +        }
      +    },
      +    /**
      +     * Read the end of central directory.
      +     */
      +    readEndOfCentral: function() {
      +        var offset = this.reader.lastIndexOfSignature(sig.CENTRAL_DIRECTORY_END);
      +        if (offset < 0) {
      +            // Check if the content is a truncated zip or complete garbage.
      +            // A "LOCAL_FILE_HEADER" is not required at the beginning (auto
      +            // extractible zip for example) but it can give a good hint.
      +            // If an ajax request was used without responseType, we will also
      +            // get unreadable data.
      +            var isGarbage = !this.isSignature(0, sig.LOCAL_FILE_HEADER);
      +
      +            if (isGarbage) {
      +                throw new Error("Can't find end of central directory : is this a zip file ? " +
      +                                "If it is, see https://stuk.github.io/jszip/documentation/howto/read_zip.html");
      +            } else {
      +                throw new Error("Corrupted zip: can't find end of central directory");
      +            }
      +
      +        }
      +        this.reader.setIndex(offset);
      +        var endOfCentralDirOffset = offset;
      +        this.checkSignature(sig.CENTRAL_DIRECTORY_END);
      +        this.readBlockEndOfCentral();
      +
      +
      +        /* extract from the zip spec :
      +            4)  If one of the fields in the end of central directory
      +                record is too small to hold required data, the field
      +                should be set to -1 (0xFFFF or 0xFFFFFFFF) and the
      +                ZIP64 format record should be created.
      +            5)  The end of central directory record and the
      +                Zip64 end of central directory locator record must
      +                reside on the same disk when splitting or spanning
      +                an archive.
      +         */
      +        if (this.diskNumber === utils.MAX_VALUE_16BITS || this.diskWithCentralDirStart === utils.MAX_VALUE_16BITS || this.centralDirRecordsOnThisDisk === utils.MAX_VALUE_16BITS || this.centralDirRecords === utils.MAX_VALUE_16BITS || this.centralDirSize === utils.MAX_VALUE_32BITS || this.centralDirOffset === utils.MAX_VALUE_32BITS) {
      +            this.zip64 = true;
      +
      +            /*
      +            Warning : the zip64 extension is supported, but ONLY if the 64bits integer read from
      +            the zip file can fit into a 32bits integer. This cannot be solved : JavaScript represents
      +            all numbers as 64-bit double precision IEEE 754 floating point numbers.
      +            So, we have 53bits for integers and bitwise operations treat everything as 32bits.
      +            see https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Operators/Bitwise_Operators
      +            and http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf section 8.5
      +            */
      +
      +            // should look for a zip64 EOCD locator
      +            offset = this.reader.lastIndexOfSignature(sig.ZIP64_CENTRAL_DIRECTORY_LOCATOR);
      +            if (offset < 0) {
      +                throw new Error("Corrupted zip: can't find the ZIP64 end of central directory locator");
      +            }
      +            this.reader.setIndex(offset);
      +            this.checkSignature(sig.ZIP64_CENTRAL_DIRECTORY_LOCATOR);
      +            this.readBlockZip64EndOfCentralLocator();
      +
      +            // now the zip64 EOCD record
      +            if (!this.isSignature(this.relativeOffsetEndOfZip64CentralDir, sig.ZIP64_CENTRAL_DIRECTORY_END)) {
      +                // console.warn("ZIP64 end of central directory not where expected.");
      +                this.relativeOffsetEndOfZip64CentralDir = this.reader.lastIndexOfSignature(sig.ZIP64_CENTRAL_DIRECTORY_END);
      +                if (this.relativeOffsetEndOfZip64CentralDir < 0) {
      +                    throw new Error("Corrupted zip: can't find the ZIP64 end of central directory");
      +                }
      +            }
      +            this.reader.setIndex(this.relativeOffsetEndOfZip64CentralDir);
      +            this.checkSignature(sig.ZIP64_CENTRAL_DIRECTORY_END);
      +            this.readBlockZip64EndOfCentral();
      +        }
      +
      +        var expectedEndOfCentralDirOffset = this.centralDirOffset + this.centralDirSize;
      +        if (this.zip64) {
      +            expectedEndOfCentralDirOffset += 20; // end of central dir 64 locator
      +            expectedEndOfCentralDirOffset += 12 /* should not include the leading 12 bytes */ + this.zip64EndOfCentralSize;
      +        }
      +
      +        var extraBytes = endOfCentralDirOffset - expectedEndOfCentralDirOffset;
      +
      +        if (extraBytes > 0) {
      +            // console.warn(extraBytes, "extra bytes at beginning or within zipfile");
      +            if (this.isSignature(endOfCentralDirOffset, sig.CENTRAL_FILE_HEADER)) {
      +                // The offsets seem wrong, but we have something at the specified offset.
      +                // So… we keep it.
      +            } else {
      +                // the offset is wrong, update the "zero" of the reader
      +                // this happens if data has been prepended (crx files for example)
      +                this.reader.zero = extraBytes;
      +            }
      +        } else if (extraBytes < 0) {
      +            throw new Error("Corrupted zip: missing " + Math.abs(extraBytes) + " bytes.");
      +        }
      +    },
      +    prepareReader: function(data) {
      +        this.reader = readerFor(data);
      +    },
      +    /**
      +     * Read a zip file and create ZipEntries.
      +     * @param {String|ArrayBuffer|Uint8Array|Buffer} data the binary string representing a zip file.
      +     */
      +    load: function(data) {
      +        this.prepareReader(data);
      +        this.readEndOfCentral();
      +        this.readCentralDir();
      +        this.readLocalFiles();
      +    }
      +};
      +// }}} end of ZipEntries
      +module.exports = ZipEntries;
      +
      +},{"./reader/readerFor":22,"./signature":23,"./support":30,"./utf8":31,"./utils":32,"./zipEntry":34}],34:[function(require,module,exports){
      +'use strict';
      +var readerFor = require('./reader/readerFor');
      +var utils = require('./utils');
      +var CompressedObject = require('./compressedObject');
      +var crc32fn = require('./crc32');
      +var utf8 = require('./utf8');
      +var compressions = require('./compressions');
      +var support = require('./support');
      +
      +var MADE_BY_DOS = 0x00;
      +var MADE_BY_UNIX = 0x03;
      +
      +/**
      + * Find a compression registered in JSZip.
      + * @param {string} compressionMethod the method magic to find.
      + * @return {Object|null} the JSZip compression object, null if none found.
      + */
      +var findCompression = function(compressionMethod) {
      +    for (var method in compressions) {
      +        if (!compressions.hasOwnProperty(method)) {
      +            continue;
      +        }
      +        if (compressions[method].magic === compressionMethod) {
      +            return compressions[method];
      +        }
      +    }
      +    return null;
      +};
      +
      +// class ZipEntry {{{
      +/**
      + * An entry in the zip file.
      + * @constructor
      + * @param {Object} options Options of the current file.
      + * @param {Object} loadOptions Options for loading the stream.
      + */
      +function ZipEntry(options, loadOptions) {
      +    this.options = options;
      +    this.loadOptions = loadOptions;
      +}
      +ZipEntry.prototype = {
      +    /**
      +     * say if the file is encrypted.
      +     * @return {boolean} true if the file is encrypted, false otherwise.
      +     */
      +    isEncrypted: function() {
      +        // bit 1 is set
      +        return (this.bitFlag & 0x0001) === 0x0001;
      +    },
      +    /**
      +     * say if the file has utf-8 filename/comment.
      +     * @return {boolean} true if the filename/comment is in utf-8, false otherwise.
      +     */
      +    useUTF8: function() {
      +        // bit 11 is set
      +        return (this.bitFlag & 0x0800) === 0x0800;
      +    },
      +    /**
      +     * Read the local part of a zip file and add the info in this object.
      +     * @param {DataReader} reader the reader to use.
      +     */
      +    readLocalPart: function(reader) {
      +        var compression, localExtraFieldsLength;
      +
      +        // we already know everything from the central dir !
      +        // If the central dir data are false, we are doomed.
      +        // On the bright side, the local part is scary  : zip64, data descriptors, both, etc.
      +        // The less data we get here, the more reliable this should be.
      +        // Let's skip the whole header and dash to the data !
      +        reader.skip(22);
      +        // in some zip created on windows, the filename stored in the central dir contains \ instead of /.
      +        // Strangely, the filename here is OK.
      +        // I would love to treat these zip files as corrupted (see http://www.info-zip.org/FAQ.html#backslashes
      +        // or APPNOTE#4.4.17.1, "All slashes MUST be forward slashes '/'") but there are a lot of bad zip generators...
      +        // Search "unzip mismatching "local" filename continuing with "central" filename version" on
      +        // the internet.
      +        //
      +        // I think I see the logic here : the central directory is used to display
      +        // content and the local directory is used to extract the files. Mixing / and \
      +        // may be used to display \ to windows users and use / when extracting the files.
      +        // Unfortunately, this lead also to some issues : http://seclists.org/fulldisclosure/2009/Sep/394
      +        this.fileNameLength = reader.readInt(2);
      +        localExtraFieldsLength = reader.readInt(2); // can't be sure this will be the same as the central dir
      +        // the fileName is stored as binary data, the handleUTF8 method will take care of the encoding.
      +        this.fileName = reader.readData(this.fileNameLength);
      +        reader.skip(localExtraFieldsLength);
      +
      +        if (this.compressedSize === -1 || this.uncompressedSize === -1) {
      +            throw new Error("Bug or corrupted zip : didn't get enough informations from the central directory " + "(compressedSize === -1 || uncompressedSize === -1)");
      +        }
      +
      +        compression = findCompression(this.compressionMethod);
      +        if (compression === null) { // no compression found
      +            throw new Error("Corrupted zip : compression " + utils.pretty(this.compressionMethod) + " unknown (inner file : " + utils.transformTo("string", this.fileName) + ")");
      +        }
      +        this.decompressed = new CompressedObject(this.compressedSize, this.uncompressedSize, this.crc32, compression, reader.readData(this.compressedSize));
      +    },
      +
      +    /**
      +     * Read the central part of a zip file and add the info in this object.
      +     * @param {DataReader} reader the reader to use.
      +     */
      +    readCentralPart: function(reader) {
      +        this.versionMadeBy = reader.readInt(2);
      +        reader.skip(2);
      +        // this.versionNeeded = reader.readInt(2);
      +        this.bitFlag = reader.readInt(2);
      +        this.compressionMethod = reader.readString(2);
      +        this.date = reader.readDate();
      +        this.crc32 = reader.readInt(4);
      +        this.compressedSize = reader.readInt(4);
      +        this.uncompressedSize = reader.readInt(4);
      +        var fileNameLength = reader.readInt(2);
      +        this.extraFieldsLength = reader.readInt(2);
      +        this.fileCommentLength = reader.readInt(2);
      +        this.diskNumberStart = reader.readInt(2);
      +        this.internalFileAttributes = reader.readInt(2);
      +        this.externalFileAttributes = reader.readInt(4);
      +        this.localHeaderOffset = reader.readInt(4);
      +
      +        if (this.isEncrypted()) {
      +            throw new Error("Encrypted zip are not supported");
      +        }
      +
      +        // will be read in the local part, see the comments there
      +        reader.skip(fileNameLength);
      +        this.readExtraFields(reader);
      +        this.parseZIP64ExtraField(reader);
      +        this.fileComment = reader.readData(this.fileCommentLength);
      +    },
      +
      +    /**
      +     * Parse the external file attributes and get the unix/dos permissions.
      +     */
      +    processAttributes: function () {
      +        this.unixPermissions = null;
      +        this.dosPermissions = null;
      +        var madeBy = this.versionMadeBy >> 8;
      +
      +        // Check if we have the DOS directory flag set.
      +        // We look for it in the DOS and UNIX permissions
      +        // but some unknown platform could set it as a compatibility flag.
      +        this.dir = this.externalFileAttributes & 0x0010 ? true : false;
      +
      +        if(madeBy === MADE_BY_DOS) {
      +            // first 6 bits (0 to 5)
      +            this.dosPermissions = this.externalFileAttributes & 0x3F;
      +        }
      +
      +        if(madeBy === MADE_BY_UNIX) {
      +            this.unixPermissions = (this.externalFileAttributes >> 16) & 0xFFFF;
      +            // the octal permissions are in (this.unixPermissions & 0x01FF).toString(8);
      +        }
      +
      +        // fail safe : if the name ends with a / it probably means a folder
      +        if (!this.dir && this.fileNameStr.slice(-1) === '/') {
      +            this.dir = true;
      +        }
      +    },
      +
      +    /**
      +     * Parse the ZIP64 extra field and merge the info in the current ZipEntry.
      +     * @param {DataReader} reader the reader to use.
      +     */
      +    parseZIP64ExtraField: function(reader) {
      +
      +        if (!this.extraFields[0x0001]) {
      +            return;
      +        }
      +
      +        // should be something, preparing the extra reader
      +        var extraReader = readerFor(this.extraFields[0x0001].value);
      +
      +        // I really hope that these 64bits integer can fit in 32 bits integer, because js
      +        // won't let us have more.
      +        if (this.uncompressedSize === utils.MAX_VALUE_32BITS) {
      +            this.uncompressedSize = extraReader.readInt(8);
      +        }
      +        if (this.compressedSize === utils.MAX_VALUE_32BITS) {
      +            this.compressedSize = extraReader.readInt(8);
      +        }
      +        if (this.localHeaderOffset === utils.MAX_VALUE_32BITS) {
      +            this.localHeaderOffset = extraReader.readInt(8);
      +        }
      +        if (this.diskNumberStart === utils.MAX_VALUE_32BITS) {
      +            this.diskNumberStart = extraReader.readInt(4);
      +        }
      +    },
      +    /**
      +     * Read the central part of a zip file and add the info in this object.
      +     * @param {DataReader} reader the reader to use.
      +     */
      +    readExtraFields: function(reader) {
      +        var end = reader.index + this.extraFieldsLength,
      +            extraFieldId,
      +            extraFieldLength,
      +            extraFieldValue;
      +
      +        if (!this.extraFields) {
      +            this.extraFields = {};
      +        }
      +
      +        while (reader.index < end) {
      +            extraFieldId = reader.readInt(2);
      +            extraFieldLength = reader.readInt(2);
      +            extraFieldValue = reader.readData(extraFieldLength);
      +
      +            this.extraFields[extraFieldId] = {
      +                id: extraFieldId,
      +                length: extraFieldLength,
      +                value: extraFieldValue
      +            };
      +        }
      +    },
      +    /**
      +     * Apply an UTF8 transformation if needed.
      +     */
      +    handleUTF8: function() {
      +        var decodeParamType = support.uint8array ? "uint8array" : "array";
      +        if (this.useUTF8()) {
      +            this.fileNameStr = utf8.utf8decode(this.fileName);
      +            this.fileCommentStr = utf8.utf8decode(this.fileComment);
      +        } else {
      +            var upath = this.findExtraFieldUnicodePath();
      +            if (upath !== null) {
      +                this.fileNameStr = upath;
      +            } else {
      +                // ASCII text or unsupported code page
      +                var fileNameByteArray =  utils.transformTo(decodeParamType, this.fileName);
      +                this.fileNameStr = this.loadOptions.decodeFileName(fileNameByteArray);
      +            }
      +
      +            var ucomment = this.findExtraFieldUnicodeComment();
      +            if (ucomment !== null) {
      +                this.fileCommentStr = ucomment;
      +            } else {
      +                // ASCII text or unsupported code page
      +                var commentByteArray =  utils.transformTo(decodeParamType, this.fileComment);
      +                this.fileCommentStr = this.loadOptions.decodeFileName(commentByteArray);
      +            }
      +        }
      +    },
      +
      +    /**
      +     * Find the unicode path declared in the extra field, if any.
      +     * @return {String} the unicode path, null otherwise.
      +     */
      +    findExtraFieldUnicodePath: function() {
      +        var upathField = this.extraFields[0x7075];
      +        if (upathField) {
      +            var extraReader = readerFor(upathField.value);
      +
      +            // wrong version
      +            if (extraReader.readInt(1) !== 1) {
      +                return null;
      +            }
      +
      +            // the crc of the filename changed, this field is out of date.
      +            if (crc32fn(this.fileName) !== extraReader.readInt(4)) {
      +                return null;
      +            }
      +
      +            return utf8.utf8decode(extraReader.readData(upathField.length - 5));
      +        }
      +        return null;
      +    },
      +
      +    /**
      +     * Find the unicode comment declared in the extra field, if any.
      +     * @return {String} the unicode comment, null otherwise.
      +     */
      +    findExtraFieldUnicodeComment: function() {
      +        var ucommentField = this.extraFields[0x6375];
      +        if (ucommentField) {
      +            var extraReader = readerFor(ucommentField.value);
      +
      +            // wrong version
      +            if (extraReader.readInt(1) !== 1) {
      +                return null;
      +            }
      +
      +            // the crc of the comment changed, this field is out of date.
      +            if (crc32fn(this.fileComment) !== extraReader.readInt(4)) {
      +                return null;
      +            }
      +
      +            return utf8.utf8decode(extraReader.readData(ucommentField.length - 5));
      +        }
      +        return null;
      +    }
      +};
      +module.exports = ZipEntry;
      +
      +},{"./compressedObject":2,"./compressions":3,"./crc32":4,"./reader/readerFor":22,"./support":30,"./utf8":31,"./utils":32}],35:[function(require,module,exports){
      +'use strict';
      +
      +var StreamHelper = require('./stream/StreamHelper');
      +var DataWorker = require('./stream/DataWorker');
      +var utf8 = require('./utf8');
      +var CompressedObject = require('./compressedObject');
      +var GenericWorker = require('./stream/GenericWorker');
      +
      +/**
      + * A simple object representing a file in the zip file.
      + * @constructor
      + * @param {string} name the name of the file
      + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data
      + * @param {Object} options the options of the file
      + */
      +var ZipObject = function(name, data, options) {
      +    this.name = name;
      +    this.dir = options.dir;
      +    this.date = options.date;
      +    this.comment = options.comment;
      +    this.unixPermissions = options.unixPermissions;
      +    this.dosPermissions = options.dosPermissions;
      +
      +    this._data = data;
      +    this._dataBinary = options.binary;
      +    // keep only the compression
      +    this.options = {
      +        compression : options.compression,
      +        compressionOptions : options.compressionOptions
      +    };
      +};
      +
      +ZipObject.prototype = {
      +    /**
      +     * Create an internal stream for the content of this object.
      +     * @param {String} type the type of each chunk.
      +     * @return StreamHelper the stream.
      +     */
      +    internalStream: function (type) {
      +        var result = null, outputType = "string";
      +        try {
      +            if (!type) {
      +                throw new Error("No output type specified.");
      +            }
      +            outputType = type.toLowerCase();
      +            var askUnicodeString = outputType === "string" || outputType === "text";
      +            if (outputType === "binarystring" || outputType === "text") {
      +                outputType = "string";
      +            }
      +            result = this._decompressWorker();
      +
      +            var isUnicodeString = !this._dataBinary;
      +
      +            if (isUnicodeString && !askUnicodeString) {
      +                result = result.pipe(new utf8.Utf8EncodeWorker());
      +            }
      +            if (!isUnicodeString && askUnicodeString) {
      +                result = result.pipe(new utf8.Utf8DecodeWorker());
      +            }
      +        } catch (e) {
      +            result = new GenericWorker("error");
      +            result.error(e);
      +        }
      +
      +        return new StreamHelper(result, outputType, "");
      +    },
      +
      +    /**
      +     * Prepare the content in the asked type.
      +     * @param {String} type the type of the result.
      +     * @param {Function} onUpdate a function to call on each internal update.
      +     * @return Promise the promise of the result.
      +     */
      +    async: function (type, onUpdate) {
      +        return this.internalStream(type).accumulate(onUpdate);
      +    },
      +
      +    /**
      +     * Prepare the content as a nodejs stream.
      +     * @param {String} type the type of each chunk.
      +     * @param {Function} onUpdate a function to call on each internal update.
      +     * @return Stream the stream.
      +     */
      +    nodeStream: function (type, onUpdate) {
      +        return this.internalStream(type || "nodebuffer").toNodejsStream(onUpdate);
      +    },
      +
      +    /**
      +     * Return a worker for the compressed content.
      +     * @private
      +     * @param {Object} compression the compression object to use.
      +     * @param {Object} compressionOptions the options to use when compressing.
      +     * @return Worker the worker.
      +     */
      +    _compressWorker: function (compression, compressionOptions) {
      +        if (
      +            this._data instanceof CompressedObject &&
      +            this._data.compression.magic === compression.magic
      +        ) {
      +            return this._data.getCompressedWorker();
      +        } else {
      +            var result = this._decompressWorker();
      +            if(!this._dataBinary) {
      +                result = result.pipe(new utf8.Utf8EncodeWorker());
      +            }
      +            return CompressedObject.createWorkerFrom(result, compression, compressionOptions);
      +        }
      +    },
      +    /**
      +     * Return a worker for the decompressed content.
      +     * @private
      +     * @return Worker the worker.
      +     */
      +    _decompressWorker : function () {
      +        if (this._data instanceof CompressedObject) {
      +            return this._data.getContentWorker();
      +        } else if (this._data instanceof GenericWorker) {
      +            return this._data;
      +        } else {
      +            return new DataWorker(this._data);
      +        }
      +    }
      +};
      +
      +var removedMethods = ["asText", "asBinary", "asNodeBuffer", "asUint8Array", "asArrayBuffer"];
      +var removedFn = function () {
      +    throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.");
      +};
      +
      +for(var i = 0; i < removedMethods.length; i++) {
      +    ZipObject.prototype[removedMethods[i]] = removedFn;
      +}
      +module.exports = ZipObject;
      +
      +},{"./compressedObject":2,"./stream/DataWorker":27,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31}],36:[function(require,module,exports){
      +require('../modules/web.immediate');
      +module.exports = require('../modules/_core').setImmediate;
      +},{"../modules/_core":40,"../modules/web.immediate":56}],37:[function(require,module,exports){
      +module.exports = function(it){
      +  if(typeof it != 'function')throw TypeError(it + ' is not a function!');
      +  return it;
      +};
      +},{}],38:[function(require,module,exports){
      +var isObject = require('./_is-object');
      +module.exports = function(it){
      +  if(!isObject(it))throw TypeError(it + ' is not an object!');
      +  return it;
      +};
      +},{"./_is-object":51}],39:[function(require,module,exports){
      +var toString = {}.toString;
      +
      +module.exports = function(it){
      +  return toString.call(it).slice(8, -1);
      +};
      +},{}],40:[function(require,module,exports){
      +var core = module.exports = {version: '2.3.0'};
      +if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef
      +},{}],41:[function(require,module,exports){
      +// optional / simple context binding
      +var aFunction = require('./_a-function');
      +module.exports = function(fn, that, length){
      +  aFunction(fn);
      +  if(that === undefined)return fn;
      +  switch(length){
      +    case 1: return function(a){
      +      return fn.call(that, a);
      +    };
      +    case 2: return function(a, b){
      +      return fn.call(that, a, b);
      +    };
      +    case 3: return function(a, b, c){
      +      return fn.call(that, a, b, c);
      +    };
      +  }
      +  return function(/* ...args */){
      +    return fn.apply(that, arguments);
      +  };
      +};
      +},{"./_a-function":37}],42:[function(require,module,exports){
      +// Thank's IE8 for his funny defineProperty
      +module.exports = !require('./_fails')(function(){
      +  return Object.defineProperty({}, 'a', {get: function(){ return 7; }}).a != 7;
      +});
      +},{"./_fails":45}],43:[function(require,module,exports){
      +var isObject = require('./_is-object')
      +  , document = require('./_global').document
      +  // in old IE typeof document.createElement is 'object'
      +  , is = isObject(document) && isObject(document.createElement);
      +module.exports = function(it){
      +  return is ? document.createElement(it) : {};
      +};
      +},{"./_global":46,"./_is-object":51}],44:[function(require,module,exports){
      +var global    = require('./_global')
      +  , core      = require('./_core')
      +  , ctx       = require('./_ctx')
      +  , hide      = require('./_hide')
      +  , PROTOTYPE = 'prototype';
      +
      +var $export = function(type, name, source){
      +  var IS_FORCED = type & $export.F
      +    , IS_GLOBAL = type & $export.G
      +    , IS_STATIC = type & $export.S
      +    , IS_PROTO  = type & $export.P
      +    , IS_BIND   = type & $export.B
      +    , IS_WRAP   = type & $export.W
      +    , exports   = IS_GLOBAL ? core : core[name] || (core[name] = {})
      +    , expProto  = exports[PROTOTYPE]
      +    , target    = IS_GLOBAL ? global : IS_STATIC ? global[name] : (global[name] || {})[PROTOTYPE]
      +    , key, own, out;
      +  if(IS_GLOBAL)source = name;
      +  for(key in source){
      +    // contains in native
      +    own = !IS_FORCED && target && target[key] !== undefined;
      +    if(own && key in exports)continue;
      +    // export native or passed
      +    out = own ? target[key] : source[key];
      +    // prevent global pollution for namespaces
      +    exports[key] = IS_GLOBAL && typeof target[key] != 'function' ? source[key]
      +    // bind timers to global for call from export context
      +    : IS_BIND && own ? ctx(out, global)
      +    // wrap global constructors for prevent change them in library
      +    : IS_WRAP && target[key] == out ? (function(C){
      +      var F = function(a, b, c){
      +        if(this instanceof C){
      +          switch(arguments.length){
      +            case 0: return new C;
      +            case 1: return new C(a);
      +            case 2: return new C(a, b);
      +          } return new C(a, b, c);
      +        } return C.apply(this, arguments);
      +      };
      +      F[PROTOTYPE] = C[PROTOTYPE];
      +      return F;
      +    // make static versions for prototype methods
      +    })(out) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;
      +    // export proto methods to core.%CONSTRUCTOR%.methods.%NAME%
      +    if(IS_PROTO){
      +      (exports.virtual || (exports.virtual = {}))[key] = out;
      +      // export proto methods to core.%CONSTRUCTOR%.prototype.%NAME%
      +      if(type & $export.R && expProto && !expProto[key])hide(expProto, key, out);
      +    }
      +  }
      +};
      +// type bitmap
      +$export.F = 1;   // forced
      +$export.G = 2;   // global
      +$export.S = 4;   // static
      +$export.P = 8;   // proto
      +$export.B = 16;  // bind
      +$export.W = 32;  // wrap
      +$export.U = 64;  // safe
      +$export.R = 128; // real proto method for `library` 
      +module.exports = $export;
      +},{"./_core":40,"./_ctx":41,"./_global":46,"./_hide":47}],45:[function(require,module,exports){
      +module.exports = function(exec){
      +  try {
      +    return !!exec();
      +  } catch(e){
      +    return true;
      +  }
      +};
      +},{}],46:[function(require,module,exports){
      +// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
      +var global = module.exports = typeof window != 'undefined' && window.Math == Math
      +  ? window : typeof self != 'undefined' && self.Math == Math ? self : Function('return this')();
      +if(typeof __g == 'number')__g = global; // eslint-disable-line no-undef
      +},{}],47:[function(require,module,exports){
      +var dP         = require('./_object-dp')
      +  , createDesc = require('./_property-desc');
      +module.exports = require('./_descriptors') ? function(object, key, value){
      +  return dP.f(object, key, createDesc(1, value));
      +} : function(object, key, value){
      +  object[key] = value;
      +  return object;
      +};
      +},{"./_descriptors":42,"./_object-dp":52,"./_property-desc":53}],48:[function(require,module,exports){
      +module.exports = require('./_global').document && document.documentElement;
      +},{"./_global":46}],49:[function(require,module,exports){
      +module.exports = !require('./_descriptors') && !require('./_fails')(function(){
      +  return Object.defineProperty(require('./_dom-create')('div'), 'a', {get: function(){ return 7; }}).a != 7;
      +});
      +},{"./_descriptors":42,"./_dom-create":43,"./_fails":45}],50:[function(require,module,exports){
      +// fast apply, http://jsperf.lnkit.com/fast-apply/5
      +module.exports = function(fn, args, that){
      +  var un = that === undefined;
      +  switch(args.length){
      +    case 0: return un ? fn()
      +                      : fn.call(that);
      +    case 1: return un ? fn(args[0])
      +                      : fn.call(that, args[0]);
      +    case 2: return un ? fn(args[0], args[1])
      +                      : fn.call(that, args[0], args[1]);
      +    case 3: return un ? fn(args[0], args[1], args[2])
      +                      : fn.call(that, args[0], args[1], args[2]);
      +    case 4: return un ? fn(args[0], args[1], args[2], args[3])
      +                      : fn.call(that, args[0], args[1], args[2], args[3]);
      +  } return              fn.apply(that, args);
      +};
      +},{}],51:[function(require,module,exports){
      +module.exports = function(it){
      +  return typeof it === 'object' ? it !== null : typeof it === 'function';
      +};
      +},{}],52:[function(require,module,exports){
      +var anObject       = require('./_an-object')
      +  , IE8_DOM_DEFINE = require('./_ie8-dom-define')
      +  , toPrimitive    = require('./_to-primitive')
      +  , dP             = Object.defineProperty;
      +
      +exports.f = require('./_descriptors') ? Object.defineProperty : function defineProperty(O, P, Attributes){
      +  anObject(O);
      +  P = toPrimitive(P, true);
      +  anObject(Attributes);
      +  if(IE8_DOM_DEFINE)try {
      +    return dP(O, P, Attributes);
      +  } catch(e){ /* empty */ }
      +  if('get' in Attributes || 'set' in Attributes)throw TypeError('Accessors not supported!');
      +  if('value' in Attributes)O[P] = Attributes.value;
      +  return O;
      +};
      +},{"./_an-object":38,"./_descriptors":42,"./_ie8-dom-define":49,"./_to-primitive":55}],53:[function(require,module,exports){
      +module.exports = function(bitmap, value){
      +  return {
      +    enumerable  : !(bitmap & 1),
      +    configurable: !(bitmap & 2),
      +    writable    : !(bitmap & 4),
      +    value       : value
      +  };
      +};
      +},{}],54:[function(require,module,exports){
      +var ctx                = require('./_ctx')
      +  , invoke             = require('./_invoke')
      +  , html               = require('./_html')
      +  , cel                = require('./_dom-create')
      +  , global             = require('./_global')
      +  , process            = global.process
      +  , setTask            = global.setImmediate
      +  , clearTask          = global.clearImmediate
      +  , MessageChannel     = global.MessageChannel
      +  , counter            = 0
      +  , queue              = {}
      +  , ONREADYSTATECHANGE = 'onreadystatechange'
      +  , defer, channel, port;
      +var run = function(){
      +  var id = +this;
      +  if(queue.hasOwnProperty(id)){
      +    var fn = queue[id];
      +    delete queue[id];
      +    fn();
      +  }
      +};
      +var listener = function(event){
      +  run.call(event.data);
      +};
      +// Node.js 0.9+ & IE10+ has setImmediate, otherwise:
      +if(!setTask || !clearTask){
      +  setTask = function setImmediate(fn){
      +    var args = [], i = 1;
      +    while(arguments.length > i)args.push(arguments[i++]);
      +    queue[++counter] = function(){
      +      invoke(typeof fn == 'function' ? fn : Function(fn), args);
      +    };
      +    defer(counter);
      +    return counter;
      +  };
      +  clearTask = function clearImmediate(id){
      +    delete queue[id];
      +  };
      +  // Node.js 0.8-
      +  if(require('./_cof')(process) == 'process'){
      +    defer = function(id){
      +      process.nextTick(ctx(run, id, 1));
      +    };
      +  // Browsers with MessageChannel, includes WebWorkers
      +  } else if(MessageChannel){
      +    channel = new MessageChannel;
      +    port    = channel.port2;
      +    channel.port1.onmessage = listener;
      +    defer = ctx(port.postMessage, port, 1);
      +  // Browsers with postMessage, skip WebWorkers
      +  // IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
      +  } else if(global.addEventListener && typeof postMessage == 'function' && !global.importScripts){
      +    defer = function(id){
      +      global.postMessage(id + '', '*');
      +    };
      +    global.addEventListener('message', listener, false);
      +  // IE8-
      +  } else if(ONREADYSTATECHANGE in cel('script')){
      +    defer = function(id){
      +      html.appendChild(cel('script'))[ONREADYSTATECHANGE] = function(){
      +        html.removeChild(this);
      +        run.call(id);
      +      };
      +    };
      +  // Rest old browsers
      +  } else {
      +    defer = function(id){
      +      setTimeout(ctx(run, id, 1), 0);
      +    };
      +  }
      +}
      +module.exports = {
      +  set:   setTask,
      +  clear: clearTask
      +};
      +},{"./_cof":39,"./_ctx":41,"./_dom-create":43,"./_global":46,"./_html":48,"./_invoke":50}],55:[function(require,module,exports){
      +// 7.1.1 ToPrimitive(input [, PreferredType])
      +var isObject = require('./_is-object');
      +// instead of the ES6 spec version, we didn't implement @@toPrimitive case
      +// and the second argument - flag - preferred type is a string
      +module.exports = function(it, S){
      +  if(!isObject(it))return it;
      +  var fn, val;
      +  if(S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it)))return val;
      +  if(typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it)))return val;
      +  if(!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it)))return val;
      +  throw TypeError("Can't convert object to primitive value");
      +};
      +},{"./_is-object":51}],56:[function(require,module,exports){
      +var $export = require('./_export')
      +  , $task   = require('./_task');
      +$export($export.G + $export.B, {
      +  setImmediate:   $task.set,
      +  clearImmediate: $task.clear
      +});
      +},{"./_export":44,"./_task":54}],57:[function(require,module,exports){
      +(function (global){
      +'use strict';
      +var Mutation = global.MutationObserver || global.WebKitMutationObserver;
      +
      +var scheduleDrain;
      +
      +{
      +  if (Mutation) {
      +    var called = 0;
      +    var observer = new Mutation(nextTick);
      +    var element = global.document.createTextNode('');
      +    observer.observe(element, {
      +      characterData: true
      +    });
      +    scheduleDrain = function () {
      +      element.data = (called = ++called % 2);
      +    };
      +  } else if (!global.setImmediate && typeof global.MessageChannel !== 'undefined') {
      +    var channel = new global.MessageChannel();
      +    channel.port1.onmessage = nextTick;
      +    scheduleDrain = function () {
      +      channel.port2.postMessage(0);
      +    };
      +  } else if ('document' in global && 'onreadystatechange' in global.document.createElement('script')) {
      +    scheduleDrain = function () {
      +
      +      // Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted
      +      // into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.
      +      var scriptEl = global.document.createElement('script');
      +      scriptEl.onreadystatechange = function () {
      +        nextTick();
      +
      +        scriptEl.onreadystatechange = null;
      +        scriptEl.parentNode.removeChild(scriptEl);
      +        scriptEl = null;
      +      };
      +      global.document.documentElement.appendChild(scriptEl);
      +    };
      +  } else {
      +    scheduleDrain = function () {
      +      setTimeout(nextTick, 0);
      +    };
      +  }
      +}
      +
      +var draining;
      +var queue = [];
      +//named nextTick for less confusing stack traces
      +function nextTick() {
      +  draining = true;
      +  var i, oldQueue;
      +  var len = queue.length;
      +  while (len) {
      +    oldQueue = queue;
      +    queue = [];
      +    i = -1;
      +    while (++i < len) {
      +      oldQueue[i]();
      +    }
      +    len = queue.length;
      +  }
      +  draining = false;
      +}
      +
      +module.exports = immediate;
      +function immediate(task) {
      +  if (queue.push(task) === 1 && !draining) {
      +    scheduleDrain();
      +  }
      +}
      +
      +}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
      +},{}],58:[function(require,module,exports){
      +'use strict';
      +var immediate = require('immediate');
      +
      +/* istanbul ignore next */
      +function INTERNAL() {}
      +
      +var handlers = {};
      +
      +var REJECTED = ['REJECTED'];
      +var FULFILLED = ['FULFILLED'];
      +var PENDING = ['PENDING'];
      +
      +module.exports = Promise;
      +
      +function Promise(resolver) {
      +  if (typeof resolver !== 'function') {
      +    throw new TypeError('resolver must be a function');
      +  }
      +  this.state = PENDING;
      +  this.queue = [];
      +  this.outcome = void 0;
      +  if (resolver !== INTERNAL) {
      +    safelyResolveThenable(this, resolver);
      +  }
      +}
      +
      +Promise.prototype["catch"] = function (onRejected) {
      +  return this.then(null, onRejected);
      +};
      +Promise.prototype.then = function (onFulfilled, onRejected) {
      +  if (typeof onFulfilled !== 'function' && this.state === FULFILLED ||
      +    typeof onRejected !== 'function' && this.state === REJECTED) {
      +    return this;
      +  }
      +  var promise = new this.constructor(INTERNAL);
      +  if (this.state !== PENDING) {
      +    var resolver = this.state === FULFILLED ? onFulfilled : onRejected;
      +    unwrap(promise, resolver, this.outcome);
      +  } else {
      +    this.queue.push(new QueueItem(promise, onFulfilled, onRejected));
      +  }
      +
      +  return promise;
      +};
      +function QueueItem(promise, onFulfilled, onRejected) {
      +  this.promise = promise;
      +  if (typeof onFulfilled === 'function') {
      +    this.onFulfilled = onFulfilled;
      +    this.callFulfilled = this.otherCallFulfilled;
      +  }
      +  if (typeof onRejected === 'function') {
      +    this.onRejected = onRejected;
      +    this.callRejected = this.otherCallRejected;
      +  }
      +}
      +QueueItem.prototype.callFulfilled = function (value) {
      +  handlers.resolve(this.promise, value);
      +};
      +QueueItem.prototype.otherCallFulfilled = function (value) {
      +  unwrap(this.promise, this.onFulfilled, value);
      +};
      +QueueItem.prototype.callRejected = function (value) {
      +  handlers.reject(this.promise, value);
      +};
      +QueueItem.prototype.otherCallRejected = function (value) {
      +  unwrap(this.promise, this.onRejected, value);
      +};
      +
      +function unwrap(promise, func, value) {
      +  immediate(function () {
      +    var returnValue;
      +    try {
      +      returnValue = func(value);
      +    } catch (e) {
      +      return handlers.reject(promise, e);
      +    }
      +    if (returnValue === promise) {
      +      handlers.reject(promise, new TypeError('Cannot resolve promise with itself'));
      +    } else {
      +      handlers.resolve(promise, returnValue);
      +    }
      +  });
      +}
      +
      +handlers.resolve = function (self, value) {
      +  var result = tryCatch(getThen, value);
      +  if (result.status === 'error') {
      +    return handlers.reject(self, result.value);
      +  }
      +  var thenable = result.value;
      +
      +  if (thenable) {
      +    safelyResolveThenable(self, thenable);
      +  } else {
      +    self.state = FULFILLED;
      +    self.outcome = value;
      +    var i = -1;
      +    var len = self.queue.length;
      +    while (++i < len) {
      +      self.queue[i].callFulfilled(value);
      +    }
      +  }
      +  return self;
      +};
      +handlers.reject = function (self, error) {
      +  self.state = REJECTED;
      +  self.outcome = error;
      +  var i = -1;
      +  var len = self.queue.length;
      +  while (++i < len) {
      +    self.queue[i].callRejected(error);
      +  }
      +  return self;
      +};
      +
      +function getThen(obj) {
      +  // Make sure we only access the accessor once as required by the spec
      +  var then = obj && obj.then;
      +  if (obj && (typeof obj === 'object' || typeof obj === 'function') && typeof then === 'function') {
      +    return function appyThen() {
      +      then.apply(obj, arguments);
      +    };
      +  }
      +}
      +
      +function safelyResolveThenable(self, thenable) {
      +  // Either fulfill, reject or reject with error
      +  var called = false;
      +  function onError(value) {
      +    if (called) {
      +      return;
      +    }
      +    called = true;
      +    handlers.reject(self, value);
      +  }
      +
      +  function onSuccess(value) {
      +    if (called) {
      +      return;
      +    }
      +    called = true;
      +    handlers.resolve(self, value);
      +  }
      +
      +  function tryToUnwrap() {
      +    thenable(onSuccess, onError);
      +  }
      +
      +  var result = tryCatch(tryToUnwrap);
      +  if (result.status === 'error') {
      +    onError(result.value);
      +  }
      +}
      +
      +function tryCatch(func, value) {
      +  var out = {};
      +  try {
      +    out.value = func(value);
      +    out.status = 'success';
      +  } catch (e) {
      +    out.status = 'error';
      +    out.value = e;
      +  }
      +  return out;
      +}
      +
      +Promise.resolve = resolve;
      +function resolve(value) {
      +  if (value instanceof this) {
      +    return value;
      +  }
      +  return handlers.resolve(new this(INTERNAL), value);
      +}
      +
      +Promise.reject = reject;
      +function reject(reason) {
      +  var promise = new this(INTERNAL);
      +  return handlers.reject(promise, reason);
      +}
      +
      +Promise.all = all;
      +function all(iterable) {
      +  var self = this;
      +  if (Object.prototype.toString.call(iterable) !== '[object Array]') {
      +    return this.reject(new TypeError('must be an array'));
      +  }
      +
      +  var len = iterable.length;
      +  var called = false;
      +  if (!len) {
      +    return this.resolve([]);
      +  }
      +
      +  var values = new Array(len);
      +  var resolved = 0;
      +  var i = -1;
      +  var promise = new this(INTERNAL);
      +
      +  while (++i < len) {
      +    allResolver(iterable[i], i);
      +  }
      +  return promise;
      +  function allResolver(value, i) {
      +    self.resolve(value).then(resolveFromAll, function (error) {
      +      if (!called) {
      +        called = true;
      +        handlers.reject(promise, error);
      +      }
      +    });
      +    function resolveFromAll(outValue) {
      +      values[i] = outValue;
      +      if (++resolved === len && !called) {
      +        called = true;
      +        handlers.resolve(promise, values);
      +      }
      +    }
      +  }
      +}
      +
      +Promise.race = race;
      +function race(iterable) {
      +  var self = this;
      +  if (Object.prototype.toString.call(iterable) !== '[object Array]') {
      +    return this.reject(new TypeError('must be an array'));
      +  }
      +
      +  var len = iterable.length;
      +  var called = false;
      +  if (!len) {
      +    return this.resolve([]);
      +  }
      +
      +  var i = -1;
      +  var promise = new this(INTERNAL);
      +
      +  while (++i < len) {
      +    resolver(iterable[i]);
      +  }
      +  return promise;
      +  function resolver(value) {
      +    self.resolve(value).then(function (response) {
      +      if (!called) {
      +        called = true;
      +        handlers.resolve(promise, response);
      +      }
      +    }, function (error) {
      +      if (!called) {
      +        called = true;
      +        handlers.reject(promise, error);
      +      }
      +    });
      +  }
      +}
      +
      +},{"immediate":57}],59:[function(require,module,exports){
      +// Top level file is just a mixin of submodules & constants
      +'use strict';
      +
      +var assign    = require('./lib/utils/common').assign;
      +
      +var deflate   = require('./lib/deflate');
      +var inflate   = require('./lib/inflate');
      +var constants = require('./lib/zlib/constants');
      +
      +var pako = {};
      +
      +assign(pako, deflate, inflate, constants);
      +
      +module.exports = pako;
      +
      +},{"./lib/deflate":60,"./lib/inflate":61,"./lib/utils/common":62,"./lib/zlib/constants":65}],60:[function(require,module,exports){
      +'use strict';
      +
      +
      +var zlib_deflate = require('./zlib/deflate');
      +var utils        = require('./utils/common');
      +var strings      = require('./utils/strings');
      +var msg          = require('./zlib/messages');
      +var ZStream      = require('./zlib/zstream');
      +
      +var toString = Object.prototype.toString;
      +
      +/* Public constants ==========================================================*/
      +/* ===========================================================================*/
      +
      +var Z_NO_FLUSH      = 0;
      +var Z_FINISH        = 4;
      +
      +var Z_OK            = 0;
      +var Z_STREAM_END    = 1;
      +var Z_SYNC_FLUSH    = 2;
      +
      +var Z_DEFAULT_COMPRESSION = -1;
      +
      +var Z_DEFAULT_STRATEGY    = 0;
      +
      +var Z_DEFLATED  = 8;
      +
      +/* ===========================================================================*/
      +
      +
      +/**
      + * class Deflate
      + *
      + * Generic JS-style wrapper for zlib calls. If you don't need
      + * streaming behaviour - use more simple functions: [[deflate]],
      + * [[deflateRaw]] and [[gzip]].
      + **/
      +
      +/* internal
      + * Deflate.chunks -> Array
      + *
      + * Chunks of output data, if [[Deflate#onData]] not overriden.
      + **/
      +
      +/**
      + * Deflate.result -> Uint8Array|Array
      + *
      + * Compressed result, generated by default [[Deflate#onData]]
      + * and [[Deflate#onEnd]] handlers. Filled after you push last chunk
      + * (call [[Deflate#push]] with `Z_FINISH` / `true` param)  or if you
      + * push a chunk with explicit flush (call [[Deflate#push]] with
      + * `Z_SYNC_FLUSH` param).
      + **/
      +
      +/**
      + * Deflate.err -> Number
      + *
      + * Error code after deflate finished. 0 (Z_OK) on success.
      + * You will not need it in real life, because deflate errors
      + * are possible only on wrong options or bad `onData` / `onEnd`
      + * custom handlers.
      + **/
      +
      +/**
      + * Deflate.msg -> String
      + *
      + * Error message, if [[Deflate.err]] != 0
      + **/
      +
      +
      +/**
      + * new Deflate(options)
      + * - options (Object): zlib deflate options.
      + *
      + * Creates new deflator instance with specified params. Throws exception
      + * on bad params. Supported options:
      + *
      + * - `level`
      + * - `windowBits`
      + * - `memLevel`
      + * - `strategy`
      + * - `dictionary`
      + *
      + * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)
      + * for more information on these.
      + *
      + * Additional options, for internal needs:
      + *
      + * - `chunkSize` - size of generated data chunks (16K by default)
      + * - `raw` (Boolean) - do raw deflate
      + * - `gzip` (Boolean) - create gzip wrapper
      + * - `to` (String) - if equal to 'string', then result will be "binary string"
      + *    (each char code [0..255])
      + * - `header` (Object) - custom header for gzip
      + *   - `text` (Boolean) - true if compressed data believed to be text
      + *   - `time` (Number) - modification time, unix timestamp
      + *   - `os` (Number) - operation system code
      + *   - `extra` (Array) - array of bytes with extra data (max 65536)
      + *   - `name` (String) - file name (binary string)
      + *   - `comment` (String) - comment (binary string)
      + *   - `hcrc` (Boolean) - true if header crc should be added
      + *
      + * ##### Example:
      + *
      + * ```javascript
      + * var pako = require('pako')
      + *   , chunk1 = Uint8Array([1,2,3,4,5,6,7,8,9])
      + *   , chunk2 = Uint8Array([10,11,12,13,14,15,16,17,18,19]);
      + *
      + * var deflate = new pako.Deflate({ level: 3});
      + *
      + * deflate.push(chunk1, false);
      + * deflate.push(chunk2, true);  // true -> last chunk
      + *
      + * if (deflate.err) { throw new Error(deflate.err); }
      + *
      + * console.log(deflate.result);
      + * ```
      + **/
      +function Deflate(options) {
      +  if (!(this instanceof Deflate)) return new Deflate(options);
      +
      +  this.options = utils.assign({
      +    level: Z_DEFAULT_COMPRESSION,
      +    method: Z_DEFLATED,
      +    chunkSize: 16384,
      +    windowBits: 15,
      +    memLevel: 8,
      +    strategy: Z_DEFAULT_STRATEGY,
      +    to: ''
      +  }, options || {});
      +
      +  var opt = this.options;
      +
      +  if (opt.raw && (opt.windowBits > 0)) {
      +    opt.windowBits = -opt.windowBits;
      +  }
      +
      +  else if (opt.gzip && (opt.windowBits > 0) && (opt.windowBits < 16)) {
      +    opt.windowBits += 16;
      +  }
      +
      +  this.err    = 0;      // error code, if happens (0 = Z_OK)
      +  this.msg    = '';     // error message
      +  this.ended  = false;  // used to avoid multiple onEnd() calls
      +  this.chunks = [];     // chunks of compressed data
      +
      +  this.strm = new ZStream();
      +  this.strm.avail_out = 0;
      +
      +  var status = zlib_deflate.deflateInit2(
      +    this.strm,
      +    opt.level,
      +    opt.method,
      +    opt.windowBits,
      +    opt.memLevel,
      +    opt.strategy
      +  );
      +
      +  if (status !== Z_OK) {
      +    throw new Error(msg[status]);
      +  }
      +
      +  if (opt.header) {
      +    zlib_deflate.deflateSetHeader(this.strm, opt.header);
      +  }
      +
      +  if (opt.dictionary) {
      +    var dict;
      +    // Convert data if needed
      +    if (typeof opt.dictionary === 'string') {
      +      // If we need to compress text, change encoding to utf8.
      +      dict = strings.string2buf(opt.dictionary);
      +    } else if (toString.call(opt.dictionary) === '[object ArrayBuffer]') {
      +      dict = new Uint8Array(opt.dictionary);
      +    } else {
      +      dict = opt.dictionary;
      +    }
      +
      +    status = zlib_deflate.deflateSetDictionary(this.strm, dict);
      +
      +    if (status !== Z_OK) {
      +      throw new Error(msg[status]);
      +    }
      +
      +    this._dict_set = true;
      +  }
      +}
      +
      +/**
      + * Deflate#push(data[, mode]) -> Boolean
      + * - data (Uint8Array|Array|ArrayBuffer|String): input data. Strings will be
      + *   converted to utf8 byte sequence.
      + * - mode (Number|Boolean): 0..6 for corresponding Z_NO_FLUSH..Z_TREE modes.
      + *   See constants. Skipped or `false` means Z_NO_FLUSH, `true` meansh Z_FINISH.
      + *
      + * Sends input data to deflate pipe, generating [[Deflate#onData]] calls with
      + * new compressed chunks. Returns `true` on success. The last data block must have
      + * mode Z_FINISH (or `true`). That will flush internal pending buffers and call
      + * [[Deflate#onEnd]]. For interim explicit flushes (without ending the stream) you
      + * can use mode Z_SYNC_FLUSH, keeping the compression context.
      + *
      + * On fail call [[Deflate#onEnd]] with error code and return false.
      + *
      + * We strongly recommend to use `Uint8Array` on input for best speed (output
      + * array format is detected automatically). Also, don't skip last param and always
      + * use the same type in your code (boolean or number). That will improve JS speed.
      + *
      + * For regular `Array`-s make sure all elements are [0..255].
      + *
      + * ##### Example
      + *
      + * ```javascript
      + * push(chunk, false); // push one of data chunks
      + * ...
      + * push(chunk, true);  // push last chunk
      + * ```
      + **/
      +Deflate.prototype.push = function (data, mode) {
      +  var strm = this.strm;
      +  var chunkSize = this.options.chunkSize;
      +  var status, _mode;
      +
      +  if (this.ended) { return false; }
      +
      +  _mode = (mode === ~~mode) ? mode : ((mode === true) ? Z_FINISH : Z_NO_FLUSH);
      +
      +  // Convert data if needed
      +  if (typeof data === 'string') {
      +    // If we need to compress text, change encoding to utf8.
      +    strm.input = strings.string2buf(data);
      +  } else if (toString.call(data) === '[object ArrayBuffer]') {
      +    strm.input = new Uint8Array(data);
      +  } else {
      +    strm.input = data;
      +  }
      +
      +  strm.next_in = 0;
      +  strm.avail_in = strm.input.length;
      +
      +  do {
      +    if (strm.avail_out === 0) {
      +      strm.output = new utils.Buf8(chunkSize);
      +      strm.next_out = 0;
      +      strm.avail_out = chunkSize;
      +    }
      +    status = zlib_deflate.deflate(strm, _mode);    /* no bad return value */
      +
      +    if (status !== Z_STREAM_END && status !== Z_OK) {
      +      this.onEnd(status);
      +      this.ended = true;
      +      return false;
      +    }
      +    if (strm.avail_out === 0 || (strm.avail_in === 0 && (_mode === Z_FINISH || _mode === Z_SYNC_FLUSH))) {
      +      if (this.options.to === 'string') {
      +        this.onData(strings.buf2binstring(utils.shrinkBuf(strm.output, strm.next_out)));
      +      } else {
      +        this.onData(utils.shrinkBuf(strm.output, strm.next_out));
      +      }
      +    }
      +  } while ((strm.avail_in > 0 || strm.avail_out === 0) && status !== Z_STREAM_END);
      +
      +  // Finalize on the last chunk.
      +  if (_mode === Z_FINISH) {
      +    status = zlib_deflate.deflateEnd(this.strm);
      +    this.onEnd(status);
      +    this.ended = true;
      +    return status === Z_OK;
      +  }
      +
      +  // callback interim results if Z_SYNC_FLUSH.
      +  if (_mode === Z_SYNC_FLUSH) {
      +    this.onEnd(Z_OK);
      +    strm.avail_out = 0;
      +    return true;
      +  }
      +
      +  return true;
      +};
      +
      +
      +/**
      + * Deflate#onData(chunk) -> Void
      + * - chunk (Uint8Array|Array|String): ouput data. Type of array depends
      + *   on js engine support. When string output requested, each chunk
      + *   will be string.
      + *
      + * By default, stores data blocks in `chunks[]` property and glue
      + * those in `onEnd`. Override this handler, if you need another behaviour.
      + **/
      +Deflate.prototype.onData = function (chunk) {
      +  this.chunks.push(chunk);
      +};
      +
      +
      +/**
      + * Deflate#onEnd(status) -> Void
      + * - status (Number): deflate status. 0 (Z_OK) on success,
      + *   other if not.
      + *
      + * Called once after you tell deflate that the input stream is
      + * complete (Z_FINISH) or should be flushed (Z_SYNC_FLUSH)
      + * or if an error happened. By default - join collected chunks,
      + * free memory and fill `results` / `err` properties.
      + **/
      +Deflate.prototype.onEnd = function (status) {
      +  // On success - join
      +  if (status === Z_OK) {
      +    if (this.options.to === 'string') {
      +      this.result = this.chunks.join('');
      +    } else {
      +      this.result = utils.flattenChunks(this.chunks);
      +    }
      +  }
      +  this.chunks = [];
      +  this.err = status;
      +  this.msg = this.strm.msg;
      +};
      +
      +
      +/**
      + * deflate(data[, options]) -> Uint8Array|Array|String
      + * - data (Uint8Array|Array|String): input data to compress.
      + * - options (Object): zlib deflate options.
      + *
      + * Compress `data` with deflate algorithm and `options`.
      + *
      + * Supported options are:
      + *
      + * - level
      + * - windowBits
      + * - memLevel
      + * - strategy
      + * - dictionary
      + *
      + * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)
      + * for more information on these.
      + *
      + * Sugar (options):
      + *
      + * - `raw` (Boolean) - say that we work with raw stream, if you don't wish to specify
      + *   negative windowBits implicitly.
      + * - `to` (String) - if equal to 'string', then result will be "binary string"
      + *    (each char code [0..255])
      + *
      + * ##### Example:
      + *
      + * ```javascript
      + * var pako = require('pako')
      + *   , data = Uint8Array([1,2,3,4,5,6,7,8,9]);
      + *
      + * console.log(pako.deflate(data));
      + * ```
      + **/
      +function deflate(input, options) {
      +  var deflator = new Deflate(options);
      +
      +  deflator.push(input, true);
      +
      +  // That will never happens, if you don't cheat with options :)
      +  if (deflator.err) { throw deflator.msg || msg[deflator.err]; }
      +
      +  return deflator.result;
      +}
      +
      +
      +/**
      + * deflateRaw(data[, options]) -> Uint8Array|Array|String
      + * - data (Uint8Array|Array|String): input data to compress.
      + * - options (Object): zlib deflate options.
      + *
      + * The same as [[deflate]], but creates raw data, without wrapper
      + * (header and adler32 crc).
      + **/
      +function deflateRaw(input, options) {
      +  options = options || {};
      +  options.raw = true;
      +  return deflate(input, options);
      +}
      +
      +
      +/**
      + * gzip(data[, options]) -> Uint8Array|Array|String
      + * - data (Uint8Array|Array|String): input data to compress.
      + * - options (Object): zlib deflate options.
      + *
      + * The same as [[deflate]], but create gzip wrapper instead of
      + * deflate one.
      + **/
      +function gzip(input, options) {
      +  options = options || {};
      +  options.gzip = true;
      +  return deflate(input, options);
      +}
      +
      +
      +exports.Deflate = Deflate;
      +exports.deflate = deflate;
      +exports.deflateRaw = deflateRaw;
      +exports.gzip = gzip;
      +
      +},{"./utils/common":62,"./utils/strings":63,"./zlib/deflate":67,"./zlib/messages":72,"./zlib/zstream":74}],61:[function(require,module,exports){
      +'use strict';
      +
      +
      +var zlib_inflate = require('./zlib/inflate');
      +var utils        = require('./utils/common');
      +var strings      = require('./utils/strings');
      +var c            = require('./zlib/constants');
      +var msg          = require('./zlib/messages');
      +var ZStream      = require('./zlib/zstream');
      +var GZheader     = require('./zlib/gzheader');
      +
      +var toString = Object.prototype.toString;
      +
      +/**
      + * class Inflate
      + *
      + * Generic JS-style wrapper for zlib calls. If you don't need
      + * streaming behaviour - use more simple functions: [[inflate]]
      + * and [[inflateRaw]].
      + **/
      +
      +/* internal
      + * inflate.chunks -> Array
      + *
      + * Chunks of output data, if [[Inflate#onData]] not overriden.
      + **/
      +
      +/**
      + * Inflate.result -> Uint8Array|Array|String
      + *
      + * Uncompressed result, generated by default [[Inflate#onData]]
      + * and [[Inflate#onEnd]] handlers. Filled after you push last chunk
      + * (call [[Inflate#push]] with `Z_FINISH` / `true` param) or if you
      + * push a chunk with explicit flush (call [[Inflate#push]] with
      + * `Z_SYNC_FLUSH` param).
      + **/
      +
      +/**
      + * Inflate.err -> Number
      + *
      + * Error code after inflate finished. 0 (Z_OK) on success.
      + * Should be checked if broken data possible.
      + **/
      +
      +/**
      + * Inflate.msg -> String
      + *
      + * Error message, if [[Inflate.err]] != 0
      + **/
      +
      +
      +/**
      + * new Inflate(options)
      + * - options (Object): zlib inflate options.
      + *
      + * Creates new inflator instance with specified params. Throws exception
      + * on bad params. Supported options:
      + *
      + * - `windowBits`
      + * - `dictionary`
      + *
      + * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)
      + * for more information on these.
      + *
      + * Additional options, for internal needs:
      + *
      + * - `chunkSize` - size of generated data chunks (16K by default)
      + * - `raw` (Boolean) - do raw inflate
      + * - `to` (String) - if equal to 'string', then result will be converted
      + *   from utf8 to utf16 (javascript) string. When string output requested,
      + *   chunk length can differ from `chunkSize`, depending on content.
      + *
      + * By default, when no options set, autodetect deflate/gzip data format via
      + * wrapper header.
      + *
      + * ##### Example:
      + *
      + * ```javascript
      + * var pako = require('pako')
      + *   , chunk1 = Uint8Array([1,2,3,4,5,6,7,8,9])
      + *   , chunk2 = Uint8Array([10,11,12,13,14,15,16,17,18,19]);
      + *
      + * var inflate = new pako.Inflate({ level: 3});
      + *
      + * inflate.push(chunk1, false);
      + * inflate.push(chunk2, true);  // true -> last chunk
      + *
      + * if (inflate.err) { throw new Error(inflate.err); }
      + *
      + * console.log(inflate.result);
      + * ```
      + **/
      +function Inflate(options) {
      +  if (!(this instanceof Inflate)) return new Inflate(options);
      +
      +  this.options = utils.assign({
      +    chunkSize: 16384,
      +    windowBits: 0,
      +    to: ''
      +  }, options || {});
      +
      +  var opt = this.options;
      +
      +  // Force window size for `raw` data, if not set directly,
      +  // because we have no header for autodetect.
      +  if (opt.raw && (opt.windowBits >= 0) && (opt.windowBits < 16)) {
      +    opt.windowBits = -opt.windowBits;
      +    if (opt.windowBits === 0) { opt.windowBits = -15; }
      +  }
      +
      +  // If `windowBits` not defined (and mode not raw) - set autodetect flag for gzip/deflate
      +  if ((opt.windowBits >= 0) && (opt.windowBits < 16) &&
      +      !(options && options.windowBits)) {
      +    opt.windowBits += 32;
      +  }
      +
      +  // Gzip header has no info about windows size, we can do autodetect only
      +  // for deflate. So, if window size not set, force it to max when gzip possible
      +  if ((opt.windowBits > 15) && (opt.windowBits < 48)) {
      +    // bit 3 (16) -> gzipped data
      +    // bit 4 (32) -> autodetect gzip/deflate
      +    if ((opt.windowBits & 15) === 0) {
      +      opt.windowBits |= 15;
      +    }
      +  }
      +
      +  this.err    = 0;      // error code, if happens (0 = Z_OK)
      +  this.msg    = '';     // error message
      +  this.ended  = false;  // used to avoid multiple onEnd() calls
      +  this.chunks = [];     // chunks of compressed data
      +
      +  this.strm   = new ZStream();
      +  this.strm.avail_out = 0;
      +
      +  var status  = zlib_inflate.inflateInit2(
      +    this.strm,
      +    opt.windowBits
      +  );
      +
      +  if (status !== c.Z_OK) {
      +    throw new Error(msg[status]);
      +  }
      +
      +  this.header = new GZheader();
      +
      +  zlib_inflate.inflateGetHeader(this.strm, this.header);
      +}
      +
      +/**
      + * Inflate#push(data[, mode]) -> Boolean
      + * - data (Uint8Array|Array|ArrayBuffer|String): input data
      + * - mode (Number|Boolean): 0..6 for corresponding Z_NO_FLUSH..Z_TREE modes.
      + *   See constants. Skipped or `false` means Z_NO_FLUSH, `true` meansh Z_FINISH.
      + *
      + * Sends input data to inflate pipe, generating [[Inflate#onData]] calls with
      + * new output chunks. Returns `true` on success. The last data block must have
      + * mode Z_FINISH (or `true`). That will flush internal pending buffers and call
      + * [[Inflate#onEnd]]. For interim explicit flushes (without ending the stream) you
      + * can use mode Z_SYNC_FLUSH, keeping the decompression context.
      + *
      + * On fail call [[Inflate#onEnd]] with error code and return false.
      + *
      + * We strongly recommend to use `Uint8Array` on input for best speed (output
      + * format is detected automatically). Also, don't skip last param and always
      + * use the same type in your code (boolean or number). That will improve JS speed.
      + *
      + * For regular `Array`-s make sure all elements are [0..255].
      + *
      + * ##### Example
      + *
      + * ```javascript
      + * push(chunk, false); // push one of data chunks
      + * ...
      + * push(chunk, true);  // push last chunk
      + * ```
      + **/
      +Inflate.prototype.push = function (data, mode) {
      +  var strm = this.strm;
      +  var chunkSize = this.options.chunkSize;
      +  var dictionary = this.options.dictionary;
      +  var status, _mode;
      +  var next_out_utf8, tail, utf8str;
      +  var dict;
      +
      +  // Flag to properly process Z_BUF_ERROR on testing inflate call
      +  // when we check that all output data was flushed.
      +  var allowBufError = false;
      +
      +  if (this.ended) { return false; }
      +  _mode = (mode === ~~mode) ? mode : ((mode === true) ? c.Z_FINISH : c.Z_NO_FLUSH);
      +
      +  // Convert data if needed
      +  if (typeof data === 'string') {
      +    // Only binary strings can be decompressed on practice
      +    strm.input = strings.binstring2buf(data);
      +  } else if (toString.call(data) === '[object ArrayBuffer]') {
      +    strm.input = new Uint8Array(data);
      +  } else {
      +    strm.input = data;
      +  }
      +
      +  strm.next_in = 0;
      +  strm.avail_in = strm.input.length;
      +
      +  do {
      +    if (strm.avail_out === 0) {
      +      strm.output = new utils.Buf8(chunkSize);
      +      strm.next_out = 0;
      +      strm.avail_out = chunkSize;
      +    }
      +
      +    status = zlib_inflate.inflate(strm, c.Z_NO_FLUSH);    /* no bad return value */
      +
      +    if (status === c.Z_NEED_DICT && dictionary) {
      +      // Convert data if needed
      +      if (typeof dictionary === 'string') {
      +        dict = strings.string2buf(dictionary);
      +      } else if (toString.call(dictionary) === '[object ArrayBuffer]') {
      +        dict = new Uint8Array(dictionary);
      +      } else {
      +        dict = dictionary;
      +      }
      +
      +      status = zlib_inflate.inflateSetDictionary(this.strm, dict);
      +
      +    }
      +
      +    if (status === c.Z_BUF_ERROR && allowBufError === true) {
      +      status = c.Z_OK;
      +      allowBufError = false;
      +    }
      +
      +    if (status !== c.Z_STREAM_END && status !== c.Z_OK) {
      +      this.onEnd(status);
      +      this.ended = true;
      +      return false;
      +    }
      +
      +    if (strm.next_out) {
      +      if (strm.avail_out === 0 || status === c.Z_STREAM_END || (strm.avail_in === 0 && (_mode === c.Z_FINISH || _mode === c.Z_SYNC_FLUSH))) {
      +
      +        if (this.options.to === 'string') {
      +
      +          next_out_utf8 = strings.utf8border(strm.output, strm.next_out);
      +
      +          tail = strm.next_out - next_out_utf8;
      +          utf8str = strings.buf2string(strm.output, next_out_utf8);
      +
      +          // move tail
      +          strm.next_out = tail;
      +          strm.avail_out = chunkSize - tail;
      +          if (tail) { utils.arraySet(strm.output, strm.output, next_out_utf8, tail, 0); }
      +
      +          this.onData(utf8str);
      +
      +        } else {
      +          this.onData(utils.shrinkBuf(strm.output, strm.next_out));
      +        }
      +      }
      +    }
      +
      +    // When no more input data, we should check that internal inflate buffers
      +    // are flushed. The only way to do it when avail_out = 0 - run one more
      +    // inflate pass. But if output data not exists, inflate return Z_BUF_ERROR.
      +    // Here we set flag to process this error properly.
      +    //
      +    // NOTE. Deflate does not return error in this case and does not needs such
      +    // logic.
      +    if (strm.avail_in === 0 && strm.avail_out === 0) {
      +      allowBufError = true;
      +    }
      +
      +  } while ((strm.avail_in > 0 || strm.avail_out === 0) && status !== c.Z_STREAM_END);
      +
      +  if (status === c.Z_STREAM_END) {
      +    _mode = c.Z_FINISH;
      +  }
      +
      +  // Finalize on the last chunk.
      +  if (_mode === c.Z_FINISH) {
      +    status = zlib_inflate.inflateEnd(this.strm);
      +    this.onEnd(status);
      +    this.ended = true;
      +    return status === c.Z_OK;
      +  }
      +
      +  // callback interim results if Z_SYNC_FLUSH.
      +  if (_mode === c.Z_SYNC_FLUSH) {
      +    this.onEnd(c.Z_OK);
      +    strm.avail_out = 0;
      +    return true;
      +  }
      +
      +  return true;
      +};
      +
      +
      +/**
      + * Inflate#onData(chunk) -> Void
      + * - chunk (Uint8Array|Array|String): ouput data. Type of array depends
      + *   on js engine support. When string output requested, each chunk
      + *   will be string.
      + *
      + * By default, stores data blocks in `chunks[]` property and glue
      + * those in `onEnd`. Override this handler, if you need another behaviour.
      + **/
      +Inflate.prototype.onData = function (chunk) {
      +  this.chunks.push(chunk);
      +};
      +
      +
      +/**
      + * Inflate#onEnd(status) -> Void
      + * - status (Number): inflate status. 0 (Z_OK) on success,
      + *   other if not.
      + *
      + * Called either after you tell inflate that the input stream is
      + * complete (Z_FINISH) or should be flushed (Z_SYNC_FLUSH)
      + * or if an error happened. By default - join collected chunks,
      + * free memory and fill `results` / `err` properties.
      + **/
      +Inflate.prototype.onEnd = function (status) {
      +  // On success - join
      +  if (status === c.Z_OK) {
      +    if (this.options.to === 'string') {
      +      // Glue & convert here, until we teach pako to send
      +      // utf8 alligned strings to onData
      +      this.result = this.chunks.join('');
      +    } else {
      +      this.result = utils.flattenChunks(this.chunks);
      +    }
      +  }
      +  this.chunks = [];
      +  this.err = status;
      +  this.msg = this.strm.msg;
      +};
      +
      +
      +/**
      + * inflate(data[, options]) -> Uint8Array|Array|String
      + * - data (Uint8Array|Array|String): input data to decompress.
      + * - options (Object): zlib inflate options.
      + *
      + * Decompress `data` with inflate/ungzip and `options`. Autodetect
      + * format via wrapper header by default. That's why we don't provide
      + * separate `ungzip` method.
      + *
      + * Supported options are:
      + *
      + * - windowBits
      + *
      + * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)
      + * for more information.
      + *
      + * Sugar (options):
      + *
      + * - `raw` (Boolean) - say that we work with raw stream, if you don't wish to specify
      + *   negative windowBits implicitly.
      + * - `to` (String) - if equal to 'string', then result will be converted
      + *   from utf8 to utf16 (javascript) string. When string output requested,
      + *   chunk length can differ from `chunkSize`, depending on content.
      + *
      + *
      + * ##### Example:
      + *
      + * ```javascript
      + * var pako = require('pako')
      + *   , input = pako.deflate([1,2,3,4,5,6,7,8,9])
      + *   , output;
      + *
      + * try {
      + *   output = pako.inflate(input);
      + * } catch (err)
      + *   console.log(err);
      + * }
      + * ```
      + **/
      +function inflate(input, options) {
      +  var inflator = new Inflate(options);
      +
      +  inflator.push(input, true);
      +
      +  // That will never happens, if you don't cheat with options :)
      +  if (inflator.err) { throw inflator.msg || msg[inflator.err]; }
      +
      +  return inflator.result;
      +}
      +
      +
      +/**
      + * inflateRaw(data[, options]) -> Uint8Array|Array|String
      + * - data (Uint8Array|Array|String): input data to decompress.
      + * - options (Object): zlib inflate options.
      + *
      + * The same as [[inflate]], but creates raw data, without wrapper
      + * (header and adler32 crc).
      + **/
      +function inflateRaw(input, options) {
      +  options = options || {};
      +  options.raw = true;
      +  return inflate(input, options);
      +}
      +
      +
      +/**
      + * ungzip(data[, options]) -> Uint8Array|Array|String
      + * - data (Uint8Array|Array|String): input data to decompress.
      + * - options (Object): zlib inflate options.
      + *
      + * Just shortcut to [[inflate]], because it autodetects format
      + * by header.content. Done for convenience.
      + **/
      +
      +
      +exports.Inflate = Inflate;
      +exports.inflate = inflate;
      +exports.inflateRaw = inflateRaw;
      +exports.ungzip  = inflate;
      +
      +},{"./utils/common":62,"./utils/strings":63,"./zlib/constants":65,"./zlib/gzheader":68,"./zlib/inflate":70,"./zlib/messages":72,"./zlib/zstream":74}],62:[function(require,module,exports){
      +'use strict';
      +
      +
      +var TYPED_OK =  (typeof Uint8Array !== 'undefined') &&
      +                (typeof Uint16Array !== 'undefined') &&
      +                (typeof Int32Array !== 'undefined');
      +
      +
      +exports.assign = function (obj /*from1, from2, from3, ...*/) {
      +  var sources = Array.prototype.slice.call(arguments, 1);
      +  while (sources.length) {
      +    var source = sources.shift();
      +    if (!source) { continue; }
      +
      +    if (typeof source !== 'object') {
      +      throw new TypeError(source + 'must be non-object');
      +    }
      +
      +    for (var p in source) {
      +      if (source.hasOwnProperty(p)) {
      +        obj[p] = source[p];
      +      }
      +    }
      +  }
      +
      +  return obj;
      +};
      +
      +
      +// reduce buffer size, avoiding mem copy
      +exports.shrinkBuf = function (buf, size) {
      +  if (buf.length === size) { return buf; }
      +  if (buf.subarray) { return buf.subarray(0, size); }
      +  buf.length = size;
      +  return buf;
      +};
      +
      +
      +var fnTyped = {
      +  arraySet: function (dest, src, src_offs, len, dest_offs) {
      +    if (src.subarray && dest.subarray) {
      +      dest.set(src.subarray(src_offs, src_offs + len), dest_offs);
      +      return;
      +    }
      +    // Fallback to ordinary array
      +    for (var i = 0; i < len; i++) {
      +      dest[dest_offs + i] = src[src_offs + i];
      +    }
      +  },
      +  // Join array of chunks to single array.
      +  flattenChunks: function (chunks) {
      +    var i, l, len, pos, chunk, result;
      +
      +    // calculate data length
      +    len = 0;
      +    for (i = 0, l = chunks.length; i < l; i++) {
      +      len += chunks[i].length;
      +    }
      +
      +    // join chunks
      +    result = new Uint8Array(len);
      +    pos = 0;
      +    for (i = 0, l = chunks.length; i < l; i++) {
      +      chunk = chunks[i];
      +      result.set(chunk, pos);
      +      pos += chunk.length;
      +    }
      +
      +    return result;
      +  }
      +};
      +
      +var fnUntyped = {
      +  arraySet: function (dest, src, src_offs, len, dest_offs) {
      +    for (var i = 0; i < len; i++) {
      +      dest[dest_offs + i] = src[src_offs + i];
      +    }
      +  },
      +  // Join array of chunks to single array.
      +  flattenChunks: function (chunks) {
      +    return [].concat.apply([], chunks);
      +  }
      +};
      +
      +
      +// Enable/Disable typed arrays use, for testing
      +//
      +exports.setTyped = function (on) {
      +  if (on) {
      +    exports.Buf8  = Uint8Array;
      +    exports.Buf16 = Uint16Array;
      +    exports.Buf32 = Int32Array;
      +    exports.assign(exports, fnTyped);
      +  } else {
      +    exports.Buf8  = Array;
      +    exports.Buf16 = Array;
      +    exports.Buf32 = Array;
      +    exports.assign(exports, fnUntyped);
      +  }
      +};
      +
      +exports.setTyped(TYPED_OK);
      +
      +},{}],63:[function(require,module,exports){
      +// String encode/decode helpers
      +'use strict';
      +
      +
      +var utils = require('./common');
      +
      +
      +// Quick check if we can use fast array to bin string conversion
      +//
      +// - apply(Array) can fail on Android 2.2
      +// - apply(Uint8Array) can fail on iOS 5.1 Safary
      +//
      +var STR_APPLY_OK = true;
      +var STR_APPLY_UIA_OK = true;
      +
      +try { String.fromCharCode.apply(null, [ 0 ]); } catch (__) { STR_APPLY_OK = false; }
      +try { String.fromCharCode.apply(null, new Uint8Array(1)); } catch (__) { STR_APPLY_UIA_OK = false; }
      +
      +
      +// Table with utf8 lengths (calculated by first byte of sequence)
      +// Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS,
      +// because max possible codepoint is 0x10ffff
      +var _utf8len = new utils.Buf8(256);
      +for (var q = 0; q < 256; q++) {
      +  _utf8len[q] = (q >= 252 ? 6 : q >= 248 ? 5 : q >= 240 ? 4 : q >= 224 ? 3 : q >= 192 ? 2 : 1);
      +}
      +_utf8len[254] = _utf8len[254] = 1; // Invalid sequence start
      +
      +
      +// convert string to array (typed, when possible)
      +exports.string2buf = function (str) {
      +  var buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0;
      +
      +  // count binary size
      +  for (m_pos = 0; m_pos < str_len; m_pos++) {
      +    c = str.charCodeAt(m_pos);
      +    if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {
      +      c2 = str.charCodeAt(m_pos + 1);
      +      if ((c2 & 0xfc00) === 0xdc00) {
      +        c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
      +        m_pos++;
      +      }
      +    }
      +    buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4;
      +  }
      +
      +  // allocate buffer
      +  buf = new utils.Buf8(buf_len);
      +
      +  // convert
      +  for (i = 0, m_pos = 0; i < buf_len; m_pos++) {
      +    c = str.charCodeAt(m_pos);
      +    if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {
      +      c2 = str.charCodeAt(m_pos + 1);
      +      if ((c2 & 0xfc00) === 0xdc00) {
      +        c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
      +        m_pos++;
      +      }
      +    }
      +    if (c < 0x80) {
      +      /* one byte */
      +      buf[i++] = c;
      +    } else if (c < 0x800) {
      +      /* two bytes */
      +      buf[i++] = 0xC0 | (c >>> 6);
      +      buf[i++] = 0x80 | (c & 0x3f);
      +    } else if (c < 0x10000) {
      +      /* three bytes */
      +      buf[i++] = 0xE0 | (c >>> 12);
      +      buf[i++] = 0x80 | (c >>> 6 & 0x3f);
      +      buf[i++] = 0x80 | (c & 0x3f);
      +    } else {
      +      /* four bytes */
      +      buf[i++] = 0xf0 | (c >>> 18);
      +      buf[i++] = 0x80 | (c >>> 12 & 0x3f);
      +      buf[i++] = 0x80 | (c >>> 6 & 0x3f);
      +      buf[i++] = 0x80 | (c & 0x3f);
      +    }
      +  }
      +
      +  return buf;
      +};
      +
      +// Helper (used in 2 places)
      +function buf2binstring(buf, len) {
      +  // use fallback for big arrays to avoid stack overflow
      +  if (len < 65537) {
      +    if ((buf.subarray && STR_APPLY_UIA_OK) || (!buf.subarray && STR_APPLY_OK)) {
      +      return String.fromCharCode.apply(null, utils.shrinkBuf(buf, len));
      +    }
      +  }
      +
      +  var result = '';
      +  for (var i = 0; i < len; i++) {
      +    result += String.fromCharCode(buf[i]);
      +  }
      +  return result;
      +}
      +
      +
      +// Convert byte array to binary string
      +exports.buf2binstring = function (buf) {
      +  return buf2binstring(buf, buf.length);
      +};
      +
      +
      +// Convert binary string (typed, when possible)
      +exports.binstring2buf = function (str) {
      +  var buf = new utils.Buf8(str.length);
      +  for (var i = 0, len = buf.length; i < len; i++) {
      +    buf[i] = str.charCodeAt(i);
      +  }
      +  return buf;
      +};
      +
      +
      +// convert array to string
      +exports.buf2string = function (buf, max) {
      +  var i, out, c, c_len;
      +  var len = max || buf.length;
      +
      +  // Reserve max possible length (2 words per char)
      +  // NB: by unknown reasons, Array is significantly faster for
      +  //     String.fromCharCode.apply than Uint16Array.
      +  var utf16buf = new Array(len * 2);
      +
      +  for (out = 0, i = 0; i < len;) {
      +    c = buf[i++];
      +    // quick process ascii
      +    if (c < 0x80) { utf16buf[out++] = c; continue; }
      +
      +    c_len = _utf8len[c];
      +    // skip 5 & 6 byte codes
      +    if (c_len > 4) { utf16buf[out++] = 0xfffd; i += c_len - 1; continue; }
      +
      +    // apply mask on first byte
      +    c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07;
      +    // join the rest
      +    while (c_len > 1 && i < len) {
      +      c = (c << 6) | (buf[i++] & 0x3f);
      +      c_len--;
      +    }
      +
      +    // terminated by end of string?
      +    if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; }
      +
      +    if (c < 0x10000) {
      +      utf16buf[out++] = c;
      +    } else {
      +      c -= 0x10000;
      +      utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff);
      +      utf16buf[out++] = 0xdc00 | (c & 0x3ff);
      +    }
      +  }
      +
      +  return buf2binstring(utf16buf, out);
      +};
      +
      +
      +// Calculate max possible position in utf8 buffer,
      +// that will not break sequence. If that's not possible
      +// - (very small limits) return max size as is.
      +//
      +// buf[] - utf8 bytes array
      +// max   - length limit (mandatory);
      +exports.utf8border = function (buf, max) {
      +  var pos;
      +
      +  max = max || buf.length;
      +  if (max > buf.length) { max = buf.length; }
      +
      +  // go back from last position, until start of sequence found
      +  pos = max - 1;
      +  while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; }
      +
      +  // Fuckup - very small and broken sequence,
      +  // return max, because we should return something anyway.
      +  if (pos < 0) { return max; }
      +
      +  // If we came to start of buffer - that means vuffer is too small,
      +  // return max too.
      +  if (pos === 0) { return max; }
      +
      +  return (pos + _utf8len[buf[pos]] > max) ? pos : max;
      +};
      +
      +},{"./common":62}],64:[function(require,module,exports){
      +'use strict';
      +
      +// Note: adler32 takes 12% for level 0 and 2% for level 6.
      +// It doesn't worth to make additional optimizationa as in original.
      +// Small size is preferable.
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +function adler32(adler, buf, len, pos) {
      +  var s1 = (adler & 0xffff) |0,
      +      s2 = ((adler >>> 16) & 0xffff) |0,
      +      n = 0;
      +
      +  while (len !== 0) {
      +    // Set limit ~ twice less than 5552, to keep
      +    // s2 in 31-bits, because we force signed ints.
      +    // in other case %= will fail.
      +    n = len > 2000 ? 2000 : len;
      +    len -= n;
      +
      +    do {
      +      s1 = (s1 + buf[pos++]) |0;
      +      s2 = (s2 + s1) |0;
      +    } while (--n);
      +
      +    s1 %= 65521;
      +    s2 %= 65521;
      +  }
      +
      +  return (s1 | (s2 << 16)) |0;
      +}
      +
      +
      +module.exports = adler32;
      +
      +},{}],65:[function(require,module,exports){
      +'use strict';
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +module.exports = {
      +
      +  /* Allowed flush values; see deflate() and inflate() below for details */
      +  Z_NO_FLUSH:         0,
      +  Z_PARTIAL_FLUSH:    1,
      +  Z_SYNC_FLUSH:       2,
      +  Z_FULL_FLUSH:       3,
      +  Z_FINISH:           4,
      +  Z_BLOCK:            5,
      +  Z_TREES:            6,
      +
      +  /* Return codes for the compression/decompression functions. Negative values
      +  * are errors, positive values are used for special but normal events.
      +  */
      +  Z_OK:               0,
      +  Z_STREAM_END:       1,
      +  Z_NEED_DICT:        2,
      +  Z_ERRNO:           -1,
      +  Z_STREAM_ERROR:    -2,
      +  Z_DATA_ERROR:      -3,
      +  //Z_MEM_ERROR:     -4,
      +  Z_BUF_ERROR:       -5,
      +  //Z_VERSION_ERROR: -6,
      +
      +  /* compression levels */
      +  Z_NO_COMPRESSION:         0,
      +  Z_BEST_SPEED:             1,
      +  Z_BEST_COMPRESSION:       9,
      +  Z_DEFAULT_COMPRESSION:   -1,
      +
      +
      +  Z_FILTERED:               1,
      +  Z_HUFFMAN_ONLY:           2,
      +  Z_RLE:                    3,
      +  Z_FIXED:                  4,
      +  Z_DEFAULT_STRATEGY:       0,
      +
      +  /* Possible values of the data_type field (though see inflate()) */
      +  Z_BINARY:                 0,
      +  Z_TEXT:                   1,
      +  //Z_ASCII:                1, // = Z_TEXT (deprecated)
      +  Z_UNKNOWN:                2,
      +
      +  /* The deflate compression method */
      +  Z_DEFLATED:               8
      +  //Z_NULL:                 null // Use -1 or null inline, depending on var type
      +};
      +
      +},{}],66:[function(require,module,exports){
      +'use strict';
      +
      +// Note: we can't get significant speed boost here.
      +// So write code to minimize size - no pregenerated tables
      +// and array tools dependencies.
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +// Use ordinary array, since untyped makes no boost here
      +function makeTable() {
      +  var c, table = [];
      +
      +  for (var n = 0; n < 256; n++) {
      +    c = n;
      +    for (var k = 0; k < 8; k++) {
      +      c = ((c & 1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1));
      +    }
      +    table[n] = c;
      +  }
      +
      +  return table;
      +}
      +
      +// Create table on load. Just 255 signed longs. Not a problem.
      +var crcTable = makeTable();
      +
      +
      +function crc32(crc, buf, len, pos) {
      +  var t = crcTable,
      +      end = pos + len;
      +
      +  crc ^= -1;
      +
      +  for (var i = pos; i < end; i++) {
      +    crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF];
      +  }
      +
      +  return (crc ^ (-1)); // >>> 0;
      +}
      +
      +
      +module.exports = crc32;
      +
      +},{}],67:[function(require,module,exports){
      +'use strict';
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +var utils   = require('../utils/common');
      +var trees   = require('./trees');
      +var adler32 = require('./adler32');
      +var crc32   = require('./crc32');
      +var msg     = require('./messages');
      +
      +/* Public constants ==========================================================*/
      +/* ===========================================================================*/
      +
      +
      +/* Allowed flush values; see deflate() and inflate() below for details */
      +var Z_NO_FLUSH      = 0;
      +var Z_PARTIAL_FLUSH = 1;
      +//var Z_SYNC_FLUSH    = 2;
      +var Z_FULL_FLUSH    = 3;
      +var Z_FINISH        = 4;
      +var Z_BLOCK         = 5;
      +//var Z_TREES         = 6;
      +
      +
      +/* Return codes for the compression/decompression functions. Negative values
      + * are errors, positive values are used for special but normal events.
      + */
      +var Z_OK            = 0;
      +var Z_STREAM_END    = 1;
      +//var Z_NEED_DICT     = 2;
      +//var Z_ERRNO         = -1;
      +var Z_STREAM_ERROR  = -2;
      +var Z_DATA_ERROR    = -3;
      +//var Z_MEM_ERROR     = -4;
      +var Z_BUF_ERROR     = -5;
      +//var Z_VERSION_ERROR = -6;
      +
      +
      +/* compression levels */
      +//var Z_NO_COMPRESSION      = 0;
      +//var Z_BEST_SPEED          = 1;
      +//var Z_BEST_COMPRESSION    = 9;
      +var Z_DEFAULT_COMPRESSION = -1;
      +
      +
      +var Z_FILTERED            = 1;
      +var Z_HUFFMAN_ONLY        = 2;
      +var Z_RLE                 = 3;
      +var Z_FIXED               = 4;
      +var Z_DEFAULT_STRATEGY    = 0;
      +
      +/* Possible values of the data_type field (though see inflate()) */
      +//var Z_BINARY              = 0;
      +//var Z_TEXT                = 1;
      +//var Z_ASCII               = 1; // = Z_TEXT
      +var Z_UNKNOWN             = 2;
      +
      +
      +/* The deflate compression method */
      +var Z_DEFLATED  = 8;
      +
      +/*============================================================================*/
      +
      +
      +var MAX_MEM_LEVEL = 9;
      +/* Maximum value for memLevel in deflateInit2 */
      +var MAX_WBITS = 15;
      +/* 32K LZ77 window */
      +var DEF_MEM_LEVEL = 8;
      +
      +
      +var LENGTH_CODES  = 29;
      +/* number of length codes, not counting the special END_BLOCK code */
      +var LITERALS      = 256;
      +/* number of literal bytes 0..255 */
      +var L_CODES       = LITERALS + 1 + LENGTH_CODES;
      +/* number of Literal or Length codes, including the END_BLOCK code */
      +var D_CODES       = 30;
      +/* number of distance codes */
      +var BL_CODES      = 19;
      +/* number of codes used to transfer the bit lengths */
      +var HEAP_SIZE     = 2 * L_CODES + 1;
      +/* maximum heap size */
      +var MAX_BITS  = 15;
      +/* All codes must not exceed MAX_BITS bits */
      +
      +var MIN_MATCH = 3;
      +var MAX_MATCH = 258;
      +var MIN_LOOKAHEAD = (MAX_MATCH + MIN_MATCH + 1);
      +
      +var PRESET_DICT = 0x20;
      +
      +var INIT_STATE = 42;
      +var EXTRA_STATE = 69;
      +var NAME_STATE = 73;
      +var COMMENT_STATE = 91;
      +var HCRC_STATE = 103;
      +var BUSY_STATE = 113;
      +var FINISH_STATE = 666;
      +
      +var BS_NEED_MORE      = 1; /* block not completed, need more input or more output */
      +var BS_BLOCK_DONE     = 2; /* block flush performed */
      +var BS_FINISH_STARTED = 3; /* finish started, need only more output at next deflate */
      +var BS_FINISH_DONE    = 4; /* finish done, accept no more input or output */
      +
      +var OS_CODE = 0x03; // Unix :) . Don't detect, use this default.
      +
      +function err(strm, errorCode) {
      +  strm.msg = msg[errorCode];
      +  return errorCode;
      +}
      +
      +function rank(f) {
      +  return ((f) << 1) - ((f) > 4 ? 9 : 0);
      +}
      +
      +function zero(buf) { var len = buf.length; while (--len >= 0) { buf[len] = 0; } }
      +
      +
      +/* =========================================================================
      + * Flush as much pending output as possible. All deflate() output goes
      + * through this function so some applications may wish to modify it
      + * to avoid allocating a large strm->output buffer and copying into it.
      + * (See also read_buf()).
      + */
      +function flush_pending(strm) {
      +  var s = strm.state;
      +
      +  //_tr_flush_bits(s);
      +  var len = s.pending;
      +  if (len > strm.avail_out) {
      +    len = strm.avail_out;
      +  }
      +  if (len === 0) { return; }
      +
      +  utils.arraySet(strm.output, s.pending_buf, s.pending_out, len, strm.next_out);
      +  strm.next_out += len;
      +  s.pending_out += len;
      +  strm.total_out += len;
      +  strm.avail_out -= len;
      +  s.pending -= len;
      +  if (s.pending === 0) {
      +    s.pending_out = 0;
      +  }
      +}
      +
      +
      +function flush_block_only(s, last) {
      +  trees._tr_flush_block(s, (s.block_start >= 0 ? s.block_start : -1), s.strstart - s.block_start, last);
      +  s.block_start = s.strstart;
      +  flush_pending(s.strm);
      +}
      +
      +
      +function put_byte(s, b) {
      +  s.pending_buf[s.pending++] = b;
      +}
      +
      +
      +/* =========================================================================
      + * Put a short in the pending buffer. The 16-bit value is put in MSB order.
      + * IN assertion: the stream state is correct and there is enough room in
      + * pending_buf.
      + */
      +function putShortMSB(s, b) {
      +//  put_byte(s, (Byte)(b >> 8));
      +//  put_byte(s, (Byte)(b & 0xff));
      +  s.pending_buf[s.pending++] = (b >>> 8) & 0xff;
      +  s.pending_buf[s.pending++] = b & 0xff;
      +}
      +
      +
      +/* ===========================================================================
      + * Read a new buffer from the current input stream, update the adler32
      + * and total number of bytes read.  All deflate() input goes through
      + * this function so some applications may wish to modify it to avoid
      + * allocating a large strm->input buffer and copying from it.
      + * (See also flush_pending()).
      + */
      +function read_buf(strm, buf, start, size) {
      +  var len = strm.avail_in;
      +
      +  if (len > size) { len = size; }
      +  if (len === 0) { return 0; }
      +
      +  strm.avail_in -= len;
      +
      +  // zmemcpy(buf, strm->next_in, len);
      +  utils.arraySet(buf, strm.input, strm.next_in, len, start);
      +  if (strm.state.wrap === 1) {
      +    strm.adler = adler32(strm.adler, buf, len, start);
      +  }
      +
      +  else if (strm.state.wrap === 2) {
      +    strm.adler = crc32(strm.adler, buf, len, start);
      +  }
      +
      +  strm.next_in += len;
      +  strm.total_in += len;
      +
      +  return len;
      +}
      +
      +
      +/* ===========================================================================
      + * Set match_start to the longest match starting at the given string and
      + * return its length. Matches shorter or equal to prev_length are discarded,
      + * in which case the result is equal to prev_length and match_start is
      + * garbage.
      + * IN assertions: cur_match is the head of the hash chain for the current
      + *   string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
      + * OUT assertion: the match length is not greater than s->lookahead.
      + */
      +function longest_match(s, cur_match) {
      +  var chain_length = s.max_chain_length;      /* max hash chain length */
      +  var scan = s.strstart; /* current string */
      +  var match;                       /* matched string */
      +  var len;                           /* length of current match */
      +  var best_len = s.prev_length;              /* best match length so far */
      +  var nice_match = s.nice_match;             /* stop if match long enough */
      +  var limit = (s.strstart > (s.w_size - MIN_LOOKAHEAD)) ?
      +      s.strstart - (s.w_size - MIN_LOOKAHEAD) : 0/*NIL*/;
      +
      +  var _win = s.window; // shortcut
      +
      +  var wmask = s.w_mask;
      +  var prev  = s.prev;
      +
      +  /* Stop when cur_match becomes <= limit. To simplify the code,
      +   * we prevent matches with the string of window index 0.
      +   */
      +
      +  var strend = s.strstart + MAX_MATCH;
      +  var scan_end1  = _win[scan + best_len - 1];
      +  var scan_end   = _win[scan + best_len];
      +
      +  /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
      +   * It is easy to get rid of this optimization if necessary.
      +   */
      +  // Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
      +
      +  /* Do not waste too much time if we already have a good match: */
      +  if (s.prev_length >= s.good_match) {
      +    chain_length >>= 2;
      +  }
      +  /* Do not look for matches beyond the end of the input. This is necessary
      +   * to make deflate deterministic.
      +   */
      +  if (nice_match > s.lookahead) { nice_match = s.lookahead; }
      +
      +  // Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
      +
      +  do {
      +    // Assert(cur_match < s->strstart, "no future");
      +    match = cur_match;
      +
      +    /* Skip to next match if the match length cannot increase
      +     * or if the match length is less than 2.  Note that the checks below
      +     * for insufficient lookahead only occur occasionally for performance
      +     * reasons.  Therefore uninitialized memory will be accessed, and
      +     * conditional jumps will be made that depend on those values.
      +     * However the length of the match is limited to the lookahead, so
      +     * the output of deflate is not affected by the uninitialized values.
      +     */
      +
      +    if (_win[match + best_len]     !== scan_end  ||
      +        _win[match + best_len - 1] !== scan_end1 ||
      +        _win[match]                !== _win[scan] ||
      +        _win[++match]              !== _win[scan + 1]) {
      +      continue;
      +    }
      +
      +    /* The check at best_len-1 can be removed because it will be made
      +     * again later. (This heuristic is not always a win.)
      +     * It is not necessary to compare scan[2] and match[2] since they
      +     * are always equal when the other bytes match, given that
      +     * the hash keys are equal and that HASH_BITS >= 8.
      +     */
      +    scan += 2;
      +    match++;
      +    // Assert(*scan == *match, "match[2]?");
      +
      +    /* We check for insufficient lookahead only every 8th comparison;
      +     * the 256th check will be made at strstart+258.
      +     */
      +    do {
      +      /*jshint noempty:false*/
      +    } while (_win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
      +             _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
      +             _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
      +             _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
      +             scan < strend);
      +
      +    // Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
      +
      +    len = MAX_MATCH - (strend - scan);
      +    scan = strend - MAX_MATCH;
      +
      +    if (len > best_len) {
      +      s.match_start = cur_match;
      +      best_len = len;
      +      if (len >= nice_match) {
      +        break;
      +      }
      +      scan_end1  = _win[scan + best_len - 1];
      +      scan_end   = _win[scan + best_len];
      +    }
      +  } while ((cur_match = prev[cur_match & wmask]) > limit && --chain_length !== 0);
      +
      +  if (best_len <= s.lookahead) {
      +    return best_len;
      +  }
      +  return s.lookahead;
      +}
      +
      +
      +/* ===========================================================================
      + * Fill the window when the lookahead becomes insufficient.
      + * Updates strstart and lookahead.
      + *
      + * IN assertion: lookahead < MIN_LOOKAHEAD
      + * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD
      + *    At least one byte has been read, or avail_in == 0; reads are
      + *    performed for at least two bytes (required for the zip translate_eol
      + *    option -- not supported here).
      + */
      +function fill_window(s) {
      +  var _w_size = s.w_size;
      +  var p, n, m, more, str;
      +
      +  //Assert(s->lookahead < MIN_LOOKAHEAD, "already enough lookahead");
      +
      +  do {
      +    more = s.window_size - s.lookahead - s.strstart;
      +
      +    // JS ints have 32 bit, block below not needed
      +    /* Deal with !@#$% 64K limit: */
      +    //if (sizeof(int) <= 2) {
      +    //    if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
      +    //        more = wsize;
      +    //
      +    //  } else if (more == (unsigned)(-1)) {
      +    //        /* Very unlikely, but possible on 16 bit machine if
      +    //         * strstart == 0 && lookahead == 1 (input done a byte at time)
      +    //         */
      +    //        more--;
      +    //    }
      +    //}
      +
      +
      +    /* If the window is almost full and there is insufficient lookahead,
      +     * move the upper half to the lower one to make room in the upper half.
      +     */
      +    if (s.strstart >= _w_size + (_w_size - MIN_LOOKAHEAD)) {
      +
      +      utils.arraySet(s.window, s.window, _w_size, _w_size, 0);
      +      s.match_start -= _w_size;
      +      s.strstart -= _w_size;
      +      /* we now have strstart >= MAX_DIST */
      +      s.block_start -= _w_size;
      +
      +      /* Slide the hash table (could be avoided with 32 bit values
      +       at the expense of memory usage). We slide even when level == 0
      +       to keep the hash table consistent if we switch back to level > 0
      +       later. (Using level 0 permanently is not an optimal usage of
      +       zlib, so we don't care about this pathological case.)
      +       */
      +
      +      n = s.hash_size;
      +      p = n;
      +      do {
      +        m = s.head[--p];
      +        s.head[p] = (m >= _w_size ? m - _w_size : 0);
      +      } while (--n);
      +
      +      n = _w_size;
      +      p = n;
      +      do {
      +        m = s.prev[--p];
      +        s.prev[p] = (m >= _w_size ? m - _w_size : 0);
      +        /* If n is not on any hash chain, prev[n] is garbage but
      +         * its value will never be used.
      +         */
      +      } while (--n);
      +
      +      more += _w_size;
      +    }
      +    if (s.strm.avail_in === 0) {
      +      break;
      +    }
      +
      +    /* If there was no sliding:
      +     *    strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &&
      +     *    more == window_size - lookahead - strstart
      +     * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)
      +     * => more >= window_size - 2*WSIZE + 2
      +     * In the BIG_MEM or MMAP case (not yet supported),
      +     *   window_size == input_size + MIN_LOOKAHEAD  &&
      +     *   strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD.
      +     * Otherwise, window_size == 2*WSIZE so more >= 2.
      +     * If there was sliding, more >= WSIZE. So in all cases, more >= 2.
      +     */
      +    //Assert(more >= 2, "more < 2");
      +    n = read_buf(s.strm, s.window, s.strstart + s.lookahead, more);
      +    s.lookahead += n;
      +
      +    /* Initialize the hash value now that we have some input: */
      +    if (s.lookahead + s.insert >= MIN_MATCH) {
      +      str = s.strstart - s.insert;
      +      s.ins_h = s.window[str];
      +
      +      /* UPDATE_HASH(s, s->ins_h, s->window[str + 1]); */
      +      s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str + 1]) & s.hash_mask;
      +//#if MIN_MATCH != 3
      +//        Call update_hash() MIN_MATCH-3 more times
      +//#endif
      +      while (s.insert) {
      +        /* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */
      +        s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str + MIN_MATCH - 1]) & s.hash_mask;
      +
      +        s.prev[str & s.w_mask] = s.head[s.ins_h];
      +        s.head[s.ins_h] = str;
      +        str++;
      +        s.insert--;
      +        if (s.lookahead + s.insert < MIN_MATCH) {
      +          break;
      +        }
      +      }
      +    }
      +    /* If the whole input has less than MIN_MATCH bytes, ins_h is garbage,
      +     * but this is not important since only literal bytes will be emitted.
      +     */
      +
      +  } while (s.lookahead < MIN_LOOKAHEAD && s.strm.avail_in !== 0);
      +
      +  /* If the WIN_INIT bytes after the end of the current data have never been
      +   * written, then zero those bytes in order to avoid memory check reports of
      +   * the use of uninitialized (or uninitialised as Julian writes) bytes by
      +   * the longest match routines.  Update the high water mark for the next
      +   * time through here.  WIN_INIT is set to MAX_MATCH since the longest match
      +   * routines allow scanning to strstart + MAX_MATCH, ignoring lookahead.
      +   */
      +//  if (s.high_water < s.window_size) {
      +//    var curr = s.strstart + s.lookahead;
      +//    var init = 0;
      +//
      +//    if (s.high_water < curr) {
      +//      /* Previous high water mark below current data -- zero WIN_INIT
      +//       * bytes or up to end of window, whichever is less.
      +//       */
      +//      init = s.window_size - curr;
      +//      if (init > WIN_INIT)
      +//        init = WIN_INIT;
      +//      zmemzero(s->window + curr, (unsigned)init);
      +//      s->high_water = curr + init;
      +//    }
      +//    else if (s->high_water < (ulg)curr + WIN_INIT) {
      +//      /* High water mark at or above current data, but below current data
      +//       * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up
      +//       * to end of window, whichever is less.
      +//       */
      +//      init = (ulg)curr + WIN_INIT - s->high_water;
      +//      if (init > s->window_size - s->high_water)
      +//        init = s->window_size - s->high_water;
      +//      zmemzero(s->window + s->high_water, (unsigned)init);
      +//      s->high_water += init;
      +//    }
      +//  }
      +//
      +//  Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
      +//    "not enough room for search");
      +}
      +
      +/* ===========================================================================
      + * Copy without compression as much as possible from the input stream, return
      + * the current block state.
      + * This function does not insert new strings in the dictionary since
      + * uncompressible data is probably not useful. This function is used
      + * only for the level=0 compression option.
      + * NOTE: this function should be optimized to avoid extra copying from
      + * window to pending_buf.
      + */
      +function deflate_stored(s, flush) {
      +  /* Stored blocks are limited to 0xffff bytes, pending_buf is limited
      +   * to pending_buf_size, and each stored block has a 5 byte header:
      +   */
      +  var max_block_size = 0xffff;
      +
      +  if (max_block_size > s.pending_buf_size - 5) {
      +    max_block_size = s.pending_buf_size - 5;
      +  }
      +
      +  /* Copy as much as possible from input to output: */
      +  for (;;) {
      +    /* Fill the window as much as possible: */
      +    if (s.lookahead <= 1) {
      +
      +      //Assert(s->strstart < s->w_size+MAX_DIST(s) ||
      +      //  s->block_start >= (long)s->w_size, "slide too late");
      +//      if (!(s.strstart < s.w_size + (s.w_size - MIN_LOOKAHEAD) ||
      +//        s.block_start >= s.w_size)) {
      +//        throw  new Error("slide too late");
      +//      }
      +
      +      fill_window(s);
      +      if (s.lookahead === 0 && flush === Z_NO_FLUSH) {
      +        return BS_NEED_MORE;
      +      }
      +
      +      if (s.lookahead === 0) {
      +        break;
      +      }
      +      /* flush the current block */
      +    }
      +    //Assert(s->block_start >= 0L, "block gone");
      +//    if (s.block_start < 0) throw new Error("block gone");
      +
      +    s.strstart += s.lookahead;
      +    s.lookahead = 0;
      +
      +    /* Emit a stored block if pending_buf will be full: */
      +    var max_start = s.block_start + max_block_size;
      +
      +    if (s.strstart === 0 || s.strstart >= max_start) {
      +      /* strstart == 0 is possible when wraparound on 16-bit machine */
      +      s.lookahead = s.strstart - max_start;
      +      s.strstart = max_start;
      +      /*** FLUSH_BLOCK(s, 0); ***/
      +      flush_block_only(s, false);
      +      if (s.strm.avail_out === 0) {
      +        return BS_NEED_MORE;
      +      }
      +      /***/
      +
      +
      +    }
      +    /* Flush if we may have to slide, otherwise block_start may become
      +     * negative and the data will be gone:
      +     */
      +    if (s.strstart - s.block_start >= (s.w_size - MIN_LOOKAHEAD)) {
      +      /*** FLUSH_BLOCK(s, 0); ***/
      +      flush_block_only(s, false);
      +      if (s.strm.avail_out === 0) {
      +        return BS_NEED_MORE;
      +      }
      +      /***/
      +    }
      +  }
      +
      +  s.insert = 0;
      +
      +  if (flush === Z_FINISH) {
      +    /*** FLUSH_BLOCK(s, 1); ***/
      +    flush_block_only(s, true);
      +    if (s.strm.avail_out === 0) {
      +      return BS_FINISH_STARTED;
      +    }
      +    /***/
      +    return BS_FINISH_DONE;
      +  }
      +
      +  if (s.strstart > s.block_start) {
      +    /*** FLUSH_BLOCK(s, 0); ***/
      +    flush_block_only(s, false);
      +    if (s.strm.avail_out === 0) {
      +      return BS_NEED_MORE;
      +    }
      +    /***/
      +  }
      +
      +  return BS_NEED_MORE;
      +}
      +
      +/* ===========================================================================
      + * Compress as much as possible from the input stream, return the current
      + * block state.
      + * This function does not perform lazy evaluation of matches and inserts
      + * new strings in the dictionary only for unmatched strings or for short
      + * matches. It is used only for the fast compression options.
      + */
      +function deflate_fast(s, flush) {
      +  var hash_head;        /* head of the hash chain */
      +  var bflush;           /* set if current block must be flushed */
      +
      +  for (;;) {
      +    /* Make sure that we always have enough lookahead, except
      +     * at the end of the input file. We need MAX_MATCH bytes
      +     * for the next match, plus MIN_MATCH bytes to insert the
      +     * string following the next match.
      +     */
      +    if (s.lookahead < MIN_LOOKAHEAD) {
      +      fill_window(s);
      +      if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
      +        return BS_NEED_MORE;
      +      }
      +      if (s.lookahead === 0) {
      +        break; /* flush the current block */
      +      }
      +    }
      +
      +    /* Insert the string window[strstart .. strstart+2] in the
      +     * dictionary, and set hash_head to the head of the hash chain:
      +     */
      +    hash_head = 0/*NIL*/;
      +    if (s.lookahead >= MIN_MATCH) {
      +      /*** INSERT_STRING(s, s.strstart, hash_head); ***/
      +      s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
      +      hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
      +      s.head[s.ins_h] = s.strstart;
      +      /***/
      +    }
      +
      +    /* Find the longest match, discarding those <= prev_length.
      +     * At this point we have always match_length < MIN_MATCH
      +     */
      +    if (hash_head !== 0/*NIL*/ && ((s.strstart - hash_head) <= (s.w_size - MIN_LOOKAHEAD))) {
      +      /* To simplify the code, we prevent matches with the string
      +       * of window index 0 (in particular we have to avoid a match
      +       * of the string with itself at the start of the input file).
      +       */
      +      s.match_length = longest_match(s, hash_head);
      +      /* longest_match() sets match_start */
      +    }
      +    if (s.match_length >= MIN_MATCH) {
      +      // check_match(s, s.strstart, s.match_start, s.match_length); // for debug only
      +
      +      /*** _tr_tally_dist(s, s.strstart - s.match_start,
      +                     s.match_length - MIN_MATCH, bflush); ***/
      +      bflush = trees._tr_tally(s, s.strstart - s.match_start, s.match_length - MIN_MATCH);
      +
      +      s.lookahead -= s.match_length;
      +
      +      /* Insert new strings in the hash table only if the match length
      +       * is not too large. This saves time but degrades compression.
      +       */
      +      if (s.match_length <= s.max_lazy_match/*max_insert_length*/ && s.lookahead >= MIN_MATCH) {
      +        s.match_length--; /* string at strstart already in table */
      +        do {
      +          s.strstart++;
      +          /*** INSERT_STRING(s, s.strstart, hash_head); ***/
      +          s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
      +          hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
      +          s.head[s.ins_h] = s.strstart;
      +          /***/
      +          /* strstart never exceeds WSIZE-MAX_MATCH, so there are
      +           * always MIN_MATCH bytes ahead.
      +           */
      +        } while (--s.match_length !== 0);
      +        s.strstart++;
      +      } else
      +      {
      +        s.strstart += s.match_length;
      +        s.match_length = 0;
      +        s.ins_h = s.window[s.strstart];
      +        /* UPDATE_HASH(s, s.ins_h, s.window[s.strstart+1]); */
      +        s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + 1]) & s.hash_mask;
      +
      +//#if MIN_MATCH != 3
      +//                Call UPDATE_HASH() MIN_MATCH-3 more times
      +//#endif
      +        /* If lookahead < MIN_MATCH, ins_h is garbage, but it does not
      +         * matter since it will be recomputed at next deflate call.
      +         */
      +      }
      +    } else {
      +      /* No match, output a literal byte */
      +      //Tracevv((stderr,"%c", s.window[s.strstart]));
      +      /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/
      +      bflush = trees._tr_tally(s, 0, s.window[s.strstart]);
      +
      +      s.lookahead--;
      +      s.strstart++;
      +    }
      +    if (bflush) {
      +      /*** FLUSH_BLOCK(s, 0); ***/
      +      flush_block_only(s, false);
      +      if (s.strm.avail_out === 0) {
      +        return BS_NEED_MORE;
      +      }
      +      /***/
      +    }
      +  }
      +  s.insert = ((s.strstart < (MIN_MATCH - 1)) ? s.strstart : MIN_MATCH - 1);
      +  if (flush === Z_FINISH) {
      +    /*** FLUSH_BLOCK(s, 1); ***/
      +    flush_block_only(s, true);
      +    if (s.strm.avail_out === 0) {
      +      return BS_FINISH_STARTED;
      +    }
      +    /***/
      +    return BS_FINISH_DONE;
      +  }
      +  if (s.last_lit) {
      +    /*** FLUSH_BLOCK(s, 0); ***/
      +    flush_block_only(s, false);
      +    if (s.strm.avail_out === 0) {
      +      return BS_NEED_MORE;
      +    }
      +    /***/
      +  }
      +  return BS_BLOCK_DONE;
      +}
      +
      +/* ===========================================================================
      + * Same as above, but achieves better compression. We use a lazy
      + * evaluation for matches: a match is finally adopted only if there is
      + * no better match at the next window position.
      + */
      +function deflate_slow(s, flush) {
      +  var hash_head;          /* head of hash chain */
      +  var bflush;              /* set if current block must be flushed */
      +
      +  var max_insert;
      +
      +  /* Process the input block. */
      +  for (;;) {
      +    /* Make sure that we always have enough lookahead, except
      +     * at the end of the input file. We need MAX_MATCH bytes
      +     * for the next match, plus MIN_MATCH bytes to insert the
      +     * string following the next match.
      +     */
      +    if (s.lookahead < MIN_LOOKAHEAD) {
      +      fill_window(s);
      +      if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
      +        return BS_NEED_MORE;
      +      }
      +      if (s.lookahead === 0) { break; } /* flush the current block */
      +    }
      +
      +    /* Insert the string window[strstart .. strstart+2] in the
      +     * dictionary, and set hash_head to the head of the hash chain:
      +     */
      +    hash_head = 0/*NIL*/;
      +    if (s.lookahead >= MIN_MATCH) {
      +      /*** INSERT_STRING(s, s.strstart, hash_head); ***/
      +      s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
      +      hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
      +      s.head[s.ins_h] = s.strstart;
      +      /***/
      +    }
      +
      +    /* Find the longest match, discarding those <= prev_length.
      +     */
      +    s.prev_length = s.match_length;
      +    s.prev_match = s.match_start;
      +    s.match_length = MIN_MATCH - 1;
      +
      +    if (hash_head !== 0/*NIL*/ && s.prev_length < s.max_lazy_match &&
      +        s.strstart - hash_head <= (s.w_size - MIN_LOOKAHEAD)/*MAX_DIST(s)*/) {
      +      /* To simplify the code, we prevent matches with the string
      +       * of window index 0 (in particular we have to avoid a match
      +       * of the string with itself at the start of the input file).
      +       */
      +      s.match_length = longest_match(s, hash_head);
      +      /* longest_match() sets match_start */
      +
      +      if (s.match_length <= 5 &&
      +         (s.strategy === Z_FILTERED || (s.match_length === MIN_MATCH && s.strstart - s.match_start > 4096/*TOO_FAR*/))) {
      +
      +        /* If prev_match is also MIN_MATCH, match_start is garbage
      +         * but we will ignore the current match anyway.
      +         */
      +        s.match_length = MIN_MATCH - 1;
      +      }
      +    }
      +    /* If there was a match at the previous step and the current
      +     * match is not better, output the previous match:
      +     */
      +    if (s.prev_length >= MIN_MATCH && s.match_length <= s.prev_length) {
      +      max_insert = s.strstart + s.lookahead - MIN_MATCH;
      +      /* Do not insert strings in hash table beyond this. */
      +
      +      //check_match(s, s.strstart-1, s.prev_match, s.prev_length);
      +
      +      /***_tr_tally_dist(s, s.strstart - 1 - s.prev_match,
      +                     s.prev_length - MIN_MATCH, bflush);***/
      +      bflush = trees._tr_tally(s, s.strstart - 1 - s.prev_match, s.prev_length - MIN_MATCH);
      +      /* Insert in hash table all strings up to the end of the match.
      +       * strstart-1 and strstart are already inserted. If there is not
      +       * enough lookahead, the last two strings are not inserted in
      +       * the hash table.
      +       */
      +      s.lookahead -= s.prev_length - 1;
      +      s.prev_length -= 2;
      +      do {
      +        if (++s.strstart <= max_insert) {
      +          /*** INSERT_STRING(s, s.strstart, hash_head); ***/
      +          s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
      +          hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
      +          s.head[s.ins_h] = s.strstart;
      +          /***/
      +        }
      +      } while (--s.prev_length !== 0);
      +      s.match_available = 0;
      +      s.match_length = MIN_MATCH - 1;
      +      s.strstart++;
      +
      +      if (bflush) {
      +        /*** FLUSH_BLOCK(s, 0); ***/
      +        flush_block_only(s, false);
      +        if (s.strm.avail_out === 0) {
      +          return BS_NEED_MORE;
      +        }
      +        /***/
      +      }
      +
      +    } else if (s.match_available) {
      +      /* If there was no match at the previous position, output a
      +       * single literal. If there was a match but the current match
      +       * is longer, truncate the previous match to a single literal.
      +       */
      +      //Tracevv((stderr,"%c", s->window[s->strstart-1]));
      +      /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/
      +      bflush = trees._tr_tally(s, 0, s.window[s.strstart - 1]);
      +
      +      if (bflush) {
      +        /*** FLUSH_BLOCK_ONLY(s, 0) ***/
      +        flush_block_only(s, false);
      +        /***/
      +      }
      +      s.strstart++;
      +      s.lookahead--;
      +      if (s.strm.avail_out === 0) {
      +        return BS_NEED_MORE;
      +      }
      +    } else {
      +      /* There is no previous match to compare with, wait for
      +       * the next step to decide.
      +       */
      +      s.match_available = 1;
      +      s.strstart++;
      +      s.lookahead--;
      +    }
      +  }
      +  //Assert (flush != Z_NO_FLUSH, "no flush?");
      +  if (s.match_available) {
      +    //Tracevv((stderr,"%c", s->window[s->strstart-1]));
      +    /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/
      +    bflush = trees._tr_tally(s, 0, s.window[s.strstart - 1]);
      +
      +    s.match_available = 0;
      +  }
      +  s.insert = s.strstart < MIN_MATCH - 1 ? s.strstart : MIN_MATCH - 1;
      +  if (flush === Z_FINISH) {
      +    /*** FLUSH_BLOCK(s, 1); ***/
      +    flush_block_only(s, true);
      +    if (s.strm.avail_out === 0) {
      +      return BS_FINISH_STARTED;
      +    }
      +    /***/
      +    return BS_FINISH_DONE;
      +  }
      +  if (s.last_lit) {
      +    /*** FLUSH_BLOCK(s, 0); ***/
      +    flush_block_only(s, false);
      +    if (s.strm.avail_out === 0) {
      +      return BS_NEED_MORE;
      +    }
      +    /***/
      +  }
      +
      +  return BS_BLOCK_DONE;
      +}
      +
      +
      +/* ===========================================================================
      + * For Z_RLE, simply look for runs of bytes, generate matches only of distance
      + * one.  Do not maintain a hash table.  (It will be regenerated if this run of
      + * deflate switches away from Z_RLE.)
      + */
      +function deflate_rle(s, flush) {
      +  var bflush;            /* set if current block must be flushed */
      +  var prev;              /* byte at distance one to match */
      +  var scan, strend;      /* scan goes up to strend for length of run */
      +
      +  var _win = s.window;
      +
      +  for (;;) {
      +    /* Make sure that we always have enough lookahead, except
      +     * at the end of the input file. We need MAX_MATCH bytes
      +     * for the longest run, plus one for the unrolled loop.
      +     */
      +    if (s.lookahead <= MAX_MATCH) {
      +      fill_window(s);
      +      if (s.lookahead <= MAX_MATCH && flush === Z_NO_FLUSH) {
      +        return BS_NEED_MORE;
      +      }
      +      if (s.lookahead === 0) { break; } /* flush the current block */
      +    }
      +
      +    /* See how many times the previous byte repeats */
      +    s.match_length = 0;
      +    if (s.lookahead >= MIN_MATCH && s.strstart > 0) {
      +      scan = s.strstart - 1;
      +      prev = _win[scan];
      +      if (prev === _win[++scan] && prev === _win[++scan] && prev === _win[++scan]) {
      +        strend = s.strstart + MAX_MATCH;
      +        do {
      +          /*jshint noempty:false*/
      +        } while (prev === _win[++scan] && prev === _win[++scan] &&
      +                 prev === _win[++scan] && prev === _win[++scan] &&
      +                 prev === _win[++scan] && prev === _win[++scan] &&
      +                 prev === _win[++scan] && prev === _win[++scan] &&
      +                 scan < strend);
      +        s.match_length = MAX_MATCH - (strend - scan);
      +        if (s.match_length > s.lookahead) {
      +          s.match_length = s.lookahead;
      +        }
      +      }
      +      //Assert(scan <= s->window+(uInt)(s->window_size-1), "wild scan");
      +    }
      +
      +    /* Emit match if have run of MIN_MATCH or longer, else emit literal */
      +    if (s.match_length >= MIN_MATCH) {
      +      //check_match(s, s.strstart, s.strstart - 1, s.match_length);
      +
      +      /*** _tr_tally_dist(s, 1, s.match_length - MIN_MATCH, bflush); ***/
      +      bflush = trees._tr_tally(s, 1, s.match_length - MIN_MATCH);
      +
      +      s.lookahead -= s.match_length;
      +      s.strstart += s.match_length;
      +      s.match_length = 0;
      +    } else {
      +      /* No match, output a literal byte */
      +      //Tracevv((stderr,"%c", s->window[s->strstart]));
      +      /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/
      +      bflush = trees._tr_tally(s, 0, s.window[s.strstart]);
      +
      +      s.lookahead--;
      +      s.strstart++;
      +    }
      +    if (bflush) {
      +      /*** FLUSH_BLOCK(s, 0); ***/
      +      flush_block_only(s, false);
      +      if (s.strm.avail_out === 0) {
      +        return BS_NEED_MORE;
      +      }
      +      /***/
      +    }
      +  }
      +  s.insert = 0;
      +  if (flush === Z_FINISH) {
      +    /*** FLUSH_BLOCK(s, 1); ***/
      +    flush_block_only(s, true);
      +    if (s.strm.avail_out === 0) {
      +      return BS_FINISH_STARTED;
      +    }
      +    /***/
      +    return BS_FINISH_DONE;
      +  }
      +  if (s.last_lit) {
      +    /*** FLUSH_BLOCK(s, 0); ***/
      +    flush_block_only(s, false);
      +    if (s.strm.avail_out === 0) {
      +      return BS_NEED_MORE;
      +    }
      +    /***/
      +  }
      +  return BS_BLOCK_DONE;
      +}
      +
      +/* ===========================================================================
      + * For Z_HUFFMAN_ONLY, do not look for matches.  Do not maintain a hash table.
      + * (It will be regenerated if this run of deflate switches away from Huffman.)
      + */
      +function deflate_huff(s, flush) {
      +  var bflush;             /* set if current block must be flushed */
      +
      +  for (;;) {
      +    /* Make sure that we have a literal to write. */
      +    if (s.lookahead === 0) {
      +      fill_window(s);
      +      if (s.lookahead === 0) {
      +        if (flush === Z_NO_FLUSH) {
      +          return BS_NEED_MORE;
      +        }
      +        break;      /* flush the current block */
      +      }
      +    }
      +
      +    /* Output a literal byte */
      +    s.match_length = 0;
      +    //Tracevv((stderr,"%c", s->window[s->strstart]));
      +    /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/
      +    bflush = trees._tr_tally(s, 0, s.window[s.strstart]);
      +    s.lookahead--;
      +    s.strstart++;
      +    if (bflush) {
      +      /*** FLUSH_BLOCK(s, 0); ***/
      +      flush_block_only(s, false);
      +      if (s.strm.avail_out === 0) {
      +        return BS_NEED_MORE;
      +      }
      +      /***/
      +    }
      +  }
      +  s.insert = 0;
      +  if (flush === Z_FINISH) {
      +    /*** FLUSH_BLOCK(s, 1); ***/
      +    flush_block_only(s, true);
      +    if (s.strm.avail_out === 0) {
      +      return BS_FINISH_STARTED;
      +    }
      +    /***/
      +    return BS_FINISH_DONE;
      +  }
      +  if (s.last_lit) {
      +    /*** FLUSH_BLOCK(s, 0); ***/
      +    flush_block_only(s, false);
      +    if (s.strm.avail_out === 0) {
      +      return BS_NEED_MORE;
      +    }
      +    /***/
      +  }
      +  return BS_BLOCK_DONE;
      +}
      +
      +/* Values for max_lazy_match, good_match and max_chain_length, depending on
      + * the desired pack level (0..9). The values given below have been tuned to
      + * exclude worst case performance for pathological files. Better values may be
      + * found for specific files.
      + */
      +function Config(good_length, max_lazy, nice_length, max_chain, func) {
      +  this.good_length = good_length;
      +  this.max_lazy = max_lazy;
      +  this.nice_length = nice_length;
      +  this.max_chain = max_chain;
      +  this.func = func;
      +}
      +
      +var configuration_table;
      +
      +configuration_table = [
      +  /*      good lazy nice chain */
      +  new Config(0, 0, 0, 0, deflate_stored),          /* 0 store only */
      +  new Config(4, 4, 8, 4, deflate_fast),            /* 1 max speed, no lazy matches */
      +  new Config(4, 5, 16, 8, deflate_fast),           /* 2 */
      +  new Config(4, 6, 32, 32, deflate_fast),          /* 3 */
      +
      +  new Config(4, 4, 16, 16, deflate_slow),          /* 4 lazy matches */
      +  new Config(8, 16, 32, 32, deflate_slow),         /* 5 */
      +  new Config(8, 16, 128, 128, deflate_slow),       /* 6 */
      +  new Config(8, 32, 128, 256, deflate_slow),       /* 7 */
      +  new Config(32, 128, 258, 1024, deflate_slow),    /* 8 */
      +  new Config(32, 258, 258, 4096, deflate_slow)     /* 9 max compression */
      +];
      +
      +
      +/* ===========================================================================
      + * Initialize the "longest match" routines for a new zlib stream
      + */
      +function lm_init(s) {
      +  s.window_size = 2 * s.w_size;
      +
      +  /*** CLEAR_HASH(s); ***/
      +  zero(s.head); // Fill with NIL (= 0);
      +
      +  /* Set the default configuration parameters:
      +   */
      +  s.max_lazy_match = configuration_table[s.level].max_lazy;
      +  s.good_match = configuration_table[s.level].good_length;
      +  s.nice_match = configuration_table[s.level].nice_length;
      +  s.max_chain_length = configuration_table[s.level].max_chain;
      +
      +  s.strstart = 0;
      +  s.block_start = 0;
      +  s.lookahead = 0;
      +  s.insert = 0;
      +  s.match_length = s.prev_length = MIN_MATCH - 1;
      +  s.match_available = 0;
      +  s.ins_h = 0;
      +}
      +
      +
      +function DeflateState() {
      +  this.strm = null;            /* pointer back to this zlib stream */
      +  this.status = 0;            /* as the name implies */
      +  this.pending_buf = null;      /* output still pending */
      +  this.pending_buf_size = 0;  /* size of pending_buf */
      +  this.pending_out = 0;       /* next pending byte to output to the stream */
      +  this.pending = 0;           /* nb of bytes in the pending buffer */
      +  this.wrap = 0;              /* bit 0 true for zlib, bit 1 true for gzip */
      +  this.gzhead = null;         /* gzip header information to write */
      +  this.gzindex = 0;           /* where in extra, name, or comment */
      +  this.method = Z_DEFLATED; /* can only be DEFLATED */
      +  this.last_flush = -1;   /* value of flush param for previous deflate call */
      +
      +  this.w_size = 0;  /* LZ77 window size (32K by default) */
      +  this.w_bits = 0;  /* log2(w_size)  (8..16) */
      +  this.w_mask = 0;  /* w_size - 1 */
      +
      +  this.window = null;
      +  /* Sliding window. Input bytes are read into the second half of the window,
      +   * and move to the first half later to keep a dictionary of at least wSize
      +   * bytes. With this organization, matches are limited to a distance of
      +   * wSize-MAX_MATCH bytes, but this ensures that IO is always
      +   * performed with a length multiple of the block size.
      +   */
      +
      +  this.window_size = 0;
      +  /* Actual size of window: 2*wSize, except when the user input buffer
      +   * is directly used as sliding window.
      +   */
      +
      +  this.prev = null;
      +  /* Link to older string with same hash index. To limit the size of this
      +   * array to 64K, this link is maintained only for the last 32K strings.
      +   * An index in this array is thus a window index modulo 32K.
      +   */
      +
      +  this.head = null;   /* Heads of the hash chains or NIL. */
      +
      +  this.ins_h = 0;       /* hash index of string to be inserted */
      +  this.hash_size = 0;   /* number of elements in hash table */
      +  this.hash_bits = 0;   /* log2(hash_size) */
      +  this.hash_mask = 0;   /* hash_size-1 */
      +
      +  this.hash_shift = 0;
      +  /* Number of bits by which ins_h must be shifted at each input
      +   * step. It must be such that after MIN_MATCH steps, the oldest
      +   * byte no longer takes part in the hash key, that is:
      +   *   hash_shift * MIN_MATCH >= hash_bits
      +   */
      +
      +  this.block_start = 0;
      +  /* Window position at the beginning of the current output block. Gets
      +   * negative when the window is moved backwards.
      +   */
      +
      +  this.match_length = 0;      /* length of best match */
      +  this.prev_match = 0;        /* previous match */
      +  this.match_available = 0;   /* set if previous match exists */
      +  this.strstart = 0;          /* start of string to insert */
      +  this.match_start = 0;       /* start of matching string */
      +  this.lookahead = 0;         /* number of valid bytes ahead in window */
      +
      +  this.prev_length = 0;
      +  /* Length of the best match at previous step. Matches not greater than this
      +   * are discarded. This is used in the lazy match evaluation.
      +   */
      +
      +  this.max_chain_length = 0;
      +  /* To speed up deflation, hash chains are never searched beyond this
      +   * length.  A higher limit improves compression ratio but degrades the
      +   * speed.
      +   */
      +
      +  this.max_lazy_match = 0;
      +  /* Attempt to find a better match only when the current match is strictly
      +   * smaller than this value. This mechanism is used only for compression
      +   * levels >= 4.
      +   */
      +  // That's alias to max_lazy_match, don't use directly
      +  //this.max_insert_length = 0;
      +  /* Insert new strings in the hash table only if the match length is not
      +   * greater than this length. This saves time but degrades compression.
      +   * max_insert_length is used only for compression levels <= 3.
      +   */
      +
      +  this.level = 0;     /* compression level (1..9) */
      +  this.strategy = 0;  /* favor or force Huffman coding*/
      +
      +  this.good_match = 0;
      +  /* Use a faster search when the previous match is longer than this */
      +
      +  this.nice_match = 0; /* Stop searching when current match exceeds this */
      +
      +              /* used by trees.c: */
      +
      +  /* Didn't use ct_data typedef below to suppress compiler warning */
      +
      +  // struct ct_data_s dyn_ltree[HEAP_SIZE];   /* literal and length tree */
      +  // struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */
      +  // struct ct_data_s bl_tree[2*BL_CODES+1];  /* Huffman tree for bit lengths */
      +
      +  // Use flat array of DOUBLE size, with interleaved fata,
      +  // because JS does not support effective
      +  this.dyn_ltree  = new utils.Buf16(HEAP_SIZE * 2);
      +  this.dyn_dtree  = new utils.Buf16((2 * D_CODES + 1) * 2);
      +  this.bl_tree    = new utils.Buf16((2 * BL_CODES + 1) * 2);
      +  zero(this.dyn_ltree);
      +  zero(this.dyn_dtree);
      +  zero(this.bl_tree);
      +
      +  this.l_desc   = null;         /* desc. for literal tree */
      +  this.d_desc   = null;         /* desc. for distance tree */
      +  this.bl_desc  = null;         /* desc. for bit length tree */
      +
      +  //ush bl_count[MAX_BITS+1];
      +  this.bl_count = new utils.Buf16(MAX_BITS + 1);
      +  /* number of codes at each bit length for an optimal tree */
      +
      +  //int heap[2*L_CODES+1];      /* heap used to build the Huffman trees */
      +  this.heap = new utils.Buf16(2 * L_CODES + 1);  /* heap used to build the Huffman trees */
      +  zero(this.heap);
      +
      +  this.heap_len = 0;               /* number of elements in the heap */
      +  this.heap_max = 0;               /* element of largest frequency */
      +  /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
      +   * The same heap array is used to build all trees.
      +   */
      +
      +  this.depth = new utils.Buf16(2 * L_CODES + 1); //uch depth[2*L_CODES+1];
      +  zero(this.depth);
      +  /* Depth of each subtree used as tie breaker for trees of equal frequency
      +   */
      +
      +  this.l_buf = 0;          /* buffer index for literals or lengths */
      +
      +  this.lit_bufsize = 0;
      +  /* Size of match buffer for literals/lengths.  There are 4 reasons for
      +   * limiting lit_bufsize to 64K:
      +   *   - frequencies can be kept in 16 bit counters
      +   *   - if compression is not successful for the first block, all input
      +   *     data is still in the window so we can still emit a stored block even
      +   *     when input comes from standard input.  (This can also be done for
      +   *     all blocks if lit_bufsize is not greater than 32K.)
      +   *   - if compression is not successful for a file smaller than 64K, we can
      +   *     even emit a stored file instead of a stored block (saving 5 bytes).
      +   *     This is applicable only for zip (not gzip or zlib).
      +   *   - creating new Huffman trees less frequently may not provide fast
      +   *     adaptation to changes in the input data statistics. (Take for
      +   *     example a binary file with poorly compressible code followed by
      +   *     a highly compressible string table.) Smaller buffer sizes give
      +   *     fast adaptation but have of course the overhead of transmitting
      +   *     trees more frequently.
      +   *   - I can't count above 4
      +   */
      +
      +  this.last_lit = 0;      /* running index in l_buf */
      +
      +  this.d_buf = 0;
      +  /* Buffer index for distances. To simplify the code, d_buf and l_buf have
      +   * the same number of elements. To use different lengths, an extra flag
      +   * array would be necessary.
      +   */
      +
      +  this.opt_len = 0;       /* bit length of current block with optimal trees */
      +  this.static_len = 0;    /* bit length of current block with static trees */
      +  this.matches = 0;       /* number of string matches in current block */
      +  this.insert = 0;        /* bytes at end of window left to insert */
      +
      +
      +  this.bi_buf = 0;
      +  /* Output buffer. bits are inserted starting at the bottom (least
      +   * significant bits).
      +   */
      +  this.bi_valid = 0;
      +  /* Number of valid bits in bi_buf.  All bits above the last valid bit
      +   * are always zero.
      +   */
      +
      +  // Used for window memory init. We safely ignore it for JS. That makes
      +  // sense only for pointers and memory check tools.
      +  //this.high_water = 0;
      +  /* High water mark offset in window for initialized bytes -- bytes above
      +   * this are set to zero in order to avoid memory check warnings when
      +   * longest match routines access bytes past the input.  This is then
      +   * updated to the new high water mark.
      +   */
      +}
      +
      +
      +function deflateResetKeep(strm) {
      +  var s;
      +
      +  if (!strm || !strm.state) {
      +    return err(strm, Z_STREAM_ERROR);
      +  }
      +
      +  strm.total_in = strm.total_out = 0;
      +  strm.data_type = Z_UNKNOWN;
      +
      +  s = strm.state;
      +  s.pending = 0;
      +  s.pending_out = 0;
      +
      +  if (s.wrap < 0) {
      +    s.wrap = -s.wrap;
      +    /* was made negative by deflate(..., Z_FINISH); */
      +  }
      +  s.status = (s.wrap ? INIT_STATE : BUSY_STATE);
      +  strm.adler = (s.wrap === 2) ?
      +    0  // crc32(0, Z_NULL, 0)
      +  :
      +    1; // adler32(0, Z_NULL, 0)
      +  s.last_flush = Z_NO_FLUSH;
      +  trees._tr_init(s);
      +  return Z_OK;
      +}
      +
      +
      +function deflateReset(strm) {
      +  var ret = deflateResetKeep(strm);
      +  if (ret === Z_OK) {
      +    lm_init(strm.state);
      +  }
      +  return ret;
      +}
      +
      +
      +function deflateSetHeader(strm, head) {
      +  if (!strm || !strm.state) { return Z_STREAM_ERROR; }
      +  if (strm.state.wrap !== 2) { return Z_STREAM_ERROR; }
      +  strm.state.gzhead = head;
      +  return Z_OK;
      +}
      +
      +
      +function deflateInit2(strm, level, method, windowBits, memLevel, strategy) {
      +  if (!strm) { // === Z_NULL
      +    return Z_STREAM_ERROR;
      +  }
      +  var wrap = 1;
      +
      +  if (level === Z_DEFAULT_COMPRESSION) {
      +    level = 6;
      +  }
      +
      +  if (windowBits < 0) { /* suppress zlib wrapper */
      +    wrap = 0;
      +    windowBits = -windowBits;
      +  }
      +
      +  else if (windowBits > 15) {
      +    wrap = 2;           /* write gzip wrapper instead */
      +    windowBits -= 16;
      +  }
      +
      +
      +  if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method !== Z_DEFLATED ||
      +    windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
      +    strategy < 0 || strategy > Z_FIXED) {
      +    return err(strm, Z_STREAM_ERROR);
      +  }
      +
      +
      +  if (windowBits === 8) {
      +    windowBits = 9;
      +  }
      +  /* until 256-byte window bug fixed */
      +
      +  var s = new DeflateState();
      +
      +  strm.state = s;
      +  s.strm = strm;
      +
      +  s.wrap = wrap;
      +  s.gzhead = null;
      +  s.w_bits = windowBits;
      +  s.w_size = 1 << s.w_bits;
      +  s.w_mask = s.w_size - 1;
      +
      +  s.hash_bits = memLevel + 7;
      +  s.hash_size = 1 << s.hash_bits;
      +  s.hash_mask = s.hash_size - 1;
      +  s.hash_shift = ~~((s.hash_bits + MIN_MATCH - 1) / MIN_MATCH);
      +
      +  s.window = new utils.Buf8(s.w_size * 2);
      +  s.head = new utils.Buf16(s.hash_size);
      +  s.prev = new utils.Buf16(s.w_size);
      +
      +  // Don't need mem init magic for JS.
      +  //s.high_water = 0;  /* nothing written to s->window yet */
      +
      +  s.lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
      +
      +  s.pending_buf_size = s.lit_bufsize * 4;
      +
      +  //overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
      +  //s->pending_buf = (uchf *) overlay;
      +  s.pending_buf = new utils.Buf8(s.pending_buf_size);
      +
      +  // It is offset from `s.pending_buf` (size is `s.lit_bufsize * 2`)
      +  //s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
      +  s.d_buf = 1 * s.lit_bufsize;
      +
      +  //s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
      +  s.l_buf = (1 + 2) * s.lit_bufsize;
      +
      +  s.level = level;
      +  s.strategy = strategy;
      +  s.method = method;
      +
      +  return deflateReset(strm);
      +}
      +
      +function deflateInit(strm, level) {
      +  return deflateInit2(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY);
      +}
      +
      +
      +function deflate(strm, flush) {
      +  var old_flush, s;
      +  var beg, val; // for gzip header write only
      +
      +  if (!strm || !strm.state ||
      +    flush > Z_BLOCK || flush < 0) {
      +    return strm ? err(strm, Z_STREAM_ERROR) : Z_STREAM_ERROR;
      +  }
      +
      +  s = strm.state;
      +
      +  if (!strm.output ||
      +      (!strm.input && strm.avail_in !== 0) ||
      +      (s.status === FINISH_STATE && flush !== Z_FINISH)) {
      +    return err(strm, (strm.avail_out === 0) ? Z_BUF_ERROR : Z_STREAM_ERROR);
      +  }
      +
      +  s.strm = strm; /* just in case */
      +  old_flush = s.last_flush;
      +  s.last_flush = flush;
      +
      +  /* Write the header */
      +  if (s.status === INIT_STATE) {
      +
      +    if (s.wrap === 2) { // GZIP header
      +      strm.adler = 0;  //crc32(0L, Z_NULL, 0);
      +      put_byte(s, 31);
      +      put_byte(s, 139);
      +      put_byte(s, 8);
      +      if (!s.gzhead) { // s->gzhead == Z_NULL
      +        put_byte(s, 0);
      +        put_byte(s, 0);
      +        put_byte(s, 0);
      +        put_byte(s, 0);
      +        put_byte(s, 0);
      +        put_byte(s, s.level === 9 ? 2 :
      +                    (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ?
      +                     4 : 0));
      +        put_byte(s, OS_CODE);
      +        s.status = BUSY_STATE;
      +      }
      +      else {
      +        put_byte(s, (s.gzhead.text ? 1 : 0) +
      +                    (s.gzhead.hcrc ? 2 : 0) +
      +                    (!s.gzhead.extra ? 0 : 4) +
      +                    (!s.gzhead.name ? 0 : 8) +
      +                    (!s.gzhead.comment ? 0 : 16)
      +                );
      +        put_byte(s, s.gzhead.time & 0xff);
      +        put_byte(s, (s.gzhead.time >> 8) & 0xff);
      +        put_byte(s, (s.gzhead.time >> 16) & 0xff);
      +        put_byte(s, (s.gzhead.time >> 24) & 0xff);
      +        put_byte(s, s.level === 9 ? 2 :
      +                    (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ?
      +                     4 : 0));
      +        put_byte(s, s.gzhead.os & 0xff);
      +        if (s.gzhead.extra && s.gzhead.extra.length) {
      +          put_byte(s, s.gzhead.extra.length & 0xff);
      +          put_byte(s, (s.gzhead.extra.length >> 8) & 0xff);
      +        }
      +        if (s.gzhead.hcrc) {
      +          strm.adler = crc32(strm.adler, s.pending_buf, s.pending, 0);
      +        }
      +        s.gzindex = 0;
      +        s.status = EXTRA_STATE;
      +      }
      +    }
      +    else // DEFLATE header
      +    {
      +      var header = (Z_DEFLATED + ((s.w_bits - 8) << 4)) << 8;
      +      var level_flags = -1;
      +
      +      if (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2) {
      +        level_flags = 0;
      +      } else if (s.level < 6) {
      +        level_flags = 1;
      +      } else if (s.level === 6) {
      +        level_flags = 2;
      +      } else {
      +        level_flags = 3;
      +      }
      +      header |= (level_flags << 6);
      +      if (s.strstart !== 0) { header |= PRESET_DICT; }
      +      header += 31 - (header % 31);
      +
      +      s.status = BUSY_STATE;
      +      putShortMSB(s, header);
      +
      +      /* Save the adler32 of the preset dictionary: */
      +      if (s.strstart !== 0) {
      +        putShortMSB(s, strm.adler >>> 16);
      +        putShortMSB(s, strm.adler & 0xffff);
      +      }
      +      strm.adler = 1; // adler32(0L, Z_NULL, 0);
      +    }
      +  }
      +
      +//#ifdef GZIP
      +  if (s.status === EXTRA_STATE) {
      +    if (s.gzhead.extra/* != Z_NULL*/) {
      +      beg = s.pending;  /* start of bytes to update crc */
      +
      +      while (s.gzindex < (s.gzhead.extra.length & 0xffff)) {
      +        if (s.pending === s.pending_buf_size) {
      +          if (s.gzhead.hcrc && s.pending > beg) {
      +            strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
      +          }
      +          flush_pending(strm);
      +          beg = s.pending;
      +          if (s.pending === s.pending_buf_size) {
      +            break;
      +          }
      +        }
      +        put_byte(s, s.gzhead.extra[s.gzindex] & 0xff);
      +        s.gzindex++;
      +      }
      +      if (s.gzhead.hcrc && s.pending > beg) {
      +        strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
      +      }
      +      if (s.gzindex === s.gzhead.extra.length) {
      +        s.gzindex = 0;
      +        s.status = NAME_STATE;
      +      }
      +    }
      +    else {
      +      s.status = NAME_STATE;
      +    }
      +  }
      +  if (s.status === NAME_STATE) {
      +    if (s.gzhead.name/* != Z_NULL*/) {
      +      beg = s.pending;  /* start of bytes to update crc */
      +      //int val;
      +
      +      do {
      +        if (s.pending === s.pending_buf_size) {
      +          if (s.gzhead.hcrc && s.pending > beg) {
      +            strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
      +          }
      +          flush_pending(strm);
      +          beg = s.pending;
      +          if (s.pending === s.pending_buf_size) {
      +            val = 1;
      +            break;
      +          }
      +        }
      +        // JS specific: little magic to add zero terminator to end of string
      +        if (s.gzindex < s.gzhead.name.length) {
      +          val = s.gzhead.name.charCodeAt(s.gzindex++) & 0xff;
      +        } else {
      +          val = 0;
      +        }
      +        put_byte(s, val);
      +      } while (val !== 0);
      +
      +      if (s.gzhead.hcrc && s.pending > beg) {
      +        strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
      +      }
      +      if (val === 0) {
      +        s.gzindex = 0;
      +        s.status = COMMENT_STATE;
      +      }
      +    }
      +    else {
      +      s.status = COMMENT_STATE;
      +    }
      +  }
      +  if (s.status === COMMENT_STATE) {
      +    if (s.gzhead.comment/* != Z_NULL*/) {
      +      beg = s.pending;  /* start of bytes to update crc */
      +      //int val;
      +
      +      do {
      +        if (s.pending === s.pending_buf_size) {
      +          if (s.gzhead.hcrc && s.pending > beg) {
      +            strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
      +          }
      +          flush_pending(strm);
      +          beg = s.pending;
      +          if (s.pending === s.pending_buf_size) {
      +            val = 1;
      +            break;
      +          }
      +        }
      +        // JS specific: little magic to add zero terminator to end of string
      +        if (s.gzindex < s.gzhead.comment.length) {
      +          val = s.gzhead.comment.charCodeAt(s.gzindex++) & 0xff;
      +        } else {
      +          val = 0;
      +        }
      +        put_byte(s, val);
      +      } while (val !== 0);
      +
      +      if (s.gzhead.hcrc && s.pending > beg) {
      +        strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
      +      }
      +      if (val === 0) {
      +        s.status = HCRC_STATE;
      +      }
      +    }
      +    else {
      +      s.status = HCRC_STATE;
      +    }
      +  }
      +  if (s.status === HCRC_STATE) {
      +    if (s.gzhead.hcrc) {
      +      if (s.pending + 2 > s.pending_buf_size) {
      +        flush_pending(strm);
      +      }
      +      if (s.pending + 2 <= s.pending_buf_size) {
      +        put_byte(s, strm.adler & 0xff);
      +        put_byte(s, (strm.adler >> 8) & 0xff);
      +        strm.adler = 0; //crc32(0L, Z_NULL, 0);
      +        s.status = BUSY_STATE;
      +      }
      +    }
      +    else {
      +      s.status = BUSY_STATE;
      +    }
      +  }
      +//#endif
      +
      +  /* Flush as much pending output as possible */
      +  if (s.pending !== 0) {
      +    flush_pending(strm);
      +    if (strm.avail_out === 0) {
      +      /* Since avail_out is 0, deflate will be called again with
      +       * more output space, but possibly with both pending and
      +       * avail_in equal to zero. There won't be anything to do,
      +       * but this is not an error situation so make sure we
      +       * return OK instead of BUF_ERROR at next call of deflate:
      +       */
      +      s.last_flush = -1;
      +      return Z_OK;
      +    }
      +
      +    /* Make sure there is something to do and avoid duplicate consecutive
      +     * flushes. For repeated and useless calls with Z_FINISH, we keep
      +     * returning Z_STREAM_END instead of Z_BUF_ERROR.
      +     */
      +  } else if (strm.avail_in === 0 && rank(flush) <= rank(old_flush) &&
      +    flush !== Z_FINISH) {
      +    return err(strm, Z_BUF_ERROR);
      +  }
      +
      +  /* User must not provide more input after the first FINISH: */
      +  if (s.status === FINISH_STATE && strm.avail_in !== 0) {
      +    return err(strm, Z_BUF_ERROR);
      +  }
      +
      +  /* Start a new block or continue the current one.
      +   */
      +  if (strm.avail_in !== 0 || s.lookahead !== 0 ||
      +    (flush !== Z_NO_FLUSH && s.status !== FINISH_STATE)) {
      +    var bstate = (s.strategy === Z_HUFFMAN_ONLY) ? deflate_huff(s, flush) :
      +      (s.strategy === Z_RLE ? deflate_rle(s, flush) :
      +        configuration_table[s.level].func(s, flush));
      +
      +    if (bstate === BS_FINISH_STARTED || bstate === BS_FINISH_DONE) {
      +      s.status = FINISH_STATE;
      +    }
      +    if (bstate === BS_NEED_MORE || bstate === BS_FINISH_STARTED) {
      +      if (strm.avail_out === 0) {
      +        s.last_flush = -1;
      +        /* avoid BUF_ERROR next call, see above */
      +      }
      +      return Z_OK;
      +      /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
      +       * of deflate should use the same flush parameter to make sure
      +       * that the flush is complete. So we don't have to output an
      +       * empty block here, this will be done at next call. This also
      +       * ensures that for a very small output buffer, we emit at most
      +       * one empty block.
      +       */
      +    }
      +    if (bstate === BS_BLOCK_DONE) {
      +      if (flush === Z_PARTIAL_FLUSH) {
      +        trees._tr_align(s);
      +      }
      +      else if (flush !== Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
      +
      +        trees._tr_stored_block(s, 0, 0, false);
      +        /* For a full flush, this empty block will be recognized
      +         * as a special marker by inflate_sync().
      +         */
      +        if (flush === Z_FULL_FLUSH) {
      +          /*** CLEAR_HASH(s); ***/             /* forget history */
      +          zero(s.head); // Fill with NIL (= 0);
      +
      +          if (s.lookahead === 0) {
      +            s.strstart = 0;
      +            s.block_start = 0;
      +            s.insert = 0;
      +          }
      +        }
      +      }
      +      flush_pending(strm);
      +      if (strm.avail_out === 0) {
      +        s.last_flush = -1; /* avoid BUF_ERROR at next call, see above */
      +        return Z_OK;
      +      }
      +    }
      +  }
      +  //Assert(strm->avail_out > 0, "bug2");
      +  //if (strm.avail_out <= 0) { throw new Error("bug2");}
      +
      +  if (flush !== Z_FINISH) { return Z_OK; }
      +  if (s.wrap <= 0) { return Z_STREAM_END; }
      +
      +  /* Write the trailer */
      +  if (s.wrap === 2) {
      +    put_byte(s, strm.adler & 0xff);
      +    put_byte(s, (strm.adler >> 8) & 0xff);
      +    put_byte(s, (strm.adler >> 16) & 0xff);
      +    put_byte(s, (strm.adler >> 24) & 0xff);
      +    put_byte(s, strm.total_in & 0xff);
      +    put_byte(s, (strm.total_in >> 8) & 0xff);
      +    put_byte(s, (strm.total_in >> 16) & 0xff);
      +    put_byte(s, (strm.total_in >> 24) & 0xff);
      +  }
      +  else
      +  {
      +    putShortMSB(s, strm.adler >>> 16);
      +    putShortMSB(s, strm.adler & 0xffff);
      +  }
      +
      +  flush_pending(strm);
      +  /* If avail_out is zero, the application will call deflate again
      +   * to flush the rest.
      +   */
      +  if (s.wrap > 0) { s.wrap = -s.wrap; }
      +  /* write the trailer only once! */
      +  return s.pending !== 0 ? Z_OK : Z_STREAM_END;
      +}
      +
      +function deflateEnd(strm) {
      +  var status;
      +
      +  if (!strm/*== Z_NULL*/ || !strm.state/*== Z_NULL*/) {
      +    return Z_STREAM_ERROR;
      +  }
      +
      +  status = strm.state.status;
      +  if (status !== INIT_STATE &&
      +    status !== EXTRA_STATE &&
      +    status !== NAME_STATE &&
      +    status !== COMMENT_STATE &&
      +    status !== HCRC_STATE &&
      +    status !== BUSY_STATE &&
      +    status !== FINISH_STATE
      +  ) {
      +    return err(strm, Z_STREAM_ERROR);
      +  }
      +
      +  strm.state = null;
      +
      +  return status === BUSY_STATE ? err(strm, Z_DATA_ERROR) : Z_OK;
      +}
      +
      +
      +/* =========================================================================
      + * Initializes the compression dictionary from the given byte
      + * sequence without producing any compressed output.
      + */
      +function deflateSetDictionary(strm, dictionary) {
      +  var dictLength = dictionary.length;
      +
      +  var s;
      +  var str, n;
      +  var wrap;
      +  var avail;
      +  var next;
      +  var input;
      +  var tmpDict;
      +
      +  if (!strm/*== Z_NULL*/ || !strm.state/*== Z_NULL*/) {
      +    return Z_STREAM_ERROR;
      +  }
      +
      +  s = strm.state;
      +  wrap = s.wrap;
      +
      +  if (wrap === 2 || (wrap === 1 && s.status !== INIT_STATE) || s.lookahead) {
      +    return Z_STREAM_ERROR;
      +  }
      +
      +  /* when using zlib wrappers, compute Adler-32 for provided dictionary */
      +  if (wrap === 1) {
      +    /* adler32(strm->adler, dictionary, dictLength); */
      +    strm.adler = adler32(strm.adler, dictionary, dictLength, 0);
      +  }
      +
      +  s.wrap = 0;   /* avoid computing Adler-32 in read_buf */
      +
      +  /* if dictionary would fill window, just replace the history */
      +  if (dictLength >= s.w_size) {
      +    if (wrap === 0) {            /* already empty otherwise */
      +      /*** CLEAR_HASH(s); ***/
      +      zero(s.head); // Fill with NIL (= 0);
      +      s.strstart = 0;
      +      s.block_start = 0;
      +      s.insert = 0;
      +    }
      +    /* use the tail */
      +    // dictionary = dictionary.slice(dictLength - s.w_size);
      +    tmpDict = new utils.Buf8(s.w_size);
      +    utils.arraySet(tmpDict, dictionary, dictLength - s.w_size, s.w_size, 0);
      +    dictionary = tmpDict;
      +    dictLength = s.w_size;
      +  }
      +  /* insert dictionary into window and hash */
      +  avail = strm.avail_in;
      +  next = strm.next_in;
      +  input = strm.input;
      +  strm.avail_in = dictLength;
      +  strm.next_in = 0;
      +  strm.input = dictionary;
      +  fill_window(s);
      +  while (s.lookahead >= MIN_MATCH) {
      +    str = s.strstart;
      +    n = s.lookahead - (MIN_MATCH - 1);
      +    do {
      +      /* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */
      +      s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str + MIN_MATCH - 1]) & s.hash_mask;
      +
      +      s.prev[str & s.w_mask] = s.head[s.ins_h];
      +
      +      s.head[s.ins_h] = str;
      +      str++;
      +    } while (--n);
      +    s.strstart = str;
      +    s.lookahead = MIN_MATCH - 1;
      +    fill_window(s);
      +  }
      +  s.strstart += s.lookahead;
      +  s.block_start = s.strstart;
      +  s.insert = s.lookahead;
      +  s.lookahead = 0;
      +  s.match_length = s.prev_length = MIN_MATCH - 1;
      +  s.match_available = 0;
      +  strm.next_in = next;
      +  strm.input = input;
      +  strm.avail_in = avail;
      +  s.wrap = wrap;
      +  return Z_OK;
      +}
      +
      +
      +exports.deflateInit = deflateInit;
      +exports.deflateInit2 = deflateInit2;
      +exports.deflateReset = deflateReset;
      +exports.deflateResetKeep = deflateResetKeep;
      +exports.deflateSetHeader = deflateSetHeader;
      +exports.deflate = deflate;
      +exports.deflateEnd = deflateEnd;
      +exports.deflateSetDictionary = deflateSetDictionary;
      +exports.deflateInfo = 'pako deflate (from Nodeca project)';
      +
      +/* Not implemented
      +exports.deflateBound = deflateBound;
      +exports.deflateCopy = deflateCopy;
      +exports.deflateParams = deflateParams;
      +exports.deflatePending = deflatePending;
      +exports.deflatePrime = deflatePrime;
      +exports.deflateTune = deflateTune;
      +*/
      +
      +},{"../utils/common":62,"./adler32":64,"./crc32":66,"./messages":72,"./trees":73}],68:[function(require,module,exports){
      +'use strict';
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +function GZheader() {
      +  /* true if compressed data believed to be text */
      +  this.text       = 0;
      +  /* modification time */
      +  this.time       = 0;
      +  /* extra flags (not used when writing a gzip file) */
      +  this.xflags     = 0;
      +  /* operating system */
      +  this.os         = 0;
      +  /* pointer to extra field or Z_NULL if none */
      +  this.extra      = null;
      +  /* extra field length (valid if extra != Z_NULL) */
      +  this.extra_len  = 0; // Actually, we don't need it in JS,
      +                       // but leave for few code modifications
      +
      +  //
      +  // Setup limits is not necessary because in js we should not preallocate memory
      +  // for inflate use constant limit in 65536 bytes
      +  //
      +
      +  /* space at extra (only when reading header) */
      +  // this.extra_max  = 0;
      +  /* pointer to zero-terminated file name or Z_NULL */
      +  this.name       = '';
      +  /* space at name (only when reading header) */
      +  // this.name_max   = 0;
      +  /* pointer to zero-terminated comment or Z_NULL */
      +  this.comment    = '';
      +  /* space at comment (only when reading header) */
      +  // this.comm_max   = 0;
      +  /* true if there was or will be a header crc */
      +  this.hcrc       = 0;
      +  /* true when done reading gzip header (not used when writing a gzip file) */
      +  this.done       = false;
      +}
      +
      +module.exports = GZheader;
      +
      +},{}],69:[function(require,module,exports){
      +'use strict';
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +// See state defs from inflate.js
      +var BAD = 30;       /* got a data error -- remain here until reset */
      +var TYPE = 12;      /* i: waiting for type bits, including last-flag bit */
      +
      +/*
      +   Decode literal, length, and distance codes and write out the resulting
      +   literal and match bytes until either not enough input or output is
      +   available, an end-of-block is encountered, or a data error is encountered.
      +   When large enough input and output buffers are supplied to inflate(), for
      +   example, a 16K input buffer and a 64K output buffer, more than 95% of the
      +   inflate execution time is spent in this routine.
      +
      +   Entry assumptions:
      +
      +        state.mode === LEN
      +        strm.avail_in >= 6
      +        strm.avail_out >= 258
      +        start >= strm.avail_out
      +        state.bits < 8
      +
      +   On return, state.mode is one of:
      +
      +        LEN -- ran out of enough output space or enough available input
      +        TYPE -- reached end of block code, inflate() to interpret next block
      +        BAD -- error in block data
      +
      +   Notes:
      +
      +    - The maximum input bits used by a length/distance pair is 15 bits for the
      +      length code, 5 bits for the length extra, 15 bits for the distance code,
      +      and 13 bits for the distance extra.  This totals 48 bits, or six bytes.
      +      Therefore if strm.avail_in >= 6, then there is enough input to avoid
      +      checking for available input while decoding.
      +
      +    - The maximum bytes that a single length/distance pair can output is 258
      +      bytes, which is the maximum length that can be coded.  inflate_fast()
      +      requires strm.avail_out >= 258 for each loop to avoid checking for
      +      output space.
      + */
      +module.exports = function inflate_fast(strm, start) {
      +  var state;
      +  var _in;                    /* local strm.input */
      +  var last;                   /* have enough input while in < last */
      +  var _out;                   /* local strm.output */
      +  var beg;                    /* inflate()'s initial strm.output */
      +  var end;                    /* while out < end, enough space available */
      +//#ifdef INFLATE_STRICT
      +  var dmax;                   /* maximum distance from zlib header */
      +//#endif
      +  var wsize;                  /* window size or zero if not using window */
      +  var whave;                  /* valid bytes in the window */
      +  var wnext;                  /* window write index */
      +  // Use `s_window` instead `window`, avoid conflict with instrumentation tools
      +  var s_window;               /* allocated sliding window, if wsize != 0 */
      +  var hold;                   /* local strm.hold */
      +  var bits;                   /* local strm.bits */
      +  var lcode;                  /* local strm.lencode */
      +  var dcode;                  /* local strm.distcode */
      +  var lmask;                  /* mask for first level of length codes */
      +  var dmask;                  /* mask for first level of distance codes */
      +  var here;                   /* retrieved table entry */
      +  var op;                     /* code bits, operation, extra bits, or */
      +                              /*  window position, window bytes to copy */
      +  var len;                    /* match length, unused bytes */
      +  var dist;                   /* match distance */
      +  var from;                   /* where to copy match from */
      +  var from_source;
      +
      +
      +  var input, output; // JS specific, because we have no pointers
      +
      +  /* copy state to local variables */
      +  state = strm.state;
      +  //here = state.here;
      +  _in = strm.next_in;
      +  input = strm.input;
      +  last = _in + (strm.avail_in - 5);
      +  _out = strm.next_out;
      +  output = strm.output;
      +  beg = _out - (start - strm.avail_out);
      +  end = _out + (strm.avail_out - 257);
      +//#ifdef INFLATE_STRICT
      +  dmax = state.dmax;
      +//#endif
      +  wsize = state.wsize;
      +  whave = state.whave;
      +  wnext = state.wnext;
      +  s_window = state.window;
      +  hold = state.hold;
      +  bits = state.bits;
      +  lcode = state.lencode;
      +  dcode = state.distcode;
      +  lmask = (1 << state.lenbits) - 1;
      +  dmask = (1 << state.distbits) - 1;
      +
      +
      +  /* decode literals and length/distances until end-of-block or not enough
      +     input data or output space */
      +
      +  top:
      +  do {
      +    if (bits < 15) {
      +      hold += input[_in++] << bits;
      +      bits += 8;
      +      hold += input[_in++] << bits;
      +      bits += 8;
      +    }
      +
      +    here = lcode[hold & lmask];
      +
      +    dolen:
      +    for (;;) { // Goto emulation
      +      op = here >>> 24/*here.bits*/;
      +      hold >>>= op;
      +      bits -= op;
      +      op = (here >>> 16) & 0xff/*here.op*/;
      +      if (op === 0) {                          /* literal */
      +        //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
      +        //        "inflate:         literal '%c'\n" :
      +        //        "inflate:         literal 0x%02x\n", here.val));
      +        output[_out++] = here & 0xffff/*here.val*/;
      +      }
      +      else if (op & 16) {                     /* length base */
      +        len = here & 0xffff/*here.val*/;
      +        op &= 15;                           /* number of extra bits */
      +        if (op) {
      +          if (bits < op) {
      +            hold += input[_in++] << bits;
      +            bits += 8;
      +          }
      +          len += hold & ((1 << op) - 1);
      +          hold >>>= op;
      +          bits -= op;
      +        }
      +        //Tracevv((stderr, "inflate:         length %u\n", len));
      +        if (bits < 15) {
      +          hold += input[_in++] << bits;
      +          bits += 8;
      +          hold += input[_in++] << bits;
      +          bits += 8;
      +        }
      +        here = dcode[hold & dmask];
      +
      +        dodist:
      +        for (;;) { // goto emulation
      +          op = here >>> 24/*here.bits*/;
      +          hold >>>= op;
      +          bits -= op;
      +          op = (here >>> 16) & 0xff/*here.op*/;
      +
      +          if (op & 16) {                      /* distance base */
      +            dist = here & 0xffff/*here.val*/;
      +            op &= 15;                       /* number of extra bits */
      +            if (bits < op) {
      +              hold += input[_in++] << bits;
      +              bits += 8;
      +              if (bits < op) {
      +                hold += input[_in++] << bits;
      +                bits += 8;
      +              }
      +            }
      +            dist += hold & ((1 << op) - 1);
      +//#ifdef INFLATE_STRICT
      +            if (dist > dmax) {
      +              strm.msg = 'invalid distance too far back';
      +              state.mode = BAD;
      +              break top;
      +            }
      +//#endif
      +            hold >>>= op;
      +            bits -= op;
      +            //Tracevv((stderr, "inflate:         distance %u\n", dist));
      +            op = _out - beg;                /* max distance in output */
      +            if (dist > op) {                /* see if copy from window */
      +              op = dist - op;               /* distance back in window */
      +              if (op > whave) {
      +                if (state.sane) {
      +                  strm.msg = 'invalid distance too far back';
      +                  state.mode = BAD;
      +                  break top;
      +                }
      +
      +// (!) This block is disabled in zlib defailts,
      +// don't enable it for binary compatibility
      +//#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
      +//                if (len <= op - whave) {
      +//                  do {
      +//                    output[_out++] = 0;
      +//                  } while (--len);
      +//                  continue top;
      +//                }
      +//                len -= op - whave;
      +//                do {
      +//                  output[_out++] = 0;
      +//                } while (--op > whave);
      +//                if (op === 0) {
      +//                  from = _out - dist;
      +//                  do {
      +//                    output[_out++] = output[from++];
      +//                  } while (--len);
      +//                  continue top;
      +//                }
      +//#endif
      +              }
      +              from = 0; // window index
      +              from_source = s_window;
      +              if (wnext === 0) {           /* very common case */
      +                from += wsize - op;
      +                if (op < len) {         /* some from window */
      +                  len -= op;
      +                  do {
      +                    output[_out++] = s_window[from++];
      +                  } while (--op);
      +                  from = _out - dist;  /* rest from output */
      +                  from_source = output;
      +                }
      +              }
      +              else if (wnext < op) {      /* wrap around window */
      +                from += wsize + wnext - op;
      +                op -= wnext;
      +                if (op < len) {         /* some from end of window */
      +                  len -= op;
      +                  do {
      +                    output[_out++] = s_window[from++];
      +                  } while (--op);
      +                  from = 0;
      +                  if (wnext < len) {  /* some from start of window */
      +                    op = wnext;
      +                    len -= op;
      +                    do {
      +                      output[_out++] = s_window[from++];
      +                    } while (--op);
      +                    from = _out - dist;      /* rest from output */
      +                    from_source = output;
      +                  }
      +                }
      +              }
      +              else {                      /* contiguous in window */
      +                from += wnext - op;
      +                if (op < len) {         /* some from window */
      +                  len -= op;
      +                  do {
      +                    output[_out++] = s_window[from++];
      +                  } while (--op);
      +                  from = _out - dist;  /* rest from output */
      +                  from_source = output;
      +                }
      +              }
      +              while (len > 2) {
      +                output[_out++] = from_source[from++];
      +                output[_out++] = from_source[from++];
      +                output[_out++] = from_source[from++];
      +                len -= 3;
      +              }
      +              if (len) {
      +                output[_out++] = from_source[from++];
      +                if (len > 1) {
      +                  output[_out++] = from_source[from++];
      +                }
      +              }
      +            }
      +            else {
      +              from = _out - dist;          /* copy direct from output */
      +              do {                        /* minimum length is three */
      +                output[_out++] = output[from++];
      +                output[_out++] = output[from++];
      +                output[_out++] = output[from++];
      +                len -= 3;
      +              } while (len > 2);
      +              if (len) {
      +                output[_out++] = output[from++];
      +                if (len > 1) {
      +                  output[_out++] = output[from++];
      +                }
      +              }
      +            }
      +          }
      +          else if ((op & 64) === 0) {          /* 2nd level distance code */
      +            here = dcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))];
      +            continue dodist;
      +          }
      +          else {
      +            strm.msg = 'invalid distance code';
      +            state.mode = BAD;
      +            break top;
      +          }
      +
      +          break; // need to emulate goto via "continue"
      +        }
      +      }
      +      else if ((op & 64) === 0) {              /* 2nd level length code */
      +        here = lcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))];
      +        continue dolen;
      +      }
      +      else if (op & 32) {                     /* end-of-block */
      +        //Tracevv((stderr, "inflate:         end of block\n"));
      +        state.mode = TYPE;
      +        break top;
      +      }
      +      else {
      +        strm.msg = 'invalid literal/length code';
      +        state.mode = BAD;
      +        break top;
      +      }
      +
      +      break; // need to emulate goto via "continue"
      +    }
      +  } while (_in < last && _out < end);
      +
      +  /* return unused bytes (on entry, bits < 8, so in won't go too far back) */
      +  len = bits >> 3;
      +  _in -= len;
      +  bits -= len << 3;
      +  hold &= (1 << bits) - 1;
      +
      +  /* update state and return */
      +  strm.next_in = _in;
      +  strm.next_out = _out;
      +  strm.avail_in = (_in < last ? 5 + (last - _in) : 5 - (_in - last));
      +  strm.avail_out = (_out < end ? 257 + (end - _out) : 257 - (_out - end));
      +  state.hold = hold;
      +  state.bits = bits;
      +  return;
      +};
      +
      +},{}],70:[function(require,module,exports){
      +'use strict';
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +var utils         = require('../utils/common');
      +var adler32       = require('./adler32');
      +var crc32         = require('./crc32');
      +var inflate_fast  = require('./inffast');
      +var inflate_table = require('./inftrees');
      +
      +var CODES = 0;
      +var LENS = 1;
      +var DISTS = 2;
      +
      +/* Public constants ==========================================================*/
      +/* ===========================================================================*/
      +
      +
      +/* Allowed flush values; see deflate() and inflate() below for details */
      +//var Z_NO_FLUSH      = 0;
      +//var Z_PARTIAL_FLUSH = 1;
      +//var Z_SYNC_FLUSH    = 2;
      +//var Z_FULL_FLUSH    = 3;
      +var Z_FINISH        = 4;
      +var Z_BLOCK         = 5;
      +var Z_TREES         = 6;
      +
      +
      +/* Return codes for the compression/decompression functions. Negative values
      + * are errors, positive values are used for special but normal events.
      + */
      +var Z_OK            = 0;
      +var Z_STREAM_END    = 1;
      +var Z_NEED_DICT     = 2;
      +//var Z_ERRNO         = -1;
      +var Z_STREAM_ERROR  = -2;
      +var Z_DATA_ERROR    = -3;
      +var Z_MEM_ERROR     = -4;
      +var Z_BUF_ERROR     = -5;
      +//var Z_VERSION_ERROR = -6;
      +
      +/* The deflate compression method */
      +var Z_DEFLATED  = 8;
      +
      +
      +/* STATES ====================================================================*/
      +/* ===========================================================================*/
      +
      +
      +var    HEAD = 1;       /* i: waiting for magic header */
      +var    FLAGS = 2;      /* i: waiting for method and flags (gzip) */
      +var    TIME = 3;       /* i: waiting for modification time (gzip) */
      +var    OS = 4;         /* i: waiting for extra flags and operating system (gzip) */
      +var    EXLEN = 5;      /* i: waiting for extra length (gzip) */
      +var    EXTRA = 6;      /* i: waiting for extra bytes (gzip) */
      +var    NAME = 7;       /* i: waiting for end of file name (gzip) */
      +var    COMMENT = 8;    /* i: waiting for end of comment (gzip) */
      +var    HCRC = 9;       /* i: waiting for header crc (gzip) */
      +var    DICTID = 10;    /* i: waiting for dictionary check value */
      +var    DICT = 11;      /* waiting for inflateSetDictionary() call */
      +var        TYPE = 12;      /* i: waiting for type bits, including last-flag bit */
      +var        TYPEDO = 13;    /* i: same, but skip check to exit inflate on new block */
      +var        STORED = 14;    /* i: waiting for stored size (length and complement) */
      +var        COPY_ = 15;     /* i/o: same as COPY below, but only first time in */
      +var        COPY = 16;      /* i/o: waiting for input or output to copy stored block */
      +var        TABLE = 17;     /* i: waiting for dynamic block table lengths */
      +var        LENLENS = 18;   /* i: waiting for code length code lengths */
      +var        CODELENS = 19;  /* i: waiting for length/lit and distance code lengths */
      +var            LEN_ = 20;      /* i: same as LEN below, but only first time in */
      +var            LEN = 21;       /* i: waiting for length/lit/eob code */
      +var            LENEXT = 22;    /* i: waiting for length extra bits */
      +var            DIST = 23;      /* i: waiting for distance code */
      +var            DISTEXT = 24;   /* i: waiting for distance extra bits */
      +var            MATCH = 25;     /* o: waiting for output space to copy string */
      +var            LIT = 26;       /* o: waiting for output space to write literal */
      +var    CHECK = 27;     /* i: waiting for 32-bit check value */
      +var    LENGTH = 28;    /* i: waiting for 32-bit length (gzip) */
      +var    DONE = 29;      /* finished check, done -- remain here until reset */
      +var    BAD = 30;       /* got a data error -- remain here until reset */
      +var    MEM = 31;       /* got an inflate() memory error -- remain here until reset */
      +var    SYNC = 32;      /* looking for synchronization bytes to restart inflate() */
      +
      +/* ===========================================================================*/
      +
      +
      +
      +var ENOUGH_LENS = 852;
      +var ENOUGH_DISTS = 592;
      +//var ENOUGH =  (ENOUGH_LENS+ENOUGH_DISTS);
      +
      +var MAX_WBITS = 15;
      +/* 32K LZ77 window */
      +var DEF_WBITS = MAX_WBITS;
      +
      +
      +function zswap32(q) {
      +  return  (((q >>> 24) & 0xff) +
      +          ((q >>> 8) & 0xff00) +
      +          ((q & 0xff00) << 8) +
      +          ((q & 0xff) << 24));
      +}
      +
      +
      +function InflateState() {
      +  this.mode = 0;             /* current inflate mode */
      +  this.last = false;          /* true if processing last block */
      +  this.wrap = 0;              /* bit 0 true for zlib, bit 1 true for gzip */
      +  this.havedict = false;      /* true if dictionary provided */
      +  this.flags = 0;             /* gzip header method and flags (0 if zlib) */
      +  this.dmax = 0;              /* zlib header max distance (INFLATE_STRICT) */
      +  this.check = 0;             /* protected copy of check value */
      +  this.total = 0;             /* protected copy of output count */
      +  // TODO: may be {}
      +  this.head = null;           /* where to save gzip header information */
      +
      +  /* sliding window */
      +  this.wbits = 0;             /* log base 2 of requested window size */
      +  this.wsize = 0;             /* window size or zero if not using window */
      +  this.whave = 0;             /* valid bytes in the window */
      +  this.wnext = 0;             /* window write index */
      +  this.window = null;         /* allocated sliding window, if needed */
      +
      +  /* bit accumulator */
      +  this.hold = 0;              /* input bit accumulator */
      +  this.bits = 0;              /* number of bits in "in" */
      +
      +  /* for string and stored block copying */
      +  this.length = 0;            /* literal or length of data to copy */
      +  this.offset = 0;            /* distance back to copy string from */
      +
      +  /* for table and code decoding */
      +  this.extra = 0;             /* extra bits needed */
      +
      +  /* fixed and dynamic code tables */
      +  this.lencode = null;          /* starting table for length/literal codes */
      +  this.distcode = null;         /* starting table for distance codes */
      +  this.lenbits = 0;           /* index bits for lencode */
      +  this.distbits = 0;          /* index bits for distcode */
      +
      +  /* dynamic table building */
      +  this.ncode = 0;             /* number of code length code lengths */
      +  this.nlen = 0;              /* number of length code lengths */
      +  this.ndist = 0;             /* number of distance code lengths */
      +  this.have = 0;              /* number of code lengths in lens[] */
      +  this.next = null;              /* next available space in codes[] */
      +
      +  this.lens = new utils.Buf16(320); /* temporary storage for code lengths */
      +  this.work = new utils.Buf16(288); /* work area for code table building */
      +
      +  /*
      +   because we don't have pointers in js, we use lencode and distcode directly
      +   as buffers so we don't need codes
      +  */
      +  //this.codes = new utils.Buf32(ENOUGH);       /* space for code tables */
      +  this.lendyn = null;              /* dynamic table for length/literal codes (JS specific) */
      +  this.distdyn = null;             /* dynamic table for distance codes (JS specific) */
      +  this.sane = 0;                   /* if false, allow invalid distance too far */
      +  this.back = 0;                   /* bits back of last unprocessed length/lit */
      +  this.was = 0;                    /* initial length of match */
      +}
      +
      +function inflateResetKeep(strm) {
      +  var state;
      +
      +  if (!strm || !strm.state) { return Z_STREAM_ERROR; }
      +  state = strm.state;
      +  strm.total_in = strm.total_out = state.total = 0;
      +  strm.msg = ''; /*Z_NULL*/
      +  if (state.wrap) {       /* to support ill-conceived Java test suite */
      +    strm.adler = state.wrap & 1;
      +  }
      +  state.mode = HEAD;
      +  state.last = 0;
      +  state.havedict = 0;
      +  state.dmax = 32768;
      +  state.head = null/*Z_NULL*/;
      +  state.hold = 0;
      +  state.bits = 0;
      +  //state.lencode = state.distcode = state.next = state.codes;
      +  state.lencode = state.lendyn = new utils.Buf32(ENOUGH_LENS);
      +  state.distcode = state.distdyn = new utils.Buf32(ENOUGH_DISTS);
      +
      +  state.sane = 1;
      +  state.back = -1;
      +  //Tracev((stderr, "inflate: reset\n"));
      +  return Z_OK;
      +}
      +
      +function inflateReset(strm) {
      +  var state;
      +
      +  if (!strm || !strm.state) { return Z_STREAM_ERROR; }
      +  state = strm.state;
      +  state.wsize = 0;
      +  state.whave = 0;
      +  state.wnext = 0;
      +  return inflateResetKeep(strm);
      +
      +}
      +
      +function inflateReset2(strm, windowBits) {
      +  var wrap;
      +  var state;
      +
      +  /* get the state */
      +  if (!strm || !strm.state) { return Z_STREAM_ERROR; }
      +  state = strm.state;
      +
      +  /* extract wrap request from windowBits parameter */
      +  if (windowBits < 0) {
      +    wrap = 0;
      +    windowBits = -windowBits;
      +  }
      +  else {
      +    wrap = (windowBits >> 4) + 1;
      +    if (windowBits < 48) {
      +      windowBits &= 15;
      +    }
      +  }
      +
      +  /* set number of window bits, free window if different */
      +  if (windowBits && (windowBits < 8 || windowBits > 15)) {
      +    return Z_STREAM_ERROR;
      +  }
      +  if (state.window !== null && state.wbits !== windowBits) {
      +    state.window = null;
      +  }
      +
      +  /* update state and reset the rest of it */
      +  state.wrap = wrap;
      +  state.wbits = windowBits;
      +  return inflateReset(strm);
      +}
      +
      +function inflateInit2(strm, windowBits) {
      +  var ret;
      +  var state;
      +
      +  if (!strm) { return Z_STREAM_ERROR; }
      +  //strm.msg = Z_NULL;                 /* in case we return an error */
      +
      +  state = new InflateState();
      +
      +  //if (state === Z_NULL) return Z_MEM_ERROR;
      +  //Tracev((stderr, "inflate: allocated\n"));
      +  strm.state = state;
      +  state.window = null/*Z_NULL*/;
      +  ret = inflateReset2(strm, windowBits);
      +  if (ret !== Z_OK) {
      +    strm.state = null/*Z_NULL*/;
      +  }
      +  return ret;
      +}
      +
      +function inflateInit(strm) {
      +  return inflateInit2(strm, DEF_WBITS);
      +}
      +
      +
      +/*
      + Return state with length and distance decoding tables and index sizes set to
      + fixed code decoding.  Normally this returns fixed tables from inffixed.h.
      + If BUILDFIXED is defined, then instead this routine builds the tables the
      + first time it's called, and returns those tables the first time and
      + thereafter.  This reduces the size of the code by about 2K bytes, in
      + exchange for a little execution time.  However, BUILDFIXED should not be
      + used for threaded applications, since the rewriting of the tables and virgin
      + may not be thread-safe.
      + */
      +var virgin = true;
      +
      +var lenfix, distfix; // We have no pointers in JS, so keep tables separate
      +
      +function fixedtables(state) {
      +  /* build fixed huffman tables if first call (may not be thread safe) */
      +  if (virgin) {
      +    var sym;
      +
      +    lenfix = new utils.Buf32(512);
      +    distfix = new utils.Buf32(32);
      +
      +    /* literal/length table */
      +    sym = 0;
      +    while (sym < 144) { state.lens[sym++] = 8; }
      +    while (sym < 256) { state.lens[sym++] = 9; }
      +    while (sym < 280) { state.lens[sym++] = 7; }
      +    while (sym < 288) { state.lens[sym++] = 8; }
      +
      +    inflate_table(LENS,  state.lens, 0, 288, lenfix,   0, state.work, { bits: 9 });
      +
      +    /* distance table */
      +    sym = 0;
      +    while (sym < 32) { state.lens[sym++] = 5; }
      +
      +    inflate_table(DISTS, state.lens, 0, 32,   distfix, 0, state.work, { bits: 5 });
      +
      +    /* do this just once */
      +    virgin = false;
      +  }
      +
      +  state.lencode = lenfix;
      +  state.lenbits = 9;
      +  state.distcode = distfix;
      +  state.distbits = 5;
      +}
      +
      +
      +/*
      + Update the window with the last wsize (normally 32K) bytes written before
      + returning.  If window does not exist yet, create it.  This is only called
      + when a window is already in use, or when output has been written during this
      + inflate call, but the end of the deflate stream has not been reached yet.
      + It is also called to create a window for dictionary data when a dictionary
      + is loaded.
      +
      + Providing output buffers larger than 32K to inflate() should provide a speed
      + advantage, since only the last 32K of output is copied to the sliding window
      + upon return from inflate(), and since all distances after the first 32K of
      + output will fall in the output data, making match copies simpler and faster.
      + The advantage may be dependent on the size of the processor's data caches.
      + */
      +function updatewindow(strm, src, end, copy) {
      +  var dist;
      +  var state = strm.state;
      +
      +  /* if it hasn't been done already, allocate space for the window */
      +  if (state.window === null) {
      +    state.wsize = 1 << state.wbits;
      +    state.wnext = 0;
      +    state.whave = 0;
      +
      +    state.window = new utils.Buf8(state.wsize);
      +  }
      +
      +  /* copy state->wsize or less output bytes into the circular window */
      +  if (copy >= state.wsize) {
      +    utils.arraySet(state.window, src, end - state.wsize, state.wsize, 0);
      +    state.wnext = 0;
      +    state.whave = state.wsize;
      +  }
      +  else {
      +    dist = state.wsize - state.wnext;
      +    if (dist > copy) {
      +      dist = copy;
      +    }
      +    //zmemcpy(state->window + state->wnext, end - copy, dist);
      +    utils.arraySet(state.window, src, end - copy, dist, state.wnext);
      +    copy -= dist;
      +    if (copy) {
      +      //zmemcpy(state->window, end - copy, copy);
      +      utils.arraySet(state.window, src, end - copy, copy, 0);
      +      state.wnext = copy;
      +      state.whave = state.wsize;
      +    }
      +    else {
      +      state.wnext += dist;
      +      if (state.wnext === state.wsize) { state.wnext = 0; }
      +      if (state.whave < state.wsize) { state.whave += dist; }
      +    }
      +  }
      +  return 0;
      +}
      +
      +function inflate(strm, flush) {
      +  var state;
      +  var input, output;          // input/output buffers
      +  var next;                   /* next input INDEX */
      +  var put;                    /* next output INDEX */
      +  var have, left;             /* available input and output */
      +  var hold;                   /* bit buffer */
      +  var bits;                   /* bits in bit buffer */
      +  var _in, _out;              /* save starting available input and output */
      +  var copy;                   /* number of stored or match bytes to copy */
      +  var from;                   /* where to copy match bytes from */
      +  var from_source;
      +  var here = 0;               /* current decoding table entry */
      +  var here_bits, here_op, here_val; // paked "here" denormalized (JS specific)
      +  //var last;                   /* parent table entry */
      +  var last_bits, last_op, last_val; // paked "last" denormalized (JS specific)
      +  var len;                    /* length to copy for repeats, bits to drop */
      +  var ret;                    /* return code */
      +  var hbuf = new utils.Buf8(4);    /* buffer for gzip header crc calculation */
      +  var opts;
      +
      +  var n; // temporary var for NEED_BITS
      +
      +  var order = /* permutation of code lengths */
      +    [ 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 ];
      +
      +
      +  if (!strm || !strm.state || !strm.output ||
      +      (!strm.input && strm.avail_in !== 0)) {
      +    return Z_STREAM_ERROR;
      +  }
      +
      +  state = strm.state;
      +  if (state.mode === TYPE) { state.mode = TYPEDO; }    /* skip check */
      +
      +
      +  //--- LOAD() ---
      +  put = strm.next_out;
      +  output = strm.output;
      +  left = strm.avail_out;
      +  next = strm.next_in;
      +  input = strm.input;
      +  have = strm.avail_in;
      +  hold = state.hold;
      +  bits = state.bits;
      +  //---
      +
      +  _in = have;
      +  _out = left;
      +  ret = Z_OK;
      +
      +  inf_leave: // goto emulation
      +  for (;;) {
      +    switch (state.mode) {
      +    case HEAD:
      +      if (state.wrap === 0) {
      +        state.mode = TYPEDO;
      +        break;
      +      }
      +      //=== NEEDBITS(16);
      +      while (bits < 16) {
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +      }
      +      //===//
      +      if ((state.wrap & 2) && hold === 0x8b1f) {  /* gzip header */
      +        state.check = 0/*crc32(0L, Z_NULL, 0)*/;
      +        //=== CRC2(state.check, hold);
      +        hbuf[0] = hold & 0xff;
      +        hbuf[1] = (hold >>> 8) & 0xff;
      +        state.check = crc32(state.check, hbuf, 2, 0);
      +        //===//
      +
      +        //=== INITBITS();
      +        hold = 0;
      +        bits = 0;
      +        //===//
      +        state.mode = FLAGS;
      +        break;
      +      }
      +      state.flags = 0;           /* expect zlib header */
      +      if (state.head) {
      +        state.head.done = false;
      +      }
      +      if (!(state.wrap & 1) ||   /* check if zlib header allowed */
      +        (((hold & 0xff)/*BITS(8)*/ << 8) + (hold >> 8)) % 31) {
      +        strm.msg = 'incorrect header check';
      +        state.mode = BAD;
      +        break;
      +      }
      +      if ((hold & 0x0f)/*BITS(4)*/ !== Z_DEFLATED) {
      +        strm.msg = 'unknown compression method';
      +        state.mode = BAD;
      +        break;
      +      }
      +      //--- DROPBITS(4) ---//
      +      hold >>>= 4;
      +      bits -= 4;
      +      //---//
      +      len = (hold & 0x0f)/*BITS(4)*/ + 8;
      +      if (state.wbits === 0) {
      +        state.wbits = len;
      +      }
      +      else if (len > state.wbits) {
      +        strm.msg = 'invalid window size';
      +        state.mode = BAD;
      +        break;
      +      }
      +      state.dmax = 1 << len;
      +      //Tracev((stderr, "inflate:   zlib header ok\n"));
      +      strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/;
      +      state.mode = hold & 0x200 ? DICTID : TYPE;
      +      //=== INITBITS();
      +      hold = 0;
      +      bits = 0;
      +      //===//
      +      break;
      +    case FLAGS:
      +      //=== NEEDBITS(16); */
      +      while (bits < 16) {
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +      }
      +      //===//
      +      state.flags = hold;
      +      if ((state.flags & 0xff) !== Z_DEFLATED) {
      +        strm.msg = 'unknown compression method';
      +        state.mode = BAD;
      +        break;
      +      }
      +      if (state.flags & 0xe000) {
      +        strm.msg = 'unknown header flags set';
      +        state.mode = BAD;
      +        break;
      +      }
      +      if (state.head) {
      +        state.head.text = ((hold >> 8) & 1);
      +      }
      +      if (state.flags & 0x0200) {
      +        //=== CRC2(state.check, hold);
      +        hbuf[0] = hold & 0xff;
      +        hbuf[1] = (hold >>> 8) & 0xff;
      +        state.check = crc32(state.check, hbuf, 2, 0);
      +        //===//
      +      }
      +      //=== INITBITS();
      +      hold = 0;
      +      bits = 0;
      +      //===//
      +      state.mode = TIME;
      +      /* falls through */
      +    case TIME:
      +      //=== NEEDBITS(32); */
      +      while (bits < 32) {
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +      }
      +      //===//
      +      if (state.head) {
      +        state.head.time = hold;
      +      }
      +      if (state.flags & 0x0200) {
      +        //=== CRC4(state.check, hold)
      +        hbuf[0] = hold & 0xff;
      +        hbuf[1] = (hold >>> 8) & 0xff;
      +        hbuf[2] = (hold >>> 16) & 0xff;
      +        hbuf[3] = (hold >>> 24) & 0xff;
      +        state.check = crc32(state.check, hbuf, 4, 0);
      +        //===
      +      }
      +      //=== INITBITS();
      +      hold = 0;
      +      bits = 0;
      +      //===//
      +      state.mode = OS;
      +      /* falls through */
      +    case OS:
      +      //=== NEEDBITS(16); */
      +      while (bits < 16) {
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +      }
      +      //===//
      +      if (state.head) {
      +        state.head.xflags = (hold & 0xff);
      +        state.head.os = (hold >> 8);
      +      }
      +      if (state.flags & 0x0200) {
      +        //=== CRC2(state.check, hold);
      +        hbuf[0] = hold & 0xff;
      +        hbuf[1] = (hold >>> 8) & 0xff;
      +        state.check = crc32(state.check, hbuf, 2, 0);
      +        //===//
      +      }
      +      //=== INITBITS();
      +      hold = 0;
      +      bits = 0;
      +      //===//
      +      state.mode = EXLEN;
      +      /* falls through */
      +    case EXLEN:
      +      if (state.flags & 0x0400) {
      +        //=== NEEDBITS(16); */
      +        while (bits < 16) {
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          hold += input[next++] << bits;
      +          bits += 8;
      +        }
      +        //===//
      +        state.length = hold;
      +        if (state.head) {
      +          state.head.extra_len = hold;
      +        }
      +        if (state.flags & 0x0200) {
      +          //=== CRC2(state.check, hold);
      +          hbuf[0] = hold & 0xff;
      +          hbuf[1] = (hold >>> 8) & 0xff;
      +          state.check = crc32(state.check, hbuf, 2, 0);
      +          //===//
      +        }
      +        //=== INITBITS();
      +        hold = 0;
      +        bits = 0;
      +        //===//
      +      }
      +      else if (state.head) {
      +        state.head.extra = null/*Z_NULL*/;
      +      }
      +      state.mode = EXTRA;
      +      /* falls through */
      +    case EXTRA:
      +      if (state.flags & 0x0400) {
      +        copy = state.length;
      +        if (copy > have) { copy = have; }
      +        if (copy) {
      +          if (state.head) {
      +            len = state.head.extra_len - state.length;
      +            if (!state.head.extra) {
      +              // Use untyped array for more conveniend processing later
      +              state.head.extra = new Array(state.head.extra_len);
      +            }
      +            utils.arraySet(
      +              state.head.extra,
      +              input,
      +              next,
      +              // extra field is limited to 65536 bytes
      +              // - no need for additional size check
      +              copy,
      +              /*len + copy > state.head.extra_max - len ? state.head.extra_max : copy,*/
      +              len
      +            );
      +            //zmemcpy(state.head.extra + len, next,
      +            //        len + copy > state.head.extra_max ?
      +            //        state.head.extra_max - len : copy);
      +          }
      +          if (state.flags & 0x0200) {
      +            state.check = crc32(state.check, input, copy, next);
      +          }
      +          have -= copy;
      +          next += copy;
      +          state.length -= copy;
      +        }
      +        if (state.length) { break inf_leave; }
      +      }
      +      state.length = 0;
      +      state.mode = NAME;
      +      /* falls through */
      +    case NAME:
      +      if (state.flags & 0x0800) {
      +        if (have === 0) { break inf_leave; }
      +        copy = 0;
      +        do {
      +          // TODO: 2 or 1 bytes?
      +          len = input[next + copy++];
      +          /* use constant limit because in js we should not preallocate memory */
      +          if (state.head && len &&
      +              (state.length < 65536 /*state.head.name_max*/)) {
      +            state.head.name += String.fromCharCode(len);
      +          }
      +        } while (len && copy < have);
      +
      +        if (state.flags & 0x0200) {
      +          state.check = crc32(state.check, input, copy, next);
      +        }
      +        have -= copy;
      +        next += copy;
      +        if (len) { break inf_leave; }
      +      }
      +      else if (state.head) {
      +        state.head.name = null;
      +      }
      +      state.length = 0;
      +      state.mode = COMMENT;
      +      /* falls through */
      +    case COMMENT:
      +      if (state.flags & 0x1000) {
      +        if (have === 0) { break inf_leave; }
      +        copy = 0;
      +        do {
      +          len = input[next + copy++];
      +          /* use constant limit because in js we should not preallocate memory */
      +          if (state.head && len &&
      +              (state.length < 65536 /*state.head.comm_max*/)) {
      +            state.head.comment += String.fromCharCode(len);
      +          }
      +        } while (len && copy < have);
      +        if (state.flags & 0x0200) {
      +          state.check = crc32(state.check, input, copy, next);
      +        }
      +        have -= copy;
      +        next += copy;
      +        if (len) { break inf_leave; }
      +      }
      +      else if (state.head) {
      +        state.head.comment = null;
      +      }
      +      state.mode = HCRC;
      +      /* falls through */
      +    case HCRC:
      +      if (state.flags & 0x0200) {
      +        //=== NEEDBITS(16); */
      +        while (bits < 16) {
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          hold += input[next++] << bits;
      +          bits += 8;
      +        }
      +        //===//
      +        if (hold !== (state.check & 0xffff)) {
      +          strm.msg = 'header crc mismatch';
      +          state.mode = BAD;
      +          break;
      +        }
      +        //=== INITBITS();
      +        hold = 0;
      +        bits = 0;
      +        //===//
      +      }
      +      if (state.head) {
      +        state.head.hcrc = ((state.flags >> 9) & 1);
      +        state.head.done = true;
      +      }
      +      strm.adler = state.check = 0;
      +      state.mode = TYPE;
      +      break;
      +    case DICTID:
      +      //=== NEEDBITS(32); */
      +      while (bits < 32) {
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +      }
      +      //===//
      +      strm.adler = state.check = zswap32(hold);
      +      //=== INITBITS();
      +      hold = 0;
      +      bits = 0;
      +      //===//
      +      state.mode = DICT;
      +      /* falls through */
      +    case DICT:
      +      if (state.havedict === 0) {
      +        //--- RESTORE() ---
      +        strm.next_out = put;
      +        strm.avail_out = left;
      +        strm.next_in = next;
      +        strm.avail_in = have;
      +        state.hold = hold;
      +        state.bits = bits;
      +        //---
      +        return Z_NEED_DICT;
      +      }
      +      strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/;
      +      state.mode = TYPE;
      +      /* falls through */
      +    case TYPE:
      +      if (flush === Z_BLOCK || flush === Z_TREES) { break inf_leave; }
      +      /* falls through */
      +    case TYPEDO:
      +      if (state.last) {
      +        //--- BYTEBITS() ---//
      +        hold >>>= bits & 7;
      +        bits -= bits & 7;
      +        //---//
      +        state.mode = CHECK;
      +        break;
      +      }
      +      //=== NEEDBITS(3); */
      +      while (bits < 3) {
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +      }
      +      //===//
      +      state.last = (hold & 0x01)/*BITS(1)*/;
      +      //--- DROPBITS(1) ---//
      +      hold >>>= 1;
      +      bits -= 1;
      +      //---//
      +
      +      switch ((hold & 0x03)/*BITS(2)*/) {
      +      case 0:                             /* stored block */
      +        //Tracev((stderr, "inflate:     stored block%s\n",
      +        //        state.last ? " (last)" : ""));
      +        state.mode = STORED;
      +        break;
      +      case 1:                             /* fixed block */
      +        fixedtables(state);
      +        //Tracev((stderr, "inflate:     fixed codes block%s\n",
      +        //        state.last ? " (last)" : ""));
      +        state.mode = LEN_;             /* decode codes */
      +        if (flush === Z_TREES) {
      +          //--- DROPBITS(2) ---//
      +          hold >>>= 2;
      +          bits -= 2;
      +          //---//
      +          break inf_leave;
      +        }
      +        break;
      +      case 2:                             /* dynamic block */
      +        //Tracev((stderr, "inflate:     dynamic codes block%s\n",
      +        //        state.last ? " (last)" : ""));
      +        state.mode = TABLE;
      +        break;
      +      case 3:
      +        strm.msg = 'invalid block type';
      +        state.mode = BAD;
      +      }
      +      //--- DROPBITS(2) ---//
      +      hold >>>= 2;
      +      bits -= 2;
      +      //---//
      +      break;
      +    case STORED:
      +      //--- BYTEBITS() ---// /* go to byte boundary */
      +      hold >>>= bits & 7;
      +      bits -= bits & 7;
      +      //---//
      +      //=== NEEDBITS(32); */
      +      while (bits < 32) {
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +      }
      +      //===//
      +      if ((hold & 0xffff) !== ((hold >>> 16) ^ 0xffff)) {
      +        strm.msg = 'invalid stored block lengths';
      +        state.mode = BAD;
      +        break;
      +      }
      +      state.length = hold & 0xffff;
      +      //Tracev((stderr, "inflate:       stored length %u\n",
      +      //        state.length));
      +      //=== INITBITS();
      +      hold = 0;
      +      bits = 0;
      +      //===//
      +      state.mode = COPY_;
      +      if (flush === Z_TREES) { break inf_leave; }
      +      /* falls through */
      +    case COPY_:
      +      state.mode = COPY;
      +      /* falls through */
      +    case COPY:
      +      copy = state.length;
      +      if (copy) {
      +        if (copy > have) { copy = have; }
      +        if (copy > left) { copy = left; }
      +        if (copy === 0) { break inf_leave; }
      +        //--- zmemcpy(put, next, copy); ---
      +        utils.arraySet(output, input, next, copy, put);
      +        //---//
      +        have -= copy;
      +        next += copy;
      +        left -= copy;
      +        put += copy;
      +        state.length -= copy;
      +        break;
      +      }
      +      //Tracev((stderr, "inflate:       stored end\n"));
      +      state.mode = TYPE;
      +      break;
      +    case TABLE:
      +      //=== NEEDBITS(14); */
      +      while (bits < 14) {
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +      }
      +      //===//
      +      state.nlen = (hold & 0x1f)/*BITS(5)*/ + 257;
      +      //--- DROPBITS(5) ---//
      +      hold >>>= 5;
      +      bits -= 5;
      +      //---//
      +      state.ndist = (hold & 0x1f)/*BITS(5)*/ + 1;
      +      //--- DROPBITS(5) ---//
      +      hold >>>= 5;
      +      bits -= 5;
      +      //---//
      +      state.ncode = (hold & 0x0f)/*BITS(4)*/ + 4;
      +      //--- DROPBITS(4) ---//
      +      hold >>>= 4;
      +      bits -= 4;
      +      //---//
      +//#ifndef PKZIP_BUG_WORKAROUND
      +      if (state.nlen > 286 || state.ndist > 30) {
      +        strm.msg = 'too many length or distance symbols';
      +        state.mode = BAD;
      +        break;
      +      }
      +//#endif
      +      //Tracev((stderr, "inflate:       table sizes ok\n"));
      +      state.have = 0;
      +      state.mode = LENLENS;
      +      /* falls through */
      +    case LENLENS:
      +      while (state.have < state.ncode) {
      +        //=== NEEDBITS(3);
      +        while (bits < 3) {
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          hold += input[next++] << bits;
      +          bits += 8;
      +        }
      +        //===//
      +        state.lens[order[state.have++]] = (hold & 0x07);//BITS(3);
      +        //--- DROPBITS(3) ---//
      +        hold >>>= 3;
      +        bits -= 3;
      +        //---//
      +      }
      +      while (state.have < 19) {
      +        state.lens[order[state.have++]] = 0;
      +      }
      +      // We have separate tables & no pointers. 2 commented lines below not needed.
      +      //state.next = state.codes;
      +      //state.lencode = state.next;
      +      // Switch to use dynamic table
      +      state.lencode = state.lendyn;
      +      state.lenbits = 7;
      +
      +      opts = { bits: state.lenbits };
      +      ret = inflate_table(CODES, state.lens, 0, 19, state.lencode, 0, state.work, opts);
      +      state.lenbits = opts.bits;
      +
      +      if (ret) {
      +        strm.msg = 'invalid code lengths set';
      +        state.mode = BAD;
      +        break;
      +      }
      +      //Tracev((stderr, "inflate:       code lengths ok\n"));
      +      state.have = 0;
      +      state.mode = CODELENS;
      +      /* falls through */
      +    case CODELENS:
      +      while (state.have < state.nlen + state.ndist) {
      +        for (;;) {
      +          here = state.lencode[hold & ((1 << state.lenbits) - 1)];/*BITS(state.lenbits)*/
      +          here_bits = here >>> 24;
      +          here_op = (here >>> 16) & 0xff;
      +          here_val = here & 0xffff;
      +
      +          if ((here_bits) <= bits) { break; }
      +          //--- PULLBYTE() ---//
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          hold += input[next++] << bits;
      +          bits += 8;
      +          //---//
      +        }
      +        if (here_val < 16) {
      +          //--- DROPBITS(here.bits) ---//
      +          hold >>>= here_bits;
      +          bits -= here_bits;
      +          //---//
      +          state.lens[state.have++] = here_val;
      +        }
      +        else {
      +          if (here_val === 16) {
      +            //=== NEEDBITS(here.bits + 2);
      +            n = here_bits + 2;
      +            while (bits < n) {
      +              if (have === 0) { break inf_leave; }
      +              have--;
      +              hold += input[next++] << bits;
      +              bits += 8;
      +            }
      +            //===//
      +            //--- DROPBITS(here.bits) ---//
      +            hold >>>= here_bits;
      +            bits -= here_bits;
      +            //---//
      +            if (state.have === 0) {
      +              strm.msg = 'invalid bit length repeat';
      +              state.mode = BAD;
      +              break;
      +            }
      +            len = state.lens[state.have - 1];
      +            copy = 3 + (hold & 0x03);//BITS(2);
      +            //--- DROPBITS(2) ---//
      +            hold >>>= 2;
      +            bits -= 2;
      +            //---//
      +          }
      +          else if (here_val === 17) {
      +            //=== NEEDBITS(here.bits + 3);
      +            n = here_bits + 3;
      +            while (bits < n) {
      +              if (have === 0) { break inf_leave; }
      +              have--;
      +              hold += input[next++] << bits;
      +              bits += 8;
      +            }
      +            //===//
      +            //--- DROPBITS(here.bits) ---//
      +            hold >>>= here_bits;
      +            bits -= here_bits;
      +            //---//
      +            len = 0;
      +            copy = 3 + (hold & 0x07);//BITS(3);
      +            //--- DROPBITS(3) ---//
      +            hold >>>= 3;
      +            bits -= 3;
      +            //---//
      +          }
      +          else {
      +            //=== NEEDBITS(here.bits + 7);
      +            n = here_bits + 7;
      +            while (bits < n) {
      +              if (have === 0) { break inf_leave; }
      +              have--;
      +              hold += input[next++] << bits;
      +              bits += 8;
      +            }
      +            //===//
      +            //--- DROPBITS(here.bits) ---//
      +            hold >>>= here_bits;
      +            bits -= here_bits;
      +            //---//
      +            len = 0;
      +            copy = 11 + (hold & 0x7f);//BITS(7);
      +            //--- DROPBITS(7) ---//
      +            hold >>>= 7;
      +            bits -= 7;
      +            //---//
      +          }
      +          if (state.have + copy > state.nlen + state.ndist) {
      +            strm.msg = 'invalid bit length repeat';
      +            state.mode = BAD;
      +            break;
      +          }
      +          while (copy--) {
      +            state.lens[state.have++] = len;
      +          }
      +        }
      +      }
      +
      +      /* handle error breaks in while */
      +      if (state.mode === BAD) { break; }
      +
      +      /* check for end-of-block code (better have one) */
      +      if (state.lens[256] === 0) {
      +        strm.msg = 'invalid code -- missing end-of-block';
      +        state.mode = BAD;
      +        break;
      +      }
      +
      +      /* build code tables -- note: do not change the lenbits or distbits
      +         values here (9 and 6) without reading the comments in inftrees.h
      +         concerning the ENOUGH constants, which depend on those values */
      +      state.lenbits = 9;
      +
      +      opts = { bits: state.lenbits };
      +      ret = inflate_table(LENS, state.lens, 0, state.nlen, state.lencode, 0, state.work, opts);
      +      // We have separate tables & no pointers. 2 commented lines below not needed.
      +      // state.next_index = opts.table_index;
      +      state.lenbits = opts.bits;
      +      // state.lencode = state.next;
      +
      +      if (ret) {
      +        strm.msg = 'invalid literal/lengths set';
      +        state.mode = BAD;
      +        break;
      +      }
      +
      +      state.distbits = 6;
      +      //state.distcode.copy(state.codes);
      +      // Switch to use dynamic table
      +      state.distcode = state.distdyn;
      +      opts = { bits: state.distbits };
      +      ret = inflate_table(DISTS, state.lens, state.nlen, state.ndist, state.distcode, 0, state.work, opts);
      +      // We have separate tables & no pointers. 2 commented lines below not needed.
      +      // state.next_index = opts.table_index;
      +      state.distbits = opts.bits;
      +      // state.distcode = state.next;
      +
      +      if (ret) {
      +        strm.msg = 'invalid distances set';
      +        state.mode = BAD;
      +        break;
      +      }
      +      //Tracev((stderr, 'inflate:       codes ok\n'));
      +      state.mode = LEN_;
      +      if (flush === Z_TREES) { break inf_leave; }
      +      /* falls through */
      +    case LEN_:
      +      state.mode = LEN;
      +      /* falls through */
      +    case LEN:
      +      if (have >= 6 && left >= 258) {
      +        //--- RESTORE() ---
      +        strm.next_out = put;
      +        strm.avail_out = left;
      +        strm.next_in = next;
      +        strm.avail_in = have;
      +        state.hold = hold;
      +        state.bits = bits;
      +        //---
      +        inflate_fast(strm, _out);
      +        //--- LOAD() ---
      +        put = strm.next_out;
      +        output = strm.output;
      +        left = strm.avail_out;
      +        next = strm.next_in;
      +        input = strm.input;
      +        have = strm.avail_in;
      +        hold = state.hold;
      +        bits = state.bits;
      +        //---
      +
      +        if (state.mode === TYPE) {
      +          state.back = -1;
      +        }
      +        break;
      +      }
      +      state.back = 0;
      +      for (;;) {
      +        here = state.lencode[hold & ((1 << state.lenbits) - 1)];  /*BITS(state.lenbits)*/
      +        here_bits = here >>> 24;
      +        here_op = (here >>> 16) & 0xff;
      +        here_val = here & 0xffff;
      +
      +        if (here_bits <= bits) { break; }
      +        //--- PULLBYTE() ---//
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +        //---//
      +      }
      +      if (here_op && (here_op & 0xf0) === 0) {
      +        last_bits = here_bits;
      +        last_op = here_op;
      +        last_val = here_val;
      +        for (;;) {
      +          here = state.lencode[last_val +
      +                  ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)];
      +          here_bits = here >>> 24;
      +          here_op = (here >>> 16) & 0xff;
      +          here_val = here & 0xffff;
      +
      +          if ((last_bits + here_bits) <= bits) { break; }
      +          //--- PULLBYTE() ---//
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          hold += input[next++] << bits;
      +          bits += 8;
      +          //---//
      +        }
      +        //--- DROPBITS(last.bits) ---//
      +        hold >>>= last_bits;
      +        bits -= last_bits;
      +        //---//
      +        state.back += last_bits;
      +      }
      +      //--- DROPBITS(here.bits) ---//
      +      hold >>>= here_bits;
      +      bits -= here_bits;
      +      //---//
      +      state.back += here_bits;
      +      state.length = here_val;
      +      if (here_op === 0) {
      +        //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
      +        //        "inflate:         literal '%c'\n" :
      +        //        "inflate:         literal 0x%02x\n", here.val));
      +        state.mode = LIT;
      +        break;
      +      }
      +      if (here_op & 32) {
      +        //Tracevv((stderr, "inflate:         end of block\n"));
      +        state.back = -1;
      +        state.mode = TYPE;
      +        break;
      +      }
      +      if (here_op & 64) {
      +        strm.msg = 'invalid literal/length code';
      +        state.mode = BAD;
      +        break;
      +      }
      +      state.extra = here_op & 15;
      +      state.mode = LENEXT;
      +      /* falls through */
      +    case LENEXT:
      +      if (state.extra) {
      +        //=== NEEDBITS(state.extra);
      +        n = state.extra;
      +        while (bits < n) {
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          hold += input[next++] << bits;
      +          bits += 8;
      +        }
      +        //===//
      +        state.length += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/;
      +        //--- DROPBITS(state.extra) ---//
      +        hold >>>= state.extra;
      +        bits -= state.extra;
      +        //---//
      +        state.back += state.extra;
      +      }
      +      //Tracevv((stderr, "inflate:         length %u\n", state.length));
      +      state.was = state.length;
      +      state.mode = DIST;
      +      /* falls through */
      +    case DIST:
      +      for (;;) {
      +        here = state.distcode[hold & ((1 << state.distbits) - 1)];/*BITS(state.distbits)*/
      +        here_bits = here >>> 24;
      +        here_op = (here >>> 16) & 0xff;
      +        here_val = here & 0xffff;
      +
      +        if ((here_bits) <= bits) { break; }
      +        //--- PULLBYTE() ---//
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +        //---//
      +      }
      +      if ((here_op & 0xf0) === 0) {
      +        last_bits = here_bits;
      +        last_op = here_op;
      +        last_val = here_val;
      +        for (;;) {
      +          here = state.distcode[last_val +
      +                  ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)];
      +          here_bits = here >>> 24;
      +          here_op = (here >>> 16) & 0xff;
      +          here_val = here & 0xffff;
      +
      +          if ((last_bits + here_bits) <= bits) { break; }
      +          //--- PULLBYTE() ---//
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          hold += input[next++] << bits;
      +          bits += 8;
      +          //---//
      +        }
      +        //--- DROPBITS(last.bits) ---//
      +        hold >>>= last_bits;
      +        bits -= last_bits;
      +        //---//
      +        state.back += last_bits;
      +      }
      +      //--- DROPBITS(here.bits) ---//
      +      hold >>>= here_bits;
      +      bits -= here_bits;
      +      //---//
      +      state.back += here_bits;
      +      if (here_op & 64) {
      +        strm.msg = 'invalid distance code';
      +        state.mode = BAD;
      +        break;
      +      }
      +      state.offset = here_val;
      +      state.extra = (here_op) & 15;
      +      state.mode = DISTEXT;
      +      /* falls through */
      +    case DISTEXT:
      +      if (state.extra) {
      +        //=== NEEDBITS(state.extra);
      +        n = state.extra;
      +        while (bits < n) {
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          hold += input[next++] << bits;
      +          bits += 8;
      +        }
      +        //===//
      +        state.offset += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/;
      +        //--- DROPBITS(state.extra) ---//
      +        hold >>>= state.extra;
      +        bits -= state.extra;
      +        //---//
      +        state.back += state.extra;
      +      }
      +//#ifdef INFLATE_STRICT
      +      if (state.offset > state.dmax) {
      +        strm.msg = 'invalid distance too far back';
      +        state.mode = BAD;
      +        break;
      +      }
      +//#endif
      +      //Tracevv((stderr, "inflate:         distance %u\n", state.offset));
      +      state.mode = MATCH;
      +      /* falls through */
      +    case MATCH:
      +      if (left === 0) { break inf_leave; }
      +      copy = _out - left;
      +      if (state.offset > copy) {         /* copy from window */
      +        copy = state.offset - copy;
      +        if (copy > state.whave) {
      +          if (state.sane) {
      +            strm.msg = 'invalid distance too far back';
      +            state.mode = BAD;
      +            break;
      +          }
      +// (!) This block is disabled in zlib defailts,
      +// don't enable it for binary compatibility
      +//#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
      +//          Trace((stderr, "inflate.c too far\n"));
      +//          copy -= state.whave;
      +//          if (copy > state.length) { copy = state.length; }
      +//          if (copy > left) { copy = left; }
      +//          left -= copy;
      +//          state.length -= copy;
      +//          do {
      +//            output[put++] = 0;
      +//          } while (--copy);
      +//          if (state.length === 0) { state.mode = LEN; }
      +//          break;
      +//#endif
      +        }
      +        if (copy > state.wnext) {
      +          copy -= state.wnext;
      +          from = state.wsize - copy;
      +        }
      +        else {
      +          from = state.wnext - copy;
      +        }
      +        if (copy > state.length) { copy = state.length; }
      +        from_source = state.window;
      +      }
      +      else {                              /* copy from output */
      +        from_source = output;
      +        from = put - state.offset;
      +        copy = state.length;
      +      }
      +      if (copy > left) { copy = left; }
      +      left -= copy;
      +      state.length -= copy;
      +      do {
      +        output[put++] = from_source[from++];
      +      } while (--copy);
      +      if (state.length === 0) { state.mode = LEN; }
      +      break;
      +    case LIT:
      +      if (left === 0) { break inf_leave; }
      +      output[put++] = state.length;
      +      left--;
      +      state.mode = LEN;
      +      break;
      +    case CHECK:
      +      if (state.wrap) {
      +        //=== NEEDBITS(32);
      +        while (bits < 32) {
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          // Use '|' insdead of '+' to make sure that result is signed
      +          hold |= input[next++] << bits;
      +          bits += 8;
      +        }
      +        //===//
      +        _out -= left;
      +        strm.total_out += _out;
      +        state.total += _out;
      +        if (_out) {
      +          strm.adler = state.check =
      +              /*UPDATE(state.check, put - _out, _out);*/
      +              (state.flags ? crc32(state.check, output, _out, put - _out) : adler32(state.check, output, _out, put - _out));
      +
      +        }
      +        _out = left;
      +        // NB: crc32 stored as signed 32-bit int, zswap32 returns signed too
      +        if ((state.flags ? hold : zswap32(hold)) !== state.check) {
      +          strm.msg = 'incorrect data check';
      +          state.mode = BAD;
      +          break;
      +        }
      +        //=== INITBITS();
      +        hold = 0;
      +        bits = 0;
      +        //===//
      +        //Tracev((stderr, "inflate:   check matches trailer\n"));
      +      }
      +      state.mode = LENGTH;
      +      /* falls through */
      +    case LENGTH:
      +      if (state.wrap && state.flags) {
      +        //=== NEEDBITS(32);
      +        while (bits < 32) {
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          hold += input[next++] << bits;
      +          bits += 8;
      +        }
      +        //===//
      +        if (hold !== (state.total & 0xffffffff)) {
      +          strm.msg = 'incorrect length check';
      +          state.mode = BAD;
      +          break;
      +        }
      +        //=== INITBITS();
      +        hold = 0;
      +        bits = 0;
      +        //===//
      +        //Tracev((stderr, "inflate:   length matches trailer\n"));
      +      }
      +      state.mode = DONE;
      +      /* falls through */
      +    case DONE:
      +      ret = Z_STREAM_END;
      +      break inf_leave;
      +    case BAD:
      +      ret = Z_DATA_ERROR;
      +      break inf_leave;
      +    case MEM:
      +      return Z_MEM_ERROR;
      +    case SYNC:
      +      /* falls through */
      +    default:
      +      return Z_STREAM_ERROR;
      +    }
      +  }
      +
      +  // inf_leave <- here is real place for "goto inf_leave", emulated via "break inf_leave"
      +
      +  /*
      +     Return from inflate(), updating the total counts and the check value.
      +     If there was no progress during the inflate() call, return a buffer
      +     error.  Call updatewindow() to create and/or update the window state.
      +     Note: a memory error from inflate() is non-recoverable.
      +   */
      +
      +  //--- RESTORE() ---
      +  strm.next_out = put;
      +  strm.avail_out = left;
      +  strm.next_in = next;
      +  strm.avail_in = have;
      +  state.hold = hold;
      +  state.bits = bits;
      +  //---
      +
      +  if (state.wsize || (_out !== strm.avail_out && state.mode < BAD &&
      +                      (state.mode < CHECK || flush !== Z_FINISH))) {
      +    if (updatewindow(strm, strm.output, strm.next_out, _out - strm.avail_out)) {
      +      state.mode = MEM;
      +      return Z_MEM_ERROR;
      +    }
      +  }
      +  _in -= strm.avail_in;
      +  _out -= strm.avail_out;
      +  strm.total_in += _in;
      +  strm.total_out += _out;
      +  state.total += _out;
      +  if (state.wrap && _out) {
      +    strm.adler = state.check = /*UPDATE(state.check, strm.next_out - _out, _out);*/
      +      (state.flags ? crc32(state.check, output, _out, strm.next_out - _out) : adler32(state.check, output, _out, strm.next_out - _out));
      +  }
      +  strm.data_type = state.bits + (state.last ? 64 : 0) +
      +                    (state.mode === TYPE ? 128 : 0) +
      +                    (state.mode === LEN_ || state.mode === COPY_ ? 256 : 0);
      +  if (((_in === 0 && _out === 0) || flush === Z_FINISH) && ret === Z_OK) {
      +    ret = Z_BUF_ERROR;
      +  }
      +  return ret;
      +}
      +
      +function inflateEnd(strm) {
      +
      +  if (!strm || !strm.state /*|| strm->zfree == (free_func)0*/) {
      +    return Z_STREAM_ERROR;
      +  }
      +
      +  var state = strm.state;
      +  if (state.window) {
      +    state.window = null;
      +  }
      +  strm.state = null;
      +  return Z_OK;
      +}
      +
      +function inflateGetHeader(strm, head) {
      +  var state;
      +
      +  /* check state */
      +  if (!strm || !strm.state) { return Z_STREAM_ERROR; }
      +  state = strm.state;
      +  if ((state.wrap & 2) === 0) { return Z_STREAM_ERROR; }
      +
      +  /* save header structure */
      +  state.head = head;
      +  head.done = false;
      +  return Z_OK;
      +}
      +
      +function inflateSetDictionary(strm, dictionary) {
      +  var dictLength = dictionary.length;
      +
      +  var state;
      +  var dictid;
      +  var ret;
      +
      +  /* check state */
      +  if (!strm /* == Z_NULL */ || !strm.state /* == Z_NULL */) { return Z_STREAM_ERROR; }
      +  state = strm.state;
      +
      +  if (state.wrap !== 0 && state.mode !== DICT) {
      +    return Z_STREAM_ERROR;
      +  }
      +
      +  /* check for correct dictionary identifier */
      +  if (state.mode === DICT) {
      +    dictid = 1; /* adler32(0, null, 0)*/
      +    /* dictid = adler32(dictid, dictionary, dictLength); */
      +    dictid = adler32(dictid, dictionary, dictLength, 0);
      +    if (dictid !== state.check) {
      +      return Z_DATA_ERROR;
      +    }
      +  }
      +  /* copy dictionary to window using updatewindow(), which will amend the
      +   existing dictionary if appropriate */
      +  ret = updatewindow(strm, dictionary, dictLength, dictLength);
      +  if (ret) {
      +    state.mode = MEM;
      +    return Z_MEM_ERROR;
      +  }
      +  state.havedict = 1;
      +  // Tracev((stderr, "inflate:   dictionary set\n"));
      +  return Z_OK;
      +}
      +
      +exports.inflateReset = inflateReset;
      +exports.inflateReset2 = inflateReset2;
      +exports.inflateResetKeep = inflateResetKeep;
      +exports.inflateInit = inflateInit;
      +exports.inflateInit2 = inflateInit2;
      +exports.inflate = inflate;
      +exports.inflateEnd = inflateEnd;
      +exports.inflateGetHeader = inflateGetHeader;
      +exports.inflateSetDictionary = inflateSetDictionary;
      +exports.inflateInfo = 'pako inflate (from Nodeca project)';
      +
      +/* Not implemented
      +exports.inflateCopy = inflateCopy;
      +exports.inflateGetDictionary = inflateGetDictionary;
      +exports.inflateMark = inflateMark;
      +exports.inflatePrime = inflatePrime;
      +exports.inflateSync = inflateSync;
      +exports.inflateSyncPoint = inflateSyncPoint;
      +exports.inflateUndermine = inflateUndermine;
      +*/
      +
      +},{"../utils/common":62,"./adler32":64,"./crc32":66,"./inffast":69,"./inftrees":71}],71:[function(require,module,exports){
      +'use strict';
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +var utils = require('../utils/common');
      +
      +var MAXBITS = 15;
      +var ENOUGH_LENS = 852;
      +var ENOUGH_DISTS = 592;
      +//var ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS);
      +
      +var CODES = 0;
      +var LENS = 1;
      +var DISTS = 2;
      +
      +var lbase = [ /* Length codes 257..285 base */
      +  3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,
      +  35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0
      +];
      +
      +var lext = [ /* Length codes 257..285 extra */
      +  16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18,
      +  19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 72, 78
      +];
      +
      +var dbase = [ /* Distance codes 0..29 base */
      +  1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
      +  257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
      +  8193, 12289, 16385, 24577, 0, 0
      +];
      +
      +var dext = [ /* Distance codes 0..29 extra */
      +  16, 16, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22,
      +  23, 23, 24, 24, 25, 25, 26, 26, 27, 27,
      +  28, 28, 29, 29, 64, 64
      +];
      +
      +module.exports = function inflate_table(type, lens, lens_index, codes, table, table_index, work, opts)
      +{
      +  var bits = opts.bits;
      +      //here = opts.here; /* table entry for duplication */
      +
      +  var len = 0;               /* a code's length in bits */
      +  var sym = 0;               /* index of code symbols */
      +  var min = 0, max = 0;          /* minimum and maximum code lengths */
      +  var root = 0;              /* number of index bits for root table */
      +  var curr = 0;              /* number of index bits for current table */
      +  var drop = 0;              /* code bits to drop for sub-table */
      +  var left = 0;                   /* number of prefix codes available */
      +  var used = 0;              /* code entries in table used */
      +  var huff = 0;              /* Huffman code */
      +  var incr;              /* for incrementing code, index */
      +  var fill;              /* index for replicating entries */
      +  var low;               /* low bits for current root entry */
      +  var mask;              /* mask for low root bits */
      +  var next;             /* next available space in table */
      +  var base = null;     /* base value table to use */
      +  var base_index = 0;
      +//  var shoextra;    /* extra bits table to use */
      +  var end;                    /* use base and extra for symbol > end */
      +  var count = new utils.Buf16(MAXBITS + 1); //[MAXBITS+1];    /* number of codes of each length */
      +  var offs = new utils.Buf16(MAXBITS + 1); //[MAXBITS+1];     /* offsets in table for each length */
      +  var extra = null;
      +  var extra_index = 0;
      +
      +  var here_bits, here_op, here_val;
      +
      +  /*
      +   Process a set of code lengths to create a canonical Huffman code.  The
      +   code lengths are lens[0..codes-1].  Each length corresponds to the
      +   symbols 0..codes-1.  The Huffman code is generated by first sorting the
      +   symbols by length from short to long, and retaining the symbol order
      +   for codes with equal lengths.  Then the code starts with all zero bits
      +   for the first code of the shortest length, and the codes are integer
      +   increments for the same length, and zeros are appended as the length
      +   increases.  For the deflate format, these bits are stored backwards
      +   from their more natural integer increment ordering, and so when the
      +   decoding tables are built in the large loop below, the integer codes
      +   are incremented backwards.
      +
      +   This routine assumes, but does not check, that all of the entries in
      +   lens[] are in the range 0..MAXBITS.  The caller must assure this.
      +   1..MAXBITS is interpreted as that code length.  zero means that that
      +   symbol does not occur in this code.
      +
      +   The codes are sorted by computing a count of codes for each length,
      +   creating from that a table of starting indices for each length in the
      +   sorted table, and then entering the symbols in order in the sorted
      +   table.  The sorted table is work[], with that space being provided by
      +   the caller.
      +
      +   The length counts are used for other purposes as well, i.e. finding
      +   the minimum and maximum length codes, determining if there are any
      +   codes at all, checking for a valid set of lengths, and looking ahead
      +   at length counts to determine sub-table sizes when building the
      +   decoding tables.
      +   */
      +
      +  /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */
      +  for (len = 0; len <= MAXBITS; len++) {
      +    count[len] = 0;
      +  }
      +  for (sym = 0; sym < codes; sym++) {
      +    count[lens[lens_index + sym]]++;
      +  }
      +
      +  /* bound code lengths, force root to be within code lengths */
      +  root = bits;
      +  for (max = MAXBITS; max >= 1; max--) {
      +    if (count[max] !== 0) { break; }
      +  }
      +  if (root > max) {
      +    root = max;
      +  }
      +  if (max === 0) {                     /* no symbols to code at all */
      +    //table.op[opts.table_index] = 64;  //here.op = (var char)64;    /* invalid code marker */
      +    //table.bits[opts.table_index] = 1;   //here.bits = (var char)1;
      +    //table.val[opts.table_index++] = 0;   //here.val = (var short)0;
      +    table[table_index++] = (1 << 24) | (64 << 16) | 0;
      +
      +
      +    //table.op[opts.table_index] = 64;
      +    //table.bits[opts.table_index] = 1;
      +    //table.val[opts.table_index++] = 0;
      +    table[table_index++] = (1 << 24) | (64 << 16) | 0;
      +
      +    opts.bits = 1;
      +    return 0;     /* no symbols, but wait for decoding to report error */
      +  }
      +  for (min = 1; min < max; min++) {
      +    if (count[min] !== 0) { break; }
      +  }
      +  if (root < min) {
      +    root = min;
      +  }
      +
      +  /* check for an over-subscribed or incomplete set of lengths */
      +  left = 1;
      +  for (len = 1; len <= MAXBITS; len++) {
      +    left <<= 1;
      +    left -= count[len];
      +    if (left < 0) {
      +      return -1;
      +    }        /* over-subscribed */
      +  }
      +  if (left > 0 && (type === CODES || max !== 1)) {
      +    return -1;                      /* incomplete set */
      +  }
      +
      +  /* generate offsets into symbol table for each length for sorting */
      +  offs[1] = 0;
      +  for (len = 1; len < MAXBITS; len++) {
      +    offs[len + 1] = offs[len] + count[len];
      +  }
      +
      +  /* sort symbols by length, by symbol order within each length */
      +  for (sym = 0; sym < codes; sym++) {
      +    if (lens[lens_index + sym] !== 0) {
      +      work[offs[lens[lens_index + sym]]++] = sym;
      +    }
      +  }
      +
      +  /*
      +   Create and fill in decoding tables.  In this loop, the table being
      +   filled is at next and has curr index bits.  The code being used is huff
      +   with length len.  That code is converted to an index by dropping drop
      +   bits off of the bottom.  For codes where len is less than drop + curr,
      +   those top drop + curr - len bits are incremented through all values to
      +   fill the table with replicated entries.
      +
      +   root is the number of index bits for the root table.  When len exceeds
      +   root, sub-tables are created pointed to by the root entry with an index
      +   of the low root bits of huff.  This is saved in low to check for when a
      +   new sub-table should be started.  drop is zero when the root table is
      +   being filled, and drop is root when sub-tables are being filled.
      +
      +   When a new sub-table is needed, it is necessary to look ahead in the
      +   code lengths to determine what size sub-table is needed.  The length
      +   counts are used for this, and so count[] is decremented as codes are
      +   entered in the tables.
      +
      +   used keeps track of how many table entries have been allocated from the
      +   provided *table space.  It is checked for LENS and DIST tables against
      +   the constants ENOUGH_LENS and ENOUGH_DISTS to guard against changes in
      +   the initial root table size constants.  See the comments in inftrees.h
      +   for more information.
      +
      +   sym increments through all symbols, and the loop terminates when
      +   all codes of length max, i.e. all codes, have been processed.  This
      +   routine permits incomplete codes, so another loop after this one fills
      +   in the rest of the decoding tables with invalid code markers.
      +   */
      +
      +  /* set up for code type */
      +  // poor man optimization - use if-else instead of switch,
      +  // to avoid deopts in old v8
      +  if (type === CODES) {
      +    base = extra = work;    /* dummy value--not used */
      +    end = 19;
      +
      +  } else if (type === LENS) {
      +    base = lbase;
      +    base_index -= 257;
      +    extra = lext;
      +    extra_index -= 257;
      +    end = 256;
      +
      +  } else {                    /* DISTS */
      +    base = dbase;
      +    extra = dext;
      +    end = -1;
      +  }
      +
      +  /* initialize opts for loop */
      +  huff = 0;                   /* starting code */
      +  sym = 0;                    /* starting code symbol */
      +  len = min;                  /* starting code length */
      +  next = table_index;              /* current table to fill in */
      +  curr = root;                /* current table index bits */
      +  drop = 0;                   /* current bits to drop from code for index */
      +  low = -1;                   /* trigger new sub-table when len > root */
      +  used = 1 << root;          /* use root table entries */
      +  mask = used - 1;            /* mask for comparing low */
      +
      +  /* check available table space */
      +  if ((type === LENS && used > ENOUGH_LENS) ||
      +    (type === DISTS && used > ENOUGH_DISTS)) {
      +    return 1;
      +  }
      +
      +  /* process all codes and make table entries */
      +  for (;;) {
      +    /* create table entry */
      +    here_bits = len - drop;
      +    if (work[sym] < end) {
      +      here_op = 0;
      +      here_val = work[sym];
      +    }
      +    else if (work[sym] > end) {
      +      here_op = extra[extra_index + work[sym]];
      +      here_val = base[base_index + work[sym]];
      +    }
      +    else {
      +      here_op = 32 + 64;         /* end of block */
      +      here_val = 0;
      +    }
      +
      +    /* replicate for those indices with low len bits equal to huff */
      +    incr = 1 << (len - drop);
      +    fill = 1 << curr;
      +    min = fill;                 /* save offset to next table */
      +    do {
      +      fill -= incr;
      +      table[next + (huff >> drop) + fill] = (here_bits << 24) | (here_op << 16) | here_val |0;
      +    } while (fill !== 0);
      +
      +    /* backwards increment the len-bit code huff */
      +    incr = 1 << (len - 1);
      +    while (huff & incr) {
      +      incr >>= 1;
      +    }
      +    if (incr !== 0) {
      +      huff &= incr - 1;
      +      huff += incr;
      +    } else {
      +      huff = 0;
      +    }
      +
      +    /* go to next symbol, update count, len */
      +    sym++;
      +    if (--count[len] === 0) {
      +      if (len === max) { break; }
      +      len = lens[lens_index + work[sym]];
      +    }
      +
      +    /* create new sub-table if needed */
      +    if (len > root && (huff & mask) !== low) {
      +      /* if first time, transition to sub-tables */
      +      if (drop === 0) {
      +        drop = root;
      +      }
      +
      +      /* increment past last table */
      +      next += min;            /* here min is 1 << curr */
      +
      +      /* determine length of next table */
      +      curr = len - drop;
      +      left = 1 << curr;
      +      while (curr + drop < max) {
      +        left -= count[curr + drop];
      +        if (left <= 0) { break; }
      +        curr++;
      +        left <<= 1;
      +      }
      +
      +      /* check for enough space */
      +      used += 1 << curr;
      +      if ((type === LENS && used > ENOUGH_LENS) ||
      +        (type === DISTS && used > ENOUGH_DISTS)) {
      +        return 1;
      +      }
      +
      +      /* point entry in root table to sub-table */
      +      low = huff & mask;
      +      /*table.op[low] = curr;
      +      table.bits[low] = root;
      +      table.val[low] = next - opts.table_index;*/
      +      table[low] = (root << 24) | (curr << 16) | (next - table_index) |0;
      +    }
      +  }
      +
      +  /* fill in remaining table entry if code is incomplete (guaranteed to have
      +   at most one remaining entry, since if the code is incomplete, the
      +   maximum code length that was allowed to get this far is one bit) */
      +  if (huff !== 0) {
      +    //table.op[next + huff] = 64;            /* invalid code marker */
      +    //table.bits[next + huff] = len - drop;
      +    //table.val[next + huff] = 0;
      +    table[next + huff] = ((len - drop) << 24) | (64 << 16) |0;
      +  }
      +
      +  /* set return parameters */
      +  //opts.table_index += used;
      +  opts.bits = root;
      +  return 0;
      +};
      +
      +},{"../utils/common":62}],72:[function(require,module,exports){
      +'use strict';
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +module.exports = {
      +  2:      'need dictionary',     /* Z_NEED_DICT       2  */
      +  1:      'stream end',          /* Z_STREAM_END      1  */
      +  0:      '',                    /* Z_OK              0  */
      +  '-1':   'file error',          /* Z_ERRNO         (-1) */
      +  '-2':   'stream error',        /* Z_STREAM_ERROR  (-2) */
      +  '-3':   'data error',          /* Z_DATA_ERROR    (-3) */
      +  '-4':   'insufficient memory', /* Z_MEM_ERROR     (-4) */
      +  '-5':   'buffer error',        /* Z_BUF_ERROR     (-5) */
      +  '-6':   'incompatible version' /* Z_VERSION_ERROR (-6) */
      +};
      +
      +},{}],73:[function(require,module,exports){
      +'use strict';
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +var utils = require('../utils/common');
      +
      +/* Public constants ==========================================================*/
      +/* ===========================================================================*/
      +
      +
      +//var Z_FILTERED          = 1;
      +//var Z_HUFFMAN_ONLY      = 2;
      +//var Z_RLE               = 3;
      +var Z_FIXED               = 4;
      +//var Z_DEFAULT_STRATEGY  = 0;
      +
      +/* Possible values of the data_type field (though see inflate()) */
      +var Z_BINARY              = 0;
      +var Z_TEXT                = 1;
      +//var Z_ASCII             = 1; // = Z_TEXT
      +var Z_UNKNOWN             = 2;
      +
      +/*============================================================================*/
      +
      +
      +function zero(buf) { var len = buf.length; while (--len >= 0) { buf[len] = 0; } }
      +
      +// From zutil.h
      +
      +var STORED_BLOCK = 0;
      +var STATIC_TREES = 1;
      +var DYN_TREES    = 2;
      +/* The three kinds of block type */
      +
      +var MIN_MATCH    = 3;
      +var MAX_MATCH    = 258;
      +/* The minimum and maximum match lengths */
      +
      +// From deflate.h
      +/* ===========================================================================
      + * Internal compression state.
      + */
      +
      +var LENGTH_CODES  = 29;
      +/* number of length codes, not counting the special END_BLOCK code */
      +
      +var LITERALS      = 256;
      +/* number of literal bytes 0..255 */
      +
      +var L_CODES       = LITERALS + 1 + LENGTH_CODES;
      +/* number of Literal or Length codes, including the END_BLOCK code */
      +
      +var D_CODES       = 30;
      +/* number of distance codes */
      +
      +var BL_CODES      = 19;
      +/* number of codes used to transfer the bit lengths */
      +
      +var HEAP_SIZE     = 2 * L_CODES + 1;
      +/* maximum heap size */
      +
      +var MAX_BITS      = 15;
      +/* All codes must not exceed MAX_BITS bits */
      +
      +var Buf_size      = 16;
      +/* size of bit buffer in bi_buf */
      +
      +
      +/* ===========================================================================
      + * Constants
      + */
      +
      +var MAX_BL_BITS = 7;
      +/* Bit length codes must not exceed MAX_BL_BITS bits */
      +
      +var END_BLOCK   = 256;
      +/* end of block literal code */
      +
      +var REP_3_6     = 16;
      +/* repeat previous bit length 3-6 times (2 bits of repeat count) */
      +
      +var REPZ_3_10   = 17;
      +/* repeat a zero length 3-10 times  (3 bits of repeat count) */
      +
      +var REPZ_11_138 = 18;
      +/* repeat a zero length 11-138 times  (7 bits of repeat count) */
      +
      +/* eslint-disable comma-spacing,array-bracket-spacing */
      +var extra_lbits =   /* extra bits for each length code */
      +  [0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0];
      +
      +var extra_dbits =   /* extra bits for each distance code */
      +  [0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13];
      +
      +var extra_blbits =  /* extra bits for each bit length code */
      +  [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7];
      +
      +var bl_order =
      +  [16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];
      +/* eslint-enable comma-spacing,array-bracket-spacing */
      +
      +/* The lengths of the bit length codes are sent in order of decreasing
      + * probability, to avoid transmitting the lengths for unused bit length codes.
      + */
      +
      +/* ===========================================================================
      + * Local data. These are initialized only once.
      + */
      +
      +// We pre-fill arrays with 0 to avoid uninitialized gaps
      +
      +var DIST_CODE_LEN = 512; /* see definition of array dist_code below */
      +
      +// !!!! Use flat array insdead of structure, Freq = i*2, Len = i*2+1
      +var static_ltree  = new Array((L_CODES + 2) * 2);
      +zero(static_ltree);
      +/* The static literal tree. Since the bit lengths are imposed, there is no
      + * need for the L_CODES extra codes used during heap construction. However
      + * The codes 286 and 287 are needed to build a canonical tree (see _tr_init
      + * below).
      + */
      +
      +var static_dtree  = new Array(D_CODES * 2);
      +zero(static_dtree);
      +/* The static distance tree. (Actually a trivial tree since all codes use
      + * 5 bits.)
      + */
      +
      +var _dist_code    = new Array(DIST_CODE_LEN);
      +zero(_dist_code);
      +/* Distance codes. The first 256 values correspond to the distances
      + * 3 .. 258, the last 256 values correspond to the top 8 bits of
      + * the 15 bit distances.
      + */
      +
      +var _length_code  = new Array(MAX_MATCH - MIN_MATCH + 1);
      +zero(_length_code);
      +/* length code for each normalized match length (0 == MIN_MATCH) */
      +
      +var base_length   = new Array(LENGTH_CODES);
      +zero(base_length);
      +/* First normalized length for each code (0 = MIN_MATCH) */
      +
      +var base_dist     = new Array(D_CODES);
      +zero(base_dist);
      +/* First normalized distance for each code (0 = distance of 1) */
      +
      +
      +function StaticTreeDesc(static_tree, extra_bits, extra_base, elems, max_length) {
      +
      +  this.static_tree  = static_tree;  /* static tree or NULL */
      +  this.extra_bits   = extra_bits;   /* extra bits for each code or NULL */
      +  this.extra_base   = extra_base;   /* base index for extra_bits */
      +  this.elems        = elems;        /* max number of elements in the tree */
      +  this.max_length   = max_length;   /* max bit length for the codes */
      +
      +  // show if `static_tree` has data or dummy - needed for monomorphic objects
      +  this.has_stree    = static_tree && static_tree.length;
      +}
      +
      +
      +var static_l_desc;
      +var static_d_desc;
      +var static_bl_desc;
      +
      +
      +function TreeDesc(dyn_tree, stat_desc) {
      +  this.dyn_tree = dyn_tree;     /* the dynamic tree */
      +  this.max_code = 0;            /* largest code with non zero frequency */
      +  this.stat_desc = stat_desc;   /* the corresponding static tree */
      +}
      +
      +
      +
      +function d_code(dist) {
      +  return dist < 256 ? _dist_code[dist] : _dist_code[256 + (dist >>> 7)];
      +}
      +
      +
      +/* ===========================================================================
      + * Output a short LSB first on the stream.
      + * IN assertion: there is enough room in pendingBuf.
      + */
      +function put_short(s, w) {
      +//    put_byte(s, (uch)((w) & 0xff));
      +//    put_byte(s, (uch)((ush)(w) >> 8));
      +  s.pending_buf[s.pending++] = (w) & 0xff;
      +  s.pending_buf[s.pending++] = (w >>> 8) & 0xff;
      +}
      +
      +
      +/* ===========================================================================
      + * Send a value on a given number of bits.
      + * IN assertion: length <= 16 and value fits in length bits.
      + */
      +function send_bits(s, value, length) {
      +  if (s.bi_valid > (Buf_size - length)) {
      +    s.bi_buf |= (value << s.bi_valid) & 0xffff;
      +    put_short(s, s.bi_buf);
      +    s.bi_buf = value >> (Buf_size - s.bi_valid);
      +    s.bi_valid += length - Buf_size;
      +  } else {
      +    s.bi_buf |= (value << s.bi_valid) & 0xffff;
      +    s.bi_valid += length;
      +  }
      +}
      +
      +
      +function send_code(s, c, tree) {
      +  send_bits(s, tree[c * 2]/*.Code*/, tree[c * 2 + 1]/*.Len*/);
      +}
      +
      +
      +/* ===========================================================================
      + * Reverse the first len bits of a code, using straightforward code (a faster
      + * method would use a table)
      + * IN assertion: 1 <= len <= 15
      + */
      +function bi_reverse(code, len) {
      +  var res = 0;
      +  do {
      +    res |= code & 1;
      +    code >>>= 1;
      +    res <<= 1;
      +  } while (--len > 0);
      +  return res >>> 1;
      +}
      +
      +
      +/* ===========================================================================
      + * Flush the bit buffer, keeping at most 7 bits in it.
      + */
      +function bi_flush(s) {
      +  if (s.bi_valid === 16) {
      +    put_short(s, s.bi_buf);
      +    s.bi_buf = 0;
      +    s.bi_valid = 0;
      +
      +  } else if (s.bi_valid >= 8) {
      +    s.pending_buf[s.pending++] = s.bi_buf & 0xff;
      +    s.bi_buf >>= 8;
      +    s.bi_valid -= 8;
      +  }
      +}
      +
      +
      +/* ===========================================================================
      + * Compute the optimal bit lengths for a tree and update the total bit length
      + * for the current block.
      + * IN assertion: the fields freq and dad are set, heap[heap_max] and
      + *    above are the tree nodes sorted by increasing frequency.
      + * OUT assertions: the field len is set to the optimal bit length, the
      + *     array bl_count contains the frequencies for each bit length.
      + *     The length opt_len is updated; static_len is also updated if stree is
      + *     not null.
      + */
      +function gen_bitlen(s, desc)
      +//    deflate_state *s;
      +//    tree_desc *desc;    /* the tree descriptor */
      +{
      +  var tree            = desc.dyn_tree;
      +  var max_code        = desc.max_code;
      +  var stree           = desc.stat_desc.static_tree;
      +  var has_stree       = desc.stat_desc.has_stree;
      +  var extra           = desc.stat_desc.extra_bits;
      +  var base            = desc.stat_desc.extra_base;
      +  var max_length      = desc.stat_desc.max_length;
      +  var h;              /* heap index */
      +  var n, m;           /* iterate over the tree elements */
      +  var bits;           /* bit length */
      +  var xbits;          /* extra bits */
      +  var f;              /* frequency */
      +  var overflow = 0;   /* number of elements with bit length too large */
      +
      +  for (bits = 0; bits <= MAX_BITS; bits++) {
      +    s.bl_count[bits] = 0;
      +  }
      +
      +  /* In a first pass, compute the optimal bit lengths (which may
      +   * overflow in the case of the bit length tree).
      +   */
      +  tree[s.heap[s.heap_max] * 2 + 1]/*.Len*/ = 0; /* root of the heap */
      +
      +  for (h = s.heap_max + 1; h < HEAP_SIZE; h++) {
      +    n = s.heap[h];
      +    bits = tree[tree[n * 2 + 1]/*.Dad*/ * 2 + 1]/*.Len*/ + 1;
      +    if (bits > max_length) {
      +      bits = max_length;
      +      overflow++;
      +    }
      +    tree[n * 2 + 1]/*.Len*/ = bits;
      +    /* We overwrite tree[n].Dad which is no longer needed */
      +
      +    if (n > max_code) { continue; } /* not a leaf node */
      +
      +    s.bl_count[bits]++;
      +    xbits = 0;
      +    if (n >= base) {
      +      xbits = extra[n - base];
      +    }
      +    f = tree[n * 2]/*.Freq*/;
      +    s.opt_len += f * (bits + xbits);
      +    if (has_stree) {
      +      s.static_len += f * (stree[n * 2 + 1]/*.Len*/ + xbits);
      +    }
      +  }
      +  if (overflow === 0) { return; }
      +
      +  // Trace((stderr,"\nbit length overflow\n"));
      +  /* This happens for example on obj2 and pic of the Calgary corpus */
      +
      +  /* Find the first bit length which could increase: */
      +  do {
      +    bits = max_length - 1;
      +    while (s.bl_count[bits] === 0) { bits--; }
      +    s.bl_count[bits]--;      /* move one leaf down the tree */
      +    s.bl_count[bits + 1] += 2; /* move one overflow item as its brother */
      +    s.bl_count[max_length]--;
      +    /* The brother of the overflow item also moves one step up,
      +     * but this does not affect bl_count[max_length]
      +     */
      +    overflow -= 2;
      +  } while (overflow > 0);
      +
      +  /* Now recompute all bit lengths, scanning in increasing frequency.
      +   * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
      +   * lengths instead of fixing only the wrong ones. This idea is taken
      +   * from 'ar' written by Haruhiko Okumura.)
      +   */
      +  for (bits = max_length; bits !== 0; bits--) {
      +    n = s.bl_count[bits];
      +    while (n !== 0) {
      +      m = s.heap[--h];
      +      if (m > max_code) { continue; }
      +      if (tree[m * 2 + 1]/*.Len*/ !== bits) {
      +        // Trace((stderr,"code %d bits %d->%d\n", m, tree[m].Len, bits));
      +        s.opt_len += (bits - tree[m * 2 + 1]/*.Len*/) * tree[m * 2]/*.Freq*/;
      +        tree[m * 2 + 1]/*.Len*/ = bits;
      +      }
      +      n--;
      +    }
      +  }
      +}
      +
      +
      +/* ===========================================================================
      + * Generate the codes for a given tree and bit counts (which need not be
      + * optimal).
      + * IN assertion: the array bl_count contains the bit length statistics for
      + * the given tree and the field len is set for all tree elements.
      + * OUT assertion: the field code is set for all tree elements of non
      + *     zero code length.
      + */
      +function gen_codes(tree, max_code, bl_count)
      +//    ct_data *tree;             /* the tree to decorate */
      +//    int max_code;              /* largest code with non zero frequency */
      +//    ushf *bl_count;            /* number of codes at each bit length */
      +{
      +  var next_code = new Array(MAX_BITS + 1); /* next code value for each bit length */
      +  var code = 0;              /* running code value */
      +  var bits;                  /* bit index */
      +  var n;                     /* code index */
      +
      +  /* The distribution counts are first used to generate the code values
      +   * without bit reversal.
      +   */
      +  for (bits = 1; bits <= MAX_BITS; bits++) {
      +    next_code[bits] = code = (code + bl_count[bits - 1]) << 1;
      +  }
      +  /* Check that the bit counts in bl_count are consistent. The last code
      +   * must be all ones.
      +   */
      +  //Assert (code + bl_count[MAX_BITS]-1 == (1<<MAX_BITS)-1,
      +  //        "inconsistent bit counts");
      +  //Tracev((stderr,"\ngen_codes: max_code %d ", max_code));
      +
      +  for (n = 0;  n <= max_code; n++) {
      +    var len = tree[n * 2 + 1]/*.Len*/;
      +    if (len === 0) { continue; }
      +    /* Now reverse the bits */
      +    tree[n * 2]/*.Code*/ = bi_reverse(next_code[len]++, len);
      +
      +    //Tracecv(tree != static_ltree, (stderr,"\nn %3d %c l %2d c %4x (%x) ",
      +    //     n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1));
      +  }
      +}
      +
      +
      +/* ===========================================================================
      + * Initialize the various 'constant' tables.
      + */
      +function tr_static_init() {
      +  var n;        /* iterates over tree elements */
      +  var bits;     /* bit counter */
      +  var length;   /* length value */
      +  var code;     /* code value */
      +  var dist;     /* distance index */
      +  var bl_count = new Array(MAX_BITS + 1);
      +  /* number of codes at each bit length for an optimal tree */
      +
      +  // do check in _tr_init()
      +  //if (static_init_done) return;
      +
      +  /* For some embedded targets, global variables are not initialized: */
      +/*#ifdef NO_INIT_GLOBAL_POINTERS
      +  static_l_desc.static_tree = static_ltree;
      +  static_l_desc.extra_bits = extra_lbits;
      +  static_d_desc.static_tree = static_dtree;
      +  static_d_desc.extra_bits = extra_dbits;
      +  static_bl_desc.extra_bits = extra_blbits;
      +#endif*/
      +
      +  /* Initialize the mapping length (0..255) -> length code (0..28) */
      +  length = 0;
      +  for (code = 0; code < LENGTH_CODES - 1; code++) {
      +    base_length[code] = length;
      +    for (n = 0; n < (1 << extra_lbits[code]); n++) {
      +      _length_code[length++] = code;
      +    }
      +  }
      +  //Assert (length == 256, "tr_static_init: length != 256");
      +  /* Note that the length 255 (match length 258) can be represented
      +   * in two different ways: code 284 + 5 bits or code 285, so we
      +   * overwrite length_code[255] to use the best encoding:
      +   */
      +  _length_code[length - 1] = code;
      +
      +  /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
      +  dist = 0;
      +  for (code = 0; code < 16; code++) {
      +    base_dist[code] = dist;
      +    for (n = 0; n < (1 << extra_dbits[code]); n++) {
      +      _dist_code[dist++] = code;
      +    }
      +  }
      +  //Assert (dist == 256, "tr_static_init: dist != 256");
      +  dist >>= 7; /* from now on, all distances are divided by 128 */
      +  for (; code < D_CODES; code++) {
      +    base_dist[code] = dist << 7;
      +    for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) {
      +      _dist_code[256 + dist++] = code;
      +    }
      +  }
      +  //Assert (dist == 256, "tr_static_init: 256+dist != 512");
      +
      +  /* Construct the codes of the static literal tree */
      +  for (bits = 0; bits <= MAX_BITS; bits++) {
      +    bl_count[bits] = 0;
      +  }
      +
      +  n = 0;
      +  while (n <= 143) {
      +    static_ltree[n * 2 + 1]/*.Len*/ = 8;
      +    n++;
      +    bl_count[8]++;
      +  }
      +  while (n <= 255) {
      +    static_ltree[n * 2 + 1]/*.Len*/ = 9;
      +    n++;
      +    bl_count[9]++;
      +  }
      +  while (n <= 279) {
      +    static_ltree[n * 2 + 1]/*.Len*/ = 7;
      +    n++;
      +    bl_count[7]++;
      +  }
      +  while (n <= 287) {
      +    static_ltree[n * 2 + 1]/*.Len*/ = 8;
      +    n++;
      +    bl_count[8]++;
      +  }
      +  /* Codes 286 and 287 do not exist, but we must include them in the
      +   * tree construction to get a canonical Huffman tree (longest code
      +   * all ones)
      +   */
      +  gen_codes(static_ltree, L_CODES + 1, bl_count);
      +
      +  /* The static distance tree is trivial: */
      +  for (n = 0; n < D_CODES; n++) {
      +    static_dtree[n * 2 + 1]/*.Len*/ = 5;
      +    static_dtree[n * 2]/*.Code*/ = bi_reverse(n, 5);
      +  }
      +
      +  // Now data ready and we can init static trees
      +  static_l_desc = new StaticTreeDesc(static_ltree, extra_lbits, LITERALS + 1, L_CODES, MAX_BITS);
      +  static_d_desc = new StaticTreeDesc(static_dtree, extra_dbits, 0,          D_CODES, MAX_BITS);
      +  static_bl_desc = new StaticTreeDesc(new Array(0), extra_blbits, 0,         BL_CODES, MAX_BL_BITS);
      +
      +  //static_init_done = true;
      +}
      +
      +
      +/* ===========================================================================
      + * Initialize a new block.
      + */
      +function init_block(s) {
      +  var n; /* iterates over tree elements */
      +
      +  /* Initialize the trees. */
      +  for (n = 0; n < L_CODES;  n++) { s.dyn_ltree[n * 2]/*.Freq*/ = 0; }
      +  for (n = 0; n < D_CODES;  n++) { s.dyn_dtree[n * 2]/*.Freq*/ = 0; }
      +  for (n = 0; n < BL_CODES; n++) { s.bl_tree[n * 2]/*.Freq*/ = 0; }
      +
      +  s.dyn_ltree[END_BLOCK * 2]/*.Freq*/ = 1;
      +  s.opt_len = s.static_len = 0;
      +  s.last_lit = s.matches = 0;
      +}
      +
      +
      +/* ===========================================================================
      + * Flush the bit buffer and align the output on a byte boundary
      + */
      +function bi_windup(s)
      +{
      +  if (s.bi_valid > 8) {
      +    put_short(s, s.bi_buf);
      +  } else if (s.bi_valid > 0) {
      +    //put_byte(s, (Byte)s->bi_buf);
      +    s.pending_buf[s.pending++] = s.bi_buf;
      +  }
      +  s.bi_buf = 0;
      +  s.bi_valid = 0;
      +}
      +
      +/* ===========================================================================
      + * Copy a stored block, storing first the length and its
      + * one's complement if requested.
      + */
      +function copy_block(s, buf, len, header)
      +//DeflateState *s;
      +//charf    *buf;    /* the input data */
      +//unsigned len;     /* its length */
      +//int      header;  /* true if block header must be written */
      +{
      +  bi_windup(s);        /* align on byte boundary */
      +
      +  if (header) {
      +    put_short(s, len);
      +    put_short(s, ~len);
      +  }
      +//  while (len--) {
      +//    put_byte(s, *buf++);
      +//  }
      +  utils.arraySet(s.pending_buf, s.window, buf, len, s.pending);
      +  s.pending += len;
      +}
      +
      +/* ===========================================================================
      + * Compares to subtrees, using the tree depth as tie breaker when
      + * the subtrees have equal frequency. This minimizes the worst case length.
      + */
      +function smaller(tree, n, m, depth) {
      +  var _n2 = n * 2;
      +  var _m2 = m * 2;
      +  return (tree[_n2]/*.Freq*/ < tree[_m2]/*.Freq*/ ||
      +         (tree[_n2]/*.Freq*/ === tree[_m2]/*.Freq*/ && depth[n] <= depth[m]));
      +}
      +
      +/* ===========================================================================
      + * Restore the heap property by moving down the tree starting at node k,
      + * exchanging a node with the smallest of its two sons if necessary, stopping
      + * when the heap property is re-established (each father smaller than its
      + * two sons).
      + */
      +function pqdownheap(s, tree, k)
      +//    deflate_state *s;
      +//    ct_data *tree;  /* the tree to restore */
      +//    int k;               /* node to move down */
      +{
      +  var v = s.heap[k];
      +  var j = k << 1;  /* left son of k */
      +  while (j <= s.heap_len) {
      +    /* Set j to the smallest of the two sons: */
      +    if (j < s.heap_len &&
      +      smaller(tree, s.heap[j + 1], s.heap[j], s.depth)) {
      +      j++;
      +    }
      +    /* Exit if v is smaller than both sons */
      +    if (smaller(tree, v, s.heap[j], s.depth)) { break; }
      +
      +    /* Exchange v with the smallest son */
      +    s.heap[k] = s.heap[j];
      +    k = j;
      +
      +    /* And continue down the tree, setting j to the left son of k */
      +    j <<= 1;
      +  }
      +  s.heap[k] = v;
      +}
      +
      +
      +// inlined manually
      +// var SMALLEST = 1;
      +
      +/* ===========================================================================
      + * Send the block data compressed using the given Huffman trees
      + */
      +function compress_block(s, ltree, dtree)
      +//    deflate_state *s;
      +//    const ct_data *ltree; /* literal tree */
      +//    const ct_data *dtree; /* distance tree */
      +{
      +  var dist;           /* distance of matched string */
      +  var lc;             /* match length or unmatched char (if dist == 0) */
      +  var lx = 0;         /* running index in l_buf */
      +  var code;           /* the code to send */
      +  var extra;          /* number of extra bits to send */
      +
      +  if (s.last_lit !== 0) {
      +    do {
      +      dist = (s.pending_buf[s.d_buf + lx * 2] << 8) | (s.pending_buf[s.d_buf + lx * 2 + 1]);
      +      lc = s.pending_buf[s.l_buf + lx];
      +      lx++;
      +
      +      if (dist === 0) {
      +        send_code(s, lc, ltree); /* send a literal byte */
      +        //Tracecv(isgraph(lc), (stderr," '%c' ", lc));
      +      } else {
      +        /* Here, lc is the match length - MIN_MATCH */
      +        code = _length_code[lc];
      +        send_code(s, code + LITERALS + 1, ltree); /* send the length code */
      +        extra = extra_lbits[code];
      +        if (extra !== 0) {
      +          lc -= base_length[code];
      +          send_bits(s, lc, extra);       /* send the extra length bits */
      +        }
      +        dist--; /* dist is now the match distance - 1 */
      +        code = d_code(dist);
      +        //Assert (code < D_CODES, "bad d_code");
      +
      +        send_code(s, code, dtree);       /* send the distance code */
      +        extra = extra_dbits[code];
      +        if (extra !== 0) {
      +          dist -= base_dist[code];
      +          send_bits(s, dist, extra);   /* send the extra distance bits */
      +        }
      +      } /* literal or match pair ? */
      +
      +      /* Check that the overlay between pending_buf and d_buf+l_buf is ok: */
      +      //Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
      +      //       "pendingBuf overflow");
      +
      +    } while (lx < s.last_lit);
      +  }
      +
      +  send_code(s, END_BLOCK, ltree);
      +}
      +
      +
      +/* ===========================================================================
      + * Construct one Huffman tree and assigns the code bit strings and lengths.
      + * Update the total bit length for the current block.
      + * IN assertion: the field freq is set for all tree elements.
      + * OUT assertions: the fields len and code are set to the optimal bit length
      + *     and corresponding code. The length opt_len is updated; static_len is
      + *     also updated if stree is not null. The field max_code is set.
      + */
      +function build_tree(s, desc)
      +//    deflate_state *s;
      +//    tree_desc *desc; /* the tree descriptor */
      +{
      +  var tree     = desc.dyn_tree;
      +  var stree    = desc.stat_desc.static_tree;
      +  var has_stree = desc.stat_desc.has_stree;
      +  var elems    = desc.stat_desc.elems;
      +  var n, m;          /* iterate over heap elements */
      +  var max_code = -1; /* largest code with non zero frequency */
      +  var node;          /* new node being created */
      +
      +  /* Construct the initial heap, with least frequent element in
      +   * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
      +   * heap[0] is not used.
      +   */
      +  s.heap_len = 0;
      +  s.heap_max = HEAP_SIZE;
      +
      +  for (n = 0; n < elems; n++) {
      +    if (tree[n * 2]/*.Freq*/ !== 0) {
      +      s.heap[++s.heap_len] = max_code = n;
      +      s.depth[n] = 0;
      +
      +    } else {
      +      tree[n * 2 + 1]/*.Len*/ = 0;
      +    }
      +  }
      +
      +  /* The pkzip format requires that at least one distance code exists,
      +   * and that at least one bit should be sent even if there is only one
      +   * possible code. So to avoid special checks later on we force at least
      +   * two codes of non zero frequency.
      +   */
      +  while (s.heap_len < 2) {
      +    node = s.heap[++s.heap_len] = (max_code < 2 ? ++max_code : 0);
      +    tree[node * 2]/*.Freq*/ = 1;
      +    s.depth[node] = 0;
      +    s.opt_len--;
      +
      +    if (has_stree) {
      +      s.static_len -= stree[node * 2 + 1]/*.Len*/;
      +    }
      +    /* node is 0 or 1 so it does not have extra bits */
      +  }
      +  desc.max_code = max_code;
      +
      +  /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
      +   * establish sub-heaps of increasing lengths:
      +   */
      +  for (n = (s.heap_len >> 1/*int /2*/); n >= 1; n--) { pqdownheap(s, tree, n); }
      +
      +  /* Construct the Huffman tree by repeatedly combining the least two
      +   * frequent nodes.
      +   */
      +  node = elems;              /* next internal node of the tree */
      +  do {
      +    //pqremove(s, tree, n);  /* n = node of least frequency */
      +    /*** pqremove ***/
      +    n = s.heap[1/*SMALLEST*/];
      +    s.heap[1/*SMALLEST*/] = s.heap[s.heap_len--];
      +    pqdownheap(s, tree, 1/*SMALLEST*/);
      +    /***/
      +
      +    m = s.heap[1/*SMALLEST*/]; /* m = node of next least frequency */
      +
      +    s.heap[--s.heap_max] = n; /* keep the nodes sorted by frequency */
      +    s.heap[--s.heap_max] = m;
      +
      +    /* Create a new node father of n and m */
      +    tree[node * 2]/*.Freq*/ = tree[n * 2]/*.Freq*/ + tree[m * 2]/*.Freq*/;
      +    s.depth[node] = (s.depth[n] >= s.depth[m] ? s.depth[n] : s.depth[m]) + 1;
      +    tree[n * 2 + 1]/*.Dad*/ = tree[m * 2 + 1]/*.Dad*/ = node;
      +
      +    /* and insert the new node in the heap */
      +    s.heap[1/*SMALLEST*/] = node++;
      +    pqdownheap(s, tree, 1/*SMALLEST*/);
      +
      +  } while (s.heap_len >= 2);
      +
      +  s.heap[--s.heap_max] = s.heap[1/*SMALLEST*/];
      +
      +  /* At this point, the fields freq and dad are set. We can now
      +   * generate the bit lengths.
      +   */
      +  gen_bitlen(s, desc);
      +
      +  /* The field len is now set, we can generate the bit codes */
      +  gen_codes(tree, max_code, s.bl_count);
      +}
      +
      +
      +/* ===========================================================================
      + * Scan a literal or distance tree to determine the frequencies of the codes
      + * in the bit length tree.
      + */
      +function scan_tree(s, tree, max_code)
      +//    deflate_state *s;
      +//    ct_data *tree;   /* the tree to be scanned */
      +//    int max_code;    /* and its largest code of non zero frequency */
      +{
      +  var n;                     /* iterates over all tree elements */
      +  var prevlen = -1;          /* last emitted length */
      +  var curlen;                /* length of current code */
      +
      +  var nextlen = tree[0 * 2 + 1]/*.Len*/; /* length of next code */
      +
      +  var count = 0;             /* repeat count of the current code */
      +  var max_count = 7;         /* max repeat count */
      +  var min_count = 4;         /* min repeat count */
      +
      +  if (nextlen === 0) {
      +    max_count = 138;
      +    min_count = 3;
      +  }
      +  tree[(max_code + 1) * 2 + 1]/*.Len*/ = 0xffff; /* guard */
      +
      +  for (n = 0; n <= max_code; n++) {
      +    curlen = nextlen;
      +    nextlen = tree[(n + 1) * 2 + 1]/*.Len*/;
      +
      +    if (++count < max_count && curlen === nextlen) {
      +      continue;
      +
      +    } else if (count < min_count) {
      +      s.bl_tree[curlen * 2]/*.Freq*/ += count;
      +
      +    } else if (curlen !== 0) {
      +
      +      if (curlen !== prevlen) { s.bl_tree[curlen * 2]/*.Freq*/++; }
      +      s.bl_tree[REP_3_6 * 2]/*.Freq*/++;
      +
      +    } else if (count <= 10) {
      +      s.bl_tree[REPZ_3_10 * 2]/*.Freq*/++;
      +
      +    } else {
      +      s.bl_tree[REPZ_11_138 * 2]/*.Freq*/++;
      +    }
      +
      +    count = 0;
      +    prevlen = curlen;
      +
      +    if (nextlen === 0) {
      +      max_count = 138;
      +      min_count = 3;
      +
      +    } else if (curlen === nextlen) {
      +      max_count = 6;
      +      min_count = 3;
      +
      +    } else {
      +      max_count = 7;
      +      min_count = 4;
      +    }
      +  }
      +}
      +
      +
      +/* ===========================================================================
      + * Send a literal or distance tree in compressed form, using the codes in
      + * bl_tree.
      + */
      +function send_tree(s, tree, max_code)
      +//    deflate_state *s;
      +//    ct_data *tree; /* the tree to be scanned */
      +//    int max_code;       /* and its largest code of non zero frequency */
      +{
      +  var n;                     /* iterates over all tree elements */
      +  var prevlen = -1;          /* last emitted length */
      +  var curlen;                /* length of current code */
      +
      +  var nextlen = tree[0 * 2 + 1]/*.Len*/; /* length of next code */
      +
      +  var count = 0;             /* repeat count of the current code */
      +  var max_count = 7;         /* max repeat count */
      +  var min_count = 4;         /* min repeat count */
      +
      +  /* tree[max_code+1].Len = -1; */  /* guard already set */
      +  if (nextlen === 0) {
      +    max_count = 138;
      +    min_count = 3;
      +  }
      +
      +  for (n = 0; n <= max_code; n++) {
      +    curlen = nextlen;
      +    nextlen = tree[(n + 1) * 2 + 1]/*.Len*/;
      +
      +    if (++count < max_count && curlen === nextlen) {
      +      continue;
      +
      +    } else if (count < min_count) {
      +      do { send_code(s, curlen, s.bl_tree); } while (--count !== 0);
      +
      +    } else if (curlen !== 0) {
      +      if (curlen !== prevlen) {
      +        send_code(s, curlen, s.bl_tree);
      +        count--;
      +      }
      +      //Assert(count >= 3 && count <= 6, " 3_6?");
      +      send_code(s, REP_3_6, s.bl_tree);
      +      send_bits(s, count - 3, 2);
      +
      +    } else if (count <= 10) {
      +      send_code(s, REPZ_3_10, s.bl_tree);
      +      send_bits(s, count - 3, 3);
      +
      +    } else {
      +      send_code(s, REPZ_11_138, s.bl_tree);
      +      send_bits(s, count - 11, 7);
      +    }
      +
      +    count = 0;
      +    prevlen = curlen;
      +    if (nextlen === 0) {
      +      max_count = 138;
      +      min_count = 3;
      +
      +    } else if (curlen === nextlen) {
      +      max_count = 6;
      +      min_count = 3;
      +
      +    } else {
      +      max_count = 7;
      +      min_count = 4;
      +    }
      +  }
      +}
      +
      +
      +/* ===========================================================================
      + * Construct the Huffman tree for the bit lengths and return the index in
      + * bl_order of the last bit length code to send.
      + */
      +function build_bl_tree(s) {
      +  var max_blindex;  /* index of last bit length code of non zero freq */
      +
      +  /* Determine the bit length frequencies for literal and distance trees */
      +  scan_tree(s, s.dyn_ltree, s.l_desc.max_code);
      +  scan_tree(s, s.dyn_dtree, s.d_desc.max_code);
      +
      +  /* Build the bit length tree: */
      +  build_tree(s, s.bl_desc);
      +  /* opt_len now includes the length of the tree representations, except
      +   * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.
      +   */
      +
      +  /* Determine the number of bit length codes to send. The pkzip format
      +   * requires that at least 4 bit length codes be sent. (appnote.txt says
      +   * 3 but the actual value used is 4.)
      +   */
      +  for (max_blindex = BL_CODES - 1; max_blindex >= 3; max_blindex--) {
      +    if (s.bl_tree[bl_order[max_blindex] * 2 + 1]/*.Len*/ !== 0) {
      +      break;
      +    }
      +  }
      +  /* Update opt_len to include the bit length tree and counts */
      +  s.opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4;
      +  //Tracev((stderr, "\ndyn trees: dyn %ld, stat %ld",
      +  //        s->opt_len, s->static_len));
      +
      +  return max_blindex;
      +}
      +
      +
      +/* ===========================================================================
      + * Send the header for a block using dynamic Huffman trees: the counts, the
      + * lengths of the bit length codes, the literal tree and the distance tree.
      + * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
      + */
      +function send_all_trees(s, lcodes, dcodes, blcodes)
      +//    deflate_state *s;
      +//    int lcodes, dcodes, blcodes; /* number of codes for each tree */
      +{
      +  var rank;                    /* index in bl_order */
      +
      +  //Assert (lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes");
      +  //Assert (lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES,
      +  //        "too many codes");
      +  //Tracev((stderr, "\nbl counts: "));
      +  send_bits(s, lcodes - 257, 5); /* not +255 as stated in appnote.txt */
      +  send_bits(s, dcodes - 1,   5);
      +  send_bits(s, blcodes - 4,  4); /* not -3 as stated in appnote.txt */
      +  for (rank = 0; rank < blcodes; rank++) {
      +    //Tracev((stderr, "\nbl code %2d ", bl_order[rank]));
      +    send_bits(s, s.bl_tree[bl_order[rank] * 2 + 1]/*.Len*/, 3);
      +  }
      +  //Tracev((stderr, "\nbl tree: sent %ld", s->bits_sent));
      +
      +  send_tree(s, s.dyn_ltree, lcodes - 1); /* literal tree */
      +  //Tracev((stderr, "\nlit tree: sent %ld", s->bits_sent));
      +
      +  send_tree(s, s.dyn_dtree, dcodes - 1); /* distance tree */
      +  //Tracev((stderr, "\ndist tree: sent %ld", s->bits_sent));
      +}
      +
      +
      +/* ===========================================================================
      + * Check if the data type is TEXT or BINARY, using the following algorithm:
      + * - TEXT if the two conditions below are satisfied:
      + *    a) There are no non-portable control characters belonging to the
      + *       "black list" (0..6, 14..25, 28..31).
      + *    b) There is at least one printable character belonging to the
      + *       "white list" (9 {TAB}, 10 {LF}, 13 {CR}, 32..255).
      + * - BINARY otherwise.
      + * - The following partially-portable control characters form a
      + *   "gray list" that is ignored in this detection algorithm:
      + *   (7 {BEL}, 8 {BS}, 11 {VT}, 12 {FF}, 26 {SUB}, 27 {ESC}).
      + * IN assertion: the fields Freq of dyn_ltree are set.
      + */
      +function detect_data_type(s) {
      +  /* black_mask is the bit mask of black-listed bytes
      +   * set bits 0..6, 14..25, and 28..31
      +   * 0xf3ffc07f = binary 11110011111111111100000001111111
      +   */
      +  var black_mask = 0xf3ffc07f;
      +  var n;
      +
      +  /* Check for non-textual ("black-listed") bytes. */
      +  for (n = 0; n <= 31; n++, black_mask >>>= 1) {
      +    if ((black_mask & 1) && (s.dyn_ltree[n * 2]/*.Freq*/ !== 0)) {
      +      return Z_BINARY;
      +    }
      +  }
      +
      +  /* Check for textual ("white-listed") bytes. */
      +  if (s.dyn_ltree[9 * 2]/*.Freq*/ !== 0 || s.dyn_ltree[10 * 2]/*.Freq*/ !== 0 ||
      +      s.dyn_ltree[13 * 2]/*.Freq*/ !== 0) {
      +    return Z_TEXT;
      +  }
      +  for (n = 32; n < LITERALS; n++) {
      +    if (s.dyn_ltree[n * 2]/*.Freq*/ !== 0) {
      +      return Z_TEXT;
      +    }
      +  }
      +
      +  /* There are no "black-listed" or "white-listed" bytes:
      +   * this stream either is empty or has tolerated ("gray-listed") bytes only.
      +   */
      +  return Z_BINARY;
      +}
      +
      +
      +var static_init_done = false;
      +
      +/* ===========================================================================
      + * Initialize the tree data structures for a new zlib stream.
      + */
      +function _tr_init(s)
      +{
      +
      +  if (!static_init_done) {
      +    tr_static_init();
      +    static_init_done = true;
      +  }
      +
      +  s.l_desc  = new TreeDesc(s.dyn_ltree, static_l_desc);
      +  s.d_desc  = new TreeDesc(s.dyn_dtree, static_d_desc);
      +  s.bl_desc = new TreeDesc(s.bl_tree, static_bl_desc);
      +
      +  s.bi_buf = 0;
      +  s.bi_valid = 0;
      +
      +  /* Initialize the first block of the first file: */
      +  init_block(s);
      +}
      +
      +
      +/* ===========================================================================
      + * Send a stored block
      + */
      +function _tr_stored_block(s, buf, stored_len, last)
      +//DeflateState *s;
      +//charf *buf;       /* input block */
      +//ulg stored_len;   /* length of input block */
      +//int last;         /* one if this is the last block for a file */
      +{
      +  send_bits(s, (STORED_BLOCK << 1) + (last ? 1 : 0), 3);    /* send block type */
      +  copy_block(s, buf, stored_len, true); /* with header */
      +}
      +
      +
      +/* ===========================================================================
      + * Send one empty static block to give enough lookahead for inflate.
      + * This takes 10 bits, of which 7 may remain in the bit buffer.
      + */
      +function _tr_align(s) {
      +  send_bits(s, STATIC_TREES << 1, 3);
      +  send_code(s, END_BLOCK, static_ltree);
      +  bi_flush(s);
      +}
      +
      +
      +/* ===========================================================================
      + * Determine the best encoding for the current block: dynamic trees, static
      + * trees or store, and output the encoded block to the zip file.
      + */
      +function _tr_flush_block(s, buf, stored_len, last)
      +//DeflateState *s;
      +//charf *buf;       /* input block, or NULL if too old */
      +//ulg stored_len;   /* length of input block */
      +//int last;         /* one if this is the last block for a file */
      +{
      +  var opt_lenb, static_lenb;  /* opt_len and static_len in bytes */
      +  var max_blindex = 0;        /* index of last bit length code of non zero freq */
      +
      +  /* Build the Huffman trees unless a stored block is forced */
      +  if (s.level > 0) {
      +
      +    /* Check if the file is binary or text */
      +    if (s.strm.data_type === Z_UNKNOWN) {
      +      s.strm.data_type = detect_data_type(s);
      +    }
      +
      +    /* Construct the literal and distance trees */
      +    build_tree(s, s.l_desc);
      +    // Tracev((stderr, "\nlit data: dyn %ld, stat %ld", s->opt_len,
      +    //        s->static_len));
      +
      +    build_tree(s, s.d_desc);
      +    // Tracev((stderr, "\ndist data: dyn %ld, stat %ld", s->opt_len,
      +    //        s->static_len));
      +    /* At this point, opt_len and static_len are the total bit lengths of
      +     * the compressed block data, excluding the tree representations.
      +     */
      +
      +    /* Build the bit length tree for the above two trees, and get the index
      +     * in bl_order of the last bit length code to send.
      +     */
      +    max_blindex = build_bl_tree(s);
      +
      +    /* Determine the best encoding. Compute the block lengths in bytes. */
      +    opt_lenb = (s.opt_len + 3 + 7) >>> 3;
      +    static_lenb = (s.static_len + 3 + 7) >>> 3;
      +
      +    // Tracev((stderr, "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u ",
      +    //        opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
      +    //        s->last_lit));
      +
      +    if (static_lenb <= opt_lenb) { opt_lenb = static_lenb; }
      +
      +  } else {
      +    // Assert(buf != (char*)0, "lost buf");
      +    opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
      +  }
      +
      +  if ((stored_len + 4 <= opt_lenb) && (buf !== -1)) {
      +    /* 4: two words for the lengths */
      +
      +    /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
      +     * Otherwise we can't have processed more than WSIZE input bytes since
      +     * the last block flush, because compression would have been
      +     * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
      +     * transform a block into a stored block.
      +     */
      +    _tr_stored_block(s, buf, stored_len, last);
      +
      +  } else if (s.strategy === Z_FIXED || static_lenb === opt_lenb) {
      +
      +    send_bits(s, (STATIC_TREES << 1) + (last ? 1 : 0), 3);
      +    compress_block(s, static_ltree, static_dtree);
      +
      +  } else {
      +    send_bits(s, (DYN_TREES << 1) + (last ? 1 : 0), 3);
      +    send_all_trees(s, s.l_desc.max_code + 1, s.d_desc.max_code + 1, max_blindex + 1);
      +    compress_block(s, s.dyn_ltree, s.dyn_dtree);
      +  }
      +  // Assert (s->compressed_len == s->bits_sent, "bad compressed size");
      +  /* The above check is made mod 2^32, for files larger than 512 MB
      +   * and uLong implemented on 32 bits.
      +   */
      +  init_block(s);
      +
      +  if (last) {
      +    bi_windup(s);
      +  }
      +  // Tracev((stderr,"\ncomprlen %lu(%lu) ", s->compressed_len>>3,
      +  //       s->compressed_len-7*last));
      +}
      +
      +/* ===========================================================================
      + * Save the match info and tally the frequency counts. Return true if
      + * the current block must be flushed.
      + */
      +function _tr_tally(s, dist, lc)
      +//    deflate_state *s;
      +//    unsigned dist;  /* distance of matched string */
      +//    unsigned lc;    /* match length-MIN_MATCH or unmatched char (if dist==0) */
      +{
      +  //var out_length, in_length, dcode;
      +
      +  s.pending_buf[s.d_buf + s.last_lit * 2]     = (dist >>> 8) & 0xff;
      +  s.pending_buf[s.d_buf + s.last_lit * 2 + 1] = dist & 0xff;
      +
      +  s.pending_buf[s.l_buf + s.last_lit] = lc & 0xff;
      +  s.last_lit++;
      +
      +  if (dist === 0) {
      +    /* lc is the unmatched char */
      +    s.dyn_ltree[lc * 2]/*.Freq*/++;
      +  } else {
      +    s.matches++;
      +    /* Here, lc is the match length - MIN_MATCH */
      +    dist--;             /* dist = match distance - 1 */
      +    //Assert((ush)dist < (ush)MAX_DIST(s) &&
      +    //       (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
      +    //       (ush)d_code(dist) < (ush)D_CODES,  "_tr_tally: bad match");
      +
      +    s.dyn_ltree[(_length_code[lc] + LITERALS + 1) * 2]/*.Freq*/++;
      +    s.dyn_dtree[d_code(dist) * 2]/*.Freq*/++;
      +  }
      +
      +// (!) This block is disabled in zlib defailts,
      +// don't enable it for binary compatibility
      +
      +//#ifdef TRUNCATE_BLOCK
      +//  /* Try to guess if it is profitable to stop the current block here */
      +//  if ((s.last_lit & 0x1fff) === 0 && s.level > 2) {
      +//    /* Compute an upper bound for the compressed length */
      +//    out_length = s.last_lit*8;
      +//    in_length = s.strstart - s.block_start;
      +//
      +//    for (dcode = 0; dcode < D_CODES; dcode++) {
      +//      out_length += s.dyn_dtree[dcode*2]/*.Freq*/ * (5 + extra_dbits[dcode]);
      +//    }
      +//    out_length >>>= 3;
      +//    //Tracev((stderr,"\nlast_lit %u, in %ld, out ~%ld(%ld%%) ",
      +//    //       s->last_lit, in_length, out_length,
      +//    //       100L - out_length*100L/in_length));
      +//    if (s.matches < (s.last_lit>>1)/*int /2*/ && out_length < (in_length>>1)/*int /2*/) {
      +//      return true;
      +//    }
      +//  }
      +//#endif
      +
      +  return (s.last_lit === s.lit_bufsize - 1);
      +  /* We avoid equality with lit_bufsize because of wraparound at 64K
      +   * on 16 bit machines and because stored blocks are restricted to
      +   * 64K-1 bytes.
      +   */
      +}
      +
      +exports._tr_init  = _tr_init;
      +exports._tr_stored_block = _tr_stored_block;
      +exports._tr_flush_block  = _tr_flush_block;
      +exports._tr_tally = _tr_tally;
      +exports._tr_align = _tr_align;
      +
      +},{"../utils/common":62}],74:[function(require,module,exports){
      +'use strict';
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +function ZStream() {
      +  /* next input byte */
      +  this.input = null; // JS specific, because we have no pointers
      +  this.next_in = 0;
      +  /* number of bytes available at input */
      +  this.avail_in = 0;
      +  /* total number of input bytes read so far */
      +  this.total_in = 0;
      +  /* next output byte should be put there */
      +  this.output = null; // JS specific, because we have no pointers
      +  this.next_out = 0;
      +  /* remaining free space at output */
      +  this.avail_out = 0;
      +  /* total number of bytes output so far */
      +  this.total_out = 0;
      +  /* last error message, NULL if no error */
      +  this.msg = ''/*Z_NULL*/;
      +  /* not visible by applications */
      +  this.state = null;
      +  /* best guess about the data type: binary or text */
      +  this.data_type = 2/*Z_UNKNOWN*/;
      +  /* adler32 value of the uncompressed data */
      +  this.adler = 0;
      +}
      +
      +module.exports = ZStream;
      +
      +},{}]},{},[10])(10)
      +});
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/jquery/jszip/dist/jszip.min.js b/docs/site/testapidocs/jquery/jszip/dist/jszip.min.js
      new file mode 100644
      index 00000000..b9188736
      --- /dev/null
      +++ b/docs/site/testapidocs/jquery/jszip/dist/jszip.min.js
      @@ -0,0 +1,15 @@
      +/*!
      +
      +JSZip v3.1.5 - A JavaScript class for generating and reading zip files
      +<http://stuartk.com/jszip>
      +
      +(c) 2009-2016 Stuart Knightley <stuart [at] stuartk.com>
      +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/master/LICENSE.markdown.
      +
      +JSZip uses the library pako released under the MIT license :
      +https://github.com/nodeca/pako/blob/master/LICENSE
      +*/
      +!function(a){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=a();else if("function"==typeof define&&define.amd)define([],a);else{var b;b="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,b.JSZip=a()}}(function(){return function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);var j=new Error("Cannot find module '"+g+"'");throw j.code="MODULE_NOT_FOUND",j}var k=c[g]={exports:{}};b[g][0].call(k.exports,function(a){var c=b[g][1][a];return e(c?c:a)},k,k.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g<d.length;g++)e(d[g]);return e}({1:[function(a,b,c){"use strict";var d=a("./utils"),e=a("./support"),f="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";c.encode=function(a){for(var b,c,e,g,h,i,j,k=[],l=0,m=a.length,n=m,o="string"!==d.getTypeOf(a);l<a.length;)n=m-l,o?(b=a[l++],c=l<m?a[l++]:0,e=l<m?a[l++]:0):(b=a.charCodeAt(l++),c=l<m?a.charCodeAt(l++):0,e=l<m?a.charCodeAt(l++):0),g=b>>2,h=(3&b)<<4|c>>4,i=n>1?(15&c)<<2|e>>6:64,j=n>2?63&e:64,k.push(f.charAt(g)+f.charAt(h)+f.charAt(i)+f.charAt(j));return k.join("")},c.decode=function(a){var b,c,d,g,h,i,j,k=0,l=0,m="data:";if(a.substr(0,m.length)===m)throw new Error("Invalid base64 input, it looks like a data url.");a=a.replace(/[^A-Za-z0-9\+\/\=]/g,"");var n=3*a.length/4;if(a.charAt(a.length-1)===f.charAt(64)&&n--,a.charAt(a.length-2)===f.charAt(64)&&n--,n%1!==0)throw new Error("Invalid base64 input, bad content length.");var o;for(o=e.uint8array?new Uint8Array(0|n):new Array(0|n);k<a.length;)g=f.indexOf(a.charAt(k++)),h=f.indexOf(a.charAt(k++)),i=f.indexOf(a.charAt(k++)),j=f.indexOf(a.charAt(k++)),b=g<<2|h>>4,c=(15&h)<<4|i>>2,d=(3&i)<<6|j,o[l++]=b,64!==i&&(o[l++]=c),64!==j&&(o[l++]=d);return o}},{"./support":30,"./utils":32}],2:[function(a,b,c){"use strict";function d(a,b,c,d,e){this.compressedSize=a,this.uncompressedSize=b,this.crc32=c,this.compression=d,this.compressedContent=e}var e=a("./external"),f=a("./stream/DataWorker"),g=a("./stream/DataLengthProbe"),h=a("./stream/Crc32Probe"),g=a("./stream/DataLengthProbe");d.prototype={getContentWorker:function(){var a=new f(e.Promise.resolve(this.compressedContent)).pipe(this.compression.uncompressWorker()).pipe(new g("data_length")),b=this;return a.on("end",function(){if(this.streamInfo.data_length!==b.uncompressedSize)throw new Error("Bug : uncompressed data size mismatch")}),a},getCompressedWorker:function(){return new f(e.Promise.resolve(this.compressedContent)).withStreamInfo("compressedSize",this.compressedSize).withStreamInfo("uncompressedSize",this.uncompressedSize).withStreamInfo("crc32",this.crc32).withStreamInfo("compression",this.compression)}},d.createWorkerFrom=function(a,b,c){return a.pipe(new h).pipe(new g("uncompressedSize")).pipe(b.compressWorker(c)).pipe(new g("compressedSize")).withStreamInfo("compression",b)},b.exports=d},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(a,b,c){"use strict";var d=a("./stream/GenericWorker");c.STORE={magic:"\0\0",compressWorker:function(a){return new d("STORE compression")},uncompressWorker:function(){return new d("STORE decompression")}},c.DEFLATE=a("./flate")},{"./flate":7,"./stream/GenericWorker":28}],4:[function(a,b,c){"use strict";function d(){for(var a,b=[],c=0;c<256;c++){a=c;for(var d=0;d<8;d++)a=1&a?3988292384^a>>>1:a>>>1;b[c]=a}return b}function e(a,b,c,d){var e=h,f=d+c;a^=-1;for(var g=d;g<f;g++)a=a>>>8^e[255&(a^b[g])];return a^-1}function f(a,b,c,d){var e=h,f=d+c;a^=-1;for(var g=d;g<f;g++)a=a>>>8^e[255&(a^b.charCodeAt(g))];return a^-1}var g=a("./utils"),h=d();b.exports=function(a,b){if("undefined"==typeof a||!a.length)return 0;var c="string"!==g.getTypeOf(a);return c?e(0|b,a,a.length,0):f(0|b,a,a.length,0)}},{"./utils":32}],5:[function(a,b,c){"use strict";c.base64=!1,c.binary=!1,c.dir=!1,c.createFolders=!0,c.date=null,c.compression=null,c.compressionOptions=null,c.comment=null,c.unixPermissions=null,c.dosPermissions=null},{}],6:[function(a,b,c){"use strict";var d=null;d="undefined"!=typeof Promise?Promise:a("lie"),b.exports={Promise:d}},{lie:58}],7:[function(a,b,c){"use strict";function d(a,b){h.call(this,"FlateWorker/"+a),this._pako=null,this._pakoAction=a,this._pakoOptions=b,this.meta={}}var e="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Uint32Array,f=a("pako"),g=a("./utils"),h=a("./stream/GenericWorker"),i=e?"uint8array":"array";c.magic="\b\0",g.inherits(d,h),d.prototype.processChunk=function(a){this.meta=a.meta,null===this._pako&&this._createPako(),this._pako.push(g.transformTo(i,a.data),!1)},d.prototype.flush=function(){h.prototype.flush.call(this),null===this._pako&&this._createPako(),this._pako.push([],!0)},d.prototype.cleanUp=function(){h.prototype.cleanUp.call(this),this._pako=null},d.prototype._createPako=function(){this._pako=new f[this._pakoAction]({raw:!0,level:this._pakoOptions.level||-1});var a=this;this._pako.onData=function(b){a.push({data:b,meta:a.meta})}},c.compressWorker=function(a){return new d("Deflate",a)},c.uncompressWorker=function(){return new d("Inflate",{})}},{"./stream/GenericWorker":28,"./utils":32,pako:59}],8:[function(a,b,c){"use strict";function d(a,b,c,d){f.call(this,"ZipFileWorker"),this.bytesWritten=0,this.zipComment=b,this.zipPlatform=c,this.encodeFileName=d,this.streamFiles=a,this.accumulate=!1,this.contentBuffer=[],this.dirRecords=[],this.currentSourceOffset=0,this.entriesCount=0,this.currentFile=null,this._sources=[]}var e=a("../utils"),f=a("../stream/GenericWorker"),g=a("../utf8"),h=a("../crc32"),i=a("../signature"),j=function(a,b){var c,d="";for(c=0;c<b;c++)d+=String.fromCharCode(255&a),a>>>=8;return d},k=function(a,b){var c=a;return a||(c=b?16893:33204),(65535&c)<<16},l=function(a,b){return 63&(a||0)},m=function(a,b,c,d,f,m){var n,o,p=a.file,q=a.compression,r=m!==g.utf8encode,s=e.transformTo("string",m(p.name)),t=e.transformTo("string",g.utf8encode(p.name)),u=p.comment,v=e.transformTo("string",m(u)),w=e.transformTo("string",g.utf8encode(u)),x=t.length!==p.name.length,y=w.length!==u.length,z="",A="",B="",C=p.dir,D=p.date,E={crc32:0,compressedSize:0,uncompressedSize:0};b&&!c||(E.crc32=a.crc32,E.compressedSize=a.compressedSize,E.uncompressedSize=a.uncompressedSize);var F=0;b&&(F|=8),r||!x&&!y||(F|=2048);var G=0,H=0;C&&(G|=16),"UNIX"===f?(H=798,G|=k(p.unixPermissions,C)):(H=20,G|=l(p.dosPermissions,C)),n=D.getUTCHours(),n<<=6,n|=D.getUTCMinutes(),n<<=5,n|=D.getUTCSeconds()/2,o=D.getUTCFullYear()-1980,o<<=4,o|=D.getUTCMonth()+1,o<<=5,o|=D.getUTCDate(),x&&(A=j(1,1)+j(h(s),4)+t,z+="up"+j(A.length,2)+A),y&&(B=j(1,1)+j(h(v),4)+w,z+="uc"+j(B.length,2)+B);var I="";I+="\n\0",I+=j(F,2),I+=q.magic,I+=j(n,2),I+=j(o,2),I+=j(E.crc32,4),I+=j(E.compressedSize,4),I+=j(E.uncompressedSize,4),I+=j(s.length,2),I+=j(z.length,2);var J=i.LOCAL_FILE_HEADER+I+s+z,K=i.CENTRAL_FILE_HEADER+j(H,2)+I+j(v.length,2)+"\0\0\0\0"+j(G,4)+j(d,4)+s+z+v;return{fileRecord:J,dirRecord:K}},n=function(a,b,c,d,f){var g="",h=e.transformTo("string",f(d));return g=i.CENTRAL_DIRECTORY_END+"\0\0\0\0"+j(a,2)+j(a,2)+j(b,4)+j(c,4)+j(h.length,2)+h},o=function(a){var b="";return b=i.DATA_DESCRIPTOR+j(a.crc32,4)+j(a.compressedSize,4)+j(a.uncompressedSize,4)};e.inherits(d,f),d.prototype.push=function(a){var b=a.meta.percent||0,c=this.entriesCount,d=this._sources.length;this.accumulate?this.contentBuffer.push(a):(this.bytesWritten+=a.data.length,f.prototype.push.call(this,{data:a.data,meta:{currentFile:this.currentFile,percent:c?(b+100*(c-d-1))/c:100}}))},d.prototype.openedSource=function(a){this.currentSourceOffset=this.bytesWritten,this.currentFile=a.file.name;var b=this.streamFiles&&!a.file.dir;if(b){var c=m(a,b,!1,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);this.push({data:c.fileRecord,meta:{percent:0}})}else this.accumulate=!0},d.prototype.closedSource=function(a){this.accumulate=!1;var b=this.streamFiles&&!a.file.dir,c=m(a,b,!0,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);if(this.dirRecords.push(c.dirRecord),b)this.push({data:o(a),meta:{percent:100}});else for(this.push({data:c.fileRecord,meta:{percent:0}});this.contentBuffer.length;)this.push(this.contentBuffer.shift());this.currentFile=null},d.prototype.flush=function(){for(var a=this.bytesWritten,b=0;b<this.dirRecords.length;b++)this.push({data:this.dirRecords[b],meta:{percent:100}});var c=this.bytesWritten-a,d=n(this.dirRecords.length,c,a,this.zipComment,this.encodeFileName);this.push({data:d,meta:{percent:100}})},d.prototype.prepareNextSource=function(){this.previous=this._sources.shift(),this.openedSource(this.previous.streamInfo),this.isPaused?this.previous.pause():this.previous.resume()},d.prototype.registerPrevious=function(a){this._sources.push(a);var b=this;return a.on("data",function(a){b.processChunk(a)}),a.on("end",function(){b.closedSource(b.previous.streamInfo),b._sources.length?b.prepareNextSource():b.end()}),a.on("error",function(a){b.error(a)}),this},d.prototype.resume=function(){return!!f.prototype.resume.call(this)&&(!this.previous&&this._sources.length?(this.prepareNextSource(),!0):this.previous||this._sources.length||this.generatedError?void 0:(this.end(),!0))},d.prototype.error=function(a){var b=this._sources;if(!f.prototype.error.call(this,a))return!1;for(var c=0;c<b.length;c++)try{b[c].error(a)}catch(a){}return!0},d.prototype.lock=function(){f.prototype.lock.call(this);for(var a=this._sources,b=0;b<a.length;b++)a[b].lock()},b.exports=d},{"../crc32":4,"../signature":23,"../stream/GenericWorker":28,"../utf8":31,"../utils":32}],9:[function(a,b,c){"use strict";var d=a("../compressions"),e=a("./ZipFileWorker"),f=function(a,b){var c=a||b,e=d[c];if(!e)throw new Error(c+" is not a valid compression method !");return e};c.generateWorker=function(a,b,c){var d=new e(b.streamFiles,c,b.platform,b.encodeFileName),g=0;try{a.forEach(function(a,c){g++;var e=f(c.options.compression,b.compression),h=c.options.compressionOptions||b.compressionOptions||{},i=c.dir,j=c.date;c._compressWorker(e,h).withStreamInfo("file",{name:a,dir:i,date:j,comment:c.comment||"",unixPermissions:c.unixPermissions,dosPermissions:c.dosPermissions}).pipe(d)}),d.entriesCount=g}catch(h){d.error(h)}return d}},{"../compressions":3,"./ZipFileWorker":8}],10:[function(a,b,c){"use strict";function d(){if(!(this instanceof d))return new d;if(arguments.length)throw new Error("The constructor with parameters has been removed in JSZip 3.0, please check the upgrade guide.");this.files={},this.comment=null,this.root="",this.clone=function(){var a=new d;for(var b in this)"function"!=typeof this[b]&&(a[b]=this[b]);return a}}d.prototype=a("./object"),d.prototype.loadAsync=a("./load"),d.support=a("./support"),d.defaults=a("./defaults"),d.version="3.1.5",d.loadAsync=function(a,b){return(new d).loadAsync(a,b)},d.external=a("./external"),b.exports=d},{"./defaults":5,"./external":6,"./load":11,"./object":15,"./support":30}],11:[function(a,b,c){"use strict";function d(a){return new f.Promise(function(b,c){var d=a.decompressed.getContentWorker().pipe(new i);d.on("error",function(a){c(a)}).on("end",function(){d.streamInfo.crc32!==a.decompressed.crc32?c(new Error("Corrupted zip : CRC32 mismatch")):b()}).resume()})}var e=a("./utils"),f=a("./external"),g=a("./utf8"),e=a("./utils"),h=a("./zipEntries"),i=a("./stream/Crc32Probe"),j=a("./nodejsUtils");b.exports=function(a,b){var c=this;return b=e.extend(b||{},{base64:!1,checkCRC32:!1,optimizedBinaryString:!1,createFolders:!1,decodeFileName:g.utf8decode}),j.isNode&&j.isStream(a)?f.Promise.reject(new Error("JSZip can't accept a stream when loading a zip file.")):e.prepareContent("the loaded zip file",a,!0,b.optimizedBinaryString,b.base64).then(function(a){var c=new h(b);return c.load(a),c}).then(function(a){var c=[f.Promise.resolve(a)],e=a.files;if(b.checkCRC32)for(var g=0;g<e.length;g++)c.push(d(e[g]));return f.Promise.all(c)}).then(function(a){for(var d=a.shift(),e=d.files,f=0;f<e.length;f++){var g=e[f];c.file(g.fileNameStr,g.decompressed,{binary:!0,optimizedBinaryString:!0,date:g.date,dir:g.dir,comment:g.fileCommentStr.length?g.fileCommentStr:null,unixPermissions:g.unixPermissions,dosPermissions:g.dosPermissions,createFolders:b.createFolders})}return d.zipComment.length&&(c.comment=d.zipComment),c})}},{"./external":6,"./nodejsUtils":14,"./stream/Crc32Probe":25,"./utf8":31,"./utils":32,"./zipEntries":33}],12:[function(a,b,c){"use strict";function d(a,b){f.call(this,"Nodejs stream input adapter for "+a),this._upstreamEnded=!1,this._bindStream(b)}var e=a("../utils"),f=a("../stream/GenericWorker");e.inherits(d,f),d.prototype._bindStream=function(a){var b=this;this._stream=a,a.pause(),a.on("data",function(a){b.push({data:a,meta:{percent:0}})}).on("error",function(a){b.isPaused?this.generatedError=a:b.error(a)}).on("end",function(){b.isPaused?b._upstreamEnded=!0:b.end()})},d.prototype.pause=function(){return!!f.prototype.pause.call(this)&&(this._stream.pause(),!0)},d.prototype.resume=function(){return!!f.prototype.resume.call(this)&&(this._upstreamEnded?this.end():this._stream.resume(),!0)},b.exports=d},{"../stream/GenericWorker":28,"../utils":32}],13:[function(a,b,c){"use strict";function d(a,b,c){e.call(this,b),this._helper=a;var d=this;a.on("data",function(a,b){d.push(a)||d._helper.pause(),c&&c(b)}).on("error",function(a){d.emit("error",a)}).on("end",function(){d.push(null)})}var e=a("readable-stream").Readable,f=a("../utils");f.inherits(d,e),d.prototype._read=function(){this._helper.resume()},b.exports=d},{"../utils":32,"readable-stream":16}],14:[function(a,b,c){"use strict";b.exports={isNode:"undefined"!=typeof Buffer,newBufferFrom:function(a,b){return new Buffer(a,b)},allocBuffer:function(a){return Buffer.alloc?Buffer.alloc(a):new Buffer(a)},isBuffer:function(a){return Buffer.isBuffer(a)},isStream:function(a){return a&&"function"==typeof a.on&&"function"==typeof a.pause&&"function"==typeof a.resume}}},{}],15:[function(a,b,c){"use strict";function d(a){return"[object RegExp]"===Object.prototype.toString.call(a)}var e=a("./utf8"),f=a("./utils"),g=a("./stream/GenericWorker"),h=a("./stream/StreamHelper"),i=a("./defaults"),j=a("./compressedObject"),k=a("./zipObject"),l=a("./generate"),m=a("./nodejsUtils"),n=a("./nodejs/NodejsStreamInputAdapter"),o=function(a,b,c){var d,e=f.getTypeOf(b),h=f.extend(c||{},i);h.date=h.date||new Date,null!==h.compression&&(h.compression=h.compression.toUpperCase()),"string"==typeof h.unixPermissions&&(h.unixPermissions=parseInt(h.unixPermissions,8)),h.unixPermissions&&16384&h.unixPermissions&&(h.dir=!0),h.dosPermissions&&16&h.dosPermissions&&(h.dir=!0),h.dir&&(a=q(a)),h.createFolders&&(d=p(a))&&r.call(this,d,!0);var l="string"===e&&h.binary===!1&&h.base64===!1;c&&"undefined"!=typeof c.binary||(h.binary=!l);var o=b instanceof j&&0===b.uncompressedSize;(o||h.dir||!b||0===b.length)&&(h.base64=!1,h.binary=!0,b="",h.compression="STORE",e="string");var s=null;s=b instanceof j||b instanceof g?b:m.isNode&&m.isStream(b)?new n(a,b):f.prepareContent(a,b,h.binary,h.optimizedBinaryString,h.base64);var t=new k(a,s,h);this.files[a]=t},p=function(a){"/"===a.slice(-1)&&(a=a.substring(0,a.length-1));var b=a.lastIndexOf("/");return b>0?a.substring(0,b):""},q=function(a){return"/"!==a.slice(-1)&&(a+="/"),a},r=function(a,b){return b="undefined"!=typeof b?b:i.createFolders,a=q(a),this.files[a]||o.call(this,a,null,{dir:!0,createFolders:b}),this.files[a]},s={load:function(){throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.")},forEach:function(a){var b,c,d;for(b in this.files)this.files.hasOwnProperty(b)&&(d=this.files[b],c=b.slice(this.root.length,b.length),c&&b.slice(0,this.root.length)===this.root&&a(c,d))},filter:function(a){var b=[];return this.forEach(function(c,d){a(c,d)&&b.push(d)}),b},file:function(a,b,c){if(1===arguments.length){if(d(a)){var e=a;return this.filter(function(a,b){return!b.dir&&e.test(a)})}var f=this.files[this.root+a];return f&&!f.dir?f:null}return a=this.root+a,o.call(this,a,b,c),this},folder:function(a){if(!a)return this;if(d(a))return this.filter(function(b,c){return c.dir&&a.test(b)});var b=this.root+a,c=r.call(this,b),e=this.clone();return e.root=c.name,e},remove:function(a){a=this.root+a;var b=this.files[a];if(b||("/"!==a.slice(-1)&&(a+="/"),b=this.files[a]),b&&!b.dir)delete this.files[a];else for(var c=this.filter(function(b,c){return c.name.slice(0,a.length)===a}),d=0;d<c.length;d++)delete this.files[c[d].name];return this},generate:function(a){throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.")},generateInternalStream:function(a){var b,c={};try{if(c=f.extend(a||{},{streamFiles:!1,compression:"STORE",compressionOptions:null,type:"",platform:"DOS",comment:null,mimeType:"application/zip",encodeFileName:e.utf8encode}),c.type=c.type.toLowerCase(),c.compression=c.compression.toUpperCase(),"binarystring"===c.type&&(c.type="string"),!c.type)throw new Error("No output type specified.");f.checkSupport(c.type),"darwin"!==c.platform&&"freebsd"!==c.platform&&"linux"!==c.platform&&"sunos"!==c.platform||(c.platform="UNIX"),"win32"===c.platform&&(c.platform="DOS");var d=c.comment||this.comment||"";b=l.generateWorker(this,c,d)}catch(i){b=new g("error"),b.error(i)}return new h(b,c.type||"string",c.mimeType)},generateAsync:function(a,b){return this.generateInternalStream(a).accumulate(b)},generateNodeStream:function(a,b){return a=a||{},a.type||(a.type="nodebuffer"),this.generateInternalStream(a).toNodejsStream(b)}};b.exports=s},{"./compressedObject":2,"./defaults":5,"./generate":9,"./nodejs/NodejsStreamInputAdapter":12,"./nodejsUtils":14,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31,"./utils":32,"./zipObject":35}],16:[function(a,b,c){b.exports=a("stream")},{stream:void 0}],17:[function(a,b,c){"use strict";function d(a){e.call(this,a);for(var b=0;b<this.data.length;b++)a[b]=255&a[b]}var e=a("./DataReader"),f=a("../utils");f.inherits(d,e),d.prototype.byteAt=function(a){return this.data[this.zero+a]},d.prototype.lastIndexOfSignature=function(a){for(var b=a.charCodeAt(0),c=a.charCodeAt(1),d=a.charCodeAt(2),e=a.charCodeAt(3),f=this.length-4;f>=0;--f)if(this.data[f]===b&&this.data[f+1]===c&&this.data[f+2]===d&&this.data[f+3]===e)return f-this.zero;return-1},d.prototype.readAndCheckSignature=function(a){var b=a.charCodeAt(0),c=a.charCodeAt(1),d=a.charCodeAt(2),e=a.charCodeAt(3),f=this.readData(4);return b===f[0]&&c===f[1]&&d===f[2]&&e===f[3]},d.prototype.readData=function(a){if(this.checkOffset(a),0===a)return[];var b=this.data.slice(this.zero+this.index,this.zero+this.index+a);return this.index+=a,b},b.exports=d},{"../utils":32,"./DataReader":18}],18:[function(a,b,c){"use strict";function d(a){this.data=a,this.length=a.length,this.index=0,this.zero=0}var e=a("../utils");d.prototype={checkOffset:function(a){this.checkIndex(this.index+a)},checkIndex:function(a){if(this.length<this.zero+a||a<0)throw new Error("End of data reached (data length = "+this.length+", asked index = "+a+"). Corrupted zip ?")},setIndex:function(a){this.checkIndex(a),this.index=a},skip:function(a){this.setIndex(this.index+a)},byteAt:function(a){},readInt:function(a){var b,c=0;for(this.checkOffset(a),b=this.index+a-1;b>=this.index;b--)c=(c<<8)+this.byteAt(b);return this.index+=a,c},readString:function(a){return e.transformTo("string",this.readData(a))},readData:function(a){},lastIndexOfSignature:function(a){},readAndCheckSignature:function(a){},readDate:function(){var a=this.readInt(4);return new Date(Date.UTC((a>>25&127)+1980,(a>>21&15)-1,a>>16&31,a>>11&31,a>>5&63,(31&a)<<1))}},b.exports=d},{"../utils":32}],19:[function(a,b,c){"use strict";function d(a){e.call(this,a)}var e=a("./Uint8ArrayReader"),f=a("../utils");f.inherits(d,e),d.prototype.readData=function(a){this.checkOffset(a);var b=this.data.slice(this.zero+this.index,this.zero+this.index+a);return this.index+=a,b},b.exports=d},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(a,b,c){"use strict";function d(a){e.call(this,a)}var e=a("./DataReader"),f=a("../utils");f.inherits(d,e),d.prototype.byteAt=function(a){return this.data.charCodeAt(this.zero+a)},d.prototype.lastIndexOfSignature=function(a){return this.data.lastIndexOf(a)-this.zero},d.prototype.readAndCheckSignature=function(a){var b=this.readData(4);return a===b},d.prototype.readData=function(a){this.checkOffset(a);var b=this.data.slice(this.zero+this.index,this.zero+this.index+a);return this.index+=a,b},b.exports=d},{"../utils":32,"./DataReader":18}],21:[function(a,b,c){"use strict";function d(a){e.call(this,a)}var e=a("./ArrayReader"),f=a("../utils");f.inherits(d,e),d.prototype.readData=function(a){if(this.checkOffset(a),0===a)return new Uint8Array(0);var b=this.data.subarray(this.zero+this.index,this.zero+this.index+a);return this.index+=a,b},b.exports=d},{"../utils":32,"./ArrayReader":17}],22:[function(a,b,c){"use strict";var d=a("../utils"),e=a("../support"),f=a("./ArrayReader"),g=a("./StringReader"),h=a("./NodeBufferReader"),i=a("./Uint8ArrayReader");b.exports=function(a){var b=d.getTypeOf(a);return d.checkSupport(b),"string"!==b||e.uint8array?"nodebuffer"===b?new h(a):e.uint8array?new i(d.transformTo("uint8array",a)):new f(d.transformTo("array",a)):new g(a)}},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(a,b,c){"use strict";c.LOCAL_FILE_HEADER="PK",c.CENTRAL_FILE_HEADER="PK",c.CENTRAL_DIRECTORY_END="PK",c.ZIP64_CENTRAL_DIRECTORY_LOCATOR="PK",c.ZIP64_CENTRAL_DIRECTORY_END="PK",c.DATA_DESCRIPTOR="PK\b"},{}],24:[function(a,b,c){"use strict";function d(a){e.call(this,"ConvertWorker to "+a),this.destType=a}var e=a("./GenericWorker"),f=a("../utils");f.inherits(d,e),d.prototype.processChunk=function(a){this.push({data:f.transformTo(this.destType,a.data),meta:a.meta})},b.exports=d},{"../utils":32,"./GenericWorker":28}],25:[function(a,b,c){"use strict";function d(){e.call(this,"Crc32Probe"),this.withStreamInfo("crc32",0)}var e=a("./GenericWorker"),f=a("../crc32"),g=a("../utils");g.inherits(d,e),d.prototype.processChunk=function(a){this.streamInfo.crc32=f(a.data,this.streamInfo.crc32||0),this.push(a)},b.exports=d},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(a,b,c){"use strict";function d(a){f.call(this,"DataLengthProbe for "+a),this.propName=a,this.withStreamInfo(a,0)}var e=a("../utils"),f=a("./GenericWorker");e.inherits(d,f),d.prototype.processChunk=function(a){if(a){var b=this.streamInfo[this.propName]||0;this.streamInfo[this.propName]=b+a.data.length}f.prototype.processChunk.call(this,a)},b.exports=d},{"../utils":32,"./GenericWorker":28}],27:[function(a,b,c){"use strict";function d(a){f.call(this,"DataWorker");var b=this;this.dataIsReady=!1,this.index=0,this.max=0,this.data=null,this.type="",this._tickScheduled=!1,a.then(function(a){b.dataIsReady=!0,b.data=a,b.max=a&&a.length||0,b.type=e.getTypeOf(a),b.isPaused||b._tickAndRepeat()},function(a){b.error(a)})}var e=a("../utils"),f=a("./GenericWorker"),g=16384;e.inherits(d,f),d.prototype.cleanUp=function(){f.prototype.cleanUp.call(this),this.data=null},d.prototype.resume=function(){return!!f.prototype.resume.call(this)&&(!this._tickScheduled&&this.dataIsReady&&(this._tickScheduled=!0,e.delay(this._tickAndRepeat,[],this)),!0)},d.prototype._tickAndRepeat=function(){this._tickScheduled=!1,this.isPaused||this.isFinished||(this._tick(),this.isFinished||(e.delay(this._tickAndRepeat,[],this),this._tickScheduled=!0))},d.prototype._tick=function(){if(this.isPaused||this.isFinished)return!1;var a=g,b=null,c=Math.min(this.max,this.index+a);if(this.index>=this.max)return this.end();switch(this.type){case"string":b=this.data.substring(this.index,c);break;case"uint8array":b=this.data.subarray(this.index,c);break;case"array":case"nodebuffer":b=this.data.slice(this.index,c)}return this.index=c,this.push({data:b,meta:{percent:this.max?this.index/this.max*100:0}})},b.exports=d},{"../utils":32,"./GenericWorker":28}],28:[function(a,b,c){"use strict";function d(a){this.name=a||"default",this.streamInfo={},this.generatedError=null,this.extraStreamInfo={},this.isPaused=!0,this.isFinished=!1,this.isLocked=!1,this._listeners={data:[],end:[],error:[]},this.previous=null}d.prototype={push:function(a){this.emit("data",a)},end:function(){if(this.isFinished)return!1;this.flush();try{this.emit("end"),this.cleanUp(),this.isFinished=!0}catch(a){this.emit("error",a)}return!0},error:function(a){return!this.isFinished&&(this.isPaused?this.generatedError=a:(this.isFinished=!0,this.emit("error",a),this.previous&&this.previous.error(a),this.cleanUp()),!0)},on:function(a,b){return this._listeners[a].push(b),this},cleanUp:function(){this.streamInfo=this.generatedError=this.extraStreamInfo=null,this._listeners=[]},emit:function(a,b){if(this._listeners[a])for(var c=0;c<this._listeners[a].length;c++)this._listeners[a][c].call(this,b)},pipe:function(a){return a.registerPrevious(this)},registerPrevious:function(a){if(this.isLocked)throw new Error("The stream '"+this+"' has already been used.");this.streamInfo=a.streamInfo,this.mergeStreamInfo(),this.previous=a;var b=this;return a.on("data",function(a){b.processChunk(a)}),a.on("end",function(){b.end()}),a.on("error",function(a){b.error(a)}),this},pause:function(){return!this.isPaused&&!this.isFinished&&(this.isPaused=!0,this.previous&&this.previous.pause(),!0)},resume:function(){if(!this.isPaused||this.isFinished)return!1;this.isPaused=!1;var a=!1;return this.generatedError&&(this.error(this.generatedError),a=!0),this.previous&&this.previous.resume(),!a},flush:function(){},processChunk:function(a){this.push(a)},withStreamInfo:function(a,b){return this.extraStreamInfo[a]=b,this.mergeStreamInfo(),this},mergeStreamInfo:function(){for(var a in this.extraStreamInfo)this.extraStreamInfo.hasOwnProperty(a)&&(this.streamInfo[a]=this.extraStreamInfo[a])},lock:function(){if(this.isLocked)throw new Error("The stream '"+this+"' has already been used.");this.isLocked=!0,this.previous&&this.previous.lock()},toString:function(){var a="Worker "+this.name;return this.previous?this.previous+" -> "+a:a}},b.exports=d},{}],29:[function(a,b,c){"use strict";function d(a,b,c){switch(a){case"blob":return h.newBlob(h.transformTo("arraybuffer",b),c);case"base64":return k.encode(b);default:return h.transformTo(a,b)}}function e(a,b){var c,d=0,e=null,f=0;for(c=0;c<b.length;c++)f+=b[c].length;switch(a){case"string":return b.join("");case"array":return Array.prototype.concat.apply([],b);case"uint8array":for(e=new Uint8Array(f),c=0;c<b.length;c++)e.set(b[c],d),d+=b[c].length;return e;case"nodebuffer":return Buffer.concat(b);default:throw new Error("concat : unsupported type '"+a+"'")}}function f(a,b){return new m.Promise(function(c,f){var g=[],h=a._internalType,i=a._outputType,j=a._mimeType;a.on("data",function(a,c){g.push(a),b&&b(c)}).on("error",function(a){g=[],f(a)}).on("end",function(){try{var a=d(i,e(h,g),j);c(a)}catch(b){f(b)}g=[]}).resume()})}function g(a,b,c){var d=b;switch(b){case"blob":case"arraybuffer":d="uint8array";break;case"base64":d="string"}try{this._internalType=d,this._outputType=b,this._mimeType=c,h.checkSupport(d),this._worker=a.pipe(new i(d)),a.lock()}catch(e){this._worker=new j("error"),this._worker.error(e)}}var h=a("../utils"),i=a("./ConvertWorker"),j=a("./GenericWorker"),k=a("../base64"),l=a("../support"),m=a("../external"),n=null;if(l.nodestream)try{n=a("../nodejs/NodejsStreamOutputAdapter")}catch(o){}g.prototype={accumulate:function(a){return f(this,a)},on:function(a,b){var c=this;return"data"===a?this._worker.on(a,function(a){b.call(c,a.data,a.meta)}):this._worker.on(a,function(){h.delay(b,arguments,c)}),this},resume:function(){return h.delay(this._worker.resume,[],this._worker),this},pause:function(){return this._worker.pause(),this},toNodejsStream:function(a){if(h.checkSupport("nodestream"),"nodebuffer"!==this._outputType)throw new Error(this._outputType+" is not supported by this method");return new n(this,{objectMode:"nodebuffer"!==this._outputType},a)}},b.exports=g},{"../base64":1,"../external":6,"../nodejs/NodejsStreamOutputAdapter":13,"../support":30,"../utils":32,"./ConvertWorker":24,"./GenericWorker":28}],30:[function(a,b,c){"use strict";if(c.base64=!0,c.array=!0,c.string=!0,c.arraybuffer="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array,c.nodebuffer="undefined"!=typeof Buffer,c.uint8array="undefined"!=typeof Uint8Array,"undefined"==typeof ArrayBuffer)c.blob=!1;else{var d=new ArrayBuffer(0);try{c.blob=0===new Blob([d],{type:"application/zip"}).size}catch(e){try{var f=self.BlobBuilder||self.WebKitBlobBuilder||self.MozBlobBuilder||self.MSBlobBuilder,g=new f;g.append(d),c.blob=0===g.getBlob("application/zip").size}catch(e){c.blob=!1}}}try{c.nodestream=!!a("readable-stream").Readable}catch(e){c.nodestream=!1}},{"readable-stream":16}],31:[function(a,b,c){"use strict";function d(){i.call(this,"utf-8 decode"),this.leftOver=null}function e(){i.call(this,"utf-8 encode")}for(var f=a("./utils"),g=a("./support"),h=a("./nodejsUtils"),i=a("./stream/GenericWorker"),j=new Array(256),k=0;k<256;k++)j[k]=k>=252?6:k>=248?5:k>=240?4:k>=224?3:k>=192?2:1;j[254]=j[254]=1;var l=function(a){var b,c,d,e,f,h=a.length,i=0;for(e=0;e<h;e++)c=a.charCodeAt(e),55296===(64512&c)&&e+1<h&&(d=a.charCodeAt(e+1),56320===(64512&d)&&(c=65536+(c-55296<<10)+(d-56320),e++)),i+=c<128?1:c<2048?2:c<65536?3:4;for(b=g.uint8array?new Uint8Array(i):new Array(i),f=0,e=0;f<i;e++)c=a.charCodeAt(e),55296===(64512&c)&&e+1<h&&(d=a.charCodeAt(e+1),56320===(64512&d)&&(c=65536+(c-55296<<10)+(d-56320),e++)),c<128?b[f++]=c:c<2048?(b[f++]=192|c>>>6,b[f++]=128|63&c):c<65536?(b[f++]=224|c>>>12,b[f++]=128|c>>>6&63,b[f++]=128|63&c):(b[f++]=240|c>>>18,b[f++]=128|c>>>12&63,b[f++]=128|c>>>6&63,b[f++]=128|63&c);return b},m=function(a,b){var c;for(b=b||a.length,b>a.length&&(b=a.length),c=b-1;c>=0&&128===(192&a[c]);)c--;return c<0?b:0===c?b:c+j[a[c]]>b?c:b},n=function(a){var b,c,d,e,g=a.length,h=new Array(2*g);for(c=0,b=0;b<g;)if(d=a[b++],d<128)h[c++]=d;else if(e=j[d],e>4)h[c++]=65533,b+=e-1;else{for(d&=2===e?31:3===e?15:7;e>1&&b<g;)d=d<<6|63&a[b++],e--;e>1?h[c++]=65533:d<65536?h[c++]=d:(d-=65536,h[c++]=55296|d>>10&1023,h[c++]=56320|1023&d)}return h.length!==c&&(h.subarray?h=h.subarray(0,c):h.length=c),f.applyFromCharCode(h)};c.utf8encode=function(a){return g.nodebuffer?h.newBufferFrom(a,"utf-8"):l(a)},c.utf8decode=function(a){return g.nodebuffer?f.transformTo("nodebuffer",a).toString("utf-8"):(a=f.transformTo(g.uint8array?"uint8array":"array",a),n(a))},f.inherits(d,i),d.prototype.processChunk=function(a){var b=f.transformTo(g.uint8array?"uint8array":"array",a.data);if(this.leftOver&&this.leftOver.length){if(g.uint8array){var d=b;b=new Uint8Array(d.length+this.leftOver.length),b.set(this.leftOver,0),b.set(d,this.leftOver.length)}else b=this.leftOver.concat(b);this.leftOver=null}var e=m(b),h=b;e!==b.length&&(g.uint8array?(h=b.subarray(0,e),this.leftOver=b.subarray(e,b.length)):(h=b.slice(0,e),this.leftOver=b.slice(e,b.length))),this.push({data:c.utf8decode(h),meta:a.meta})},d.prototype.flush=function(){this.leftOver&&this.leftOver.length&&(this.push({data:c.utf8decode(this.leftOver),meta:{}}),this.leftOver=null)},c.Utf8DecodeWorker=d,f.inherits(e,i),e.prototype.processChunk=function(a){this.push({data:c.utf8encode(a.data),meta:a.meta})},c.Utf8EncodeWorker=e},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(a,b,c){"use strict";function d(a){var b=null;return b=i.uint8array?new Uint8Array(a.length):new Array(a.length),f(a,b)}function e(a){return a}function f(a,b){for(var c=0;c<a.length;++c)b[c]=255&a.charCodeAt(c);return b}function g(a){var b=65536,d=c.getTypeOf(a),e=!0;if("uint8array"===d?e=n.applyCanBeUsed.uint8array:"nodebuffer"===d&&(e=n.applyCanBeUsed.nodebuffer),e)for(;b>1;)try{return n.stringifyByChunk(a,d,b)}catch(f){b=Math.floor(b/2)}return n.stringifyByChar(a)}function h(a,b){for(var c=0;c<a.length;c++)b[c]=a[c];
      +return b}var i=a("./support"),j=a("./base64"),k=a("./nodejsUtils"),l=a("core-js/library/fn/set-immediate"),m=a("./external");c.newBlob=function(a,b){c.checkSupport("blob");try{return new Blob([a],{type:b})}catch(d){try{var e=self.BlobBuilder||self.WebKitBlobBuilder||self.MozBlobBuilder||self.MSBlobBuilder,f=new e;return f.append(a),f.getBlob(b)}catch(d){throw new Error("Bug : can't construct the Blob.")}}};var n={stringifyByChunk:function(a,b,c){var d=[],e=0,f=a.length;if(f<=c)return String.fromCharCode.apply(null,a);for(;e<f;)"array"===b||"nodebuffer"===b?d.push(String.fromCharCode.apply(null,a.slice(e,Math.min(e+c,f)))):d.push(String.fromCharCode.apply(null,a.subarray(e,Math.min(e+c,f)))),e+=c;return d.join("")},stringifyByChar:function(a){for(var b="",c=0;c<a.length;c++)b+=String.fromCharCode(a[c]);return b},applyCanBeUsed:{uint8array:function(){try{return i.uint8array&&1===String.fromCharCode.apply(null,new Uint8Array(1)).length}catch(a){return!1}}(),nodebuffer:function(){try{return i.nodebuffer&&1===String.fromCharCode.apply(null,k.allocBuffer(1)).length}catch(a){return!1}}()}};c.applyFromCharCode=g;var o={};o.string={string:e,array:function(a){return f(a,new Array(a.length))},arraybuffer:function(a){return o.string.uint8array(a).buffer},uint8array:function(a){return f(a,new Uint8Array(a.length))},nodebuffer:function(a){return f(a,k.allocBuffer(a.length))}},o.array={string:g,array:e,arraybuffer:function(a){return new Uint8Array(a).buffer},uint8array:function(a){return new Uint8Array(a)},nodebuffer:function(a){return k.newBufferFrom(a)}},o.arraybuffer={string:function(a){return g(new Uint8Array(a))},array:function(a){return h(new Uint8Array(a),new Array(a.byteLength))},arraybuffer:e,uint8array:function(a){return new Uint8Array(a)},nodebuffer:function(a){return k.newBufferFrom(new Uint8Array(a))}},o.uint8array={string:g,array:function(a){return h(a,new Array(a.length))},arraybuffer:function(a){return a.buffer},uint8array:e,nodebuffer:function(a){return k.newBufferFrom(a)}},o.nodebuffer={string:g,array:function(a){return h(a,new Array(a.length))},arraybuffer:function(a){return o.nodebuffer.uint8array(a).buffer},uint8array:function(a){return h(a,new Uint8Array(a.length))},nodebuffer:e},c.transformTo=function(a,b){if(b||(b=""),!a)return b;c.checkSupport(a);var d=c.getTypeOf(b),e=o[d][a](b);return e},c.getTypeOf=function(a){return"string"==typeof a?"string":"[object Array]"===Object.prototype.toString.call(a)?"array":i.nodebuffer&&k.isBuffer(a)?"nodebuffer":i.uint8array&&a instanceof Uint8Array?"uint8array":i.arraybuffer&&a instanceof ArrayBuffer?"arraybuffer":void 0},c.checkSupport=function(a){var b=i[a.toLowerCase()];if(!b)throw new Error(a+" is not supported by this platform")},c.MAX_VALUE_16BITS=65535,c.MAX_VALUE_32BITS=-1,c.pretty=function(a){var b,c,d="";for(c=0;c<(a||"").length;c++)b=a.charCodeAt(c),d+="\\x"+(b<16?"0":"")+b.toString(16).toUpperCase();return d},c.delay=function(a,b,c){l(function(){a.apply(c||null,b||[])})},c.inherits=function(a,b){var c=function(){};c.prototype=b.prototype,a.prototype=new c},c.extend=function(){var a,b,c={};for(a=0;a<arguments.length;a++)for(b in arguments[a])arguments[a].hasOwnProperty(b)&&"undefined"==typeof c[b]&&(c[b]=arguments[a][b]);return c},c.prepareContent=function(a,b,e,f,g){var h=m.Promise.resolve(b).then(function(a){var b=i.blob&&(a instanceof Blob||["[object File]","[object Blob]"].indexOf(Object.prototype.toString.call(a))!==-1);return b&&"undefined"!=typeof FileReader?new m.Promise(function(b,c){var d=new FileReader;d.onload=function(a){b(a.target.result)},d.onerror=function(a){c(a.target.error)},d.readAsArrayBuffer(a)}):a});return h.then(function(b){var h=c.getTypeOf(b);return h?("arraybuffer"===h?b=c.transformTo("uint8array",b):"string"===h&&(g?b=j.decode(b):e&&f!==!0&&(b=d(b))),b):m.Promise.reject(new Error("Can't read the data of '"+a+"'. Is it in a supported JavaScript type (String, Blob, ArrayBuffer, etc) ?"))})}},{"./base64":1,"./external":6,"./nodejsUtils":14,"./support":30,"core-js/library/fn/set-immediate":36}],33:[function(a,b,c){"use strict";function d(a){this.files=[],this.loadOptions=a}var e=a("./reader/readerFor"),f=a("./utils"),g=a("./signature"),h=a("./zipEntry"),i=(a("./utf8"),a("./support"));d.prototype={checkSignature:function(a){if(!this.reader.readAndCheckSignature(a)){this.reader.index-=4;var b=this.reader.readString(4);throw new Error("Corrupted zip or bug: unexpected signature ("+f.pretty(b)+", expected "+f.pretty(a)+")")}},isSignature:function(a,b){var c=this.reader.index;this.reader.setIndex(a);var d=this.reader.readString(4),e=d===b;return this.reader.setIndex(c),e},readBlockEndOfCentral:function(){this.diskNumber=this.reader.readInt(2),this.diskWithCentralDirStart=this.reader.readInt(2),this.centralDirRecordsOnThisDisk=this.reader.readInt(2),this.centralDirRecords=this.reader.readInt(2),this.centralDirSize=this.reader.readInt(4),this.centralDirOffset=this.reader.readInt(4),this.zipCommentLength=this.reader.readInt(2);var a=this.reader.readData(this.zipCommentLength),b=i.uint8array?"uint8array":"array",c=f.transformTo(b,a);this.zipComment=this.loadOptions.decodeFileName(c)},readBlockZip64EndOfCentral:function(){this.zip64EndOfCentralSize=this.reader.readInt(8),this.reader.skip(4),this.diskNumber=this.reader.readInt(4),this.diskWithCentralDirStart=this.reader.readInt(4),this.centralDirRecordsOnThisDisk=this.reader.readInt(8),this.centralDirRecords=this.reader.readInt(8),this.centralDirSize=this.reader.readInt(8),this.centralDirOffset=this.reader.readInt(8),this.zip64ExtensibleData={};for(var a,b,c,d=this.zip64EndOfCentralSize-44,e=0;e<d;)a=this.reader.readInt(2),b=this.reader.readInt(4),c=this.reader.readData(b),this.zip64ExtensibleData[a]={id:a,length:b,value:c}},readBlockZip64EndOfCentralLocator:function(){if(this.diskWithZip64CentralDirStart=this.reader.readInt(4),this.relativeOffsetEndOfZip64CentralDir=this.reader.readInt(8),this.disksCount=this.reader.readInt(4),this.disksCount>1)throw new Error("Multi-volumes zip are not supported")},readLocalFiles:function(){var a,b;for(a=0;a<this.files.length;a++)b=this.files[a],this.reader.setIndex(b.localHeaderOffset),this.checkSignature(g.LOCAL_FILE_HEADER),b.readLocalPart(this.reader),b.handleUTF8(),b.processAttributes()},readCentralDir:function(){var a;for(this.reader.setIndex(this.centralDirOffset);this.reader.readAndCheckSignature(g.CENTRAL_FILE_HEADER);)a=new h({zip64:this.zip64},this.loadOptions),a.readCentralPart(this.reader),this.files.push(a);if(this.centralDirRecords!==this.files.length&&0!==this.centralDirRecords&&0===this.files.length)throw new Error("Corrupted zip or bug: expected "+this.centralDirRecords+" records in central dir, got "+this.files.length)},readEndOfCentral:function(){var a=this.reader.lastIndexOfSignature(g.CENTRAL_DIRECTORY_END);if(a<0){var b=!this.isSignature(0,g.LOCAL_FILE_HEADER);throw b?new Error("Can't find end of central directory : is this a zip file ? If it is, see https://stuk.github.io/jszip/documentation/howto/read_zip.html"):new Error("Corrupted zip: can't find end of central directory")}this.reader.setIndex(a);var c=a;if(this.checkSignature(g.CENTRAL_DIRECTORY_END),this.readBlockEndOfCentral(),this.diskNumber===f.MAX_VALUE_16BITS||this.diskWithCentralDirStart===f.MAX_VALUE_16BITS||this.centralDirRecordsOnThisDisk===f.MAX_VALUE_16BITS||this.centralDirRecords===f.MAX_VALUE_16BITS||this.centralDirSize===f.MAX_VALUE_32BITS||this.centralDirOffset===f.MAX_VALUE_32BITS){if(this.zip64=!0,a=this.reader.lastIndexOfSignature(g.ZIP64_CENTRAL_DIRECTORY_LOCATOR),a<0)throw new Error("Corrupted zip: can't find the ZIP64 end of central directory locator");if(this.reader.setIndex(a),this.checkSignature(g.ZIP64_CENTRAL_DIRECTORY_LOCATOR),this.readBlockZip64EndOfCentralLocator(),!this.isSignature(this.relativeOffsetEndOfZip64CentralDir,g.ZIP64_CENTRAL_DIRECTORY_END)&&(this.relativeOffsetEndOfZip64CentralDir=this.reader.lastIndexOfSignature(g.ZIP64_CENTRAL_DIRECTORY_END),this.relativeOffsetEndOfZip64CentralDir<0))throw new Error("Corrupted zip: can't find the ZIP64 end of central directory");this.reader.setIndex(this.relativeOffsetEndOfZip64CentralDir),this.checkSignature(g.ZIP64_CENTRAL_DIRECTORY_END),this.readBlockZip64EndOfCentral()}var d=this.centralDirOffset+this.centralDirSize;this.zip64&&(d+=20,d+=12+this.zip64EndOfCentralSize);var e=c-d;if(e>0)this.isSignature(c,g.CENTRAL_FILE_HEADER)||(this.reader.zero=e);else if(e<0)throw new Error("Corrupted zip: missing "+Math.abs(e)+" bytes.")},prepareReader:function(a){this.reader=e(a)},load:function(a){this.prepareReader(a),this.readEndOfCentral(),this.readCentralDir(),this.readLocalFiles()}},b.exports=d},{"./reader/readerFor":22,"./signature":23,"./support":30,"./utf8":31,"./utils":32,"./zipEntry":34}],34:[function(a,b,c){"use strict";function d(a,b){this.options=a,this.loadOptions=b}var e=a("./reader/readerFor"),f=a("./utils"),g=a("./compressedObject"),h=a("./crc32"),i=a("./utf8"),j=a("./compressions"),k=a("./support"),l=0,m=3,n=function(a){for(var b in j)if(j.hasOwnProperty(b)&&j[b].magic===a)return j[b];return null};d.prototype={isEncrypted:function(){return 1===(1&this.bitFlag)},useUTF8:function(){return 2048===(2048&this.bitFlag)},readLocalPart:function(a){var b,c;if(a.skip(22),this.fileNameLength=a.readInt(2),c=a.readInt(2),this.fileName=a.readData(this.fileNameLength),a.skip(c),this.compressedSize===-1||this.uncompressedSize===-1)throw new Error("Bug or corrupted zip : didn't get enough informations from the central directory (compressedSize === -1 || uncompressedSize === -1)");if(b=n(this.compressionMethod),null===b)throw new Error("Corrupted zip : compression "+f.pretty(this.compressionMethod)+" unknown (inner file : "+f.transformTo("string",this.fileName)+")");this.decompressed=new g(this.compressedSize,this.uncompressedSize,this.crc32,b,a.readData(this.compressedSize))},readCentralPart:function(a){this.versionMadeBy=a.readInt(2),a.skip(2),this.bitFlag=a.readInt(2),this.compressionMethod=a.readString(2),this.date=a.readDate(),this.crc32=a.readInt(4),this.compressedSize=a.readInt(4),this.uncompressedSize=a.readInt(4);var b=a.readInt(2);if(this.extraFieldsLength=a.readInt(2),this.fileCommentLength=a.readInt(2),this.diskNumberStart=a.readInt(2),this.internalFileAttributes=a.readInt(2),this.externalFileAttributes=a.readInt(4),this.localHeaderOffset=a.readInt(4),this.isEncrypted())throw new Error("Encrypted zip are not supported");a.skip(b),this.readExtraFields(a),this.parseZIP64ExtraField(a),this.fileComment=a.readData(this.fileCommentLength)},processAttributes:function(){this.unixPermissions=null,this.dosPermissions=null;var a=this.versionMadeBy>>8;this.dir=!!(16&this.externalFileAttributes),a===l&&(this.dosPermissions=63&this.externalFileAttributes),a===m&&(this.unixPermissions=this.externalFileAttributes>>16&65535),this.dir||"/"!==this.fileNameStr.slice(-1)||(this.dir=!0)},parseZIP64ExtraField:function(a){if(this.extraFields[1]){var b=e(this.extraFields[1].value);this.uncompressedSize===f.MAX_VALUE_32BITS&&(this.uncompressedSize=b.readInt(8)),this.compressedSize===f.MAX_VALUE_32BITS&&(this.compressedSize=b.readInt(8)),this.localHeaderOffset===f.MAX_VALUE_32BITS&&(this.localHeaderOffset=b.readInt(8)),this.diskNumberStart===f.MAX_VALUE_32BITS&&(this.diskNumberStart=b.readInt(4))}},readExtraFields:function(a){var b,c,d,e=a.index+this.extraFieldsLength;for(this.extraFields||(this.extraFields={});a.index<e;)b=a.readInt(2),c=a.readInt(2),d=a.readData(c),this.extraFields[b]={id:b,length:c,value:d}},handleUTF8:function(){var a=k.uint8array?"uint8array":"array";if(this.useUTF8())this.fileNameStr=i.utf8decode(this.fileName),this.fileCommentStr=i.utf8decode(this.fileComment);else{var b=this.findExtraFieldUnicodePath();if(null!==b)this.fileNameStr=b;else{var c=f.transformTo(a,this.fileName);this.fileNameStr=this.loadOptions.decodeFileName(c)}var d=this.findExtraFieldUnicodeComment();if(null!==d)this.fileCommentStr=d;else{var e=f.transformTo(a,this.fileComment);this.fileCommentStr=this.loadOptions.decodeFileName(e)}}},findExtraFieldUnicodePath:function(){var a=this.extraFields[28789];if(a){var b=e(a.value);return 1!==b.readInt(1)?null:h(this.fileName)!==b.readInt(4)?null:i.utf8decode(b.readData(a.length-5))}return null},findExtraFieldUnicodeComment:function(){var a=this.extraFields[25461];if(a){var b=e(a.value);return 1!==b.readInt(1)?null:h(this.fileComment)!==b.readInt(4)?null:i.utf8decode(b.readData(a.length-5))}return null}},b.exports=d},{"./compressedObject":2,"./compressions":3,"./crc32":4,"./reader/readerFor":22,"./support":30,"./utf8":31,"./utils":32}],35:[function(a,b,c){"use strict";var d=a("./stream/StreamHelper"),e=a("./stream/DataWorker"),f=a("./utf8"),g=a("./compressedObject"),h=a("./stream/GenericWorker"),i=function(a,b,c){this.name=a,this.dir=c.dir,this.date=c.date,this.comment=c.comment,this.unixPermissions=c.unixPermissions,this.dosPermissions=c.dosPermissions,this._data=b,this._dataBinary=c.binary,this.options={compression:c.compression,compressionOptions:c.compressionOptions}};i.prototype={internalStream:function(a){var b=null,c="string";try{if(!a)throw new Error("No output type specified.");c=a.toLowerCase();var e="string"===c||"text"===c;"binarystring"!==c&&"text"!==c||(c="string"),b=this._decompressWorker();var g=!this._dataBinary;g&&!e&&(b=b.pipe(new f.Utf8EncodeWorker)),!g&&e&&(b=b.pipe(new f.Utf8DecodeWorker))}catch(i){b=new h("error"),b.error(i)}return new d(b,c,"")},async:function(a,b){return this.internalStream(a).accumulate(b)},nodeStream:function(a,b){return this.internalStream(a||"nodebuffer").toNodejsStream(b)},_compressWorker:function(a,b){if(this._data instanceof g&&this._data.compression.magic===a.magic)return this._data.getCompressedWorker();var c=this._decompressWorker();return this._dataBinary||(c=c.pipe(new f.Utf8EncodeWorker)),g.createWorkerFrom(c,a,b)},_decompressWorker:function(){return this._data instanceof g?this._data.getContentWorker():this._data instanceof h?this._data:new e(this._data)}};for(var j=["asText","asBinary","asNodeBuffer","asUint8Array","asArrayBuffer"],k=function(){throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.")},l=0;l<j.length;l++)i.prototype[j[l]]=k;b.exports=i},{"./compressedObject":2,"./stream/DataWorker":27,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31}],36:[function(a,b,c){a("../modules/web.immediate"),b.exports=a("../modules/_core").setImmediate},{"../modules/_core":40,"../modules/web.immediate":56}],37:[function(a,b,c){b.exports=function(a){if("function"!=typeof a)throw TypeError(a+" is not a function!");return a}},{}],38:[function(a,b,c){var d=a("./_is-object");b.exports=function(a){if(!d(a))throw TypeError(a+" is not an object!");return a}},{"./_is-object":51}],39:[function(a,b,c){var d={}.toString;b.exports=function(a){return d.call(a).slice(8,-1)}},{}],40:[function(a,b,c){var d=b.exports={version:"2.3.0"};"number"==typeof __e&&(__e=d)},{}],41:[function(a,b,c){var d=a("./_a-function");b.exports=function(a,b,c){if(d(a),void 0===b)return a;switch(c){case 1:return function(c){return a.call(b,c)};case 2:return function(c,d){return a.call(b,c,d)};case 3:return function(c,d,e){return a.call(b,c,d,e)}}return function(){return a.apply(b,arguments)}}},{"./_a-function":37}],42:[function(a,b,c){b.exports=!a("./_fails")(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},{"./_fails":45}],43:[function(a,b,c){var d=a("./_is-object"),e=a("./_global").document,f=d(e)&&d(e.createElement);b.exports=function(a){return f?e.createElement(a):{}}},{"./_global":46,"./_is-object":51}],44:[function(a,b,c){var d=a("./_global"),e=a("./_core"),f=a("./_ctx"),g=a("./_hide"),h="prototype",i=function(a,b,c){var j,k,l,m=a&i.F,n=a&i.G,o=a&i.S,p=a&i.P,q=a&i.B,r=a&i.W,s=n?e:e[b]||(e[b]={}),t=s[h],u=n?d:o?d[b]:(d[b]||{})[h];n&&(c=b);for(j in c)k=!m&&u&&void 0!==u[j],k&&j in s||(l=k?u[j]:c[j],s[j]=n&&"function"!=typeof u[j]?c[j]:q&&k?f(l,d):r&&u[j]==l?function(a){var b=function(b,c,d){if(this instanceof a){switch(arguments.length){case 0:return new a;case 1:return new a(b);case 2:return new a(b,c)}return new a(b,c,d)}return a.apply(this,arguments)};return b[h]=a[h],b}(l):p&&"function"==typeof l?f(Function.call,l):l,p&&((s.virtual||(s.virtual={}))[j]=l,a&i.R&&t&&!t[j]&&g(t,j,l)))};i.F=1,i.G=2,i.S=4,i.P=8,i.B=16,i.W=32,i.U=64,i.R=128,b.exports=i},{"./_core":40,"./_ctx":41,"./_global":46,"./_hide":47}],45:[function(a,b,c){b.exports=function(a){try{return!!a()}catch(b){return!0}}},{}],46:[function(a,b,c){var d=b.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=d)},{}],47:[function(a,b,c){var d=a("./_object-dp"),e=a("./_property-desc");b.exports=a("./_descriptors")?function(a,b,c){return d.f(a,b,e(1,c))}:function(a,b,c){return a[b]=c,a}},{"./_descriptors":42,"./_object-dp":52,"./_property-desc":53}],48:[function(a,b,c){b.exports=a("./_global").document&&document.documentElement},{"./_global":46}],49:[function(a,b,c){b.exports=!a("./_descriptors")&&!a("./_fails")(function(){return 7!=Object.defineProperty(a("./_dom-create")("div"),"a",{get:function(){return 7}}).a})},{"./_descriptors":42,"./_dom-create":43,"./_fails":45}],50:[function(a,b,c){b.exports=function(a,b,c){var d=void 0===c;switch(b.length){case 0:return d?a():a.call(c);case 1:return d?a(b[0]):a.call(c,b[0]);case 2:return d?a(b[0],b[1]):a.call(c,b[0],b[1]);case 3:return d?a(b[0],b[1],b[2]):a.call(c,b[0],b[1],b[2]);case 4:return d?a(b[0],b[1],b[2],b[3]):a.call(c,b[0],b[1],b[2],b[3])}return a.apply(c,b)}},{}],51:[function(a,b,c){b.exports=function(a){return"object"==typeof a?null!==a:"function"==typeof a}},{}],52:[function(a,b,c){var d=a("./_an-object"),e=a("./_ie8-dom-define"),f=a("./_to-primitive"),g=Object.defineProperty;c.f=a("./_descriptors")?Object.defineProperty:function(a,b,c){if(d(a),b=f(b,!0),d(c),e)try{return g(a,b,c)}catch(h){}if("get"in c||"set"in c)throw TypeError("Accessors not supported!");return"value"in c&&(a[b]=c.value),a}},{"./_an-object":38,"./_descriptors":42,"./_ie8-dom-define":49,"./_to-primitive":55}],53:[function(a,b,c){b.exports=function(a,b){return{enumerable:!(1&a),configurable:!(2&a),writable:!(4&a),value:b}}},{}],54:[function(a,b,c){var d,e,f,g=a("./_ctx"),h=a("./_invoke"),i=a("./_html"),j=a("./_dom-create"),k=a("./_global"),l=k.process,m=k.setImmediate,n=k.clearImmediate,o=k.MessageChannel,p=0,q={},r="onreadystatechange",s=function(){var a=+this;if(q.hasOwnProperty(a)){var b=q[a];delete q[a],b()}},t=function(a){s.call(a.data)};m&&n||(m=function(a){for(var b=[],c=1;arguments.length>c;)b.push(arguments[c++]);return q[++p]=function(){h("function"==typeof a?a:Function(a),b)},d(p),p},n=function(a){delete q[a]},"process"==a("./_cof")(l)?d=function(a){l.nextTick(g(s,a,1))}:o?(e=new o,f=e.port2,e.port1.onmessage=t,d=g(f.postMessage,f,1)):k.addEventListener&&"function"==typeof postMessage&&!k.importScripts?(d=function(a){k.postMessage(a+"","*")},k.addEventListener("message",t,!1)):d=r in j("script")?function(a){i.appendChild(j("script"))[r]=function(){i.removeChild(this),s.call(a)}}:function(a){setTimeout(g(s,a,1),0)}),b.exports={set:m,clear:n}},{"./_cof":39,"./_ctx":41,"./_dom-create":43,"./_global":46,"./_html":48,"./_invoke":50}],55:[function(a,b,c){var d=a("./_is-object");b.exports=function(a,b){if(!d(a))return a;var c,e;if(b&&"function"==typeof(c=a.toString)&&!d(e=c.call(a)))return e;if("function"==typeof(c=a.valueOf)&&!d(e=c.call(a)))return e;if(!b&&"function"==typeof(c=a.toString)&&!d(e=c.call(a)))return e;throw TypeError("Can't convert object to primitive value")}},{"./_is-object":51}],56:[function(a,b,c){var d=a("./_export"),e=a("./_task");d(d.G+d.B,{setImmediate:e.set,clearImmediate:e.clear})},{"./_export":44,"./_task":54}],57:[function(a,b,c){(function(a){"use strict";function c(){k=!0;for(var a,b,c=l.length;c;){for(b=l,l=[],a=-1;++a<c;)b[a]();c=l.length}k=!1}function d(a){1!==l.push(a)||k||e()}var e,f=a.MutationObserver||a.WebKitMutationObserver;if(f){var g=0,h=new f(c),i=a.document.createTextNode("");h.observe(i,{characterData:!0}),e=function(){i.data=g=++g%2}}else if(a.setImmediate||"undefined"==typeof a.MessageChannel)e="document"in a&&"onreadystatechange"in a.document.createElement("script")?function(){var b=a.document.createElement("script");b.onreadystatechange=function(){c(),b.onreadystatechange=null,b.parentNode.removeChild(b),b=null},a.document.documentElement.appendChild(b)}:function(){setTimeout(c,0)};else{var j=new a.MessageChannel;j.port1.onmessage=c,e=function(){j.port2.postMessage(0)}}var k,l=[];b.exports=d}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],58:[function(a,b,c){"use strict";function d(){}function e(a){if("function"!=typeof a)throw new TypeError("resolver must be a function");this.state=s,this.queue=[],this.outcome=void 0,a!==d&&i(this,a)}function f(a,b,c){this.promise=a,"function"==typeof b&&(this.onFulfilled=b,this.callFulfilled=this.otherCallFulfilled),"function"==typeof c&&(this.onRejected=c,this.callRejected=this.otherCallRejected)}function g(a,b,c){o(function(){var d;try{d=b(c)}catch(e){return p.reject(a,e)}d===a?p.reject(a,new TypeError("Cannot resolve promise with itself")):p.resolve(a,d)})}function h(a){var b=a&&a.then;if(a&&("object"==typeof a||"function"==typeof a)&&"function"==typeof b)return function(){b.apply(a,arguments)}}function i(a,b){function c(b){f||(f=!0,p.reject(a,b))}function d(b){f||(f=!0,p.resolve(a,b))}function e(){b(d,c)}var f=!1,g=j(e);"error"===g.status&&c(g.value)}function j(a,b){var c={};try{c.value=a(b),c.status="success"}catch(d){c.status="error",c.value=d}return c}function k(a){return a instanceof this?a:p.resolve(new this(d),a)}function l(a){var b=new this(d);return p.reject(b,a)}function m(a){function b(a,b){function d(a){g[b]=a,++h!==e||f||(f=!0,p.resolve(j,g))}c.resolve(a).then(d,function(a){f||(f=!0,p.reject(j,a))})}var c=this;if("[object Array]"!==Object.prototype.toString.call(a))return this.reject(new TypeError("must be an array"));var e=a.length,f=!1;if(!e)return this.resolve([]);for(var g=new Array(e),h=0,i=-1,j=new this(d);++i<e;)b(a[i],i);return j}function n(a){function b(a){c.resolve(a).then(function(a){f||(f=!0,p.resolve(h,a))},function(a){f||(f=!0,p.reject(h,a))})}var c=this;if("[object Array]"!==Object.prototype.toString.call(a))return this.reject(new TypeError("must be an array"));var e=a.length,f=!1;if(!e)return this.resolve([]);for(var g=-1,h=new this(d);++g<e;)b(a[g]);return h}var o=a("immediate"),p={},q=["REJECTED"],r=["FULFILLED"],s=["PENDING"];b.exports=e,e.prototype["catch"]=function(a){return this.then(null,a)},e.prototype.then=function(a,b){if("function"!=typeof a&&this.state===r||"function"!=typeof b&&this.state===q)return this;var c=new this.constructor(d);if(this.state!==s){var e=this.state===r?a:b;g(c,e,this.outcome)}else this.queue.push(new f(c,a,b));return c},f.prototype.callFulfilled=function(a){p.resolve(this.promise,a)},f.prototype.otherCallFulfilled=function(a){g(this.promise,this.onFulfilled,a)},f.prototype.callRejected=function(a){p.reject(this.promise,a)},f.prototype.otherCallRejected=function(a){g(this.promise,this.onRejected,a)},p.resolve=function(a,b){var c=j(h,b);if("error"===c.status)return p.reject(a,c.value);var d=c.value;if(d)i(a,d);else{a.state=r,a.outcome=b;for(var e=-1,f=a.queue.length;++e<f;)a.queue[e].callFulfilled(b)}return a},p.reject=function(a,b){a.state=q,a.outcome=b;for(var c=-1,d=a.queue.length;++c<d;)a.queue[c].callRejected(b);return a},e.resolve=k,e.reject=l,e.all=m,e.race=n},{immediate:57}],59:[function(a,b,c){"use strict";var d=a("./lib/utils/common").assign,e=a("./lib/deflate"),f=a("./lib/inflate"),g=a("./lib/zlib/constants"),h={};d(h,e,f,g),b.exports=h},{"./lib/deflate":60,"./lib/inflate":61,"./lib/utils/common":62,"./lib/zlib/constants":65}],60:[function(a,b,c){"use strict";function d(a){if(!(this instanceof d))return new d(a);this.options=i.assign({level:s,method:u,chunkSize:16384,windowBits:15,memLevel:8,strategy:t,to:""},a||{});var b=this.options;b.raw&&b.windowBits>0?b.windowBits=-b.windowBits:b.gzip&&b.windowBits>0&&b.windowBits<16&&(b.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new l,this.strm.avail_out=0;var c=h.deflateInit2(this.strm,b.level,b.method,b.windowBits,b.memLevel,b.strategy);if(c!==p)throw new Error(k[c]);if(b.header&&h.deflateSetHeader(this.strm,b.header),b.dictionary){var e;if(e="string"==typeof b.dictionary?j.string2buf(b.dictionary):"[object ArrayBuffer]"===m.call(b.dictionary)?new Uint8Array(b.dictionary):b.dictionary,c=h.deflateSetDictionary(this.strm,e),c!==p)throw new Error(k[c]);this._dict_set=!0}}function e(a,b){var c=new d(b);if(c.push(a,!0),c.err)throw c.msg||k[c.err];return c.result}function f(a,b){return b=b||{},b.raw=!0,e(a,b)}function g(a,b){return b=b||{},b.gzip=!0,e(a,b)}var h=a("./zlib/deflate"),i=a("./utils/common"),j=a("./utils/strings"),k=a("./zlib/messages"),l=a("./zlib/zstream"),m=Object.prototype.toString,n=0,o=4,p=0,q=1,r=2,s=-1,t=0,u=8;d.prototype.push=function(a,b){var c,d,e=this.strm,f=this.options.chunkSize;if(this.ended)return!1;d=b===~~b?b:b===!0?o:n,"string"==typeof a?e.input=j.string2buf(a):"[object ArrayBuffer]"===m.call(a)?e.input=new Uint8Array(a):e.input=a,e.next_in=0,e.avail_in=e.input.length;do{if(0===e.avail_out&&(e.output=new i.Buf8(f),e.next_out=0,e.avail_out=f),c=h.deflate(e,d),c!==q&&c!==p)return this.onEnd(c),this.ended=!0,!1;0!==e.avail_out&&(0!==e.avail_in||d!==o&&d!==r)||("string"===this.options.to?this.onData(j.buf2binstring(i.shrinkBuf(e.output,e.next_out))):this.onData(i.shrinkBuf(e.output,e.next_out)))}while((e.avail_in>0||0===e.avail_out)&&c!==q);return d===o?(c=h.deflateEnd(this.strm),this.onEnd(c),this.ended=!0,c===p):d!==r||(this.onEnd(p),e.avail_out=0,!0)},d.prototype.onData=function(a){this.chunks.push(a)},d.prototype.onEnd=function(a){a===p&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=i.flattenChunks(this.chunks)),this.chunks=[],this.err=a,this.msg=this.strm.msg},c.Deflate=d,c.deflate=e,c.deflateRaw=f,c.gzip=g},{"./utils/common":62,"./utils/strings":63,"./zlib/deflate":67,"./zlib/messages":72,"./zlib/zstream":74}],61:[function(a,b,c){"use strict";function d(a){if(!(this instanceof d))return new d(a);this.options=h.assign({chunkSize:16384,windowBits:0,to:""},a||{});var b=this.options;b.raw&&b.windowBits>=0&&b.windowBits<16&&(b.windowBits=-b.windowBits,0===b.windowBits&&(b.windowBits=-15)),!(b.windowBits>=0&&b.windowBits<16)||a&&a.windowBits||(b.windowBits+=32),b.windowBits>15&&b.windowBits<48&&0===(15&b.windowBits)&&(b.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new l,this.strm.avail_out=0;var c=g.inflateInit2(this.strm,b.windowBits);if(c!==j.Z_OK)throw new Error(k[c]);this.header=new m,g.inflateGetHeader(this.strm,this.header)}function e(a,b){var c=new d(b);if(c.push(a,!0),c.err)throw c.msg||k[c.err];return c.result}function f(a,b){return b=b||{},b.raw=!0,e(a,b)}var g=a("./zlib/inflate"),h=a("./utils/common"),i=a("./utils/strings"),j=a("./zlib/constants"),k=a("./zlib/messages"),l=a("./zlib/zstream"),m=a("./zlib/gzheader"),n=Object.prototype.toString;d.prototype.push=function(a,b){var c,d,e,f,k,l,m=this.strm,o=this.options.chunkSize,p=this.options.dictionary,q=!1;if(this.ended)return!1;d=b===~~b?b:b===!0?j.Z_FINISH:j.Z_NO_FLUSH,"string"==typeof a?m.input=i.binstring2buf(a):"[object ArrayBuffer]"===n.call(a)?m.input=new Uint8Array(a):m.input=a,m.next_in=0,m.avail_in=m.input.length;do{if(0===m.avail_out&&(m.output=new h.Buf8(o),m.next_out=0,m.avail_out=o),c=g.inflate(m,j.Z_NO_FLUSH),c===j.Z_NEED_DICT&&p&&(l="string"==typeof p?i.string2buf(p):"[object ArrayBuffer]"===n.call(p)?new Uint8Array(p):p,c=g.inflateSetDictionary(this.strm,l)),c===j.Z_BUF_ERROR&&q===!0&&(c=j.Z_OK,q=!1),c!==j.Z_STREAM_END&&c!==j.Z_OK)return this.onEnd(c),this.ended=!0,!1;m.next_out&&(0!==m.avail_out&&c!==j.Z_STREAM_END&&(0!==m.avail_in||d!==j.Z_FINISH&&d!==j.Z_SYNC_FLUSH)||("string"===this.options.to?(e=i.utf8border(m.output,m.next_out),f=m.next_out-e,k=i.buf2string(m.output,e),m.next_out=f,m.avail_out=o-f,f&&h.arraySet(m.output,m.output,e,f,0),this.onData(k)):this.onData(h.shrinkBuf(m.output,m.next_out)))),0===m.avail_in&&0===m.avail_out&&(q=!0)}while((m.avail_in>0||0===m.avail_out)&&c!==j.Z_STREAM_END);return c===j.Z_STREAM_END&&(d=j.Z_FINISH),d===j.Z_FINISH?(c=g.inflateEnd(this.strm),this.onEnd(c),this.ended=!0,c===j.Z_OK):d!==j.Z_SYNC_FLUSH||(this.onEnd(j.Z_OK),m.avail_out=0,!0)},d.prototype.onData=function(a){this.chunks.push(a)},d.prototype.onEnd=function(a){a===j.Z_OK&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=h.flattenChunks(this.chunks)),this.chunks=[],this.err=a,this.msg=this.strm.msg},c.Inflate=d,c.inflate=e,c.inflateRaw=f,c.ungzip=e},{"./utils/common":62,"./utils/strings":63,"./zlib/constants":65,"./zlib/gzheader":68,"./zlib/inflate":70,"./zlib/messages":72,"./zlib/zstream":74}],62:[function(a,b,c){"use strict";var d="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Int32Array;c.assign=function(a){for(var b=Array.prototype.slice.call(arguments,1);b.length;){var c=b.shift();if(c){if("object"!=typeof c)throw new TypeError(c+"must be non-object");for(var d in c)c.hasOwnProperty(d)&&(a[d]=c[d])}}return a},c.shrinkBuf=function(a,b){return a.length===b?a:a.subarray?a.subarray(0,b):(a.length=b,a)};var e={arraySet:function(a,b,c,d,e){if(b.subarray&&a.subarray)return void a.set(b.subarray(c,c+d),e);for(var f=0;f<d;f++)a[e+f]=b[c+f]},flattenChunks:function(a){var b,c,d,e,f,g;for(d=0,b=0,c=a.length;b<c;b++)d+=a[b].length;for(g=new Uint8Array(d),e=0,b=0,c=a.length;b<c;b++)f=a[b],g.set(f,e),e+=f.length;return g}},f={arraySet:function(a,b,c,d,e){for(var f=0;f<d;f++)a[e+f]=b[c+f]},flattenChunks:function(a){return[].concat.apply([],a)}};c.setTyped=function(a){a?(c.Buf8=Uint8Array,c.Buf16=Uint16Array,c.Buf32=Int32Array,c.assign(c,e)):(c.Buf8=Array,c.Buf16=Array,c.Buf32=Array,c.assign(c,f))},c.setTyped(d)},{}],63:[function(a,b,c){"use strict";function d(a,b){if(b<65537&&(a.subarray&&g||!a.subarray&&f))return String.fromCharCode.apply(null,e.shrinkBuf(a,b));for(var c="",d=0;d<b;d++)c+=String.fromCharCode(a[d]);return c}var e=a("./common"),f=!0,g=!0;try{String.fromCharCode.apply(null,[0])}catch(h){f=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(h){g=!1}for(var i=new e.Buf8(256),j=0;j<256;j++)i[j]=j>=252?6:j>=248?5:j>=240?4:j>=224?3:j>=192?2:1;i[254]=i[254]=1,c.string2buf=function(a){var b,c,d,f,g,h=a.length,i=0;for(f=0;f<h;f++)c=a.charCodeAt(f),55296===(64512&c)&&f+1<h&&(d=a.charCodeAt(f+1),56320===(64512&d)&&(c=65536+(c-55296<<10)+(d-56320),f++)),i+=c<128?1:c<2048?2:c<65536?3:4;for(b=new e.Buf8(i),g=0,f=0;g<i;f++)c=a.charCodeAt(f),55296===(64512&c)&&f+1<h&&(d=a.charCodeAt(f+1),56320===(64512&d)&&(c=65536+(c-55296<<10)+(d-56320),f++)),c<128?b[g++]=c:c<2048?(b[g++]=192|c>>>6,b[g++]=128|63&c):c<65536?(b[g++]=224|c>>>12,b[g++]=128|c>>>6&63,b[g++]=128|63&c):(b[g++]=240|c>>>18,b[g++]=128|c>>>12&63,b[g++]=128|c>>>6&63,b[g++]=128|63&c);return b},c.buf2binstring=function(a){return d(a,a.length)},c.binstring2buf=function(a){for(var b=new e.Buf8(a.length),c=0,d=b.length;c<d;c++)b[c]=a.charCodeAt(c);return b},c.buf2string=function(a,b){var c,e,f,g,h=b||a.length,j=new Array(2*h);for(e=0,c=0;c<h;)if(f=a[c++],f<128)j[e++]=f;else if(g=i[f],g>4)j[e++]=65533,c+=g-1;else{for(f&=2===g?31:3===g?15:7;g>1&&c<h;)f=f<<6|63&a[c++],g--;g>1?j[e++]=65533:f<65536?j[e++]=f:(f-=65536,j[e++]=55296|f>>10&1023,j[e++]=56320|1023&f)}return d(j,e)},c.utf8border=function(a,b){var c;for(b=b||a.length,b>a.length&&(b=a.length),c=b-1;c>=0&&128===(192&a[c]);)c--;return c<0?b:0===c?b:c+i[a[c]]>b?c:b}},{"./common":62}],64:[function(a,b,c){"use strict";function d(a,b,c,d){for(var e=65535&a|0,f=a>>>16&65535|0,g=0;0!==c;){g=c>2e3?2e3:c,c-=g;do e=e+b[d++]|0,f=f+e|0;while(--g);e%=65521,f%=65521}return e|f<<16|0;
      +}b.exports=d},{}],65:[function(a,b,c){"use strict";b.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},{}],66:[function(a,b,c){"use strict";function d(){for(var a,b=[],c=0;c<256;c++){a=c;for(var d=0;d<8;d++)a=1&a?3988292384^a>>>1:a>>>1;b[c]=a}return b}function e(a,b,c,d){var e=f,g=d+c;a^=-1;for(var h=d;h<g;h++)a=a>>>8^e[255&(a^b[h])];return a^-1}var f=d();b.exports=e},{}],67:[function(a,b,c){"use strict";function d(a,b){return a.msg=I[b],b}function e(a){return(a<<1)-(a>4?9:0)}function f(a){for(var b=a.length;--b>=0;)a[b]=0}function g(a){var b=a.state,c=b.pending;c>a.avail_out&&(c=a.avail_out),0!==c&&(E.arraySet(a.output,b.pending_buf,b.pending_out,c,a.next_out),a.next_out+=c,b.pending_out+=c,a.total_out+=c,a.avail_out-=c,b.pending-=c,0===b.pending&&(b.pending_out=0))}function h(a,b){F._tr_flush_block(a,a.block_start>=0?a.block_start:-1,a.strstart-a.block_start,b),a.block_start=a.strstart,g(a.strm)}function i(a,b){a.pending_buf[a.pending++]=b}function j(a,b){a.pending_buf[a.pending++]=b>>>8&255,a.pending_buf[a.pending++]=255&b}function k(a,b,c,d){var e=a.avail_in;return e>d&&(e=d),0===e?0:(a.avail_in-=e,E.arraySet(b,a.input,a.next_in,e,c),1===a.state.wrap?a.adler=G(a.adler,b,e,c):2===a.state.wrap&&(a.adler=H(a.adler,b,e,c)),a.next_in+=e,a.total_in+=e,e)}function l(a,b){var c,d,e=a.max_chain_length,f=a.strstart,g=a.prev_length,h=a.nice_match,i=a.strstart>a.w_size-la?a.strstart-(a.w_size-la):0,j=a.window,k=a.w_mask,l=a.prev,m=a.strstart+ka,n=j[f+g-1],o=j[f+g];a.prev_length>=a.good_match&&(e>>=2),h>a.lookahead&&(h=a.lookahead);do if(c=b,j[c+g]===o&&j[c+g-1]===n&&j[c]===j[f]&&j[++c]===j[f+1]){f+=2,c++;do;while(j[++f]===j[++c]&&j[++f]===j[++c]&&j[++f]===j[++c]&&j[++f]===j[++c]&&j[++f]===j[++c]&&j[++f]===j[++c]&&j[++f]===j[++c]&&j[++f]===j[++c]&&f<m);if(d=ka-(m-f),f=m-ka,d>g){if(a.match_start=b,g=d,d>=h)break;n=j[f+g-1],o=j[f+g]}}while((b=l[b&k])>i&&0!==--e);return g<=a.lookahead?g:a.lookahead}function m(a){var b,c,d,e,f,g=a.w_size;do{if(e=a.window_size-a.lookahead-a.strstart,a.strstart>=g+(g-la)){E.arraySet(a.window,a.window,g,g,0),a.match_start-=g,a.strstart-=g,a.block_start-=g,c=a.hash_size,b=c;do d=a.head[--b],a.head[b]=d>=g?d-g:0;while(--c);c=g,b=c;do d=a.prev[--b],a.prev[b]=d>=g?d-g:0;while(--c);e+=g}if(0===a.strm.avail_in)break;if(c=k(a.strm,a.window,a.strstart+a.lookahead,e),a.lookahead+=c,a.lookahead+a.insert>=ja)for(f=a.strstart-a.insert,a.ins_h=a.window[f],a.ins_h=(a.ins_h<<a.hash_shift^a.window[f+1])&a.hash_mask;a.insert&&(a.ins_h=(a.ins_h<<a.hash_shift^a.window[f+ja-1])&a.hash_mask,a.prev[f&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=f,f++,a.insert--,!(a.lookahead+a.insert<ja)););}while(a.lookahead<la&&0!==a.strm.avail_in)}function n(a,b){var c=65535;for(c>a.pending_buf_size-5&&(c=a.pending_buf_size-5);;){if(a.lookahead<=1){if(m(a),0===a.lookahead&&b===J)return ua;if(0===a.lookahead)break}a.strstart+=a.lookahead,a.lookahead=0;var d=a.block_start+c;if((0===a.strstart||a.strstart>=d)&&(a.lookahead=a.strstart-d,a.strstart=d,h(a,!1),0===a.strm.avail_out))return ua;if(a.strstart-a.block_start>=a.w_size-la&&(h(a,!1),0===a.strm.avail_out))return ua}return a.insert=0,b===M?(h(a,!0),0===a.strm.avail_out?wa:xa):a.strstart>a.block_start&&(h(a,!1),0===a.strm.avail_out)?ua:ua}function o(a,b){for(var c,d;;){if(a.lookahead<la){if(m(a),a.lookahead<la&&b===J)return ua;if(0===a.lookahead)break}if(c=0,a.lookahead>=ja&&(a.ins_h=(a.ins_h<<a.hash_shift^a.window[a.strstart+ja-1])&a.hash_mask,c=a.prev[a.strstart&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=a.strstart),0!==c&&a.strstart-c<=a.w_size-la&&(a.match_length=l(a,c)),a.match_length>=ja)if(d=F._tr_tally(a,a.strstart-a.match_start,a.match_length-ja),a.lookahead-=a.match_length,a.match_length<=a.max_lazy_match&&a.lookahead>=ja){a.match_length--;do a.strstart++,a.ins_h=(a.ins_h<<a.hash_shift^a.window[a.strstart+ja-1])&a.hash_mask,c=a.prev[a.strstart&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=a.strstart;while(0!==--a.match_length);a.strstart++}else a.strstart+=a.match_length,a.match_length=0,a.ins_h=a.window[a.strstart],a.ins_h=(a.ins_h<<a.hash_shift^a.window[a.strstart+1])&a.hash_mask;else d=F._tr_tally(a,0,a.window[a.strstart]),a.lookahead--,a.strstart++;if(d&&(h(a,!1),0===a.strm.avail_out))return ua}return a.insert=a.strstart<ja-1?a.strstart:ja-1,b===M?(h(a,!0),0===a.strm.avail_out?wa:xa):a.last_lit&&(h(a,!1),0===a.strm.avail_out)?ua:va}function p(a,b){for(var c,d,e;;){if(a.lookahead<la){if(m(a),a.lookahead<la&&b===J)return ua;if(0===a.lookahead)break}if(c=0,a.lookahead>=ja&&(a.ins_h=(a.ins_h<<a.hash_shift^a.window[a.strstart+ja-1])&a.hash_mask,c=a.prev[a.strstart&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=a.strstart),a.prev_length=a.match_length,a.prev_match=a.match_start,a.match_length=ja-1,0!==c&&a.prev_length<a.max_lazy_match&&a.strstart-c<=a.w_size-la&&(a.match_length=l(a,c),a.match_length<=5&&(a.strategy===U||a.match_length===ja&&a.strstart-a.match_start>4096)&&(a.match_length=ja-1)),a.prev_length>=ja&&a.match_length<=a.prev_length){e=a.strstart+a.lookahead-ja,d=F._tr_tally(a,a.strstart-1-a.prev_match,a.prev_length-ja),a.lookahead-=a.prev_length-1,a.prev_length-=2;do++a.strstart<=e&&(a.ins_h=(a.ins_h<<a.hash_shift^a.window[a.strstart+ja-1])&a.hash_mask,c=a.prev[a.strstart&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=a.strstart);while(0!==--a.prev_length);if(a.match_available=0,a.match_length=ja-1,a.strstart++,d&&(h(a,!1),0===a.strm.avail_out))return ua}else if(a.match_available){if(d=F._tr_tally(a,0,a.window[a.strstart-1]),d&&h(a,!1),a.strstart++,a.lookahead--,0===a.strm.avail_out)return ua}else a.match_available=1,a.strstart++,a.lookahead--}return a.match_available&&(d=F._tr_tally(a,0,a.window[a.strstart-1]),a.match_available=0),a.insert=a.strstart<ja-1?a.strstart:ja-1,b===M?(h(a,!0),0===a.strm.avail_out?wa:xa):a.last_lit&&(h(a,!1),0===a.strm.avail_out)?ua:va}function q(a,b){for(var c,d,e,f,g=a.window;;){if(a.lookahead<=ka){if(m(a),a.lookahead<=ka&&b===J)return ua;if(0===a.lookahead)break}if(a.match_length=0,a.lookahead>=ja&&a.strstart>0&&(e=a.strstart-1,d=g[e],d===g[++e]&&d===g[++e]&&d===g[++e])){f=a.strstart+ka;do;while(d===g[++e]&&d===g[++e]&&d===g[++e]&&d===g[++e]&&d===g[++e]&&d===g[++e]&&d===g[++e]&&d===g[++e]&&e<f);a.match_length=ka-(f-e),a.match_length>a.lookahead&&(a.match_length=a.lookahead)}if(a.match_length>=ja?(c=F._tr_tally(a,1,a.match_length-ja),a.lookahead-=a.match_length,a.strstart+=a.match_length,a.match_length=0):(c=F._tr_tally(a,0,a.window[a.strstart]),a.lookahead--,a.strstart++),c&&(h(a,!1),0===a.strm.avail_out))return ua}return a.insert=0,b===M?(h(a,!0),0===a.strm.avail_out?wa:xa):a.last_lit&&(h(a,!1),0===a.strm.avail_out)?ua:va}function r(a,b){for(var c;;){if(0===a.lookahead&&(m(a),0===a.lookahead)){if(b===J)return ua;break}if(a.match_length=0,c=F._tr_tally(a,0,a.window[a.strstart]),a.lookahead--,a.strstart++,c&&(h(a,!1),0===a.strm.avail_out))return ua}return a.insert=0,b===M?(h(a,!0),0===a.strm.avail_out?wa:xa):a.last_lit&&(h(a,!1),0===a.strm.avail_out)?ua:va}function s(a,b,c,d,e){this.good_length=a,this.max_lazy=b,this.nice_length=c,this.max_chain=d,this.func=e}function t(a){a.window_size=2*a.w_size,f(a.head),a.max_lazy_match=D[a.level].max_lazy,a.good_match=D[a.level].good_length,a.nice_match=D[a.level].nice_length,a.max_chain_length=D[a.level].max_chain,a.strstart=0,a.block_start=0,a.lookahead=0,a.insert=0,a.match_length=a.prev_length=ja-1,a.match_available=0,a.ins_h=0}function u(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=$,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new E.Buf16(2*ha),this.dyn_dtree=new E.Buf16(2*(2*fa+1)),this.bl_tree=new E.Buf16(2*(2*ga+1)),f(this.dyn_ltree),f(this.dyn_dtree),f(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new E.Buf16(ia+1),this.heap=new E.Buf16(2*ea+1),f(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new E.Buf16(2*ea+1),f(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function v(a){var b;return a&&a.state?(a.total_in=a.total_out=0,a.data_type=Z,b=a.state,b.pending=0,b.pending_out=0,b.wrap<0&&(b.wrap=-b.wrap),b.status=b.wrap?na:sa,a.adler=2===b.wrap?0:1,b.last_flush=J,F._tr_init(b),O):d(a,Q)}function w(a){var b=v(a);return b===O&&t(a.state),b}function x(a,b){return a&&a.state?2!==a.state.wrap?Q:(a.state.gzhead=b,O):Q}function y(a,b,c,e,f,g){if(!a)return Q;var h=1;if(b===T&&(b=6),e<0?(h=0,e=-e):e>15&&(h=2,e-=16),f<1||f>_||c!==$||e<8||e>15||b<0||b>9||g<0||g>X)return d(a,Q);8===e&&(e=9);var i=new u;return a.state=i,i.strm=a,i.wrap=h,i.gzhead=null,i.w_bits=e,i.w_size=1<<i.w_bits,i.w_mask=i.w_size-1,i.hash_bits=f+7,i.hash_size=1<<i.hash_bits,i.hash_mask=i.hash_size-1,i.hash_shift=~~((i.hash_bits+ja-1)/ja),i.window=new E.Buf8(2*i.w_size),i.head=new E.Buf16(i.hash_size),i.prev=new E.Buf16(i.w_size),i.lit_bufsize=1<<f+6,i.pending_buf_size=4*i.lit_bufsize,i.pending_buf=new E.Buf8(i.pending_buf_size),i.d_buf=1*i.lit_bufsize,i.l_buf=3*i.lit_bufsize,i.level=b,i.strategy=g,i.method=c,w(a)}function z(a,b){return y(a,b,$,aa,ba,Y)}function A(a,b){var c,h,k,l;if(!a||!a.state||b>N||b<0)return a?d(a,Q):Q;if(h=a.state,!a.output||!a.input&&0!==a.avail_in||h.status===ta&&b!==M)return d(a,0===a.avail_out?S:Q);if(h.strm=a,c=h.last_flush,h.last_flush=b,h.status===na)if(2===h.wrap)a.adler=0,i(h,31),i(h,139),i(h,8),h.gzhead?(i(h,(h.gzhead.text?1:0)+(h.gzhead.hcrc?2:0)+(h.gzhead.extra?4:0)+(h.gzhead.name?8:0)+(h.gzhead.comment?16:0)),i(h,255&h.gzhead.time),i(h,h.gzhead.time>>8&255),i(h,h.gzhead.time>>16&255),i(h,h.gzhead.time>>24&255),i(h,9===h.level?2:h.strategy>=V||h.level<2?4:0),i(h,255&h.gzhead.os),h.gzhead.extra&&h.gzhead.extra.length&&(i(h,255&h.gzhead.extra.length),i(h,h.gzhead.extra.length>>8&255)),h.gzhead.hcrc&&(a.adler=H(a.adler,h.pending_buf,h.pending,0)),h.gzindex=0,h.status=oa):(i(h,0),i(h,0),i(h,0),i(h,0),i(h,0),i(h,9===h.level?2:h.strategy>=V||h.level<2?4:0),i(h,ya),h.status=sa);else{var m=$+(h.w_bits-8<<4)<<8,n=-1;n=h.strategy>=V||h.level<2?0:h.level<6?1:6===h.level?2:3,m|=n<<6,0!==h.strstart&&(m|=ma),m+=31-m%31,h.status=sa,j(h,m),0!==h.strstart&&(j(h,a.adler>>>16),j(h,65535&a.adler)),a.adler=1}if(h.status===oa)if(h.gzhead.extra){for(k=h.pending;h.gzindex<(65535&h.gzhead.extra.length)&&(h.pending!==h.pending_buf_size||(h.gzhead.hcrc&&h.pending>k&&(a.adler=H(a.adler,h.pending_buf,h.pending-k,k)),g(a),k=h.pending,h.pending!==h.pending_buf_size));)i(h,255&h.gzhead.extra[h.gzindex]),h.gzindex++;h.gzhead.hcrc&&h.pending>k&&(a.adler=H(a.adler,h.pending_buf,h.pending-k,k)),h.gzindex===h.gzhead.extra.length&&(h.gzindex=0,h.status=pa)}else h.status=pa;if(h.status===pa)if(h.gzhead.name){k=h.pending;do{if(h.pending===h.pending_buf_size&&(h.gzhead.hcrc&&h.pending>k&&(a.adler=H(a.adler,h.pending_buf,h.pending-k,k)),g(a),k=h.pending,h.pending===h.pending_buf_size)){l=1;break}l=h.gzindex<h.gzhead.name.length?255&h.gzhead.name.charCodeAt(h.gzindex++):0,i(h,l)}while(0!==l);h.gzhead.hcrc&&h.pending>k&&(a.adler=H(a.adler,h.pending_buf,h.pending-k,k)),0===l&&(h.gzindex=0,h.status=qa)}else h.status=qa;if(h.status===qa)if(h.gzhead.comment){k=h.pending;do{if(h.pending===h.pending_buf_size&&(h.gzhead.hcrc&&h.pending>k&&(a.adler=H(a.adler,h.pending_buf,h.pending-k,k)),g(a),k=h.pending,h.pending===h.pending_buf_size)){l=1;break}l=h.gzindex<h.gzhead.comment.length?255&h.gzhead.comment.charCodeAt(h.gzindex++):0,i(h,l)}while(0!==l);h.gzhead.hcrc&&h.pending>k&&(a.adler=H(a.adler,h.pending_buf,h.pending-k,k)),0===l&&(h.status=ra)}else h.status=ra;if(h.status===ra&&(h.gzhead.hcrc?(h.pending+2>h.pending_buf_size&&g(a),h.pending+2<=h.pending_buf_size&&(i(h,255&a.adler),i(h,a.adler>>8&255),a.adler=0,h.status=sa)):h.status=sa),0!==h.pending){if(g(a),0===a.avail_out)return h.last_flush=-1,O}else if(0===a.avail_in&&e(b)<=e(c)&&b!==M)return d(a,S);if(h.status===ta&&0!==a.avail_in)return d(a,S);if(0!==a.avail_in||0!==h.lookahead||b!==J&&h.status!==ta){var o=h.strategy===V?r(h,b):h.strategy===W?q(h,b):D[h.level].func(h,b);if(o!==wa&&o!==xa||(h.status=ta),o===ua||o===wa)return 0===a.avail_out&&(h.last_flush=-1),O;if(o===va&&(b===K?F._tr_align(h):b!==N&&(F._tr_stored_block(h,0,0,!1),b===L&&(f(h.head),0===h.lookahead&&(h.strstart=0,h.block_start=0,h.insert=0))),g(a),0===a.avail_out))return h.last_flush=-1,O}return b!==M?O:h.wrap<=0?P:(2===h.wrap?(i(h,255&a.adler),i(h,a.adler>>8&255),i(h,a.adler>>16&255),i(h,a.adler>>24&255),i(h,255&a.total_in),i(h,a.total_in>>8&255),i(h,a.total_in>>16&255),i(h,a.total_in>>24&255)):(j(h,a.adler>>>16),j(h,65535&a.adler)),g(a),h.wrap>0&&(h.wrap=-h.wrap),0!==h.pending?O:P)}function B(a){var b;return a&&a.state?(b=a.state.status,b!==na&&b!==oa&&b!==pa&&b!==qa&&b!==ra&&b!==sa&&b!==ta?d(a,Q):(a.state=null,b===sa?d(a,R):O)):Q}function C(a,b){var c,d,e,g,h,i,j,k,l=b.length;if(!a||!a.state)return Q;if(c=a.state,g=c.wrap,2===g||1===g&&c.status!==na||c.lookahead)return Q;for(1===g&&(a.adler=G(a.adler,b,l,0)),c.wrap=0,l>=c.w_size&&(0===g&&(f(c.head),c.strstart=0,c.block_start=0,c.insert=0),k=new E.Buf8(c.w_size),E.arraySet(k,b,l-c.w_size,c.w_size,0),b=k,l=c.w_size),h=a.avail_in,i=a.next_in,j=a.input,a.avail_in=l,a.next_in=0,a.input=b,m(c);c.lookahead>=ja;){d=c.strstart,e=c.lookahead-(ja-1);do c.ins_h=(c.ins_h<<c.hash_shift^c.window[d+ja-1])&c.hash_mask,c.prev[d&c.w_mask]=c.head[c.ins_h],c.head[c.ins_h]=d,d++;while(--e);c.strstart=d,c.lookahead=ja-1,m(c)}return c.strstart+=c.lookahead,c.block_start=c.strstart,c.insert=c.lookahead,c.lookahead=0,c.match_length=c.prev_length=ja-1,c.match_available=0,a.next_in=i,a.input=j,a.avail_in=h,c.wrap=g,O}var D,E=a("../utils/common"),F=a("./trees"),G=a("./adler32"),H=a("./crc32"),I=a("./messages"),J=0,K=1,L=3,M=4,N=5,O=0,P=1,Q=-2,R=-3,S=-5,T=-1,U=1,V=2,W=3,X=4,Y=0,Z=2,$=8,_=9,aa=15,ba=8,ca=29,da=256,ea=da+1+ca,fa=30,ga=19,ha=2*ea+1,ia=15,ja=3,ka=258,la=ka+ja+1,ma=32,na=42,oa=69,pa=73,qa=91,ra=103,sa=113,ta=666,ua=1,va=2,wa=3,xa=4,ya=3;D=[new s(0,0,0,0,n),new s(4,4,8,4,o),new s(4,5,16,8,o),new s(4,6,32,32,o),new s(4,4,16,16,p),new s(8,16,32,32,p),new s(8,16,128,128,p),new s(8,32,128,256,p),new s(32,128,258,1024,p),new s(32,258,258,4096,p)],c.deflateInit=z,c.deflateInit2=y,c.deflateReset=w,c.deflateResetKeep=v,c.deflateSetHeader=x,c.deflate=A,c.deflateEnd=B,c.deflateSetDictionary=C,c.deflateInfo="pako deflate (from Nodeca project)"},{"../utils/common":62,"./adler32":64,"./crc32":66,"./messages":72,"./trees":73}],68:[function(a,b,c){"use strict";function d(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}b.exports=d},{}],69:[function(a,b,c){"use strict";var d=30,e=12;b.exports=function(a,b){var c,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C;c=a.state,f=a.next_in,B=a.input,g=f+(a.avail_in-5),h=a.next_out,C=a.output,i=h-(b-a.avail_out),j=h+(a.avail_out-257),k=c.dmax,l=c.wsize,m=c.whave,n=c.wnext,o=c.window,p=c.hold,q=c.bits,r=c.lencode,s=c.distcode,t=(1<<c.lenbits)-1,u=(1<<c.distbits)-1;a:do{q<15&&(p+=B[f++]<<q,q+=8,p+=B[f++]<<q,q+=8),v=r[p&t];b:for(;;){if(w=v>>>24,p>>>=w,q-=w,w=v>>>16&255,0===w)C[h++]=65535&v;else{if(!(16&w)){if(0===(64&w)){v=r[(65535&v)+(p&(1<<w)-1)];continue b}if(32&w){c.mode=e;break a}a.msg="invalid literal/length code",c.mode=d;break a}x=65535&v,w&=15,w&&(q<w&&(p+=B[f++]<<q,q+=8),x+=p&(1<<w)-1,p>>>=w,q-=w),q<15&&(p+=B[f++]<<q,q+=8,p+=B[f++]<<q,q+=8),v=s[p&u];c:for(;;){if(w=v>>>24,p>>>=w,q-=w,w=v>>>16&255,!(16&w)){if(0===(64&w)){v=s[(65535&v)+(p&(1<<w)-1)];continue c}a.msg="invalid distance code",c.mode=d;break a}if(y=65535&v,w&=15,q<w&&(p+=B[f++]<<q,q+=8,q<w&&(p+=B[f++]<<q,q+=8)),y+=p&(1<<w)-1,y>k){a.msg="invalid distance too far back",c.mode=d;break a}if(p>>>=w,q-=w,w=h-i,y>w){if(w=y-w,w>m&&c.sane){a.msg="invalid distance too far back",c.mode=d;break a}if(z=0,A=o,0===n){if(z+=l-w,w<x){x-=w;do C[h++]=o[z++];while(--w);z=h-y,A=C}}else if(n<w){if(z+=l+n-w,w-=n,w<x){x-=w;do C[h++]=o[z++];while(--w);if(z=0,n<x){w=n,x-=w;do C[h++]=o[z++];while(--w);z=h-y,A=C}}}else if(z+=n-w,w<x){x-=w;do C[h++]=o[z++];while(--w);z=h-y,A=C}for(;x>2;)C[h++]=A[z++],C[h++]=A[z++],C[h++]=A[z++],x-=3;x&&(C[h++]=A[z++],x>1&&(C[h++]=A[z++]))}else{z=h-y;do C[h++]=C[z++],C[h++]=C[z++],C[h++]=C[z++],x-=3;while(x>2);x&&(C[h++]=C[z++],x>1&&(C[h++]=C[z++]))}break}}break}}while(f<g&&h<j);x=q>>3,f-=x,q-=x<<3,p&=(1<<q)-1,a.next_in=f,a.next_out=h,a.avail_in=f<g?5+(g-f):5-(f-g),a.avail_out=h<j?257+(j-h):257-(h-j),c.hold=p,c.bits=q}},{}],70:[function(a,b,c){"use strict";function d(a){return(a>>>24&255)+(a>>>8&65280)+((65280&a)<<8)+((255&a)<<24)}function e(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new s.Buf16(320),this.work=new s.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function f(a){var b;return a&&a.state?(b=a.state,a.total_in=a.total_out=b.total=0,a.msg="",b.wrap&&(a.adler=1&b.wrap),b.mode=L,b.last=0,b.havedict=0,b.dmax=32768,b.head=null,b.hold=0,b.bits=0,b.lencode=b.lendyn=new s.Buf32(pa),b.distcode=b.distdyn=new s.Buf32(qa),b.sane=1,b.back=-1,D):G}function g(a){var b;return a&&a.state?(b=a.state,b.wsize=0,b.whave=0,b.wnext=0,f(a)):G}function h(a,b){var c,d;return a&&a.state?(d=a.state,b<0?(c=0,b=-b):(c=(b>>4)+1,b<48&&(b&=15)),b&&(b<8||b>15)?G:(null!==d.window&&d.wbits!==b&&(d.window=null),d.wrap=c,d.wbits=b,g(a))):G}function i(a,b){var c,d;return a?(d=new e,a.state=d,d.window=null,c=h(a,b),c!==D&&(a.state=null),c):G}function j(a){return i(a,sa)}function k(a){if(ta){var b;for(q=new s.Buf32(512),r=new s.Buf32(32),b=0;b<144;)a.lens[b++]=8;for(;b<256;)a.lens[b++]=9;for(;b<280;)a.lens[b++]=7;for(;b<288;)a.lens[b++]=8;for(w(y,a.lens,0,288,q,0,a.work,{bits:9}),b=0;b<32;)a.lens[b++]=5;w(z,a.lens,0,32,r,0,a.work,{bits:5}),ta=!1}a.lencode=q,a.lenbits=9,a.distcode=r,a.distbits=5}function l(a,b,c,d){var e,f=a.state;return null===f.window&&(f.wsize=1<<f.wbits,f.wnext=0,f.whave=0,f.window=new s.Buf8(f.wsize)),d>=f.wsize?(s.arraySet(f.window,b,c-f.wsize,f.wsize,0),f.wnext=0,f.whave=f.wsize):(e=f.wsize-f.wnext,e>d&&(e=d),s.arraySet(f.window,b,c-d,e,f.wnext),d-=e,d?(s.arraySet(f.window,b,c-d,d,0),f.wnext=d,f.whave=f.wsize):(f.wnext+=e,f.wnext===f.wsize&&(f.wnext=0),f.whave<f.wsize&&(f.whave+=e))),0}function m(a,b){var c,e,f,g,h,i,j,m,n,o,p,q,r,pa,qa,ra,sa,ta,ua,va,wa,xa,ya,za,Aa=0,Ba=new s.Buf8(4),Ca=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!a||!a.state||!a.output||!a.input&&0!==a.avail_in)return G;c=a.state,c.mode===W&&(c.mode=X),h=a.next_out,f=a.output,j=a.avail_out,g=a.next_in,e=a.input,i=a.avail_in,m=c.hold,n=c.bits,o=i,p=j,xa=D;a:for(;;)switch(c.mode){case L:if(0===c.wrap){c.mode=X;break}for(;n<16;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(2&c.wrap&&35615===m){c.check=0,Ba[0]=255&m,Ba[1]=m>>>8&255,c.check=u(c.check,Ba,2,0),m=0,n=0,c.mode=M;break}if(c.flags=0,c.head&&(c.head.done=!1),!(1&c.wrap)||(((255&m)<<8)+(m>>8))%31){a.msg="incorrect header check",c.mode=ma;break}if((15&m)!==K){a.msg="unknown compression method",c.mode=ma;break}if(m>>>=4,n-=4,wa=(15&m)+8,0===c.wbits)c.wbits=wa;else if(wa>c.wbits){a.msg="invalid window size",c.mode=ma;break}c.dmax=1<<wa,a.adler=c.check=1,c.mode=512&m?U:W,m=0,n=0;break;case M:for(;n<16;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(c.flags=m,(255&c.flags)!==K){a.msg="unknown compression method",c.mode=ma;break}if(57344&c.flags){a.msg="unknown header flags set",c.mode=ma;break}c.head&&(c.head.text=m>>8&1),512&c.flags&&(Ba[0]=255&m,Ba[1]=m>>>8&255,c.check=u(c.check,Ba,2,0)),m=0,n=0,c.mode=N;case N:for(;n<32;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}c.head&&(c.head.time=m),512&c.flags&&(Ba[0]=255&m,Ba[1]=m>>>8&255,Ba[2]=m>>>16&255,Ba[3]=m>>>24&255,c.check=u(c.check,Ba,4,0)),m=0,n=0,c.mode=O;case O:for(;n<16;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}c.head&&(c.head.xflags=255&m,c.head.os=m>>8),512&c.flags&&(Ba[0]=255&m,Ba[1]=m>>>8&255,c.check=u(c.check,Ba,2,0)),m=0,n=0,c.mode=P;case P:if(1024&c.flags){for(;n<16;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}c.length=m,c.head&&(c.head.extra_len=m),512&c.flags&&(Ba[0]=255&m,Ba[1]=m>>>8&255,c.check=u(c.check,Ba,2,0)),m=0,n=0}else c.head&&(c.head.extra=null);c.mode=Q;case Q:if(1024&c.flags&&(q=c.length,q>i&&(q=i),q&&(c.head&&(wa=c.head.extra_len-c.length,c.head.extra||(c.head.extra=new Array(c.head.extra_len)),s.arraySet(c.head.extra,e,g,q,wa)),512&c.flags&&(c.check=u(c.check,e,q,g)),i-=q,g+=q,c.length-=q),c.length))break a;c.length=0,c.mode=R;case R:if(2048&c.flags){if(0===i)break a;q=0;do wa=e[g+q++],c.head&&wa&&c.length<65536&&(c.head.name+=String.fromCharCode(wa));while(wa&&q<i);if(512&c.flags&&(c.check=u(c.check,e,q,g)),i-=q,g+=q,wa)break a}else c.head&&(c.head.name=null);c.length=0,c.mode=S;case S:if(4096&c.flags){if(0===i)break a;q=0;do wa=e[g+q++],c.head&&wa&&c.length<65536&&(c.head.comment+=String.fromCharCode(wa));while(wa&&q<i);if(512&c.flags&&(c.check=u(c.check,e,q,g)),i-=q,g+=q,wa)break a}else c.head&&(c.head.comment=null);c.mode=T;case T:if(512&c.flags){for(;n<16;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(m!==(65535&c.check)){a.msg="header crc mismatch",c.mode=ma;break}m=0,n=0}c.head&&(c.head.hcrc=c.flags>>9&1,c.head.done=!0),a.adler=c.check=0,c.mode=W;break;case U:for(;n<32;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}a.adler=c.check=d(m),m=0,n=0,c.mode=V;case V:if(0===c.havedict)return a.next_out=h,a.avail_out=j,a.next_in=g,a.avail_in=i,c.hold=m,c.bits=n,F;a.adler=c.check=1,c.mode=W;case W:if(b===B||b===C)break a;case X:if(c.last){m>>>=7&n,n-=7&n,c.mode=ja;break}for(;n<3;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}switch(c.last=1&m,m>>>=1,n-=1,3&m){case 0:c.mode=Y;break;case 1:if(k(c),c.mode=ca,b===C){m>>>=2,n-=2;break a}break;case 2:c.mode=_;break;case 3:a.msg="invalid block type",c.mode=ma}m>>>=2,n-=2;break;case Y:for(m>>>=7&n,n-=7&n;n<32;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if((65535&m)!==(m>>>16^65535)){a.msg="invalid stored block lengths",c.mode=ma;break}if(c.length=65535&m,m=0,n=0,c.mode=Z,b===C)break a;case Z:c.mode=$;case $:if(q=c.length){if(q>i&&(q=i),q>j&&(q=j),0===q)break a;s.arraySet(f,e,g,q,h),i-=q,g+=q,j-=q,h+=q,c.length-=q;break}c.mode=W;break;case _:for(;n<14;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(c.nlen=(31&m)+257,m>>>=5,n-=5,c.ndist=(31&m)+1,m>>>=5,n-=5,c.ncode=(15&m)+4,m>>>=4,n-=4,c.nlen>286||c.ndist>30){a.msg="too many length or distance symbols",c.mode=ma;break}c.have=0,c.mode=aa;case aa:for(;c.have<c.ncode;){for(;n<3;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}c.lens[Ca[c.have++]]=7&m,m>>>=3,n-=3}for(;c.have<19;)c.lens[Ca[c.have++]]=0;if(c.lencode=c.lendyn,c.lenbits=7,ya={bits:c.lenbits},xa=w(x,c.lens,0,19,c.lencode,0,c.work,ya),c.lenbits=ya.bits,xa){a.msg="invalid code lengths set",c.mode=ma;break}c.have=0,c.mode=ba;case ba:for(;c.have<c.nlen+c.ndist;){for(;Aa=c.lencode[m&(1<<c.lenbits)-1],qa=Aa>>>24,ra=Aa>>>16&255,sa=65535&Aa,!(qa<=n);){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(sa<16)m>>>=qa,n-=qa,c.lens[c.have++]=sa;else{if(16===sa){for(za=qa+2;n<za;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(m>>>=qa,n-=qa,0===c.have){a.msg="invalid bit length repeat",c.mode=ma;break}wa=c.lens[c.have-1],q=3+(3&m),m>>>=2,n-=2}else if(17===sa){for(za=qa+3;n<za;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}m>>>=qa,n-=qa,wa=0,q=3+(7&m),m>>>=3,n-=3}else{for(za=qa+7;n<za;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}m>>>=qa,n-=qa,wa=0,q=11+(127&m),m>>>=7,n-=7}if(c.have+q>c.nlen+c.ndist){a.msg="invalid bit length repeat",c.mode=ma;break}for(;q--;)c.lens[c.have++]=wa}}if(c.mode===ma)break;if(0===c.lens[256]){a.msg="invalid code -- missing end-of-block",c.mode=ma;break}if(c.lenbits=9,ya={bits:c.lenbits},xa=w(y,c.lens,0,c.nlen,c.lencode,0,c.work,ya),c.lenbits=ya.bits,xa){a.msg="invalid literal/lengths set",c.mode=ma;break}if(c.distbits=6,c.distcode=c.distdyn,ya={bits:c.distbits},xa=w(z,c.lens,c.nlen,c.ndist,c.distcode,0,c.work,ya),c.distbits=ya.bits,xa){a.msg="invalid distances set",c.mode=ma;break}if(c.mode=ca,b===C)break a;case ca:c.mode=da;case da:if(i>=6&&j>=258){a.next_out=h,a.avail_out=j,a.next_in=g,a.avail_in=i,c.hold=m,c.bits=n,v(a,p),h=a.next_out,f=a.output,j=a.avail_out,g=a.next_in,e=a.input,i=a.avail_in,m=c.hold,n=c.bits,c.mode===W&&(c.back=-1);break}for(c.back=0;Aa=c.lencode[m&(1<<c.lenbits)-1],qa=Aa>>>24,ra=Aa>>>16&255,sa=65535&Aa,!(qa<=n);){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(ra&&0===(240&ra)){for(ta=qa,ua=ra,va=sa;Aa=c.lencode[va+((m&(1<<ta+ua)-1)>>ta)],qa=Aa>>>24,ra=Aa>>>16&255,sa=65535&Aa,!(ta+qa<=n);){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}m>>>=ta,n-=ta,c.back+=ta}if(m>>>=qa,n-=qa,c.back+=qa,c.length=sa,0===ra){c.mode=ia;break}if(32&ra){c.back=-1,c.mode=W;break}if(64&ra){a.msg="invalid literal/length code",c.mode=ma;break}c.extra=15&ra,c.mode=ea;case ea:if(c.extra){for(za=c.extra;n<za;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}c.length+=m&(1<<c.extra)-1,m>>>=c.extra,n-=c.extra,c.back+=c.extra}c.was=c.length,c.mode=fa;case fa:for(;Aa=c.distcode[m&(1<<c.distbits)-1],qa=Aa>>>24,ra=Aa>>>16&255,sa=65535&Aa,!(qa<=n);){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(0===(240&ra)){for(ta=qa,ua=ra,va=sa;Aa=c.distcode[va+((m&(1<<ta+ua)-1)>>ta)],qa=Aa>>>24,ra=Aa>>>16&255,sa=65535&Aa,!(ta+qa<=n);){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}m>>>=ta,n-=ta,c.back+=ta}if(m>>>=qa,n-=qa,c.back+=qa,64&ra){a.msg="invalid distance code",c.mode=ma;break}c.offset=sa,c.extra=15&ra,c.mode=ga;case ga:if(c.extra){for(za=c.extra;n<za;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}c.offset+=m&(1<<c.extra)-1,m>>>=c.extra,n-=c.extra,c.back+=c.extra}if(c.offset>c.dmax){a.msg="invalid distance too far back",c.mode=ma;break}c.mode=ha;case ha:if(0===j)break a;if(q=p-j,c.offset>q){if(q=c.offset-q,q>c.whave&&c.sane){a.msg="invalid distance too far back",c.mode=ma;break}q>c.wnext?(q-=c.wnext,r=c.wsize-q):r=c.wnext-q,q>c.length&&(q=c.length),pa=c.window}else pa=f,r=h-c.offset,q=c.length;q>j&&(q=j),j-=q,c.length-=q;do f[h++]=pa[r++];while(--q);0===c.length&&(c.mode=da);break;case ia:if(0===j)break a;f[h++]=c.length,j--,c.mode=da;break;case ja:if(c.wrap){for(;n<32;){if(0===i)break a;i--,m|=e[g++]<<n,n+=8}if(p-=j,a.total_out+=p,c.total+=p,p&&(a.adler=c.check=c.flags?u(c.check,f,p,h-p):t(c.check,f,p,h-p)),p=j,(c.flags?m:d(m))!==c.check){a.msg="incorrect data check",c.mode=ma;break}m=0,n=0}c.mode=ka;case ka:if(c.wrap&&c.flags){for(;n<32;){if(0===i)break a;i--,m+=e[g++]<<n,n+=8}if(m!==(4294967295&c.total)){a.msg="incorrect length check",c.mode=ma;break}m=0,n=0}c.mode=la;case la:xa=E;break a;case ma:xa=H;break a;case na:return I;case oa:default:return G}return a.next_out=h,a.avail_out=j,a.next_in=g,a.avail_in=i,c.hold=m,c.bits=n,(c.wsize||p!==a.avail_out&&c.mode<ma&&(c.mode<ja||b!==A))&&l(a,a.output,a.next_out,p-a.avail_out)?(c.mode=na,I):(o-=a.avail_in,p-=a.avail_out,a.total_in+=o,a.total_out+=p,c.total+=p,c.wrap&&p&&(a.adler=c.check=c.flags?u(c.check,f,p,a.next_out-p):t(c.check,f,p,a.next_out-p)),a.data_type=c.bits+(c.last?64:0)+(c.mode===W?128:0)+(c.mode===ca||c.mode===Z?256:0),(0===o&&0===p||b===A)&&xa===D&&(xa=J),xa)}function n(a){if(!a||!a.state)return G;var b=a.state;return b.window&&(b.window=null),a.state=null,D}function o(a,b){var c;return a&&a.state?(c=a.state,0===(2&c.wrap)?G:(c.head=b,b.done=!1,D)):G}function p(a,b){var c,d,e,f=b.length;return a&&a.state?(c=a.state,0!==c.wrap&&c.mode!==V?G:c.mode===V&&(d=1,d=t(d,b,f,0),d!==c.check)?H:(e=l(a,b,f,f))?(c.mode=na,I):(c.havedict=1,D)):G}var q,r,s=a("../utils/common"),t=a("./adler32"),u=a("./crc32"),v=a("./inffast"),w=a("./inftrees"),x=0,y=1,z=2,A=4,B=5,C=6,D=0,E=1,F=2,G=-2,H=-3,I=-4,J=-5,K=8,L=1,M=2,N=3,O=4,P=5,Q=6,R=7,S=8,T=9,U=10,V=11,W=12,X=13,Y=14,Z=15,$=16,_=17,aa=18,ba=19,ca=20,da=21,ea=22,fa=23,ga=24,ha=25,ia=26,ja=27,ka=28,la=29,ma=30,na=31,oa=32,pa=852,qa=592,ra=15,sa=ra,ta=!0;c.inflateReset=g,c.inflateReset2=h,c.inflateResetKeep=f,c.inflateInit=j,c.inflateInit2=i,c.inflate=m,c.inflateEnd=n,c.inflateGetHeader=o,c.inflateSetDictionary=p,c.inflateInfo="pako inflate (from Nodeca project)"},{"../utils/common":62,"./adler32":64,"./crc32":66,"./inffast":69,"./inftrees":71}],71:[function(a,b,c){"use strict";var d=a("../utils/common"),e=15,f=852,g=592,h=0,i=1,j=2,k=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],l=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],m=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],n=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];b.exports=function(a,b,c,o,p,q,r,s){var t,u,v,w,x,y,z,A,B,C=s.bits,D=0,E=0,F=0,G=0,H=0,I=0,J=0,K=0,L=0,M=0,N=null,O=0,P=new d.Buf16(e+1),Q=new d.Buf16(e+1),R=null,S=0;for(D=0;D<=e;D++)P[D]=0;for(E=0;E<o;E++)P[b[c+E]]++;for(H=C,G=e;G>=1&&0===P[G];G--);if(H>G&&(H=G),0===G)return p[q++]=20971520,p[q++]=20971520,s.bits=1,0;for(F=1;F<G&&0===P[F];F++);for(H<F&&(H=F),K=1,D=1;D<=e;D++)if(K<<=1,K-=P[D],K<0)return-1;if(K>0&&(a===h||1!==G))return-1;for(Q[1]=0,D=1;D<e;D++)Q[D+1]=Q[D]+P[D];for(E=0;E<o;E++)0!==b[c+E]&&(r[Q[b[c+E]]++]=E);if(a===h?(N=R=r,y=19):a===i?(N=k,O-=257,R=l,S-=257,y=256):(N=m,R=n,y=-1),M=0,E=0,D=F,x=q,I=H,J=0,v=-1,L=1<<H,w=L-1,a===i&&L>f||a===j&&L>g)return 1;for(;;){z=D-J,r[E]<y?(A=0,B=r[E]):r[E]>y?(A=R[S+r[E]],B=N[O+r[E]]):(A=96,B=0),t=1<<D-J,u=1<<I,F=u;do u-=t,p[x+(M>>J)+u]=z<<24|A<<16|B|0;while(0!==u);for(t=1<<D-1;M&t;)t>>=1;if(0!==t?(M&=t-1,M+=t):M=0,E++,0===--P[D]){if(D===G)break;D=b[c+r[E]]}if(D>H&&(M&w)!==v){for(0===J&&(J=H),x+=F,I=D-J,K=1<<I;I+J<G&&(K-=P[I+J],!(K<=0));)I++,K<<=1;if(L+=1<<I,a===i&&L>f||a===j&&L>g)return 1;v=M&w,p[v]=H<<24|I<<16|x-q|0}}return 0!==M&&(p[x+M]=D-J<<24|64<<16|0),s.bits=H,0}},{"../utils/common":62}],72:[function(a,b,c){"use strict";b.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},{}],73:[function(a,b,c){"use strict";function d(a){for(var b=a.length;--b>=0;)a[b]=0}function e(a,b,c,d,e){this.static_tree=a,this.extra_bits=b,this.extra_base=c,this.elems=d,this.max_length=e,this.has_stree=a&&a.length}function f(a,b){this.dyn_tree=a,this.max_code=0,this.stat_desc=b}function g(a){return a<256?ia[a]:ia[256+(a>>>7)]}function h(a,b){a.pending_buf[a.pending++]=255&b,a.pending_buf[a.pending++]=b>>>8&255}function i(a,b,c){a.bi_valid>X-c?(a.bi_buf|=b<<a.bi_valid&65535,h(a,a.bi_buf),a.bi_buf=b>>X-a.bi_valid,a.bi_valid+=c-X):(a.bi_buf|=b<<a.bi_valid&65535,a.bi_valid+=c)}function j(a,b,c){i(a,c[2*b],c[2*b+1])}function k(a,b){var c=0;do c|=1&a,a>>>=1,c<<=1;while(--b>0);return c>>>1}function l(a){16===a.bi_valid?(h(a,a.bi_buf),a.bi_buf=0,a.bi_valid=0):a.bi_valid>=8&&(a.pending_buf[a.pending++]=255&a.bi_buf,a.bi_buf>>=8,a.bi_valid-=8)}function m(a,b){var c,d,e,f,g,h,i=b.dyn_tree,j=b.max_code,k=b.stat_desc.static_tree,l=b.stat_desc.has_stree,m=b.stat_desc.extra_bits,n=b.stat_desc.extra_base,o=b.stat_desc.max_length,p=0;for(f=0;f<=W;f++)a.bl_count[f]=0;for(i[2*a.heap[a.heap_max]+1]=0,
      +c=a.heap_max+1;c<V;c++)d=a.heap[c],f=i[2*i[2*d+1]+1]+1,f>o&&(f=o,p++),i[2*d+1]=f,d>j||(a.bl_count[f]++,g=0,d>=n&&(g=m[d-n]),h=i[2*d],a.opt_len+=h*(f+g),l&&(a.static_len+=h*(k[2*d+1]+g)));if(0!==p){do{for(f=o-1;0===a.bl_count[f];)f--;a.bl_count[f]--,a.bl_count[f+1]+=2,a.bl_count[o]--,p-=2}while(p>0);for(f=o;0!==f;f--)for(d=a.bl_count[f];0!==d;)e=a.heap[--c],e>j||(i[2*e+1]!==f&&(a.opt_len+=(f-i[2*e+1])*i[2*e],i[2*e+1]=f),d--)}}function n(a,b,c){var d,e,f=new Array(W+1),g=0;for(d=1;d<=W;d++)f[d]=g=g+c[d-1]<<1;for(e=0;e<=b;e++){var h=a[2*e+1];0!==h&&(a[2*e]=k(f[h]++,h))}}function o(){var a,b,c,d,f,g=new Array(W+1);for(c=0,d=0;d<Q-1;d++)for(ka[d]=c,a=0;a<1<<ba[d];a++)ja[c++]=d;for(ja[c-1]=d,f=0,d=0;d<16;d++)for(la[d]=f,a=0;a<1<<ca[d];a++)ia[f++]=d;for(f>>=7;d<T;d++)for(la[d]=f<<7,a=0;a<1<<ca[d]-7;a++)ia[256+f++]=d;for(b=0;b<=W;b++)g[b]=0;for(a=0;a<=143;)ga[2*a+1]=8,a++,g[8]++;for(;a<=255;)ga[2*a+1]=9,a++,g[9]++;for(;a<=279;)ga[2*a+1]=7,a++,g[7]++;for(;a<=287;)ga[2*a+1]=8,a++,g[8]++;for(n(ga,S+1,g),a=0;a<T;a++)ha[2*a+1]=5,ha[2*a]=k(a,5);ma=new e(ga,ba,R+1,S,W),na=new e(ha,ca,0,T,W),oa=new e(new Array(0),da,0,U,Y)}function p(a){var b;for(b=0;b<S;b++)a.dyn_ltree[2*b]=0;for(b=0;b<T;b++)a.dyn_dtree[2*b]=0;for(b=0;b<U;b++)a.bl_tree[2*b]=0;a.dyn_ltree[2*Z]=1,a.opt_len=a.static_len=0,a.last_lit=a.matches=0}function q(a){a.bi_valid>8?h(a,a.bi_buf):a.bi_valid>0&&(a.pending_buf[a.pending++]=a.bi_buf),a.bi_buf=0,a.bi_valid=0}function r(a,b,c,d){q(a),d&&(h(a,c),h(a,~c)),G.arraySet(a.pending_buf,a.window,b,c,a.pending),a.pending+=c}function s(a,b,c,d){var e=2*b,f=2*c;return a[e]<a[f]||a[e]===a[f]&&d[b]<=d[c]}function t(a,b,c){for(var d=a.heap[c],e=c<<1;e<=a.heap_len&&(e<a.heap_len&&s(b,a.heap[e+1],a.heap[e],a.depth)&&e++,!s(b,d,a.heap[e],a.depth));)a.heap[c]=a.heap[e],c=e,e<<=1;a.heap[c]=d}function u(a,b,c){var d,e,f,h,k=0;if(0!==a.last_lit)do d=a.pending_buf[a.d_buf+2*k]<<8|a.pending_buf[a.d_buf+2*k+1],e=a.pending_buf[a.l_buf+k],k++,0===d?j(a,e,b):(f=ja[e],j(a,f+R+1,b),h=ba[f],0!==h&&(e-=ka[f],i(a,e,h)),d--,f=g(d),j(a,f,c),h=ca[f],0!==h&&(d-=la[f],i(a,d,h)));while(k<a.last_lit);j(a,Z,b)}function v(a,b){var c,d,e,f=b.dyn_tree,g=b.stat_desc.static_tree,h=b.stat_desc.has_stree,i=b.stat_desc.elems,j=-1;for(a.heap_len=0,a.heap_max=V,c=0;c<i;c++)0!==f[2*c]?(a.heap[++a.heap_len]=j=c,a.depth[c]=0):f[2*c+1]=0;for(;a.heap_len<2;)e=a.heap[++a.heap_len]=j<2?++j:0,f[2*e]=1,a.depth[e]=0,a.opt_len--,h&&(a.static_len-=g[2*e+1]);for(b.max_code=j,c=a.heap_len>>1;c>=1;c--)t(a,f,c);e=i;do c=a.heap[1],a.heap[1]=a.heap[a.heap_len--],t(a,f,1),d=a.heap[1],a.heap[--a.heap_max]=c,a.heap[--a.heap_max]=d,f[2*e]=f[2*c]+f[2*d],a.depth[e]=(a.depth[c]>=a.depth[d]?a.depth[c]:a.depth[d])+1,f[2*c+1]=f[2*d+1]=e,a.heap[1]=e++,t(a,f,1);while(a.heap_len>=2);a.heap[--a.heap_max]=a.heap[1],m(a,b),n(f,j,a.bl_count)}function w(a,b,c){var d,e,f=-1,g=b[1],h=0,i=7,j=4;for(0===g&&(i=138,j=3),b[2*(c+1)+1]=65535,d=0;d<=c;d++)e=g,g=b[2*(d+1)+1],++h<i&&e===g||(h<j?a.bl_tree[2*e]+=h:0!==e?(e!==f&&a.bl_tree[2*e]++,a.bl_tree[2*$]++):h<=10?a.bl_tree[2*_]++:a.bl_tree[2*aa]++,h=0,f=e,0===g?(i=138,j=3):e===g?(i=6,j=3):(i=7,j=4))}function x(a,b,c){var d,e,f=-1,g=b[1],h=0,k=7,l=4;for(0===g&&(k=138,l=3),d=0;d<=c;d++)if(e=g,g=b[2*(d+1)+1],!(++h<k&&e===g)){if(h<l){do j(a,e,a.bl_tree);while(0!==--h)}else 0!==e?(e!==f&&(j(a,e,a.bl_tree),h--),j(a,$,a.bl_tree),i(a,h-3,2)):h<=10?(j(a,_,a.bl_tree),i(a,h-3,3)):(j(a,aa,a.bl_tree),i(a,h-11,7));h=0,f=e,0===g?(k=138,l=3):e===g?(k=6,l=3):(k=7,l=4)}}function y(a){var b;for(w(a,a.dyn_ltree,a.l_desc.max_code),w(a,a.dyn_dtree,a.d_desc.max_code),v(a,a.bl_desc),b=U-1;b>=3&&0===a.bl_tree[2*ea[b]+1];b--);return a.opt_len+=3*(b+1)+5+5+4,b}function z(a,b,c,d){var e;for(i(a,b-257,5),i(a,c-1,5),i(a,d-4,4),e=0;e<d;e++)i(a,a.bl_tree[2*ea[e]+1],3);x(a,a.dyn_ltree,b-1),x(a,a.dyn_dtree,c-1)}function A(a){var b,c=4093624447;for(b=0;b<=31;b++,c>>>=1)if(1&c&&0!==a.dyn_ltree[2*b])return I;if(0!==a.dyn_ltree[18]||0!==a.dyn_ltree[20]||0!==a.dyn_ltree[26])return J;for(b=32;b<R;b++)if(0!==a.dyn_ltree[2*b])return J;return I}function B(a){pa||(o(),pa=!0),a.l_desc=new f(a.dyn_ltree,ma),a.d_desc=new f(a.dyn_dtree,na),a.bl_desc=new f(a.bl_tree,oa),a.bi_buf=0,a.bi_valid=0,p(a)}function C(a,b,c,d){i(a,(L<<1)+(d?1:0),3),r(a,b,c,!0)}function D(a){i(a,M<<1,3),j(a,Z,ga),l(a)}function E(a,b,c,d){var e,f,g=0;a.level>0?(a.strm.data_type===K&&(a.strm.data_type=A(a)),v(a,a.l_desc),v(a,a.d_desc),g=y(a),e=a.opt_len+3+7>>>3,f=a.static_len+3+7>>>3,f<=e&&(e=f)):e=f=c+5,c+4<=e&&b!==-1?C(a,b,c,d):a.strategy===H||f===e?(i(a,(M<<1)+(d?1:0),3),u(a,ga,ha)):(i(a,(N<<1)+(d?1:0),3),z(a,a.l_desc.max_code+1,a.d_desc.max_code+1,g+1),u(a,a.dyn_ltree,a.dyn_dtree)),p(a),d&&q(a)}function F(a,b,c){return a.pending_buf[a.d_buf+2*a.last_lit]=b>>>8&255,a.pending_buf[a.d_buf+2*a.last_lit+1]=255&b,a.pending_buf[a.l_buf+a.last_lit]=255&c,a.last_lit++,0===b?a.dyn_ltree[2*c]++:(a.matches++,b--,a.dyn_ltree[2*(ja[c]+R+1)]++,a.dyn_dtree[2*g(b)]++),a.last_lit===a.lit_bufsize-1}var G=a("../utils/common"),H=4,I=0,J=1,K=2,L=0,M=1,N=2,O=3,P=258,Q=29,R=256,S=R+1+Q,T=30,U=19,V=2*S+1,W=15,X=16,Y=7,Z=256,$=16,_=17,aa=18,ba=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],ca=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],da=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],ea=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],fa=512,ga=new Array(2*(S+2));d(ga);var ha=new Array(2*T);d(ha);var ia=new Array(fa);d(ia);var ja=new Array(P-O+1);d(ja);var ka=new Array(Q);d(ka);var la=new Array(T);d(la);var ma,na,oa,pa=!1;c._tr_init=B,c._tr_stored_block=C,c._tr_flush_block=E,c._tr_tally=F,c._tr_align=D},{"../utils/common":62}],74:[function(a,b,c){"use strict";function d(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}b.exports=d},{}]},{},[10])(10)});
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/legal/ADDITIONAL_LICENSE_INFO b/docs/site/testapidocs/legal/ADDITIONAL_LICENSE_INFO
      new file mode 100644
      index 00000000..b62cc3ef
      --- /dev/null
      +++ b/docs/site/testapidocs/legal/ADDITIONAL_LICENSE_INFO
      @@ -0,0 +1 @@
      +Please see ..\java.base\ADDITIONAL_LICENSE_INFO
      diff --git a/docs/site/testapidocs/legal/ASSEMBLY_EXCEPTION b/docs/site/testapidocs/legal/ASSEMBLY_EXCEPTION
      new file mode 100644
      index 00000000..0d4cfb40
      --- /dev/null
      +++ b/docs/site/testapidocs/legal/ASSEMBLY_EXCEPTION
      @@ -0,0 +1 @@
      +Please see ..\java.base\ASSEMBLY_EXCEPTION
      diff --git a/docs/site/testapidocs/legal/LICENSE b/docs/site/testapidocs/legal/LICENSE
      new file mode 100644
      index 00000000..4ad9fe40
      --- /dev/null
      +++ b/docs/site/testapidocs/legal/LICENSE
      @@ -0,0 +1 @@
      +Please see ..\java.base\LICENSE
      diff --git a/docs/site/testapidocs/legal/jquery.md b/docs/site/testapidocs/legal/jquery.md
      new file mode 100644
      index 00000000..f7b72e3f
      --- /dev/null
      +++ b/docs/site/testapidocs/legal/jquery.md
      @@ -0,0 +1,72 @@
      +## jQuery v3.6.0
      +
      +### jQuery License
      +```
      +jQuery v 3.6.0
      +Copyright OpenJS Foundation and other contributors, https://openjsf.org/
      +
      +Permission is hereby granted, free of charge, to any person obtaining
      +a copy of this software and associated documentation files (the
      +"Software"), to deal in the Software without restriction, including
      +without limitation the rights to use, copy, modify, merge, publish,
      +distribute, sublicense, and/or sell copies of the Software, and to
      +permit persons to whom the Software is furnished to do so, subject to
      +the following conditions:
      +
      +The above copyright notice and this permission notice shall be
      +included in all copies or substantial portions of the Software.
      +
      +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
      +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
      +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
      +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
      +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
      +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
      +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
      +
      +******************************************
      +
      +The jQuery JavaScript Library v3.6.0 also includes Sizzle.js
      +
      +Sizzle.js includes the following license:
      +
      +Copyright JS Foundation and other contributors, https://js.foundation/
      +
      +This software consists of voluntary contributions made by many
      +individuals. For exact contribution history, see the revision history
      +available at https://github.com/jquery/sizzle
      +
      +The following license applies to all parts of this software except as
      +documented below:
      +
      +====
      +
      +Permission is hereby granted, free of charge, to any person obtaining
      +a copy of this software and associated documentation files (the
      +"Software"), to deal in the Software without restriction, including
      +without limitation the rights to use, copy, modify, merge, publish,
      +distribute, sublicense, and/or sell copies of the Software, and to
      +permit persons to whom the Software is furnished to do so, subject to
      +the following conditions:
      +
      +The above copyright notice and this permission notice shall be
      +included in all copies or substantial portions of the Software.
      +
      +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
      +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
      +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
      +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
      +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
      +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
      +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
      +
      +====
      +
      +All files located in the node_modules and external directories are
      +externally maintained libraries used by this software which have their
      +own licenses; we recommend you read them, as their terms may differ from
      +the terms above.
      +
      +*********************
      +
      +```
      diff --git a/docs/site/testapidocs/legal/jqueryUI.md b/docs/site/testapidocs/legal/jqueryUI.md
      new file mode 100644
      index 00000000..8031bdb5
      --- /dev/null
      +++ b/docs/site/testapidocs/legal/jqueryUI.md
      @@ -0,0 +1,49 @@
      +## jQuery UI v1.12.1
      +
      +### jQuery UI License
      +```
      +Copyright jQuery Foundation and other contributors, https://jquery.org/
      +
      +This software consists of voluntary contributions made by many
      +individuals. For exact contribution history, see the revision history
      +available at https://github.com/jquery/jquery-ui
      +
      +The following license applies to all parts of this software except as
      +documented below:
      +
      +====
      +
      +Permission is hereby granted, free of charge, to any person obtaining
      +a copy of this software and associated documentation files (the
      +"Software"), to deal in the Software without restriction, including
      +without limitation the rights to use, copy, modify, merge, publish,
      +distribute, sublicense, and/or sell copies of the Software, and to
      +permit persons to whom the Software is furnished to do so, subject to
      +the following conditions:
      +
      +The above copyright notice and this permission notice shall be
      +included in all copies or substantial portions of the Software.
      +
      +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
      +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
      +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
      +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
      +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
      +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
      +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
      +
      +====
      +
      +Copyright and related rights for sample code are waived via CC0. Sample
      +code is defined as all source code contained within the demos directory.
      +
      +CC0: http://creativecommons.org/publicdomain/zero/1.0/
      +
      +====
      +
      +All files located in the node_modules and external directories are
      +externally maintained libraries used by this software which have their
      +own licenses; we recommend you read them, as their terms may differ from
      +the terms above.
      +
      +```
      diff --git a/docs/site/testapidocs/member-search-index.js b/docs/site/testapidocs/member-search-index.js
      new file mode 100644
      index 00000000..b3d09fcd
      --- /dev/null
      +++ b/docs/site/testapidocs/member-search-index.js
      @@ -0,0 +1 @@
      +memberSearchIndex = [{"p":"javax.measure.test.unit","c":"AreaUnit","l":"acre"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"add(AreaQuantity)","u":"add(javax.measure.test.quantity.AreaQuantity)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"add(DistanceQuantity)","u":"add(javax.measure.test.quantity.DistanceQuantity)"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"add(Quantity<Area>)","u":"add(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"add(Quantity<Length>)","u":"add(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"add(Quantity<Temperature>)","u":"add(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"add(Quantity<Time>)","u":"add(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"add(Quantity<Volume>)","u":"add(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"add(TemperatureQuantity)","u":"add(javax.measure.test.quantity.TemperatureQuantity)"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"add(TestQuantity<Q>, TestQuantity<Q>, TestQuantity<Q>, TestUnit<Q>)","u":"add(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"add(TimeQuantity)","u":"add(javax.measure.test.quantity.TimeQuantity)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"add(VolumeQuantity)","u":"add(javax.measure.test.quantity.VolumeQuantity)"},{"p":"javax.measure.test","c":"TestUnit","l":"alternate(String)","u":"alternate(java.lang.String)"},{"p":"javax.measure.test.unit","c":"DistanceUnit","l":"Ångström"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"AreaQuantity()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"AreaQuantity(double, AreaUnit)","u":"%3Cinit%3E(double,javax.measure.test.unit.AreaUnit)"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"AreaQuantity(Number, Unit)","u":"%3Cinit%3E(java.lang.Number,javax.measure.Unit)"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"AreaQuantityTest()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.unit","c":"AreaUnit","l":"AreaUnit(String, double)","u":"%3Cinit%3E(java.lang.String,double)"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"asType(Class<T>)","u":"asType(java.lang.Class)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"asType(Class<T>)","u":"asType(java.lang.Class)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"asType(Class<T>)","u":"asType(java.lang.Class)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"asType(Class<T>)","u":"asType(java.lang.Class)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"asType(Class<T>)","u":"asType(java.lang.Class)"},{"p":"javax.measure.test","c":"TestUnit","l":"asType(Class<T>)","u":"asType(java.lang.Class)"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"asType(Class<T>)","u":"asType(java.lang.Class)"},{"p":"javax.measure.test.unit","c":"DistanceUnit","l":"AU"},{"p":"javax.measure.test.unit","c":"BaseUnit","l":"BaseUnit(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"javax.measure.test.unit","c":"BaseUnit","l":"BaseUnit(String, double)","u":"%3Cinit%3E(java.lang.String,double)"},{"p":"javax.measure.test.unit","c":"BaseUnit","l":"BaseUnit(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"javax.measure.test","c":"BinaryPrefixTest","l":"BinaryPrefixTest()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.unit","c":"VolumeUnit","l":"bushel"},{"p":"javax.measure.test","c":"CalcTripLength","l":"CalcTripLength()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.unit","c":"VolumeUnit","l":"cc"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"CELSIUS"},{"p":"javax.measure.test","c":"CircleInfo","l":"CircleInfo()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.quantity","c":"CircleInfo","l":"CircleInfo()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.unit","c":"DistanceUnit","l":"cm"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"compareTo(Quantity<Q>)","u":"compareTo(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"compareTo(Quantity<Temperature>)","u":"compareTo(javax.measure.Quantity)"},{"p":"javax.measure.test.function","c":"MultiplyConverter","l":"compareTo(UnitConverter)","u":"compareTo(javax.measure.UnitConverter)"},{"p":"javax.measure.test","c":"TestConverter","l":"concatenate(TestConverter)","u":"concatenate(javax.measure.test.TestConverter)"},{"p":"javax.measure.test.function","c":"MultiplyConverter","l":"concatenate(UnitConverter)","u":"concatenate(javax.measure.UnitConverter)"},{"p":"javax.measure.test","c":"TestConverter","l":"concatenate(UnitConverter)","u":"concatenate(javax.measure.UnitConverter)"},{"p":"javax.measure.test","c":"Conversions","l":"Conversions()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"convert(AreaUnit)","u":"convert(javax.measure.test.unit.AreaUnit)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"convert(DistanceUnit)","u":"convert(javax.measure.test.unit.DistanceUnit)"},{"p":"javax.measure.test.function","c":"MultiplyConverter","l":"convert(double)"},{"p":"javax.measure.test","c":"TestConverter","l":"convert(double)"},{"p":"javax.measure.test","c":"TestConverter.Pair","l":"convert(double)"},{"p":"javax.measure.test","c":"TestConverter","l":"convert(Number)","u":"convert(java.lang.Number)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"convert(TemperatureUnit)","u":"convert(javax.measure.test.unit.TemperatureUnit)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"convert(TimeUnit)","u":"convert(javax.measure.test.unit.TimeUnit)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"convert(VolumeUnit)","u":"convert(javax.measure.test.unit.VolumeUnit)"},{"p":"javax.measure.test","c":"ConverterTest","l":"ConverterTest()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.unit","c":"VolumeUnit","l":"cumetre"},{"p":"javax.measure.test.unit","c":"VolumeUnit","l":"cumile"},{"p":"javax.measure.test","c":"DimensionTest","l":"DimensionTest()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"DistanceQuantity()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"DistanceQuantity(double, DistanceUnit)","u":"%3Cinit%3E(double,javax.measure.test.unit.DistanceUnit)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"DistanceQuantity(Number, Unit)","u":"%3Cinit%3E(java.lang.Number,javax.measure.Unit)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantityTest","l":"DistanceQuantityTest()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.unit","c":"DistanceUnit","l":"DistanceUnit(String, DistanceUnit, double)","u":"%3Cinit%3E(java.lang.String,javax.measure.test.unit.DistanceUnit,double)"},{"p":"javax.measure.test.unit","c":"DistanceUnit","l":"DistanceUnit(String, double)","u":"%3Cinit%3E(java.lang.String,double)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"divide(AreaQuantity)","u":"divide(javax.measure.test.quantity.AreaQuantity)"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"divide(DistanceQuantity)","u":"divide(javax.measure.test.quantity.DistanceQuantity)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"divide(DistanceQuantity)","u":"divide(javax.measure.test.quantity.DistanceQuantity)"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"divide(double)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"divide(double)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"divide(double)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"divide(double)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"divide(double)"},{"p":"javax.measure.test","c":"TestUnit","l":"divide(double)"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"divide(Number)","u":"divide(java.lang.Number)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"divide(Number)","u":"divide(java.lang.Number)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"divide(Number)","u":"divide(java.lang.Number)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"divide(Number)","u":"divide(java.lang.Number)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"divide(Number)","u":"divide(java.lang.Number)"},{"p":"javax.measure.test","c":"TestUnit","l":"divide(Number)","u":"divide(java.lang.Number)"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"divide(Quantity<?>)","u":"divide(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"divide(Quantity<?>)","u":"divide(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"divide(Quantity<?>)","u":"divide(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"divide(Quantity<?>)","u":"divide(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"divide(Quantity<?>)","u":"divide(javax.measure.Quantity)"},{"p":"javax.measure.test","c":"TestUnit","l":"divide(Unit<?>)","u":"divide(javax.measure.Unit)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"doubleValue(Unit<Temperature>)","u":"doubleValue(javax.measure.Unit)"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"eq(AreaQuantity)","u":"eq(javax.measure.test.quantity.AreaQuantity)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"eq(DistanceQuantity)","u":"eq(javax.measure.test.quantity.DistanceQuantity)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"eq(TemperatureQuantity)","u":"eq(javax.measure.test.quantity.TemperatureQuantity)"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"eq(TestQuantity<Q>)","u":"eq(javax.measure.test.quantity.TestQuantity)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"eq(TestQuantity<Temperature>)","u":"eq(javax.measure.test.quantity.TestQuantity)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"eq(TimeQuantity)","u":"eq(javax.measure.test.quantity.TimeQuantity)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"eq(VolumeQuantity)","u":"eq(javax.measure.test.quantity.VolumeQuantity)"},{"p":"javax.measure.test.function","c":"MultiplyConverter","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"javax.measure.test","c":"TestConverter","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"javax.measure.test","c":"TestConverter.Pair","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"javax.measure.test.unit","c":"BaseUnit","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"javax.measure.test","c":"ExceptionsTest","l":"ExceptionsTest()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"FAHRENHEIT"},{"p":"javax.measure.test.format","c":"SimpleTestUnitFormat","l":"format(Unit<?>)","u":"format(javax.measure.Unit)"},{"p":"javax.measure.test.format","c":"SimpleTestUnitFormat","l":"format(Unit<?>, Appendable)","u":"format(javax.measure.Unit,java.lang.Appendable)"},{"p":"javax.measure.spi","c":"FormatServiceTest","l":"FormatServiceTest()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.unit","c":"MassUnit","l":"g"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"ge(AreaQuantity)","u":"ge(javax.measure.test.quantity.AreaQuantity)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"ge(DistanceQuantity)","u":"ge(javax.measure.test.quantity.DistanceQuantity)"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"ge(TestQuantity<Q>)","u":"ge(javax.measure.test.quantity.TestQuantity)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"ge(TimeQuantity)","u":"ge(javax.measure.test.quantity.TimeQuantity)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"ge(VolumeQuantity)","u":"ge(javax.measure.test.quantity.VolumeQuantity)"},{"p":"javax.measure.test.format","c":"SimpleTestUnitFormat","l":"geInstance()"},{"p":"javax.measure.test","c":"TestUnit","l":"getBaseUnits()"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"getBySymbol(String)","u":"getBySymbol(java.lang.String)"},{"p":"javax.measure.test","c":"TestConverter","l":"getConversionSteps()"},{"p":"javax.measure.test","c":"TestConverter.Pair","l":"getConversionSteps()"},{"p":"javax.measure.test","c":"TestUnit","l":"getConverterTo(Unit<Q>)","u":"getConverterTo(javax.measure.Unit)"},{"p":"javax.measure.test","c":"TestUnit","l":"getConverterToAny(Unit<?>)","u":"getConverterToAny(javax.measure.Unit)"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"getDescription()"},{"p":"javax.measure.test","c":"TestUnit","l":"getDimension()"},{"p":"javax.measure.test","c":"TripLeg","l":"getDist()"},{"p":"javax.measure.test.function","c":"MultiplyConverter","l":"getFactor()"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"getFactor()"},{"p":"javax.measure.test.format","c":"SimpleTestUnitFormat","l":"getInstance()"},{"p":"javax.measure.test","c":"TestConverter.Pair","l":"getLeft()"},{"p":"javax.measure.test","c":"TestUnit","l":"getMultFactor()"},{"p":"javax.measure.test","c":"TestUnit","l":"getName()"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"getName()"},{"p":"javax.measure.test.quantity","c":"TestQuantities","l":"getQuantity(Number, Unit<Q>)","u":"getQuantity(java.lang.Number,javax.measure.Unit)"},{"p":"javax.measure.test","c":"TestConverter.Pair","l":"getRight()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"getScalar()"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"getScale()"},{"p":"javax.measure.test","c":"TestUnit","l":"getSymbol()"},{"p":"javax.measure.test.unit","c":"BaseUnit","l":"getSymbol()"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"getSymbol()"},{"p":"javax.measure.test","c":"TestUnit","l":"getSystemConverter()"},{"p":"javax.measure.test","c":"TestUnit","l":"getSystemUnit()"},{"p":"javax.measure.test.unit","c":"AreaUnit","l":"getSystemUnit()"},{"p":"javax.measure.test.unit","c":"BaseUnit","l":"getSystemUnit()"},{"p":"javax.measure.test.unit","c":"DistanceUnit","l":"getSystemUnit()"},{"p":"javax.measure.test.unit","c":"MassUnit","l":"getSystemUnit()"},{"p":"javax.measure.test.unit","c":"SpeedUnit","l":"getSystemUnit()"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"getSystemUnit()"},{"p":"javax.measure.test.unit","c":"TimeUnit","l":"getSystemUnit()"},{"p":"javax.measure.test.unit","c":"VolumeUnit","l":"getSystemUnit()"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"getType()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"getUnit()"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"getUnit()"},{"p":"javax.measure.test.function","c":"MultiplyConverter","l":"getValue()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"getValue()"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"getValue()"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"gt(AreaQuantity)","u":"gt(javax.measure.test.quantity.AreaQuantity)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"gt(DistanceQuantity)","u":"gt(javax.measure.test.quantity.DistanceQuantity)"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"gt(TestQuantity<Q>)","u":"gt(javax.measure.test.quantity.TestQuantity)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"gt(TimeQuantity)","u":"gt(javax.measure.test.quantity.TimeQuantity)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"gt(VolumeQuantity)","u":"gt(javax.measure.test.quantity.VolumeQuantity)"},{"p":"javax.measure.test.unit","c":"TimeUnit","l":"h"},{"p":"javax.measure.test.function","c":"MultiplyConverter","l":"hashCode()"},{"p":"javax.measure.test","c":"TestConverter","l":"hashCode()"},{"p":"javax.measure.test","c":"TestConverter.Pair","l":"hashCode()"},{"p":"javax.measure.test.unit","c":"BaseUnit","l":"hashCode()"},{"p":"javax.measure.test.unit","c":"AreaUnit","l":"hectare"},{"p":"javax.measure.test","c":"TestConverter","l":"IDENTITY"},{"p":"javax.measure.test.unit","c":"DistanceUnit","l":"in"},{"p":"javax.measure.test","c":"ConverterTest","l":"init()"},{"p":"javax.measure.test","c":"DimensionTest","l":"init()"},{"p":"javax.measure.test.format","c":"QuantityFormatTest","l":"init()"},{"p":"javax.measure.test.format","c":"UnitFormatTest","l":"init()"},{"p":"javax.measure.test","c":"UnitTest","l":"init()"},{"p":"javax.measure.test.function","c":"MultiplyConverter","l":"inverse()"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"inverse()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"inverse()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"inverse()"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"inverse()"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"inverse()"},{"p":"javax.measure.test","c":"TestConverter","l":"inverse()"},{"p":"javax.measure.test","c":"TestConverter.Pair","l":"inverse()"},{"p":"javax.measure.test","c":"TestUnit","l":"inverse()"},{"p":"javax.measure.test","c":"TestUnit","l":"isCompatible(Unit<?>)","u":"isCompatible(javax.measure.Unit)"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"isCompatible(Unit<?>)","u":"isCompatible(javax.measure.Unit)"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"isEquivalentTo(Quantity<Q>)","u":"isEquivalentTo(javax.measure.Quantity)"},{"p":"javax.measure.test","c":"TestUnit","l":"isEquivalentTo(Unit<Q>)","u":"isEquivalentTo(javax.measure.Unit)"},{"p":"javax.measure.test","c":"TestConverter","l":"isIdentity()"},{"p":"javax.measure.test","c":"TestConverter.Pair","l":"isIdentity()"},{"p":"javax.measure.test.function","c":"MultiplyConverter","l":"isLinear()"},{"p":"javax.measure.test","c":"TestConverter.Pair","l":"isLinear()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"isZero()"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"KELVIN"},{"p":"javax.measure.test.unit","c":"MassUnit","l":"kg"},{"p":"javax.measure.test.unit","c":"DistanceUnit","l":"km"},{"p":"javax.measure.test.unit","c":"SpeedUnit","l":"kmh"},{"p":"javax.measure.test.format","c":"SimpleTestUnitFormat","l":"label(Unit<?>, String)","u":"label(javax.measure.Unit,java.lang.String)"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"le(AreaQuantity)","u":"le(javax.measure.test.quantity.AreaQuantity)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"le(DistanceQuantity)","u":"le(javax.measure.test.quantity.DistanceQuantity)"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"le(TestQuantity<Q>)","u":"le(javax.measure.test.quantity.TestQuantity)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"le(TimeQuantity)","u":"le(javax.measure.test.quantity.TimeQuantity)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"le(VolumeQuantity)","u":"le(javax.measure.test.quantity.VolumeQuantity)"},{"p":"javax.measure.test.unit","c":"VolumeUnit","l":"litre"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"lt(AreaQuantity)","u":"lt(javax.measure.test.quantity.AreaQuantity)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"lt(DistanceQuantity)","u":"lt(javax.measure.test.quantity.DistanceQuantity)"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"lt(TestQuantity<Q>)","u":"lt(javax.measure.test.quantity.TestQuantity)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"lt(TimeQuantity)","u":"lt(javax.measure.test.quantity.TimeQuantity)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"lt(VolumeQuantity)","u":"lt(javax.measure.test.quantity.VolumeQuantity)"},{"p":"javax.measure.test.unit","c":"DistanceUnit","l":"m"},{"p":"javax.measure.test","c":"CalcTripLength","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"javax.measure.test","c":"CircleInfo","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"javax.measure.test","c":"Conversions","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"javax.measure.test.quantity","c":"CircleInfo","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"javax.measure.test.unit","c":"MassUnit","l":"MassUnit(String, double)","u":"%3Cinit%3E(java.lang.String,double)"},{"p":"javax.measure.test.format","c":"MeasurementParseTest","l":"MeasurementParseTest()","u":"%3Cinit%3E()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"MetricPrefixTest()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.unit","c":"DistanceUnit","l":"mile"},{"p":"javax.measure.test.unit","c":"TimeUnit","l":"min"},{"p":"javax.measure.test.unit","c":"SpeedUnit","l":"mph"},{"p":"javax.measure.test","c":"TestUnit","l":"multFactor"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"multiply(AreaQuantity)","u":"multiply(javax.measure.test.quantity.AreaQuantity)"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"multiply(DistanceQuantity)","u":"multiply(javax.measure.test.quantity.DistanceQuantity)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"multiply(DistanceQuantity)","u":"multiply(javax.measure.test.quantity.DistanceQuantity)"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"multiply(double)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"multiply(double)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"multiply(double)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"multiply(double)"},{"p":"javax.measure.test","c":"TestUnit","l":"multiply(double)"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"multiply(double)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"multiply(Length)","u":"multiply(javax.measure.quantity.Length)"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"multiply(Number)","u":"multiply(java.lang.Number)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"multiply(Number)","u":"multiply(java.lang.Number)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"multiply(Number)","u":"multiply(java.lang.Number)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"multiply(Number)","u":"multiply(java.lang.Number)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"multiply(Number)","u":"multiply(java.lang.Number)"},{"p":"javax.measure.test","c":"TestUnit","l":"multiply(Number)","u":"multiply(java.lang.Number)"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"multiply(Quantity<?>)","u":"multiply(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"multiply(Quantity<?>)","u":"multiply(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"multiply(Quantity<?>)","u":"multiply(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"multiply(Quantity<?>)","u":"multiply(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"multiply(Quantity<?>)","u":"multiply(javax.measure.Quantity)"},{"p":"javax.measure.test","c":"TestUnit","l":"multiply(Unit<?>)","u":"multiply(javax.measure.Unit)"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"multiply(Unit<?>)","u":"multiply(javax.measure.Unit)"},{"p":"javax.measure.test.function","c":"MultiplyConverter","l":"MultiplyConverter(double)","u":"%3Cinit%3E(double)"},{"p":"javax.measure.test.function","c":"MultiplyConverter","l":"MultiplyConverter(Number)","u":"%3Cinit%3E(java.lang.Number)"},{"p":"javax.measure.test","c":"TestUnit","l":"name"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"ne(AreaQuantity)","u":"ne(javax.measure.test.quantity.AreaQuantity)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"ne(DistanceQuantity)","u":"ne(javax.measure.test.quantity.DistanceQuantity)"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"ne(TestQuantity<Q>)","u":"ne(javax.measure.test.quantity.TestQuantity)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"ne(TimeQuantity)","u":"ne(javax.measure.test.quantity.TimeQuantity)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"ne(VolumeQuantity)","u":"ne(javax.measure.test.quantity.VolumeQuantity)"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"negate()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"negate()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"negate()"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"negate()"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"negate()"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"ONE"},{"p":"javax.measure.test","c":"TestUnit","l":"ONE"},{"p":"javax.measure.test","c":"TestConverter.Pair","l":"Pair(UnitConverter, UnitConverter)","u":"%3Cinit%3E(javax.measure.UnitConverter,javax.measure.UnitConverter)"},{"p":"javax.measure.test.format","c":"SimpleTestUnitFormat","l":"parse(CharSequence)","u":"parse(java.lang.CharSequence)"},{"p":"javax.measure.test.format","c":"SimpleTestUnitFormat","l":"parse(CharSequence, int)","u":"parse(java.lang.CharSequence,int)"},{"p":"javax.measure.test.format","c":"SimpleTestUnitFormat","l":"parse(CharSequence, ParsePosition)","u":"parse(java.lang.CharSequence,java.text.ParsePosition)"},{"p":"javax.measure.test.unit","c":"DistanceUnit","l":"parsec"},{"p":"javax.measure.test","c":"TestUnit","l":"pow(int)"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"pow(int)"},{"p":"javax.measure.test","c":"TestUnit","l":"prefix(Prefix)","u":"prefix(javax.measure.Prefix)"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"prefix(Prefix)","u":"prefix(javax.measure.Prefix)"},{"p":"javax.measure.test.format","c":"QuantityFormatTest","l":"QuantityFormatTest()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"RANKINE"},{"p":"javax.measure.test.unit","c":"AreaUnit","l":"REF_UNIT"},{"p":"javax.measure.test.unit","c":"DistanceUnit","l":"REF_UNIT"},{"p":"javax.measure.test.unit","c":"MassUnit","l":"REF_UNIT"},{"p":"javax.measure.test.unit","c":"SpeedUnit","l":"REF_UNIT"},{"p":"javax.measure.test.unit","c":"TimeUnit","l":"REF_UNIT"},{"p":"javax.measure.test.unit","c":"VolumeUnit","l":"REF_UNIT"},{"p":"javax.measure.test","c":"TestUnit","l":"root(int)"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"root(int)"},{"p":"javax.measure.test.unit","c":"TimeUnit","l":"s"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"scalar"},{"p":"javax.measure.spi","c":"ServiceProviderTest","l":"ServiceProviderTest()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"setUp()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantityTest","l":"setUp()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"setUp()"},{"p":"javax.measure.test","c":"TestUnit","l":"shift(double)"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"shift(double)"},{"p":"javax.measure.test","c":"TestUnit","l":"shift(Number)","u":"shift(java.lang.Number)"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"showInUnits(AreaUnit, int)","u":"showInUnits(javax.measure.test.unit.AreaUnit,int)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"showInUnits(DistanceUnit, int)","u":"showInUnits(javax.measure.test.unit.DistanceUnit,int)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"showInUnits(DistanceUnit, int)","u":"showInUnits(javax.measure.test.unit.DistanceUnit,int)"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"showInUnits(TestUnit<?>, int)","u":"showInUnits(javax.measure.test.TestUnit,int)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"showInUnits(VolumeUnit, int)","u":"showInUnits(javax.measure.test.unit.VolumeUnit,int)"},{"p":"javax.measure.test.unit","c":"SpeedUnit","l":"SpeedUnit(String, double)","u":"%3Cinit%3E(java.lang.String,double)"},{"p":"javax.measure.test.unit","c":"AreaUnit","l":"sqmetre"},{"p":"javax.measure.test.unit","c":"AreaUnit","l":"sqmile"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"subtract(AreaQuantity)","u":"subtract(javax.measure.test.quantity.AreaQuantity)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"subtract(DistanceQuantity)","u":"subtract(javax.measure.test.quantity.DistanceQuantity)"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"subtract(Quantity<Area>)","u":"subtract(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"subtract(Quantity<Length>)","u":"subtract(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"subtract(Quantity<Temperature>)","u":"subtract(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"subtract(Quantity<Time>)","u":"subtract(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"subtract(Quantity<Volume>)","u":"subtract(javax.measure.Quantity)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"subtract(TemperatureQuantity)","u":"subtract(javax.measure.test.quantity.TemperatureQuantity)"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"subtract(TestQuantity<Q>, TestQuantity<Q>, TestQuantity<Q>, TestUnit<Q>)","u":"subtract(javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.quantity.TestQuantity,javax.measure.test.TestUnit)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"subtract(TimeQuantity)","u":"subtract(javax.measure.test.quantity.TimeQuantity)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"subtract(VolumeQuantity)","u":"subtract(javax.measure.test.quantity.VolumeQuantity)"},{"p":"javax.measure.test","c":"TestUnit","l":"symbol"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"TemperatureQuantity(double, TemperatureUnit)","u":"%3Cinit%3E(double,javax.measure.test.unit.TemperatureUnit)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"TemperatureQuantity(Number, Unit)","u":"%3Cinit%3E(java.lang.Number,javax.measure.Unit)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"TemperatureQuantity(Quantity.Scale)","u":"%3Cinit%3E(javax.measure.Quantity.Scale)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"TemperatureQuantityTest()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"TemperatureUnit(double, double, TemperatureUnit, double, double, String, String)","u":"%3Cinit%3E(double,double,javax.measure.test.unit.TemperatureUnit,double,double,java.lang.String,java.lang.String)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantityTest","l":"testAbsolute()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"testAbsolute()"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"testAdd()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantityTest","l":"testAdd()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"testAdd()"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"testAreaQuantity()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantityTest","l":"testAreaQuantity()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testAtto()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testCenti()"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"testConvert()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantityTest","l":"testConvert()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"testConvert()"},{"p":"javax.measure.test","c":"TestConverter","l":"TestConverter()","u":"%3Cinit%3E()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testDeca()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testDeci()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testDeka()"},{"p":"javax.measure.test","c":"DimensionTest","l":"testDivide()"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"testDivideDistanceQuantity()"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"testDivideDouble()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantityTest","l":"testDivideDouble()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"testDivideDouble()"},{"p":"javax.measure.test","c":"UnitTest","l":"testDivideNull()"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"testEq()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantityTest","l":"testEq()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"testEq()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testExa()"},{"p":"javax.measure.test","c":"BinaryPrefixTest","l":"testExbi()"},{"p":"javax.measure.test.format","c":"MeasurementParseTest","l":"testExceptionWithMessage()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testFemto()"},{"p":"javax.measure.test.format","c":"UnitFormatTest","l":"testFormatFromQuantity()"},{"p":"javax.measure.test.format","c":"UnitFormatTest","l":"testFormatKph()"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"testGe()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantityTest","l":"testGe()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"testGe()"},{"p":"javax.measure.spi","c":"ServiceProviderTest","l":"testGetAndSetCurrent()"},{"p":"javax.measure.spi","c":"ServiceProviderTest","l":"testGetBinaryPrefixes()"},{"p":"javax.measure.test","c":"UnitTest","l":"testGetConverterTo()"},{"p":"javax.measure.test","c":"UnitTest","l":"testGetDimension()"},{"p":"javax.measure.test","c":"DimensionTest","l":"testGetInstance()"},{"p":"javax.measure.spi","c":"ServiceProviderTest","l":"testGetMetricPrefixes()"},{"p":"javax.measure.test","c":"DimensionTest","l":"testGetProductDimensions()"},{"p":"javax.measure.test","c":"UnitTest","l":"testGetSymbol()"},{"p":"javax.measure.spi","c":"FormatServiceTest","l":"testGetUnitFormats()"},{"p":"javax.measure.test","c":"BinaryPrefixTest","l":"testGibi()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testGiga()"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"testGt()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantityTest","l":"testGt()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"testGt()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testHecto()"},{"p":"javax.measure.test","c":"ConverterTest","l":"testIdentity()"},{"p":"javax.measure.test","c":"ExceptionsTest","l":"testIncommensurableException()"},{"p":"javax.measure.test","c":"ExceptionsTest","l":"testIncommensurableExceptionWithCause()"},{"p":"javax.measure.test","c":"ExceptionsTest","l":"testIncommensurableExceptionWithMessageAndCause()"},{"p":"javax.measure.test","c":"UnitTest","l":"testIsCompatible()"},{"p":"javax.measure.test","c":"UnitTest","l":"testIsEquivalentTo()"},{"p":"javax.measure.test","c":"BinaryPrefixTest","l":"testKibi()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testKilo()"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"testLe()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantityTest","l":"testLe()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"testLe()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"testLevelCelsius()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"testLevelFahrenheit()"},{"p":"javax.measure.test","c":"ConverterTest","l":"testLinear()"},{"p":"javax.measure.test.format","c":"QuantityFormatTest","l":"testLocalSensitive()"},{"p":"javax.measure.test.format","c":"UnitFormatTest","l":"testLocalSensitive()"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"testLt()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantityTest","l":"testLt()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"testLt()"},{"p":"javax.measure.test","c":"ExceptionsTest","l":"testMeasurementError()"},{"p":"javax.measure.test","c":"ExceptionsTest","l":"testMeasurementErrorWithCause()"},{"p":"javax.measure.test","c":"ExceptionsTest","l":"testMeasurementErrorWithMessage()"},{"p":"javax.measure.test","c":"ExceptionsTest","l":"testMeasurementErrorWithMessageAndCause()"},{"p":"javax.measure.test","c":"ExceptionsTest","l":"testMeasurementException()"},{"p":"javax.measure.test","c":"ExceptionsTest","l":"testMeasurementExceptionWithCause()"},{"p":"javax.measure.test","c":"ExceptionsTest","l":"testMeasurementExceptionWithMessage()"},{"p":"javax.measure.test","c":"ExceptionsTest","l":"testMeasurementExceptionWithMessageAndCause()"},{"p":"javax.measure.test","c":"BinaryPrefixTest","l":"testMebi()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testMega()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testMicro()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testMilli()"},{"p":"javax.measure.test.format","c":"UnitFormatTest","l":"testMoreLocalSensitive()"},{"p":"javax.measure.test","c":"DimensionTest","l":"testMultiply()"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"testMultiplyDistanceQuantity()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantityTest","l":"testMultiplyDistanceQuantity()"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"testMultiplyDouble()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantityTest","l":"testMultiplyDouble()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"testMultiplyDouble()"},{"p":"javax.measure.test","c":"UnitTest","l":"testMultiplyNull()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testNano()"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"testNegate()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantityTest","l":"testNegate()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"testNegate()"},{"p":"javax.measure.spi","c":"ServiceProviderTest","l":"testOfNonExistent()"},{"p":"javax.measure.spi","c":"ServiceProviderTest","l":"testOfNull()"},{"p":"javax.measure.test.format","c":"MeasurementParseTest","l":"testOldExceptionWithCause()"},{"p":"javax.measure.test.format","c":"MeasurementParseTest","l":"testOldExceptionWithMessageAndPos()"},{"p":"javax.measure.test.format","c":"MeasurementParseTest","l":"testOldExceptionWithMessageDataAndPos()"},{"p":"javax.measure.test.format","c":"QuantityFormatTest","l":"testParseIrregularString()"},{"p":"javax.measure.test.format","c":"UnitFormatTest","l":"testParseIrregularString()"},{"p":"javax.measure.test.format","c":"QuantityFormatTest","l":"testParserException()"},{"p":"javax.measure.test.format","c":"UnitFormatTest","l":"testParserException()"},{"p":"javax.measure.test.format","c":"QuantityFormatTest","l":"testParserExceptionWithNullString()"},{"p":"javax.measure.test.format","c":"UnitFormatTest","l":"testParserExceptionWithNullString()"},{"p":"javax.measure.test.format","c":"QuantityFormatTest","l":"testParserExceptionWithPosition()"},{"p":"javax.measure.test.format","c":"UnitFormatTest","l":"testParserExceptionWithPosition()"},{"p":"javax.measure.test.format","c":"QuantityFormatTest","l":"testParseSimple()"},{"p":"javax.measure.test.format","c":"UnitFormatTest","l":"testParseSimple()"},{"p":"javax.measure.test","c":"BinaryPrefixTest","l":"testPebi()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testPeta()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testPico()"},{"p":"javax.measure.test","c":"DimensionTest","l":"testPow()"},{"p":"javax.measure.spi","c":"ServiceProviderTest","l":"testPriority()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"testQuantity()"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"TestQuantity(Class<Q>)","u":"%3Cinit%3E(java.lang.Class)"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"TestQuantity(Class<Q>, Quantity.Scale)","u":"%3Cinit%3E(java.lang.Class,javax.measure.Quantity.Scale)"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testQuecto()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testQuetta()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testRonna()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testRonto()"},{"p":"javax.measure.test","c":"DimensionTest","l":"testRoot()"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"testScale()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"testScale()"},{"p":"javax.measure.spi","c":"ServiceProviderTest","l":"testSetCurrentNull()"},{"p":"javax.measure.test","c":"UnitTest","l":"testShiftNull()"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"testShowInUnits()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantityTest","l":"testShowInUnits()"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"testSubtract()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantityTest","l":"testSubtract()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"testSubtract()"},{"p":"javax.measure.test","c":"BinaryPrefixTest","l":"testTebi()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testTera()"},{"p":"javax.measure.test.quantity","c":"AreaQuantityTest","l":"testToSystemUnit()"},{"p":"javax.measure.test.quantity","c":"DistanceQuantityTest","l":"testToSystemUnit()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantityTest","l":"testToSystemUnit()"},{"p":"javax.measure.spi","c":"FormatServiceTest","l":"testTypes()"},{"p":"javax.measure.test","c":"ExceptionsTest","l":"testUnconvertibleException()"},{"p":"javax.measure.test","c":"ExceptionsTest","l":"testUnconvertibleExceptionWithCause()"},{"p":"javax.measure.test","c":"ExceptionsTest","l":"testUnconvertibleExceptionWithMessageAndCause()"},{"p":"javax.measure.test","c":"TestUnit","l":"TestUnit()","u":"%3Cinit%3E()"},{"p":"javax.measure.test","c":"TestUnit","l":"TestUnit(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"javax.measure.test","c":"TestUnit","l":"TestUnit(String, double)","u":"%3Cinit%3E(java.lang.String,double)"},{"p":"javax.measure.spi","c":"ServiceProviderTest","l":"testWrongEnumType()"},{"p":"javax.measure.spi","c":"ServiceProviderTest","l":"testWrongPrefixType()"},{"p":"javax.measure.test","c":"BinaryPrefixTest","l":"testYobi()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testYocto()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testYotta()"},{"p":"javax.measure.test","c":"BinaryPrefixTest","l":"testZebi()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testZepto()"},{"p":"javax.measure.test","c":"MetricPrefixTest","l":"testZetta()"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"TimeQuantity()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"TimeQuantity(double, TimeUnit)","u":"%3Cinit%3E(double,javax.measure.test.unit.TimeUnit)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"TimeQuantity(Number, Unit)","u":"%3Cinit%3E(java.lang.Number,javax.measure.Unit)"},{"p":"javax.measure.test.unit","c":"TimeUnit","l":"TimeUnit(String, double)","u":"%3Cinit%3E(java.lang.String,double)"},{"p":"javax.measure.test.quantity","c":"AreaQuantity","l":"to(Unit<Area>)","u":"to(javax.measure.Unit)"},{"p":"javax.measure.test.quantity","c":"DistanceQuantity","l":"to(Unit<Length>)","u":"to(javax.measure.Unit)"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"to(Unit<Temperature>)","u":"to(javax.measure.Unit)"},{"p":"javax.measure.test.quantity","c":"TimeQuantity","l":"to(Unit<Time>)","u":"to(javax.measure.Unit)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"to(Unit<Volume>)","u":"to(javax.measure.Unit)"},{"p":"javax.measure.test.function","c":"MultiplyConverter","l":"toString()"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"toString()"},{"p":"javax.measure.test","c":"TestUnit","l":"toString()"},{"p":"javax.measure.test.quantity","c":"TemperatureQuantity","l":"toString(boolean, boolean, int)","u":"toString(boolean,boolean,int)"},{"p":"javax.measure.test","c":"TestUnit","l":"transform(UnitConverter)","u":"transform(javax.measure.UnitConverter)"},{"p":"javax.measure.test.unit","c":"TemperatureUnit","l":"transform(UnitConverter)","u":"transform(javax.measure.UnitConverter)"},{"p":"javax.measure.test","c":"TripLeg","l":"TripLeg(String, String, DistanceQuantity)","u":"%3Cinit%3E(java.lang.String,java.lang.String,javax.measure.test.quantity.DistanceQuantity)"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"unit"},{"p":"javax.measure.test.format","c":"UnitFormatTest","l":"UnitFormatTest()","u":"%3Cinit%3E()"},{"p":"javax.measure.test","c":"UnitTest","l":"UnitTest()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.quantity","c":"TestQuantity","l":"value"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"VolumeQuantity()","u":"%3Cinit%3E()"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"VolumeQuantity(double, VolumeUnit)","u":"%3Cinit%3E(double,javax.measure.test.unit.VolumeUnit)"},{"p":"javax.measure.test.quantity","c":"VolumeQuantity","l":"VolumeQuantity(Number, Unit)","u":"%3Cinit%3E(java.lang.Number,javax.measure.Unit)"},{"p":"javax.measure.test.unit","c":"VolumeUnit","l":"VolumeUnit(String, double)","u":"%3Cinit%3E(java.lang.String,double)"}];updateSearchResults();
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/member-search-index.zip b/docs/site/testapidocs/member-search-index.zip
      new file mode 100644
      index 00000000..bf5193bd
      Binary files /dev/null and b/docs/site/testapidocs/member-search-index.zip differ
      diff --git a/docs/site/testapidocs/module-search-index.js b/docs/site/testapidocs/module-search-index.js
      new file mode 100644
      index 00000000..0d59754f
      --- /dev/null
      +++ b/docs/site/testapidocs/module-search-index.js
      @@ -0,0 +1 @@
      +moduleSearchIndex = [];updateSearchResults();
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/overview-summary.html b/docs/site/testapidocs/overview-summary.html
      new file mode 100644
      index 00000000..98454174
      --- /dev/null
      +++ b/docs/site/testapidocs/overview-summary.html
      @@ -0,0 +1,26 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Units of Measurement API 2.2.1-SNAPSHOT Test API</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="index redirect">
      +<meta name="generator" content="javadoc/IndexRedirectWriter">
      +<link rel="canonical" href="index.html">
      +<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
      +<script type="text/javascript">window.location.replace('index.html')</script>
      +<noscript>
      +<meta http-equiv="Refresh" content="0;index.html">
      +</noscript>
      +</head>
      +<body class="index-redirect-page">
      +<main role="main">
      +<noscript>
      +<p>JavaScript is disabled on your browser.</p>
      +</noscript>
      +<p><a href="index.html">index.html</a></p>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/overview-tree.html b/docs/site/testapidocs/overview-tree.html
      new file mode 100644
      index 00000000..410e3664
      --- /dev/null
      +++ b/docs/site/testapidocs/overview-tree.html
      @@ -0,0 +1,131 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) on Wed Nov 01 21:03:22 CET 2023 -->
      +<title>Class Hierarchy (Units of Measurement API 2.2.1-SNAPSHOT Test API)</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2023-11-01">
      +<meta name="description" content="class tree">
      +<meta name="generator" content="javadoc/TreeWriter">
      +<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.min.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
      +<script type="text/javascript" src="script.js"></script>
      +<script type="text/javascript" src="script-dir/jquery-3.6.0.min.js"></script>
      +<script type="text/javascript" src="script-dir/jquery-ui.min.js"></script>
      +</head>
      +<body class="tree-page">
      +<script type="text/javascript">var pathtoroot = "./";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<div class="flex-box">
      +<header role="banner" class="flex-header">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="top-nav" id="navbar-top">
      +<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
      +<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
      +<li><a href="index.html">Overview</a></li>
      +<li>Package</li>
      +<li>Class</li>
      +<li>Use</li>
      +<li class="nav-bar-cell1-rev">Tree</li>
      +<li><a href="index-all.html">Index</a></li>
      +<li><a href="help-doc.html#tree">Help</a></li>
      +</ul>
      +</div>
      +<div class="sub-nav">
      +<div class="nav-list-search"><label for="search-input">SEARCH:</label>
      +<input type="text" id="search-input" value="search" disabled="disabled">
      +<input type="reset" id="reset-button" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<span class="skip-nav" id="skip-navbar-top"></span></nav>
      +</header>
      +<div class="flex-content">
      +<main role="main">
      +<div class="header">
      +<h1 class="title">Hierarchy For All Packages</h1>
      +<span class="package-hierarchy-label">Package Hierarchies:</span>
      +<ul class="horizontal">
      +<li><a href="javax/measure/spi/package-tree.html">javax.measure.spi</a>, </li>
      +<li><a href="javax/measure/test/package-tree.html">javax.measure.test</a>, </li>
      +<li><a href="javax/measure/test/format/package-tree.html">javax.measure.test.format</a>, </li>
      +<li><a href="javax/measure/test/function/package-tree.html">javax.measure.test.function</a>, </li>
      +<li><a href="javax/measure/test/quantity/package-tree.html">javax.measure.test.quantity</a>, </li>
      +<li><a href="javax/measure/test/unit/package-tree.html">javax.measure.test.unit</a></li>
      +</ul>
      +</div>
      +<section class="hierarchy">
      +<h2 title="Class Hierarchy">Class Hierarchy</h2>
      +<ul>
      +<li class="circle"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" class="type-name-link external-link" title="class or interface in java.lang">Object</a>
      +<ul>
      +<li class="circle"><a href="javax/measure/test/quantity/AreaQuantityTest.html" class="type-name-link" title="class in javax.measure.test.quantity">AreaQuantityTest</a></li>
      +<li class="circle"><a href="javax/measure/test/BinaryPrefixTest.html" class="type-name-link" title="class in javax.measure.test">BinaryPrefixTest</a></li>
      +<li class="circle"><a href="javax/measure/test/CalcTripLength.html" class="type-name-link" title="class in javax.measure.test">CalcTripLength</a></li>
      +<li class="circle"><a href="javax/measure/test/CircleInfo.html" class="type-name-link" title="class in javax.measure.test">CircleInfo</a></li>
      +<li class="circle"><a href="javax/measure/test/quantity/CircleInfo.html" class="type-name-link" title="class in javax.measure.test.quantity">CircleInfo</a></li>
      +<li class="circle"><a href="javax/measure/test/Conversions.html" class="type-name-link" title="class in javax.measure.test">Conversions</a></li>
      +<li class="circle"><a href="javax/measure/test/ConverterTest.html" class="type-name-link" title="class in javax.measure.test">ConverterTest</a></li>
      +<li class="circle"><a href="javax/measure/test/DimensionTest.html" class="type-name-link" title="class in javax.measure.test">DimensionTest</a></li>
      +<li class="circle"><a href="javax/measure/test/quantity/DistanceQuantityTest.html" class="type-name-link" title="class in javax.measure.test.quantity">DistanceQuantityTest</a></li>
      +<li class="circle"><a href="javax/measure/test/ExceptionsTest.html" class="type-name-link" title="class in javax.measure.test">ExceptionsTest</a></li>
      +<li class="circle"><a href="javax/measure/spi/FormatServiceTest.html" class="type-name-link" title="class in javax.measure.spi">FormatServiceTest</a></li>
      +<li class="circle"><a href="javax/measure/test/format/MeasurementParseTest.html" class="type-name-link" title="class in javax.measure.test.format">MeasurementParseTest</a></li>
      +<li class="circle"><a href="javax/measure/test/MetricPrefixTest.html" class="type-name-link" title="class in javax.measure.test">MetricPrefixTest</a></li>
      +<li class="circle"><a href="javax/measure/test/format/QuantityFormatTest.html" class="type-name-link" title="class in javax.measure.test.format">QuantityFormatTest</a></li>
      +<li class="circle"><a href="javax/measure/spi/ServiceProviderTest.html" class="type-name-link" title="class in javax.measure.spi">ServiceProviderTest</a></li>
      +<li class="circle"><a href="javax/measure/test/format/SimpleTestUnitFormat.html" class="type-name-link" title="class in javax.measure.test.format">SimpleTestUnitFormat</a></li>
      +<li class="circle"><a href="javax/measure/test/quantity/TemperatureQuantityTest.html" class="type-name-link" title="class in javax.measure.test.quantity">TemperatureQuantityTest</a></li>
      +<li class="circle"><a href="javax/measure/test/TestConverter.html" class="type-name-link" title="class in javax.measure.test">TestConverter</a> (implements <a href="../apidocs/javax/measure/UnitConverter.html" title="class or interface in javax.measure" class="external-link">UnitConverter</a>)
      +<ul>
      +<li class="circle"><a href="javax/measure/test/function/MultiplyConverter.html" class="type-name-link" title="class in javax.measure.test.function">MultiplyConverter</a> (implements <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html" title="class or interface in java.lang" class="external-link">Comparable</a>&lt;T&gt;)</li>
      +<li class="circle"><a href="javax/measure/test/TestConverter.Pair.html" class="type-name-link" title="class in javax.measure.test">TestConverter.Pair</a></li>
      +</ul>
      +</li>
      +<li class="circle"><a href="javax/measure/test/quantity/TestQuantities.html" class="type-name-link" title="class in javax.measure.test.quantity">TestQuantities</a></li>
      +<li class="circle"><a href="javax/measure/test/quantity/TestQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">TestQuantity</a>&lt;Q&gt; (implements <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html" title="class or interface in java.lang" class="external-link">Comparable</a>&lt;T&gt;, <a href="../apidocs/javax/measure/Quantity.html" title="class or interface in javax.measure" class="external-link">Quantity</a>&lt;Q&gt;)
      +<ul>
      +<li class="circle"><a href="javax/measure/test/quantity/AreaQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">AreaQuantity</a> (implements <a href="../apidocs/javax/measure/quantity/Area.html" title="class or interface in javax.measure.quantity" class="external-link">Area</a>)</li>
      +<li class="circle"><a href="javax/measure/test/quantity/DistanceQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">DistanceQuantity</a> (implements <a href="../apidocs/javax/measure/quantity/Length.html" title="class or interface in javax.measure.quantity" class="external-link">Length</a>)</li>
      +<li class="circle"><a href="javax/measure/test/quantity/TemperatureQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">TemperatureQuantity</a> (implements <a href="../apidocs/javax/measure/quantity/Temperature.html" title="class or interface in javax.measure.quantity" class="external-link">Temperature</a>)</li>
      +<li class="circle"><a href="javax/measure/test/quantity/TimeQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">TimeQuantity</a></li>
      +<li class="circle"><a href="javax/measure/test/quantity/VolumeQuantity.html" class="type-name-link" title="class in javax.measure.test.quantity">VolumeQuantity</a></li>
      +</ul>
      +</li>
      +<li class="circle"><a href="javax/measure/test/TestUnit.html" class="type-name-link" title="class in javax.measure.test">TestUnit</a>&lt;Q&gt; (implements <a href="../apidocs/javax/measure/Unit.html" title="class or interface in javax.measure" class="external-link">Unit</a>&lt;Q&gt;)
      +<ul>
      +<li class="circle"><a href="javax/measure/test/unit/AreaUnit.html" class="type-name-link" title="class in javax.measure.test.unit">AreaUnit</a></li>
      +<li class="circle"><a href="javax/measure/test/unit/BaseUnit.html" class="type-name-link" title="class in javax.measure.test.unit">BaseUnit</a>&lt;Q&gt;
      +<ul>
      +<li class="circle"><a href="javax/measure/test/unit/DistanceUnit.html" class="type-name-link" title="class in javax.measure.test.unit">DistanceUnit</a></li>
      +<li class="circle"><a href="javax/measure/test/unit/MassUnit.html" class="type-name-link" title="class in javax.measure.test.unit">MassUnit</a></li>
      +<li class="circle"><a href="javax/measure/test/unit/TimeUnit.html" class="type-name-link" title="class in javax.measure.test.unit">TimeUnit</a></li>
      +</ul>
      +</li>
      +<li class="circle"><a href="javax/measure/test/unit/SpeedUnit.html" class="type-name-link" title="class in javax.measure.test.unit">SpeedUnit</a></li>
      +<li class="circle"><a href="javax/measure/test/unit/TemperatureUnit.html" class="type-name-link" title="class in javax.measure.test.unit">TemperatureUnit</a></li>
      +<li class="circle"><a href="javax/measure/test/unit/VolumeUnit.html" class="type-name-link" title="class in javax.measure.test.unit">VolumeUnit</a></li>
      +</ul>
      +</li>
      +<li class="circle"><a href="javax/measure/test/TripLeg.html" class="type-name-link" title="class in javax.measure.test">TripLeg</a></li>
      +<li class="circle"><a href="javax/measure/test/format/UnitFormatTest.html" class="type-name-link" title="class in javax.measure.test.format">UnitFormatTest</a></li>
      +<li class="circle"><a href="javax/measure/test/UnitTest.html" class="type-name-link" title="class in javax.measure.test">UnitTest</a></li>
      +</ul>
      +</li>
      +</ul>
      +</section>
      +</main>
      +<footer role="contentinfo">
      +<hr>
      +<p class="legal-copy"><small>Copyright &#169; 2014&#x2013;2023 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</div>
      +</div>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/package-search-index.js b/docs/site/testapidocs/package-search-index.js
      new file mode 100644
      index 00000000..7eb1404f
      --- /dev/null
      +++ b/docs/site/testapidocs/package-search-index.js
      @@ -0,0 +1 @@
      +packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"javax.measure.spi"},{"l":"javax.measure.test"},{"l":"javax.measure.test.format"},{"l":"javax.measure.test.function"},{"l":"javax.measure.test.quantity"},{"l":"javax.measure.test.unit"}];updateSearchResults();
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/package-search-index.zip b/docs/site/testapidocs/package-search-index.zip
      new file mode 100644
      index 00000000..3f2b9605
      Binary files /dev/null and b/docs/site/testapidocs/package-search-index.zip differ
      diff --git a/docs/site/testapidocs/resources/glass.png b/docs/site/testapidocs/resources/glass.png
      new file mode 100644
      index 00000000..a7f591f4
      Binary files /dev/null and b/docs/site/testapidocs/resources/glass.png differ
      diff --git a/docs/site/testapidocs/resources/x.png b/docs/site/testapidocs/resources/x.png
      new file mode 100644
      index 00000000..30548a75
      Binary files /dev/null and b/docs/site/testapidocs/resources/x.png differ
      diff --git a/docs/site/testapidocs/script-dir/external/jquery/jquery.js b/docs/site/testapidocs/script-dir/external/jquery/jquery.js
      new file mode 100644
      index 00000000..5b16efa1
      --- /dev/null
      +++ b/docs/site/testapidocs/script-dir/external/jquery/jquery.js
      @@ -0,0 +1,10598 @@
      +/*!
      + * jQuery JavaScript Library v3.4.1
      + * https://jquery.com/
      + *
      + * Includes Sizzle.js
      + * https://sizzlejs.com/
      + *
      + * Copyright JS Foundation and other contributors
      + * Released under the MIT license
      + * https://jquery.org/license
      + *
      + * Date: 2019-05-01T21:04Z
      + */
      +( function( global, factory ) {
      +
      +	"use strict";
      +
      +	if ( typeof module === "object" && typeof module.exports === "object" ) {
      +
      +		// For CommonJS and CommonJS-like environments where a proper `window`
      +		// is present, execute the factory and get jQuery.
      +		// For environments that do not have a `window` with a `document`
      +		// (such as Node.js), expose a factory as module.exports.
      +		// This accentuates the need for the creation of a real `window`.
      +		// e.g. var jQuery = require("jquery")(window);
      +		// See ticket #14549 for more info.
      +		module.exports = global.document ?
      +			factory( global, true ) :
      +			function( w ) {
      +				if ( !w.document ) {
      +					throw new Error( "jQuery requires a window with a document" );
      +				}
      +				return factory( w );
      +			};
      +	} else {
      +		factory( global );
      +	}
      +
      +// Pass this if window is not defined yet
      +} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
      +
      +// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
      +// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
      +// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
      +// enough that all such attempts are guarded in a try block.
      +"use strict";
      +
      +var arr = [];
      +
      +var document = window.document;
      +
      +var getProto = Object.getPrototypeOf;
      +
      +var slice = arr.slice;
      +
      +var concat = arr.concat;
      +
      +var push = arr.push;
      +
      +var indexOf = arr.indexOf;
      +
      +var class2type = {};
      +
      +var toString = class2type.toString;
      +
      +var hasOwn = class2type.hasOwnProperty;
      +
      +var fnToString = hasOwn.toString;
      +
      +var ObjectFunctionString = fnToString.call( Object );
      +
      +var support = {};
      +
      +var isFunction = function isFunction( obj ) {
      +
      +      // Support: Chrome <=57, Firefox <=52
      +      // In some browsers, typeof returns "function" for HTML <object> elements
      +      // (i.e., `typeof document.createElement( "object" ) === "function"`).
      +      // We don't want to classify *any* DOM node as a function.
      +      return typeof obj === "function" && typeof obj.nodeType !== "number";
      +  };
      +
      +
      +var isWindow = function isWindow( obj ) {
      +		return obj != null && obj === obj.window;
      +	};
      +
      +
      +
      +
      +	var preservedScriptAttributes = {
      +		type: true,
      +		src: true,
      +		nonce: true,
      +		noModule: true
      +	};
      +
      +	function DOMEval( code, node, doc ) {
      +		doc = doc || document;
      +
      +		var i, val,
      +			script = doc.createElement( "script" );
      +
      +		script.text = code;
      +		if ( node ) {
      +			for ( i in preservedScriptAttributes ) {
      +
      +				// Support: Firefox 64+, Edge 18+
      +				// Some browsers don't support the "nonce" property on scripts.
      +				// On the other hand, just using `getAttribute` is not enough as
      +				// the `nonce` attribute is reset to an empty string whenever it
      +				// becomes browsing-context connected.
      +				// See https://github.com/whatwg/html/issues/2369
      +				// See https://html.spec.whatwg.org/#nonce-attributes
      +				// The `node.getAttribute` check was added for the sake of
      +				// `jQuery.globalEval` so that it can fake a nonce-containing node
      +				// via an object.
      +				val = node[ i ] || node.getAttribute && node.getAttribute( i );
      +				if ( val ) {
      +					script.setAttribute( i, val );
      +				}
      +			}
      +		}
      +		doc.head.appendChild( script ).parentNode.removeChild( script );
      +	}
      +
      +
      +function toType( obj ) {
      +	if ( obj == null ) {
      +		return obj + "";
      +	}
      +
      +	// Support: Android <=2.3 only (functionish RegExp)
      +	return typeof obj === "object" || typeof obj === "function" ?
      +		class2type[ toString.call( obj ) ] || "object" :
      +		typeof obj;
      +}
      +/* global Symbol */
      +// Defining this global in .eslintrc.json would create a danger of using the global
      +// unguarded in another place, it seems safer to define global only for this module
      +
      +
      +
      +var
      +	version = "3.4.1",
      +
      +	// Define a local copy of jQuery
      +	jQuery = function( selector, context ) {
      +
      +		// The jQuery object is actually just the init constructor 'enhanced'
      +		// Need init if jQuery is called (just allow error to be thrown if not included)
      +		return new jQuery.fn.init( selector, context );
      +	},
      +
      +	// Support: Android <=4.0 only
      +	// Make sure we trim BOM and NBSP
      +	rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
      +
      +jQuery.fn = jQuery.prototype = {
      +
      +	// The current version of jQuery being used
      +	jquery: version,
      +
      +	constructor: jQuery,
      +
      +	// The default length of a jQuery object is 0
      +	length: 0,
      +
      +	toArray: function() {
      +		return slice.call( this );
      +	},
      +
      +	// Get the Nth element in the matched element set OR
      +	// Get the whole matched element set as a clean array
      +	get: function( num ) {
      +
      +		// Return all the elements in a clean array
      +		if ( num == null ) {
      +			return slice.call( this );
      +		}
      +
      +		// Return just the one element from the set
      +		return num < 0 ? this[ num + this.length ] : this[ num ];
      +	},
      +
      +	// Take an array of elements and push it onto the stack
      +	// (returning the new matched element set)
      +	pushStack: function( elems ) {
      +
      +		// Build a new jQuery matched element set
      +		var ret = jQuery.merge( this.constructor(), elems );
      +
      +		// Add the old object onto the stack (as a reference)
      +		ret.prevObject = this;
      +
      +		// Return the newly-formed element set
      +		return ret;
      +	},
      +
      +	// Execute a callback for every element in the matched set.
      +	each: function( callback ) {
      +		return jQuery.each( this, callback );
      +	},
      +
      +	map: function( callback ) {
      +		return this.pushStack( jQuery.map( this, function( elem, i ) {
      +			return callback.call( elem, i, elem );
      +		} ) );
      +	},
      +
      +	slice: function() {
      +		return this.pushStack( slice.apply( this, arguments ) );
      +	},
      +
      +	first: function() {
      +		return this.eq( 0 );
      +	},
      +
      +	last: function() {
      +		return this.eq( -1 );
      +	},
      +
      +	eq: function( i ) {
      +		var len = this.length,
      +			j = +i + ( i < 0 ? len : 0 );
      +		return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );
      +	},
      +
      +	end: function() {
      +		return this.prevObject || this.constructor();
      +	},
      +
      +	// For internal use only.
      +	// Behaves like an Array's method, not like a jQuery method.
      +	push: push,
      +	sort: arr.sort,
      +	splice: arr.splice
      +};
      +
      +jQuery.extend = jQuery.fn.extend = function() {
      +	var options, name, src, copy, copyIsArray, clone,
      +		target = arguments[ 0 ] || {},
      +		i = 1,
      +		length = arguments.length,
      +		deep = false;
      +
      +	// Handle a deep copy situation
      +	if ( typeof target === "boolean" ) {
      +		deep = target;
      +
      +		// Skip the boolean and the target
      +		target = arguments[ i ] || {};
      +		i++;
      +	}
      +
      +	// Handle case when target is a string or something (possible in deep copy)
      +	if ( typeof target !== "object" && !isFunction( target ) ) {
      +		target = {};
      +	}
      +
      +	// Extend jQuery itself if only one argument is passed
      +	if ( i === length ) {
      +		target = this;
      +		i--;
      +	}
      +
      +	for ( ; i < length; i++ ) {
      +
      +		// Only deal with non-null/undefined values
      +		if ( ( options = arguments[ i ] ) != null ) {
      +
      +			// Extend the base object
      +			for ( name in options ) {
      +				copy = options[ name ];
      +
      +				// Prevent Object.prototype pollution
      +				// Prevent never-ending loop
      +				if ( name === "__proto__" || target === copy ) {
      +					continue;
      +				}
      +
      +				// Recurse if we're merging plain objects or arrays
      +				if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
      +					( copyIsArray = Array.isArray( copy ) ) ) ) {
      +					src = target[ name ];
      +
      +					// Ensure proper type for the source value
      +					if ( copyIsArray && !Array.isArray( src ) ) {
      +						clone = [];
      +					} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {
      +						clone = {};
      +					} else {
      +						clone = src;
      +					}
      +					copyIsArray = false;
      +
      +					// Never move original objects, clone them
      +					target[ name ] = jQuery.extend( deep, clone, copy );
      +
      +				// Don't bring in undefined values
      +				} else if ( copy !== undefined ) {
      +					target[ name ] = copy;
      +				}
      +			}
      +		}
      +	}
      +
      +	// Return the modified object
      +	return target;
      +};
      +
      +jQuery.extend( {
      +
      +	// Unique for each copy of jQuery on the page
      +	expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
      +
      +	// Assume jQuery is ready without the ready module
      +	isReady: true,
      +
      +	error: function( msg ) {
      +		throw new Error( msg );
      +	},
      +
      +	noop: function() {},
      +
      +	isPlainObject: function( obj ) {
      +		var proto, Ctor;
      +
      +		// Detect obvious negatives
      +		// Use toString instead of jQuery.type to catch host objects
      +		if ( !obj || toString.call( obj ) !== "[object Object]" ) {
      +			return false;
      +		}
      +
      +		proto = getProto( obj );
      +
      +		// Objects with no prototype (e.g., `Object.create( null )`) are plain
      +		if ( !proto ) {
      +			return true;
      +		}
      +
      +		// Objects with prototype are plain iff they were constructed by a global Object function
      +		Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor;
      +		return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString;
      +	},
      +
      +	isEmptyObject: function( obj ) {
      +		var name;
      +
      +		for ( name in obj ) {
      +			return false;
      +		}
      +		return true;
      +	},
      +
      +	// Evaluates a script in a global context
      +	globalEval: function( code, options ) {
      +		DOMEval( code, { nonce: options && options.nonce } );
      +	},
      +
      +	each: function( obj, callback ) {
      +		var length, i = 0;
      +
      +		if ( isArrayLike( obj ) ) {
      +			length = obj.length;
      +			for ( ; i < length; i++ ) {
      +				if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
      +					break;
      +				}
      +			}
      +		} else {
      +			for ( i in obj ) {
      +				if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
      +					break;
      +				}
      +			}
      +		}
      +
      +		return obj;
      +	},
      +
      +	// Support: Android <=4.0 only
      +	trim: function( text ) {
      +		return text == null ?
      +			"" :
      +			( text + "" ).replace( rtrim, "" );
      +	},
      +
      +	// results is for internal usage only
      +	makeArray: function( arr, results ) {
      +		var ret = results || [];
      +
      +		if ( arr != null ) {
      +			if ( isArrayLike( Object( arr ) ) ) {
      +				jQuery.merge( ret,
      +					typeof arr === "string" ?
      +					[ arr ] : arr
      +				);
      +			} else {
      +				push.call( ret, arr );
      +			}
      +		}
      +
      +		return ret;
      +	},
      +
      +	inArray: function( elem, arr, i ) {
      +		return arr == null ? -1 : indexOf.call( arr, elem, i );
      +	},
      +
      +	// Support: Android <=4.0 only, PhantomJS 1 only
      +	// push.apply(_, arraylike) throws on ancient WebKit
      +	merge: function( first, second ) {
      +		var len = +second.length,
      +			j = 0,
      +			i = first.length;
      +
      +		for ( ; j < len; j++ ) {
      +			first[ i++ ] = second[ j ];
      +		}
      +
      +		first.length = i;
      +
      +		return first;
      +	},
      +
      +	grep: function( elems, callback, invert ) {
      +		var callbackInverse,
      +			matches = [],
      +			i = 0,
      +			length = elems.length,
      +			callbackExpect = !invert;
      +
      +		// Go through the array, only saving the items
      +		// that pass the validator function
      +		for ( ; i < length; i++ ) {
      +			callbackInverse = !callback( elems[ i ], i );
      +			if ( callbackInverse !== callbackExpect ) {
      +				matches.push( elems[ i ] );
      +			}
      +		}
      +
      +		return matches;
      +	},
      +
      +	// arg is for internal usage only
      +	map: function( elems, callback, arg ) {
      +		var length, value,
      +			i = 0,
      +			ret = [];
      +
      +		// Go through the array, translating each of the items to their new values
      +		if ( isArrayLike( elems ) ) {
      +			length = elems.length;
      +			for ( ; i < length; i++ ) {
      +				value = callback( elems[ i ], i, arg );
      +
      +				if ( value != null ) {
      +					ret.push( value );
      +				}
      +			}
      +
      +		// Go through every key on the object,
      +		} else {
      +			for ( i in elems ) {
      +				value = callback( elems[ i ], i, arg );
      +
      +				if ( value != null ) {
      +					ret.push( value );
      +				}
      +			}
      +		}
      +
      +		// Flatten any nested arrays
      +		return concat.apply( [], ret );
      +	},
      +
      +	// A global GUID counter for objects
      +	guid: 1,
      +
      +	// jQuery.support is not used in Core but other projects attach their
      +	// properties to it so it needs to exist.
      +	support: support
      +} );
      +
      +if ( typeof Symbol === "function" ) {
      +	jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];
      +}
      +
      +// Populate the class2type map
      +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ),
      +function( i, name ) {
      +	class2type[ "[object " + name + "]" ] = name.toLowerCase();
      +} );
      +
      +function isArrayLike( obj ) {
      +
      +	// Support: real iOS 8.2 only (not reproducible in simulator)
      +	// `in` check used to prevent JIT error (gh-2145)
      +	// hasOwn isn't used here due to false negatives
      +	// regarding Nodelist length in IE
      +	var length = !!obj && "length" in obj && obj.length,
      +		type = toType( obj );
      +
      +	if ( isFunction( obj ) || isWindow( obj ) ) {
      +		return false;
      +	}
      +
      +	return type === "array" || length === 0 ||
      +		typeof length === "number" && length > 0 && ( length - 1 ) in obj;
      +}
      +var Sizzle =
      +/*!
      + * Sizzle CSS Selector Engine v2.3.4
      + * https://sizzlejs.com/
      + *
      + * Copyright JS Foundation and other contributors
      + * Released under the MIT license
      + * https://js.foundation/
      + *
      + * Date: 2019-04-08
      + */
      +(function( window ) {
      +
      +var i,
      +	support,
      +	Expr,
      +	getText,
      +	isXML,
      +	tokenize,
      +	compile,
      +	select,
      +	outermostContext,
      +	sortInput,
      +	hasDuplicate,
      +
      +	// Local document vars
      +	setDocument,
      +	document,
      +	docElem,
      +	documentIsHTML,
      +	rbuggyQSA,
      +	rbuggyMatches,
      +	matches,
      +	contains,
      +
      +	// Instance-specific data
      +	expando = "sizzle" + 1 * new Date(),
      +	preferredDoc = window.document,
      +	dirruns = 0,
      +	done = 0,
      +	classCache = createCache(),
      +	tokenCache = createCache(),
      +	compilerCache = createCache(),
      +	nonnativeSelectorCache = createCache(),
      +	sortOrder = function( a, b ) {
      +		if ( a === b ) {
      +			hasDuplicate = true;
      +		}
      +		return 0;
      +	},
      +
      +	// Instance methods
      +	hasOwn = ({}).hasOwnProperty,
      +	arr = [],
      +	pop = arr.pop,
      +	push_native = arr.push,
      +	push = arr.push,
      +	slice = arr.slice,
      +	// Use a stripped-down indexOf as it's faster than native
      +	// https://jsperf.com/thor-indexof-vs-for/5
      +	indexOf = function( list, elem ) {
      +		var i = 0,
      +			len = list.length;
      +		for ( ; i < len; i++ ) {
      +			if ( list[i] === elem ) {
      +				return i;
      +			}
      +		}
      +		return -1;
      +	},
      +
      +	booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
      +
      +	// Regular expressions
      +
      +	// http://www.w3.org/TR/css3-selectors/#whitespace
      +	whitespace = "[\\x20\\t\\r\\n\\f]",
      +
      +	// http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
      +	identifier = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+",
      +
      +	// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors
      +	attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace +
      +		// Operator (capture 2)
      +		"*([*^$|!~]?=)" + whitespace +
      +		// "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]"
      +		"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace +
      +		"*\\]",
      +
      +	pseudos = ":(" + identifier + ")(?:\\((" +
      +		// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:
      +		// 1. quoted (capture 3; capture 4 or capture 5)
      +		"('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" +
      +		// 2. simple (capture 6)
      +		"((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" +
      +		// 3. anything else (capture 2)
      +		".*" +
      +		")\\)|)",
      +
      +	// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
      +	rwhitespace = new RegExp( whitespace + "+", "g" ),
      +	rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
      +
      +	rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
      +	rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
      +	rdescend = new RegExp( whitespace + "|>" ),
      +
      +	rpseudo = new RegExp( pseudos ),
      +	ridentifier = new RegExp( "^" + identifier + "$" ),
      +
      +	matchExpr = {
      +		"ID": new RegExp( "^#(" + identifier + ")" ),
      +		"CLASS": new RegExp( "^\\.(" + identifier + ")" ),
      +		"TAG": new RegExp( "^(" + identifier + "|[*])" ),
      +		"ATTR": new RegExp( "^" + attributes ),
      +		"PSEUDO": new RegExp( "^" + pseudos ),
      +		"CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
      +			"*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
      +			"*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
      +		"bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
      +		// For use in libraries implementing .is()
      +		// We use this for POS matching in `select`
      +		"needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
      +			whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
      +	},
      +
      +	rhtml = /HTML$/i,
      +	rinputs = /^(?:input|select|textarea|button)$/i,
      +	rheader = /^h\d$/i,
      +
      +	rnative = /^[^{]+\{\s*\[native \w/,
      +
      +	// Easily-parseable/retrievable ID or TAG or CLASS selectors
      +	rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
      +
      +	rsibling = /[+~]/,
      +
      +	// CSS escapes
      +	// http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
      +	runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ),
      +	funescape = function( _, escaped, escapedWhitespace ) {
      +		var high = "0x" + escaped - 0x10000;
      +		// NaN means non-codepoint
      +		// Support: Firefox<24
      +		// Workaround erroneous numeric interpretation of +"0x"
      +		return high !== high || escapedWhitespace ?
      +			escaped :
      +			high < 0 ?
      +				// BMP codepoint
      +				String.fromCharCode( high + 0x10000 ) :
      +				// Supplemental Plane codepoint (surrogate pair)
      +				String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
      +	},
      +
      +	// CSS string/identifier serialization
      +	// https://drafts.csswg.org/cssom/#common-serializing-idioms
      +	rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,
      +	fcssescape = function( ch, asCodePoint ) {
      +		if ( asCodePoint ) {
      +
      +			// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER
      +			if ( ch === "\0" ) {
      +				return "\uFFFD";
      +			}
      +
      +			// Control characters and (dependent upon position) numbers get escaped as code points
      +			return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " ";
      +		}
      +
      +		// Other potentially-special ASCII characters get backslash-escaped
      +		return "\\" + ch;
      +	},
      +
      +	// Used for iframes
      +	// See setDocument()
      +	// Removing the function wrapper causes a "Permission Denied"
      +	// error in IE
      +	unloadHandler = function() {
      +		setDocument();
      +	},
      +
      +	inDisabledFieldset = addCombinator(
      +		function( elem ) {
      +			return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset";
      +		},
      +		{ dir: "parentNode", next: "legend" }
      +	);
      +
      +// Optimize for push.apply( _, NodeList )
      +try {
      +	push.apply(
      +		(arr = slice.call( preferredDoc.childNodes )),
      +		preferredDoc.childNodes
      +	);
      +	// Support: Android<4.0
      +	// Detect silently failing push.apply
      +	arr[ preferredDoc.childNodes.length ].nodeType;
      +} catch ( e ) {
      +	push = { apply: arr.length ?
      +
      +		// Leverage slice if possible
      +		function( target, els ) {
      +			push_native.apply( target, slice.call(els) );
      +		} :
      +
      +		// Support: IE<9
      +		// Otherwise append directly
      +		function( target, els ) {
      +			var j = target.length,
      +				i = 0;
      +			// Can't trust NodeList.length
      +			while ( (target[j++] = els[i++]) ) {}
      +			target.length = j - 1;
      +		}
      +	};
      +}
      +
      +function Sizzle( selector, context, results, seed ) {
      +	var m, i, elem, nid, match, groups, newSelector,
      +		newContext = context && context.ownerDocument,
      +
      +		// nodeType defaults to 9, since context defaults to document
      +		nodeType = context ? context.nodeType : 9;
      +
      +	results = results || [];
      +
      +	// Return early from calls with invalid selector or context
      +	if ( typeof selector !== "string" || !selector ||
      +		nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {
      +
      +		return results;
      +	}
      +
      +	// Try to shortcut find operations (as opposed to filters) in HTML documents
      +	if ( !seed ) {
      +
      +		if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
      +			setDocument( context );
      +		}
      +		context = context || document;
      +
      +		if ( documentIsHTML ) {
      +
      +			// If the selector is sufficiently simple, try using a "get*By*" DOM method
      +			// (excepting DocumentFragment context, where the methods don't exist)
      +			if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {
      +
      +				// ID selector
      +				if ( (m = match[1]) ) {
      +
      +					// Document context
      +					if ( nodeType === 9 ) {
      +						if ( (elem = context.getElementById( m )) ) {
      +
      +							// Support: IE, Opera, Webkit
      +							// TODO: identify versions
      +							// getElementById can match elements by name instead of ID
      +							if ( elem.id === m ) {
      +								results.push( elem );
      +								return results;
      +							}
      +						} else {
      +							return results;
      +						}
      +
      +					// Element context
      +					} else {
      +
      +						// Support: IE, Opera, Webkit
      +						// TODO: identify versions
      +						// getElementById can match elements by name instead of ID
      +						if ( newContext && (elem = newContext.getElementById( m )) &&
      +							contains( context, elem ) &&
      +							elem.id === m ) {
      +
      +							results.push( elem );
      +							return results;
      +						}
      +					}
      +
      +				// Type selector
      +				} else if ( match[2] ) {
      +					push.apply( results, context.getElementsByTagName( selector ) );
      +					return results;
      +
      +				// Class selector
      +				} else if ( (m = match[3]) && support.getElementsByClassName &&
      +					context.getElementsByClassName ) {
      +
      +					push.apply( results, context.getElementsByClassName( m ) );
      +					return results;
      +				}
      +			}
      +
      +			// Take advantage of querySelectorAll
      +			if ( support.qsa &&
      +				!nonnativeSelectorCache[ selector + " " ] &&
      +				(!rbuggyQSA || !rbuggyQSA.test( selector )) &&
      +
      +				// Support: IE 8 only
      +				// Exclude object elements
      +				(nodeType !== 1 || context.nodeName.toLowerCase() !== "object") ) {
      +
      +				newSelector = selector;
      +				newContext = context;
      +
      +				// qSA considers elements outside a scoping root when evaluating child or
      +				// descendant combinators, which is not what we want.
      +				// In such cases, we work around the behavior by prefixing every selector in the
      +				// list with an ID selector referencing the scope context.
      +				// Thanks to Andrew Dupont for this technique.
      +				if ( nodeType === 1 && rdescend.test( selector ) ) {
      +
      +					// Capture the context ID, setting it first if necessary
      +					if ( (nid = context.getAttribute( "id" )) ) {
      +						nid = nid.replace( rcssescape, fcssescape );
      +					} else {
      +						context.setAttribute( "id", (nid = expando) );
      +					}
      +
      +					// Prefix every selector in the list
      +					groups = tokenize( selector );
      +					i = groups.length;
      +					while ( i-- ) {
      +						groups[i] = "#" + nid + " " + toSelector( groups[i] );
      +					}
      +					newSelector = groups.join( "," );
      +
      +					// Expand context for sibling selectors
      +					newContext = rsibling.test( selector ) && testContext( context.parentNode ) ||
      +						context;
      +				}
      +
      +				try {
      +					push.apply( results,
      +						newContext.querySelectorAll( newSelector )
      +					);
      +					return results;
      +				} catch ( qsaError ) {
      +					nonnativeSelectorCache( selector, true );
      +				} finally {
      +					if ( nid === expando ) {
      +						context.removeAttribute( "id" );
      +					}
      +				}
      +			}
      +		}
      +	}
      +
      +	// All others
      +	return select( selector.replace( rtrim, "$1" ), context, results, seed );
      +}
      +
      +/**
      + * Create key-value caches of limited size
      + * @returns {function(string, object)} Returns the Object data after storing it on itself with
      + *	property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
      + *	deleting the oldest entry
      + */
      +function createCache() {
      +	var keys = [];
      +
      +	function cache( key, value ) {
      +		// Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
      +		if ( keys.push( key + " " ) > Expr.cacheLength ) {
      +			// Only keep the most recent entries
      +			delete cache[ keys.shift() ];
      +		}
      +		return (cache[ key + " " ] = value);
      +	}
      +	return cache;
      +}
      +
      +/**
      + * Mark a function for special use by Sizzle
      + * @param {Function} fn The function to mark
      + */
      +function markFunction( fn ) {
      +	fn[ expando ] = true;
      +	return fn;
      +}
      +
      +/**
      + * Support testing using an element
      + * @param {Function} fn Passed the created element and returns a boolean result
      + */
      +function assert( fn ) {
      +	var el = document.createElement("fieldset");
      +
      +	try {
      +		return !!fn( el );
      +	} catch (e) {
      +		return false;
      +	} finally {
      +		// Remove from its parent by default
      +		if ( el.parentNode ) {
      +			el.parentNode.removeChild( el );
      +		}
      +		// release memory in IE
      +		el = null;
      +	}
      +}
      +
      +/**
      + * Adds the same handler for all of the specified attrs
      + * @param {String} attrs Pipe-separated list of attributes
      + * @param {Function} handler The method that will be applied
      + */
      +function addHandle( attrs, handler ) {
      +	var arr = attrs.split("|"),
      +		i = arr.length;
      +
      +	while ( i-- ) {
      +		Expr.attrHandle[ arr[i] ] = handler;
      +	}
      +}
      +
      +/**
      + * Checks document order of two siblings
      + * @param {Element} a
      + * @param {Element} b
      + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
      + */
      +function siblingCheck( a, b ) {
      +	var cur = b && a,
      +		diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
      +			a.sourceIndex - b.sourceIndex;
      +
      +	// Use IE sourceIndex if available on both nodes
      +	if ( diff ) {
      +		return diff;
      +	}
      +
      +	// Check if b follows a
      +	if ( cur ) {
      +		while ( (cur = cur.nextSibling) ) {
      +			if ( cur === b ) {
      +				return -1;
      +			}
      +		}
      +	}
      +
      +	return a ? 1 : -1;
      +}
      +
      +/**
      + * Returns a function to use in pseudos for input types
      + * @param {String} type
      + */
      +function createInputPseudo( type ) {
      +	return function( elem ) {
      +		var name = elem.nodeName.toLowerCase();
      +		return name === "input" && elem.type === type;
      +	};
      +}
      +
      +/**
      + * Returns a function to use in pseudos for buttons
      + * @param {String} type
      + */
      +function createButtonPseudo( type ) {
      +	return function( elem ) {
      +		var name = elem.nodeName.toLowerCase();
      +		return (name === "input" || name === "button") && elem.type === type;
      +	};
      +}
      +
      +/**
      + * Returns a function to use in pseudos for :enabled/:disabled
      + * @param {Boolean} disabled true for :disabled; false for :enabled
      + */
      +function createDisabledPseudo( disabled ) {
      +
      +	// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable
      +	return function( elem ) {
      +
      +		// Only certain elements can match :enabled or :disabled
      +		// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled
      +		// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled
      +		if ( "form" in elem ) {
      +
      +			// Check for inherited disabledness on relevant non-disabled elements:
      +			// * listed form-associated elements in a disabled fieldset
      +			//   https://html.spec.whatwg.org/multipage/forms.html#category-listed
      +			//   https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled
      +			// * option elements in a disabled optgroup
      +			//   https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled
      +			// All such elements have a "form" property.
      +			if ( elem.parentNode && elem.disabled === false ) {
      +
      +				// Option elements defer to a parent optgroup if present
      +				if ( "label" in elem ) {
      +					if ( "label" in elem.parentNode ) {
      +						return elem.parentNode.disabled === disabled;
      +					} else {
      +						return elem.disabled === disabled;
      +					}
      +				}
      +
      +				// Support: IE 6 - 11
      +				// Use the isDisabled shortcut property to check for disabled fieldset ancestors
      +				return elem.isDisabled === disabled ||
      +
      +					// Where there is no isDisabled, check manually
      +					/* jshint -W018 */
      +					elem.isDisabled !== !disabled &&
      +						inDisabledFieldset( elem ) === disabled;
      +			}
      +
      +			return elem.disabled === disabled;
      +
      +		// Try to winnow out elements that can't be disabled before trusting the disabled property.
      +		// Some victims get caught in our net (label, legend, menu, track), but it shouldn't
      +		// even exist on them, let alone have a boolean value.
      +		} else if ( "label" in elem ) {
      +			return elem.disabled === disabled;
      +		}
      +
      +		// Remaining elements are neither :enabled nor :disabled
      +		return false;
      +	};
      +}
      +
      +/**
      + * Returns a function to use in pseudos for positionals
      + * @param {Function} fn
      + */
      +function createPositionalPseudo( fn ) {
      +	return markFunction(function( argument ) {
      +		argument = +argument;
      +		return markFunction(function( seed, matches ) {
      +			var j,
      +				matchIndexes = fn( [], seed.length, argument ),
      +				i = matchIndexes.length;
      +
      +			// Match elements found at the specified indexes
      +			while ( i-- ) {
      +				if ( seed[ (j = matchIndexes[i]) ] ) {
      +					seed[j] = !(matches[j] = seed[j]);
      +				}
      +			}
      +		});
      +	});
      +}
      +
      +/**
      + * Checks a node for validity as a Sizzle context
      + * @param {Element|Object=} context
      + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
      + */
      +function testContext( context ) {
      +	return context && typeof context.getElementsByTagName !== "undefined" && context;
      +}
      +
      +// Expose support vars for convenience
      +support = Sizzle.support = {};
      +
      +/**
      + * Detects XML nodes
      + * @param {Element|Object} elem An element or a document
      + * @returns {Boolean} True iff elem is a non-HTML XML node
      + */
      +isXML = Sizzle.isXML = function( elem ) {
      +	var namespace = elem.namespaceURI,
      +		docElem = (elem.ownerDocument || elem).documentElement;
      +
      +	// Support: IE <=8
      +	// Assume HTML when documentElement doesn't yet exist, such as inside loading iframes
      +	// https://bugs.jquery.com/ticket/4833
      +	return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" );
      +};
      +
      +/**
      + * Sets document-related variables once based on the current document
      + * @param {Element|Object} [doc] An element or document object to use to set the document
      + * @returns {Object} Returns the current document
      + */
      +setDocument = Sizzle.setDocument = function( node ) {
      +	var hasCompare, subWindow,
      +		doc = node ? node.ownerDocument || node : preferredDoc;
      +
      +	// Return early if doc is invalid or already selected
      +	if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
      +		return document;
      +	}
      +
      +	// Update global variables
      +	document = doc;
      +	docElem = document.documentElement;
      +	documentIsHTML = !isXML( document );
      +
      +	// Support: IE 9-11, Edge
      +	// Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936)
      +	if ( preferredDoc !== document &&
      +		(subWindow = document.defaultView) && subWindow.top !== subWindow ) {
      +
      +		// Support: IE 11, Edge
      +		if ( subWindow.addEventListener ) {
      +			subWindow.addEventListener( "unload", unloadHandler, false );
      +
      +		// Support: IE 9 - 10 only
      +		} else if ( subWindow.attachEvent ) {
      +			subWindow.attachEvent( "onunload", unloadHandler );
      +		}
      +	}
      +
      +	/* Attributes
      +	---------------------------------------------------------------------- */
      +
      +	// Support: IE<8
      +	// Verify that getAttribute really returns attributes and not properties
      +	// (excepting IE8 booleans)
      +	support.attributes = assert(function( el ) {
      +		el.className = "i";
      +		return !el.getAttribute("className");
      +	});
      +
      +	/* getElement(s)By*
      +	---------------------------------------------------------------------- */
      +
      +	// Check if getElementsByTagName("*") returns only elements
      +	support.getElementsByTagName = assert(function( el ) {
      +		el.appendChild( document.createComment("") );
      +		return !el.getElementsByTagName("*").length;
      +	});
      +
      +	// Support: IE<9
      +	support.getElementsByClassName = rnative.test( document.getElementsByClassName );
      +
      +	// Support: IE<10
      +	// Check if getElementById returns elements by name
      +	// The broken getElementById methods don't pick up programmatically-set names,
      +	// so use a roundabout getElementsByName test
      +	support.getById = assert(function( el ) {
      +		docElem.appendChild( el ).id = expando;
      +		return !document.getElementsByName || !document.getElementsByName( expando ).length;
      +	});
      +
      +	// ID filter and find
      +	if ( support.getById ) {
      +		Expr.filter["ID"] = function( id ) {
      +			var attrId = id.replace( runescape, funescape );
      +			return function( elem ) {
      +				return elem.getAttribute("id") === attrId;
      +			};
      +		};
      +		Expr.find["ID"] = function( id, context ) {
      +			if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
      +				var elem = context.getElementById( id );
      +				return elem ? [ elem ] : [];
      +			}
      +		};
      +	} else {
      +		Expr.filter["ID"] =  function( id ) {
      +			var attrId = id.replace( runescape, funescape );
      +			return function( elem ) {
      +				var node = typeof elem.getAttributeNode !== "undefined" &&
      +					elem.getAttributeNode("id");
      +				return node && node.value === attrId;
      +			};
      +		};
      +
      +		// Support: IE 6 - 7 only
      +		// getElementById is not reliable as a find shortcut
      +		Expr.find["ID"] = function( id, context ) {
      +			if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
      +				var node, i, elems,
      +					elem = context.getElementById( id );
      +
      +				if ( elem ) {
      +
      +					// Verify the id attribute
      +					node = elem.getAttributeNode("id");
      +					if ( node && node.value === id ) {
      +						return [ elem ];
      +					}
      +
      +					// Fall back on getElementsByName
      +					elems = context.getElementsByName( id );
      +					i = 0;
      +					while ( (elem = elems[i++]) ) {
      +						node = elem.getAttributeNode("id");
      +						if ( node && node.value === id ) {
      +							return [ elem ];
      +						}
      +					}
      +				}
      +
      +				return [];
      +			}
      +		};
      +	}
      +
      +	// Tag
      +	Expr.find["TAG"] = support.getElementsByTagName ?
      +		function( tag, context ) {
      +			if ( typeof context.getElementsByTagName !== "undefined" ) {
      +				return context.getElementsByTagName( tag );
      +
      +			// DocumentFragment nodes don't have gEBTN
      +			} else if ( support.qsa ) {
      +				return context.querySelectorAll( tag );
      +			}
      +		} :
      +
      +		function( tag, context ) {
      +			var elem,
      +				tmp = [],
      +				i = 0,
      +				// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too
      +				results = context.getElementsByTagName( tag );
      +
      +			// Filter out possible comments
      +			if ( tag === "*" ) {
      +				while ( (elem = results[i++]) ) {
      +					if ( elem.nodeType === 1 ) {
      +						tmp.push( elem );
      +					}
      +				}
      +
      +				return tmp;
      +			}
      +			return results;
      +		};
      +
      +	// Class
      +	Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) {
      +		if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) {
      +			return context.getElementsByClassName( className );
      +		}
      +	};
      +
      +	/* QSA/matchesSelector
      +	---------------------------------------------------------------------- */
      +
      +	// QSA and matchesSelector support
      +
      +	// matchesSelector(:active) reports false when true (IE9/Opera 11.5)
      +	rbuggyMatches = [];
      +
      +	// qSa(:focus) reports false when true (Chrome 21)
      +	// We allow this because of a bug in IE8/9 that throws an error
      +	// whenever `document.activeElement` is accessed on an iframe
      +	// So, we allow :focus to pass through QSA all the time to avoid the IE error
      +	// See https://bugs.jquery.com/ticket/13378
      +	rbuggyQSA = [];
      +
      +	if ( (support.qsa = rnative.test( document.querySelectorAll )) ) {
      +		// Build QSA regex
      +		// Regex strategy adopted from Diego Perini
      +		assert(function( el ) {
      +			// Select is set to empty string on purpose
      +			// This is to test IE's treatment of not explicitly
      +			// setting a boolean content attribute,
      +			// since its presence should be enough
      +			// https://bugs.jquery.com/ticket/12359
      +			docElem.appendChild( el ).innerHTML = "<a id='" + expando + "'></a>" +
      +				"<select id='" + expando + "-\r\\' msallowcapture=''>" +
      +				"<option selected=''></option></select>";
      +
      +			// Support: IE8, Opera 11-12.16
      +			// Nothing should be selected when empty strings follow ^= or $= or *=
      +			// The test attribute must be unknown in Opera but "safe" for WinRT
      +			// https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section
      +			if ( el.querySelectorAll("[msallowcapture^='']").length ) {
      +				rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
      +			}
      +
      +			// Support: IE8
      +			// Boolean attributes and "value" are not treated correctly
      +			if ( !el.querySelectorAll("[selected]").length ) {
      +				rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
      +			}
      +
      +			// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+
      +			if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) {
      +				rbuggyQSA.push("~=");
      +			}
      +
      +			// Webkit/Opera - :checked should return selected option elements
      +			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
      +			// IE8 throws error here and will not see later tests
      +			if ( !el.querySelectorAll(":checked").length ) {
      +				rbuggyQSA.push(":checked");
      +			}
      +
      +			// Support: Safari 8+, iOS 8+
      +			// https://bugs.webkit.org/show_bug.cgi?id=136851
      +			// In-page `selector#id sibling-combinator selector` fails
      +			if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) {
      +				rbuggyQSA.push(".#.+[+~]");
      +			}
      +		});
      +
      +		assert(function( el ) {
      +			el.innerHTML = "<a href='' disabled='disabled'></a>" +
      +				"<select disabled='disabled'><option/></select>";
      +
      +			// Support: Windows 8 Native Apps
      +			// The type and name attributes are restricted during .innerHTML assignment
      +			var input = document.createElement("input");
      +			input.setAttribute( "type", "hidden" );
      +			el.appendChild( input ).setAttribute( "name", "D" );
      +
      +			// Support: IE8
      +			// Enforce case-sensitivity of name attribute
      +			if ( el.querySelectorAll("[name=d]").length ) {
      +				rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
      +			}
      +
      +			// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
      +			// IE8 throws error here and will not see later tests
      +			if ( el.querySelectorAll(":enabled").length !== 2 ) {
      +				rbuggyQSA.push( ":enabled", ":disabled" );
      +			}
      +
      +			// Support: IE9-11+
      +			// IE's :disabled selector does not pick up the children of disabled fieldsets
      +			docElem.appendChild( el ).disabled = true;
      +			if ( el.querySelectorAll(":disabled").length !== 2 ) {
      +				rbuggyQSA.push( ":enabled", ":disabled" );
      +			}
      +
      +			// Opera 10-11 does not throw on post-comma invalid pseudos
      +			el.querySelectorAll("*,:x");
      +			rbuggyQSA.push(",.*:");
      +		});
      +	}
      +
      +	if ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||
      +		docElem.webkitMatchesSelector ||
      +		docElem.mozMatchesSelector ||
      +		docElem.oMatchesSelector ||
      +		docElem.msMatchesSelector) )) ) {
      +
      +		assert(function( el ) {
      +			// Check to see if it's possible to do matchesSelector
      +			// on a disconnected node (IE 9)
      +			support.disconnectedMatch = matches.call( el, "*" );
      +
      +			// This should fail with an exception
      +			// Gecko does not error, returns false instead
      +			matches.call( el, "[s!='']:x" );
      +			rbuggyMatches.push( "!=", pseudos );
      +		});
      +	}
      +
      +	rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") );
      +	rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") );
      +
      +	/* Contains
      +	---------------------------------------------------------------------- */
      +	hasCompare = rnative.test( docElem.compareDocumentPosition );
      +
      +	// Element contains another
      +	// Purposefully self-exclusive
      +	// As in, an element does not contain itself
      +	contains = hasCompare || rnative.test( docElem.contains ) ?
      +		function( a, b ) {
      +			var adown = a.nodeType === 9 ? a.documentElement : a,
      +				bup = b && b.parentNode;
      +			return a === bup || !!( bup && bup.nodeType === 1 && (
      +				adown.contains ?
      +					adown.contains( bup ) :
      +					a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
      +			));
      +		} :
      +		function( a, b ) {
      +			if ( b ) {
      +				while ( (b = b.parentNode) ) {
      +					if ( b === a ) {
      +						return true;
      +					}
      +				}
      +			}
      +			return false;
      +		};
      +
      +	/* Sorting
      +	---------------------------------------------------------------------- */
      +
      +	// Document order sorting
      +	sortOrder = hasCompare ?
      +	function( a, b ) {
      +
      +		// Flag for duplicate removal
      +		if ( a === b ) {
      +			hasDuplicate = true;
      +			return 0;
      +		}
      +
      +		// Sort on method existence if only one input has compareDocumentPosition
      +		var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
      +		if ( compare ) {
      +			return compare;
      +		}
      +
      +		// Calculate position if both inputs belong to the same document
      +		compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?
      +			a.compareDocumentPosition( b ) :
      +
      +			// Otherwise we know they are disconnected
      +			1;
      +
      +		// Disconnected nodes
      +		if ( compare & 1 ||
      +			(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
      +
      +			// Choose the first element that is related to our preferred document
      +			if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
      +				return -1;
      +			}
      +			if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {
      +				return 1;
      +			}
      +
      +			// Maintain original order
      +			return sortInput ?
      +				( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
      +				0;
      +		}
      +
      +		return compare & 4 ? -1 : 1;
      +	} :
      +	function( a, b ) {
      +		// Exit early if the nodes are identical
      +		if ( a === b ) {
      +			hasDuplicate = true;
      +			return 0;
      +		}
      +
      +		var cur,
      +			i = 0,
      +			aup = a.parentNode,
      +			bup = b.parentNode,
      +			ap = [ a ],
      +			bp = [ b ];
      +
      +		// Parentless nodes are either documents or disconnected
      +		if ( !aup || !bup ) {
      +			return a === document ? -1 :
      +				b === document ? 1 :
      +				aup ? -1 :
      +				bup ? 1 :
      +				sortInput ?
      +				( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
      +				0;
      +
      +		// If the nodes are siblings, we can do a quick check
      +		} else if ( aup === bup ) {
      +			return siblingCheck( a, b );
      +		}
      +
      +		// Otherwise we need full lists of their ancestors for comparison
      +		cur = a;
      +		while ( (cur = cur.parentNode) ) {
      +			ap.unshift( cur );
      +		}
      +		cur = b;
      +		while ( (cur = cur.parentNode) ) {
      +			bp.unshift( cur );
      +		}
      +
      +		// Walk down the tree looking for a discrepancy
      +		while ( ap[i] === bp[i] ) {
      +			i++;
      +		}
      +
      +		return i ?
      +			// Do a sibling check if the nodes have a common ancestor
      +			siblingCheck( ap[i], bp[i] ) :
      +
      +			// Otherwise nodes in our document sort first
      +			ap[i] === preferredDoc ? -1 :
      +			bp[i] === preferredDoc ? 1 :
      +			0;
      +	};
      +
      +	return document;
      +};
      +
      +Sizzle.matches = function( expr, elements ) {
      +	return Sizzle( expr, null, null, elements );
      +};
      +
      +Sizzle.matchesSelector = function( elem, expr ) {
      +	// Set document vars if needed
      +	if ( ( elem.ownerDocument || elem ) !== document ) {
      +		setDocument( elem );
      +	}
      +
      +	if ( support.matchesSelector && documentIsHTML &&
      +		!nonnativeSelectorCache[ expr + " " ] &&
      +		( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
      +		( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {
      +
      +		try {
      +			var ret = matches.call( elem, expr );
      +
      +			// IE 9's matchesSelector returns false on disconnected nodes
      +			if ( ret || support.disconnectedMatch ||
      +					// As well, disconnected nodes are said to be in a document
      +					// fragment in IE 9
      +					elem.document && elem.document.nodeType !== 11 ) {
      +				return ret;
      +			}
      +		} catch (e) {
      +			nonnativeSelectorCache( expr, true );
      +		}
      +	}
      +
      +	return Sizzle( expr, document, null, [ elem ] ).length > 0;
      +};
      +
      +Sizzle.contains = function( context, elem ) {
      +	// Set document vars if needed
      +	if ( ( context.ownerDocument || context ) !== document ) {
      +		setDocument( context );
      +	}
      +	return contains( context, elem );
      +};
      +
      +Sizzle.attr = function( elem, name ) {
      +	// Set document vars if needed
      +	if ( ( elem.ownerDocument || elem ) !== document ) {
      +		setDocument( elem );
      +	}
      +
      +	var fn = Expr.attrHandle[ name.toLowerCase() ],
      +		// Don't get fooled by Object.prototype properties (jQuery #13807)
      +		val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
      +			fn( elem, name, !documentIsHTML ) :
      +			undefined;
      +
      +	return val !== undefined ?
      +		val :
      +		support.attributes || !documentIsHTML ?
      +			elem.getAttribute( name ) :
      +			(val = elem.getAttributeNode(name)) && val.specified ?
      +				val.value :
      +				null;
      +};
      +
      +Sizzle.escape = function( sel ) {
      +	return (sel + "").replace( rcssescape, fcssescape );
      +};
      +
      +Sizzle.error = function( msg ) {
      +	throw new Error( "Syntax error, unrecognized expression: " + msg );
      +};
      +
      +/**
      + * Document sorting and removing duplicates
      + * @param {ArrayLike} results
      + */
      +Sizzle.uniqueSort = function( results ) {
      +	var elem,
      +		duplicates = [],
      +		j = 0,
      +		i = 0;
      +
      +	// Unless we *know* we can detect duplicates, assume their presence
      +	hasDuplicate = !support.detectDuplicates;
      +	sortInput = !support.sortStable && results.slice( 0 );
      +	results.sort( sortOrder );
      +
      +	if ( hasDuplicate ) {
      +		while ( (elem = results[i++]) ) {
      +			if ( elem === results[ i ] ) {
      +				j = duplicates.push( i );
      +			}
      +		}
      +		while ( j-- ) {
      +			results.splice( duplicates[ j ], 1 );
      +		}
      +	}
      +
      +	// Clear input after sorting to release objects
      +	// See https://github.com/jquery/sizzle/pull/225
      +	sortInput = null;
      +
      +	return results;
      +};
      +
      +/**
      + * Utility function for retrieving the text value of an array of DOM nodes
      + * @param {Array|Element} elem
      + */
      +getText = Sizzle.getText = function( elem ) {
      +	var node,
      +		ret = "",
      +		i = 0,
      +		nodeType = elem.nodeType;
      +
      +	if ( !nodeType ) {
      +		// If no nodeType, this is expected to be an array
      +		while ( (node = elem[i++]) ) {
      +			// Do not traverse comment nodes
      +			ret += getText( node );
      +		}
      +	} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
      +		// Use textContent for elements
      +		// innerText usage removed for consistency of new lines (jQuery #11153)
      +		if ( typeof elem.textContent === "string" ) {
      +			return elem.textContent;
      +		} else {
      +			// Traverse its children
      +			for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
      +				ret += getText( elem );
      +			}
      +		}
      +	} else if ( nodeType === 3 || nodeType === 4 ) {
      +		return elem.nodeValue;
      +	}
      +	// Do not include comment or processing instruction nodes
      +
      +	return ret;
      +};
      +
      +Expr = Sizzle.selectors = {
      +
      +	// Can be adjusted by the user
      +	cacheLength: 50,
      +
      +	createPseudo: markFunction,
      +
      +	match: matchExpr,
      +
      +	attrHandle: {},
      +
      +	find: {},
      +
      +	relative: {
      +		">": { dir: "parentNode", first: true },
      +		" ": { dir: "parentNode" },
      +		"+": { dir: "previousSibling", first: true },
      +		"~": { dir: "previousSibling" }
      +	},
      +
      +	preFilter: {
      +		"ATTR": function( match ) {
      +			match[1] = match[1].replace( runescape, funescape );
      +
      +			// Move the given value to match[3] whether quoted or unquoted
      +			match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape );
      +
      +			if ( match[2] === "~=" ) {
      +				match[3] = " " + match[3] + " ";
      +			}
      +
      +			return match.slice( 0, 4 );
      +		},
      +
      +		"CHILD": function( match ) {
      +			/* matches from matchExpr["CHILD"]
      +				1 type (only|nth|...)
      +				2 what (child|of-type)
      +				3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
      +				4 xn-component of xn+y argument ([+-]?\d*n|)
      +				5 sign of xn-component
      +				6 x of xn-component
      +				7 sign of y-component
      +				8 y of y-component
      +			*/
      +			match[1] = match[1].toLowerCase();
      +
      +			if ( match[1].slice( 0, 3 ) === "nth" ) {
      +				// nth-* requires argument
      +				if ( !match[3] ) {
      +					Sizzle.error( match[0] );
      +				}
      +
      +				// numeric x and y parameters for Expr.filter.CHILD
      +				// remember that false/true cast respectively to 0/1
      +				match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
      +				match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );
      +
      +			// other types prohibit arguments
      +			} else if ( match[3] ) {
      +				Sizzle.error( match[0] );
      +			}
      +
      +			return match;
      +		},
      +
      +		"PSEUDO": function( match ) {
      +			var excess,
      +				unquoted = !match[6] && match[2];
      +
      +			if ( matchExpr["CHILD"].test( match[0] ) ) {
      +				return null;
      +			}
      +
      +			// Accept quoted arguments as-is
      +			if ( match[3] ) {
      +				match[2] = match[4] || match[5] || "";
      +
      +			// Strip excess characters from unquoted arguments
      +			} else if ( unquoted && rpseudo.test( unquoted ) &&
      +				// Get excess from tokenize (recursively)
      +				(excess = tokenize( unquoted, true )) &&
      +				// advance to the next closing parenthesis
      +				(excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
      +
      +				// excess is a negative index
      +				match[0] = match[0].slice( 0, excess );
      +				match[2] = unquoted.slice( 0, excess );
      +			}
      +
      +			// Return only captures needed by the pseudo filter method (type and argument)
      +			return match.slice( 0, 3 );
      +		}
      +	},
      +
      +	filter: {
      +
      +		"TAG": function( nodeNameSelector ) {
      +			var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
      +			return nodeNameSelector === "*" ?
      +				function() { return true; } :
      +				function( elem ) {
      +					return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
      +				};
      +		},
      +
      +		"CLASS": function( className ) {
      +			var pattern = classCache[ className + " " ];
      +
      +			return pattern ||
      +				(pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
      +				classCache( className, function( elem ) {
      +					return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" );
      +				});
      +		},
      +
      +		"ATTR": function( name, operator, check ) {
      +			return function( elem ) {
      +				var result = Sizzle.attr( elem, name );
      +
      +				if ( result == null ) {
      +					return operator === "!=";
      +				}
      +				if ( !operator ) {
      +					return true;
      +				}
      +
      +				result += "";
      +
      +				return operator === "=" ? result === check :
      +					operator === "!=" ? result !== check :
      +					operator === "^=" ? check && result.indexOf( check ) === 0 :
      +					operator === "*=" ? check && result.indexOf( check ) > -1 :
      +					operator === "$=" ? check && result.slice( -check.length ) === check :
      +					operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 :
      +					operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
      +					false;
      +			};
      +		},
      +
      +		"CHILD": function( type, what, argument, first, last ) {
      +			var simple = type.slice( 0, 3 ) !== "nth",
      +				forward = type.slice( -4 ) !== "last",
      +				ofType = what === "of-type";
      +
      +			return first === 1 && last === 0 ?
      +
      +				// Shortcut for :nth-*(n)
      +				function( elem ) {
      +					return !!elem.parentNode;
      +				} :
      +
      +				function( elem, context, xml ) {
      +					var cache, uniqueCache, outerCache, node, nodeIndex, start,
      +						dir = simple !== forward ? "nextSibling" : "previousSibling",
      +						parent = elem.parentNode,
      +						name = ofType && elem.nodeName.toLowerCase(),
      +						useCache = !xml && !ofType,
      +						diff = false;
      +
      +					if ( parent ) {
      +
      +						// :(first|last|only)-(child|of-type)
      +						if ( simple ) {
      +							while ( dir ) {
      +								node = elem;
      +								while ( (node = node[ dir ]) ) {
      +									if ( ofType ?
      +										node.nodeName.toLowerCase() === name :
      +										node.nodeType === 1 ) {
      +
      +										return false;
      +									}
      +								}
      +								// Reverse direction for :only-* (if we haven't yet done so)
      +								start = dir = type === "only" && !start && "nextSibling";
      +							}
      +							return true;
      +						}
      +
      +						start = [ forward ? parent.firstChild : parent.lastChild ];
      +
      +						// non-xml :nth-child(...) stores cache data on `parent`
      +						if ( forward && useCache ) {
      +
      +							// Seek `elem` from a previously-cached index
      +
      +							// ...in a gzip-friendly way
      +							node = parent;
      +							outerCache = node[ expando ] || (node[ expando ] = {});
      +
      +							// Support: IE <9 only
      +							// Defend against cloned attroperties (jQuery gh-1709)
      +							uniqueCache = outerCache[ node.uniqueID ] ||
      +								(outerCache[ node.uniqueID ] = {});
      +
      +							cache = uniqueCache[ type ] || [];
      +							nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
      +							diff = nodeIndex && cache[ 2 ];
      +							node = nodeIndex && parent.childNodes[ nodeIndex ];
      +
      +							while ( (node = ++nodeIndex && node && node[ dir ] ||
      +
      +								// Fallback to seeking `elem` from the start
      +								(diff = nodeIndex = 0) || start.pop()) ) {
      +
      +								// When found, cache indexes on `parent` and break
      +								if ( node.nodeType === 1 && ++diff && node === elem ) {
      +									uniqueCache[ type ] = [ dirruns, nodeIndex, diff ];
      +									break;
      +								}
      +							}
      +
      +						} else {
      +							// Use previously-cached element index if available
      +							if ( useCache ) {
      +								// ...in a gzip-friendly way
      +								node = elem;
      +								outerCache = node[ expando ] || (node[ expando ] = {});
      +
      +								// Support: IE <9 only
      +								// Defend against cloned attroperties (jQuery gh-1709)
      +								uniqueCache = outerCache[ node.uniqueID ] ||
      +									(outerCache[ node.uniqueID ] = {});
      +
      +								cache = uniqueCache[ type ] || [];
      +								nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
      +								diff = nodeIndex;
      +							}
      +
      +							// xml :nth-child(...)
      +							// or :nth-last-child(...) or :nth(-last)?-of-type(...)
      +							if ( diff === false ) {
      +								// Use the same loop as above to seek `elem` from the start
      +								while ( (node = ++nodeIndex && node && node[ dir ] ||
      +									(diff = nodeIndex = 0) || start.pop()) ) {
      +
      +									if ( ( ofType ?
      +										node.nodeName.toLowerCase() === name :
      +										node.nodeType === 1 ) &&
      +										++diff ) {
      +
      +										// Cache the index of each encountered element
      +										if ( useCache ) {
      +											outerCache = node[ expando ] || (node[ expando ] = {});
      +
      +											// Support: IE <9 only
      +											// Defend against cloned attroperties (jQuery gh-1709)
      +											uniqueCache = outerCache[ node.uniqueID ] ||
      +												(outerCache[ node.uniqueID ] = {});
      +
      +											uniqueCache[ type ] = [ dirruns, diff ];
      +										}
      +
      +										if ( node === elem ) {
      +											break;
      +										}
      +									}
      +								}
      +							}
      +						}
      +
      +						// Incorporate the offset, then check against cycle size
      +						diff -= last;
      +						return diff === first || ( diff % first === 0 && diff / first >= 0 );
      +					}
      +				};
      +		},
      +
      +		"PSEUDO": function( pseudo, argument ) {
      +			// pseudo-class names are case-insensitive
      +			// http://www.w3.org/TR/selectors/#pseudo-classes
      +			// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
      +			// Remember that setFilters inherits from pseudos
      +			var args,
      +				fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
      +					Sizzle.error( "unsupported pseudo: " + pseudo );
      +
      +			// The user may use createPseudo to indicate that
      +			// arguments are needed to create the filter function
      +			// just as Sizzle does
      +			if ( fn[ expando ] ) {
      +				return fn( argument );
      +			}
      +
      +			// But maintain support for old signatures
      +			if ( fn.length > 1 ) {
      +				args = [ pseudo, pseudo, "", argument ];
      +				return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
      +					markFunction(function( seed, matches ) {
      +						var idx,
      +							matched = fn( seed, argument ),
      +							i = matched.length;
      +						while ( i-- ) {
      +							idx = indexOf( seed, matched[i] );
      +							seed[ idx ] = !( matches[ idx ] = matched[i] );
      +						}
      +					}) :
      +					function( elem ) {
      +						return fn( elem, 0, args );
      +					};
      +			}
      +
      +			return fn;
      +		}
      +	},
      +
      +	pseudos: {
      +		// Potentially complex pseudos
      +		"not": markFunction(function( selector ) {
      +			// Trim the selector passed to compile
      +			// to avoid treating leading and trailing
      +			// spaces as combinators
      +			var input = [],
      +				results = [],
      +				matcher = compile( selector.replace( rtrim, "$1" ) );
      +
      +			return matcher[ expando ] ?
      +				markFunction(function( seed, matches, context, xml ) {
      +					var elem,
      +						unmatched = matcher( seed, null, xml, [] ),
      +						i = seed.length;
      +
      +					// Match elements unmatched by `matcher`
      +					while ( i-- ) {
      +						if ( (elem = unmatched[i]) ) {
      +							seed[i] = !(matches[i] = elem);
      +						}
      +					}
      +				}) :
      +				function( elem, context, xml ) {
      +					input[0] = elem;
      +					matcher( input, null, xml, results );
      +					// Don't keep the element (issue #299)
      +					input[0] = null;
      +					return !results.pop();
      +				};
      +		}),
      +
      +		"has": markFunction(function( selector ) {
      +			return function( elem ) {
      +				return Sizzle( selector, elem ).length > 0;
      +			};
      +		}),
      +
      +		"contains": markFunction(function( text ) {
      +			text = text.replace( runescape, funescape );
      +			return function( elem ) {
      +				return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1;
      +			};
      +		}),
      +
      +		// "Whether an element is represented by a :lang() selector
      +		// is based solely on the element's language value
      +		// being equal to the identifier C,
      +		// or beginning with the identifier C immediately followed by "-".
      +		// The matching of C against the element's language value is performed case-insensitively.
      +		// The identifier C does not have to be a valid language name."
      +		// http://www.w3.org/TR/selectors/#lang-pseudo
      +		"lang": markFunction( function( lang ) {
      +			// lang value must be a valid identifier
      +			if ( !ridentifier.test(lang || "") ) {
      +				Sizzle.error( "unsupported lang: " + lang );
      +			}
      +			lang = lang.replace( runescape, funescape ).toLowerCase();
      +			return function( elem ) {
      +				var elemLang;
      +				do {
      +					if ( (elemLang = documentIsHTML ?
      +						elem.lang :
      +						elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) {
      +
      +						elemLang = elemLang.toLowerCase();
      +						return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
      +					}
      +				} while ( (elem = elem.parentNode) && elem.nodeType === 1 );
      +				return false;
      +			};
      +		}),
      +
      +		// Miscellaneous
      +		"target": function( elem ) {
      +			var hash = window.location && window.location.hash;
      +			return hash && hash.slice( 1 ) === elem.id;
      +		},
      +
      +		"root": function( elem ) {
      +			return elem === docElem;
      +		},
      +
      +		"focus": function( elem ) {
      +			return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
      +		},
      +
      +		// Boolean properties
      +		"enabled": createDisabledPseudo( false ),
      +		"disabled": createDisabledPseudo( true ),
      +
      +		"checked": function( elem ) {
      +			// In CSS3, :checked should return both checked and selected elements
      +			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
      +			var nodeName = elem.nodeName.toLowerCase();
      +			return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
      +		},
      +
      +		"selected": function( elem ) {
      +			// Accessing this property makes selected-by-default
      +			// options in Safari work properly
      +			if ( elem.parentNode ) {
      +				elem.parentNode.selectedIndex;
      +			}
      +
      +			return elem.selected === true;
      +		},
      +
      +		// Contents
      +		"empty": function( elem ) {
      +			// http://www.w3.org/TR/selectors/#empty-pseudo
      +			// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
      +			//   but not by others (comment: 8; processing instruction: 7; etc.)
      +			// nodeType < 6 works because attributes (2) do not appear as children
      +			for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
      +				if ( elem.nodeType < 6 ) {
      +					return false;
      +				}
      +			}
      +			return true;
      +		},
      +
      +		"parent": function( elem ) {
      +			return !Expr.pseudos["empty"]( elem );
      +		},
      +
      +		// Element/input types
      +		"header": function( elem ) {
      +			return rheader.test( elem.nodeName );
      +		},
      +
      +		"input": function( elem ) {
      +			return rinputs.test( elem.nodeName );
      +		},
      +
      +		"button": function( elem ) {
      +			var name = elem.nodeName.toLowerCase();
      +			return name === "input" && elem.type === "button" || name === "button";
      +		},
      +
      +		"text": function( elem ) {
      +			var attr;
      +			return elem.nodeName.toLowerCase() === "input" &&
      +				elem.type === "text" &&
      +
      +				// Support: IE<8
      +				// New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
      +				( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" );
      +		},
      +
      +		// Position-in-collection
      +		"first": createPositionalPseudo(function() {
      +			return [ 0 ];
      +		}),
      +
      +		"last": createPositionalPseudo(function( matchIndexes, length ) {
      +			return [ length - 1 ];
      +		}),
      +
      +		"eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
      +			return [ argument < 0 ? argument + length : argument ];
      +		}),
      +
      +		"even": createPositionalPseudo(function( matchIndexes, length ) {
      +			var i = 0;
      +			for ( ; i < length; i += 2 ) {
      +				matchIndexes.push( i );
      +			}
      +			return matchIndexes;
      +		}),
      +
      +		"odd": createPositionalPseudo(function( matchIndexes, length ) {
      +			var i = 1;
      +			for ( ; i < length; i += 2 ) {
      +				matchIndexes.push( i );
      +			}
      +			return matchIndexes;
      +		}),
      +
      +		"lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
      +			var i = argument < 0 ?
      +				argument + length :
      +				argument > length ?
      +					length :
      +					argument;
      +			for ( ; --i >= 0; ) {
      +				matchIndexes.push( i );
      +			}
      +			return matchIndexes;
      +		}),
      +
      +		"gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
      +			var i = argument < 0 ? argument + length : argument;
      +			for ( ; ++i < length; ) {
      +				matchIndexes.push( i );
      +			}
      +			return matchIndexes;
      +		})
      +	}
      +};
      +
      +Expr.pseudos["nth"] = Expr.pseudos["eq"];
      +
      +// Add button/input type pseudos
      +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
      +	Expr.pseudos[ i ] = createInputPseudo( i );
      +}
      +for ( i in { submit: true, reset: true } ) {
      +	Expr.pseudos[ i ] = createButtonPseudo( i );
      +}
      +
      +// Easy API for creating new setFilters
      +function setFilters() {}
      +setFilters.prototype = Expr.filters = Expr.pseudos;
      +Expr.setFilters = new setFilters();
      +
      +tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
      +	var matched, match, tokens, type,
      +		soFar, groups, preFilters,
      +		cached = tokenCache[ selector + " " ];
      +
      +	if ( cached ) {
      +		return parseOnly ? 0 : cached.slice( 0 );
      +	}
      +
      +	soFar = selector;
      +	groups = [];
      +	preFilters = Expr.preFilter;
      +
      +	while ( soFar ) {
      +
      +		// Comma and first run
      +		if ( !matched || (match = rcomma.exec( soFar )) ) {
      +			if ( match ) {
      +				// Don't consume trailing commas as valid
      +				soFar = soFar.slice( match[0].length ) || soFar;
      +			}
      +			groups.push( (tokens = []) );
      +		}
      +
      +		matched = false;
      +
      +		// Combinators
      +		if ( (match = rcombinators.exec( soFar )) ) {
      +			matched = match.shift();
      +			tokens.push({
      +				value: matched,
      +				// Cast descendant combinators to space
      +				type: match[0].replace( rtrim, " " )
      +			});
      +			soFar = soFar.slice( matched.length );
      +		}
      +
      +		// Filters
      +		for ( type in Expr.filter ) {
      +			if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
      +				(match = preFilters[ type ]( match ))) ) {
      +				matched = match.shift();
      +				tokens.push({
      +					value: matched,
      +					type: type,
      +					matches: match
      +				});
      +				soFar = soFar.slice( matched.length );
      +			}
      +		}
      +
      +		if ( !matched ) {
      +			break;
      +		}
      +	}
      +
      +	// Return the length of the invalid excess
      +	// if we're just parsing
      +	// Otherwise, throw an error or return tokens
      +	return parseOnly ?
      +		soFar.length :
      +		soFar ?
      +			Sizzle.error( selector ) :
      +			// Cache the tokens
      +			tokenCache( selector, groups ).slice( 0 );
      +};
      +
      +function toSelector( tokens ) {
      +	var i = 0,
      +		len = tokens.length,
      +		selector = "";
      +	for ( ; i < len; i++ ) {
      +		selector += tokens[i].value;
      +	}
      +	return selector;
      +}
      +
      +function addCombinator( matcher, combinator, base ) {
      +	var dir = combinator.dir,
      +		skip = combinator.next,
      +		key = skip || dir,
      +		checkNonElements = base && key === "parentNode",
      +		doneName = done++;
      +
      +	return combinator.first ?
      +		// Check against closest ancestor/preceding element
      +		function( elem, context, xml ) {
      +			while ( (elem = elem[ dir ]) ) {
      +				if ( elem.nodeType === 1 || checkNonElements ) {
      +					return matcher( elem, context, xml );
      +				}
      +			}
      +			return false;
      +		} :
      +
      +		// Check against all ancestor/preceding elements
      +		function( elem, context, xml ) {
      +			var oldCache, uniqueCache, outerCache,
      +				newCache = [ dirruns, doneName ];
      +
      +			// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching
      +			if ( xml ) {
      +				while ( (elem = elem[ dir ]) ) {
      +					if ( elem.nodeType === 1 || checkNonElements ) {
      +						if ( matcher( elem, context, xml ) ) {
      +							return true;
      +						}
      +					}
      +				}
      +			} else {
      +				while ( (elem = elem[ dir ]) ) {
      +					if ( elem.nodeType === 1 || checkNonElements ) {
      +						outerCache = elem[ expando ] || (elem[ expando ] = {});
      +
      +						// Support: IE <9 only
      +						// Defend against cloned attroperties (jQuery gh-1709)
      +						uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {});
      +
      +						if ( skip && skip === elem.nodeName.toLowerCase() ) {
      +							elem = elem[ dir ] || elem;
      +						} else if ( (oldCache = uniqueCache[ key ]) &&
      +							oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
      +
      +							// Assign to newCache so results back-propagate to previous elements
      +							return (newCache[ 2 ] = oldCache[ 2 ]);
      +						} else {
      +							// Reuse newcache so results back-propagate to previous elements
      +							uniqueCache[ key ] = newCache;
      +
      +							// A match means we're done; a fail means we have to keep checking
      +							if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {
      +								return true;
      +							}
      +						}
      +					}
      +				}
      +			}
      +			return false;
      +		};
      +}
      +
      +function elementMatcher( matchers ) {
      +	return matchers.length > 1 ?
      +		function( elem, context, xml ) {
      +			var i = matchers.length;
      +			while ( i-- ) {
      +				if ( !matchers[i]( elem, context, xml ) ) {
      +					return false;
      +				}
      +			}
      +			return true;
      +		} :
      +		matchers[0];
      +}
      +
      +function multipleContexts( selector, contexts, results ) {
      +	var i = 0,
      +		len = contexts.length;
      +	for ( ; i < len; i++ ) {
      +		Sizzle( selector, contexts[i], results );
      +	}
      +	return results;
      +}
      +
      +function condense( unmatched, map, filter, context, xml ) {
      +	var elem,
      +		newUnmatched = [],
      +		i = 0,
      +		len = unmatched.length,
      +		mapped = map != null;
      +
      +	for ( ; i < len; i++ ) {
      +		if ( (elem = unmatched[i]) ) {
      +			if ( !filter || filter( elem, context, xml ) ) {
      +				newUnmatched.push( elem );
      +				if ( mapped ) {
      +					map.push( i );
      +				}
      +			}
      +		}
      +	}
      +
      +	return newUnmatched;
      +}
      +
      +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
      +	if ( postFilter && !postFilter[ expando ] ) {
      +		postFilter = setMatcher( postFilter );
      +	}
      +	if ( postFinder && !postFinder[ expando ] ) {
      +		postFinder = setMatcher( postFinder, postSelector );
      +	}
      +	return markFunction(function( seed, results, context, xml ) {
      +		var temp, i, elem,
      +			preMap = [],
      +			postMap = [],
      +			preexisting = results.length,
      +
      +			// Get initial elements from seed or context
      +			elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
      +
      +			// Prefilter to get matcher input, preserving a map for seed-results synchronization
      +			matcherIn = preFilter && ( seed || !selector ) ?
      +				condense( elems, preMap, preFilter, context, xml ) :
      +				elems,
      +
      +			matcherOut = matcher ?
      +				// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
      +				postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
      +
      +					// ...intermediate processing is necessary
      +					[] :
      +
      +					// ...otherwise use results directly
      +					results :
      +				matcherIn;
      +
      +		// Find primary matches
      +		if ( matcher ) {
      +			matcher( matcherIn, matcherOut, context, xml );
      +		}
      +
      +		// Apply postFilter
      +		if ( postFilter ) {
      +			temp = condense( matcherOut, postMap );
      +			postFilter( temp, [], context, xml );
      +
      +			// Un-match failing elements by moving them back to matcherIn
      +			i = temp.length;
      +			while ( i-- ) {
      +				if ( (elem = temp[i]) ) {
      +					matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
      +				}
      +			}
      +		}
      +
      +		if ( seed ) {
      +			if ( postFinder || preFilter ) {
      +				if ( postFinder ) {
      +					// Get the final matcherOut by condensing this intermediate into postFinder contexts
      +					temp = [];
      +					i = matcherOut.length;
      +					while ( i-- ) {
      +						if ( (elem = matcherOut[i]) ) {
      +							// Restore matcherIn since elem is not yet a final match
      +							temp.push( (matcherIn[i] = elem) );
      +						}
      +					}
      +					postFinder( null, (matcherOut = []), temp, xml );
      +				}
      +
      +				// Move matched elements from seed to results to keep them synchronized
      +				i = matcherOut.length;
      +				while ( i-- ) {
      +					if ( (elem = matcherOut[i]) &&
      +						(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {
      +
      +						seed[temp] = !(results[temp] = elem);
      +					}
      +				}
      +			}
      +
      +		// Add elements to results, through postFinder if defined
      +		} else {
      +			matcherOut = condense(
      +				matcherOut === results ?
      +					matcherOut.splice( preexisting, matcherOut.length ) :
      +					matcherOut
      +			);
      +			if ( postFinder ) {
      +				postFinder( null, results, matcherOut, xml );
      +			} else {
      +				push.apply( results, matcherOut );
      +			}
      +		}
      +	});
      +}
      +
      +function matcherFromTokens( tokens ) {
      +	var checkContext, matcher, j,
      +		len = tokens.length,
      +		leadingRelative = Expr.relative[ tokens[0].type ],
      +		implicitRelative = leadingRelative || Expr.relative[" "],
      +		i = leadingRelative ? 1 : 0,
      +
      +		// The foundational matcher ensures that elements are reachable from top-level context(s)
      +		matchContext = addCombinator( function( elem ) {
      +			return elem === checkContext;
      +		}, implicitRelative, true ),
      +		matchAnyContext = addCombinator( function( elem ) {
      +			return indexOf( checkContext, elem ) > -1;
      +		}, implicitRelative, true ),
      +		matchers = [ function( elem, context, xml ) {
      +			var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
      +				(checkContext = context).nodeType ?
      +					matchContext( elem, context, xml ) :
      +					matchAnyContext( elem, context, xml ) );
      +			// Avoid hanging onto element (issue #299)
      +			checkContext = null;
      +			return ret;
      +		} ];
      +
      +	for ( ; i < len; i++ ) {
      +		if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
      +			matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
      +		} else {
      +			matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
      +
      +			// Return special upon seeing a positional matcher
      +			if ( matcher[ expando ] ) {
      +				// Find the next relative operator (if any) for proper handling
      +				j = ++i;
      +				for ( ; j < len; j++ ) {
      +					if ( Expr.relative[ tokens[j].type ] ) {
      +						break;
      +					}
      +				}
      +				return setMatcher(
      +					i > 1 && elementMatcher( matchers ),
      +					i > 1 && toSelector(
      +						// If the preceding token was a descendant combinator, insert an implicit any-element `*`
      +						tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
      +					).replace( rtrim, "$1" ),
      +					matcher,
      +					i < j && matcherFromTokens( tokens.slice( i, j ) ),
      +					j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
      +					j < len && toSelector( tokens )
      +				);
      +			}
      +			matchers.push( matcher );
      +		}
      +	}
      +
      +	return elementMatcher( matchers );
      +}
      +
      +function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
      +	var bySet = setMatchers.length > 0,
      +		byElement = elementMatchers.length > 0,
      +		superMatcher = function( seed, context, xml, results, outermost ) {
      +			var elem, j, matcher,
      +				matchedCount = 0,
      +				i = "0",
      +				unmatched = seed && [],
      +				setMatched = [],
      +				contextBackup = outermostContext,
      +				// We must always have either seed elements or outermost context
      +				elems = seed || byElement && Expr.find["TAG"]( "*", outermost ),
      +				// Use integer dirruns iff this is the outermost matcher
      +				dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
      +				len = elems.length;
      +
      +			if ( outermost ) {
      +				outermostContext = context === document || context || outermost;
      +			}
      +
      +			// Add elements passing elementMatchers directly to results
      +			// Support: IE<9, Safari
      +			// Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id
      +			for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
      +				if ( byElement && elem ) {
      +					j = 0;
      +					if ( !context && elem.ownerDocument !== document ) {
      +						setDocument( elem );
      +						xml = !documentIsHTML;
      +					}
      +					while ( (matcher = elementMatchers[j++]) ) {
      +						if ( matcher( elem, context || document, xml) ) {
      +							results.push( elem );
      +							break;
      +						}
      +					}
      +					if ( outermost ) {
      +						dirruns = dirrunsUnique;
      +					}
      +				}
      +
      +				// Track unmatched elements for set filters
      +				if ( bySet ) {
      +					// They will have gone through all possible matchers
      +					if ( (elem = !matcher && elem) ) {
      +						matchedCount--;
      +					}
      +
      +					// Lengthen the array for every element, matched or not
      +					if ( seed ) {
      +						unmatched.push( elem );
      +					}
      +				}
      +			}
      +
      +			// `i` is now the count of elements visited above, and adding it to `matchedCount`
      +			// makes the latter nonnegative.
      +			matchedCount += i;
      +
      +			// Apply set filters to unmatched elements
      +			// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`
      +			// equals `i`), unless we didn't visit _any_ elements in the above loop because we have
      +			// no element matchers and no seed.
      +			// Incrementing an initially-string "0" `i` allows `i` to remain a string only in that
      +			// case, which will result in a "00" `matchedCount` that differs from `i` but is also
      +			// numerically zero.
      +			if ( bySet && i !== matchedCount ) {
      +				j = 0;
      +				while ( (matcher = setMatchers[j++]) ) {
      +					matcher( unmatched, setMatched, context, xml );
      +				}
      +
      +				if ( seed ) {
      +					// Reintegrate element matches to eliminate the need for sorting
      +					if ( matchedCount > 0 ) {
      +						while ( i-- ) {
      +							if ( !(unmatched[i] || setMatched[i]) ) {
      +								setMatched[i] = pop.call( results );
      +							}
      +						}
      +					}
      +
      +					// Discard index placeholder values to get only actual matches
      +					setMatched = condense( setMatched );
      +				}
      +
      +				// Add matches to results
      +				push.apply( results, setMatched );
      +
      +				// Seedless set matches succeeding multiple successful matchers stipulate sorting
      +				if ( outermost && !seed && setMatched.length > 0 &&
      +					( matchedCount + setMatchers.length ) > 1 ) {
      +
      +					Sizzle.uniqueSort( results );
      +				}
      +			}
      +
      +			// Override manipulation of globals by nested matchers
      +			if ( outermost ) {
      +				dirruns = dirrunsUnique;
      +				outermostContext = contextBackup;
      +			}
      +
      +			return unmatched;
      +		};
      +
      +	return bySet ?
      +		markFunction( superMatcher ) :
      +		superMatcher;
      +}
      +
      +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {
      +	var i,
      +		setMatchers = [],
      +		elementMatchers = [],
      +		cached = compilerCache[ selector + " " ];
      +
      +	if ( !cached ) {
      +		// Generate a function of recursive functions that can be used to check each element
      +		if ( !match ) {
      +			match = tokenize( selector );
      +		}
      +		i = match.length;
      +		while ( i-- ) {
      +			cached = matcherFromTokens( match[i] );
      +			if ( cached[ expando ] ) {
      +				setMatchers.push( cached );
      +			} else {
      +				elementMatchers.push( cached );
      +			}
      +		}
      +
      +		// Cache the compiled function
      +		cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
      +
      +		// Save selector and tokenization
      +		cached.selector = selector;
      +	}
      +	return cached;
      +};
      +
      +/**
      + * A low-level selection function that works with Sizzle's compiled
      + *  selector functions
      + * @param {String|Function} selector A selector or a pre-compiled
      + *  selector function built with Sizzle.compile
      + * @param {Element} context
      + * @param {Array} [results]
      + * @param {Array} [seed] A set of elements to match against
      + */
      +select = Sizzle.select = function( selector, context, results, seed ) {
      +	var i, tokens, token, type, find,
      +		compiled = typeof selector === "function" && selector,
      +		match = !seed && tokenize( (selector = compiled.selector || selector) );
      +
      +	results = results || [];
      +
      +	// Try to minimize operations if there is only one selector in the list and no seed
      +	// (the latter of which guarantees us context)
      +	if ( match.length === 1 ) {
      +
      +		// Reduce context if the leading compound selector is an ID
      +		tokens = match[0] = match[0].slice( 0 );
      +		if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
      +				context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) {
      +
      +			context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
      +			if ( !context ) {
      +				return results;
      +
      +			// Precompiled matchers will still verify ancestry, so step up a level
      +			} else if ( compiled ) {
      +				context = context.parentNode;
      +			}
      +
      +			selector = selector.slice( tokens.shift().value.length );
      +		}
      +
      +		// Fetch a seed set for right-to-left matching
      +		i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
      +		while ( i-- ) {
      +			token = tokens[i];
      +
      +			// Abort if we hit a combinator
      +			if ( Expr.relative[ (type = token.type) ] ) {
      +				break;
      +			}
      +			if ( (find = Expr.find[ type ]) ) {
      +				// Search, expanding context for leading sibling combinators
      +				if ( (seed = find(
      +					token.matches[0].replace( runescape, funescape ),
      +					rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
      +				)) ) {
      +
      +					// If seed is empty or no tokens remain, we can return early
      +					tokens.splice( i, 1 );
      +					selector = seed.length && toSelector( tokens );
      +					if ( !selector ) {
      +						push.apply( results, seed );
      +						return results;
      +					}
      +
      +					break;
      +				}
      +			}
      +		}
      +	}
      +
      +	// Compile and execute a filtering function if one is not provided
      +	// Provide `match` to avoid retokenization if we modified the selector above
      +	( compiled || compile( selector, match ) )(
      +		seed,
      +		context,
      +		!documentIsHTML,
      +		results,
      +		!context || rsibling.test( selector ) && testContext( context.parentNode ) || context
      +	);
      +	return results;
      +};
      +
      +// One-time assignments
      +
      +// Sort stability
      +support.sortStable = expando.split("").sort( sortOrder ).join("") === expando;
      +
      +// Support: Chrome 14-35+
      +// Always assume duplicates if they aren't passed to the comparison function
      +support.detectDuplicates = !!hasDuplicate;
      +
      +// Initialize against the default document
      +setDocument();
      +
      +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
      +// Detached nodes confoundingly follow *each other*
      +support.sortDetached = assert(function( el ) {
      +	// Should return 1, but returns 4 (following)
      +	return el.compareDocumentPosition( document.createElement("fieldset") ) & 1;
      +});
      +
      +// Support: IE<8
      +// Prevent attribute/property "interpolation"
      +// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
      +if ( !assert(function( el ) {
      +	el.innerHTML = "<a href='#'></a>";
      +	return el.firstChild.getAttribute("href") === "#" ;
      +}) ) {
      +	addHandle( "type|href|height|width", function( elem, name, isXML ) {
      +		if ( !isXML ) {
      +			return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
      +		}
      +	});
      +}
      +
      +// Support: IE<9
      +// Use defaultValue in place of getAttribute("value")
      +if ( !support.attributes || !assert(function( el ) {
      +	el.innerHTML = "<input/>";
      +	el.firstChild.setAttribute( "value", "" );
      +	return el.firstChild.getAttribute( "value" ) === "";
      +}) ) {
      +	addHandle( "value", function( elem, name, isXML ) {
      +		if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
      +			return elem.defaultValue;
      +		}
      +	});
      +}
      +
      +// Support: IE<9
      +// Use getAttributeNode to fetch booleans when getAttribute lies
      +if ( !assert(function( el ) {
      +	return el.getAttribute("disabled") == null;
      +}) ) {
      +	addHandle( booleans, function( elem, name, isXML ) {
      +		var val;
      +		if ( !isXML ) {
      +			return elem[ name ] === true ? name.toLowerCase() :
      +					(val = elem.getAttributeNode( name )) && val.specified ?
      +					val.value :
      +				null;
      +		}
      +	});
      +}
      +
      +return Sizzle;
      +
      +})( window );
      +
      +
      +
      +jQuery.find = Sizzle;
      +jQuery.expr = Sizzle.selectors;
      +
      +// Deprecated
      +jQuery.expr[ ":" ] = jQuery.expr.pseudos;
      +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;
      +jQuery.text = Sizzle.getText;
      +jQuery.isXMLDoc = Sizzle.isXML;
      +jQuery.contains = Sizzle.contains;
      +jQuery.escapeSelector = Sizzle.escape;
      +
      +
      +
      +
      +var dir = function( elem, dir, until ) {
      +	var matched = [],
      +		truncate = until !== undefined;
      +
      +	while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {
      +		if ( elem.nodeType === 1 ) {
      +			if ( truncate && jQuery( elem ).is( until ) ) {
      +				break;
      +			}
      +			matched.push( elem );
      +		}
      +	}
      +	return matched;
      +};
      +
      +
      +var siblings = function( n, elem ) {
      +	var matched = [];
      +
      +	for ( ; n; n = n.nextSibling ) {
      +		if ( n.nodeType === 1 && n !== elem ) {
      +			matched.push( n );
      +		}
      +	}
      +
      +	return matched;
      +};
      +
      +
      +var rneedsContext = jQuery.expr.match.needsContext;
      +
      +
      +
      +function nodeName( elem, name ) {
      +
      +  return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
      +
      +};
      +var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i );
      +
      +
      +
      +// Implement the identical functionality for filter and not
      +function winnow( elements, qualifier, not ) {
      +	if ( isFunction( qualifier ) ) {
      +		return jQuery.grep( elements, function( elem, i ) {
      +			return !!qualifier.call( elem, i, elem ) !== not;
      +		} );
      +	}
      +
      +	// Single element
      +	if ( qualifier.nodeType ) {
      +		return jQuery.grep( elements, function( elem ) {
      +			return ( elem === qualifier ) !== not;
      +		} );
      +	}
      +
      +	// Arraylike of elements (jQuery, arguments, Array)
      +	if ( typeof qualifier !== "string" ) {
      +		return jQuery.grep( elements, function( elem ) {
      +			return ( indexOf.call( qualifier, elem ) > -1 ) !== not;
      +		} );
      +	}
      +
      +	// Filtered directly for both simple and complex selectors
      +	return jQuery.filter( qualifier, elements, not );
      +}
      +
      +jQuery.filter = function( expr, elems, not ) {
      +	var elem = elems[ 0 ];
      +
      +	if ( not ) {
      +		expr = ":not(" + expr + ")";
      +	}
      +
      +	if ( elems.length === 1 && elem.nodeType === 1 ) {
      +		return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];
      +	}
      +
      +	return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
      +		return elem.nodeType === 1;
      +	} ) );
      +};
      +
      +jQuery.fn.extend( {
      +	find: function( selector ) {
      +		var i, ret,
      +			len = this.length,
      +			self = this;
      +
      +		if ( typeof selector !== "string" ) {
      +			return this.pushStack( jQuery( selector ).filter( function() {
      +				for ( i = 0; i < len; i++ ) {
      +					if ( jQuery.contains( self[ i ], this ) ) {
      +						return true;
      +					}
      +				}
      +			} ) );
      +		}
      +
      +		ret = this.pushStack( [] );
      +
      +		for ( i = 0; i < len; i++ ) {
      +			jQuery.find( selector, self[ i ], ret );
      +		}
      +
      +		return len > 1 ? jQuery.uniqueSort( ret ) : ret;
      +	},
      +	filter: function( selector ) {
      +		return this.pushStack( winnow( this, selector || [], false ) );
      +	},
      +	not: function( selector ) {
      +		return this.pushStack( winnow( this, selector || [], true ) );
      +	},
      +	is: function( selector ) {
      +		return !!winnow(
      +			this,
      +
      +			// If this is a positional/relative selector, check membership in the returned set
      +			// so $("p:first").is("p:last") won't return true for a doc with two "p".
      +			typeof selector === "string" && rneedsContext.test( selector ) ?
      +				jQuery( selector ) :
      +				selector || [],
      +			false
      +		).length;
      +	}
      +} );
      +
      +
      +// Initialize a jQuery object
      +
      +
      +// A central reference to the root jQuery(document)
      +var rootjQuery,
      +
      +	// A simple way to check for HTML strings
      +	// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
      +	// Strict HTML recognition (#11290: must start with <)
      +	// Shortcut simple #id case for speed
      +	rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,
      +
      +	init = jQuery.fn.init = function( selector, context, root ) {
      +		var match, elem;
      +
      +		// HANDLE: $(""), $(null), $(undefined), $(false)
      +		if ( !selector ) {
      +			return this;
      +		}
      +
      +		// Method init() accepts an alternate rootjQuery
      +		// so migrate can support jQuery.sub (gh-2101)
      +		root = root || rootjQuery;
      +
      +		// Handle HTML strings
      +		if ( typeof selector === "string" ) {
      +			if ( selector[ 0 ] === "<" &&
      +				selector[ selector.length - 1 ] === ">" &&
      +				selector.length >= 3 ) {
      +
      +				// Assume that strings that start and end with <> are HTML and skip the regex check
      +				match = [ null, selector, null ];
      +
      +			} else {
      +				match = rquickExpr.exec( selector );
      +			}
      +
      +			// Match html or make sure no context is specified for #id
      +			if ( match && ( match[ 1 ] || !context ) ) {
      +
      +				// HANDLE: $(html) -> $(array)
      +				if ( match[ 1 ] ) {
      +					context = context instanceof jQuery ? context[ 0 ] : context;
      +
      +					// Option to run scripts is true for back-compat
      +					// Intentionally let the error be thrown if parseHTML is not present
      +					jQuery.merge( this, jQuery.parseHTML(
      +						match[ 1 ],
      +						context && context.nodeType ? context.ownerDocument || context : document,
      +						true
      +					) );
      +
      +					// HANDLE: $(html, props)
      +					if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {
      +						for ( match in context ) {
      +
      +							// Properties of context are called as methods if possible
      +							if ( isFunction( this[ match ] ) ) {
      +								this[ match ]( context[ match ] );
      +
      +							// ...and otherwise set as attributes
      +							} else {
      +								this.attr( match, context[ match ] );
      +							}
      +						}
      +					}
      +
      +					return this;
      +
      +				// HANDLE: $(#id)
      +				} else {
      +					elem = document.getElementById( match[ 2 ] );
      +
      +					if ( elem ) {
      +
      +						// Inject the element directly into the jQuery object
      +						this[ 0 ] = elem;
      +						this.length = 1;
      +					}
      +					return this;
      +				}
      +
      +			// HANDLE: $(expr, $(...))
      +			} else if ( !context || context.jquery ) {
      +				return ( context || root ).find( selector );
      +
      +			// HANDLE: $(expr, context)
      +			// (which is just equivalent to: $(context).find(expr)
      +			} else {
      +				return this.constructor( context ).find( selector );
      +			}
      +
      +		// HANDLE: $(DOMElement)
      +		} else if ( selector.nodeType ) {
      +			this[ 0 ] = selector;
      +			this.length = 1;
      +			return this;
      +
      +		// HANDLE: $(function)
      +		// Shortcut for document ready
      +		} else if ( isFunction( selector ) ) {
      +			return root.ready !== undefined ?
      +				root.ready( selector ) :
      +
      +				// Execute immediately if ready is not present
      +				selector( jQuery );
      +		}
      +
      +		return jQuery.makeArray( selector, this );
      +	};
      +
      +// Give the init function the jQuery prototype for later instantiation
      +init.prototype = jQuery.fn;
      +
      +// Initialize central reference
      +rootjQuery = jQuery( document );
      +
      +
      +var rparentsprev = /^(?:parents|prev(?:Until|All))/,
      +
      +	// Methods guaranteed to produce a unique set when starting from a unique set
      +	guaranteedUnique = {
      +		children: true,
      +		contents: true,
      +		next: true,
      +		prev: true
      +	};
      +
      +jQuery.fn.extend( {
      +	has: function( target ) {
      +		var targets = jQuery( target, this ),
      +			l = targets.length;
      +
      +		return this.filter( function() {
      +			var i = 0;
      +			for ( ; i < l; i++ ) {
      +				if ( jQuery.contains( this, targets[ i ] ) ) {
      +					return true;
      +				}
      +			}
      +		} );
      +	},
      +
      +	closest: function( selectors, context ) {
      +		var cur,
      +			i = 0,
      +			l = this.length,
      +			matched = [],
      +			targets = typeof selectors !== "string" && jQuery( selectors );
      +
      +		// Positional selectors never match, since there's no _selection_ context
      +		if ( !rneedsContext.test( selectors ) ) {
      +			for ( ; i < l; i++ ) {
      +				for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {
      +
      +					// Always skip document fragments
      +					if ( cur.nodeType < 11 && ( targets ?
      +						targets.index( cur ) > -1 :
      +
      +						// Don't pass non-elements to Sizzle
      +						cur.nodeType === 1 &&
      +							jQuery.find.matchesSelector( cur, selectors ) ) ) {
      +
      +						matched.push( cur );
      +						break;
      +					}
      +				}
      +			}
      +		}
      +
      +		return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );
      +	},
      +
      +	// Determine the position of an element within the set
      +	index: function( elem ) {
      +
      +		// No argument, return index in parent
      +		if ( !elem ) {
      +			return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
      +		}
      +
      +		// Index in selector
      +		if ( typeof elem === "string" ) {
      +			return indexOf.call( jQuery( elem ), this[ 0 ] );
      +		}
      +
      +		// Locate the position of the desired element
      +		return indexOf.call( this,
      +
      +			// If it receives a jQuery object, the first element is used
      +			elem.jquery ? elem[ 0 ] : elem
      +		);
      +	},
      +
      +	add: function( selector, context ) {
      +		return this.pushStack(
      +			jQuery.uniqueSort(
      +				jQuery.merge( this.get(), jQuery( selector, context ) )
      +			)
      +		);
      +	},
      +
      +	addBack: function( selector ) {
      +		return this.add( selector == null ?
      +			this.prevObject : this.prevObject.filter( selector )
      +		);
      +	}
      +} );
      +
      +function sibling( cur, dir ) {
      +	while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}
      +	return cur;
      +}
      +
      +jQuery.each( {
      +	parent: function( elem ) {
      +		var parent = elem.parentNode;
      +		return parent && parent.nodeType !== 11 ? parent : null;
      +	},
      +	parents: function( elem ) {
      +		return dir( elem, "parentNode" );
      +	},
      +	parentsUntil: function( elem, i, until ) {
      +		return dir( elem, "parentNode", until );
      +	},
      +	next: function( elem ) {
      +		return sibling( elem, "nextSibling" );
      +	},
      +	prev: function( elem ) {
      +		return sibling( elem, "previousSibling" );
      +	},
      +	nextAll: function( elem ) {
      +		return dir( elem, "nextSibling" );
      +	},
      +	prevAll: function( elem ) {
      +		return dir( elem, "previousSibling" );
      +	},
      +	nextUntil: function( elem, i, until ) {
      +		return dir( elem, "nextSibling", until );
      +	},
      +	prevUntil: function( elem, i, until ) {
      +		return dir( elem, "previousSibling", until );
      +	},
      +	siblings: function( elem ) {
      +		return siblings( ( elem.parentNode || {} ).firstChild, elem );
      +	},
      +	children: function( elem ) {
      +		return siblings( elem.firstChild );
      +	},
      +	contents: function( elem ) {
      +		if ( typeof elem.contentDocument !== "undefined" ) {
      +			return elem.contentDocument;
      +		}
      +
      +		// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only
      +		// Treat the template element as a regular one in browsers that
      +		// don't support it.
      +		if ( nodeName( elem, "template" ) ) {
      +			elem = elem.content || elem;
      +		}
      +
      +		return jQuery.merge( [], elem.childNodes );
      +	}
      +}, function( name, fn ) {
      +	jQuery.fn[ name ] = function( until, selector ) {
      +		var matched = jQuery.map( this, fn, until );
      +
      +		if ( name.slice( -5 ) !== "Until" ) {
      +			selector = until;
      +		}
      +
      +		if ( selector && typeof selector === "string" ) {
      +			matched = jQuery.filter( selector, matched );
      +		}
      +
      +		if ( this.length > 1 ) {
      +
      +			// Remove duplicates
      +			if ( !guaranteedUnique[ name ] ) {
      +				jQuery.uniqueSort( matched );
      +			}
      +
      +			// Reverse order for parents* and prev-derivatives
      +			if ( rparentsprev.test( name ) ) {
      +				matched.reverse();
      +			}
      +		}
      +
      +		return this.pushStack( matched );
      +	};
      +} );
      +var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g );
      +
      +
      +
      +// Convert String-formatted options into Object-formatted ones
      +function createOptions( options ) {
      +	var object = {};
      +	jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {
      +		object[ flag ] = true;
      +	} );
      +	return object;
      +}
      +
      +/*
      + * Create a callback list using the following parameters:
      + *
      + *	options: an optional list of space-separated options that will change how
      + *			the callback list behaves or a more traditional option object
      + *
      + * By default a callback list will act like an event callback list and can be
      + * "fired" multiple times.
      + *
      + * Possible options:
      + *
      + *	once:			will ensure the callback list can only be fired once (like a Deferred)
      + *
      + *	memory:			will keep track of previous values and will call any callback added
      + *					after the list has been fired right away with the latest "memorized"
      + *					values (like a Deferred)
      + *
      + *	unique:			will ensure a callback can only be added once (no duplicate in the list)
      + *
      + *	stopOnFalse:	interrupt callings when a callback returns false
      + *
      + */
      +jQuery.Callbacks = function( options ) {
      +
      +	// Convert options from String-formatted to Object-formatted if needed
      +	// (we check in cache first)
      +	options = typeof options === "string" ?
      +		createOptions( options ) :
      +		jQuery.extend( {}, options );
      +
      +	var // Flag to know if list is currently firing
      +		firing,
      +
      +		// Last fire value for non-forgettable lists
      +		memory,
      +
      +		// Flag to know if list was already fired
      +		fired,
      +
      +		// Flag to prevent firing
      +		locked,
      +
      +		// Actual callback list
      +		list = [],
      +
      +		// Queue of execution data for repeatable lists
      +		queue = [],
      +
      +		// Index of currently firing callback (modified by add/remove as needed)
      +		firingIndex = -1,
      +
      +		// Fire callbacks
      +		fire = function() {
      +
      +			// Enforce single-firing
      +			locked = locked || options.once;
      +
      +			// Execute callbacks for all pending executions,
      +			// respecting firingIndex overrides and runtime changes
      +			fired = firing = true;
      +			for ( ; queue.length; firingIndex = -1 ) {
      +				memory = queue.shift();
      +				while ( ++firingIndex < list.length ) {
      +
      +					// Run callback and check for early termination
      +					if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&
      +						options.stopOnFalse ) {
      +
      +						// Jump to end and forget the data so .add doesn't re-fire
      +						firingIndex = list.length;
      +						memory = false;
      +					}
      +				}
      +			}
      +
      +			// Forget the data if we're done with it
      +			if ( !options.memory ) {
      +				memory = false;
      +			}
      +
      +			firing = false;
      +
      +			// Clean up if we're done firing for good
      +			if ( locked ) {
      +
      +				// Keep an empty list if we have data for future add calls
      +				if ( memory ) {
      +					list = [];
      +
      +				// Otherwise, this object is spent
      +				} else {
      +					list = "";
      +				}
      +			}
      +		},
      +
      +		// Actual Callbacks object
      +		self = {
      +
      +			// Add a callback or a collection of callbacks to the list
      +			add: function() {
      +				if ( list ) {
      +
      +					// If we have memory from a past run, we should fire after adding
      +					if ( memory && !firing ) {
      +						firingIndex = list.length - 1;
      +						queue.push( memory );
      +					}
      +
      +					( function add( args ) {
      +						jQuery.each( args, function( _, arg ) {
      +							if ( isFunction( arg ) ) {
      +								if ( !options.unique || !self.has( arg ) ) {
      +									list.push( arg );
      +								}
      +							} else if ( arg && arg.length && toType( arg ) !== "string" ) {
      +
      +								// Inspect recursively
      +								add( arg );
      +							}
      +						} );
      +					} )( arguments );
      +
      +					if ( memory && !firing ) {
      +						fire();
      +					}
      +				}
      +				return this;
      +			},
      +
      +			// Remove a callback from the list
      +			remove: function() {
      +				jQuery.each( arguments, function( _, arg ) {
      +					var index;
      +					while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
      +						list.splice( index, 1 );
      +
      +						// Handle firing indexes
      +						if ( index <= firingIndex ) {
      +							firingIndex--;
      +						}
      +					}
      +				} );
      +				return this;
      +			},
      +
      +			// Check if a given callback is in the list.
      +			// If no argument is given, return whether or not list has callbacks attached.
      +			has: function( fn ) {
      +				return fn ?
      +					jQuery.inArray( fn, list ) > -1 :
      +					list.length > 0;
      +			},
      +
      +			// Remove all callbacks from the list
      +			empty: function() {
      +				if ( list ) {
      +					list = [];
      +				}
      +				return this;
      +			},
      +
      +			// Disable .fire and .add
      +			// Abort any current/pending executions
      +			// Clear all callbacks and values
      +			disable: function() {
      +				locked = queue = [];
      +				list = memory = "";
      +				return this;
      +			},
      +			disabled: function() {
      +				return !list;
      +			},
      +
      +			// Disable .fire
      +			// Also disable .add unless we have memory (since it would have no effect)
      +			// Abort any pending executions
      +			lock: function() {
      +				locked = queue = [];
      +				if ( !memory && !firing ) {
      +					list = memory = "";
      +				}
      +				return this;
      +			},
      +			locked: function() {
      +				return !!locked;
      +			},
      +
      +			// Call all callbacks with the given context and arguments
      +			fireWith: function( context, args ) {
      +				if ( !locked ) {
      +					args = args || [];
      +					args = [ context, args.slice ? args.slice() : args ];
      +					queue.push( args );
      +					if ( !firing ) {
      +						fire();
      +					}
      +				}
      +				return this;
      +			},
      +
      +			// Call all the callbacks with the given arguments
      +			fire: function() {
      +				self.fireWith( this, arguments );
      +				return this;
      +			},
      +
      +			// To know if the callbacks have already been called at least once
      +			fired: function() {
      +				return !!fired;
      +			}
      +		};
      +
      +	return self;
      +};
      +
      +
      +function Identity( v ) {
      +	return v;
      +}
      +function Thrower( ex ) {
      +	throw ex;
      +}
      +
      +function adoptValue( value, resolve, reject, noValue ) {
      +	var method;
      +
      +	try {
      +
      +		// Check for promise aspect first to privilege synchronous behavior
      +		if ( value && isFunction( ( method = value.promise ) ) ) {
      +			method.call( value ).done( resolve ).fail( reject );
      +
      +		// Other thenables
      +		} else if ( value && isFunction( ( method = value.then ) ) ) {
      +			method.call( value, resolve, reject );
      +
      +		// Other non-thenables
      +		} else {
      +
      +			// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:
      +			// * false: [ value ].slice( 0 ) => resolve( value )
      +			// * true: [ value ].slice( 1 ) => resolve()
      +			resolve.apply( undefined, [ value ].slice( noValue ) );
      +		}
      +
      +	// For Promises/A+, convert exceptions into rejections
      +	// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in
      +	// Deferred#then to conditionally suppress rejection.
      +	} catch ( value ) {
      +
      +		// Support: Android 4.0 only
      +		// Strict mode functions invoked without .call/.apply get global-object context
      +		reject.apply( undefined, [ value ] );
      +	}
      +}
      +
      +jQuery.extend( {
      +
      +	Deferred: function( func ) {
      +		var tuples = [
      +
      +				// action, add listener, callbacks,
      +				// ... .then handlers, argument index, [final state]
      +				[ "notify", "progress", jQuery.Callbacks( "memory" ),
      +					jQuery.Callbacks( "memory" ), 2 ],
      +				[ "resolve", "done", jQuery.Callbacks( "once memory" ),
      +					jQuery.Callbacks( "once memory" ), 0, "resolved" ],
      +				[ "reject", "fail", jQuery.Callbacks( "once memory" ),
      +					jQuery.Callbacks( "once memory" ), 1, "rejected" ]
      +			],
      +			state = "pending",
      +			promise = {
      +				state: function() {
      +					return state;
      +				},
      +				always: function() {
      +					deferred.done( arguments ).fail( arguments );
      +					return this;
      +				},
      +				"catch": function( fn ) {
      +					return promise.then( null, fn );
      +				},
      +
      +				// Keep pipe for back-compat
      +				pipe: function( /* fnDone, fnFail, fnProgress */ ) {
      +					var fns = arguments;
      +
      +					return jQuery.Deferred( function( newDefer ) {
      +						jQuery.each( tuples, function( i, tuple ) {
      +
      +							// Map tuples (progress, done, fail) to arguments (done, fail, progress)
      +							var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];
      +
      +							// deferred.progress(function() { bind to newDefer or newDefer.notify })
      +							// deferred.done(function() { bind to newDefer or newDefer.resolve })
      +							// deferred.fail(function() { bind to newDefer or newDefer.reject })
      +							deferred[ tuple[ 1 ] ]( function() {
      +								var returned = fn && fn.apply( this, arguments );
      +								if ( returned && isFunction( returned.promise ) ) {
      +									returned.promise()
      +										.progress( newDefer.notify )
      +										.done( newDefer.resolve )
      +										.fail( newDefer.reject );
      +								} else {
      +									newDefer[ tuple[ 0 ] + "With" ](
      +										this,
      +										fn ? [ returned ] : arguments
      +									);
      +								}
      +							} );
      +						} );
      +						fns = null;
      +					} ).promise();
      +				},
      +				then: function( onFulfilled, onRejected, onProgress ) {
      +					var maxDepth = 0;
      +					function resolve( depth, deferred, handler, special ) {
      +						return function() {
      +							var that = this,
      +								args = arguments,
      +								mightThrow = function() {
      +									var returned, then;
      +
      +									// Support: Promises/A+ section 2.3.3.3.3
      +									// https://promisesaplus.com/#point-59
      +									// Ignore double-resolution attempts
      +									if ( depth < maxDepth ) {
      +										return;
      +									}
      +
      +									returned = handler.apply( that, args );
      +
      +									// Support: Promises/A+ section 2.3.1
      +									// https://promisesaplus.com/#point-48
      +									if ( returned === deferred.promise() ) {
      +										throw new TypeError( "Thenable self-resolution" );
      +									}
      +
      +									// Support: Promises/A+ sections 2.3.3.1, 3.5
      +									// https://promisesaplus.com/#point-54
      +									// https://promisesaplus.com/#point-75
      +									// Retrieve `then` only once
      +									then = returned &&
      +
      +										// Support: Promises/A+ section 2.3.4
      +										// https://promisesaplus.com/#point-64
      +										// Only check objects and functions for thenability
      +										( typeof returned === "object" ||
      +											typeof returned === "function" ) &&
      +										returned.then;
      +
      +									// Handle a returned thenable
      +									if ( isFunction( then ) ) {
      +
      +										// Special processors (notify) just wait for resolution
      +										if ( special ) {
      +											then.call(
      +												returned,
      +												resolve( maxDepth, deferred, Identity, special ),
      +												resolve( maxDepth, deferred, Thrower, special )
      +											);
      +
      +										// Normal processors (resolve) also hook into progress
      +										} else {
      +
      +											// ...and disregard older resolution values
      +											maxDepth++;
      +
      +											then.call(
      +												returned,
      +												resolve( maxDepth, deferred, Identity, special ),
      +												resolve( maxDepth, deferred, Thrower, special ),
      +												resolve( maxDepth, deferred, Identity,
      +													deferred.notifyWith )
      +											);
      +										}
      +
      +									// Handle all other returned values
      +									} else {
      +
      +										// Only substitute handlers pass on context
      +										// and multiple values (non-spec behavior)
      +										if ( handler !== Identity ) {
      +											that = undefined;
      +											args = [ returned ];
      +										}
      +
      +										// Process the value(s)
      +										// Default process is resolve
      +										( special || deferred.resolveWith )( that, args );
      +									}
      +								},
      +
      +								// Only normal processors (resolve) catch and reject exceptions
      +								process = special ?
      +									mightThrow :
      +									function() {
      +										try {
      +											mightThrow();
      +										} catch ( e ) {
      +
      +											if ( jQuery.Deferred.exceptionHook ) {
      +												jQuery.Deferred.exceptionHook( e,
      +													process.stackTrace );
      +											}
      +
      +											// Support: Promises/A+ section 2.3.3.3.4.1
      +											// https://promisesaplus.com/#point-61
      +											// Ignore post-resolution exceptions
      +											if ( depth + 1 >= maxDepth ) {
      +
      +												// Only substitute handlers pass on context
      +												// and multiple values (non-spec behavior)
      +												if ( handler !== Thrower ) {
      +													that = undefined;
      +													args = [ e ];
      +												}
      +
      +												deferred.rejectWith( that, args );
      +											}
      +										}
      +									};
      +
      +							// Support: Promises/A+ section 2.3.3.3.1
      +							// https://promisesaplus.com/#point-57
      +							// Re-resolve promises immediately to dodge false rejection from
      +							// subsequent errors
      +							if ( depth ) {
      +								process();
      +							} else {
      +
      +								// Call an optional hook to record the stack, in case of exception
      +								// since it's otherwise lost when execution goes async
      +								if ( jQuery.Deferred.getStackHook ) {
      +									process.stackTrace = jQuery.Deferred.getStackHook();
      +								}
      +								window.setTimeout( process );
      +							}
      +						};
      +					}
      +
      +					return jQuery.Deferred( function( newDefer ) {
      +
      +						// progress_handlers.add( ... )
      +						tuples[ 0 ][ 3 ].add(
      +							resolve(
      +								0,
      +								newDefer,
      +								isFunction( onProgress ) ?
      +									onProgress :
      +									Identity,
      +								newDefer.notifyWith
      +							)
      +						);
      +
      +						// fulfilled_handlers.add( ... )
      +						tuples[ 1 ][ 3 ].add(
      +							resolve(
      +								0,
      +								newDefer,
      +								isFunction( onFulfilled ) ?
      +									onFulfilled :
      +									Identity
      +							)
      +						);
      +
      +						// rejected_handlers.add( ... )
      +						tuples[ 2 ][ 3 ].add(
      +							resolve(
      +								0,
      +								newDefer,
      +								isFunction( onRejected ) ?
      +									onRejected :
      +									Thrower
      +							)
      +						);
      +					} ).promise();
      +				},
      +
      +				// Get a promise for this deferred
      +				// If obj is provided, the promise aspect is added to the object
      +				promise: function( obj ) {
      +					return obj != null ? jQuery.extend( obj, promise ) : promise;
      +				}
      +			},
      +			deferred = {};
      +
      +		// Add list-specific methods
      +		jQuery.each( tuples, function( i, tuple ) {
      +			var list = tuple[ 2 ],
      +				stateString = tuple[ 5 ];
      +
      +			// promise.progress = list.add
      +			// promise.done = list.add
      +			// promise.fail = list.add
      +			promise[ tuple[ 1 ] ] = list.add;
      +
      +			// Handle state
      +			if ( stateString ) {
      +				list.add(
      +					function() {
      +
      +						// state = "resolved" (i.e., fulfilled)
      +						// state = "rejected"
      +						state = stateString;
      +					},
      +
      +					// rejected_callbacks.disable
      +					// fulfilled_callbacks.disable
      +					tuples[ 3 - i ][ 2 ].disable,
      +
      +					// rejected_handlers.disable
      +					// fulfilled_handlers.disable
      +					tuples[ 3 - i ][ 3 ].disable,
      +
      +					// progress_callbacks.lock
      +					tuples[ 0 ][ 2 ].lock,
      +
      +					// progress_handlers.lock
      +					tuples[ 0 ][ 3 ].lock
      +				);
      +			}
      +
      +			// progress_handlers.fire
      +			// fulfilled_handlers.fire
      +			// rejected_handlers.fire
      +			list.add( tuple[ 3 ].fire );
      +
      +			// deferred.notify = function() { deferred.notifyWith(...) }
      +			// deferred.resolve = function() { deferred.resolveWith(...) }
      +			// deferred.reject = function() { deferred.rejectWith(...) }
      +			deferred[ tuple[ 0 ] ] = function() {
      +				deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments );
      +				return this;
      +			};
      +
      +			// deferred.notifyWith = list.fireWith
      +			// deferred.resolveWith = list.fireWith
      +			// deferred.rejectWith = list.fireWith
      +			deferred[ tuple[ 0 ] + "With" ] = list.fireWith;
      +		} );
      +
      +		// Make the deferred a promise
      +		promise.promise( deferred );
      +
      +		// Call given func if any
      +		if ( func ) {
      +			func.call( deferred, deferred );
      +		}
      +
      +		// All done!
      +		return deferred;
      +	},
      +
      +	// Deferred helper
      +	when: function( singleValue ) {
      +		var
      +
      +			// count of uncompleted subordinates
      +			remaining = arguments.length,
      +
      +			// count of unprocessed arguments
      +			i = remaining,
      +
      +			// subordinate fulfillment data
      +			resolveContexts = Array( i ),
      +			resolveValues = slice.call( arguments ),
      +
      +			// the master Deferred
      +			master = jQuery.Deferred(),
      +
      +			// subordinate callback factory
      +			updateFunc = function( i ) {
      +				return function( value ) {
      +					resolveContexts[ i ] = this;
      +					resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
      +					if ( !( --remaining ) ) {
      +						master.resolveWith( resolveContexts, resolveValues );
      +					}
      +				};
      +			};
      +
      +		// Single- and empty arguments are adopted like Promise.resolve
      +		if ( remaining <= 1 ) {
      +			adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject,
      +				!remaining );
      +
      +			// Use .then() to unwrap secondary thenables (cf. gh-3000)
      +			if ( master.state() === "pending" ||
      +				isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {
      +
      +				return master.then();
      +			}
      +		}
      +
      +		// Multiple arguments are aggregated like Promise.all array elements
      +		while ( i-- ) {
      +			adoptValue( resolveValues[ i ], updateFunc( i ), master.reject );
      +		}
      +
      +		return master.promise();
      +	}
      +} );
      +
      +
      +// These usually indicate a programmer mistake during development,
      +// warn about them ASAP rather than swallowing them by default.
      +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;
      +
      +jQuery.Deferred.exceptionHook = function( error, stack ) {
      +
      +	// Support: IE 8 - 9 only
      +	// Console exists when dev tools are open, which can happen at any time
      +	if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {
      +		window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack );
      +	}
      +};
      +
      +
      +
      +
      +jQuery.readyException = function( error ) {
      +	window.setTimeout( function() {
      +		throw error;
      +	} );
      +};
      +
      +
      +
      +
      +// The deferred used on DOM ready
      +var readyList = jQuery.Deferred();
      +
      +jQuery.fn.ready = function( fn ) {
      +
      +	readyList
      +		.then( fn )
      +
      +		// Wrap jQuery.readyException in a function so that the lookup
      +		// happens at the time of error handling instead of callback
      +		// registration.
      +		.catch( function( error ) {
      +			jQuery.readyException( error );
      +		} );
      +
      +	return this;
      +};
      +
      +jQuery.extend( {
      +
      +	// Is the DOM ready to be used? Set to true once it occurs.
      +	isReady: false,
      +
      +	// A counter to track how many items to wait for before
      +	// the ready event fires. See #6781
      +	readyWait: 1,
      +
      +	// Handle when the DOM is ready
      +	ready: function( wait ) {
      +
      +		// Abort if there are pending holds or we're already ready
      +		if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
      +			return;
      +		}
      +
      +		// Remember that the DOM is ready
      +		jQuery.isReady = true;
      +
      +		// If a normal DOM Ready event fired, decrement, and wait if need be
      +		if ( wait !== true && --jQuery.readyWait > 0 ) {
      +			return;
      +		}
      +
      +		// If there are functions bound, to execute
      +		readyList.resolveWith( document, [ jQuery ] );
      +	}
      +} );
      +
      +jQuery.ready.then = readyList.then;
      +
      +// The ready event handler and self cleanup method
      +function completed() {
      +	document.removeEventListener( "DOMContentLoaded", completed );
      +	window.removeEventListener( "load", completed );
      +	jQuery.ready();
      +}
      +
      +// Catch cases where $(document).ready() is called
      +// after the browser event has already occurred.
      +// Support: IE <=9 - 10 only
      +// Older IE sometimes signals "interactive" too soon
      +if ( document.readyState === "complete" ||
      +	( document.readyState !== "loading" && !document.documentElement.doScroll ) ) {
      +
      +	// Handle it asynchronously to allow scripts the opportunity to delay ready
      +	window.setTimeout( jQuery.ready );
      +
      +} else {
      +
      +	// Use the handy event callback
      +	document.addEventListener( "DOMContentLoaded", completed );
      +
      +	// A fallback to window.onload, that will always work
      +	window.addEventListener( "load", completed );
      +}
      +
      +
      +
      +
      +// Multifunctional method to get and set values of a collection
      +// The value/s can optionally be executed if it's a function
      +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
      +	var i = 0,
      +		len = elems.length,
      +		bulk = key == null;
      +
      +	// Sets many values
      +	if ( toType( key ) === "object" ) {
      +		chainable = true;
      +		for ( i in key ) {
      +			access( elems, fn, i, key[ i ], true, emptyGet, raw );
      +		}
      +
      +	// Sets one value
      +	} else if ( value !== undefined ) {
      +		chainable = true;
      +
      +		if ( !isFunction( value ) ) {
      +			raw = true;
      +		}
      +
      +		if ( bulk ) {
      +
      +			// Bulk operations run against the entire set
      +			if ( raw ) {
      +				fn.call( elems, value );
      +				fn = null;
      +
      +			// ...except when executing function values
      +			} else {
      +				bulk = fn;
      +				fn = function( elem, key, value ) {
      +					return bulk.call( jQuery( elem ), value );
      +				};
      +			}
      +		}
      +
      +		if ( fn ) {
      +			for ( ; i < len; i++ ) {
      +				fn(
      +					elems[ i ], key, raw ?
      +					value :
      +					value.call( elems[ i ], i, fn( elems[ i ], key ) )
      +				);
      +			}
      +		}
      +	}
      +
      +	if ( chainable ) {
      +		return elems;
      +	}
      +
      +	// Gets
      +	if ( bulk ) {
      +		return fn.call( elems );
      +	}
      +
      +	return len ? fn( elems[ 0 ], key ) : emptyGet;
      +};
      +
      +
      +// Matches dashed string for camelizing
      +var rmsPrefix = /^-ms-/,
      +	rdashAlpha = /-([a-z])/g;
      +
      +// Used by camelCase as callback to replace()
      +function fcamelCase( all, letter ) {
      +	return letter.toUpperCase();
      +}
      +
      +// Convert dashed to camelCase; used by the css and data modules
      +// Support: IE <=9 - 11, Edge 12 - 15
      +// Microsoft forgot to hump their vendor prefix (#9572)
      +function camelCase( string ) {
      +	return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
      +}
      +var acceptData = function( owner ) {
      +
      +	// Accepts only:
      +	//  - Node
      +	//    - Node.ELEMENT_NODE
      +	//    - Node.DOCUMENT_NODE
      +	//  - Object
      +	//    - Any
      +	return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
      +};
      +
      +
      +
      +
      +function Data() {
      +	this.expando = jQuery.expando + Data.uid++;
      +}
      +
      +Data.uid = 1;
      +
      +Data.prototype = {
      +
      +	cache: function( owner ) {
      +
      +		// Check if the owner object already has a cache
      +		var value = owner[ this.expando ];
      +
      +		// If not, create one
      +		if ( !value ) {
      +			value = {};
      +
      +			// We can accept data for non-element nodes in modern browsers,
      +			// but we should not, see #8335.
      +			// Always return an empty object.
      +			if ( acceptData( owner ) ) {
      +
      +				// If it is a node unlikely to be stringify-ed or looped over
      +				// use plain assignment
      +				if ( owner.nodeType ) {
      +					owner[ this.expando ] = value;
      +
      +				// Otherwise secure it in a non-enumerable property
      +				// configurable must be true to allow the property to be
      +				// deleted when data is removed
      +				} else {
      +					Object.defineProperty( owner, this.expando, {
      +						value: value,
      +						configurable: true
      +					} );
      +				}
      +			}
      +		}
      +
      +		return value;
      +	},
      +	set: function( owner, data, value ) {
      +		var prop,
      +			cache = this.cache( owner );
      +
      +		// Handle: [ owner, key, value ] args
      +		// Always use camelCase key (gh-2257)
      +		if ( typeof data === "string" ) {
      +			cache[ camelCase( data ) ] = value;
      +
      +		// Handle: [ owner, { properties } ] args
      +		} else {
      +
      +			// Copy the properties one-by-one to the cache object
      +			for ( prop in data ) {
      +				cache[ camelCase( prop ) ] = data[ prop ];
      +			}
      +		}
      +		return cache;
      +	},
      +	get: function( owner, key ) {
      +		return key === undefined ?
      +			this.cache( owner ) :
      +
      +			// Always use camelCase key (gh-2257)
      +			owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];
      +	},
      +	access: function( owner, key, value ) {
      +
      +		// In cases where either:
      +		//
      +		//   1. No key was specified
      +		//   2. A string key was specified, but no value provided
      +		//
      +		// Take the "read" path and allow the get method to determine
      +		// which value to return, respectively either:
      +		//
      +		//   1. The entire cache object
      +		//   2. The data stored at the key
      +		//
      +		if ( key === undefined ||
      +				( ( key && typeof key === "string" ) && value === undefined ) ) {
      +
      +			return this.get( owner, key );
      +		}
      +
      +		// When the key is not a string, or both a key and value
      +		// are specified, set or extend (existing objects) with either:
      +		//
      +		//   1. An object of properties
      +		//   2. A key and value
      +		//
      +		this.set( owner, key, value );
      +
      +		// Since the "set" path can have two possible entry points
      +		// return the expected data based on which path was taken[*]
      +		return value !== undefined ? value : key;
      +	},
      +	remove: function( owner, key ) {
      +		var i,
      +			cache = owner[ this.expando ];
      +
      +		if ( cache === undefined ) {
      +			return;
      +		}
      +
      +		if ( key !== undefined ) {
      +
      +			// Support array or space separated string of keys
      +			if ( Array.isArray( key ) ) {
      +
      +				// If key is an array of keys...
      +				// We always set camelCase keys, so remove that.
      +				key = key.map( camelCase );
      +			} else {
      +				key = camelCase( key );
      +
      +				// If a key with the spaces exists, use it.
      +				// Otherwise, create an array by matching non-whitespace
      +				key = key in cache ?
      +					[ key ] :
      +					( key.match( rnothtmlwhite ) || [] );
      +			}
      +
      +			i = key.length;
      +
      +			while ( i-- ) {
      +				delete cache[ key[ i ] ];
      +			}
      +		}
      +
      +		// Remove the expando if there's no more data
      +		if ( key === undefined || jQuery.isEmptyObject( cache ) ) {
      +
      +			// Support: Chrome <=35 - 45
      +			// Webkit & Blink performance suffers when deleting properties
      +			// from DOM nodes, so set to undefined instead
      +			// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)
      +			if ( owner.nodeType ) {
      +				owner[ this.expando ] = undefined;
      +			} else {
      +				delete owner[ this.expando ];
      +			}
      +		}
      +	},
      +	hasData: function( owner ) {
      +		var cache = owner[ this.expando ];
      +		return cache !== undefined && !jQuery.isEmptyObject( cache );
      +	}
      +};
      +var dataPriv = new Data();
      +
      +var dataUser = new Data();
      +
      +
      +
      +//	Implementation Summary
      +//
      +//	1. Enforce API surface and semantic compatibility with 1.9.x branch
      +//	2. Improve the module's maintainability by reducing the storage
      +//		paths to a single mechanism.
      +//	3. Use the same single mechanism to support "private" and "user" data.
      +//	4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)
      +//	5. Avoid exposing implementation details on user objects (eg. expando properties)
      +//	6. Provide a clear path for implementation upgrade to WeakMap in 2014
      +
      +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
      +	rmultiDash = /[A-Z]/g;
      +
      +function getData( data ) {
      +	if ( data === "true" ) {
      +		return true;
      +	}
      +
      +	if ( data === "false" ) {
      +		return false;
      +	}
      +
      +	if ( data === "null" ) {
      +		return null;
      +	}
      +
      +	// Only convert to a number if it doesn't change the string
      +	if ( data === +data + "" ) {
      +		return +data;
      +	}
      +
      +	if ( rbrace.test( data ) ) {
      +		return JSON.parse( data );
      +	}
      +
      +	return data;
      +}
      +
      +function dataAttr( elem, key, data ) {
      +	var name;
      +
      +	// If nothing was found internally, try to fetch any
      +	// data from the HTML5 data-* attribute
      +	if ( data === undefined && elem.nodeType === 1 ) {
      +		name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase();
      +		data = elem.getAttribute( name );
      +
      +		if ( typeof data === "string" ) {
      +			try {
      +				data = getData( data );
      +			} catch ( e ) {}
      +
      +			// Make sure we set the data so it isn't changed later
      +			dataUser.set( elem, key, data );
      +		} else {
      +			data = undefined;
      +		}
      +	}
      +	return data;
      +}
      +
      +jQuery.extend( {
      +	hasData: function( elem ) {
      +		return dataUser.hasData( elem ) || dataPriv.hasData( elem );
      +	},
      +
      +	data: function( elem, name, data ) {
      +		return dataUser.access( elem, name, data );
      +	},
      +
      +	removeData: function( elem, name ) {
      +		dataUser.remove( elem, name );
      +	},
      +
      +	// TODO: Now that all calls to _data and _removeData have been replaced
      +	// with direct calls to dataPriv methods, these can be deprecated.
      +	_data: function( elem, name, data ) {
      +		return dataPriv.access( elem, name, data );
      +	},
      +
      +	_removeData: function( elem, name ) {
      +		dataPriv.remove( elem, name );
      +	}
      +} );
      +
      +jQuery.fn.extend( {
      +	data: function( key, value ) {
      +		var i, name, data,
      +			elem = this[ 0 ],
      +			attrs = elem && elem.attributes;
      +
      +		// Gets all values
      +		if ( key === undefined ) {
      +			if ( this.length ) {
      +				data = dataUser.get( elem );
      +
      +				if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) {
      +					i = attrs.length;
      +					while ( i-- ) {
      +
      +						// Support: IE 11 only
      +						// The attrs elements can be null (#14894)
      +						if ( attrs[ i ] ) {
      +							name = attrs[ i ].name;
      +							if ( name.indexOf( "data-" ) === 0 ) {
      +								name = camelCase( name.slice( 5 ) );
      +								dataAttr( elem, name, data[ name ] );
      +							}
      +						}
      +					}
      +					dataPriv.set( elem, "hasDataAttrs", true );
      +				}
      +			}
      +
      +			return data;
      +		}
      +
      +		// Sets multiple values
      +		if ( typeof key === "object" ) {
      +			return this.each( function() {
      +				dataUser.set( this, key );
      +			} );
      +		}
      +
      +		return access( this, function( value ) {
      +			var data;
      +
      +			// The calling jQuery object (element matches) is not empty
      +			// (and therefore has an element appears at this[ 0 ]) and the
      +			// `value` parameter was not undefined. An empty jQuery object
      +			// will result in `undefined` for elem = this[ 0 ] which will
      +			// throw an exception if an attempt to read a data cache is made.
      +			if ( elem && value === undefined ) {
      +
      +				// Attempt to get data from the cache
      +				// The key will always be camelCased in Data
      +				data = dataUser.get( elem, key );
      +				if ( data !== undefined ) {
      +					return data;
      +				}
      +
      +				// Attempt to "discover" the data in
      +				// HTML5 custom data-* attrs
      +				data = dataAttr( elem, key );
      +				if ( data !== undefined ) {
      +					return data;
      +				}
      +
      +				// We tried really hard, but the data doesn't exist.
      +				return;
      +			}
      +
      +			// Set the data...
      +			this.each( function() {
      +
      +				// We always store the camelCased key
      +				dataUser.set( this, key, value );
      +			} );
      +		}, null, value, arguments.length > 1, null, true );
      +	},
      +
      +	removeData: function( key ) {
      +		return this.each( function() {
      +			dataUser.remove( this, key );
      +		} );
      +	}
      +} );
      +
      +
      +jQuery.extend( {
      +	queue: function( elem, type, data ) {
      +		var queue;
      +
      +		if ( elem ) {
      +			type = ( type || "fx" ) + "queue";
      +			queue = dataPriv.get( elem, type );
      +
      +			// Speed up dequeue by getting out quickly if this is just a lookup
      +			if ( data ) {
      +				if ( !queue || Array.isArray( data ) ) {
      +					queue = dataPriv.access( elem, type, jQuery.makeArray( data ) );
      +				} else {
      +					queue.push( data );
      +				}
      +			}
      +			return queue || [];
      +		}
      +	},
      +
      +	dequeue: function( elem, type ) {
      +		type = type || "fx";
      +
      +		var queue = jQuery.queue( elem, type ),
      +			startLength = queue.length,
      +			fn = queue.shift(),
      +			hooks = jQuery._queueHooks( elem, type ),
      +			next = function() {
      +				jQuery.dequeue( elem, type );
      +			};
      +
      +		// If the fx queue is dequeued, always remove the progress sentinel
      +		if ( fn === "inprogress" ) {
      +			fn = queue.shift();
      +			startLength--;
      +		}
      +
      +		if ( fn ) {
      +
      +			// Add a progress sentinel to prevent the fx queue from being
      +			// automatically dequeued
      +			if ( type === "fx" ) {
      +				queue.unshift( "inprogress" );
      +			}
      +
      +			// Clear up the last queue stop function
      +			delete hooks.stop;
      +			fn.call( elem, next, hooks );
      +		}
      +
      +		if ( !startLength && hooks ) {
      +			hooks.empty.fire();
      +		}
      +	},
      +
      +	// Not public - generate a queueHooks object, or return the current one
      +	_queueHooks: function( elem, type ) {
      +		var key = type + "queueHooks";
      +		return dataPriv.get( elem, key ) || dataPriv.access( elem, key, {
      +			empty: jQuery.Callbacks( "once memory" ).add( function() {
      +				dataPriv.remove( elem, [ type + "queue", key ] );
      +			} )
      +		} );
      +	}
      +} );
      +
      +jQuery.fn.extend( {
      +	queue: function( type, data ) {
      +		var setter = 2;
      +
      +		if ( typeof type !== "string" ) {
      +			data = type;
      +			type = "fx";
      +			setter--;
      +		}
      +
      +		if ( arguments.length < setter ) {
      +			return jQuery.queue( this[ 0 ], type );
      +		}
      +
      +		return data === undefined ?
      +			this :
      +			this.each( function() {
      +				var queue = jQuery.queue( this, type, data );
      +
      +				// Ensure a hooks for this queue
      +				jQuery._queueHooks( this, type );
      +
      +				if ( type === "fx" && queue[ 0 ] !== "inprogress" ) {
      +					jQuery.dequeue( this, type );
      +				}
      +			} );
      +	},
      +	dequeue: function( type ) {
      +		return this.each( function() {
      +			jQuery.dequeue( this, type );
      +		} );
      +	},
      +	clearQueue: function( type ) {
      +		return this.queue( type || "fx", [] );
      +	},
      +
      +	// Get a promise resolved when queues of a certain type
      +	// are emptied (fx is the type by default)
      +	promise: function( type, obj ) {
      +		var tmp,
      +			count = 1,
      +			defer = jQuery.Deferred(),
      +			elements = this,
      +			i = this.length,
      +			resolve = function() {
      +				if ( !( --count ) ) {
      +					defer.resolveWith( elements, [ elements ] );
      +				}
      +			};
      +
      +		if ( typeof type !== "string" ) {
      +			obj = type;
      +			type = undefined;
      +		}
      +		type = type || "fx";
      +
      +		while ( i-- ) {
      +			tmp = dataPriv.get( elements[ i ], type + "queueHooks" );
      +			if ( tmp && tmp.empty ) {
      +				count++;
      +				tmp.empty.add( resolve );
      +			}
      +		}
      +		resolve();
      +		return defer.promise( obj );
      +	}
      +} );
      +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
      +
      +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
      +
      +
      +var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
      +
      +var documentElement = document.documentElement;
      +
      +
      +
      +	var isAttached = function( elem ) {
      +			return jQuery.contains( elem.ownerDocument, elem );
      +		},
      +		composed = { composed: true };
      +
      +	// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only
      +	// Check attachment across shadow DOM boundaries when possible (gh-3504)
      +	// Support: iOS 10.0-10.2 only
      +	// Early iOS 10 versions support `attachShadow` but not `getRootNode`,
      +	// leading to errors. We need to check for `getRootNode`.
      +	if ( documentElement.getRootNode ) {
      +		isAttached = function( elem ) {
      +			return jQuery.contains( elem.ownerDocument, elem ) ||
      +				elem.getRootNode( composed ) === elem.ownerDocument;
      +		};
      +	}
      +var isHiddenWithinTree = function( elem, el ) {
      +
      +		// isHiddenWithinTree might be called from jQuery#filter function;
      +		// in that case, element will be second argument
      +		elem = el || elem;
      +
      +		// Inline style trumps all
      +		return elem.style.display === "none" ||
      +			elem.style.display === "" &&
      +
      +			// Otherwise, check computed style
      +			// Support: Firefox <=43 - 45
      +			// Disconnected elements can have computed display: none, so first confirm that elem is
      +			// in the document.
      +			isAttached( elem ) &&
      +
      +			jQuery.css( elem, "display" ) === "none";
      +	};
      +
      +var swap = function( elem, options, callback, args ) {
      +	var ret, name,
      +		old = {};
      +
      +	// Remember the old values, and insert the new ones
      +	for ( name in options ) {
      +		old[ name ] = elem.style[ name ];
      +		elem.style[ name ] = options[ name ];
      +	}
      +
      +	ret = callback.apply( elem, args || [] );
      +
      +	// Revert the old values
      +	for ( name in options ) {
      +		elem.style[ name ] = old[ name ];
      +	}
      +
      +	return ret;
      +};
      +
      +
      +
      +
      +function adjustCSS( elem, prop, valueParts, tween ) {
      +	var adjusted, scale,
      +		maxIterations = 20,
      +		currentValue = tween ?
      +			function() {
      +				return tween.cur();
      +			} :
      +			function() {
      +				return jQuery.css( elem, prop, "" );
      +			},
      +		initial = currentValue(),
      +		unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
      +
      +		// Starting value computation is required for potential unit mismatches
      +		initialInUnit = elem.nodeType &&
      +			( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) &&
      +			rcssNum.exec( jQuery.css( elem, prop ) );
      +
      +	if ( initialInUnit && initialInUnit[ 3 ] !== unit ) {
      +
      +		// Support: Firefox <=54
      +		// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)
      +		initial = initial / 2;
      +
      +		// Trust units reported by jQuery.css
      +		unit = unit || initialInUnit[ 3 ];
      +
      +		// Iteratively approximate from a nonzero starting point
      +		initialInUnit = +initial || 1;
      +
      +		while ( maxIterations-- ) {
      +
      +			// Evaluate and update our best guess (doubling guesses that zero out).
      +			// Finish if the scale equals or crosses 1 (making the old*new product non-positive).
      +			jQuery.style( elem, prop, initialInUnit + unit );
      +			if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {
      +				maxIterations = 0;
      +			}
      +			initialInUnit = initialInUnit / scale;
      +
      +		}
      +
      +		initialInUnit = initialInUnit * 2;
      +		jQuery.style( elem, prop, initialInUnit + unit );
      +
      +		// Make sure we update the tween properties later on
      +		valueParts = valueParts || [];
      +	}
      +
      +	if ( valueParts ) {
      +		initialInUnit = +initialInUnit || +initial || 0;
      +
      +		// Apply relative offset (+=/-=) if specified
      +		adjusted = valueParts[ 1 ] ?
      +			initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :
      +			+valueParts[ 2 ];
      +		if ( tween ) {
      +			tween.unit = unit;
      +			tween.start = initialInUnit;
      +			tween.end = adjusted;
      +		}
      +	}
      +	return adjusted;
      +}
      +
      +
      +var defaultDisplayMap = {};
      +
      +function getDefaultDisplay( elem ) {
      +	var temp,
      +		doc = elem.ownerDocument,
      +		nodeName = elem.nodeName,
      +		display = defaultDisplayMap[ nodeName ];
      +
      +	if ( display ) {
      +		return display;
      +	}
      +
      +	temp = doc.body.appendChild( doc.createElement( nodeName ) );
      +	display = jQuery.css( temp, "display" );
      +
      +	temp.parentNode.removeChild( temp );
      +
      +	if ( display === "none" ) {
      +		display = "block";
      +	}
      +	defaultDisplayMap[ nodeName ] = display;
      +
      +	return display;
      +}
      +
      +function showHide( elements, show ) {
      +	var display, elem,
      +		values = [],
      +		index = 0,
      +		length = elements.length;
      +
      +	// Determine new display value for elements that need to change
      +	for ( ; index < length; index++ ) {
      +		elem = elements[ index ];
      +		if ( !elem.style ) {
      +			continue;
      +		}
      +
      +		display = elem.style.display;
      +		if ( show ) {
      +
      +			// Since we force visibility upon cascade-hidden elements, an immediate (and slow)
      +			// check is required in this first loop unless we have a nonempty display value (either
      +			// inline or about-to-be-restored)
      +			if ( display === "none" ) {
      +				values[ index ] = dataPriv.get( elem, "display" ) || null;
      +				if ( !values[ index ] ) {
      +					elem.style.display = "";
      +				}
      +			}
      +			if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) {
      +				values[ index ] = getDefaultDisplay( elem );
      +			}
      +		} else {
      +			if ( display !== "none" ) {
      +				values[ index ] = "none";
      +
      +				// Remember what we're overwriting
      +				dataPriv.set( elem, "display", display );
      +			}
      +		}
      +	}
      +
      +	// Set the display of the elements in a second loop to avoid constant reflow
      +	for ( index = 0; index < length; index++ ) {
      +		if ( values[ index ] != null ) {
      +			elements[ index ].style.display = values[ index ];
      +		}
      +	}
      +
      +	return elements;
      +}
      +
      +jQuery.fn.extend( {
      +	show: function() {
      +		return showHide( this, true );
      +	},
      +	hide: function() {
      +		return showHide( this );
      +	},
      +	toggle: function( state ) {
      +		if ( typeof state === "boolean" ) {
      +			return state ? this.show() : this.hide();
      +		}
      +
      +		return this.each( function() {
      +			if ( isHiddenWithinTree( this ) ) {
      +				jQuery( this ).show();
      +			} else {
      +				jQuery( this ).hide();
      +			}
      +		} );
      +	}
      +} );
      +var rcheckableType = ( /^(?:checkbox|radio)$/i );
      +
      +var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i );
      +
      +var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i );
      +
      +
      +
      +// We have to close these tags to support XHTML (#13200)
      +var wrapMap = {
      +
      +	// Support: IE <=9 only
      +	option: [ 1, "<select multiple='multiple'>", "</select>" ],
      +
      +	// XHTML parsers do not magically insert elements in the
      +	// same way that tag soup parsers do. So we cannot shorten
      +	// this by omitting <tbody> or other required elements.
      +	thead: [ 1, "<table>", "</table>" ],
      +	col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
      +	tr: [ 2, "<table><tbody>", "</tbody></table>" ],
      +	td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
      +
      +	_default: [ 0, "", "" ]
      +};
      +
      +// Support: IE <=9 only
      +wrapMap.optgroup = wrapMap.option;
      +
      +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
      +wrapMap.th = wrapMap.td;
      +
      +
      +function getAll( context, tag ) {
      +
      +	// Support: IE <=9 - 11 only
      +	// Use typeof to avoid zero-argument method invocation on host objects (#15151)
      +	var ret;
      +
      +	if ( typeof context.getElementsByTagName !== "undefined" ) {
      +		ret = context.getElementsByTagName( tag || "*" );
      +
      +	} else if ( typeof context.querySelectorAll !== "undefined" ) {
      +		ret = context.querySelectorAll( tag || "*" );
      +
      +	} else {
      +		ret = [];
      +	}
      +
      +	if ( tag === undefined || tag && nodeName( context, tag ) ) {
      +		return jQuery.merge( [ context ], ret );
      +	}
      +
      +	return ret;
      +}
      +
      +
      +// Mark scripts as having already been evaluated
      +function setGlobalEval( elems, refElements ) {
      +	var i = 0,
      +		l = elems.length;
      +
      +	for ( ; i < l; i++ ) {
      +		dataPriv.set(
      +			elems[ i ],
      +			"globalEval",
      +			!refElements || dataPriv.get( refElements[ i ], "globalEval" )
      +		);
      +	}
      +}
      +
      +
      +var rhtml = /<|&#?\w+;/;
      +
      +function buildFragment( elems, context, scripts, selection, ignored ) {
      +	var elem, tmp, tag, wrap, attached, j,
      +		fragment = context.createDocumentFragment(),
      +		nodes = [],
      +		i = 0,
      +		l = elems.length;
      +
      +	for ( ; i < l; i++ ) {
      +		elem = elems[ i ];
      +
      +		if ( elem || elem === 0 ) {
      +
      +			// Add nodes directly
      +			if ( toType( elem ) === "object" ) {
      +
      +				// Support: Android <=4.0 only, PhantomJS 1 only
      +				// push.apply(_, arraylike) throws on ancient WebKit
      +				jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
      +
      +			// Convert non-html into a text node
      +			} else if ( !rhtml.test( elem ) ) {
      +				nodes.push( context.createTextNode( elem ) );
      +
      +			// Convert html into DOM nodes
      +			} else {
      +				tmp = tmp || fragment.appendChild( context.createElement( "div" ) );
      +
      +				// Deserialize a standard representation
      +				tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase();
      +				wrap = wrapMap[ tag ] || wrapMap._default;
      +				tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];
      +
      +				// Descend through wrappers to the right content
      +				j = wrap[ 0 ];
      +				while ( j-- ) {
      +					tmp = tmp.lastChild;
      +				}
      +
      +				// Support: Android <=4.0 only, PhantomJS 1 only
      +				// push.apply(_, arraylike) throws on ancient WebKit
      +				jQuery.merge( nodes, tmp.childNodes );
      +
      +				// Remember the top-level container
      +				tmp = fragment.firstChild;
      +
      +				// Ensure the created nodes are orphaned (#12392)
      +				tmp.textContent = "";
      +			}
      +		}
      +	}
      +
      +	// Remove wrapper from fragment
      +	fragment.textContent = "";
      +
      +	i = 0;
      +	while ( ( elem = nodes[ i++ ] ) ) {
      +
      +		// Skip elements already in the context collection (trac-4087)
      +		if ( selection && jQuery.inArray( elem, selection ) > -1 ) {
      +			if ( ignored ) {
      +				ignored.push( elem );
      +			}
      +			continue;
      +		}
      +
      +		attached = isAttached( elem );
      +
      +		// Append to fragment
      +		tmp = getAll( fragment.appendChild( elem ), "script" );
      +
      +		// Preserve script evaluation history
      +		if ( attached ) {
      +			setGlobalEval( tmp );
      +		}
      +
      +		// Capture executables
      +		if ( scripts ) {
      +			j = 0;
      +			while ( ( elem = tmp[ j++ ] ) ) {
      +				if ( rscriptType.test( elem.type || "" ) ) {
      +					scripts.push( elem );
      +				}
      +			}
      +		}
      +	}
      +
      +	return fragment;
      +}
      +
      +
      +( function() {
      +	var fragment = document.createDocumentFragment(),
      +		div = fragment.appendChild( document.createElement( "div" ) ),
      +		input = document.createElement( "input" );
      +
      +	// Support: Android 4.0 - 4.3 only
      +	// Check state lost if the name is set (#11217)
      +	// Support: Windows Web Apps (WWA)
      +	// `name` and `type` must use .setAttribute for WWA (#14901)
      +	input.setAttribute( "type", "radio" );
      +	input.setAttribute( "checked", "checked" );
      +	input.setAttribute( "name", "t" );
      +
      +	div.appendChild( input );
      +
      +	// Support: Android <=4.1 only
      +	// Older WebKit doesn't clone checked state correctly in fragments
      +	support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
      +
      +	// Support: IE <=11 only
      +	// Make sure textarea (and checkbox) defaultValue is properly cloned
      +	div.innerHTML = "<textarea>x</textarea>";
      +	support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
      +} )();
      +
      +
      +var
      +	rkeyEvent = /^key/,
      +	rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,
      +	rtypenamespace = /^([^.]*)(?:\.(.+)|)/;
      +
      +function returnTrue() {
      +	return true;
      +}
      +
      +function returnFalse() {
      +	return false;
      +}
      +
      +// Support: IE <=9 - 11+
      +// focus() and blur() are asynchronous, except when they are no-op.
      +// So expect focus to be synchronous when the element is already active,
      +// and blur to be synchronous when the element is not already active.
      +// (focus and blur are always synchronous in other supported browsers,
      +// this just defines when we can count on it).
      +function expectSync( elem, type ) {
      +	return ( elem === safeActiveElement() ) === ( type === "focus" );
      +}
      +
      +// Support: IE <=9 only
      +// Accessing document.activeElement can throw unexpectedly
      +// https://bugs.jquery.com/ticket/13393
      +function safeActiveElement() {
      +	try {
      +		return document.activeElement;
      +	} catch ( err ) { }
      +}
      +
      +function on( elem, types, selector, data, fn, one ) {
      +	var origFn, type;
      +
      +	// Types can be a map of types/handlers
      +	if ( typeof types === "object" ) {
      +
      +		// ( types-Object, selector, data )
      +		if ( typeof selector !== "string" ) {
      +
      +			// ( types-Object, data )
      +			data = data || selector;
      +			selector = undefined;
      +		}
      +		for ( type in types ) {
      +			on( elem, type, selector, data, types[ type ], one );
      +		}
      +		return elem;
      +	}
      +
      +	if ( data == null && fn == null ) {
      +
      +		// ( types, fn )
      +		fn = selector;
      +		data = selector = undefined;
      +	} else if ( fn == null ) {
      +		if ( typeof selector === "string" ) {
      +
      +			// ( types, selector, fn )
      +			fn = data;
      +			data = undefined;
      +		} else {
      +
      +			// ( types, data, fn )
      +			fn = data;
      +			data = selector;
      +			selector = undefined;
      +		}
      +	}
      +	if ( fn === false ) {
      +		fn = returnFalse;
      +	} else if ( !fn ) {
      +		return elem;
      +	}
      +
      +	if ( one === 1 ) {
      +		origFn = fn;
      +		fn = function( event ) {
      +
      +			// Can use an empty set, since event contains the info
      +			jQuery().off( event );
      +			return origFn.apply( this, arguments );
      +		};
      +
      +		// Use same guid so caller can remove using origFn
      +		fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
      +	}
      +	return elem.each( function() {
      +		jQuery.event.add( this, types, fn, data, selector );
      +	} );
      +}
      +
      +/*
      + * Helper functions for managing events -- not part of the public interface.
      + * Props to Dean Edwards' addEvent library for many of the ideas.
      + */
      +jQuery.event = {
      +
      +	global: {},
      +
      +	add: function( elem, types, handler, data, selector ) {
      +
      +		var handleObjIn, eventHandle, tmp,
      +			events, t, handleObj,
      +			special, handlers, type, namespaces, origType,
      +			elemData = dataPriv.get( elem );
      +
      +		// Don't attach events to noData or text/comment nodes (but allow plain objects)
      +		if ( !elemData ) {
      +			return;
      +		}
      +
      +		// Caller can pass in an object of custom data in lieu of the handler
      +		if ( handler.handler ) {
      +			handleObjIn = handler;
      +			handler = handleObjIn.handler;
      +			selector = handleObjIn.selector;
      +		}
      +
      +		// Ensure that invalid selectors throw exceptions at attach time
      +		// Evaluate against documentElement in case elem is a non-element node (e.g., document)
      +		if ( selector ) {
      +			jQuery.find.matchesSelector( documentElement, selector );
      +		}
      +
      +		// Make sure that the handler has a unique ID, used to find/remove it later
      +		if ( !handler.guid ) {
      +			handler.guid = jQuery.guid++;
      +		}
      +
      +		// Init the element's event structure and main handler, if this is the first
      +		if ( !( events = elemData.events ) ) {
      +			events = elemData.events = {};
      +		}
      +		if ( !( eventHandle = elemData.handle ) ) {
      +			eventHandle = elemData.handle = function( e ) {
      +
      +				// Discard the second event of a jQuery.event.trigger() and
      +				// when an event is called after a page has unloaded
      +				return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ?
      +					jQuery.event.dispatch.apply( elem, arguments ) : undefined;
      +			};
      +		}
      +
      +		// Handle multiple events separated by a space
      +		types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
      +		t = types.length;
      +		while ( t-- ) {
      +			tmp = rtypenamespace.exec( types[ t ] ) || [];
      +			type = origType = tmp[ 1 ];
      +			namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
      +
      +			// There *must* be a type, no attaching namespace-only handlers
      +			if ( !type ) {
      +				continue;
      +			}
      +
      +			// If event changes its type, use the special event handlers for the changed type
      +			special = jQuery.event.special[ type ] || {};
      +
      +			// If selector defined, determine special event api type, otherwise given type
      +			type = ( selector ? special.delegateType : special.bindType ) || type;
      +
      +			// Update special based on newly reset type
      +			special = jQuery.event.special[ type ] || {};
      +
      +			// handleObj is passed to all event handlers
      +			handleObj = jQuery.extend( {
      +				type: type,
      +				origType: origType,
      +				data: data,
      +				handler: handler,
      +				guid: handler.guid,
      +				selector: selector,
      +				needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
      +				namespace: namespaces.join( "." )
      +			}, handleObjIn );
      +
      +			// Init the event handler queue if we're the first
      +			if ( !( handlers = events[ type ] ) ) {
      +				handlers = events[ type ] = [];
      +				handlers.delegateCount = 0;
      +
      +				// Only use addEventListener if the special events handler returns false
      +				if ( !special.setup ||
      +					special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
      +
      +					if ( elem.addEventListener ) {
      +						elem.addEventListener( type, eventHandle );
      +					}
      +				}
      +			}
      +
      +			if ( special.add ) {
      +				special.add.call( elem, handleObj );
      +
      +				if ( !handleObj.handler.guid ) {
      +					handleObj.handler.guid = handler.guid;
      +				}
      +			}
      +
      +			// Add to the element's handler list, delegates in front
      +			if ( selector ) {
      +				handlers.splice( handlers.delegateCount++, 0, handleObj );
      +			} else {
      +				handlers.push( handleObj );
      +			}
      +
      +			// Keep track of which events have ever been used, for event optimization
      +			jQuery.event.global[ type ] = true;
      +		}
      +
      +	},
      +
      +	// Detach an event or set of events from an element
      +	remove: function( elem, types, handler, selector, mappedTypes ) {
      +
      +		var j, origCount, tmp,
      +			events, t, handleObj,
      +			special, handlers, type, namespaces, origType,
      +			elemData = dataPriv.hasData( elem ) && dataPriv.get( elem );
      +
      +		if ( !elemData || !( events = elemData.events ) ) {
      +			return;
      +		}
      +
      +		// Once for each type.namespace in types; type may be omitted
      +		types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
      +		t = types.length;
      +		while ( t-- ) {
      +			tmp = rtypenamespace.exec( types[ t ] ) || [];
      +			type = origType = tmp[ 1 ];
      +			namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
      +
      +			// Unbind all events (on this namespace, if provided) for the element
      +			if ( !type ) {
      +				for ( type in events ) {
      +					jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
      +				}
      +				continue;
      +			}
      +
      +			special = jQuery.event.special[ type ] || {};
      +			type = ( selector ? special.delegateType : special.bindType ) || type;
      +			handlers = events[ type ] || [];
      +			tmp = tmp[ 2 ] &&
      +				new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" );
      +
      +			// Remove matching events
      +			origCount = j = handlers.length;
      +			while ( j-- ) {
      +				handleObj = handlers[ j ];
      +
      +				if ( ( mappedTypes || origType === handleObj.origType ) &&
      +					( !handler || handler.guid === handleObj.guid ) &&
      +					( !tmp || tmp.test( handleObj.namespace ) ) &&
      +					( !selector || selector === handleObj.selector ||
      +						selector === "**" && handleObj.selector ) ) {
      +					handlers.splice( j, 1 );
      +
      +					if ( handleObj.selector ) {
      +						handlers.delegateCount--;
      +					}
      +					if ( special.remove ) {
      +						special.remove.call( elem, handleObj );
      +					}
      +				}
      +			}
      +
      +			// Remove generic event handler if we removed something and no more handlers exist
      +			// (avoids potential for endless recursion during removal of special event handlers)
      +			if ( origCount && !handlers.length ) {
      +				if ( !special.teardown ||
      +					special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
      +
      +					jQuery.removeEvent( elem, type, elemData.handle );
      +				}
      +
      +				delete events[ type ];
      +			}
      +		}
      +
      +		// Remove data and the expando if it's no longer used
      +		if ( jQuery.isEmptyObject( events ) ) {
      +			dataPriv.remove( elem, "handle events" );
      +		}
      +	},
      +
      +	dispatch: function( nativeEvent ) {
      +
      +		// Make a writable jQuery.Event from the native event object
      +		var event = jQuery.event.fix( nativeEvent );
      +
      +		var i, j, ret, matched, handleObj, handlerQueue,
      +			args = new Array( arguments.length ),
      +			handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [],
      +			special = jQuery.event.special[ event.type ] || {};
      +
      +		// Use the fix-ed jQuery.Event rather than the (read-only) native event
      +		args[ 0 ] = event;
      +
      +		for ( i = 1; i < arguments.length; i++ ) {
      +			args[ i ] = arguments[ i ];
      +		}
      +
      +		event.delegateTarget = this;
      +
      +		// Call the preDispatch hook for the mapped type, and let it bail if desired
      +		if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
      +			return;
      +		}
      +
      +		// Determine handlers
      +		handlerQueue = jQuery.event.handlers.call( this, event, handlers );
      +
      +		// Run delegates first; they may want to stop propagation beneath us
      +		i = 0;
      +		while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {
      +			event.currentTarget = matched.elem;
      +
      +			j = 0;
      +			while ( ( handleObj = matched.handlers[ j++ ] ) &&
      +				!event.isImmediatePropagationStopped() ) {
      +
      +				// If the event is namespaced, then each handler is only invoked if it is
      +				// specially universal or its namespaces are a superset of the event's.
      +				if ( !event.rnamespace || handleObj.namespace === false ||
      +					event.rnamespace.test( handleObj.namespace ) ) {
      +
      +					event.handleObj = handleObj;
      +					event.data = handleObj.data;
      +
      +					ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||
      +						handleObj.handler ).apply( matched.elem, args );
      +
      +					if ( ret !== undefined ) {
      +						if ( ( event.result = ret ) === false ) {
      +							event.preventDefault();
      +							event.stopPropagation();
      +						}
      +					}
      +				}
      +			}
      +		}
      +
      +		// Call the postDispatch hook for the mapped type
      +		if ( special.postDispatch ) {
      +			special.postDispatch.call( this, event );
      +		}
      +
      +		return event.result;
      +	},
      +
      +	handlers: function( event, handlers ) {
      +		var i, handleObj, sel, matchedHandlers, matchedSelectors,
      +			handlerQueue = [],
      +			delegateCount = handlers.delegateCount,
      +			cur = event.target;
      +
      +		// Find delegate handlers
      +		if ( delegateCount &&
      +
      +			// Support: IE <=9
      +			// Black-hole SVG <use> instance trees (trac-13180)
      +			cur.nodeType &&
      +
      +			// Support: Firefox <=42
      +			// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)
      +			// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click
      +			// Support: IE 11 only
      +			// ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343)
      +			!( event.type === "click" && event.button >= 1 ) ) {
      +
      +			for ( ; cur !== this; cur = cur.parentNode || this ) {
      +
      +				// Don't check non-elements (#13208)
      +				// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
      +				if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) {
      +					matchedHandlers = [];
      +					matchedSelectors = {};
      +					for ( i = 0; i < delegateCount; i++ ) {
      +						handleObj = handlers[ i ];
      +
      +						// Don't conflict with Object.prototype properties (#13203)
      +						sel = handleObj.selector + " ";
      +
      +						if ( matchedSelectors[ sel ] === undefined ) {
      +							matchedSelectors[ sel ] = handleObj.needsContext ?
      +								jQuery( sel, this ).index( cur ) > -1 :
      +								jQuery.find( sel, this, null, [ cur ] ).length;
      +						}
      +						if ( matchedSelectors[ sel ] ) {
      +							matchedHandlers.push( handleObj );
      +						}
      +					}
      +					if ( matchedHandlers.length ) {
      +						handlerQueue.push( { elem: cur, handlers: matchedHandlers } );
      +					}
      +				}
      +			}
      +		}
      +
      +		// Add the remaining (directly-bound) handlers
      +		cur = this;
      +		if ( delegateCount < handlers.length ) {
      +			handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );
      +		}
      +
      +		return handlerQueue;
      +	},
      +
      +	addProp: function( name, hook ) {
      +		Object.defineProperty( jQuery.Event.prototype, name, {
      +			enumerable: true,
      +			configurable: true,
      +
      +			get: isFunction( hook ) ?
      +				function() {
      +					if ( this.originalEvent ) {
      +							return hook( this.originalEvent );
      +					}
      +				} :
      +				function() {
      +					if ( this.originalEvent ) {
      +							return this.originalEvent[ name ];
      +					}
      +				},
      +
      +			set: function( value ) {
      +				Object.defineProperty( this, name, {
      +					enumerable: true,
      +					configurable: true,
      +					writable: true,
      +					value: value
      +				} );
      +			}
      +		} );
      +	},
      +
      +	fix: function( originalEvent ) {
      +		return originalEvent[ jQuery.expando ] ?
      +			originalEvent :
      +			new jQuery.Event( originalEvent );
      +	},
      +
      +	special: {
      +		load: {
      +
      +			// Prevent triggered image.load events from bubbling to window.load
      +			noBubble: true
      +		},
      +		click: {
      +
      +			// Utilize native event to ensure correct state for checkable inputs
      +			setup: function( data ) {
      +
      +				// For mutual compressibility with _default, replace `this` access with a local var.
      +				// `|| data` is dead code meant only to preserve the variable through minification.
      +				var el = this || data;
      +
      +				// Claim the first handler
      +				if ( rcheckableType.test( el.type ) &&
      +					el.click && nodeName( el, "input" ) ) {
      +
      +					// dataPriv.set( el, "click", ... )
      +					leverageNative( el, "click", returnTrue );
      +				}
      +
      +				// Return false to allow normal processing in the caller
      +				return false;
      +			},
      +			trigger: function( data ) {
      +
      +				// For mutual compressibility with _default, replace `this` access with a local var.
      +				// `|| data` is dead code meant only to preserve the variable through minification.
      +				var el = this || data;
      +
      +				// Force setup before triggering a click
      +				if ( rcheckableType.test( el.type ) &&
      +					el.click && nodeName( el, "input" ) ) {
      +
      +					leverageNative( el, "click" );
      +				}
      +
      +				// Return non-false to allow normal event-path propagation
      +				return true;
      +			},
      +
      +			// For cross-browser consistency, suppress native .click() on links
      +			// Also prevent it if we're currently inside a leveraged native-event stack
      +			_default: function( event ) {
      +				var target = event.target;
      +				return rcheckableType.test( target.type ) &&
      +					target.click && nodeName( target, "input" ) &&
      +					dataPriv.get( target, "click" ) ||
      +					nodeName( target, "a" );
      +			}
      +		},
      +
      +		beforeunload: {
      +			postDispatch: function( event ) {
      +
      +				// Support: Firefox 20+
      +				// Firefox doesn't alert if the returnValue field is not set.
      +				if ( event.result !== undefined && event.originalEvent ) {
      +					event.originalEvent.returnValue = event.result;
      +				}
      +			}
      +		}
      +	}
      +};
      +
      +// Ensure the presence of an event listener that handles manually-triggered
      +// synthetic events by interrupting progress until reinvoked in response to
      +// *native* events that it fires directly, ensuring that state changes have
      +// already occurred before other listeners are invoked.
      +function leverageNative( el, type, expectSync ) {
      +
      +	// Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add
      +	if ( !expectSync ) {
      +		if ( dataPriv.get( el, type ) === undefined ) {
      +			jQuery.event.add( el, type, returnTrue );
      +		}
      +		return;
      +	}
      +
      +	// Register the controller as a special universal handler for all event namespaces
      +	dataPriv.set( el, type, false );
      +	jQuery.event.add( el, type, {
      +		namespace: false,
      +		handler: function( event ) {
      +			var notAsync, result,
      +				saved = dataPriv.get( this, type );
      +
      +			if ( ( event.isTrigger & 1 ) && this[ type ] ) {
      +
      +				// Interrupt processing of the outer synthetic .trigger()ed event
      +				// Saved data should be false in such cases, but might be a leftover capture object
      +				// from an async native handler (gh-4350)
      +				if ( !saved.length ) {
      +
      +					// Store arguments for use when handling the inner native event
      +					// There will always be at least one argument (an event object), so this array
      +					// will not be confused with a leftover capture object.
      +					saved = slice.call( arguments );
      +					dataPriv.set( this, type, saved );
      +
      +					// Trigger the native event and capture its result
      +					// Support: IE <=9 - 11+
      +					// focus() and blur() are asynchronous
      +					notAsync = expectSync( this, type );
      +					this[ type ]();
      +					result = dataPriv.get( this, type );
      +					if ( saved !== result || notAsync ) {
      +						dataPriv.set( this, type, false );
      +					} else {
      +						result = {};
      +					}
      +					if ( saved !== result ) {
      +
      +						// Cancel the outer synthetic event
      +						event.stopImmediatePropagation();
      +						event.preventDefault();
      +						return result.value;
      +					}
      +
      +				// If this is an inner synthetic event for an event with a bubbling surrogate
      +				// (focus or blur), assume that the surrogate already propagated from triggering the
      +				// native event and prevent that from happening again here.
      +				// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the
      +				// bubbling surrogate propagates *after* the non-bubbling base), but that seems
      +				// less bad than duplication.
      +				} else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {
      +					event.stopPropagation();
      +				}
      +
      +			// If this is a native event triggered above, everything is now in order
      +			// Fire an inner synthetic event with the original arguments
      +			} else if ( saved.length ) {
      +
      +				// ...and capture the result
      +				dataPriv.set( this, type, {
      +					value: jQuery.event.trigger(
      +
      +						// Support: IE <=9 - 11+
      +						// Extend with the prototype to reset the above stopImmediatePropagation()
      +						jQuery.extend( saved[ 0 ], jQuery.Event.prototype ),
      +						saved.slice( 1 ),
      +						this
      +					)
      +				} );
      +
      +				// Abort handling of the native event
      +				event.stopImmediatePropagation();
      +			}
      +		}
      +	} );
      +}
      +
      +jQuery.removeEvent = function( elem, type, handle ) {
      +
      +	// This "if" is needed for plain objects
      +	if ( elem.removeEventListener ) {
      +		elem.removeEventListener( type, handle );
      +	}
      +};
      +
      +jQuery.Event = function( src, props ) {
      +
      +	// Allow instantiation without the 'new' keyword
      +	if ( !( this instanceof jQuery.Event ) ) {
      +		return new jQuery.Event( src, props );
      +	}
      +
      +	// Event object
      +	if ( src && src.type ) {
      +		this.originalEvent = src;
      +		this.type = src.type;
      +
      +		// Events bubbling up the document may have been marked as prevented
      +		// by a handler lower down the tree; reflect the correct value.
      +		this.isDefaultPrevented = src.defaultPrevented ||
      +				src.defaultPrevented === undefined &&
      +
      +				// Support: Android <=2.3 only
      +				src.returnValue === false ?
      +			returnTrue :
      +			returnFalse;
      +
      +		// Create target properties
      +		// Support: Safari <=6 - 7 only
      +		// Target should not be a text node (#504, #13143)
      +		this.target = ( src.target && src.target.nodeType === 3 ) ?
      +			src.target.parentNode :
      +			src.target;
      +
      +		this.currentTarget = src.currentTarget;
      +		this.relatedTarget = src.relatedTarget;
      +
      +	// Event type
      +	} else {
      +		this.type = src;
      +	}
      +
      +	// Put explicitly provided properties onto the event object
      +	if ( props ) {
      +		jQuery.extend( this, props );
      +	}
      +
      +	// Create a timestamp if incoming event doesn't have one
      +	this.timeStamp = src && src.timeStamp || Date.now();
      +
      +	// Mark it as fixed
      +	this[ jQuery.expando ] = true;
      +};
      +
      +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
      +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
      +jQuery.Event.prototype = {
      +	constructor: jQuery.Event,
      +	isDefaultPrevented: returnFalse,
      +	isPropagationStopped: returnFalse,
      +	isImmediatePropagationStopped: returnFalse,
      +	isSimulated: false,
      +
      +	preventDefault: function() {
      +		var e = this.originalEvent;
      +
      +		this.isDefaultPrevented = returnTrue;
      +
      +		if ( e && !this.isSimulated ) {
      +			e.preventDefault();
      +		}
      +	},
      +	stopPropagation: function() {
      +		var e = this.originalEvent;
      +
      +		this.isPropagationStopped = returnTrue;
      +
      +		if ( e && !this.isSimulated ) {
      +			e.stopPropagation();
      +		}
      +	},
      +	stopImmediatePropagation: function() {
      +		var e = this.originalEvent;
      +
      +		this.isImmediatePropagationStopped = returnTrue;
      +
      +		if ( e && !this.isSimulated ) {
      +			e.stopImmediatePropagation();
      +		}
      +
      +		this.stopPropagation();
      +	}
      +};
      +
      +// Includes all common event props including KeyEvent and MouseEvent specific props
      +jQuery.each( {
      +	altKey: true,
      +	bubbles: true,
      +	cancelable: true,
      +	changedTouches: true,
      +	ctrlKey: true,
      +	detail: true,
      +	eventPhase: true,
      +	metaKey: true,
      +	pageX: true,
      +	pageY: true,
      +	shiftKey: true,
      +	view: true,
      +	"char": true,
      +	code: true,
      +	charCode: true,
      +	key: true,
      +	keyCode: true,
      +	button: true,
      +	buttons: true,
      +	clientX: true,
      +	clientY: true,
      +	offsetX: true,
      +	offsetY: true,
      +	pointerId: true,
      +	pointerType: true,
      +	screenX: true,
      +	screenY: true,
      +	targetTouches: true,
      +	toElement: true,
      +	touches: true,
      +
      +	which: function( event ) {
      +		var button = event.button;
      +
      +		// Add which for key events
      +		if ( event.which == null && rkeyEvent.test( event.type ) ) {
      +			return event.charCode != null ? event.charCode : event.keyCode;
      +		}
      +
      +		// Add which for click: 1 === left; 2 === middle; 3 === right
      +		if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) {
      +			if ( button & 1 ) {
      +				return 1;
      +			}
      +
      +			if ( button & 2 ) {
      +				return 3;
      +			}
      +
      +			if ( button & 4 ) {
      +				return 2;
      +			}
      +
      +			return 0;
      +		}
      +
      +		return event.which;
      +	}
      +}, jQuery.event.addProp );
      +
      +jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) {
      +	jQuery.event.special[ type ] = {
      +
      +		// Utilize native event if possible so blur/focus sequence is correct
      +		setup: function() {
      +
      +			// Claim the first handler
      +			// dataPriv.set( this, "focus", ... )
      +			// dataPriv.set( this, "blur", ... )
      +			leverageNative( this, type, expectSync );
      +
      +			// Return false to allow normal processing in the caller
      +			return false;
      +		},
      +		trigger: function() {
      +
      +			// Force setup before trigger
      +			leverageNative( this, type );
      +
      +			// Return non-false to allow normal event-path propagation
      +			return true;
      +		},
      +
      +		delegateType: delegateType
      +	};
      +} );
      +
      +// Create mouseenter/leave events using mouseover/out and event-time checks
      +// so that event delegation works in jQuery.
      +// Do the same for pointerenter/pointerleave and pointerover/pointerout
      +//
      +// Support: Safari 7 only
      +// Safari sends mouseenter too often; see:
      +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258
      +// for the description of the bug (it existed in older Chrome versions as well).
      +jQuery.each( {
      +	mouseenter: "mouseover",
      +	mouseleave: "mouseout",
      +	pointerenter: "pointerover",
      +	pointerleave: "pointerout"
      +}, function( orig, fix ) {
      +	jQuery.event.special[ orig ] = {
      +		delegateType: fix,
      +		bindType: fix,
      +
      +		handle: function( event ) {
      +			var ret,
      +				target = this,
      +				related = event.relatedTarget,
      +				handleObj = event.handleObj;
      +
      +			// For mouseenter/leave call the handler if related is outside the target.
      +			// NB: No relatedTarget if the mouse left/entered the browser window
      +			if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {
      +				event.type = handleObj.origType;
      +				ret = handleObj.handler.apply( this, arguments );
      +				event.type = fix;
      +			}
      +			return ret;
      +		}
      +	};
      +} );
      +
      +jQuery.fn.extend( {
      +
      +	on: function( types, selector, data, fn ) {
      +		return on( this, types, selector, data, fn );
      +	},
      +	one: function( types, selector, data, fn ) {
      +		return on( this, types, selector, data, fn, 1 );
      +	},
      +	off: function( types, selector, fn ) {
      +		var handleObj, type;
      +		if ( types && types.preventDefault && types.handleObj ) {
      +
      +			// ( event )  dispatched jQuery.Event
      +			handleObj = types.handleObj;
      +			jQuery( types.delegateTarget ).off(
      +				handleObj.namespace ?
      +					handleObj.origType + "." + handleObj.namespace :
      +					handleObj.origType,
      +				handleObj.selector,
      +				handleObj.handler
      +			);
      +			return this;
      +		}
      +		if ( typeof types === "object" ) {
      +
      +			// ( types-object [, selector] )
      +			for ( type in types ) {
      +				this.off( type, selector, types[ type ] );
      +			}
      +			return this;
      +		}
      +		if ( selector === false || typeof selector === "function" ) {
      +
      +			// ( types [, fn] )
      +			fn = selector;
      +			selector = undefined;
      +		}
      +		if ( fn === false ) {
      +			fn = returnFalse;
      +		}
      +		return this.each( function() {
      +			jQuery.event.remove( this, types, fn, selector );
      +		} );
      +	}
      +} );
      +
      +
      +var
      +
      +	/* eslint-disable max-len */
      +
      +	// See https://github.com/eslint/eslint/issues/3229
      +	rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,
      +
      +	/* eslint-enable */
      +
      +	// Support: IE <=10 - 11, Edge 12 - 13 only
      +	// In IE/Edge using regex groups here causes severe slowdowns.
      +	// See https://connect.microsoft.com/IE/feedback/details/1736512/
      +	rnoInnerhtml = /<script|<style|<link/i,
      +
      +	// checked="checked" or checked
      +	rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
      +	rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;
      +
      +// Prefer a tbody over its parent table for containing new rows
      +function manipulationTarget( elem, content ) {
      +	if ( nodeName( elem, "table" ) &&
      +		nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) {
      +
      +		return jQuery( elem ).children( "tbody" )[ 0 ] || elem;
      +	}
      +
      +	return elem;
      +}
      +
      +// Replace/restore the type attribute of script elements for safe DOM manipulation
      +function disableScript( elem ) {
      +	elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type;
      +	return elem;
      +}
      +function restoreScript( elem ) {
      +	if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) {
      +		elem.type = elem.type.slice( 5 );
      +	} else {
      +		elem.removeAttribute( "type" );
      +	}
      +
      +	return elem;
      +}
      +
      +function cloneCopyEvent( src, dest ) {
      +	var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;
      +
      +	if ( dest.nodeType !== 1 ) {
      +		return;
      +	}
      +
      +	// 1. Copy private data: events, handlers, etc.
      +	if ( dataPriv.hasData( src ) ) {
      +		pdataOld = dataPriv.access( src );
      +		pdataCur = dataPriv.set( dest, pdataOld );
      +		events = pdataOld.events;
      +
      +		if ( events ) {
      +			delete pdataCur.handle;
      +			pdataCur.events = {};
      +
      +			for ( type in events ) {
      +				for ( i = 0, l = events[ type ].length; i < l; i++ ) {
      +					jQuery.event.add( dest, type, events[ type ][ i ] );
      +				}
      +			}
      +		}
      +	}
      +
      +	// 2. Copy user data
      +	if ( dataUser.hasData( src ) ) {
      +		udataOld = dataUser.access( src );
      +		udataCur = jQuery.extend( {}, udataOld );
      +
      +		dataUser.set( dest, udataCur );
      +	}
      +}
      +
      +// Fix IE bugs, see support tests
      +function fixInput( src, dest ) {
      +	var nodeName = dest.nodeName.toLowerCase();
      +
      +	// Fails to persist the checked state of a cloned checkbox or radio button.
      +	if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
      +		dest.checked = src.checked;
      +
      +	// Fails to return the selected option to the default selected state when cloning options
      +	} else if ( nodeName === "input" || nodeName === "textarea" ) {
      +		dest.defaultValue = src.defaultValue;
      +	}
      +}
      +
      +function domManip( collection, args, callback, ignored ) {
      +
      +	// Flatten any nested arrays
      +	args = concat.apply( [], args );
      +
      +	var fragment, first, scripts, hasScripts, node, doc,
      +		i = 0,
      +		l = collection.length,
      +		iNoClone = l - 1,
      +		value = args[ 0 ],
      +		valueIsFunction = isFunction( value );
      +
      +	// We can't cloneNode fragments that contain checked, in WebKit
      +	if ( valueIsFunction ||
      +			( l > 1 && typeof value === "string" &&
      +				!support.checkClone && rchecked.test( value ) ) ) {
      +		return collection.each( function( index ) {
      +			var self = collection.eq( index );
      +			if ( valueIsFunction ) {
      +				args[ 0 ] = value.call( this, index, self.html() );
      +			}
      +			domManip( self, args, callback, ignored );
      +		} );
      +	}
      +
      +	if ( l ) {
      +		fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );
      +		first = fragment.firstChild;
      +
      +		if ( fragment.childNodes.length === 1 ) {
      +			fragment = first;
      +		}
      +
      +		// Require either new content or an interest in ignored elements to invoke the callback
      +		if ( first || ignored ) {
      +			scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
      +			hasScripts = scripts.length;
      +
      +			// Use the original fragment for the last item
      +			// instead of the first because it can end up
      +			// being emptied incorrectly in certain situations (#8070).
      +			for ( ; i < l; i++ ) {
      +				node = fragment;
      +
      +				if ( i !== iNoClone ) {
      +					node = jQuery.clone( node, true, true );
      +
      +					// Keep references to cloned scripts for later restoration
      +					if ( hasScripts ) {
      +
      +						// Support: Android <=4.0 only, PhantomJS 1 only
      +						// push.apply(_, arraylike) throws on ancient WebKit
      +						jQuery.merge( scripts, getAll( node, "script" ) );
      +					}
      +				}
      +
      +				callback.call( collection[ i ], node, i );
      +			}
      +
      +			if ( hasScripts ) {
      +				doc = scripts[ scripts.length - 1 ].ownerDocument;
      +
      +				// Reenable scripts
      +				jQuery.map( scripts, restoreScript );
      +
      +				// Evaluate executable scripts on first document insertion
      +				for ( i = 0; i < hasScripts; i++ ) {
      +					node = scripts[ i ];
      +					if ( rscriptType.test( node.type || "" ) &&
      +						!dataPriv.access( node, "globalEval" ) &&
      +						jQuery.contains( doc, node ) ) {
      +
      +						if ( node.src && ( node.type || "" ).toLowerCase()  !== "module" ) {
      +
      +							// Optional AJAX dependency, but won't run scripts if not present
      +							if ( jQuery._evalUrl && !node.noModule ) {
      +								jQuery._evalUrl( node.src, {
      +									nonce: node.nonce || node.getAttribute( "nonce" )
      +								} );
      +							}
      +						} else {
      +							DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc );
      +						}
      +					}
      +				}
      +			}
      +		}
      +	}
      +
      +	return collection;
      +}
      +
      +function remove( elem, selector, keepData ) {
      +	var node,
      +		nodes = selector ? jQuery.filter( selector, elem ) : elem,
      +		i = 0;
      +
      +	for ( ; ( node = nodes[ i ] ) != null; i++ ) {
      +		if ( !keepData && node.nodeType === 1 ) {
      +			jQuery.cleanData( getAll( node ) );
      +		}
      +
      +		if ( node.parentNode ) {
      +			if ( keepData && isAttached( node ) ) {
      +				setGlobalEval( getAll( node, "script" ) );
      +			}
      +			node.parentNode.removeChild( node );
      +		}
      +	}
      +
      +	return elem;
      +}
      +
      +jQuery.extend( {
      +	htmlPrefilter: function( html ) {
      +		return html.replace( rxhtmlTag, "<$1></$2>" );
      +	},
      +
      +	clone: function( elem, dataAndEvents, deepDataAndEvents ) {
      +		var i, l, srcElements, destElements,
      +			clone = elem.cloneNode( true ),
      +			inPage = isAttached( elem );
      +
      +		// Fix IE cloning issues
      +		if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&
      +				!jQuery.isXMLDoc( elem ) ) {
      +
      +			// We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2
      +			destElements = getAll( clone );
      +			srcElements = getAll( elem );
      +
      +			for ( i = 0, l = srcElements.length; i < l; i++ ) {
      +				fixInput( srcElements[ i ], destElements[ i ] );
      +			}
      +		}
      +
      +		// Copy the events from the original to the clone
      +		if ( dataAndEvents ) {
      +			if ( deepDataAndEvents ) {
      +				srcElements = srcElements || getAll( elem );
      +				destElements = destElements || getAll( clone );
      +
      +				for ( i = 0, l = srcElements.length; i < l; i++ ) {
      +					cloneCopyEvent( srcElements[ i ], destElements[ i ] );
      +				}
      +			} else {
      +				cloneCopyEvent( elem, clone );
      +			}
      +		}
      +
      +		// Preserve script evaluation history
      +		destElements = getAll( clone, "script" );
      +		if ( destElements.length > 0 ) {
      +			setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
      +		}
      +
      +		// Return the cloned set
      +		return clone;
      +	},
      +
      +	cleanData: function( elems ) {
      +		var data, elem, type,
      +			special = jQuery.event.special,
      +			i = 0;
      +
      +		for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {
      +			if ( acceptData( elem ) ) {
      +				if ( ( data = elem[ dataPriv.expando ] ) ) {
      +					if ( data.events ) {
      +						for ( type in data.events ) {
      +							if ( special[ type ] ) {
      +								jQuery.event.remove( elem, type );
      +
      +							// This is a shortcut to avoid jQuery.event.remove's overhead
      +							} else {
      +								jQuery.removeEvent( elem, type, data.handle );
      +							}
      +						}
      +					}
      +
      +					// Support: Chrome <=35 - 45+
      +					// Assign undefined instead of using delete, see Data#remove
      +					elem[ dataPriv.expando ] = undefined;
      +				}
      +				if ( elem[ dataUser.expando ] ) {
      +
      +					// Support: Chrome <=35 - 45+
      +					// Assign undefined instead of using delete, see Data#remove
      +					elem[ dataUser.expando ] = undefined;
      +				}
      +			}
      +		}
      +	}
      +} );
      +
      +jQuery.fn.extend( {
      +	detach: function( selector ) {
      +		return remove( this, selector, true );
      +	},
      +
      +	remove: function( selector ) {
      +		return remove( this, selector );
      +	},
      +
      +	text: function( value ) {
      +		return access( this, function( value ) {
      +			return value === undefined ?
      +				jQuery.text( this ) :
      +				this.empty().each( function() {
      +					if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
      +						this.textContent = value;
      +					}
      +				} );
      +		}, null, value, arguments.length );
      +	},
      +
      +	append: function() {
      +		return domManip( this, arguments, function( elem ) {
      +			if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
      +				var target = manipulationTarget( this, elem );
      +				target.appendChild( elem );
      +			}
      +		} );
      +	},
      +
      +	prepend: function() {
      +		return domManip( this, arguments, function( elem ) {
      +			if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
      +				var target = manipulationTarget( this, elem );
      +				target.insertBefore( elem, target.firstChild );
      +			}
      +		} );
      +	},
      +
      +	before: function() {
      +		return domManip( this, arguments, function( elem ) {
      +			if ( this.parentNode ) {
      +				this.parentNode.insertBefore( elem, this );
      +			}
      +		} );
      +	},
      +
      +	after: function() {
      +		return domManip( this, arguments, function( elem ) {
      +			if ( this.parentNode ) {
      +				this.parentNode.insertBefore( elem, this.nextSibling );
      +			}
      +		} );
      +	},
      +
      +	empty: function() {
      +		var elem,
      +			i = 0;
      +
      +		for ( ; ( elem = this[ i ] ) != null; i++ ) {
      +			if ( elem.nodeType === 1 ) {
      +
      +				// Prevent memory leaks
      +				jQuery.cleanData( getAll( elem, false ) );
      +
      +				// Remove any remaining nodes
      +				elem.textContent = "";
      +			}
      +		}
      +
      +		return this;
      +	},
      +
      +	clone: function( dataAndEvents, deepDataAndEvents ) {
      +		dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
      +		deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
      +
      +		return this.map( function() {
      +			return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
      +		} );
      +	},
      +
      +	html: function( value ) {
      +		return access( this, function( value ) {
      +			var elem = this[ 0 ] || {},
      +				i = 0,
      +				l = this.length;
      +
      +			if ( value === undefined && elem.nodeType === 1 ) {
      +				return elem.innerHTML;
      +			}
      +
      +			// See if we can take a shortcut and just use innerHTML
      +			if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
      +				!wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) {
      +
      +				value = jQuery.htmlPrefilter( value );
      +
      +				try {
      +					for ( ; i < l; i++ ) {
      +						elem = this[ i ] || {};
      +
      +						// Remove element nodes and prevent memory leaks
      +						if ( elem.nodeType === 1 ) {
      +							jQuery.cleanData( getAll( elem, false ) );
      +							elem.innerHTML = value;
      +						}
      +					}
      +
      +					elem = 0;
      +
      +				// If using innerHTML throws an exception, use the fallback method
      +				} catch ( e ) {}
      +			}
      +
      +			if ( elem ) {
      +				this.empty().append( value );
      +			}
      +		}, null, value, arguments.length );
      +	},
      +
      +	replaceWith: function() {
      +		var ignored = [];
      +
      +		// Make the changes, replacing each non-ignored context element with the new content
      +		return domManip( this, arguments, function( elem ) {
      +			var parent = this.parentNode;
      +
      +			if ( jQuery.inArray( this, ignored ) < 0 ) {
      +				jQuery.cleanData( getAll( this ) );
      +				if ( parent ) {
      +					parent.replaceChild( elem, this );
      +				}
      +			}
      +
      +		// Force callback invocation
      +		}, ignored );
      +	}
      +} );
      +
      +jQuery.each( {
      +	appendTo: "append",
      +	prependTo: "prepend",
      +	insertBefore: "before",
      +	insertAfter: "after",
      +	replaceAll: "replaceWith"
      +}, function( name, original ) {
      +	jQuery.fn[ name ] = function( selector ) {
      +		var elems,
      +			ret = [],
      +			insert = jQuery( selector ),
      +			last = insert.length - 1,
      +			i = 0;
      +
      +		for ( ; i <= last; i++ ) {
      +			elems = i === last ? this : this.clone( true );
      +			jQuery( insert[ i ] )[ original ]( elems );
      +
      +			// Support: Android <=4.0 only, PhantomJS 1 only
      +			// .get() because push.apply(_, arraylike) throws on ancient WebKit
      +			push.apply( ret, elems.get() );
      +		}
      +
      +		return this.pushStack( ret );
      +	};
      +} );
      +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
      +
      +var getStyles = function( elem ) {
      +
      +		// Support: IE <=11 only, Firefox <=30 (#15098, #14150)
      +		// IE throws on elements created in popups
      +		// FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
      +		var view = elem.ownerDocument.defaultView;
      +
      +		if ( !view || !view.opener ) {
      +			view = window;
      +		}
      +
      +		return view.getComputedStyle( elem );
      +	};
      +
      +var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" );
      +
      +
      +
      +( function() {
      +
      +	// Executing both pixelPosition & boxSizingReliable tests require only one layout
      +	// so they're executed at the same time to save the second computation.
      +	function computeStyleTests() {
      +
      +		// This is a singleton, we need to execute it only once
      +		if ( !div ) {
      +			return;
      +		}
      +
      +		container.style.cssText = "position:absolute;left:-11111px;width:60px;" +
      +			"margin-top:1px;padding:0;border:0";
      +		div.style.cssText =
      +			"position:relative;display:block;box-sizing:border-box;overflow:scroll;" +
      +			"margin:auto;border:1px;padding:1px;" +
      +			"width:60%;top:1%";
      +		documentElement.appendChild( container ).appendChild( div );
      +
      +		var divStyle = window.getComputedStyle( div );
      +		pixelPositionVal = divStyle.top !== "1%";
      +
      +		// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44
      +		reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;
      +
      +		// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3
      +		// Some styles come back with percentage values, even though they shouldn't
      +		div.style.right = "60%";
      +		pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;
      +
      +		// Support: IE 9 - 11 only
      +		// Detect misreporting of content dimensions for box-sizing:border-box elements
      +		boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;
      +
      +		// Support: IE 9 only
      +		// Detect overflow:scroll screwiness (gh-3699)
      +		// Support: Chrome <=64
      +		// Don't get tricked when zoom affects offsetWidth (gh-4029)
      +		div.style.position = "absolute";
      +		scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;
      +
      +		documentElement.removeChild( container );
      +
      +		// Nullify the div so it wouldn't be stored in the memory and
      +		// it will also be a sign that checks already performed
      +		div = null;
      +	}
      +
      +	function roundPixelMeasures( measure ) {
      +		return Math.round( parseFloat( measure ) );
      +	}
      +
      +	var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,
      +		reliableMarginLeftVal,
      +		container = document.createElement( "div" ),
      +		div = document.createElement( "div" );
      +
      +	// Finish early in limited (non-browser) environments
      +	if ( !div.style ) {
      +		return;
      +	}
      +
      +	// Support: IE <=9 - 11 only
      +	// Style of cloned element affects source element cloned (#8908)
      +	div.style.backgroundClip = "content-box";
      +	div.cloneNode( true ).style.backgroundClip = "";
      +	support.clearCloneStyle = div.style.backgroundClip === "content-box";
      +
      +	jQuery.extend( support, {
      +		boxSizingReliable: function() {
      +			computeStyleTests();
      +			return boxSizingReliableVal;
      +		},
      +		pixelBoxStyles: function() {
      +			computeStyleTests();
      +			return pixelBoxStylesVal;
      +		},
      +		pixelPosition: function() {
      +			computeStyleTests();
      +			return pixelPositionVal;
      +		},
      +		reliableMarginLeft: function() {
      +			computeStyleTests();
      +			return reliableMarginLeftVal;
      +		},
      +		scrollboxSize: function() {
      +			computeStyleTests();
      +			return scrollboxSizeVal;
      +		}
      +	} );
      +} )();
      +
      +
      +function curCSS( elem, name, computed ) {
      +	var width, minWidth, maxWidth, ret,
      +
      +		// Support: Firefox 51+
      +		// Retrieving style before computed somehow
      +		// fixes an issue with getting wrong values
      +		// on detached elements
      +		style = elem.style;
      +
      +	computed = computed || getStyles( elem );
      +
      +	// getPropertyValue is needed for:
      +	//   .css('filter') (IE 9 only, #12537)
      +	//   .css('--customProperty) (#3144)
      +	if ( computed ) {
      +		ret = computed.getPropertyValue( name ) || computed[ name ];
      +
      +		if ( ret === "" && !isAttached( elem ) ) {
      +			ret = jQuery.style( elem, name );
      +		}
      +
      +		// A tribute to the "awesome hack by Dean Edwards"
      +		// Android Browser returns percentage for some values,
      +		// but width seems to be reliably pixels.
      +		// This is against the CSSOM draft spec:
      +		// https://drafts.csswg.org/cssom/#resolved-values
      +		if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {
      +
      +			// Remember the original values
      +			width = style.width;
      +			minWidth = style.minWidth;
      +			maxWidth = style.maxWidth;
      +
      +			// Put in the new values to get a computed value out
      +			style.minWidth = style.maxWidth = style.width = ret;
      +			ret = computed.width;
      +
      +			// Revert the changed values
      +			style.width = width;
      +			style.minWidth = minWidth;
      +			style.maxWidth = maxWidth;
      +		}
      +	}
      +
      +	return ret !== undefined ?
      +
      +		// Support: IE <=9 - 11 only
      +		// IE returns zIndex value as an integer.
      +		ret + "" :
      +		ret;
      +}
      +
      +
      +function addGetHookIf( conditionFn, hookFn ) {
      +
      +	// Define the hook, we'll check on the first run if it's really needed.
      +	return {
      +		get: function() {
      +			if ( conditionFn() ) {
      +
      +				// Hook not needed (or it's not possible to use it due
      +				// to missing dependency), remove it.
      +				delete this.get;
      +				return;
      +			}
      +
      +			// Hook needed; redefine it so that the support test is not executed again.
      +			return ( this.get = hookFn ).apply( this, arguments );
      +		}
      +	};
      +}
      +
      +
      +var cssPrefixes = [ "Webkit", "Moz", "ms" ],
      +	emptyStyle = document.createElement( "div" ).style,
      +	vendorProps = {};
      +
      +// Return a vendor-prefixed property or undefined
      +function vendorPropName( name ) {
      +
      +	// Check for vendor prefixed names
      +	var capName = name[ 0 ].toUpperCase() + name.slice( 1 ),
      +		i = cssPrefixes.length;
      +
      +	while ( i-- ) {
      +		name = cssPrefixes[ i ] + capName;
      +		if ( name in emptyStyle ) {
      +			return name;
      +		}
      +	}
      +}
      +
      +// Return a potentially-mapped jQuery.cssProps or vendor prefixed property
      +function finalPropName( name ) {
      +	var final = jQuery.cssProps[ name ] || vendorProps[ name ];
      +
      +	if ( final ) {
      +		return final;
      +	}
      +	if ( name in emptyStyle ) {
      +		return name;
      +	}
      +	return vendorProps[ name ] = vendorPropName( name ) || name;
      +}
      +
      +
      +var
      +
      +	// Swappable if display is none or starts with table
      +	// except "table", "table-cell", or "table-caption"
      +	// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
      +	rdisplayswap = /^(none|table(?!-c[ea]).+)/,
      +	rcustomProp = /^--/,
      +	cssShow = { position: "absolute", visibility: "hidden", display: "block" },
      +	cssNormalTransform = {
      +		letterSpacing: "0",
      +		fontWeight: "400"
      +	};
      +
      +function setPositiveNumber( elem, value, subtract ) {
      +
      +	// Any relative (+/-) values have already been
      +	// normalized at this point
      +	var matches = rcssNum.exec( value );
      +	return matches ?
      +
      +		// Guard against undefined "subtract", e.g., when used as in cssHooks
      +		Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) :
      +		value;
      +}
      +
      +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {
      +	var i = dimension === "width" ? 1 : 0,
      +		extra = 0,
      +		delta = 0;
      +
      +	// Adjustment may not be necessary
      +	if ( box === ( isBorderBox ? "border" : "content" ) ) {
      +		return 0;
      +	}
      +
      +	for ( ; i < 4; i += 2 ) {
      +
      +		// Both box models exclude margin
      +		if ( box === "margin" ) {
      +			delta += jQuery.css( elem, box + cssExpand[ i ], true, styles );
      +		}
      +
      +		// If we get here with a content-box, we're seeking "padding" or "border" or "margin"
      +		if ( !isBorderBox ) {
      +
      +			// Add padding
      +			delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
      +
      +			// For "border" or "margin", add border
      +			if ( box !== "padding" ) {
      +				delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
      +
      +			// But still keep track of it otherwise
      +			} else {
      +				extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
      +			}
      +
      +		// If we get here with a border-box (content + padding + border), we're seeking "content" or
      +		// "padding" or "margin"
      +		} else {
      +
      +			// For "content", subtract padding
      +			if ( box === "content" ) {
      +				delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
      +			}
      +
      +			// For "content" or "padding", subtract border
      +			if ( box !== "margin" ) {
      +				delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
      +			}
      +		}
      +	}
      +
      +	// Account for positive content-box scroll gutter when requested by providing computedVal
      +	if ( !isBorderBox && computedVal >= 0 ) {
      +
      +		// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border
      +		// Assuming integer scroll gutter, subtract the rest and round down
      +		delta += Math.max( 0, Math.ceil(
      +			elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -
      +			computedVal -
      +			delta -
      +			extra -
      +			0.5
      +
      +		// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter
      +		// Use an explicit zero to avoid NaN (gh-3964)
      +		) ) || 0;
      +	}
      +
      +	return delta;
      +}
      +
      +function getWidthOrHeight( elem, dimension, extra ) {
      +
      +	// Start with computed style
      +	var styles = getStyles( elem ),
      +
      +		// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).
      +		// Fake content-box until we know it's needed to know the true value.
      +		boxSizingNeeded = !support.boxSizingReliable() || extra,
      +		isBorderBox = boxSizingNeeded &&
      +			jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
      +		valueIsBorderBox = isBorderBox,
      +
      +		val = curCSS( elem, dimension, styles ),
      +		offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );
      +
      +	// Support: Firefox <=54
      +	// Return a confounding non-pixel value or feign ignorance, as appropriate.
      +	if ( rnumnonpx.test( val ) ) {
      +		if ( !extra ) {
      +			return val;
      +		}
      +		val = "auto";
      +	}
      +
      +
      +	// Fall back to offsetWidth/offsetHeight when value is "auto"
      +	// This happens for inline elements with no explicit setting (gh-3571)
      +	// Support: Android <=4.1 - 4.3 only
      +	// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)
      +	// Support: IE 9-11 only
      +	// Also use offsetWidth/offsetHeight for when box sizing is unreliable
      +	// We use getClientRects() to check for hidden/disconnected.
      +	// In those cases, the computed value can be trusted to be border-box
      +	if ( ( !support.boxSizingReliable() && isBorderBox ||
      +		val === "auto" ||
      +		!parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) &&
      +		elem.getClientRects().length ) {
      +
      +		isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box";
      +
      +		// Where available, offsetWidth/offsetHeight approximate border box dimensions.
      +		// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the
      +		// retrieved value as a content box dimension.
      +		valueIsBorderBox = offsetProp in elem;
      +		if ( valueIsBorderBox ) {
      +			val = elem[ offsetProp ];
      +		}
      +	}
      +
      +	// Normalize "" and auto
      +	val = parseFloat( val ) || 0;
      +
      +	// Adjust for the element's box model
      +	return ( val +
      +		boxModelAdjustment(
      +			elem,
      +			dimension,
      +			extra || ( isBorderBox ? "border" : "content" ),
      +			valueIsBorderBox,
      +			styles,
      +
      +			// Provide the current computed size to request scroll gutter calculation (gh-3589)
      +			val
      +		)
      +	) + "px";
      +}
      +
      +jQuery.extend( {
      +
      +	// Add in style property hooks for overriding the default
      +	// behavior of getting and setting a style property
      +	cssHooks: {
      +		opacity: {
      +			get: function( elem, computed ) {
      +				if ( computed ) {
      +
      +					// We should always get a number back from opacity
      +					var ret = curCSS( elem, "opacity" );
      +					return ret === "" ? "1" : ret;
      +				}
      +			}
      +		}
      +	},
      +
      +	// Don't automatically add "px" to these possibly-unitless properties
      +	cssNumber: {
      +		"animationIterationCount": true,
      +		"columnCount": true,
      +		"fillOpacity": true,
      +		"flexGrow": true,
      +		"flexShrink": true,
      +		"fontWeight": true,
      +		"gridArea": true,
      +		"gridColumn": true,
      +		"gridColumnEnd": true,
      +		"gridColumnStart": true,
      +		"gridRow": true,
      +		"gridRowEnd": true,
      +		"gridRowStart": true,
      +		"lineHeight": true,
      +		"opacity": true,
      +		"order": true,
      +		"orphans": true,
      +		"widows": true,
      +		"zIndex": true,
      +		"zoom": true
      +	},
      +
      +	// Add in properties whose names you wish to fix before
      +	// setting or getting the value
      +	cssProps: {},
      +
      +	// Get and set the style property on a DOM Node
      +	style: function( elem, name, value, extra ) {
      +
      +		// Don't set styles on text and comment nodes
      +		if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
      +			return;
      +		}
      +
      +		// Make sure that we're working with the right name
      +		var ret, type, hooks,
      +			origName = camelCase( name ),
      +			isCustomProp = rcustomProp.test( name ),
      +			style = elem.style;
      +
      +		// Make sure that we're working with the right name. We don't
      +		// want to query the value if it is a CSS custom property
      +		// since they are user-defined.
      +		if ( !isCustomProp ) {
      +			name = finalPropName( origName );
      +		}
      +
      +		// Gets hook for the prefixed version, then unprefixed version
      +		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
      +
      +		// Check if we're setting a value
      +		if ( value !== undefined ) {
      +			type = typeof value;
      +
      +			// Convert "+=" or "-=" to relative numbers (#7345)
      +			if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {
      +				value = adjustCSS( elem, name, ret );
      +
      +				// Fixes bug #9237
      +				type = "number";
      +			}
      +
      +			// Make sure that null and NaN values aren't set (#7116)
      +			if ( value == null || value !== value ) {
      +				return;
      +			}
      +
      +			// If a number was passed in, add the unit (except for certain CSS properties)
      +			// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append
      +			// "px" to a few hardcoded values.
      +			if ( type === "number" && !isCustomProp ) {
      +				value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" );
      +			}
      +
      +			// background-* props affect original clone's values
      +			if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) {
      +				style[ name ] = "inherit";
      +			}
      +
      +			// If a hook was provided, use that value, otherwise just set the specified value
      +			if ( !hooks || !( "set" in hooks ) ||
      +				( value = hooks.set( elem, value, extra ) ) !== undefined ) {
      +
      +				if ( isCustomProp ) {
      +					style.setProperty( name, value );
      +				} else {
      +					style[ name ] = value;
      +				}
      +			}
      +
      +		} else {
      +
      +			// If a hook was provided get the non-computed value from there
      +			if ( hooks && "get" in hooks &&
      +				( ret = hooks.get( elem, false, extra ) ) !== undefined ) {
      +
      +				return ret;
      +			}
      +
      +			// Otherwise just get the value from the style object
      +			return style[ name ];
      +		}
      +	},
      +
      +	css: function( elem, name, extra, styles ) {
      +		var val, num, hooks,
      +			origName = camelCase( name ),
      +			isCustomProp = rcustomProp.test( name );
      +
      +		// Make sure that we're working with the right name. We don't
      +		// want to modify the value if it is a CSS custom property
      +		// since they are user-defined.
      +		if ( !isCustomProp ) {
      +			name = finalPropName( origName );
      +		}
      +
      +		// Try prefixed name followed by the unprefixed name
      +		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
      +
      +		// If a hook was provided get the computed value from there
      +		if ( hooks && "get" in hooks ) {
      +			val = hooks.get( elem, true, extra );
      +		}
      +
      +		// Otherwise, if a way to get the computed value exists, use that
      +		if ( val === undefined ) {
      +			val = curCSS( elem, name, styles );
      +		}
      +
      +		// Convert "normal" to computed value
      +		if ( val === "normal" && name in cssNormalTransform ) {
      +			val = cssNormalTransform[ name ];
      +		}
      +
      +		// Make numeric if forced or a qualifier was provided and val looks numeric
      +		if ( extra === "" || extra ) {
      +			num = parseFloat( val );
      +			return extra === true || isFinite( num ) ? num || 0 : val;
      +		}
      +
      +		return val;
      +	}
      +} );
      +
      +jQuery.each( [ "height", "width" ], function( i, dimension ) {
      +	jQuery.cssHooks[ dimension ] = {
      +		get: function( elem, computed, extra ) {
      +			if ( computed ) {
      +
      +				// Certain elements can have dimension info if we invisibly show them
      +				// but it must have a current display style that would benefit
      +				return rdisplayswap.test( jQuery.css( elem, "display" ) ) &&
      +
      +					// Support: Safari 8+
      +					// Table columns in Safari have non-zero offsetWidth & zero
      +					// getBoundingClientRect().width unless display is changed.
      +					// Support: IE <=11 only
      +					// Running getBoundingClientRect on a disconnected node
      +					// in IE throws an error.
      +					( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?
      +						swap( elem, cssShow, function() {
      +							return getWidthOrHeight( elem, dimension, extra );
      +						} ) :
      +						getWidthOrHeight( elem, dimension, extra );
      +			}
      +		},
      +
      +		set: function( elem, value, extra ) {
      +			var matches,
      +				styles = getStyles( elem ),
      +
      +				// Only read styles.position if the test has a chance to fail
      +				// to avoid forcing a reflow.
      +				scrollboxSizeBuggy = !support.scrollboxSize() &&
      +					styles.position === "absolute",
      +
      +				// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)
      +				boxSizingNeeded = scrollboxSizeBuggy || extra,
      +				isBorderBox = boxSizingNeeded &&
      +					jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
      +				subtract = extra ?
      +					boxModelAdjustment(
      +						elem,
      +						dimension,
      +						extra,
      +						isBorderBox,
      +						styles
      +					) :
      +					0;
      +
      +			// Account for unreliable border-box dimensions by comparing offset* to computed and
      +			// faking a content-box to get border and padding (gh-3699)
      +			if ( isBorderBox && scrollboxSizeBuggy ) {
      +				subtract -= Math.ceil(
      +					elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -
      +					parseFloat( styles[ dimension ] ) -
      +					boxModelAdjustment( elem, dimension, "border", false, styles ) -
      +					0.5
      +				);
      +			}
      +
      +			// Convert to pixels if value adjustment is needed
      +			if ( subtract && ( matches = rcssNum.exec( value ) ) &&
      +				( matches[ 3 ] || "px" ) !== "px" ) {
      +
      +				elem.style[ dimension ] = value;
      +				value = jQuery.css( elem, dimension );
      +			}
      +
      +			return setPositiveNumber( elem, value, subtract );
      +		}
      +	};
      +} );
      +
      +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,
      +	function( elem, computed ) {
      +		if ( computed ) {
      +			return ( parseFloat( curCSS( elem, "marginLeft" ) ) ||
      +				elem.getBoundingClientRect().left -
      +					swap( elem, { marginLeft: 0 }, function() {
      +						return elem.getBoundingClientRect().left;
      +					} )
      +				) + "px";
      +		}
      +	}
      +);
      +
      +// These hooks are used by animate to expand properties
      +jQuery.each( {
      +	margin: "",
      +	padding: "",
      +	border: "Width"
      +}, function( prefix, suffix ) {
      +	jQuery.cssHooks[ prefix + suffix ] = {
      +		expand: function( value ) {
      +			var i = 0,
      +				expanded = {},
      +
      +				// Assumes a single number if not a string
      +				parts = typeof value === "string" ? value.split( " " ) : [ value ];
      +
      +			for ( ; i < 4; i++ ) {
      +				expanded[ prefix + cssExpand[ i ] + suffix ] =
      +					parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
      +			}
      +
      +			return expanded;
      +		}
      +	};
      +
      +	if ( prefix !== "margin" ) {
      +		jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
      +	}
      +} );
      +
      +jQuery.fn.extend( {
      +	css: function( name, value ) {
      +		return access( this, function( elem, name, value ) {
      +			var styles, len,
      +				map = {},
      +				i = 0;
      +
      +			if ( Array.isArray( name ) ) {
      +				styles = getStyles( elem );
      +				len = name.length;
      +
      +				for ( ; i < len; i++ ) {
      +					map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );
      +				}
      +
      +				return map;
      +			}
      +
      +			return value !== undefined ?
      +				jQuery.style( elem, name, value ) :
      +				jQuery.css( elem, name );
      +		}, name, value, arguments.length > 1 );
      +	}
      +} );
      +
      +
      +function Tween( elem, options, prop, end, easing ) {
      +	return new Tween.prototype.init( elem, options, prop, end, easing );
      +}
      +jQuery.Tween = Tween;
      +
      +Tween.prototype = {
      +	constructor: Tween,
      +	init: function( elem, options, prop, end, easing, unit ) {
      +		this.elem = elem;
      +		this.prop = prop;
      +		this.easing = easing || jQuery.easing._default;
      +		this.options = options;
      +		this.start = this.now = this.cur();
      +		this.end = end;
      +		this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
      +	},
      +	cur: function() {
      +		var hooks = Tween.propHooks[ this.prop ];
      +
      +		return hooks && hooks.get ?
      +			hooks.get( this ) :
      +			Tween.propHooks._default.get( this );
      +	},
      +	run: function( percent ) {
      +		var eased,
      +			hooks = Tween.propHooks[ this.prop ];
      +
      +		if ( this.options.duration ) {
      +			this.pos = eased = jQuery.easing[ this.easing ](
      +				percent, this.options.duration * percent, 0, 1, this.options.duration
      +			);
      +		} else {
      +			this.pos = eased = percent;
      +		}
      +		this.now = ( this.end - this.start ) * eased + this.start;
      +
      +		if ( this.options.step ) {
      +			this.options.step.call( this.elem, this.now, this );
      +		}
      +
      +		if ( hooks && hooks.set ) {
      +			hooks.set( this );
      +		} else {
      +			Tween.propHooks._default.set( this );
      +		}
      +		return this;
      +	}
      +};
      +
      +Tween.prototype.init.prototype = Tween.prototype;
      +
      +Tween.propHooks = {
      +	_default: {
      +		get: function( tween ) {
      +			var result;
      +
      +			// Use a property on the element directly when it is not a DOM element,
      +			// or when there is no matching style property that exists.
      +			if ( tween.elem.nodeType !== 1 ||
      +				tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {
      +				return tween.elem[ tween.prop ];
      +			}
      +
      +			// Passing an empty string as a 3rd parameter to .css will automatically
      +			// attempt a parseFloat and fallback to a string if the parse fails.
      +			// Simple values such as "10px" are parsed to Float;
      +			// complex values such as "rotate(1rad)" are returned as-is.
      +			result = jQuery.css( tween.elem, tween.prop, "" );
      +
      +			// Empty strings, null, undefined and "auto" are converted to 0.
      +			return !result || result === "auto" ? 0 : result;
      +		},
      +		set: function( tween ) {
      +
      +			// Use step hook for back compat.
      +			// Use cssHook if its there.
      +			// Use .style if available and use plain properties where available.
      +			if ( jQuery.fx.step[ tween.prop ] ) {
      +				jQuery.fx.step[ tween.prop ]( tween );
      +			} else if ( tween.elem.nodeType === 1 && (
      +					jQuery.cssHooks[ tween.prop ] ||
      +					tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {
      +				jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
      +			} else {
      +				tween.elem[ tween.prop ] = tween.now;
      +			}
      +		}
      +	}
      +};
      +
      +// Support: IE <=9 only
      +// Panic based approach to setting things on disconnected nodes
      +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
      +	set: function( tween ) {
      +		if ( tween.elem.nodeType && tween.elem.parentNode ) {
      +			tween.elem[ tween.prop ] = tween.now;
      +		}
      +	}
      +};
      +
      +jQuery.easing = {
      +	linear: function( p ) {
      +		return p;
      +	},
      +	swing: function( p ) {
      +		return 0.5 - Math.cos( p * Math.PI ) / 2;
      +	},
      +	_default: "swing"
      +};
      +
      +jQuery.fx = Tween.prototype.init;
      +
      +// Back compat <1.8 extension point
      +jQuery.fx.step = {};
      +
      +
      +
      +
      +var
      +	fxNow, inProgress,
      +	rfxtypes = /^(?:toggle|show|hide)$/,
      +	rrun = /queueHooks$/;
      +
      +function schedule() {
      +	if ( inProgress ) {
      +		if ( document.hidden === false && window.requestAnimationFrame ) {
      +			window.requestAnimationFrame( schedule );
      +		} else {
      +			window.setTimeout( schedule, jQuery.fx.interval );
      +		}
      +
      +		jQuery.fx.tick();
      +	}
      +}
      +
      +// Animations created synchronously will run synchronously
      +function createFxNow() {
      +	window.setTimeout( function() {
      +		fxNow = undefined;
      +	} );
      +	return ( fxNow = Date.now() );
      +}
      +
      +// Generate parameters to create a standard animation
      +function genFx( type, includeWidth ) {
      +	var which,
      +		i = 0,
      +		attrs = { height: type };
      +
      +	// If we include width, step value is 1 to do all cssExpand values,
      +	// otherwise step value is 2 to skip over Left and Right
      +	includeWidth = includeWidth ? 1 : 0;
      +	for ( ; i < 4; i += 2 - includeWidth ) {
      +		which = cssExpand[ i ];
      +		attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
      +	}
      +
      +	if ( includeWidth ) {
      +		attrs.opacity = attrs.width = type;
      +	}
      +
      +	return attrs;
      +}
      +
      +function createTween( value, prop, animation ) {
      +	var tween,
      +		collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ),
      +		index = 0,
      +		length = collection.length;
      +	for ( ; index < length; index++ ) {
      +		if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {
      +
      +			// We're done with this property
      +			return tween;
      +		}
      +	}
      +}
      +
      +function defaultPrefilter( elem, props, opts ) {
      +	var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,
      +		isBox = "width" in props || "height" in props,
      +		anim = this,
      +		orig = {},
      +		style = elem.style,
      +		hidden = elem.nodeType && isHiddenWithinTree( elem ),
      +		dataShow = dataPriv.get( elem, "fxshow" );
      +
      +	// Queue-skipping animations hijack the fx hooks
      +	if ( !opts.queue ) {
      +		hooks = jQuery._queueHooks( elem, "fx" );
      +		if ( hooks.unqueued == null ) {
      +			hooks.unqueued = 0;
      +			oldfire = hooks.empty.fire;
      +			hooks.empty.fire = function() {
      +				if ( !hooks.unqueued ) {
      +					oldfire();
      +				}
      +			};
      +		}
      +		hooks.unqueued++;
      +
      +		anim.always( function() {
      +
      +			// Ensure the complete handler is called before this completes
      +			anim.always( function() {
      +				hooks.unqueued--;
      +				if ( !jQuery.queue( elem, "fx" ).length ) {
      +					hooks.empty.fire();
      +				}
      +			} );
      +		} );
      +	}
      +
      +	// Detect show/hide animations
      +	for ( prop in props ) {
      +		value = props[ prop ];
      +		if ( rfxtypes.test( value ) ) {
      +			delete props[ prop ];
      +			toggle = toggle || value === "toggle";
      +			if ( value === ( hidden ? "hide" : "show" ) ) {
      +
      +				// Pretend to be hidden if this is a "show" and
      +				// there is still data from a stopped show/hide
      +				if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
      +					hidden = true;
      +
      +				// Ignore all other no-op show/hide data
      +				} else {
      +					continue;
      +				}
      +			}
      +			orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
      +		}
      +	}
      +
      +	// Bail out if this is a no-op like .hide().hide()
      +	propTween = !jQuery.isEmptyObject( props );
      +	if ( !propTween && jQuery.isEmptyObject( orig ) ) {
      +		return;
      +	}
      +
      +	// Restrict "overflow" and "display" styles during box animations
      +	if ( isBox && elem.nodeType === 1 ) {
      +
      +		// Support: IE <=9 - 11, Edge 12 - 15
      +		// Record all 3 overflow attributes because IE does not infer the shorthand
      +		// from identically-valued overflowX and overflowY and Edge just mirrors
      +		// the overflowX value there.
      +		opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
      +
      +		// Identify a display type, preferring old show/hide data over the CSS cascade
      +		restoreDisplay = dataShow && dataShow.display;
      +		if ( restoreDisplay == null ) {
      +			restoreDisplay = dataPriv.get( elem, "display" );
      +		}
      +		display = jQuery.css( elem, "display" );
      +		if ( display === "none" ) {
      +			if ( restoreDisplay ) {
      +				display = restoreDisplay;
      +			} else {
      +
      +				// Get nonempty value(s) by temporarily forcing visibility
      +				showHide( [ elem ], true );
      +				restoreDisplay = elem.style.display || restoreDisplay;
      +				display = jQuery.css( elem, "display" );
      +				showHide( [ elem ] );
      +			}
      +		}
      +
      +		// Animate inline elements as inline-block
      +		if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) {
      +			if ( jQuery.css( elem, "float" ) === "none" ) {
      +
      +				// Restore the original display value at the end of pure show/hide animations
      +				if ( !propTween ) {
      +					anim.done( function() {
      +						style.display = restoreDisplay;
      +					} );
      +					if ( restoreDisplay == null ) {
      +						display = style.display;
      +						restoreDisplay = display === "none" ? "" : display;
      +					}
      +				}
      +				style.display = "inline-block";
      +			}
      +		}
      +	}
      +
      +	if ( opts.overflow ) {
      +		style.overflow = "hidden";
      +		anim.always( function() {
      +			style.overflow = opts.overflow[ 0 ];
      +			style.overflowX = opts.overflow[ 1 ];
      +			style.overflowY = opts.overflow[ 2 ];
      +		} );
      +	}
      +
      +	// Implement show/hide animations
      +	propTween = false;
      +	for ( prop in orig ) {
      +
      +		// General show/hide setup for this element animation
      +		if ( !propTween ) {
      +			if ( dataShow ) {
      +				if ( "hidden" in dataShow ) {
      +					hidden = dataShow.hidden;
      +				}
      +			} else {
      +				dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } );
      +			}
      +
      +			// Store hidden/visible for toggle so `.stop().toggle()` "reverses"
      +			if ( toggle ) {
      +				dataShow.hidden = !hidden;
      +			}
      +
      +			// Show elements before animating them
      +			if ( hidden ) {
      +				showHide( [ elem ], true );
      +			}
      +
      +			/* eslint-disable no-loop-func */
      +
      +			anim.done( function() {
      +
      +			/* eslint-enable no-loop-func */
      +
      +				// The final step of a "hide" animation is actually hiding the element
      +				if ( !hidden ) {
      +					showHide( [ elem ] );
      +				}
      +				dataPriv.remove( elem, "fxshow" );
      +				for ( prop in orig ) {
      +					jQuery.style( elem, prop, orig[ prop ] );
      +				}
      +			} );
      +		}
      +
      +		// Per-property setup
      +		propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
      +		if ( !( prop in dataShow ) ) {
      +			dataShow[ prop ] = propTween.start;
      +			if ( hidden ) {
      +				propTween.end = propTween.start;
      +				propTween.start = 0;
      +			}
      +		}
      +	}
      +}
      +
      +function propFilter( props, specialEasing ) {
      +	var index, name, easing, value, hooks;
      +
      +	// camelCase, specialEasing and expand cssHook pass
      +	for ( index in props ) {
      +		name = camelCase( index );
      +		easing = specialEasing[ name ];
      +		value = props[ index ];
      +		if ( Array.isArray( value ) ) {
      +			easing = value[ 1 ];
      +			value = props[ index ] = value[ 0 ];
      +		}
      +
      +		if ( index !== name ) {
      +			props[ name ] = value;
      +			delete props[ index ];
      +		}
      +
      +		hooks = jQuery.cssHooks[ name ];
      +		if ( hooks && "expand" in hooks ) {
      +			value = hooks.expand( value );
      +			delete props[ name ];
      +
      +			// Not quite $.extend, this won't overwrite existing keys.
      +			// Reusing 'index' because we have the correct "name"
      +			for ( index in value ) {
      +				if ( !( index in props ) ) {
      +					props[ index ] = value[ index ];
      +					specialEasing[ index ] = easing;
      +				}
      +			}
      +		} else {
      +			specialEasing[ name ] = easing;
      +		}
      +	}
      +}
      +
      +function Animation( elem, properties, options ) {
      +	var result,
      +		stopped,
      +		index = 0,
      +		length = Animation.prefilters.length,
      +		deferred = jQuery.Deferred().always( function() {
      +
      +			// Don't match elem in the :animated selector
      +			delete tick.elem;
      +		} ),
      +		tick = function() {
      +			if ( stopped ) {
      +				return false;
      +			}
      +			var currentTime = fxNow || createFxNow(),
      +				remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
      +
      +				// Support: Android 2.3 only
      +				// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)
      +				temp = remaining / animation.duration || 0,
      +				percent = 1 - temp,
      +				index = 0,
      +				length = animation.tweens.length;
      +
      +			for ( ; index < length; index++ ) {
      +				animation.tweens[ index ].run( percent );
      +			}
      +
      +			deferred.notifyWith( elem, [ animation, percent, remaining ] );
      +
      +			// If there's more to do, yield
      +			if ( percent < 1 && length ) {
      +				return remaining;
      +			}
      +
      +			// If this was an empty animation, synthesize a final progress notification
      +			if ( !length ) {
      +				deferred.notifyWith( elem, [ animation, 1, 0 ] );
      +			}
      +
      +			// Resolve the animation and report its conclusion
      +			deferred.resolveWith( elem, [ animation ] );
      +			return false;
      +		},
      +		animation = deferred.promise( {
      +			elem: elem,
      +			props: jQuery.extend( {}, properties ),
      +			opts: jQuery.extend( true, {
      +				specialEasing: {},
      +				easing: jQuery.easing._default
      +			}, options ),
      +			originalProperties: properties,
      +			originalOptions: options,
      +			startTime: fxNow || createFxNow(),
      +			duration: options.duration,
      +			tweens: [],
      +			createTween: function( prop, end ) {
      +				var tween = jQuery.Tween( elem, animation.opts, prop, end,
      +						animation.opts.specialEasing[ prop ] || animation.opts.easing );
      +				animation.tweens.push( tween );
      +				return tween;
      +			},
      +			stop: function( gotoEnd ) {
      +				var index = 0,
      +
      +					// If we are going to the end, we want to run all the tweens
      +					// otherwise we skip this part
      +					length = gotoEnd ? animation.tweens.length : 0;
      +				if ( stopped ) {
      +					return this;
      +				}
      +				stopped = true;
      +				for ( ; index < length; index++ ) {
      +					animation.tweens[ index ].run( 1 );
      +				}
      +
      +				// Resolve when we played the last frame; otherwise, reject
      +				if ( gotoEnd ) {
      +					deferred.notifyWith( elem, [ animation, 1, 0 ] );
      +					deferred.resolveWith( elem, [ animation, gotoEnd ] );
      +				} else {
      +					deferred.rejectWith( elem, [ animation, gotoEnd ] );
      +				}
      +				return this;
      +			}
      +		} ),
      +		props = animation.props;
      +
      +	propFilter( props, animation.opts.specialEasing );
      +
      +	for ( ; index < length; index++ ) {
      +		result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );
      +		if ( result ) {
      +			if ( isFunction( result.stop ) ) {
      +				jQuery._queueHooks( animation.elem, animation.opts.queue ).stop =
      +					result.stop.bind( result );
      +			}
      +			return result;
      +		}
      +	}
      +
      +	jQuery.map( props, createTween, animation );
      +
      +	if ( isFunction( animation.opts.start ) ) {
      +		animation.opts.start.call( elem, animation );
      +	}
      +
      +	// Attach callbacks from options
      +	animation
      +		.progress( animation.opts.progress )
      +		.done( animation.opts.done, animation.opts.complete )
      +		.fail( animation.opts.fail )
      +		.always( animation.opts.always );
      +
      +	jQuery.fx.timer(
      +		jQuery.extend( tick, {
      +			elem: elem,
      +			anim: animation,
      +			queue: animation.opts.queue
      +		} )
      +	);
      +
      +	return animation;
      +}
      +
      +jQuery.Animation = jQuery.extend( Animation, {
      +
      +	tweeners: {
      +		"*": [ function( prop, value ) {
      +			var tween = this.createTween( prop, value );
      +			adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );
      +			return tween;
      +		} ]
      +	},
      +
      +	tweener: function( props, callback ) {
      +		if ( isFunction( props ) ) {
      +			callback = props;
      +			props = [ "*" ];
      +		} else {
      +			props = props.match( rnothtmlwhite );
      +		}
      +
      +		var prop,
      +			index = 0,
      +			length = props.length;
      +
      +		for ( ; index < length; index++ ) {
      +			prop = props[ index ];
      +			Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];
      +			Animation.tweeners[ prop ].unshift( callback );
      +		}
      +	},
      +
      +	prefilters: [ defaultPrefilter ],
      +
      +	prefilter: function( callback, prepend ) {
      +		if ( prepend ) {
      +			Animation.prefilters.unshift( callback );
      +		} else {
      +			Animation.prefilters.push( callback );
      +		}
      +	}
      +} );
      +
      +jQuery.speed = function( speed, easing, fn ) {
      +	var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
      +		complete: fn || !fn && easing ||
      +			isFunction( speed ) && speed,
      +		duration: speed,
      +		easing: fn && easing || easing && !isFunction( easing ) && easing
      +	};
      +
      +	// Go to the end state if fx are off
      +	if ( jQuery.fx.off ) {
      +		opt.duration = 0;
      +
      +	} else {
      +		if ( typeof opt.duration !== "number" ) {
      +			if ( opt.duration in jQuery.fx.speeds ) {
      +				opt.duration = jQuery.fx.speeds[ opt.duration ];
      +
      +			} else {
      +				opt.duration = jQuery.fx.speeds._default;
      +			}
      +		}
      +	}
      +
      +	// Normalize opt.queue - true/undefined/null -> "fx"
      +	if ( opt.queue == null || opt.queue === true ) {
      +		opt.queue = "fx";
      +	}
      +
      +	// Queueing
      +	opt.old = opt.complete;
      +
      +	opt.complete = function() {
      +		if ( isFunction( opt.old ) ) {
      +			opt.old.call( this );
      +		}
      +
      +		if ( opt.queue ) {
      +			jQuery.dequeue( this, opt.queue );
      +		}
      +	};
      +
      +	return opt;
      +};
      +
      +jQuery.fn.extend( {
      +	fadeTo: function( speed, to, easing, callback ) {
      +
      +		// Show any hidden elements after setting opacity to 0
      +		return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show()
      +
      +			// Animate to the value specified
      +			.end().animate( { opacity: to }, speed, easing, callback );
      +	},
      +	animate: function( prop, speed, easing, callback ) {
      +		var empty = jQuery.isEmptyObject( prop ),
      +			optall = jQuery.speed( speed, easing, callback ),
      +			doAnimation = function() {
      +
      +				// Operate on a copy of prop so per-property easing won't be lost
      +				var anim = Animation( this, jQuery.extend( {}, prop ), optall );
      +
      +				// Empty animations, or finishing resolves immediately
      +				if ( empty || dataPriv.get( this, "finish" ) ) {
      +					anim.stop( true );
      +				}
      +			};
      +			doAnimation.finish = doAnimation;
      +
      +		return empty || optall.queue === false ?
      +			this.each( doAnimation ) :
      +			this.queue( optall.queue, doAnimation );
      +	},
      +	stop: function( type, clearQueue, gotoEnd ) {
      +		var stopQueue = function( hooks ) {
      +			var stop = hooks.stop;
      +			delete hooks.stop;
      +			stop( gotoEnd );
      +		};
      +
      +		if ( typeof type !== "string" ) {
      +			gotoEnd = clearQueue;
      +			clearQueue = type;
      +			type = undefined;
      +		}
      +		if ( clearQueue && type !== false ) {
      +			this.queue( type || "fx", [] );
      +		}
      +
      +		return this.each( function() {
      +			var dequeue = true,
      +				index = type != null && type + "queueHooks",
      +				timers = jQuery.timers,
      +				data = dataPriv.get( this );
      +
      +			if ( index ) {
      +				if ( data[ index ] && data[ index ].stop ) {
      +					stopQueue( data[ index ] );
      +				}
      +			} else {
      +				for ( index in data ) {
      +					if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
      +						stopQueue( data[ index ] );
      +					}
      +				}
      +			}
      +
      +			for ( index = timers.length; index--; ) {
      +				if ( timers[ index ].elem === this &&
      +					( type == null || timers[ index ].queue === type ) ) {
      +
      +					timers[ index ].anim.stop( gotoEnd );
      +					dequeue = false;
      +					timers.splice( index, 1 );
      +				}
      +			}
      +
      +			// Start the next in the queue if the last step wasn't forced.
      +			// Timers currently will call their complete callbacks, which
      +			// will dequeue but only if they were gotoEnd.
      +			if ( dequeue || !gotoEnd ) {
      +				jQuery.dequeue( this, type );
      +			}
      +		} );
      +	},
      +	finish: function( type ) {
      +		if ( type !== false ) {
      +			type = type || "fx";
      +		}
      +		return this.each( function() {
      +			var index,
      +				data = dataPriv.get( this ),
      +				queue = data[ type + "queue" ],
      +				hooks = data[ type + "queueHooks" ],
      +				timers = jQuery.timers,
      +				length = queue ? queue.length : 0;
      +
      +			// Enable finishing flag on private data
      +			data.finish = true;
      +
      +			// Empty the queue first
      +			jQuery.queue( this, type, [] );
      +
      +			if ( hooks && hooks.stop ) {
      +				hooks.stop.call( this, true );
      +			}
      +
      +			// Look for any active animations, and finish them
      +			for ( index = timers.length; index--; ) {
      +				if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
      +					timers[ index ].anim.stop( true );
      +					timers.splice( index, 1 );
      +				}
      +			}
      +
      +			// Look for any animations in the old queue and finish them
      +			for ( index = 0; index < length; index++ ) {
      +				if ( queue[ index ] && queue[ index ].finish ) {
      +					queue[ index ].finish.call( this );
      +				}
      +			}
      +
      +			// Turn off finishing flag
      +			delete data.finish;
      +		} );
      +	}
      +} );
      +
      +jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) {
      +	var cssFn = jQuery.fn[ name ];
      +	jQuery.fn[ name ] = function( speed, easing, callback ) {
      +		return speed == null || typeof speed === "boolean" ?
      +			cssFn.apply( this, arguments ) :
      +			this.animate( genFx( name, true ), speed, easing, callback );
      +	};
      +} );
      +
      +// Generate shortcuts for custom animations
      +jQuery.each( {
      +	slideDown: genFx( "show" ),
      +	slideUp: genFx( "hide" ),
      +	slideToggle: genFx( "toggle" ),
      +	fadeIn: { opacity: "show" },
      +	fadeOut: { opacity: "hide" },
      +	fadeToggle: { opacity: "toggle" }
      +}, function( name, props ) {
      +	jQuery.fn[ name ] = function( speed, easing, callback ) {
      +		return this.animate( props, speed, easing, callback );
      +	};
      +} );
      +
      +jQuery.timers = [];
      +jQuery.fx.tick = function() {
      +	var timer,
      +		i = 0,
      +		timers = jQuery.timers;
      +
      +	fxNow = Date.now();
      +
      +	for ( ; i < timers.length; i++ ) {
      +		timer = timers[ i ];
      +
      +		// Run the timer and safely remove it when done (allowing for external removal)
      +		if ( !timer() && timers[ i ] === timer ) {
      +			timers.splice( i--, 1 );
      +		}
      +	}
      +
      +	if ( !timers.length ) {
      +		jQuery.fx.stop();
      +	}
      +	fxNow = undefined;
      +};
      +
      +jQuery.fx.timer = function( timer ) {
      +	jQuery.timers.push( timer );
      +	jQuery.fx.start();
      +};
      +
      +jQuery.fx.interval = 13;
      +jQuery.fx.start = function() {
      +	if ( inProgress ) {
      +		return;
      +	}
      +
      +	inProgress = true;
      +	schedule();
      +};
      +
      +jQuery.fx.stop = function() {
      +	inProgress = null;
      +};
      +
      +jQuery.fx.speeds = {
      +	slow: 600,
      +	fast: 200,
      +
      +	// Default speed
      +	_default: 400
      +};
      +
      +
      +// Based off of the plugin by Clint Helfers, with permission.
      +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/
      +jQuery.fn.delay = function( time, type ) {
      +	time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
      +	type = type || "fx";
      +
      +	return this.queue( type, function( next, hooks ) {
      +		var timeout = window.setTimeout( next, time );
      +		hooks.stop = function() {
      +			window.clearTimeout( timeout );
      +		};
      +	} );
      +};
      +
      +
      +( function() {
      +	var input = document.createElement( "input" ),
      +		select = document.createElement( "select" ),
      +		opt = select.appendChild( document.createElement( "option" ) );
      +
      +	input.type = "checkbox";
      +
      +	// Support: Android <=4.3 only
      +	// Default value for a checkbox should be "on"
      +	support.checkOn = input.value !== "";
      +
      +	// Support: IE <=11 only
      +	// Must access selectedIndex to make default options select
      +	support.optSelected = opt.selected;
      +
      +	// Support: IE <=11 only
      +	// An input loses its value after becoming a radio
      +	input = document.createElement( "input" );
      +	input.value = "t";
      +	input.type = "radio";
      +	support.radioValue = input.value === "t";
      +} )();
      +
      +
      +var boolHook,
      +	attrHandle = jQuery.expr.attrHandle;
      +
      +jQuery.fn.extend( {
      +	attr: function( name, value ) {
      +		return access( this, jQuery.attr, name, value, arguments.length > 1 );
      +	},
      +
      +	removeAttr: function( name ) {
      +		return this.each( function() {
      +			jQuery.removeAttr( this, name );
      +		} );
      +	}
      +} );
      +
      +jQuery.extend( {
      +	attr: function( elem, name, value ) {
      +		var ret, hooks,
      +			nType = elem.nodeType;
      +
      +		// Don't get/set attributes on text, comment and attribute nodes
      +		if ( nType === 3 || nType === 8 || nType === 2 ) {
      +			return;
      +		}
      +
      +		// Fallback to prop when attributes are not supported
      +		if ( typeof elem.getAttribute === "undefined" ) {
      +			return jQuery.prop( elem, name, value );
      +		}
      +
      +		// Attribute hooks are determined by the lowercase version
      +		// Grab necessary hook if one is defined
      +		if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
      +			hooks = jQuery.attrHooks[ name.toLowerCase() ] ||
      +				( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );
      +		}
      +
      +		if ( value !== undefined ) {
      +			if ( value === null ) {
      +				jQuery.removeAttr( elem, name );
      +				return;
      +			}
      +
      +			if ( hooks && "set" in hooks &&
      +				( ret = hooks.set( elem, value, name ) ) !== undefined ) {
      +				return ret;
      +			}
      +
      +			elem.setAttribute( name, value + "" );
      +			return value;
      +		}
      +
      +		if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
      +			return ret;
      +		}
      +
      +		ret = jQuery.find.attr( elem, name );
      +
      +		// Non-existent attributes return null, we normalize to undefined
      +		return ret == null ? undefined : ret;
      +	},
      +
      +	attrHooks: {
      +		type: {
      +			set: function( elem, value ) {
      +				if ( !support.radioValue && value === "radio" &&
      +					nodeName( elem, "input" ) ) {
      +					var val = elem.value;
      +					elem.setAttribute( "type", value );
      +					if ( val ) {
      +						elem.value = val;
      +					}
      +					return value;
      +				}
      +			}
      +		}
      +	},
      +
      +	removeAttr: function( elem, value ) {
      +		var name,
      +			i = 0,
      +
      +			// Attribute names can contain non-HTML whitespace characters
      +			// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2
      +			attrNames = value && value.match( rnothtmlwhite );
      +
      +		if ( attrNames && elem.nodeType === 1 ) {
      +			while ( ( name = attrNames[ i++ ] ) ) {
      +				elem.removeAttribute( name );
      +			}
      +		}
      +	}
      +} );
      +
      +// Hooks for boolean attributes
      +boolHook = {
      +	set: function( elem, value, name ) {
      +		if ( value === false ) {
      +
      +			// Remove boolean attributes when set to false
      +			jQuery.removeAttr( elem, name );
      +		} else {
      +			elem.setAttribute( name, name );
      +		}
      +		return name;
      +	}
      +};
      +
      +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {
      +	var getter = attrHandle[ name ] || jQuery.find.attr;
      +
      +	attrHandle[ name ] = function( elem, name, isXML ) {
      +		var ret, handle,
      +			lowercaseName = name.toLowerCase();
      +
      +		if ( !isXML ) {
      +
      +			// Avoid an infinite loop by temporarily removing this function from the getter
      +			handle = attrHandle[ lowercaseName ];
      +			attrHandle[ lowercaseName ] = ret;
      +			ret = getter( elem, name, isXML ) != null ?
      +				lowercaseName :
      +				null;
      +			attrHandle[ lowercaseName ] = handle;
      +		}
      +		return ret;
      +	};
      +} );
      +
      +
      +
      +
      +var rfocusable = /^(?:input|select|textarea|button)$/i,
      +	rclickable = /^(?:a|area)$/i;
      +
      +jQuery.fn.extend( {
      +	prop: function( name, value ) {
      +		return access( this, jQuery.prop, name, value, arguments.length > 1 );
      +	},
      +
      +	removeProp: function( name ) {
      +		return this.each( function() {
      +			delete this[ jQuery.propFix[ name ] || name ];
      +		} );
      +	}
      +} );
      +
      +jQuery.extend( {
      +	prop: function( elem, name, value ) {
      +		var ret, hooks,
      +			nType = elem.nodeType;
      +
      +		// Don't get/set properties on text, comment and attribute nodes
      +		if ( nType === 3 || nType === 8 || nType === 2 ) {
      +			return;
      +		}
      +
      +		if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
      +
      +			// Fix name and attach hooks
      +			name = jQuery.propFix[ name ] || name;
      +			hooks = jQuery.propHooks[ name ];
      +		}
      +
      +		if ( value !== undefined ) {
      +			if ( hooks && "set" in hooks &&
      +				( ret = hooks.set( elem, value, name ) ) !== undefined ) {
      +				return ret;
      +			}
      +
      +			return ( elem[ name ] = value );
      +		}
      +
      +		if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
      +			return ret;
      +		}
      +
      +		return elem[ name ];
      +	},
      +
      +	propHooks: {
      +		tabIndex: {
      +			get: function( elem ) {
      +
      +				// Support: IE <=9 - 11 only
      +				// elem.tabIndex doesn't always return the
      +				// correct value when it hasn't been explicitly set
      +				// https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
      +				// Use proper attribute retrieval(#12072)
      +				var tabindex = jQuery.find.attr( elem, "tabindex" );
      +
      +				if ( tabindex ) {
      +					return parseInt( tabindex, 10 );
      +				}
      +
      +				if (
      +					rfocusable.test( elem.nodeName ) ||
      +					rclickable.test( elem.nodeName ) &&
      +					elem.href
      +				) {
      +					return 0;
      +				}
      +
      +				return -1;
      +			}
      +		}
      +	},
      +
      +	propFix: {
      +		"for": "htmlFor",
      +		"class": "className"
      +	}
      +} );
      +
      +// Support: IE <=11 only
      +// Accessing the selectedIndex property
      +// forces the browser to respect setting selected
      +// on the option
      +// The getter ensures a default option is selected
      +// when in an optgroup
      +// eslint rule "no-unused-expressions" is disabled for this code
      +// since it considers such accessions noop
      +if ( !support.optSelected ) {
      +	jQuery.propHooks.selected = {
      +		get: function( elem ) {
      +
      +			/* eslint no-unused-expressions: "off" */
      +
      +			var parent = elem.parentNode;
      +			if ( parent && parent.parentNode ) {
      +				parent.parentNode.selectedIndex;
      +			}
      +			return null;
      +		},
      +		set: function( elem ) {
      +
      +			/* eslint no-unused-expressions: "off" */
      +
      +			var parent = elem.parentNode;
      +			if ( parent ) {
      +				parent.selectedIndex;
      +
      +				if ( parent.parentNode ) {
      +					parent.parentNode.selectedIndex;
      +				}
      +			}
      +		}
      +	};
      +}
      +
      +jQuery.each( [
      +	"tabIndex",
      +	"readOnly",
      +	"maxLength",
      +	"cellSpacing",
      +	"cellPadding",
      +	"rowSpan",
      +	"colSpan",
      +	"useMap",
      +	"frameBorder",
      +	"contentEditable"
      +], function() {
      +	jQuery.propFix[ this.toLowerCase() ] = this;
      +} );
      +
      +
      +
      +
      +	// Strip and collapse whitespace according to HTML spec
      +	// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace
      +	function stripAndCollapse( value ) {
      +		var tokens = value.match( rnothtmlwhite ) || [];
      +		return tokens.join( " " );
      +	}
      +
      +
      +function getClass( elem ) {
      +	return elem.getAttribute && elem.getAttribute( "class" ) || "";
      +}
      +
      +function classesToArray( value ) {
      +	if ( Array.isArray( value ) ) {
      +		return value;
      +	}
      +	if ( typeof value === "string" ) {
      +		return value.match( rnothtmlwhite ) || [];
      +	}
      +	return [];
      +}
      +
      +jQuery.fn.extend( {
      +	addClass: function( value ) {
      +		var classes, elem, cur, curValue, clazz, j, finalValue,
      +			i = 0;
      +
      +		if ( isFunction( value ) ) {
      +			return this.each( function( j ) {
      +				jQuery( this ).addClass( value.call( this, j, getClass( this ) ) );
      +			} );
      +		}
      +
      +		classes = classesToArray( value );
      +
      +		if ( classes.length ) {
      +			while ( ( elem = this[ i++ ] ) ) {
      +				curValue = getClass( elem );
      +				cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " );
      +
      +				if ( cur ) {
      +					j = 0;
      +					while ( ( clazz = classes[ j++ ] ) ) {
      +						if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
      +							cur += clazz + " ";
      +						}
      +					}
      +
      +					// Only assign if different to avoid unneeded rendering.
      +					finalValue = stripAndCollapse( cur );
      +					if ( curValue !== finalValue ) {
      +						elem.setAttribute( "class", finalValue );
      +					}
      +				}
      +			}
      +		}
      +
      +		return this;
      +	},
      +
      +	removeClass: function( value ) {
      +		var classes, elem, cur, curValue, clazz, j, finalValue,
      +			i = 0;
      +
      +		if ( isFunction( value ) ) {
      +			return this.each( function( j ) {
      +				jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );
      +			} );
      +		}
      +
      +		if ( !arguments.length ) {
      +			return this.attr( "class", "" );
      +		}
      +
      +		classes = classesToArray( value );
      +
      +		if ( classes.length ) {
      +			while ( ( elem = this[ i++ ] ) ) {
      +				curValue = getClass( elem );
      +
      +				// This expression is here for better compressibility (see addClass)
      +				cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " );
      +
      +				if ( cur ) {
      +					j = 0;
      +					while ( ( clazz = classes[ j++ ] ) ) {
      +
      +						// Remove *all* instances
      +						while ( cur.indexOf( " " + clazz + " " ) > -1 ) {
      +							cur = cur.replace( " " + clazz + " ", " " );
      +						}
      +					}
      +
      +					// Only assign if different to avoid unneeded rendering.
      +					finalValue = stripAndCollapse( cur );
      +					if ( curValue !== finalValue ) {
      +						elem.setAttribute( "class", finalValue );
      +					}
      +				}
      +			}
      +		}
      +
      +		return this;
      +	},
      +
      +	toggleClass: function( value, stateVal ) {
      +		var type = typeof value,
      +			isValidValue = type === "string" || Array.isArray( value );
      +
      +		if ( typeof stateVal === "boolean" && isValidValue ) {
      +			return stateVal ? this.addClass( value ) : this.removeClass( value );
      +		}
      +
      +		if ( isFunction( value ) ) {
      +			return this.each( function( i ) {
      +				jQuery( this ).toggleClass(
      +					value.call( this, i, getClass( this ), stateVal ),
      +					stateVal
      +				);
      +			} );
      +		}
      +
      +		return this.each( function() {
      +			var className, i, self, classNames;
      +
      +			if ( isValidValue ) {
      +
      +				// Toggle individual class names
      +				i = 0;
      +				self = jQuery( this );
      +				classNames = classesToArray( value );
      +
      +				while ( ( className = classNames[ i++ ] ) ) {
      +
      +					// Check each className given, space separated list
      +					if ( self.hasClass( className ) ) {
      +						self.removeClass( className );
      +					} else {
      +						self.addClass( className );
      +					}
      +				}
      +
      +			// Toggle whole class name
      +			} else if ( value === undefined || type === "boolean" ) {
      +				className = getClass( this );
      +				if ( className ) {
      +
      +					// Store className if set
      +					dataPriv.set( this, "__className__", className );
      +				}
      +
      +				// If the element has a class name or if we're passed `false`,
      +				// then remove the whole classname (if there was one, the above saved it).
      +				// Otherwise bring back whatever was previously saved (if anything),
      +				// falling back to the empty string if nothing was stored.
      +				if ( this.setAttribute ) {
      +					this.setAttribute( "class",
      +						className || value === false ?
      +						"" :
      +						dataPriv.get( this, "__className__" ) || ""
      +					);
      +				}
      +			}
      +		} );
      +	},
      +
      +	hasClass: function( selector ) {
      +		var className, elem,
      +			i = 0;
      +
      +		className = " " + selector + " ";
      +		while ( ( elem = this[ i++ ] ) ) {
      +			if ( elem.nodeType === 1 &&
      +				( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) {
      +					return true;
      +			}
      +		}
      +
      +		return false;
      +	}
      +} );
      +
      +
      +
      +
      +var rreturn = /\r/g;
      +
      +jQuery.fn.extend( {
      +	val: function( value ) {
      +		var hooks, ret, valueIsFunction,
      +			elem = this[ 0 ];
      +
      +		if ( !arguments.length ) {
      +			if ( elem ) {
      +				hooks = jQuery.valHooks[ elem.type ] ||
      +					jQuery.valHooks[ elem.nodeName.toLowerCase() ];
      +
      +				if ( hooks &&
      +					"get" in hooks &&
      +					( ret = hooks.get( elem, "value" ) ) !== undefined
      +				) {
      +					return ret;
      +				}
      +
      +				ret = elem.value;
      +
      +				// Handle most common string cases
      +				if ( typeof ret === "string" ) {
      +					return ret.replace( rreturn, "" );
      +				}
      +
      +				// Handle cases where value is null/undef or number
      +				return ret == null ? "" : ret;
      +			}
      +
      +			return;
      +		}
      +
      +		valueIsFunction = isFunction( value );
      +
      +		return this.each( function( i ) {
      +			var val;
      +
      +			if ( this.nodeType !== 1 ) {
      +				return;
      +			}
      +
      +			if ( valueIsFunction ) {
      +				val = value.call( this, i, jQuery( this ).val() );
      +			} else {
      +				val = value;
      +			}
      +
      +			// Treat null/undefined as ""; convert numbers to string
      +			if ( val == null ) {
      +				val = "";
      +
      +			} else if ( typeof val === "number" ) {
      +				val += "";
      +
      +			} else if ( Array.isArray( val ) ) {
      +				val = jQuery.map( val, function( value ) {
      +					return value == null ? "" : value + "";
      +				} );
      +			}
      +
      +			hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
      +
      +			// If set returns undefined, fall back to normal setting
      +			if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) {
      +				this.value = val;
      +			}
      +		} );
      +	}
      +} );
      +
      +jQuery.extend( {
      +	valHooks: {
      +		option: {
      +			get: function( elem ) {
      +
      +				var val = jQuery.find.attr( elem, "value" );
      +				return val != null ?
      +					val :
      +
      +					// Support: IE <=10 - 11 only
      +					// option.text throws exceptions (#14686, #14858)
      +					// Strip and collapse whitespace
      +					// https://html.spec.whatwg.org/#strip-and-collapse-whitespace
      +					stripAndCollapse( jQuery.text( elem ) );
      +			}
      +		},
      +		select: {
      +			get: function( elem ) {
      +				var value, option, i,
      +					options = elem.options,
      +					index = elem.selectedIndex,
      +					one = elem.type === "select-one",
      +					values = one ? null : [],
      +					max = one ? index + 1 : options.length;
      +
      +				if ( index < 0 ) {
      +					i = max;
      +
      +				} else {
      +					i = one ? index : 0;
      +				}
      +
      +				// Loop through all the selected options
      +				for ( ; i < max; i++ ) {
      +					option = options[ i ];
      +
      +					// Support: IE <=9 only
      +					// IE8-9 doesn't update selected after form reset (#2551)
      +					if ( ( option.selected || i === index ) &&
      +
      +							// Don't return options that are disabled or in a disabled optgroup
      +							!option.disabled &&
      +							( !option.parentNode.disabled ||
      +								!nodeName( option.parentNode, "optgroup" ) ) ) {
      +
      +						// Get the specific value for the option
      +						value = jQuery( option ).val();
      +
      +						// We don't need an array for one selects
      +						if ( one ) {
      +							return value;
      +						}
      +
      +						// Multi-Selects return an array
      +						values.push( value );
      +					}
      +				}
      +
      +				return values;
      +			},
      +
      +			set: function( elem, value ) {
      +				var optionSet, option,
      +					options = elem.options,
      +					values = jQuery.makeArray( value ),
      +					i = options.length;
      +
      +				while ( i-- ) {
      +					option = options[ i ];
      +
      +					/* eslint-disable no-cond-assign */
      +
      +					if ( option.selected =
      +						jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1
      +					) {
      +						optionSet = true;
      +					}
      +
      +					/* eslint-enable no-cond-assign */
      +				}
      +
      +				// Force browsers to behave consistently when non-matching value is set
      +				if ( !optionSet ) {
      +					elem.selectedIndex = -1;
      +				}
      +				return values;
      +			}
      +		}
      +	}
      +} );
      +
      +// Radios and checkboxes getter/setter
      +jQuery.each( [ "radio", "checkbox" ], function() {
      +	jQuery.valHooks[ this ] = {
      +		set: function( elem, value ) {
      +			if ( Array.isArray( value ) ) {
      +				return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );
      +			}
      +		}
      +	};
      +	if ( !support.checkOn ) {
      +		jQuery.valHooks[ this ].get = function( elem ) {
      +			return elem.getAttribute( "value" ) === null ? "on" : elem.value;
      +		};
      +	}
      +} );
      +
      +
      +
      +
      +// Return jQuery for attributes-only inclusion
      +
      +
      +support.focusin = "onfocusin" in window;
      +
      +
      +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
      +	stopPropagationCallback = function( e ) {
      +		e.stopPropagation();
      +	};
      +
      +jQuery.extend( jQuery.event, {
      +
      +	trigger: function( event, data, elem, onlyHandlers ) {
      +
      +		var i, cur, tmp, bubbleType, ontype, handle, special, lastElement,
      +			eventPath = [ elem || document ],
      +			type = hasOwn.call( event, "type" ) ? event.type : event,
      +			namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : [];
      +
      +		cur = lastElement = tmp = elem = elem || document;
      +
      +		// Don't do events on text and comment nodes
      +		if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
      +			return;
      +		}
      +
      +		// focus/blur morphs to focusin/out; ensure we're not firing them right now
      +		if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
      +			return;
      +		}
      +
      +		if ( type.indexOf( "." ) > -1 ) {
      +
      +			// Namespaced trigger; create a regexp to match event type in handle()
      +			namespaces = type.split( "." );
      +			type = namespaces.shift();
      +			namespaces.sort();
      +		}
      +		ontype = type.indexOf( ":" ) < 0 && "on" + type;
      +
      +		// Caller can pass in a jQuery.Event object, Object, or just an event type string
      +		event = event[ jQuery.expando ] ?
      +			event :
      +			new jQuery.Event( type, typeof event === "object" && event );
      +
      +		// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
      +		event.isTrigger = onlyHandlers ? 2 : 3;
      +		event.namespace = namespaces.join( "." );
      +		event.rnamespace = event.namespace ?
      +			new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) :
      +			null;
      +
      +		// Clean up the event in case it is being reused
      +		event.result = undefined;
      +		if ( !event.target ) {
      +			event.target = elem;
      +		}
      +
      +		// Clone any incoming data and prepend the event, creating the handler arg list
      +		data = data == null ?
      +			[ event ] :
      +			jQuery.makeArray( data, [ event ] );
      +
      +		// Allow special events to draw outside the lines
      +		special = jQuery.event.special[ type ] || {};
      +		if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
      +			return;
      +		}
      +
      +		// Determine event propagation path in advance, per W3C events spec (#9951)
      +		// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
      +		if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {
      +
      +			bubbleType = special.delegateType || type;
      +			if ( !rfocusMorph.test( bubbleType + type ) ) {
      +				cur = cur.parentNode;
      +			}
      +			for ( ; cur; cur = cur.parentNode ) {
      +				eventPath.push( cur );
      +				tmp = cur;
      +			}
      +
      +			// Only add window if we got to document (e.g., not plain obj or detached DOM)
      +			if ( tmp === ( elem.ownerDocument || document ) ) {
      +				eventPath.push( tmp.defaultView || tmp.parentWindow || window );
      +			}
      +		}
      +
      +		// Fire handlers on the event path
      +		i = 0;
      +		while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {
      +			lastElement = cur;
      +			event.type = i > 1 ?
      +				bubbleType :
      +				special.bindType || type;
      +
      +			// jQuery handler
      +			handle = ( dataPriv.get( cur, "events" ) || {} )[ event.type ] &&
      +				dataPriv.get( cur, "handle" );
      +			if ( handle ) {
      +				handle.apply( cur, data );
      +			}
      +
      +			// Native handler
      +			handle = ontype && cur[ ontype ];
      +			if ( handle && handle.apply && acceptData( cur ) ) {
      +				event.result = handle.apply( cur, data );
      +				if ( event.result === false ) {
      +					event.preventDefault();
      +				}
      +			}
      +		}
      +		event.type = type;
      +
      +		// If nobody prevented the default action, do it now
      +		if ( !onlyHandlers && !event.isDefaultPrevented() ) {
      +
      +			if ( ( !special._default ||
      +				special._default.apply( eventPath.pop(), data ) === false ) &&
      +				acceptData( elem ) ) {
      +
      +				// Call a native DOM method on the target with the same name as the event.
      +				// Don't do default actions on window, that's where global variables be (#6170)
      +				if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {
      +
      +					// Don't re-trigger an onFOO event when we call its FOO() method
      +					tmp = elem[ ontype ];
      +
      +					if ( tmp ) {
      +						elem[ ontype ] = null;
      +					}
      +
      +					// Prevent re-triggering of the same event, since we already bubbled it above
      +					jQuery.event.triggered = type;
      +
      +					if ( event.isPropagationStopped() ) {
      +						lastElement.addEventListener( type, stopPropagationCallback );
      +					}
      +
      +					elem[ type ]();
      +
      +					if ( event.isPropagationStopped() ) {
      +						lastElement.removeEventListener( type, stopPropagationCallback );
      +					}
      +
      +					jQuery.event.triggered = undefined;
      +
      +					if ( tmp ) {
      +						elem[ ontype ] = tmp;
      +					}
      +				}
      +			}
      +		}
      +
      +		return event.result;
      +	},
      +
      +	// Piggyback on a donor event to simulate a different one
      +	// Used only for `focus(in | out)` events
      +	simulate: function( type, elem, event ) {
      +		var e = jQuery.extend(
      +			new jQuery.Event(),
      +			event,
      +			{
      +				type: type,
      +				isSimulated: true
      +			}
      +		);
      +
      +		jQuery.event.trigger( e, null, elem );
      +	}
      +
      +} );
      +
      +jQuery.fn.extend( {
      +
      +	trigger: function( type, data ) {
      +		return this.each( function() {
      +			jQuery.event.trigger( type, data, this );
      +		} );
      +	},
      +	triggerHandler: function( type, data ) {
      +		var elem = this[ 0 ];
      +		if ( elem ) {
      +			return jQuery.event.trigger( type, data, elem, true );
      +		}
      +	}
      +} );
      +
      +
      +// Support: Firefox <=44
      +// Firefox doesn't have focus(in | out) events
      +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787
      +//
      +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1
      +// focus(in | out) events fire after focus & blur events,
      +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order
      +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857
      +if ( !support.focusin ) {
      +	jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) {
      +
      +		// Attach a single capturing handler on the document while someone wants focusin/focusout
      +		var handler = function( event ) {
      +			jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );
      +		};
      +
      +		jQuery.event.special[ fix ] = {
      +			setup: function() {
      +				var doc = this.ownerDocument || this,
      +					attaches = dataPriv.access( doc, fix );
      +
      +				if ( !attaches ) {
      +					doc.addEventListener( orig, handler, true );
      +				}
      +				dataPriv.access( doc, fix, ( attaches || 0 ) + 1 );
      +			},
      +			teardown: function() {
      +				var doc = this.ownerDocument || this,
      +					attaches = dataPriv.access( doc, fix ) - 1;
      +
      +				if ( !attaches ) {
      +					doc.removeEventListener( orig, handler, true );
      +					dataPriv.remove( doc, fix );
      +
      +				} else {
      +					dataPriv.access( doc, fix, attaches );
      +				}
      +			}
      +		};
      +	} );
      +}
      +var location = window.location;
      +
      +var nonce = Date.now();
      +
      +var rquery = ( /\?/ );
      +
      +
      +
      +// Cross-browser xml parsing
      +jQuery.parseXML = function( data ) {
      +	var xml;
      +	if ( !data || typeof data !== "string" ) {
      +		return null;
      +	}
      +
      +	// Support: IE 9 - 11 only
      +	// IE throws on parseFromString with invalid input.
      +	try {
      +		xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" );
      +	} catch ( e ) {
      +		xml = undefined;
      +	}
      +
      +	if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) {
      +		jQuery.error( "Invalid XML: " + data );
      +	}
      +	return xml;
      +};
      +
      +
      +var
      +	rbracket = /\[\]$/,
      +	rCRLF = /\r?\n/g,
      +	rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
      +	rsubmittable = /^(?:input|select|textarea|keygen)/i;
      +
      +function buildParams( prefix, obj, traditional, add ) {
      +	var name;
      +
      +	if ( Array.isArray( obj ) ) {
      +
      +		// Serialize array item.
      +		jQuery.each( obj, function( i, v ) {
      +			if ( traditional || rbracket.test( prefix ) ) {
      +
      +				// Treat each array item as a scalar.
      +				add( prefix, v );
      +
      +			} else {
      +
      +				// Item is non-scalar (array or object), encode its numeric index.
      +				buildParams(
      +					prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]",
      +					v,
      +					traditional,
      +					add
      +				);
      +			}
      +		} );
      +
      +	} else if ( !traditional && toType( obj ) === "object" ) {
      +
      +		// Serialize object item.
      +		for ( name in obj ) {
      +			buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
      +		}
      +
      +	} else {
      +
      +		// Serialize scalar item.
      +		add( prefix, obj );
      +	}
      +}
      +
      +// Serialize an array of form elements or a set of
      +// key/values into a query string
      +jQuery.param = function( a, traditional ) {
      +	var prefix,
      +		s = [],
      +		add = function( key, valueOrFunction ) {
      +
      +			// If value is a function, invoke it and use its return value
      +			var value = isFunction( valueOrFunction ) ?
      +				valueOrFunction() :
      +				valueOrFunction;
      +
      +			s[ s.length ] = encodeURIComponent( key ) + "=" +
      +				encodeURIComponent( value == null ? "" : value );
      +		};
      +
      +	if ( a == null ) {
      +		return "";
      +	}
      +
      +	// If an array was passed in, assume that it is an array of form elements.
      +	if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
      +
      +		// Serialize the form elements
      +		jQuery.each( a, function() {
      +			add( this.name, this.value );
      +		} );
      +
      +	} else {
      +
      +		// If traditional, encode the "old" way (the way 1.3.2 or older
      +		// did it), otherwise encode params recursively.
      +		for ( prefix in a ) {
      +			buildParams( prefix, a[ prefix ], traditional, add );
      +		}
      +	}
      +
      +	// Return the resulting serialization
      +	return s.join( "&" );
      +};
      +
      +jQuery.fn.extend( {
      +	serialize: function() {
      +		return jQuery.param( this.serializeArray() );
      +	},
      +	serializeArray: function() {
      +		return this.map( function() {
      +
      +			// Can add propHook for "elements" to filter or add form elements
      +			var elements = jQuery.prop( this, "elements" );
      +			return elements ? jQuery.makeArray( elements ) : this;
      +		} )
      +		.filter( function() {
      +			var type = this.type;
      +
      +			// Use .is( ":disabled" ) so that fieldset[disabled] works
      +			return this.name && !jQuery( this ).is( ":disabled" ) &&
      +				rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
      +				( this.checked || !rcheckableType.test( type ) );
      +		} )
      +		.map( function( i, elem ) {
      +			var val = jQuery( this ).val();
      +
      +			if ( val == null ) {
      +				return null;
      +			}
      +
      +			if ( Array.isArray( val ) ) {
      +				return jQuery.map( val, function( val ) {
      +					return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
      +				} );
      +			}
      +
      +			return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
      +		} ).get();
      +	}
      +} );
      +
      +
      +var
      +	r20 = /%20/g,
      +	rhash = /#.*$/,
      +	rantiCache = /([?&])_=[^&]*/,
      +	rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
      +
      +	// #7653, #8125, #8152: local protocol detection
      +	rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
      +	rnoContent = /^(?:GET|HEAD)$/,
      +	rprotocol = /^\/\//,
      +
      +	/* Prefilters
      +	 * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
      +	 * 2) These are called:
      +	 *    - BEFORE asking for a transport
      +	 *    - AFTER param serialization (s.data is a string if s.processData is true)
      +	 * 3) key is the dataType
      +	 * 4) the catchall symbol "*" can be used
      +	 * 5) execution will start with transport dataType and THEN continue down to "*" if needed
      +	 */
      +	prefilters = {},
      +
      +	/* Transports bindings
      +	 * 1) key is the dataType
      +	 * 2) the catchall symbol "*" can be used
      +	 * 3) selection will start with transport dataType and THEN go to "*" if needed
      +	 */
      +	transports = {},
      +
      +	// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
      +	allTypes = "*/".concat( "*" ),
      +
      +	// Anchor tag for parsing the document origin
      +	originAnchor = document.createElement( "a" );
      +	originAnchor.href = location.href;
      +
      +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
      +function addToPrefiltersOrTransports( structure ) {
      +
      +	// dataTypeExpression is optional and defaults to "*"
      +	return function( dataTypeExpression, func ) {
      +
      +		if ( typeof dataTypeExpression !== "string" ) {
      +			func = dataTypeExpression;
      +			dataTypeExpression = "*";
      +		}
      +
      +		var dataType,
      +			i = 0,
      +			dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];
      +
      +		if ( isFunction( func ) ) {
      +
      +			// For each dataType in the dataTypeExpression
      +			while ( ( dataType = dataTypes[ i++ ] ) ) {
      +
      +				// Prepend if requested
      +				if ( dataType[ 0 ] === "+" ) {
      +					dataType = dataType.slice( 1 ) || "*";
      +					( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );
      +
      +				// Otherwise append
      +				} else {
      +					( structure[ dataType ] = structure[ dataType ] || [] ).push( func );
      +				}
      +			}
      +		}
      +	};
      +}
      +
      +// Base inspection function for prefilters and transports
      +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
      +
      +	var inspected = {},
      +		seekingTransport = ( structure === transports );
      +
      +	function inspect( dataType ) {
      +		var selected;
      +		inspected[ dataType ] = true;
      +		jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
      +			var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
      +			if ( typeof dataTypeOrTransport === "string" &&
      +				!seekingTransport && !inspected[ dataTypeOrTransport ] ) {
      +
      +				options.dataTypes.unshift( dataTypeOrTransport );
      +				inspect( dataTypeOrTransport );
      +				return false;
      +			} else if ( seekingTransport ) {
      +				return !( selected = dataTypeOrTransport );
      +			}
      +		} );
      +		return selected;
      +	}
      +
      +	return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
      +}
      +
      +// A special extend for ajax options
      +// that takes "flat" options (not to be deep extended)
      +// Fixes #9887
      +function ajaxExtend( target, src ) {
      +	var key, deep,
      +		flatOptions = jQuery.ajaxSettings.flatOptions || {};
      +
      +	for ( key in src ) {
      +		if ( src[ key ] !== undefined ) {
      +			( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];
      +		}
      +	}
      +	if ( deep ) {
      +		jQuery.extend( true, target, deep );
      +	}
      +
      +	return target;
      +}
      +
      +/* Handles responses to an ajax request:
      + * - finds the right dataType (mediates between content-type and expected dataType)
      + * - returns the corresponding response
      + */
      +function ajaxHandleResponses( s, jqXHR, responses ) {
      +
      +	var ct, type, finalDataType, firstDataType,
      +		contents = s.contents,
      +		dataTypes = s.dataTypes;
      +
      +	// Remove auto dataType and get content-type in the process
      +	while ( dataTypes[ 0 ] === "*" ) {
      +		dataTypes.shift();
      +		if ( ct === undefined ) {
      +			ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" );
      +		}
      +	}
      +
      +	// Check if we're dealing with a known content-type
      +	if ( ct ) {
      +		for ( type in contents ) {
      +			if ( contents[ type ] && contents[ type ].test( ct ) ) {
      +				dataTypes.unshift( type );
      +				break;
      +			}
      +		}
      +	}
      +
      +	// Check to see if we have a response for the expected dataType
      +	if ( dataTypes[ 0 ] in responses ) {
      +		finalDataType = dataTypes[ 0 ];
      +	} else {
      +
      +		// Try convertible dataTypes
      +		for ( type in responses ) {
      +			if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) {
      +				finalDataType = type;
      +				break;
      +			}
      +			if ( !firstDataType ) {
      +				firstDataType = type;
      +			}
      +		}
      +
      +		// Or just use first one
      +		finalDataType = finalDataType || firstDataType;
      +	}
      +
      +	// If we found a dataType
      +	// We add the dataType to the list if needed
      +	// and return the corresponding response
      +	if ( finalDataType ) {
      +		if ( finalDataType !== dataTypes[ 0 ] ) {
      +			dataTypes.unshift( finalDataType );
      +		}
      +		return responses[ finalDataType ];
      +	}
      +}
      +
      +/* Chain conversions given the request and the original response
      + * Also sets the responseXXX fields on the jqXHR instance
      + */
      +function ajaxConvert( s, response, jqXHR, isSuccess ) {
      +	var conv2, current, conv, tmp, prev,
      +		converters = {},
      +
      +		// Work with a copy of dataTypes in case we need to modify it for conversion
      +		dataTypes = s.dataTypes.slice();
      +
      +	// Create converters map with lowercased keys
      +	if ( dataTypes[ 1 ] ) {
      +		for ( conv in s.converters ) {
      +			converters[ conv.toLowerCase() ] = s.converters[ conv ];
      +		}
      +	}
      +
      +	current = dataTypes.shift();
      +
      +	// Convert to each sequential dataType
      +	while ( current ) {
      +
      +		if ( s.responseFields[ current ] ) {
      +			jqXHR[ s.responseFields[ current ] ] = response;
      +		}
      +
      +		// Apply the dataFilter if provided
      +		if ( !prev && isSuccess && s.dataFilter ) {
      +			response = s.dataFilter( response, s.dataType );
      +		}
      +
      +		prev = current;
      +		current = dataTypes.shift();
      +
      +		if ( current ) {
      +
      +			// There's only work to do if current dataType is non-auto
      +			if ( current === "*" ) {
      +
      +				current = prev;
      +
      +			// Convert response if prev dataType is non-auto and differs from current
      +			} else if ( prev !== "*" && prev !== current ) {
      +
      +				// Seek a direct converter
      +				conv = converters[ prev + " " + current ] || converters[ "* " + current ];
      +
      +				// If none found, seek a pair
      +				if ( !conv ) {
      +					for ( conv2 in converters ) {
      +
      +						// If conv2 outputs current
      +						tmp = conv2.split( " " );
      +						if ( tmp[ 1 ] === current ) {
      +
      +							// If prev can be converted to accepted input
      +							conv = converters[ prev + " " + tmp[ 0 ] ] ||
      +								converters[ "* " + tmp[ 0 ] ];
      +							if ( conv ) {
      +
      +								// Condense equivalence converters
      +								if ( conv === true ) {
      +									conv = converters[ conv2 ];
      +
      +								// Otherwise, insert the intermediate dataType
      +								} else if ( converters[ conv2 ] !== true ) {
      +									current = tmp[ 0 ];
      +									dataTypes.unshift( tmp[ 1 ] );
      +								}
      +								break;
      +							}
      +						}
      +					}
      +				}
      +
      +				// Apply converter (if not an equivalence)
      +				if ( conv !== true ) {
      +
      +					// Unless errors are allowed to bubble, catch and return them
      +					if ( conv && s.throws ) {
      +						response = conv( response );
      +					} else {
      +						try {
      +							response = conv( response );
      +						} catch ( e ) {
      +							return {
      +								state: "parsererror",
      +								error: conv ? e : "No conversion from " + prev + " to " + current
      +							};
      +						}
      +					}
      +				}
      +			}
      +		}
      +	}
      +
      +	return { state: "success", data: response };
      +}
      +
      +jQuery.extend( {
      +
      +	// Counter for holding the number of active queries
      +	active: 0,
      +
      +	// Last-Modified header cache for next request
      +	lastModified: {},
      +	etag: {},
      +
      +	ajaxSettings: {
      +		url: location.href,
      +		type: "GET",
      +		isLocal: rlocalProtocol.test( location.protocol ),
      +		global: true,
      +		processData: true,
      +		async: true,
      +		contentType: "application/x-www-form-urlencoded; charset=UTF-8",
      +
      +		/*
      +		timeout: 0,
      +		data: null,
      +		dataType: null,
      +		username: null,
      +		password: null,
      +		cache: null,
      +		throws: false,
      +		traditional: false,
      +		headers: {},
      +		*/
      +
      +		accepts: {
      +			"*": allTypes,
      +			text: "text/plain",
      +			html: "text/html",
      +			xml: "application/xml, text/xml",
      +			json: "application/json, text/javascript"
      +		},
      +
      +		contents: {
      +			xml: /\bxml\b/,
      +			html: /\bhtml/,
      +			json: /\bjson\b/
      +		},
      +
      +		responseFields: {
      +			xml: "responseXML",
      +			text: "responseText",
      +			json: "responseJSON"
      +		},
      +
      +		// Data converters
      +		// Keys separate source (or catchall "*") and destination types with a single space
      +		converters: {
      +
      +			// Convert anything to text
      +			"* text": String,
      +
      +			// Text to html (true = no transformation)
      +			"text html": true,
      +
      +			// Evaluate text as a json expression
      +			"text json": JSON.parse,
      +
      +			// Parse text as xml
      +			"text xml": jQuery.parseXML
      +		},
      +
      +		// For options that shouldn't be deep extended:
      +		// you can add your own custom options here if
      +		// and when you create one that shouldn't be
      +		// deep extended (see ajaxExtend)
      +		flatOptions: {
      +			url: true,
      +			context: true
      +		}
      +	},
      +
      +	// Creates a full fledged settings object into target
      +	// with both ajaxSettings and settings fields.
      +	// If target is omitted, writes into ajaxSettings.
      +	ajaxSetup: function( target, settings ) {
      +		return settings ?
      +
      +			// Building a settings object
      +			ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
      +
      +			// Extending ajaxSettings
      +			ajaxExtend( jQuery.ajaxSettings, target );
      +	},
      +
      +	ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
      +	ajaxTransport: addToPrefiltersOrTransports( transports ),
      +
      +	// Main method
      +	ajax: function( url, options ) {
      +
      +		// If url is an object, simulate pre-1.5 signature
      +		if ( typeof url === "object" ) {
      +			options = url;
      +			url = undefined;
      +		}
      +
      +		// Force options to be an object
      +		options = options || {};
      +
      +		var transport,
      +
      +			// URL without anti-cache param
      +			cacheURL,
      +
      +			// Response headers
      +			responseHeadersString,
      +			responseHeaders,
      +
      +			// timeout handle
      +			timeoutTimer,
      +
      +			// Url cleanup var
      +			urlAnchor,
      +
      +			// Request state (becomes false upon send and true upon completion)
      +			completed,
      +
      +			// To know if global events are to be dispatched
      +			fireGlobals,
      +
      +			// Loop variable
      +			i,
      +
      +			// uncached part of the url
      +			uncached,
      +
      +			// Create the final options object
      +			s = jQuery.ajaxSetup( {}, options ),
      +
      +			// Callbacks context
      +			callbackContext = s.context || s,
      +
      +			// Context for global events is callbackContext if it is a DOM node or jQuery collection
      +			globalEventContext = s.context &&
      +				( callbackContext.nodeType || callbackContext.jquery ) ?
      +					jQuery( callbackContext ) :
      +					jQuery.event,
      +
      +			// Deferreds
      +			deferred = jQuery.Deferred(),
      +			completeDeferred = jQuery.Callbacks( "once memory" ),
      +
      +			// Status-dependent callbacks
      +			statusCode = s.statusCode || {},
      +
      +			// Headers (they are sent all at once)
      +			requestHeaders = {},
      +			requestHeadersNames = {},
      +
      +			// Default abort message
      +			strAbort = "canceled",
      +
      +			// Fake xhr
      +			jqXHR = {
      +				readyState: 0,
      +
      +				// Builds headers hashtable if needed
      +				getResponseHeader: function( key ) {
      +					var match;
      +					if ( completed ) {
      +						if ( !responseHeaders ) {
      +							responseHeaders = {};
      +							while ( ( match = rheaders.exec( responseHeadersString ) ) ) {
      +								responseHeaders[ match[ 1 ].toLowerCase() + " " ] =
      +									( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] )
      +										.concat( match[ 2 ] );
      +							}
      +						}
      +						match = responseHeaders[ key.toLowerCase() + " " ];
      +					}
      +					return match == null ? null : match.join( ", " );
      +				},
      +
      +				// Raw string
      +				getAllResponseHeaders: function() {
      +					return completed ? responseHeadersString : null;
      +				},
      +
      +				// Caches the header
      +				setRequestHeader: function( name, value ) {
      +					if ( completed == null ) {
      +						name = requestHeadersNames[ name.toLowerCase() ] =
      +							requestHeadersNames[ name.toLowerCase() ] || name;
      +						requestHeaders[ name ] = value;
      +					}
      +					return this;
      +				},
      +
      +				// Overrides response content-type header
      +				overrideMimeType: function( type ) {
      +					if ( completed == null ) {
      +						s.mimeType = type;
      +					}
      +					return this;
      +				},
      +
      +				// Status-dependent callbacks
      +				statusCode: function( map ) {
      +					var code;
      +					if ( map ) {
      +						if ( completed ) {
      +
      +							// Execute the appropriate callbacks
      +							jqXHR.always( map[ jqXHR.status ] );
      +						} else {
      +
      +							// Lazy-add the new callbacks in a way that preserves old ones
      +							for ( code in map ) {
      +								statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
      +							}
      +						}
      +					}
      +					return this;
      +				},
      +
      +				// Cancel the request
      +				abort: function( statusText ) {
      +					var finalText = statusText || strAbort;
      +					if ( transport ) {
      +						transport.abort( finalText );
      +					}
      +					done( 0, finalText );
      +					return this;
      +				}
      +			};
      +
      +		// Attach deferreds
      +		deferred.promise( jqXHR );
      +
      +		// Add protocol if not provided (prefilters might expect it)
      +		// Handle falsy url in the settings object (#10093: consistency with old signature)
      +		// We also use the url parameter if available
      +		s.url = ( ( url || s.url || location.href ) + "" )
      +			.replace( rprotocol, location.protocol + "//" );
      +
      +		// Alias method option to type as per ticket #12004
      +		s.type = options.method || options.type || s.method || s.type;
      +
      +		// Extract dataTypes list
      +		s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ];
      +
      +		// A cross-domain request is in order when the origin doesn't match the current origin.
      +		if ( s.crossDomain == null ) {
      +			urlAnchor = document.createElement( "a" );
      +
      +			// Support: IE <=8 - 11, Edge 12 - 15
      +			// IE throws exception on accessing the href property if url is malformed,
      +			// e.g. http://example.com:80x/
      +			try {
      +				urlAnchor.href = s.url;
      +
      +				// Support: IE <=8 - 11 only
      +				// Anchor's host property isn't correctly set when s.url is relative
      +				urlAnchor.href = urlAnchor.href;
      +				s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !==
      +					urlAnchor.protocol + "//" + urlAnchor.host;
      +			} catch ( e ) {
      +
      +				// If there is an error parsing the URL, assume it is crossDomain,
      +				// it can be rejected by the transport if it is invalid
      +				s.crossDomain = true;
      +			}
      +		}
      +
      +		// Convert data if not already a string
      +		if ( s.data && s.processData && typeof s.data !== "string" ) {
      +			s.data = jQuery.param( s.data, s.traditional );
      +		}
      +
      +		// Apply prefilters
      +		inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
      +
      +		// If request was aborted inside a prefilter, stop there
      +		if ( completed ) {
      +			return jqXHR;
      +		}
      +
      +		// We can fire global events as of now if asked to
      +		// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)
      +		fireGlobals = jQuery.event && s.global;
      +
      +		// Watch for a new set of requests
      +		if ( fireGlobals && jQuery.active++ === 0 ) {
      +			jQuery.event.trigger( "ajaxStart" );
      +		}
      +
      +		// Uppercase the type
      +		s.type = s.type.toUpperCase();
      +
      +		// Determine if request has content
      +		s.hasContent = !rnoContent.test( s.type );
      +
      +		// Save the URL in case we're toying with the If-Modified-Since
      +		// and/or If-None-Match header later on
      +		// Remove hash to simplify url manipulation
      +		cacheURL = s.url.replace( rhash, "" );
      +
      +		// More options handling for requests with no content
      +		if ( !s.hasContent ) {
      +
      +			// Remember the hash so we can put it back
      +			uncached = s.url.slice( cacheURL.length );
      +
      +			// If data is available and should be processed, append data to url
      +			if ( s.data && ( s.processData || typeof s.data === "string" ) ) {
      +				cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data;
      +
      +				// #9682: remove data so that it's not used in an eventual retry
      +				delete s.data;
      +			}
      +
      +			// Add or update anti-cache param if needed
      +			if ( s.cache === false ) {
      +				cacheURL = cacheURL.replace( rantiCache, "$1" );
      +				uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce++ ) + uncached;
      +			}
      +
      +			// Put hash and anti-cache on the URL that will be requested (gh-1732)
      +			s.url = cacheURL + uncached;
      +
      +		// Change '%20' to '+' if this is encoded form body content (gh-2658)
      +		} else if ( s.data && s.processData &&
      +			( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) {
      +			s.data = s.data.replace( r20, "+" );
      +		}
      +
      +		// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
      +		if ( s.ifModified ) {
      +			if ( jQuery.lastModified[ cacheURL ] ) {
      +				jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
      +			}
      +			if ( jQuery.etag[ cacheURL ] ) {
      +				jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
      +			}
      +		}
      +
      +		// Set the correct header, if data is being sent
      +		if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
      +			jqXHR.setRequestHeader( "Content-Type", s.contentType );
      +		}
      +
      +		// Set the Accepts header for the server, depending on the dataType
      +		jqXHR.setRequestHeader(
      +			"Accept",
      +			s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?
      +				s.accepts[ s.dataTypes[ 0 ] ] +
      +					( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
      +				s.accepts[ "*" ]
      +		);
      +
      +		// Check for headers option
      +		for ( i in s.headers ) {
      +			jqXHR.setRequestHeader( i, s.headers[ i ] );
      +		}
      +
      +		// Allow custom headers/mimetypes and early abort
      +		if ( s.beforeSend &&
      +			( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {
      +
      +			// Abort if not done already and return
      +			return jqXHR.abort();
      +		}
      +
      +		// Aborting is no longer a cancellation
      +		strAbort = "abort";
      +
      +		// Install callbacks on deferreds
      +		completeDeferred.add( s.complete );
      +		jqXHR.done( s.success );
      +		jqXHR.fail( s.error );
      +
      +		// Get transport
      +		transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
      +
      +		// If no transport, we auto-abort
      +		if ( !transport ) {
      +			done( -1, "No Transport" );
      +		} else {
      +			jqXHR.readyState = 1;
      +
      +			// Send global event
      +			if ( fireGlobals ) {
      +				globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
      +			}
      +
      +			// If request was aborted inside ajaxSend, stop there
      +			if ( completed ) {
      +				return jqXHR;
      +			}
      +
      +			// Timeout
      +			if ( s.async && s.timeout > 0 ) {
      +				timeoutTimer = window.setTimeout( function() {
      +					jqXHR.abort( "timeout" );
      +				}, s.timeout );
      +			}
      +
      +			try {
      +				completed = false;
      +				transport.send( requestHeaders, done );
      +			} catch ( e ) {
      +
      +				// Rethrow post-completion exceptions
      +				if ( completed ) {
      +					throw e;
      +				}
      +
      +				// Propagate others as results
      +				done( -1, e );
      +			}
      +		}
      +
      +		// Callback for when everything is done
      +		function done( status, nativeStatusText, responses, headers ) {
      +			var isSuccess, success, error, response, modified,
      +				statusText = nativeStatusText;
      +
      +			// Ignore repeat invocations
      +			if ( completed ) {
      +				return;
      +			}
      +
      +			completed = true;
      +
      +			// Clear timeout if it exists
      +			if ( timeoutTimer ) {
      +				window.clearTimeout( timeoutTimer );
      +			}
      +
      +			// Dereference transport for early garbage collection
      +			// (no matter how long the jqXHR object will be used)
      +			transport = undefined;
      +
      +			// Cache response headers
      +			responseHeadersString = headers || "";
      +
      +			// Set readyState
      +			jqXHR.readyState = status > 0 ? 4 : 0;
      +
      +			// Determine if successful
      +			isSuccess = status >= 200 && status < 300 || status === 304;
      +
      +			// Get response data
      +			if ( responses ) {
      +				response = ajaxHandleResponses( s, jqXHR, responses );
      +			}
      +
      +			// Convert no matter what (that way responseXXX fields are always set)
      +			response = ajaxConvert( s, response, jqXHR, isSuccess );
      +
      +			// If successful, handle type chaining
      +			if ( isSuccess ) {
      +
      +				// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
      +				if ( s.ifModified ) {
      +					modified = jqXHR.getResponseHeader( "Last-Modified" );
      +					if ( modified ) {
      +						jQuery.lastModified[ cacheURL ] = modified;
      +					}
      +					modified = jqXHR.getResponseHeader( "etag" );
      +					if ( modified ) {
      +						jQuery.etag[ cacheURL ] = modified;
      +					}
      +				}
      +
      +				// if no content
      +				if ( status === 204 || s.type === "HEAD" ) {
      +					statusText = "nocontent";
      +
      +				// if not modified
      +				} else if ( status === 304 ) {
      +					statusText = "notmodified";
      +
      +				// If we have data, let's convert it
      +				} else {
      +					statusText = response.state;
      +					success = response.data;
      +					error = response.error;
      +					isSuccess = !error;
      +				}
      +			} else {
      +
      +				// Extract error from statusText and normalize for non-aborts
      +				error = statusText;
      +				if ( status || !statusText ) {
      +					statusText = "error";
      +					if ( status < 0 ) {
      +						status = 0;
      +					}
      +				}
      +			}
      +
      +			// Set data for the fake xhr object
      +			jqXHR.status = status;
      +			jqXHR.statusText = ( nativeStatusText || statusText ) + "";
      +
      +			// Success/Error
      +			if ( isSuccess ) {
      +				deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
      +			} else {
      +				deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
      +			}
      +
      +			// Status-dependent callbacks
      +			jqXHR.statusCode( statusCode );
      +			statusCode = undefined;
      +
      +			if ( fireGlobals ) {
      +				globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
      +					[ jqXHR, s, isSuccess ? success : error ] );
      +			}
      +
      +			// Complete
      +			completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
      +
      +			if ( fireGlobals ) {
      +				globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
      +
      +				// Handle the global AJAX counter
      +				if ( !( --jQuery.active ) ) {
      +					jQuery.event.trigger( "ajaxStop" );
      +				}
      +			}
      +		}
      +
      +		return jqXHR;
      +	},
      +
      +	getJSON: function( url, data, callback ) {
      +		return jQuery.get( url, data, callback, "json" );
      +	},
      +
      +	getScript: function( url, callback ) {
      +		return jQuery.get( url, undefined, callback, "script" );
      +	}
      +} );
      +
      +jQuery.each( [ "get", "post" ], function( i, method ) {
      +	jQuery[ method ] = function( url, data, callback, type ) {
      +
      +		// Shift arguments if data argument was omitted
      +		if ( isFunction( data ) ) {
      +			type = type || callback;
      +			callback = data;
      +			data = undefined;
      +		}
      +
      +		// The url can be an options object (which then must have .url)
      +		return jQuery.ajax( jQuery.extend( {
      +			url: url,
      +			type: method,
      +			dataType: type,
      +			data: data,
      +			success: callback
      +		}, jQuery.isPlainObject( url ) && url ) );
      +	};
      +} );
      +
      +
      +jQuery._evalUrl = function( url, options ) {
      +	return jQuery.ajax( {
      +		url: url,
      +
      +		// Make this explicit, since user can override this through ajaxSetup (#11264)
      +		type: "GET",
      +		dataType: "script",
      +		cache: true,
      +		async: false,
      +		global: false,
      +
      +		// Only evaluate the response if it is successful (gh-4126)
      +		// dataFilter is not invoked for failure responses, so using it instead
      +		// of the default converter is kludgy but it works.
      +		converters: {
      +			"text script": function() {}
      +		},
      +		dataFilter: function( response ) {
      +			jQuery.globalEval( response, options );
      +		}
      +	} );
      +};
      +
      +
      +jQuery.fn.extend( {
      +	wrapAll: function( html ) {
      +		var wrap;
      +
      +		if ( this[ 0 ] ) {
      +			if ( isFunction( html ) ) {
      +				html = html.call( this[ 0 ] );
      +			}
      +
      +			// The elements to wrap the target around
      +			wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );
      +
      +			if ( this[ 0 ].parentNode ) {
      +				wrap.insertBefore( this[ 0 ] );
      +			}
      +
      +			wrap.map( function() {
      +				var elem = this;
      +
      +				while ( elem.firstElementChild ) {
      +					elem = elem.firstElementChild;
      +				}
      +
      +				return elem;
      +			} ).append( this );
      +		}
      +
      +		return this;
      +	},
      +
      +	wrapInner: function( html ) {
      +		if ( isFunction( html ) ) {
      +			return this.each( function( i ) {
      +				jQuery( this ).wrapInner( html.call( this, i ) );
      +			} );
      +		}
      +
      +		return this.each( function() {
      +			var self = jQuery( this ),
      +				contents = self.contents();
      +
      +			if ( contents.length ) {
      +				contents.wrapAll( html );
      +
      +			} else {
      +				self.append( html );
      +			}
      +		} );
      +	},
      +
      +	wrap: function( html ) {
      +		var htmlIsFunction = isFunction( html );
      +
      +		return this.each( function( i ) {
      +			jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );
      +		} );
      +	},
      +
      +	unwrap: function( selector ) {
      +		this.parent( selector ).not( "body" ).each( function() {
      +			jQuery( this ).replaceWith( this.childNodes );
      +		} );
      +		return this;
      +	}
      +} );
      +
      +
      +jQuery.expr.pseudos.hidden = function( elem ) {
      +	return !jQuery.expr.pseudos.visible( elem );
      +};
      +jQuery.expr.pseudos.visible = function( elem ) {
      +	return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );
      +};
      +
      +
      +
      +
      +jQuery.ajaxSettings.xhr = function() {
      +	try {
      +		return new window.XMLHttpRequest();
      +	} catch ( e ) {}
      +};
      +
      +var xhrSuccessStatus = {
      +
      +		// File protocol always yields status code 0, assume 200
      +		0: 200,
      +
      +		// Support: IE <=9 only
      +		// #1450: sometimes IE returns 1223 when it should be 204
      +		1223: 204
      +	},
      +	xhrSupported = jQuery.ajaxSettings.xhr();
      +
      +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
      +support.ajax = xhrSupported = !!xhrSupported;
      +
      +jQuery.ajaxTransport( function( options ) {
      +	var callback, errorCallback;
      +
      +	// Cross domain only allowed if supported through XMLHttpRequest
      +	if ( support.cors || xhrSupported && !options.crossDomain ) {
      +		return {
      +			send: function( headers, complete ) {
      +				var i,
      +					xhr = options.xhr();
      +
      +				xhr.open(
      +					options.type,
      +					options.url,
      +					options.async,
      +					options.username,
      +					options.password
      +				);
      +
      +				// Apply custom fields if provided
      +				if ( options.xhrFields ) {
      +					for ( i in options.xhrFields ) {
      +						xhr[ i ] = options.xhrFields[ i ];
      +					}
      +				}
      +
      +				// Override mime type if needed
      +				if ( options.mimeType && xhr.overrideMimeType ) {
      +					xhr.overrideMimeType( options.mimeType );
      +				}
      +
      +				// X-Requested-With header
      +				// For cross-domain requests, seeing as conditions for a preflight are
      +				// akin to a jigsaw puzzle, we simply never set it to be sure.
      +				// (it can always be set on a per-request basis or even using ajaxSetup)
      +				// For same-domain requests, won't change header if already provided.
      +				if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) {
      +					headers[ "X-Requested-With" ] = "XMLHttpRequest";
      +				}
      +
      +				// Set headers
      +				for ( i in headers ) {
      +					xhr.setRequestHeader( i, headers[ i ] );
      +				}
      +
      +				// Callback
      +				callback = function( type ) {
      +					return function() {
      +						if ( callback ) {
      +							callback = errorCallback = xhr.onload =
      +								xhr.onerror = xhr.onabort = xhr.ontimeout =
      +									xhr.onreadystatechange = null;
      +
      +							if ( type === "abort" ) {
      +								xhr.abort();
      +							} else if ( type === "error" ) {
      +
      +								// Support: IE <=9 only
      +								// On a manual native abort, IE9 throws
      +								// errors on any property access that is not readyState
      +								if ( typeof xhr.status !== "number" ) {
      +									complete( 0, "error" );
      +								} else {
      +									complete(
      +
      +										// File: protocol always yields status 0; see #8605, #14207
      +										xhr.status,
      +										xhr.statusText
      +									);
      +								}
      +							} else {
      +								complete(
      +									xhrSuccessStatus[ xhr.status ] || xhr.status,
      +									xhr.statusText,
      +
      +									// Support: IE <=9 only
      +									// IE9 has no XHR2 but throws on binary (trac-11426)
      +									// For XHR2 non-text, let the caller handle it (gh-2498)
      +									( xhr.responseType || "text" ) !== "text"  ||
      +									typeof xhr.responseText !== "string" ?
      +										{ binary: xhr.response } :
      +										{ text: xhr.responseText },
      +									xhr.getAllResponseHeaders()
      +								);
      +							}
      +						}
      +					};
      +				};
      +
      +				// Listen to events
      +				xhr.onload = callback();
      +				errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" );
      +
      +				// Support: IE 9 only
      +				// Use onreadystatechange to replace onabort
      +				// to handle uncaught aborts
      +				if ( xhr.onabort !== undefined ) {
      +					xhr.onabort = errorCallback;
      +				} else {
      +					xhr.onreadystatechange = function() {
      +
      +						// Check readyState before timeout as it changes
      +						if ( xhr.readyState === 4 ) {
      +
      +							// Allow onerror to be called first,
      +							// but that will not handle a native abort
      +							// Also, save errorCallback to a variable
      +							// as xhr.onerror cannot be accessed
      +							window.setTimeout( function() {
      +								if ( callback ) {
      +									errorCallback();
      +								}
      +							} );
      +						}
      +					};
      +				}
      +
      +				// Create the abort callback
      +				callback = callback( "abort" );
      +
      +				try {
      +
      +					// Do send the request (this may raise an exception)
      +					xhr.send( options.hasContent && options.data || null );
      +				} catch ( e ) {
      +
      +					// #14683: Only rethrow if this hasn't been notified as an error yet
      +					if ( callback ) {
      +						throw e;
      +					}
      +				}
      +			},
      +
      +			abort: function() {
      +				if ( callback ) {
      +					callback();
      +				}
      +			}
      +		};
      +	}
      +} );
      +
      +
      +
      +
      +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)
      +jQuery.ajaxPrefilter( function( s ) {
      +	if ( s.crossDomain ) {
      +		s.contents.script = false;
      +	}
      +} );
      +
      +// Install script dataType
      +jQuery.ajaxSetup( {
      +	accepts: {
      +		script: "text/javascript, application/javascript, " +
      +			"application/ecmascript, application/x-ecmascript"
      +	},
      +	contents: {
      +		script: /\b(?:java|ecma)script\b/
      +	},
      +	converters: {
      +		"text script": function( text ) {
      +			jQuery.globalEval( text );
      +			return text;
      +		}
      +	}
      +} );
      +
      +// Handle cache's special case and crossDomain
      +jQuery.ajaxPrefilter( "script", function( s ) {
      +	if ( s.cache === undefined ) {
      +		s.cache = false;
      +	}
      +	if ( s.crossDomain ) {
      +		s.type = "GET";
      +	}
      +} );
      +
      +// Bind script tag hack transport
      +jQuery.ajaxTransport( "script", function( s ) {
      +
      +	// This transport only deals with cross domain or forced-by-attrs requests
      +	if ( s.crossDomain || s.scriptAttrs ) {
      +		var script, callback;
      +		return {
      +			send: function( _, complete ) {
      +				script = jQuery( "<script>" )
      +					.attr( s.scriptAttrs || {} )
      +					.prop( { charset: s.scriptCharset, src: s.url } )
      +					.on( "load error", callback = function( evt ) {
      +						script.remove();
      +						callback = null;
      +						if ( evt ) {
      +							complete( evt.type === "error" ? 404 : 200, evt.type );
      +						}
      +					} );
      +
      +				// Use native DOM manipulation to avoid our domManip AJAX trickery
      +				document.head.appendChild( script[ 0 ] );
      +			},
      +			abort: function() {
      +				if ( callback ) {
      +					callback();
      +				}
      +			}
      +		};
      +	}
      +} );
      +
      +
      +
      +
      +var oldCallbacks = [],
      +	rjsonp = /(=)\?(?=&|$)|\?\?/;
      +
      +// Default jsonp settings
      +jQuery.ajaxSetup( {
      +	jsonp: "callback",
      +	jsonpCallback: function() {
      +		var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) );
      +		this[ callback ] = true;
      +		return callback;
      +	}
      +} );
      +
      +// Detect, normalize options and install callbacks for jsonp requests
      +jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
      +
      +	var callbackName, overwritten, responseContainer,
      +		jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?
      +			"url" :
      +			typeof s.data === "string" &&
      +				( s.contentType || "" )
      +					.indexOf( "application/x-www-form-urlencoded" ) === 0 &&
      +				rjsonp.test( s.data ) && "data"
      +		);
      +
      +	// Handle iff the expected data type is "jsonp" or we have a parameter to set
      +	if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {
      +
      +		// Get callback name, remembering preexisting value associated with it
      +		callbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?
      +			s.jsonpCallback() :
      +			s.jsonpCallback;
      +
      +		// Insert callback into url or form data
      +		if ( jsonProp ) {
      +			s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName );
      +		} else if ( s.jsonp !== false ) {
      +			s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
      +		}
      +
      +		// Use data converter to retrieve json after script execution
      +		s.converters[ "script json" ] = function() {
      +			if ( !responseContainer ) {
      +				jQuery.error( callbackName + " was not called" );
      +			}
      +			return responseContainer[ 0 ];
      +		};
      +
      +		// Force json dataType
      +		s.dataTypes[ 0 ] = "json";
      +
      +		// Install callback
      +		overwritten = window[ callbackName ];
      +		window[ callbackName ] = function() {
      +			responseContainer = arguments;
      +		};
      +
      +		// Clean-up function (fires after converters)
      +		jqXHR.always( function() {
      +
      +			// If previous value didn't exist - remove it
      +			if ( overwritten === undefined ) {
      +				jQuery( window ).removeProp( callbackName );
      +
      +			// Otherwise restore preexisting value
      +			} else {
      +				window[ callbackName ] = overwritten;
      +			}
      +
      +			// Save back as free
      +			if ( s[ callbackName ] ) {
      +
      +				// Make sure that re-using the options doesn't screw things around
      +				s.jsonpCallback = originalSettings.jsonpCallback;
      +
      +				// Save the callback name for future use
      +				oldCallbacks.push( callbackName );
      +			}
      +
      +			// Call if it was a function and we have a response
      +			if ( responseContainer && isFunction( overwritten ) ) {
      +				overwritten( responseContainer[ 0 ] );
      +			}
      +
      +			responseContainer = overwritten = undefined;
      +		} );
      +
      +		// Delegate to script
      +		return "script";
      +	}
      +} );
      +
      +
      +
      +
      +// Support: Safari 8 only
      +// In Safari 8 documents created via document.implementation.createHTMLDocument
      +// collapse sibling forms: the second one becomes a child of the first one.
      +// Because of that, this security measure has to be disabled in Safari 8.
      +// https://bugs.webkit.org/show_bug.cgi?id=137337
      +support.createHTMLDocument = ( function() {
      +	var body = document.implementation.createHTMLDocument( "" ).body;
      +	body.innerHTML = "<form></form><form></form>";
      +	return body.childNodes.length === 2;
      +} )();
      +
      +
      +// Argument "data" should be string of html
      +// context (optional): If specified, the fragment will be created in this context,
      +// defaults to document
      +// keepScripts (optional): If true, will include scripts passed in the html string
      +jQuery.parseHTML = function( data, context, keepScripts ) {
      +	if ( typeof data !== "string" ) {
      +		return [];
      +	}
      +	if ( typeof context === "boolean" ) {
      +		keepScripts = context;
      +		context = false;
      +	}
      +
      +	var base, parsed, scripts;
      +
      +	if ( !context ) {
      +
      +		// Stop scripts or inline event handlers from being executed immediately
      +		// by using document.implementation
      +		if ( support.createHTMLDocument ) {
      +			context = document.implementation.createHTMLDocument( "" );
      +
      +			// Set the base href for the created document
      +			// so any parsed elements with URLs
      +			// are based on the document's URL (gh-2965)
      +			base = context.createElement( "base" );
      +			base.href = document.location.href;
      +			context.head.appendChild( base );
      +		} else {
      +			context = document;
      +		}
      +	}
      +
      +	parsed = rsingleTag.exec( data );
      +	scripts = !keepScripts && [];
      +
      +	// Single tag
      +	if ( parsed ) {
      +		return [ context.createElement( parsed[ 1 ] ) ];
      +	}
      +
      +	parsed = buildFragment( [ data ], context, scripts );
      +
      +	if ( scripts && scripts.length ) {
      +		jQuery( scripts ).remove();
      +	}
      +
      +	return jQuery.merge( [], parsed.childNodes );
      +};
      +
      +
      +/**
      + * Load a url into a page
      + */
      +jQuery.fn.load = function( url, params, callback ) {
      +	var selector, type, response,
      +		self = this,
      +		off = url.indexOf( " " );
      +
      +	if ( off > -1 ) {
      +		selector = stripAndCollapse( url.slice( off ) );
      +		url = url.slice( 0, off );
      +	}
      +
      +	// If it's a function
      +	if ( isFunction( params ) ) {
      +
      +		// We assume that it's the callback
      +		callback = params;
      +		params = undefined;
      +
      +	// Otherwise, build a param string
      +	} else if ( params && typeof params === "object" ) {
      +		type = "POST";
      +	}
      +
      +	// If we have elements to modify, make the request
      +	if ( self.length > 0 ) {
      +		jQuery.ajax( {
      +			url: url,
      +
      +			// If "type" variable is undefined, then "GET" method will be used.
      +			// Make value of this field explicit since
      +			// user can override it through ajaxSetup method
      +			type: type || "GET",
      +			dataType: "html",
      +			data: params
      +		} ).done( function( responseText ) {
      +
      +			// Save response for use in complete callback
      +			response = arguments;
      +
      +			self.html( selector ?
      +
      +				// If a selector was specified, locate the right elements in a dummy div
      +				// Exclude scripts to avoid IE 'Permission Denied' errors
      +				jQuery( "<div>" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :
      +
      +				// Otherwise use the full result
      +				responseText );
      +
      +		// If the request succeeds, this function gets "data", "status", "jqXHR"
      +		// but they are ignored because response was set above.
      +		// If it fails, this function gets "jqXHR", "status", "error"
      +		} ).always( callback && function( jqXHR, status ) {
      +			self.each( function() {
      +				callback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );
      +			} );
      +		} );
      +	}
      +
      +	return this;
      +};
      +
      +
      +
      +
      +// Attach a bunch of functions for handling common AJAX events
      +jQuery.each( [
      +	"ajaxStart",
      +	"ajaxStop",
      +	"ajaxComplete",
      +	"ajaxError",
      +	"ajaxSuccess",
      +	"ajaxSend"
      +], function( i, type ) {
      +	jQuery.fn[ type ] = function( fn ) {
      +		return this.on( type, fn );
      +	};
      +} );
      +
      +
      +
      +
      +jQuery.expr.pseudos.animated = function( elem ) {
      +	return jQuery.grep( jQuery.timers, function( fn ) {
      +		return elem === fn.elem;
      +	} ).length;
      +};
      +
      +
      +
      +
      +jQuery.offset = {
      +	setOffset: function( elem, options, i ) {
      +		var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
      +			position = jQuery.css( elem, "position" ),
      +			curElem = jQuery( elem ),
      +			props = {};
      +
      +		// Set position first, in-case top/left are set even on static elem
      +		if ( position === "static" ) {
      +			elem.style.position = "relative";
      +		}
      +
      +		curOffset = curElem.offset();
      +		curCSSTop = jQuery.css( elem, "top" );
      +		curCSSLeft = jQuery.css( elem, "left" );
      +		calculatePosition = ( position === "absolute" || position === "fixed" ) &&
      +			( curCSSTop + curCSSLeft ).indexOf( "auto" ) > -1;
      +
      +		// Need to be able to calculate position if either
      +		// top or left is auto and position is either absolute or fixed
      +		if ( calculatePosition ) {
      +			curPosition = curElem.position();
      +			curTop = curPosition.top;
      +			curLeft = curPosition.left;
      +
      +		} else {
      +			curTop = parseFloat( curCSSTop ) || 0;
      +			curLeft = parseFloat( curCSSLeft ) || 0;
      +		}
      +
      +		if ( isFunction( options ) ) {
      +
      +			// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)
      +			options = options.call( elem, i, jQuery.extend( {}, curOffset ) );
      +		}
      +
      +		if ( options.top != null ) {
      +			props.top = ( options.top - curOffset.top ) + curTop;
      +		}
      +		if ( options.left != null ) {
      +			props.left = ( options.left - curOffset.left ) + curLeft;
      +		}
      +
      +		if ( "using" in options ) {
      +			options.using.call( elem, props );
      +
      +		} else {
      +			curElem.css( props );
      +		}
      +	}
      +};
      +
      +jQuery.fn.extend( {
      +
      +	// offset() relates an element's border box to the document origin
      +	offset: function( options ) {
      +
      +		// Preserve chaining for setter
      +		if ( arguments.length ) {
      +			return options === undefined ?
      +				this :
      +				this.each( function( i ) {
      +					jQuery.offset.setOffset( this, options, i );
      +				} );
      +		}
      +
      +		var rect, win,
      +			elem = this[ 0 ];
      +
      +		if ( !elem ) {
      +			return;
      +		}
      +
      +		// Return zeros for disconnected and hidden (display: none) elements (gh-2310)
      +		// Support: IE <=11 only
      +		// Running getBoundingClientRect on a
      +		// disconnected node in IE throws an error
      +		if ( !elem.getClientRects().length ) {
      +			return { top: 0, left: 0 };
      +		}
      +
      +		// Get document-relative position by adding viewport scroll to viewport-relative gBCR
      +		rect = elem.getBoundingClientRect();
      +		win = elem.ownerDocument.defaultView;
      +		return {
      +			top: rect.top + win.pageYOffset,
      +			left: rect.left + win.pageXOffset
      +		};
      +	},
      +
      +	// position() relates an element's margin box to its offset parent's padding box
      +	// This corresponds to the behavior of CSS absolute positioning
      +	position: function() {
      +		if ( !this[ 0 ] ) {
      +			return;
      +		}
      +
      +		var offsetParent, offset, doc,
      +			elem = this[ 0 ],
      +			parentOffset = { top: 0, left: 0 };
      +
      +		// position:fixed elements are offset from the viewport, which itself always has zero offset
      +		if ( jQuery.css( elem, "position" ) === "fixed" ) {
      +
      +			// Assume position:fixed implies availability of getBoundingClientRect
      +			offset = elem.getBoundingClientRect();
      +
      +		} else {
      +			offset = this.offset();
      +
      +			// Account for the *real* offset parent, which can be the document or its root element
      +			// when a statically positioned element is identified
      +			doc = elem.ownerDocument;
      +			offsetParent = elem.offsetParent || doc.documentElement;
      +			while ( offsetParent &&
      +				( offsetParent === doc.body || offsetParent === doc.documentElement ) &&
      +				jQuery.css( offsetParent, "position" ) === "static" ) {
      +
      +				offsetParent = offsetParent.parentNode;
      +			}
      +			if ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {
      +
      +				// Incorporate borders into its offset, since they are outside its content origin
      +				parentOffset = jQuery( offsetParent ).offset();
      +				parentOffset.top += jQuery.css( offsetParent, "borderTopWidth", true );
      +				parentOffset.left += jQuery.css( offsetParent, "borderLeftWidth", true );
      +			}
      +		}
      +
      +		// Subtract parent offsets and element margins
      +		return {
      +			top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ),
      +			left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true )
      +		};
      +	},
      +
      +	// This method will return documentElement in the following cases:
      +	// 1) For the element inside the iframe without offsetParent, this method will return
      +	//    documentElement of the parent window
      +	// 2) For the hidden or detached element
      +	// 3) For body or html element, i.e. in case of the html node - it will return itself
      +	//
      +	// but those exceptions were never presented as a real life use-cases
      +	// and might be considered as more preferable results.
      +	//
      +	// This logic, however, is not guaranteed and can change at any point in the future
      +	offsetParent: function() {
      +		return this.map( function() {
      +			var offsetParent = this.offsetParent;
      +
      +			while ( offsetParent && jQuery.css( offsetParent, "position" ) === "static" ) {
      +				offsetParent = offsetParent.offsetParent;
      +			}
      +
      +			return offsetParent || documentElement;
      +		} );
      +	}
      +} );
      +
      +// Create scrollLeft and scrollTop methods
      +jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) {
      +	var top = "pageYOffset" === prop;
      +
      +	jQuery.fn[ method ] = function( val ) {
      +		return access( this, function( elem, method, val ) {
      +
      +			// Coalesce documents and windows
      +			var win;
      +			if ( isWindow( elem ) ) {
      +				win = elem;
      +			} else if ( elem.nodeType === 9 ) {
      +				win = elem.defaultView;
      +			}
      +
      +			if ( val === undefined ) {
      +				return win ? win[ prop ] : elem[ method ];
      +			}
      +
      +			if ( win ) {
      +				win.scrollTo(
      +					!top ? val : win.pageXOffset,
      +					top ? val : win.pageYOffset
      +				);
      +
      +			} else {
      +				elem[ method ] = val;
      +			}
      +		}, method, val, arguments.length );
      +	};
      +} );
      +
      +// Support: Safari <=7 - 9.1, Chrome <=37 - 49
      +// Add the top/left cssHooks using jQuery.fn.position
      +// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
      +// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347
      +// getComputedStyle returns percent when specified for top/left/bottom/right;
      +// rather than make the css module depend on the offset module, just check for it here
      +jQuery.each( [ "top", "left" ], function( i, prop ) {
      +	jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
      +		function( elem, computed ) {
      +			if ( computed ) {
      +				computed = curCSS( elem, prop );
      +
      +				// If curCSS returns percentage, fallback to offset
      +				return rnumnonpx.test( computed ) ?
      +					jQuery( elem ).position()[ prop ] + "px" :
      +					computed;
      +			}
      +		}
      +	);
      +} );
      +
      +
      +// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
      +jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
      +	jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name },
      +		function( defaultExtra, funcName ) {
      +
      +		// Margin is only for outerHeight, outerWidth
      +		jQuery.fn[ funcName ] = function( margin, value ) {
      +			var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
      +				extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
      +
      +			return access( this, function( elem, type, value ) {
      +				var doc;
      +
      +				if ( isWindow( elem ) ) {
      +
      +					// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)
      +					return funcName.indexOf( "outer" ) === 0 ?
      +						elem[ "inner" + name ] :
      +						elem.document.documentElement[ "client" + name ];
      +				}
      +
      +				// Get document width or height
      +				if ( elem.nodeType === 9 ) {
      +					doc = elem.documentElement;
      +
      +					// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],
      +					// whichever is greatest
      +					return Math.max(
      +						elem.body[ "scroll" + name ], doc[ "scroll" + name ],
      +						elem.body[ "offset" + name ], doc[ "offset" + name ],
      +						doc[ "client" + name ]
      +					);
      +				}
      +
      +				return value === undefined ?
      +
      +					// Get width or height on the element, requesting but not forcing parseFloat
      +					jQuery.css( elem, type, extra ) :
      +
      +					// Set width or height on the element
      +					jQuery.style( elem, type, value, extra );
      +			}, type, chainable ? margin : undefined, chainable );
      +		};
      +	} );
      +} );
      +
      +
      +jQuery.each( ( "blur focus focusin focusout resize scroll click dblclick " +
      +	"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
      +	"change select submit keydown keypress keyup contextmenu" ).split( " " ),
      +	function( i, name ) {
      +
      +	// Handle event binding
      +	jQuery.fn[ name ] = function( data, fn ) {
      +		return arguments.length > 0 ?
      +			this.on( name, null, data, fn ) :
      +			this.trigger( name );
      +	};
      +} );
      +
      +jQuery.fn.extend( {
      +	hover: function( fnOver, fnOut ) {
      +		return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
      +	}
      +} );
      +
      +
      +
      +
      +jQuery.fn.extend( {
      +
      +	bind: function( types, data, fn ) {
      +		return this.on( types, null, data, fn );
      +	},
      +	unbind: function( types, fn ) {
      +		return this.off( types, null, fn );
      +	},
      +
      +	delegate: function( selector, types, data, fn ) {
      +		return this.on( types, selector, data, fn );
      +	},
      +	undelegate: function( selector, types, fn ) {
      +
      +		// ( namespace ) or ( selector, types [, fn] )
      +		return arguments.length === 1 ?
      +			this.off( selector, "**" ) :
      +			this.off( types, selector || "**", fn );
      +	}
      +} );
      +
      +// Bind a function to a context, optionally partially applying any
      +// arguments.
      +// jQuery.proxy is deprecated to promote standards (specifically Function#bind)
      +// However, it is not slated for removal any time soon
      +jQuery.proxy = function( fn, context ) {
      +	var tmp, args, proxy;
      +
      +	if ( typeof context === "string" ) {
      +		tmp = fn[ context ];
      +		context = fn;
      +		fn = tmp;
      +	}
      +
      +	// Quick check to determine if target is callable, in the spec
      +	// this throws a TypeError, but we will just return undefined.
      +	if ( !isFunction( fn ) ) {
      +		return undefined;
      +	}
      +
      +	// Simulated bind
      +	args = slice.call( arguments, 2 );
      +	proxy = function() {
      +		return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
      +	};
      +
      +	// Set the guid of unique handler to the same of original handler, so it can be removed
      +	proxy.guid = fn.guid = fn.guid || jQuery.guid++;
      +
      +	return proxy;
      +};
      +
      +jQuery.holdReady = function( hold ) {
      +	if ( hold ) {
      +		jQuery.readyWait++;
      +	} else {
      +		jQuery.ready( true );
      +	}
      +};
      +jQuery.isArray = Array.isArray;
      +jQuery.parseJSON = JSON.parse;
      +jQuery.nodeName = nodeName;
      +jQuery.isFunction = isFunction;
      +jQuery.isWindow = isWindow;
      +jQuery.camelCase = camelCase;
      +jQuery.type = toType;
      +
      +jQuery.now = Date.now;
      +
      +jQuery.isNumeric = function( obj ) {
      +
      +	// As of jQuery 3.0, isNumeric is limited to
      +	// strings and numbers (primitives or objects)
      +	// that can be coerced to finite numbers (gh-2662)
      +	var type = jQuery.type( obj );
      +	return ( type === "number" || type === "string" ) &&
      +
      +		// parseFloat NaNs numeric-cast false positives ("")
      +		// ...but misinterprets leading-number strings, particularly hex literals ("0x...")
      +		// subtraction forces infinities to NaN
      +		!isNaN( obj - parseFloat( obj ) );
      +};
      +
      +
      +
      +
      +// Register as a named AMD module, since jQuery can be concatenated with other
      +// files that may use define, but not via a proper concatenation script that
      +// understands anonymous AMD modules. A named AMD is safest and most robust
      +// way to register. Lowercase jquery is used because AMD module names are
      +// derived from file names, and jQuery is normally delivered in a lowercase
      +// file name. Do this after creating the global so that if an AMD module wants
      +// to call noConflict to hide this version of jQuery, it will work.
      +
      +// Note that for maximum portability, libraries that are not jQuery should
      +// declare themselves as anonymous modules, and avoid setting a global if an
      +// AMD loader is present. jQuery is a special case. For more information, see
      +// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon
      +
      +if ( typeof define === "function" && define.amd ) {
      +	define( "jquery", [], function() {
      +		return jQuery;
      +	} );
      +}
      +
      +
      +
      +
      +var
      +
      +	// Map over jQuery in case of overwrite
      +	_jQuery = window.jQuery,
      +
      +	// Map over the $ in case of overwrite
      +	_$ = window.$;
      +
      +jQuery.noConflict = function( deep ) {
      +	if ( window.$ === jQuery ) {
      +		window.$ = _$;
      +	}
      +
      +	if ( deep && window.jQuery === jQuery ) {
      +		window.jQuery = _jQuery;
      +	}
      +
      +	return jQuery;
      +};
      +
      +// Expose jQuery and $ identifiers, even in AMD
      +// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
      +// and CommonJS for browser emulators (#13566)
      +if ( !noGlobal ) {
      +	window.jQuery = window.$ = jQuery;
      +}
      +
      +
      +
      +
      +return jQuery;
      +} );
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/script-dir/images/ui-bg_glass_55_fbf9ee_1x400.png b/docs/site/testapidocs/script-dir/images/ui-bg_glass_55_fbf9ee_1x400.png
      new file mode 100644
      index 00000000..34abd18f
      Binary files /dev/null and b/docs/site/testapidocs/script-dir/images/ui-bg_glass_55_fbf9ee_1x400.png differ
      diff --git a/docs/site/testapidocs/script-dir/images/ui-bg_glass_65_dadada_1x400.png b/docs/site/testapidocs/script-dir/images/ui-bg_glass_65_dadada_1x400.png
      new file mode 100644
      index 00000000..f058a938
      Binary files /dev/null and b/docs/site/testapidocs/script-dir/images/ui-bg_glass_65_dadada_1x400.png differ
      diff --git a/docs/site/testapidocs/script-dir/images/ui-bg_glass_75_dadada_1x400.png b/docs/site/testapidocs/script-dir/images/ui-bg_glass_75_dadada_1x400.png
      new file mode 100644
      index 00000000..2ce04c16
      Binary files /dev/null and b/docs/site/testapidocs/script-dir/images/ui-bg_glass_75_dadada_1x400.png differ
      diff --git a/docs/site/testapidocs/script-dir/images/ui-bg_glass_75_e6e6e6_1x400.png b/docs/site/testapidocs/script-dir/images/ui-bg_glass_75_e6e6e6_1x400.png
      new file mode 100644
      index 00000000..a90afb8b
      Binary files /dev/null and b/docs/site/testapidocs/script-dir/images/ui-bg_glass_75_e6e6e6_1x400.png differ
      diff --git a/docs/site/testapidocs/script-dir/images/ui-bg_glass_95_fef1ec_1x400.png b/docs/site/testapidocs/script-dir/images/ui-bg_glass_95_fef1ec_1x400.png
      new file mode 100644
      index 00000000..dbe091f6
      Binary files /dev/null and b/docs/site/testapidocs/script-dir/images/ui-bg_glass_95_fef1ec_1x400.png differ
      diff --git a/docs/site/testapidocs/script-dir/images/ui-bg_highlight-soft_75_cccccc_1x100.png b/docs/site/testapidocs/script-dir/images/ui-bg_highlight-soft_75_cccccc_1x100.png
      new file mode 100644
      index 00000000..5dc3593e
      Binary files /dev/null and b/docs/site/testapidocs/script-dir/images/ui-bg_highlight-soft_75_cccccc_1x100.png differ
      diff --git a/docs/site/testapidocs/script-dir/images/ui-icons_222222_256x240.png b/docs/site/testapidocs/script-dir/images/ui-icons_222222_256x240.png
      new file mode 100644
      index 00000000..e723e17c
      Binary files /dev/null and b/docs/site/testapidocs/script-dir/images/ui-icons_222222_256x240.png differ
      diff --git a/docs/site/testapidocs/script-dir/images/ui-icons_2e83ff_256x240.png b/docs/site/testapidocs/script-dir/images/ui-icons_2e83ff_256x240.png
      new file mode 100644
      index 00000000..1f5f4975
      Binary files /dev/null and b/docs/site/testapidocs/script-dir/images/ui-icons_2e83ff_256x240.png differ
      diff --git a/docs/site/testapidocs/script-dir/images/ui-icons_454545_256x240.png b/docs/site/testapidocs/script-dir/images/ui-icons_454545_256x240.png
      new file mode 100644
      index 00000000..618f5b0c
      Binary files /dev/null and b/docs/site/testapidocs/script-dir/images/ui-icons_454545_256x240.png differ
      diff --git a/docs/site/testapidocs/script-dir/images/ui-icons_888888_256x240.png b/docs/site/testapidocs/script-dir/images/ui-icons_888888_256x240.png
      new file mode 100644
      index 00000000..ee5e33f2
      Binary files /dev/null and b/docs/site/testapidocs/script-dir/images/ui-icons_888888_256x240.png differ
      diff --git a/docs/site/testapidocs/script-dir/images/ui-icons_cd0a0a_256x240.png b/docs/site/testapidocs/script-dir/images/ui-icons_cd0a0a_256x240.png
      new file mode 100644
      index 00000000..7e8ebc18
      Binary files /dev/null and b/docs/site/testapidocs/script-dir/images/ui-icons_cd0a0a_256x240.png differ
      diff --git a/docs/site/testapidocs/script-dir/jquery-3.4.1.js b/docs/site/testapidocs/script-dir/jquery-3.4.1.js
      new file mode 100644
      index 00000000..5b16efa1
      --- /dev/null
      +++ b/docs/site/testapidocs/script-dir/jquery-3.4.1.js
      @@ -0,0 +1,10598 @@
      +/*!
      + * jQuery JavaScript Library v3.4.1
      + * https://jquery.com/
      + *
      + * Includes Sizzle.js
      + * https://sizzlejs.com/
      + *
      + * Copyright JS Foundation and other contributors
      + * Released under the MIT license
      + * https://jquery.org/license
      + *
      + * Date: 2019-05-01T21:04Z
      + */
      +( function( global, factory ) {
      +
      +	"use strict";
      +
      +	if ( typeof module === "object" && typeof module.exports === "object" ) {
      +
      +		// For CommonJS and CommonJS-like environments where a proper `window`
      +		// is present, execute the factory and get jQuery.
      +		// For environments that do not have a `window` with a `document`
      +		// (such as Node.js), expose a factory as module.exports.
      +		// This accentuates the need for the creation of a real `window`.
      +		// e.g. var jQuery = require("jquery")(window);
      +		// See ticket #14549 for more info.
      +		module.exports = global.document ?
      +			factory( global, true ) :
      +			function( w ) {
      +				if ( !w.document ) {
      +					throw new Error( "jQuery requires a window with a document" );
      +				}
      +				return factory( w );
      +			};
      +	} else {
      +		factory( global );
      +	}
      +
      +// Pass this if window is not defined yet
      +} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
      +
      +// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
      +// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
      +// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
      +// enough that all such attempts are guarded in a try block.
      +"use strict";
      +
      +var arr = [];
      +
      +var document = window.document;
      +
      +var getProto = Object.getPrototypeOf;
      +
      +var slice = arr.slice;
      +
      +var concat = arr.concat;
      +
      +var push = arr.push;
      +
      +var indexOf = arr.indexOf;
      +
      +var class2type = {};
      +
      +var toString = class2type.toString;
      +
      +var hasOwn = class2type.hasOwnProperty;
      +
      +var fnToString = hasOwn.toString;
      +
      +var ObjectFunctionString = fnToString.call( Object );
      +
      +var support = {};
      +
      +var isFunction = function isFunction( obj ) {
      +
      +      // Support: Chrome <=57, Firefox <=52
      +      // In some browsers, typeof returns "function" for HTML <object> elements
      +      // (i.e., `typeof document.createElement( "object" ) === "function"`).
      +      // We don't want to classify *any* DOM node as a function.
      +      return typeof obj === "function" && typeof obj.nodeType !== "number";
      +  };
      +
      +
      +var isWindow = function isWindow( obj ) {
      +		return obj != null && obj === obj.window;
      +	};
      +
      +
      +
      +
      +	var preservedScriptAttributes = {
      +		type: true,
      +		src: true,
      +		nonce: true,
      +		noModule: true
      +	};
      +
      +	function DOMEval( code, node, doc ) {
      +		doc = doc || document;
      +
      +		var i, val,
      +			script = doc.createElement( "script" );
      +
      +		script.text = code;
      +		if ( node ) {
      +			for ( i in preservedScriptAttributes ) {
      +
      +				// Support: Firefox 64+, Edge 18+
      +				// Some browsers don't support the "nonce" property on scripts.
      +				// On the other hand, just using `getAttribute` is not enough as
      +				// the `nonce` attribute is reset to an empty string whenever it
      +				// becomes browsing-context connected.
      +				// See https://github.com/whatwg/html/issues/2369
      +				// See https://html.spec.whatwg.org/#nonce-attributes
      +				// The `node.getAttribute` check was added for the sake of
      +				// `jQuery.globalEval` so that it can fake a nonce-containing node
      +				// via an object.
      +				val = node[ i ] || node.getAttribute && node.getAttribute( i );
      +				if ( val ) {
      +					script.setAttribute( i, val );
      +				}
      +			}
      +		}
      +		doc.head.appendChild( script ).parentNode.removeChild( script );
      +	}
      +
      +
      +function toType( obj ) {
      +	if ( obj == null ) {
      +		return obj + "";
      +	}
      +
      +	// Support: Android <=2.3 only (functionish RegExp)
      +	return typeof obj === "object" || typeof obj === "function" ?
      +		class2type[ toString.call( obj ) ] || "object" :
      +		typeof obj;
      +}
      +/* global Symbol */
      +// Defining this global in .eslintrc.json would create a danger of using the global
      +// unguarded in another place, it seems safer to define global only for this module
      +
      +
      +
      +var
      +	version = "3.4.1",
      +
      +	// Define a local copy of jQuery
      +	jQuery = function( selector, context ) {
      +
      +		// The jQuery object is actually just the init constructor 'enhanced'
      +		// Need init if jQuery is called (just allow error to be thrown if not included)
      +		return new jQuery.fn.init( selector, context );
      +	},
      +
      +	// Support: Android <=4.0 only
      +	// Make sure we trim BOM and NBSP
      +	rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
      +
      +jQuery.fn = jQuery.prototype = {
      +
      +	// The current version of jQuery being used
      +	jquery: version,
      +
      +	constructor: jQuery,
      +
      +	// The default length of a jQuery object is 0
      +	length: 0,
      +
      +	toArray: function() {
      +		return slice.call( this );
      +	},
      +
      +	// Get the Nth element in the matched element set OR
      +	// Get the whole matched element set as a clean array
      +	get: function( num ) {
      +
      +		// Return all the elements in a clean array
      +		if ( num == null ) {
      +			return slice.call( this );
      +		}
      +
      +		// Return just the one element from the set
      +		return num < 0 ? this[ num + this.length ] : this[ num ];
      +	},
      +
      +	// Take an array of elements and push it onto the stack
      +	// (returning the new matched element set)
      +	pushStack: function( elems ) {
      +
      +		// Build a new jQuery matched element set
      +		var ret = jQuery.merge( this.constructor(), elems );
      +
      +		// Add the old object onto the stack (as a reference)
      +		ret.prevObject = this;
      +
      +		// Return the newly-formed element set
      +		return ret;
      +	},
      +
      +	// Execute a callback for every element in the matched set.
      +	each: function( callback ) {
      +		return jQuery.each( this, callback );
      +	},
      +
      +	map: function( callback ) {
      +		return this.pushStack( jQuery.map( this, function( elem, i ) {
      +			return callback.call( elem, i, elem );
      +		} ) );
      +	},
      +
      +	slice: function() {
      +		return this.pushStack( slice.apply( this, arguments ) );
      +	},
      +
      +	first: function() {
      +		return this.eq( 0 );
      +	},
      +
      +	last: function() {
      +		return this.eq( -1 );
      +	},
      +
      +	eq: function( i ) {
      +		var len = this.length,
      +			j = +i + ( i < 0 ? len : 0 );
      +		return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );
      +	},
      +
      +	end: function() {
      +		return this.prevObject || this.constructor();
      +	},
      +
      +	// For internal use only.
      +	// Behaves like an Array's method, not like a jQuery method.
      +	push: push,
      +	sort: arr.sort,
      +	splice: arr.splice
      +};
      +
      +jQuery.extend = jQuery.fn.extend = function() {
      +	var options, name, src, copy, copyIsArray, clone,
      +		target = arguments[ 0 ] || {},
      +		i = 1,
      +		length = arguments.length,
      +		deep = false;
      +
      +	// Handle a deep copy situation
      +	if ( typeof target === "boolean" ) {
      +		deep = target;
      +
      +		// Skip the boolean and the target
      +		target = arguments[ i ] || {};
      +		i++;
      +	}
      +
      +	// Handle case when target is a string or something (possible in deep copy)
      +	if ( typeof target !== "object" && !isFunction( target ) ) {
      +		target = {};
      +	}
      +
      +	// Extend jQuery itself if only one argument is passed
      +	if ( i === length ) {
      +		target = this;
      +		i--;
      +	}
      +
      +	for ( ; i < length; i++ ) {
      +
      +		// Only deal with non-null/undefined values
      +		if ( ( options = arguments[ i ] ) != null ) {
      +
      +			// Extend the base object
      +			for ( name in options ) {
      +				copy = options[ name ];
      +
      +				// Prevent Object.prototype pollution
      +				// Prevent never-ending loop
      +				if ( name === "__proto__" || target === copy ) {
      +					continue;
      +				}
      +
      +				// Recurse if we're merging plain objects or arrays
      +				if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
      +					( copyIsArray = Array.isArray( copy ) ) ) ) {
      +					src = target[ name ];
      +
      +					// Ensure proper type for the source value
      +					if ( copyIsArray && !Array.isArray( src ) ) {
      +						clone = [];
      +					} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {
      +						clone = {};
      +					} else {
      +						clone = src;
      +					}
      +					copyIsArray = false;
      +
      +					// Never move original objects, clone them
      +					target[ name ] = jQuery.extend( deep, clone, copy );
      +
      +				// Don't bring in undefined values
      +				} else if ( copy !== undefined ) {
      +					target[ name ] = copy;
      +				}
      +			}
      +		}
      +	}
      +
      +	// Return the modified object
      +	return target;
      +};
      +
      +jQuery.extend( {
      +
      +	// Unique for each copy of jQuery on the page
      +	expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
      +
      +	// Assume jQuery is ready without the ready module
      +	isReady: true,
      +
      +	error: function( msg ) {
      +		throw new Error( msg );
      +	},
      +
      +	noop: function() {},
      +
      +	isPlainObject: function( obj ) {
      +		var proto, Ctor;
      +
      +		// Detect obvious negatives
      +		// Use toString instead of jQuery.type to catch host objects
      +		if ( !obj || toString.call( obj ) !== "[object Object]" ) {
      +			return false;
      +		}
      +
      +		proto = getProto( obj );
      +
      +		// Objects with no prototype (e.g., `Object.create( null )`) are plain
      +		if ( !proto ) {
      +			return true;
      +		}
      +
      +		// Objects with prototype are plain iff they were constructed by a global Object function
      +		Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor;
      +		return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString;
      +	},
      +
      +	isEmptyObject: function( obj ) {
      +		var name;
      +
      +		for ( name in obj ) {
      +			return false;
      +		}
      +		return true;
      +	},
      +
      +	// Evaluates a script in a global context
      +	globalEval: function( code, options ) {
      +		DOMEval( code, { nonce: options && options.nonce } );
      +	},
      +
      +	each: function( obj, callback ) {
      +		var length, i = 0;
      +
      +		if ( isArrayLike( obj ) ) {
      +			length = obj.length;
      +			for ( ; i < length; i++ ) {
      +				if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
      +					break;
      +				}
      +			}
      +		} else {
      +			for ( i in obj ) {
      +				if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
      +					break;
      +				}
      +			}
      +		}
      +
      +		return obj;
      +	},
      +
      +	// Support: Android <=4.0 only
      +	trim: function( text ) {
      +		return text == null ?
      +			"" :
      +			( text + "" ).replace( rtrim, "" );
      +	},
      +
      +	// results is for internal usage only
      +	makeArray: function( arr, results ) {
      +		var ret = results || [];
      +
      +		if ( arr != null ) {
      +			if ( isArrayLike( Object( arr ) ) ) {
      +				jQuery.merge( ret,
      +					typeof arr === "string" ?
      +					[ arr ] : arr
      +				);
      +			} else {
      +				push.call( ret, arr );
      +			}
      +		}
      +
      +		return ret;
      +	},
      +
      +	inArray: function( elem, arr, i ) {
      +		return arr == null ? -1 : indexOf.call( arr, elem, i );
      +	},
      +
      +	// Support: Android <=4.0 only, PhantomJS 1 only
      +	// push.apply(_, arraylike) throws on ancient WebKit
      +	merge: function( first, second ) {
      +		var len = +second.length,
      +			j = 0,
      +			i = first.length;
      +
      +		for ( ; j < len; j++ ) {
      +			first[ i++ ] = second[ j ];
      +		}
      +
      +		first.length = i;
      +
      +		return first;
      +	},
      +
      +	grep: function( elems, callback, invert ) {
      +		var callbackInverse,
      +			matches = [],
      +			i = 0,
      +			length = elems.length,
      +			callbackExpect = !invert;
      +
      +		// Go through the array, only saving the items
      +		// that pass the validator function
      +		for ( ; i < length; i++ ) {
      +			callbackInverse = !callback( elems[ i ], i );
      +			if ( callbackInverse !== callbackExpect ) {
      +				matches.push( elems[ i ] );
      +			}
      +		}
      +
      +		return matches;
      +	},
      +
      +	// arg is for internal usage only
      +	map: function( elems, callback, arg ) {
      +		var length, value,
      +			i = 0,
      +			ret = [];
      +
      +		// Go through the array, translating each of the items to their new values
      +		if ( isArrayLike( elems ) ) {
      +			length = elems.length;
      +			for ( ; i < length; i++ ) {
      +				value = callback( elems[ i ], i, arg );
      +
      +				if ( value != null ) {
      +					ret.push( value );
      +				}
      +			}
      +
      +		// Go through every key on the object,
      +		} else {
      +			for ( i in elems ) {
      +				value = callback( elems[ i ], i, arg );
      +
      +				if ( value != null ) {
      +					ret.push( value );
      +				}
      +			}
      +		}
      +
      +		// Flatten any nested arrays
      +		return concat.apply( [], ret );
      +	},
      +
      +	// A global GUID counter for objects
      +	guid: 1,
      +
      +	// jQuery.support is not used in Core but other projects attach their
      +	// properties to it so it needs to exist.
      +	support: support
      +} );
      +
      +if ( typeof Symbol === "function" ) {
      +	jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];
      +}
      +
      +// Populate the class2type map
      +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ),
      +function( i, name ) {
      +	class2type[ "[object " + name + "]" ] = name.toLowerCase();
      +} );
      +
      +function isArrayLike( obj ) {
      +
      +	// Support: real iOS 8.2 only (not reproducible in simulator)
      +	// `in` check used to prevent JIT error (gh-2145)
      +	// hasOwn isn't used here due to false negatives
      +	// regarding Nodelist length in IE
      +	var length = !!obj && "length" in obj && obj.length,
      +		type = toType( obj );
      +
      +	if ( isFunction( obj ) || isWindow( obj ) ) {
      +		return false;
      +	}
      +
      +	return type === "array" || length === 0 ||
      +		typeof length === "number" && length > 0 && ( length - 1 ) in obj;
      +}
      +var Sizzle =
      +/*!
      + * Sizzle CSS Selector Engine v2.3.4
      + * https://sizzlejs.com/
      + *
      + * Copyright JS Foundation and other contributors
      + * Released under the MIT license
      + * https://js.foundation/
      + *
      + * Date: 2019-04-08
      + */
      +(function( window ) {
      +
      +var i,
      +	support,
      +	Expr,
      +	getText,
      +	isXML,
      +	tokenize,
      +	compile,
      +	select,
      +	outermostContext,
      +	sortInput,
      +	hasDuplicate,
      +
      +	// Local document vars
      +	setDocument,
      +	document,
      +	docElem,
      +	documentIsHTML,
      +	rbuggyQSA,
      +	rbuggyMatches,
      +	matches,
      +	contains,
      +
      +	// Instance-specific data
      +	expando = "sizzle" + 1 * new Date(),
      +	preferredDoc = window.document,
      +	dirruns = 0,
      +	done = 0,
      +	classCache = createCache(),
      +	tokenCache = createCache(),
      +	compilerCache = createCache(),
      +	nonnativeSelectorCache = createCache(),
      +	sortOrder = function( a, b ) {
      +		if ( a === b ) {
      +			hasDuplicate = true;
      +		}
      +		return 0;
      +	},
      +
      +	// Instance methods
      +	hasOwn = ({}).hasOwnProperty,
      +	arr = [],
      +	pop = arr.pop,
      +	push_native = arr.push,
      +	push = arr.push,
      +	slice = arr.slice,
      +	// Use a stripped-down indexOf as it's faster than native
      +	// https://jsperf.com/thor-indexof-vs-for/5
      +	indexOf = function( list, elem ) {
      +		var i = 0,
      +			len = list.length;
      +		for ( ; i < len; i++ ) {
      +			if ( list[i] === elem ) {
      +				return i;
      +			}
      +		}
      +		return -1;
      +	},
      +
      +	booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
      +
      +	// Regular expressions
      +
      +	// http://www.w3.org/TR/css3-selectors/#whitespace
      +	whitespace = "[\\x20\\t\\r\\n\\f]",
      +
      +	// http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
      +	identifier = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+",
      +
      +	// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors
      +	attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace +
      +		// Operator (capture 2)
      +		"*([*^$|!~]?=)" + whitespace +
      +		// "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]"
      +		"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace +
      +		"*\\]",
      +
      +	pseudos = ":(" + identifier + ")(?:\\((" +
      +		// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:
      +		// 1. quoted (capture 3; capture 4 or capture 5)
      +		"('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" +
      +		// 2. simple (capture 6)
      +		"((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" +
      +		// 3. anything else (capture 2)
      +		".*" +
      +		")\\)|)",
      +
      +	// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
      +	rwhitespace = new RegExp( whitespace + "+", "g" ),
      +	rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
      +
      +	rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
      +	rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
      +	rdescend = new RegExp( whitespace + "|>" ),
      +
      +	rpseudo = new RegExp( pseudos ),
      +	ridentifier = new RegExp( "^" + identifier + "$" ),
      +
      +	matchExpr = {
      +		"ID": new RegExp( "^#(" + identifier + ")" ),
      +		"CLASS": new RegExp( "^\\.(" + identifier + ")" ),
      +		"TAG": new RegExp( "^(" + identifier + "|[*])" ),
      +		"ATTR": new RegExp( "^" + attributes ),
      +		"PSEUDO": new RegExp( "^" + pseudos ),
      +		"CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
      +			"*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
      +			"*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
      +		"bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
      +		// For use in libraries implementing .is()
      +		// We use this for POS matching in `select`
      +		"needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
      +			whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
      +	},
      +
      +	rhtml = /HTML$/i,
      +	rinputs = /^(?:input|select|textarea|button)$/i,
      +	rheader = /^h\d$/i,
      +
      +	rnative = /^[^{]+\{\s*\[native \w/,
      +
      +	// Easily-parseable/retrievable ID or TAG or CLASS selectors
      +	rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
      +
      +	rsibling = /[+~]/,
      +
      +	// CSS escapes
      +	// http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
      +	runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ),
      +	funescape = function( _, escaped, escapedWhitespace ) {
      +		var high = "0x" + escaped - 0x10000;
      +		// NaN means non-codepoint
      +		// Support: Firefox<24
      +		// Workaround erroneous numeric interpretation of +"0x"
      +		return high !== high || escapedWhitespace ?
      +			escaped :
      +			high < 0 ?
      +				// BMP codepoint
      +				String.fromCharCode( high + 0x10000 ) :
      +				// Supplemental Plane codepoint (surrogate pair)
      +				String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
      +	},
      +
      +	// CSS string/identifier serialization
      +	// https://drafts.csswg.org/cssom/#common-serializing-idioms
      +	rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,
      +	fcssescape = function( ch, asCodePoint ) {
      +		if ( asCodePoint ) {
      +
      +			// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER
      +			if ( ch === "\0" ) {
      +				return "\uFFFD";
      +			}
      +
      +			// Control characters and (dependent upon position) numbers get escaped as code points
      +			return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " ";
      +		}
      +
      +		// Other potentially-special ASCII characters get backslash-escaped
      +		return "\\" + ch;
      +	},
      +
      +	// Used for iframes
      +	// See setDocument()
      +	// Removing the function wrapper causes a "Permission Denied"
      +	// error in IE
      +	unloadHandler = function() {
      +		setDocument();
      +	},
      +
      +	inDisabledFieldset = addCombinator(
      +		function( elem ) {
      +			return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset";
      +		},
      +		{ dir: "parentNode", next: "legend" }
      +	);
      +
      +// Optimize for push.apply( _, NodeList )
      +try {
      +	push.apply(
      +		(arr = slice.call( preferredDoc.childNodes )),
      +		preferredDoc.childNodes
      +	);
      +	// Support: Android<4.0
      +	// Detect silently failing push.apply
      +	arr[ preferredDoc.childNodes.length ].nodeType;
      +} catch ( e ) {
      +	push = { apply: arr.length ?
      +
      +		// Leverage slice if possible
      +		function( target, els ) {
      +			push_native.apply( target, slice.call(els) );
      +		} :
      +
      +		// Support: IE<9
      +		// Otherwise append directly
      +		function( target, els ) {
      +			var j = target.length,
      +				i = 0;
      +			// Can't trust NodeList.length
      +			while ( (target[j++] = els[i++]) ) {}
      +			target.length = j - 1;
      +		}
      +	};
      +}
      +
      +function Sizzle( selector, context, results, seed ) {
      +	var m, i, elem, nid, match, groups, newSelector,
      +		newContext = context && context.ownerDocument,
      +
      +		// nodeType defaults to 9, since context defaults to document
      +		nodeType = context ? context.nodeType : 9;
      +
      +	results = results || [];
      +
      +	// Return early from calls with invalid selector or context
      +	if ( typeof selector !== "string" || !selector ||
      +		nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {
      +
      +		return results;
      +	}
      +
      +	// Try to shortcut find operations (as opposed to filters) in HTML documents
      +	if ( !seed ) {
      +
      +		if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
      +			setDocument( context );
      +		}
      +		context = context || document;
      +
      +		if ( documentIsHTML ) {
      +
      +			// If the selector is sufficiently simple, try using a "get*By*" DOM method
      +			// (excepting DocumentFragment context, where the methods don't exist)
      +			if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {
      +
      +				// ID selector
      +				if ( (m = match[1]) ) {
      +
      +					// Document context
      +					if ( nodeType === 9 ) {
      +						if ( (elem = context.getElementById( m )) ) {
      +
      +							// Support: IE, Opera, Webkit
      +							// TODO: identify versions
      +							// getElementById can match elements by name instead of ID
      +							if ( elem.id === m ) {
      +								results.push( elem );
      +								return results;
      +							}
      +						} else {
      +							return results;
      +						}
      +
      +					// Element context
      +					} else {
      +
      +						// Support: IE, Opera, Webkit
      +						// TODO: identify versions
      +						// getElementById can match elements by name instead of ID
      +						if ( newContext && (elem = newContext.getElementById( m )) &&
      +							contains( context, elem ) &&
      +							elem.id === m ) {
      +
      +							results.push( elem );
      +							return results;
      +						}
      +					}
      +
      +				// Type selector
      +				} else if ( match[2] ) {
      +					push.apply( results, context.getElementsByTagName( selector ) );
      +					return results;
      +
      +				// Class selector
      +				} else if ( (m = match[3]) && support.getElementsByClassName &&
      +					context.getElementsByClassName ) {
      +
      +					push.apply( results, context.getElementsByClassName( m ) );
      +					return results;
      +				}
      +			}
      +
      +			// Take advantage of querySelectorAll
      +			if ( support.qsa &&
      +				!nonnativeSelectorCache[ selector + " " ] &&
      +				(!rbuggyQSA || !rbuggyQSA.test( selector )) &&
      +
      +				// Support: IE 8 only
      +				// Exclude object elements
      +				(nodeType !== 1 || context.nodeName.toLowerCase() !== "object") ) {
      +
      +				newSelector = selector;
      +				newContext = context;
      +
      +				// qSA considers elements outside a scoping root when evaluating child or
      +				// descendant combinators, which is not what we want.
      +				// In such cases, we work around the behavior by prefixing every selector in the
      +				// list with an ID selector referencing the scope context.
      +				// Thanks to Andrew Dupont for this technique.
      +				if ( nodeType === 1 && rdescend.test( selector ) ) {
      +
      +					// Capture the context ID, setting it first if necessary
      +					if ( (nid = context.getAttribute( "id" )) ) {
      +						nid = nid.replace( rcssescape, fcssescape );
      +					} else {
      +						context.setAttribute( "id", (nid = expando) );
      +					}
      +
      +					// Prefix every selector in the list
      +					groups = tokenize( selector );
      +					i = groups.length;
      +					while ( i-- ) {
      +						groups[i] = "#" + nid + " " + toSelector( groups[i] );
      +					}
      +					newSelector = groups.join( "," );
      +
      +					// Expand context for sibling selectors
      +					newContext = rsibling.test( selector ) && testContext( context.parentNode ) ||
      +						context;
      +				}
      +
      +				try {
      +					push.apply( results,
      +						newContext.querySelectorAll( newSelector )
      +					);
      +					return results;
      +				} catch ( qsaError ) {
      +					nonnativeSelectorCache( selector, true );
      +				} finally {
      +					if ( nid === expando ) {
      +						context.removeAttribute( "id" );
      +					}
      +				}
      +			}
      +		}
      +	}
      +
      +	// All others
      +	return select( selector.replace( rtrim, "$1" ), context, results, seed );
      +}
      +
      +/**
      + * Create key-value caches of limited size
      + * @returns {function(string, object)} Returns the Object data after storing it on itself with
      + *	property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
      + *	deleting the oldest entry
      + */
      +function createCache() {
      +	var keys = [];
      +
      +	function cache( key, value ) {
      +		// Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
      +		if ( keys.push( key + " " ) > Expr.cacheLength ) {
      +			// Only keep the most recent entries
      +			delete cache[ keys.shift() ];
      +		}
      +		return (cache[ key + " " ] = value);
      +	}
      +	return cache;
      +}
      +
      +/**
      + * Mark a function for special use by Sizzle
      + * @param {Function} fn The function to mark
      + */
      +function markFunction( fn ) {
      +	fn[ expando ] = true;
      +	return fn;
      +}
      +
      +/**
      + * Support testing using an element
      + * @param {Function} fn Passed the created element and returns a boolean result
      + */
      +function assert( fn ) {
      +	var el = document.createElement("fieldset");
      +
      +	try {
      +		return !!fn( el );
      +	} catch (e) {
      +		return false;
      +	} finally {
      +		// Remove from its parent by default
      +		if ( el.parentNode ) {
      +			el.parentNode.removeChild( el );
      +		}
      +		// release memory in IE
      +		el = null;
      +	}
      +}
      +
      +/**
      + * Adds the same handler for all of the specified attrs
      + * @param {String} attrs Pipe-separated list of attributes
      + * @param {Function} handler The method that will be applied
      + */
      +function addHandle( attrs, handler ) {
      +	var arr = attrs.split("|"),
      +		i = arr.length;
      +
      +	while ( i-- ) {
      +		Expr.attrHandle[ arr[i] ] = handler;
      +	}
      +}
      +
      +/**
      + * Checks document order of two siblings
      + * @param {Element} a
      + * @param {Element} b
      + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
      + */
      +function siblingCheck( a, b ) {
      +	var cur = b && a,
      +		diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
      +			a.sourceIndex - b.sourceIndex;
      +
      +	// Use IE sourceIndex if available on both nodes
      +	if ( diff ) {
      +		return diff;
      +	}
      +
      +	// Check if b follows a
      +	if ( cur ) {
      +		while ( (cur = cur.nextSibling) ) {
      +			if ( cur === b ) {
      +				return -1;
      +			}
      +		}
      +	}
      +
      +	return a ? 1 : -1;
      +}
      +
      +/**
      + * Returns a function to use in pseudos for input types
      + * @param {String} type
      + */
      +function createInputPseudo( type ) {
      +	return function( elem ) {
      +		var name = elem.nodeName.toLowerCase();
      +		return name === "input" && elem.type === type;
      +	};
      +}
      +
      +/**
      + * Returns a function to use in pseudos for buttons
      + * @param {String} type
      + */
      +function createButtonPseudo( type ) {
      +	return function( elem ) {
      +		var name = elem.nodeName.toLowerCase();
      +		return (name === "input" || name === "button") && elem.type === type;
      +	};
      +}
      +
      +/**
      + * Returns a function to use in pseudos for :enabled/:disabled
      + * @param {Boolean} disabled true for :disabled; false for :enabled
      + */
      +function createDisabledPseudo( disabled ) {
      +
      +	// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable
      +	return function( elem ) {
      +
      +		// Only certain elements can match :enabled or :disabled
      +		// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled
      +		// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled
      +		if ( "form" in elem ) {
      +
      +			// Check for inherited disabledness on relevant non-disabled elements:
      +			// * listed form-associated elements in a disabled fieldset
      +			//   https://html.spec.whatwg.org/multipage/forms.html#category-listed
      +			//   https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled
      +			// * option elements in a disabled optgroup
      +			//   https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled
      +			// All such elements have a "form" property.
      +			if ( elem.parentNode && elem.disabled === false ) {
      +
      +				// Option elements defer to a parent optgroup if present
      +				if ( "label" in elem ) {
      +					if ( "label" in elem.parentNode ) {
      +						return elem.parentNode.disabled === disabled;
      +					} else {
      +						return elem.disabled === disabled;
      +					}
      +				}
      +
      +				// Support: IE 6 - 11
      +				// Use the isDisabled shortcut property to check for disabled fieldset ancestors
      +				return elem.isDisabled === disabled ||
      +
      +					// Where there is no isDisabled, check manually
      +					/* jshint -W018 */
      +					elem.isDisabled !== !disabled &&
      +						inDisabledFieldset( elem ) === disabled;
      +			}
      +
      +			return elem.disabled === disabled;
      +
      +		// Try to winnow out elements that can't be disabled before trusting the disabled property.
      +		// Some victims get caught in our net (label, legend, menu, track), but it shouldn't
      +		// even exist on them, let alone have a boolean value.
      +		} else if ( "label" in elem ) {
      +			return elem.disabled === disabled;
      +		}
      +
      +		// Remaining elements are neither :enabled nor :disabled
      +		return false;
      +	};
      +}
      +
      +/**
      + * Returns a function to use in pseudos for positionals
      + * @param {Function} fn
      + */
      +function createPositionalPseudo( fn ) {
      +	return markFunction(function( argument ) {
      +		argument = +argument;
      +		return markFunction(function( seed, matches ) {
      +			var j,
      +				matchIndexes = fn( [], seed.length, argument ),
      +				i = matchIndexes.length;
      +
      +			// Match elements found at the specified indexes
      +			while ( i-- ) {
      +				if ( seed[ (j = matchIndexes[i]) ] ) {
      +					seed[j] = !(matches[j] = seed[j]);
      +				}
      +			}
      +		});
      +	});
      +}
      +
      +/**
      + * Checks a node for validity as a Sizzle context
      + * @param {Element|Object=} context
      + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
      + */
      +function testContext( context ) {
      +	return context && typeof context.getElementsByTagName !== "undefined" && context;
      +}
      +
      +// Expose support vars for convenience
      +support = Sizzle.support = {};
      +
      +/**
      + * Detects XML nodes
      + * @param {Element|Object} elem An element or a document
      + * @returns {Boolean} True iff elem is a non-HTML XML node
      + */
      +isXML = Sizzle.isXML = function( elem ) {
      +	var namespace = elem.namespaceURI,
      +		docElem = (elem.ownerDocument || elem).documentElement;
      +
      +	// Support: IE <=8
      +	// Assume HTML when documentElement doesn't yet exist, such as inside loading iframes
      +	// https://bugs.jquery.com/ticket/4833
      +	return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" );
      +};
      +
      +/**
      + * Sets document-related variables once based on the current document
      + * @param {Element|Object} [doc] An element or document object to use to set the document
      + * @returns {Object} Returns the current document
      + */
      +setDocument = Sizzle.setDocument = function( node ) {
      +	var hasCompare, subWindow,
      +		doc = node ? node.ownerDocument || node : preferredDoc;
      +
      +	// Return early if doc is invalid or already selected
      +	if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
      +		return document;
      +	}
      +
      +	// Update global variables
      +	document = doc;
      +	docElem = document.documentElement;
      +	documentIsHTML = !isXML( document );
      +
      +	// Support: IE 9-11, Edge
      +	// Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936)
      +	if ( preferredDoc !== document &&
      +		(subWindow = document.defaultView) && subWindow.top !== subWindow ) {
      +
      +		// Support: IE 11, Edge
      +		if ( subWindow.addEventListener ) {
      +			subWindow.addEventListener( "unload", unloadHandler, false );
      +
      +		// Support: IE 9 - 10 only
      +		} else if ( subWindow.attachEvent ) {
      +			subWindow.attachEvent( "onunload", unloadHandler );
      +		}
      +	}
      +
      +	/* Attributes
      +	---------------------------------------------------------------------- */
      +
      +	// Support: IE<8
      +	// Verify that getAttribute really returns attributes and not properties
      +	// (excepting IE8 booleans)
      +	support.attributes = assert(function( el ) {
      +		el.className = "i";
      +		return !el.getAttribute("className");
      +	});
      +
      +	/* getElement(s)By*
      +	---------------------------------------------------------------------- */
      +
      +	// Check if getElementsByTagName("*") returns only elements
      +	support.getElementsByTagName = assert(function( el ) {
      +		el.appendChild( document.createComment("") );
      +		return !el.getElementsByTagName("*").length;
      +	});
      +
      +	// Support: IE<9
      +	support.getElementsByClassName = rnative.test( document.getElementsByClassName );
      +
      +	// Support: IE<10
      +	// Check if getElementById returns elements by name
      +	// The broken getElementById methods don't pick up programmatically-set names,
      +	// so use a roundabout getElementsByName test
      +	support.getById = assert(function( el ) {
      +		docElem.appendChild( el ).id = expando;
      +		return !document.getElementsByName || !document.getElementsByName( expando ).length;
      +	});
      +
      +	// ID filter and find
      +	if ( support.getById ) {
      +		Expr.filter["ID"] = function( id ) {
      +			var attrId = id.replace( runescape, funescape );
      +			return function( elem ) {
      +				return elem.getAttribute("id") === attrId;
      +			};
      +		};
      +		Expr.find["ID"] = function( id, context ) {
      +			if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
      +				var elem = context.getElementById( id );
      +				return elem ? [ elem ] : [];
      +			}
      +		};
      +	} else {
      +		Expr.filter["ID"] =  function( id ) {
      +			var attrId = id.replace( runescape, funescape );
      +			return function( elem ) {
      +				var node = typeof elem.getAttributeNode !== "undefined" &&
      +					elem.getAttributeNode("id");
      +				return node && node.value === attrId;
      +			};
      +		};
      +
      +		// Support: IE 6 - 7 only
      +		// getElementById is not reliable as a find shortcut
      +		Expr.find["ID"] = function( id, context ) {
      +			if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
      +				var node, i, elems,
      +					elem = context.getElementById( id );
      +
      +				if ( elem ) {
      +
      +					// Verify the id attribute
      +					node = elem.getAttributeNode("id");
      +					if ( node && node.value === id ) {
      +						return [ elem ];
      +					}
      +
      +					// Fall back on getElementsByName
      +					elems = context.getElementsByName( id );
      +					i = 0;
      +					while ( (elem = elems[i++]) ) {
      +						node = elem.getAttributeNode("id");
      +						if ( node && node.value === id ) {
      +							return [ elem ];
      +						}
      +					}
      +				}
      +
      +				return [];
      +			}
      +		};
      +	}
      +
      +	// Tag
      +	Expr.find["TAG"] = support.getElementsByTagName ?
      +		function( tag, context ) {
      +			if ( typeof context.getElementsByTagName !== "undefined" ) {
      +				return context.getElementsByTagName( tag );
      +
      +			// DocumentFragment nodes don't have gEBTN
      +			} else if ( support.qsa ) {
      +				return context.querySelectorAll( tag );
      +			}
      +		} :
      +
      +		function( tag, context ) {
      +			var elem,
      +				tmp = [],
      +				i = 0,
      +				// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too
      +				results = context.getElementsByTagName( tag );
      +
      +			// Filter out possible comments
      +			if ( tag === "*" ) {
      +				while ( (elem = results[i++]) ) {
      +					if ( elem.nodeType === 1 ) {
      +						tmp.push( elem );
      +					}
      +				}
      +
      +				return tmp;
      +			}
      +			return results;
      +		};
      +
      +	// Class
      +	Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) {
      +		if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) {
      +			return context.getElementsByClassName( className );
      +		}
      +	};
      +
      +	/* QSA/matchesSelector
      +	---------------------------------------------------------------------- */
      +
      +	// QSA and matchesSelector support
      +
      +	// matchesSelector(:active) reports false when true (IE9/Opera 11.5)
      +	rbuggyMatches = [];
      +
      +	// qSa(:focus) reports false when true (Chrome 21)
      +	// We allow this because of a bug in IE8/9 that throws an error
      +	// whenever `document.activeElement` is accessed on an iframe
      +	// So, we allow :focus to pass through QSA all the time to avoid the IE error
      +	// See https://bugs.jquery.com/ticket/13378
      +	rbuggyQSA = [];
      +
      +	if ( (support.qsa = rnative.test( document.querySelectorAll )) ) {
      +		// Build QSA regex
      +		// Regex strategy adopted from Diego Perini
      +		assert(function( el ) {
      +			// Select is set to empty string on purpose
      +			// This is to test IE's treatment of not explicitly
      +			// setting a boolean content attribute,
      +			// since its presence should be enough
      +			// https://bugs.jquery.com/ticket/12359
      +			docElem.appendChild( el ).innerHTML = "<a id='" + expando + "'></a>" +
      +				"<select id='" + expando + "-\r\\' msallowcapture=''>" +
      +				"<option selected=''></option></select>";
      +
      +			// Support: IE8, Opera 11-12.16
      +			// Nothing should be selected when empty strings follow ^= or $= or *=
      +			// The test attribute must be unknown in Opera but "safe" for WinRT
      +			// https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section
      +			if ( el.querySelectorAll("[msallowcapture^='']").length ) {
      +				rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
      +			}
      +
      +			// Support: IE8
      +			// Boolean attributes and "value" are not treated correctly
      +			if ( !el.querySelectorAll("[selected]").length ) {
      +				rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
      +			}
      +
      +			// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+
      +			if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) {
      +				rbuggyQSA.push("~=");
      +			}
      +
      +			// Webkit/Opera - :checked should return selected option elements
      +			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
      +			// IE8 throws error here and will not see later tests
      +			if ( !el.querySelectorAll(":checked").length ) {
      +				rbuggyQSA.push(":checked");
      +			}
      +
      +			// Support: Safari 8+, iOS 8+
      +			// https://bugs.webkit.org/show_bug.cgi?id=136851
      +			// In-page `selector#id sibling-combinator selector` fails
      +			if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) {
      +				rbuggyQSA.push(".#.+[+~]");
      +			}
      +		});
      +
      +		assert(function( el ) {
      +			el.innerHTML = "<a href='' disabled='disabled'></a>" +
      +				"<select disabled='disabled'><option/></select>";
      +
      +			// Support: Windows 8 Native Apps
      +			// The type and name attributes are restricted during .innerHTML assignment
      +			var input = document.createElement("input");
      +			input.setAttribute( "type", "hidden" );
      +			el.appendChild( input ).setAttribute( "name", "D" );
      +
      +			// Support: IE8
      +			// Enforce case-sensitivity of name attribute
      +			if ( el.querySelectorAll("[name=d]").length ) {
      +				rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
      +			}
      +
      +			// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
      +			// IE8 throws error here and will not see later tests
      +			if ( el.querySelectorAll(":enabled").length !== 2 ) {
      +				rbuggyQSA.push( ":enabled", ":disabled" );
      +			}
      +
      +			// Support: IE9-11+
      +			// IE's :disabled selector does not pick up the children of disabled fieldsets
      +			docElem.appendChild( el ).disabled = true;
      +			if ( el.querySelectorAll(":disabled").length !== 2 ) {
      +				rbuggyQSA.push( ":enabled", ":disabled" );
      +			}
      +
      +			// Opera 10-11 does not throw on post-comma invalid pseudos
      +			el.querySelectorAll("*,:x");
      +			rbuggyQSA.push(",.*:");
      +		});
      +	}
      +
      +	if ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||
      +		docElem.webkitMatchesSelector ||
      +		docElem.mozMatchesSelector ||
      +		docElem.oMatchesSelector ||
      +		docElem.msMatchesSelector) )) ) {
      +
      +		assert(function( el ) {
      +			// Check to see if it's possible to do matchesSelector
      +			// on a disconnected node (IE 9)
      +			support.disconnectedMatch = matches.call( el, "*" );
      +
      +			// This should fail with an exception
      +			// Gecko does not error, returns false instead
      +			matches.call( el, "[s!='']:x" );
      +			rbuggyMatches.push( "!=", pseudos );
      +		});
      +	}
      +
      +	rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") );
      +	rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") );
      +
      +	/* Contains
      +	---------------------------------------------------------------------- */
      +	hasCompare = rnative.test( docElem.compareDocumentPosition );
      +
      +	// Element contains another
      +	// Purposefully self-exclusive
      +	// As in, an element does not contain itself
      +	contains = hasCompare || rnative.test( docElem.contains ) ?
      +		function( a, b ) {
      +			var adown = a.nodeType === 9 ? a.documentElement : a,
      +				bup = b && b.parentNode;
      +			return a === bup || !!( bup && bup.nodeType === 1 && (
      +				adown.contains ?
      +					adown.contains( bup ) :
      +					a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
      +			));
      +		} :
      +		function( a, b ) {
      +			if ( b ) {
      +				while ( (b = b.parentNode) ) {
      +					if ( b === a ) {
      +						return true;
      +					}
      +				}
      +			}
      +			return false;
      +		};
      +
      +	/* Sorting
      +	---------------------------------------------------------------------- */
      +
      +	// Document order sorting
      +	sortOrder = hasCompare ?
      +	function( a, b ) {
      +
      +		// Flag for duplicate removal
      +		if ( a === b ) {
      +			hasDuplicate = true;
      +			return 0;
      +		}
      +
      +		// Sort on method existence if only one input has compareDocumentPosition
      +		var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
      +		if ( compare ) {
      +			return compare;
      +		}
      +
      +		// Calculate position if both inputs belong to the same document
      +		compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?
      +			a.compareDocumentPosition( b ) :
      +
      +			// Otherwise we know they are disconnected
      +			1;
      +
      +		// Disconnected nodes
      +		if ( compare & 1 ||
      +			(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
      +
      +			// Choose the first element that is related to our preferred document
      +			if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
      +				return -1;
      +			}
      +			if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {
      +				return 1;
      +			}
      +
      +			// Maintain original order
      +			return sortInput ?
      +				( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
      +				0;
      +		}
      +
      +		return compare & 4 ? -1 : 1;
      +	} :
      +	function( a, b ) {
      +		// Exit early if the nodes are identical
      +		if ( a === b ) {
      +			hasDuplicate = true;
      +			return 0;
      +		}
      +
      +		var cur,
      +			i = 0,
      +			aup = a.parentNode,
      +			bup = b.parentNode,
      +			ap = [ a ],
      +			bp = [ b ];
      +
      +		// Parentless nodes are either documents or disconnected
      +		if ( !aup || !bup ) {
      +			return a === document ? -1 :
      +				b === document ? 1 :
      +				aup ? -1 :
      +				bup ? 1 :
      +				sortInput ?
      +				( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
      +				0;
      +
      +		// If the nodes are siblings, we can do a quick check
      +		} else if ( aup === bup ) {
      +			return siblingCheck( a, b );
      +		}
      +
      +		// Otherwise we need full lists of their ancestors for comparison
      +		cur = a;
      +		while ( (cur = cur.parentNode) ) {
      +			ap.unshift( cur );
      +		}
      +		cur = b;
      +		while ( (cur = cur.parentNode) ) {
      +			bp.unshift( cur );
      +		}
      +
      +		// Walk down the tree looking for a discrepancy
      +		while ( ap[i] === bp[i] ) {
      +			i++;
      +		}
      +
      +		return i ?
      +			// Do a sibling check if the nodes have a common ancestor
      +			siblingCheck( ap[i], bp[i] ) :
      +
      +			// Otherwise nodes in our document sort first
      +			ap[i] === preferredDoc ? -1 :
      +			bp[i] === preferredDoc ? 1 :
      +			0;
      +	};
      +
      +	return document;
      +};
      +
      +Sizzle.matches = function( expr, elements ) {
      +	return Sizzle( expr, null, null, elements );
      +};
      +
      +Sizzle.matchesSelector = function( elem, expr ) {
      +	// Set document vars if needed
      +	if ( ( elem.ownerDocument || elem ) !== document ) {
      +		setDocument( elem );
      +	}
      +
      +	if ( support.matchesSelector && documentIsHTML &&
      +		!nonnativeSelectorCache[ expr + " " ] &&
      +		( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
      +		( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {
      +
      +		try {
      +			var ret = matches.call( elem, expr );
      +
      +			// IE 9's matchesSelector returns false on disconnected nodes
      +			if ( ret || support.disconnectedMatch ||
      +					// As well, disconnected nodes are said to be in a document
      +					// fragment in IE 9
      +					elem.document && elem.document.nodeType !== 11 ) {
      +				return ret;
      +			}
      +		} catch (e) {
      +			nonnativeSelectorCache( expr, true );
      +		}
      +	}
      +
      +	return Sizzle( expr, document, null, [ elem ] ).length > 0;
      +};
      +
      +Sizzle.contains = function( context, elem ) {
      +	// Set document vars if needed
      +	if ( ( context.ownerDocument || context ) !== document ) {
      +		setDocument( context );
      +	}
      +	return contains( context, elem );
      +};
      +
      +Sizzle.attr = function( elem, name ) {
      +	// Set document vars if needed
      +	if ( ( elem.ownerDocument || elem ) !== document ) {
      +		setDocument( elem );
      +	}
      +
      +	var fn = Expr.attrHandle[ name.toLowerCase() ],
      +		// Don't get fooled by Object.prototype properties (jQuery #13807)
      +		val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
      +			fn( elem, name, !documentIsHTML ) :
      +			undefined;
      +
      +	return val !== undefined ?
      +		val :
      +		support.attributes || !documentIsHTML ?
      +			elem.getAttribute( name ) :
      +			(val = elem.getAttributeNode(name)) && val.specified ?
      +				val.value :
      +				null;
      +};
      +
      +Sizzle.escape = function( sel ) {
      +	return (sel + "").replace( rcssescape, fcssescape );
      +};
      +
      +Sizzle.error = function( msg ) {
      +	throw new Error( "Syntax error, unrecognized expression: " + msg );
      +};
      +
      +/**
      + * Document sorting and removing duplicates
      + * @param {ArrayLike} results
      + */
      +Sizzle.uniqueSort = function( results ) {
      +	var elem,
      +		duplicates = [],
      +		j = 0,
      +		i = 0;
      +
      +	// Unless we *know* we can detect duplicates, assume their presence
      +	hasDuplicate = !support.detectDuplicates;
      +	sortInput = !support.sortStable && results.slice( 0 );
      +	results.sort( sortOrder );
      +
      +	if ( hasDuplicate ) {
      +		while ( (elem = results[i++]) ) {
      +			if ( elem === results[ i ] ) {
      +				j = duplicates.push( i );
      +			}
      +		}
      +		while ( j-- ) {
      +			results.splice( duplicates[ j ], 1 );
      +		}
      +	}
      +
      +	// Clear input after sorting to release objects
      +	// See https://github.com/jquery/sizzle/pull/225
      +	sortInput = null;
      +
      +	return results;
      +};
      +
      +/**
      + * Utility function for retrieving the text value of an array of DOM nodes
      + * @param {Array|Element} elem
      + */
      +getText = Sizzle.getText = function( elem ) {
      +	var node,
      +		ret = "",
      +		i = 0,
      +		nodeType = elem.nodeType;
      +
      +	if ( !nodeType ) {
      +		// If no nodeType, this is expected to be an array
      +		while ( (node = elem[i++]) ) {
      +			// Do not traverse comment nodes
      +			ret += getText( node );
      +		}
      +	} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
      +		// Use textContent for elements
      +		// innerText usage removed for consistency of new lines (jQuery #11153)
      +		if ( typeof elem.textContent === "string" ) {
      +			return elem.textContent;
      +		} else {
      +			// Traverse its children
      +			for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
      +				ret += getText( elem );
      +			}
      +		}
      +	} else if ( nodeType === 3 || nodeType === 4 ) {
      +		return elem.nodeValue;
      +	}
      +	// Do not include comment or processing instruction nodes
      +
      +	return ret;
      +};
      +
      +Expr = Sizzle.selectors = {
      +
      +	// Can be adjusted by the user
      +	cacheLength: 50,
      +
      +	createPseudo: markFunction,
      +
      +	match: matchExpr,
      +
      +	attrHandle: {},
      +
      +	find: {},
      +
      +	relative: {
      +		">": { dir: "parentNode", first: true },
      +		" ": { dir: "parentNode" },
      +		"+": { dir: "previousSibling", first: true },
      +		"~": { dir: "previousSibling" }
      +	},
      +
      +	preFilter: {
      +		"ATTR": function( match ) {
      +			match[1] = match[1].replace( runescape, funescape );
      +
      +			// Move the given value to match[3] whether quoted or unquoted
      +			match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape );
      +
      +			if ( match[2] === "~=" ) {
      +				match[3] = " " + match[3] + " ";
      +			}
      +
      +			return match.slice( 0, 4 );
      +		},
      +
      +		"CHILD": function( match ) {
      +			/* matches from matchExpr["CHILD"]
      +				1 type (only|nth|...)
      +				2 what (child|of-type)
      +				3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
      +				4 xn-component of xn+y argument ([+-]?\d*n|)
      +				5 sign of xn-component
      +				6 x of xn-component
      +				7 sign of y-component
      +				8 y of y-component
      +			*/
      +			match[1] = match[1].toLowerCase();
      +
      +			if ( match[1].slice( 0, 3 ) === "nth" ) {
      +				// nth-* requires argument
      +				if ( !match[3] ) {
      +					Sizzle.error( match[0] );
      +				}
      +
      +				// numeric x and y parameters for Expr.filter.CHILD
      +				// remember that false/true cast respectively to 0/1
      +				match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
      +				match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );
      +
      +			// other types prohibit arguments
      +			} else if ( match[3] ) {
      +				Sizzle.error( match[0] );
      +			}
      +
      +			return match;
      +		},
      +
      +		"PSEUDO": function( match ) {
      +			var excess,
      +				unquoted = !match[6] && match[2];
      +
      +			if ( matchExpr["CHILD"].test( match[0] ) ) {
      +				return null;
      +			}
      +
      +			// Accept quoted arguments as-is
      +			if ( match[3] ) {
      +				match[2] = match[4] || match[5] || "";
      +
      +			// Strip excess characters from unquoted arguments
      +			} else if ( unquoted && rpseudo.test( unquoted ) &&
      +				// Get excess from tokenize (recursively)
      +				(excess = tokenize( unquoted, true )) &&
      +				// advance to the next closing parenthesis
      +				(excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
      +
      +				// excess is a negative index
      +				match[0] = match[0].slice( 0, excess );
      +				match[2] = unquoted.slice( 0, excess );
      +			}
      +
      +			// Return only captures needed by the pseudo filter method (type and argument)
      +			return match.slice( 0, 3 );
      +		}
      +	},
      +
      +	filter: {
      +
      +		"TAG": function( nodeNameSelector ) {
      +			var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
      +			return nodeNameSelector === "*" ?
      +				function() { return true; } :
      +				function( elem ) {
      +					return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
      +				};
      +		},
      +
      +		"CLASS": function( className ) {
      +			var pattern = classCache[ className + " " ];
      +
      +			return pattern ||
      +				(pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
      +				classCache( className, function( elem ) {
      +					return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" );
      +				});
      +		},
      +
      +		"ATTR": function( name, operator, check ) {
      +			return function( elem ) {
      +				var result = Sizzle.attr( elem, name );
      +
      +				if ( result == null ) {
      +					return operator === "!=";
      +				}
      +				if ( !operator ) {
      +					return true;
      +				}
      +
      +				result += "";
      +
      +				return operator === "=" ? result === check :
      +					operator === "!=" ? result !== check :
      +					operator === "^=" ? check && result.indexOf( check ) === 0 :
      +					operator === "*=" ? check && result.indexOf( check ) > -1 :
      +					operator === "$=" ? check && result.slice( -check.length ) === check :
      +					operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 :
      +					operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
      +					false;
      +			};
      +		},
      +
      +		"CHILD": function( type, what, argument, first, last ) {
      +			var simple = type.slice( 0, 3 ) !== "nth",
      +				forward = type.slice( -4 ) !== "last",
      +				ofType = what === "of-type";
      +
      +			return first === 1 && last === 0 ?
      +
      +				// Shortcut for :nth-*(n)
      +				function( elem ) {
      +					return !!elem.parentNode;
      +				} :
      +
      +				function( elem, context, xml ) {
      +					var cache, uniqueCache, outerCache, node, nodeIndex, start,
      +						dir = simple !== forward ? "nextSibling" : "previousSibling",
      +						parent = elem.parentNode,
      +						name = ofType && elem.nodeName.toLowerCase(),
      +						useCache = !xml && !ofType,
      +						diff = false;
      +
      +					if ( parent ) {
      +
      +						// :(first|last|only)-(child|of-type)
      +						if ( simple ) {
      +							while ( dir ) {
      +								node = elem;
      +								while ( (node = node[ dir ]) ) {
      +									if ( ofType ?
      +										node.nodeName.toLowerCase() === name :
      +										node.nodeType === 1 ) {
      +
      +										return false;
      +									}
      +								}
      +								// Reverse direction for :only-* (if we haven't yet done so)
      +								start = dir = type === "only" && !start && "nextSibling";
      +							}
      +							return true;
      +						}
      +
      +						start = [ forward ? parent.firstChild : parent.lastChild ];
      +
      +						// non-xml :nth-child(...) stores cache data on `parent`
      +						if ( forward && useCache ) {
      +
      +							// Seek `elem` from a previously-cached index
      +
      +							// ...in a gzip-friendly way
      +							node = parent;
      +							outerCache = node[ expando ] || (node[ expando ] = {});
      +
      +							// Support: IE <9 only
      +							// Defend against cloned attroperties (jQuery gh-1709)
      +							uniqueCache = outerCache[ node.uniqueID ] ||
      +								(outerCache[ node.uniqueID ] = {});
      +
      +							cache = uniqueCache[ type ] || [];
      +							nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
      +							diff = nodeIndex && cache[ 2 ];
      +							node = nodeIndex && parent.childNodes[ nodeIndex ];
      +
      +							while ( (node = ++nodeIndex && node && node[ dir ] ||
      +
      +								// Fallback to seeking `elem` from the start
      +								(diff = nodeIndex = 0) || start.pop()) ) {
      +
      +								// When found, cache indexes on `parent` and break
      +								if ( node.nodeType === 1 && ++diff && node === elem ) {
      +									uniqueCache[ type ] = [ dirruns, nodeIndex, diff ];
      +									break;
      +								}
      +							}
      +
      +						} else {
      +							// Use previously-cached element index if available
      +							if ( useCache ) {
      +								// ...in a gzip-friendly way
      +								node = elem;
      +								outerCache = node[ expando ] || (node[ expando ] = {});
      +
      +								// Support: IE <9 only
      +								// Defend against cloned attroperties (jQuery gh-1709)
      +								uniqueCache = outerCache[ node.uniqueID ] ||
      +									(outerCache[ node.uniqueID ] = {});
      +
      +								cache = uniqueCache[ type ] || [];
      +								nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
      +								diff = nodeIndex;
      +							}
      +
      +							// xml :nth-child(...)
      +							// or :nth-last-child(...) or :nth(-last)?-of-type(...)
      +							if ( diff === false ) {
      +								// Use the same loop as above to seek `elem` from the start
      +								while ( (node = ++nodeIndex && node && node[ dir ] ||
      +									(diff = nodeIndex = 0) || start.pop()) ) {
      +
      +									if ( ( ofType ?
      +										node.nodeName.toLowerCase() === name :
      +										node.nodeType === 1 ) &&
      +										++diff ) {
      +
      +										// Cache the index of each encountered element
      +										if ( useCache ) {
      +											outerCache = node[ expando ] || (node[ expando ] = {});
      +
      +											// Support: IE <9 only
      +											// Defend against cloned attroperties (jQuery gh-1709)
      +											uniqueCache = outerCache[ node.uniqueID ] ||
      +												(outerCache[ node.uniqueID ] = {});
      +
      +											uniqueCache[ type ] = [ dirruns, diff ];
      +										}
      +
      +										if ( node === elem ) {
      +											break;
      +										}
      +									}
      +								}
      +							}
      +						}
      +
      +						// Incorporate the offset, then check against cycle size
      +						diff -= last;
      +						return diff === first || ( diff % first === 0 && diff / first >= 0 );
      +					}
      +				};
      +		},
      +
      +		"PSEUDO": function( pseudo, argument ) {
      +			// pseudo-class names are case-insensitive
      +			// http://www.w3.org/TR/selectors/#pseudo-classes
      +			// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
      +			// Remember that setFilters inherits from pseudos
      +			var args,
      +				fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
      +					Sizzle.error( "unsupported pseudo: " + pseudo );
      +
      +			// The user may use createPseudo to indicate that
      +			// arguments are needed to create the filter function
      +			// just as Sizzle does
      +			if ( fn[ expando ] ) {
      +				return fn( argument );
      +			}
      +
      +			// But maintain support for old signatures
      +			if ( fn.length > 1 ) {
      +				args = [ pseudo, pseudo, "", argument ];
      +				return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
      +					markFunction(function( seed, matches ) {
      +						var idx,
      +							matched = fn( seed, argument ),
      +							i = matched.length;
      +						while ( i-- ) {
      +							idx = indexOf( seed, matched[i] );
      +							seed[ idx ] = !( matches[ idx ] = matched[i] );
      +						}
      +					}) :
      +					function( elem ) {
      +						return fn( elem, 0, args );
      +					};
      +			}
      +
      +			return fn;
      +		}
      +	},
      +
      +	pseudos: {
      +		// Potentially complex pseudos
      +		"not": markFunction(function( selector ) {
      +			// Trim the selector passed to compile
      +			// to avoid treating leading and trailing
      +			// spaces as combinators
      +			var input = [],
      +				results = [],
      +				matcher = compile( selector.replace( rtrim, "$1" ) );
      +
      +			return matcher[ expando ] ?
      +				markFunction(function( seed, matches, context, xml ) {
      +					var elem,
      +						unmatched = matcher( seed, null, xml, [] ),
      +						i = seed.length;
      +
      +					// Match elements unmatched by `matcher`
      +					while ( i-- ) {
      +						if ( (elem = unmatched[i]) ) {
      +							seed[i] = !(matches[i] = elem);
      +						}
      +					}
      +				}) :
      +				function( elem, context, xml ) {
      +					input[0] = elem;
      +					matcher( input, null, xml, results );
      +					// Don't keep the element (issue #299)
      +					input[0] = null;
      +					return !results.pop();
      +				};
      +		}),
      +
      +		"has": markFunction(function( selector ) {
      +			return function( elem ) {
      +				return Sizzle( selector, elem ).length > 0;
      +			};
      +		}),
      +
      +		"contains": markFunction(function( text ) {
      +			text = text.replace( runescape, funescape );
      +			return function( elem ) {
      +				return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1;
      +			};
      +		}),
      +
      +		// "Whether an element is represented by a :lang() selector
      +		// is based solely on the element's language value
      +		// being equal to the identifier C,
      +		// or beginning with the identifier C immediately followed by "-".
      +		// The matching of C against the element's language value is performed case-insensitively.
      +		// The identifier C does not have to be a valid language name."
      +		// http://www.w3.org/TR/selectors/#lang-pseudo
      +		"lang": markFunction( function( lang ) {
      +			// lang value must be a valid identifier
      +			if ( !ridentifier.test(lang || "") ) {
      +				Sizzle.error( "unsupported lang: " + lang );
      +			}
      +			lang = lang.replace( runescape, funescape ).toLowerCase();
      +			return function( elem ) {
      +				var elemLang;
      +				do {
      +					if ( (elemLang = documentIsHTML ?
      +						elem.lang :
      +						elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) {
      +
      +						elemLang = elemLang.toLowerCase();
      +						return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
      +					}
      +				} while ( (elem = elem.parentNode) && elem.nodeType === 1 );
      +				return false;
      +			};
      +		}),
      +
      +		// Miscellaneous
      +		"target": function( elem ) {
      +			var hash = window.location && window.location.hash;
      +			return hash && hash.slice( 1 ) === elem.id;
      +		},
      +
      +		"root": function( elem ) {
      +			return elem === docElem;
      +		},
      +
      +		"focus": function( elem ) {
      +			return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
      +		},
      +
      +		// Boolean properties
      +		"enabled": createDisabledPseudo( false ),
      +		"disabled": createDisabledPseudo( true ),
      +
      +		"checked": function( elem ) {
      +			// In CSS3, :checked should return both checked and selected elements
      +			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
      +			var nodeName = elem.nodeName.toLowerCase();
      +			return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
      +		},
      +
      +		"selected": function( elem ) {
      +			// Accessing this property makes selected-by-default
      +			// options in Safari work properly
      +			if ( elem.parentNode ) {
      +				elem.parentNode.selectedIndex;
      +			}
      +
      +			return elem.selected === true;
      +		},
      +
      +		// Contents
      +		"empty": function( elem ) {
      +			// http://www.w3.org/TR/selectors/#empty-pseudo
      +			// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
      +			//   but not by others (comment: 8; processing instruction: 7; etc.)
      +			// nodeType < 6 works because attributes (2) do not appear as children
      +			for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
      +				if ( elem.nodeType < 6 ) {
      +					return false;
      +				}
      +			}
      +			return true;
      +		},
      +
      +		"parent": function( elem ) {
      +			return !Expr.pseudos["empty"]( elem );
      +		},
      +
      +		// Element/input types
      +		"header": function( elem ) {
      +			return rheader.test( elem.nodeName );
      +		},
      +
      +		"input": function( elem ) {
      +			return rinputs.test( elem.nodeName );
      +		},
      +
      +		"button": function( elem ) {
      +			var name = elem.nodeName.toLowerCase();
      +			return name === "input" && elem.type === "button" || name === "button";
      +		},
      +
      +		"text": function( elem ) {
      +			var attr;
      +			return elem.nodeName.toLowerCase() === "input" &&
      +				elem.type === "text" &&
      +
      +				// Support: IE<8
      +				// New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
      +				( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" );
      +		},
      +
      +		// Position-in-collection
      +		"first": createPositionalPseudo(function() {
      +			return [ 0 ];
      +		}),
      +
      +		"last": createPositionalPseudo(function( matchIndexes, length ) {
      +			return [ length - 1 ];
      +		}),
      +
      +		"eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
      +			return [ argument < 0 ? argument + length : argument ];
      +		}),
      +
      +		"even": createPositionalPseudo(function( matchIndexes, length ) {
      +			var i = 0;
      +			for ( ; i < length; i += 2 ) {
      +				matchIndexes.push( i );
      +			}
      +			return matchIndexes;
      +		}),
      +
      +		"odd": createPositionalPseudo(function( matchIndexes, length ) {
      +			var i = 1;
      +			for ( ; i < length; i += 2 ) {
      +				matchIndexes.push( i );
      +			}
      +			return matchIndexes;
      +		}),
      +
      +		"lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
      +			var i = argument < 0 ?
      +				argument + length :
      +				argument > length ?
      +					length :
      +					argument;
      +			for ( ; --i >= 0; ) {
      +				matchIndexes.push( i );
      +			}
      +			return matchIndexes;
      +		}),
      +
      +		"gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
      +			var i = argument < 0 ? argument + length : argument;
      +			for ( ; ++i < length; ) {
      +				matchIndexes.push( i );
      +			}
      +			return matchIndexes;
      +		})
      +	}
      +};
      +
      +Expr.pseudos["nth"] = Expr.pseudos["eq"];
      +
      +// Add button/input type pseudos
      +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
      +	Expr.pseudos[ i ] = createInputPseudo( i );
      +}
      +for ( i in { submit: true, reset: true } ) {
      +	Expr.pseudos[ i ] = createButtonPseudo( i );
      +}
      +
      +// Easy API for creating new setFilters
      +function setFilters() {}
      +setFilters.prototype = Expr.filters = Expr.pseudos;
      +Expr.setFilters = new setFilters();
      +
      +tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
      +	var matched, match, tokens, type,
      +		soFar, groups, preFilters,
      +		cached = tokenCache[ selector + " " ];
      +
      +	if ( cached ) {
      +		return parseOnly ? 0 : cached.slice( 0 );
      +	}
      +
      +	soFar = selector;
      +	groups = [];
      +	preFilters = Expr.preFilter;
      +
      +	while ( soFar ) {
      +
      +		// Comma and first run
      +		if ( !matched || (match = rcomma.exec( soFar )) ) {
      +			if ( match ) {
      +				// Don't consume trailing commas as valid
      +				soFar = soFar.slice( match[0].length ) || soFar;
      +			}
      +			groups.push( (tokens = []) );
      +		}
      +
      +		matched = false;
      +
      +		// Combinators
      +		if ( (match = rcombinators.exec( soFar )) ) {
      +			matched = match.shift();
      +			tokens.push({
      +				value: matched,
      +				// Cast descendant combinators to space
      +				type: match[0].replace( rtrim, " " )
      +			});
      +			soFar = soFar.slice( matched.length );
      +		}
      +
      +		// Filters
      +		for ( type in Expr.filter ) {
      +			if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
      +				(match = preFilters[ type ]( match ))) ) {
      +				matched = match.shift();
      +				tokens.push({
      +					value: matched,
      +					type: type,
      +					matches: match
      +				});
      +				soFar = soFar.slice( matched.length );
      +			}
      +		}
      +
      +		if ( !matched ) {
      +			break;
      +		}
      +	}
      +
      +	// Return the length of the invalid excess
      +	// if we're just parsing
      +	// Otherwise, throw an error or return tokens
      +	return parseOnly ?
      +		soFar.length :
      +		soFar ?
      +			Sizzle.error( selector ) :
      +			// Cache the tokens
      +			tokenCache( selector, groups ).slice( 0 );
      +};
      +
      +function toSelector( tokens ) {
      +	var i = 0,
      +		len = tokens.length,
      +		selector = "";
      +	for ( ; i < len; i++ ) {
      +		selector += tokens[i].value;
      +	}
      +	return selector;
      +}
      +
      +function addCombinator( matcher, combinator, base ) {
      +	var dir = combinator.dir,
      +		skip = combinator.next,
      +		key = skip || dir,
      +		checkNonElements = base && key === "parentNode",
      +		doneName = done++;
      +
      +	return combinator.first ?
      +		// Check against closest ancestor/preceding element
      +		function( elem, context, xml ) {
      +			while ( (elem = elem[ dir ]) ) {
      +				if ( elem.nodeType === 1 || checkNonElements ) {
      +					return matcher( elem, context, xml );
      +				}
      +			}
      +			return false;
      +		} :
      +
      +		// Check against all ancestor/preceding elements
      +		function( elem, context, xml ) {
      +			var oldCache, uniqueCache, outerCache,
      +				newCache = [ dirruns, doneName ];
      +
      +			// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching
      +			if ( xml ) {
      +				while ( (elem = elem[ dir ]) ) {
      +					if ( elem.nodeType === 1 || checkNonElements ) {
      +						if ( matcher( elem, context, xml ) ) {
      +							return true;
      +						}
      +					}
      +				}
      +			} else {
      +				while ( (elem = elem[ dir ]) ) {
      +					if ( elem.nodeType === 1 || checkNonElements ) {
      +						outerCache = elem[ expando ] || (elem[ expando ] = {});
      +
      +						// Support: IE <9 only
      +						// Defend against cloned attroperties (jQuery gh-1709)
      +						uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {});
      +
      +						if ( skip && skip === elem.nodeName.toLowerCase() ) {
      +							elem = elem[ dir ] || elem;
      +						} else if ( (oldCache = uniqueCache[ key ]) &&
      +							oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
      +
      +							// Assign to newCache so results back-propagate to previous elements
      +							return (newCache[ 2 ] = oldCache[ 2 ]);
      +						} else {
      +							// Reuse newcache so results back-propagate to previous elements
      +							uniqueCache[ key ] = newCache;
      +
      +							// A match means we're done; a fail means we have to keep checking
      +							if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {
      +								return true;
      +							}
      +						}
      +					}
      +				}
      +			}
      +			return false;
      +		};
      +}
      +
      +function elementMatcher( matchers ) {
      +	return matchers.length > 1 ?
      +		function( elem, context, xml ) {
      +			var i = matchers.length;
      +			while ( i-- ) {
      +				if ( !matchers[i]( elem, context, xml ) ) {
      +					return false;
      +				}
      +			}
      +			return true;
      +		} :
      +		matchers[0];
      +}
      +
      +function multipleContexts( selector, contexts, results ) {
      +	var i = 0,
      +		len = contexts.length;
      +	for ( ; i < len; i++ ) {
      +		Sizzle( selector, contexts[i], results );
      +	}
      +	return results;
      +}
      +
      +function condense( unmatched, map, filter, context, xml ) {
      +	var elem,
      +		newUnmatched = [],
      +		i = 0,
      +		len = unmatched.length,
      +		mapped = map != null;
      +
      +	for ( ; i < len; i++ ) {
      +		if ( (elem = unmatched[i]) ) {
      +			if ( !filter || filter( elem, context, xml ) ) {
      +				newUnmatched.push( elem );
      +				if ( mapped ) {
      +					map.push( i );
      +				}
      +			}
      +		}
      +	}
      +
      +	return newUnmatched;
      +}
      +
      +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
      +	if ( postFilter && !postFilter[ expando ] ) {
      +		postFilter = setMatcher( postFilter );
      +	}
      +	if ( postFinder && !postFinder[ expando ] ) {
      +		postFinder = setMatcher( postFinder, postSelector );
      +	}
      +	return markFunction(function( seed, results, context, xml ) {
      +		var temp, i, elem,
      +			preMap = [],
      +			postMap = [],
      +			preexisting = results.length,
      +
      +			// Get initial elements from seed or context
      +			elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
      +
      +			// Prefilter to get matcher input, preserving a map for seed-results synchronization
      +			matcherIn = preFilter && ( seed || !selector ) ?
      +				condense( elems, preMap, preFilter, context, xml ) :
      +				elems,
      +
      +			matcherOut = matcher ?
      +				// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
      +				postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
      +
      +					// ...intermediate processing is necessary
      +					[] :
      +
      +					// ...otherwise use results directly
      +					results :
      +				matcherIn;
      +
      +		// Find primary matches
      +		if ( matcher ) {
      +			matcher( matcherIn, matcherOut, context, xml );
      +		}
      +
      +		// Apply postFilter
      +		if ( postFilter ) {
      +			temp = condense( matcherOut, postMap );
      +			postFilter( temp, [], context, xml );
      +
      +			// Un-match failing elements by moving them back to matcherIn
      +			i = temp.length;
      +			while ( i-- ) {
      +				if ( (elem = temp[i]) ) {
      +					matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
      +				}
      +			}
      +		}
      +
      +		if ( seed ) {
      +			if ( postFinder || preFilter ) {
      +				if ( postFinder ) {
      +					// Get the final matcherOut by condensing this intermediate into postFinder contexts
      +					temp = [];
      +					i = matcherOut.length;
      +					while ( i-- ) {
      +						if ( (elem = matcherOut[i]) ) {
      +							// Restore matcherIn since elem is not yet a final match
      +							temp.push( (matcherIn[i] = elem) );
      +						}
      +					}
      +					postFinder( null, (matcherOut = []), temp, xml );
      +				}
      +
      +				// Move matched elements from seed to results to keep them synchronized
      +				i = matcherOut.length;
      +				while ( i-- ) {
      +					if ( (elem = matcherOut[i]) &&
      +						(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {
      +
      +						seed[temp] = !(results[temp] = elem);
      +					}
      +				}
      +			}
      +
      +		// Add elements to results, through postFinder if defined
      +		} else {
      +			matcherOut = condense(
      +				matcherOut === results ?
      +					matcherOut.splice( preexisting, matcherOut.length ) :
      +					matcherOut
      +			);
      +			if ( postFinder ) {
      +				postFinder( null, results, matcherOut, xml );
      +			} else {
      +				push.apply( results, matcherOut );
      +			}
      +		}
      +	});
      +}
      +
      +function matcherFromTokens( tokens ) {
      +	var checkContext, matcher, j,
      +		len = tokens.length,
      +		leadingRelative = Expr.relative[ tokens[0].type ],
      +		implicitRelative = leadingRelative || Expr.relative[" "],
      +		i = leadingRelative ? 1 : 0,
      +
      +		// The foundational matcher ensures that elements are reachable from top-level context(s)
      +		matchContext = addCombinator( function( elem ) {
      +			return elem === checkContext;
      +		}, implicitRelative, true ),
      +		matchAnyContext = addCombinator( function( elem ) {
      +			return indexOf( checkContext, elem ) > -1;
      +		}, implicitRelative, true ),
      +		matchers = [ function( elem, context, xml ) {
      +			var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
      +				(checkContext = context).nodeType ?
      +					matchContext( elem, context, xml ) :
      +					matchAnyContext( elem, context, xml ) );
      +			// Avoid hanging onto element (issue #299)
      +			checkContext = null;
      +			return ret;
      +		} ];
      +
      +	for ( ; i < len; i++ ) {
      +		if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
      +			matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
      +		} else {
      +			matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
      +
      +			// Return special upon seeing a positional matcher
      +			if ( matcher[ expando ] ) {
      +				// Find the next relative operator (if any) for proper handling
      +				j = ++i;
      +				for ( ; j < len; j++ ) {
      +					if ( Expr.relative[ tokens[j].type ] ) {
      +						break;
      +					}
      +				}
      +				return setMatcher(
      +					i > 1 && elementMatcher( matchers ),
      +					i > 1 && toSelector(
      +						// If the preceding token was a descendant combinator, insert an implicit any-element `*`
      +						tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
      +					).replace( rtrim, "$1" ),
      +					matcher,
      +					i < j && matcherFromTokens( tokens.slice( i, j ) ),
      +					j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
      +					j < len && toSelector( tokens )
      +				);
      +			}
      +			matchers.push( matcher );
      +		}
      +	}
      +
      +	return elementMatcher( matchers );
      +}
      +
      +function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
      +	var bySet = setMatchers.length > 0,
      +		byElement = elementMatchers.length > 0,
      +		superMatcher = function( seed, context, xml, results, outermost ) {
      +			var elem, j, matcher,
      +				matchedCount = 0,
      +				i = "0",
      +				unmatched = seed && [],
      +				setMatched = [],
      +				contextBackup = outermostContext,
      +				// We must always have either seed elements or outermost context
      +				elems = seed || byElement && Expr.find["TAG"]( "*", outermost ),
      +				// Use integer dirruns iff this is the outermost matcher
      +				dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
      +				len = elems.length;
      +
      +			if ( outermost ) {
      +				outermostContext = context === document || context || outermost;
      +			}
      +
      +			// Add elements passing elementMatchers directly to results
      +			// Support: IE<9, Safari
      +			// Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id
      +			for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
      +				if ( byElement && elem ) {
      +					j = 0;
      +					if ( !context && elem.ownerDocument !== document ) {
      +						setDocument( elem );
      +						xml = !documentIsHTML;
      +					}
      +					while ( (matcher = elementMatchers[j++]) ) {
      +						if ( matcher( elem, context || document, xml) ) {
      +							results.push( elem );
      +							break;
      +						}
      +					}
      +					if ( outermost ) {
      +						dirruns = dirrunsUnique;
      +					}
      +				}
      +
      +				// Track unmatched elements for set filters
      +				if ( bySet ) {
      +					// They will have gone through all possible matchers
      +					if ( (elem = !matcher && elem) ) {
      +						matchedCount--;
      +					}
      +
      +					// Lengthen the array for every element, matched or not
      +					if ( seed ) {
      +						unmatched.push( elem );
      +					}
      +				}
      +			}
      +
      +			// `i` is now the count of elements visited above, and adding it to `matchedCount`
      +			// makes the latter nonnegative.
      +			matchedCount += i;
      +
      +			// Apply set filters to unmatched elements
      +			// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`
      +			// equals `i`), unless we didn't visit _any_ elements in the above loop because we have
      +			// no element matchers and no seed.
      +			// Incrementing an initially-string "0" `i` allows `i` to remain a string only in that
      +			// case, which will result in a "00" `matchedCount` that differs from `i` but is also
      +			// numerically zero.
      +			if ( bySet && i !== matchedCount ) {
      +				j = 0;
      +				while ( (matcher = setMatchers[j++]) ) {
      +					matcher( unmatched, setMatched, context, xml );
      +				}
      +
      +				if ( seed ) {
      +					// Reintegrate element matches to eliminate the need for sorting
      +					if ( matchedCount > 0 ) {
      +						while ( i-- ) {
      +							if ( !(unmatched[i] || setMatched[i]) ) {
      +								setMatched[i] = pop.call( results );
      +							}
      +						}
      +					}
      +
      +					// Discard index placeholder values to get only actual matches
      +					setMatched = condense( setMatched );
      +				}
      +
      +				// Add matches to results
      +				push.apply( results, setMatched );
      +
      +				// Seedless set matches succeeding multiple successful matchers stipulate sorting
      +				if ( outermost && !seed && setMatched.length > 0 &&
      +					( matchedCount + setMatchers.length ) > 1 ) {
      +
      +					Sizzle.uniqueSort( results );
      +				}
      +			}
      +
      +			// Override manipulation of globals by nested matchers
      +			if ( outermost ) {
      +				dirruns = dirrunsUnique;
      +				outermostContext = contextBackup;
      +			}
      +
      +			return unmatched;
      +		};
      +
      +	return bySet ?
      +		markFunction( superMatcher ) :
      +		superMatcher;
      +}
      +
      +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {
      +	var i,
      +		setMatchers = [],
      +		elementMatchers = [],
      +		cached = compilerCache[ selector + " " ];
      +
      +	if ( !cached ) {
      +		// Generate a function of recursive functions that can be used to check each element
      +		if ( !match ) {
      +			match = tokenize( selector );
      +		}
      +		i = match.length;
      +		while ( i-- ) {
      +			cached = matcherFromTokens( match[i] );
      +			if ( cached[ expando ] ) {
      +				setMatchers.push( cached );
      +			} else {
      +				elementMatchers.push( cached );
      +			}
      +		}
      +
      +		// Cache the compiled function
      +		cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
      +
      +		// Save selector and tokenization
      +		cached.selector = selector;
      +	}
      +	return cached;
      +};
      +
      +/**
      + * A low-level selection function that works with Sizzle's compiled
      + *  selector functions
      + * @param {String|Function} selector A selector or a pre-compiled
      + *  selector function built with Sizzle.compile
      + * @param {Element} context
      + * @param {Array} [results]
      + * @param {Array} [seed] A set of elements to match against
      + */
      +select = Sizzle.select = function( selector, context, results, seed ) {
      +	var i, tokens, token, type, find,
      +		compiled = typeof selector === "function" && selector,
      +		match = !seed && tokenize( (selector = compiled.selector || selector) );
      +
      +	results = results || [];
      +
      +	// Try to minimize operations if there is only one selector in the list and no seed
      +	// (the latter of which guarantees us context)
      +	if ( match.length === 1 ) {
      +
      +		// Reduce context if the leading compound selector is an ID
      +		tokens = match[0] = match[0].slice( 0 );
      +		if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
      +				context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) {
      +
      +			context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
      +			if ( !context ) {
      +				return results;
      +
      +			// Precompiled matchers will still verify ancestry, so step up a level
      +			} else if ( compiled ) {
      +				context = context.parentNode;
      +			}
      +
      +			selector = selector.slice( tokens.shift().value.length );
      +		}
      +
      +		// Fetch a seed set for right-to-left matching
      +		i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
      +		while ( i-- ) {
      +			token = tokens[i];
      +
      +			// Abort if we hit a combinator
      +			if ( Expr.relative[ (type = token.type) ] ) {
      +				break;
      +			}
      +			if ( (find = Expr.find[ type ]) ) {
      +				// Search, expanding context for leading sibling combinators
      +				if ( (seed = find(
      +					token.matches[0].replace( runescape, funescape ),
      +					rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
      +				)) ) {
      +
      +					// If seed is empty or no tokens remain, we can return early
      +					tokens.splice( i, 1 );
      +					selector = seed.length && toSelector( tokens );
      +					if ( !selector ) {
      +						push.apply( results, seed );
      +						return results;
      +					}
      +
      +					break;
      +				}
      +			}
      +		}
      +	}
      +
      +	// Compile and execute a filtering function if one is not provided
      +	// Provide `match` to avoid retokenization if we modified the selector above
      +	( compiled || compile( selector, match ) )(
      +		seed,
      +		context,
      +		!documentIsHTML,
      +		results,
      +		!context || rsibling.test( selector ) && testContext( context.parentNode ) || context
      +	);
      +	return results;
      +};
      +
      +// One-time assignments
      +
      +// Sort stability
      +support.sortStable = expando.split("").sort( sortOrder ).join("") === expando;
      +
      +// Support: Chrome 14-35+
      +// Always assume duplicates if they aren't passed to the comparison function
      +support.detectDuplicates = !!hasDuplicate;
      +
      +// Initialize against the default document
      +setDocument();
      +
      +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
      +// Detached nodes confoundingly follow *each other*
      +support.sortDetached = assert(function( el ) {
      +	// Should return 1, but returns 4 (following)
      +	return el.compareDocumentPosition( document.createElement("fieldset") ) & 1;
      +});
      +
      +// Support: IE<8
      +// Prevent attribute/property "interpolation"
      +// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
      +if ( !assert(function( el ) {
      +	el.innerHTML = "<a href='#'></a>";
      +	return el.firstChild.getAttribute("href") === "#" ;
      +}) ) {
      +	addHandle( "type|href|height|width", function( elem, name, isXML ) {
      +		if ( !isXML ) {
      +			return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
      +		}
      +	});
      +}
      +
      +// Support: IE<9
      +// Use defaultValue in place of getAttribute("value")
      +if ( !support.attributes || !assert(function( el ) {
      +	el.innerHTML = "<input/>";
      +	el.firstChild.setAttribute( "value", "" );
      +	return el.firstChild.getAttribute( "value" ) === "";
      +}) ) {
      +	addHandle( "value", function( elem, name, isXML ) {
      +		if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
      +			return elem.defaultValue;
      +		}
      +	});
      +}
      +
      +// Support: IE<9
      +// Use getAttributeNode to fetch booleans when getAttribute lies
      +if ( !assert(function( el ) {
      +	return el.getAttribute("disabled") == null;
      +}) ) {
      +	addHandle( booleans, function( elem, name, isXML ) {
      +		var val;
      +		if ( !isXML ) {
      +			return elem[ name ] === true ? name.toLowerCase() :
      +					(val = elem.getAttributeNode( name )) && val.specified ?
      +					val.value :
      +				null;
      +		}
      +	});
      +}
      +
      +return Sizzle;
      +
      +})( window );
      +
      +
      +
      +jQuery.find = Sizzle;
      +jQuery.expr = Sizzle.selectors;
      +
      +// Deprecated
      +jQuery.expr[ ":" ] = jQuery.expr.pseudos;
      +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;
      +jQuery.text = Sizzle.getText;
      +jQuery.isXMLDoc = Sizzle.isXML;
      +jQuery.contains = Sizzle.contains;
      +jQuery.escapeSelector = Sizzle.escape;
      +
      +
      +
      +
      +var dir = function( elem, dir, until ) {
      +	var matched = [],
      +		truncate = until !== undefined;
      +
      +	while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {
      +		if ( elem.nodeType === 1 ) {
      +			if ( truncate && jQuery( elem ).is( until ) ) {
      +				break;
      +			}
      +			matched.push( elem );
      +		}
      +	}
      +	return matched;
      +};
      +
      +
      +var siblings = function( n, elem ) {
      +	var matched = [];
      +
      +	for ( ; n; n = n.nextSibling ) {
      +		if ( n.nodeType === 1 && n !== elem ) {
      +			matched.push( n );
      +		}
      +	}
      +
      +	return matched;
      +};
      +
      +
      +var rneedsContext = jQuery.expr.match.needsContext;
      +
      +
      +
      +function nodeName( elem, name ) {
      +
      +  return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
      +
      +};
      +var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i );
      +
      +
      +
      +// Implement the identical functionality for filter and not
      +function winnow( elements, qualifier, not ) {
      +	if ( isFunction( qualifier ) ) {
      +		return jQuery.grep( elements, function( elem, i ) {
      +			return !!qualifier.call( elem, i, elem ) !== not;
      +		} );
      +	}
      +
      +	// Single element
      +	if ( qualifier.nodeType ) {
      +		return jQuery.grep( elements, function( elem ) {
      +			return ( elem === qualifier ) !== not;
      +		} );
      +	}
      +
      +	// Arraylike of elements (jQuery, arguments, Array)
      +	if ( typeof qualifier !== "string" ) {
      +		return jQuery.grep( elements, function( elem ) {
      +			return ( indexOf.call( qualifier, elem ) > -1 ) !== not;
      +		} );
      +	}
      +
      +	// Filtered directly for both simple and complex selectors
      +	return jQuery.filter( qualifier, elements, not );
      +}
      +
      +jQuery.filter = function( expr, elems, not ) {
      +	var elem = elems[ 0 ];
      +
      +	if ( not ) {
      +		expr = ":not(" + expr + ")";
      +	}
      +
      +	if ( elems.length === 1 && elem.nodeType === 1 ) {
      +		return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];
      +	}
      +
      +	return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
      +		return elem.nodeType === 1;
      +	} ) );
      +};
      +
      +jQuery.fn.extend( {
      +	find: function( selector ) {
      +		var i, ret,
      +			len = this.length,
      +			self = this;
      +
      +		if ( typeof selector !== "string" ) {
      +			return this.pushStack( jQuery( selector ).filter( function() {
      +				for ( i = 0; i < len; i++ ) {
      +					if ( jQuery.contains( self[ i ], this ) ) {
      +						return true;
      +					}
      +				}
      +			} ) );
      +		}
      +
      +		ret = this.pushStack( [] );
      +
      +		for ( i = 0; i < len; i++ ) {
      +			jQuery.find( selector, self[ i ], ret );
      +		}
      +
      +		return len > 1 ? jQuery.uniqueSort( ret ) : ret;
      +	},
      +	filter: function( selector ) {
      +		return this.pushStack( winnow( this, selector || [], false ) );
      +	},
      +	not: function( selector ) {
      +		return this.pushStack( winnow( this, selector || [], true ) );
      +	},
      +	is: function( selector ) {
      +		return !!winnow(
      +			this,
      +
      +			// If this is a positional/relative selector, check membership in the returned set
      +			// so $("p:first").is("p:last") won't return true for a doc with two "p".
      +			typeof selector === "string" && rneedsContext.test( selector ) ?
      +				jQuery( selector ) :
      +				selector || [],
      +			false
      +		).length;
      +	}
      +} );
      +
      +
      +// Initialize a jQuery object
      +
      +
      +// A central reference to the root jQuery(document)
      +var rootjQuery,
      +
      +	// A simple way to check for HTML strings
      +	// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
      +	// Strict HTML recognition (#11290: must start with <)
      +	// Shortcut simple #id case for speed
      +	rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,
      +
      +	init = jQuery.fn.init = function( selector, context, root ) {
      +		var match, elem;
      +
      +		// HANDLE: $(""), $(null), $(undefined), $(false)
      +		if ( !selector ) {
      +			return this;
      +		}
      +
      +		// Method init() accepts an alternate rootjQuery
      +		// so migrate can support jQuery.sub (gh-2101)
      +		root = root || rootjQuery;
      +
      +		// Handle HTML strings
      +		if ( typeof selector === "string" ) {
      +			if ( selector[ 0 ] === "<" &&
      +				selector[ selector.length - 1 ] === ">" &&
      +				selector.length >= 3 ) {
      +
      +				// Assume that strings that start and end with <> are HTML and skip the regex check
      +				match = [ null, selector, null ];
      +
      +			} else {
      +				match = rquickExpr.exec( selector );
      +			}
      +
      +			// Match html or make sure no context is specified for #id
      +			if ( match && ( match[ 1 ] || !context ) ) {
      +
      +				// HANDLE: $(html) -> $(array)
      +				if ( match[ 1 ] ) {
      +					context = context instanceof jQuery ? context[ 0 ] : context;
      +
      +					// Option to run scripts is true for back-compat
      +					// Intentionally let the error be thrown if parseHTML is not present
      +					jQuery.merge( this, jQuery.parseHTML(
      +						match[ 1 ],
      +						context && context.nodeType ? context.ownerDocument || context : document,
      +						true
      +					) );
      +
      +					// HANDLE: $(html, props)
      +					if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {
      +						for ( match in context ) {
      +
      +							// Properties of context are called as methods if possible
      +							if ( isFunction( this[ match ] ) ) {
      +								this[ match ]( context[ match ] );
      +
      +							// ...and otherwise set as attributes
      +							} else {
      +								this.attr( match, context[ match ] );
      +							}
      +						}
      +					}
      +
      +					return this;
      +
      +				// HANDLE: $(#id)
      +				} else {
      +					elem = document.getElementById( match[ 2 ] );
      +
      +					if ( elem ) {
      +
      +						// Inject the element directly into the jQuery object
      +						this[ 0 ] = elem;
      +						this.length = 1;
      +					}
      +					return this;
      +				}
      +
      +			// HANDLE: $(expr, $(...))
      +			} else if ( !context || context.jquery ) {
      +				return ( context || root ).find( selector );
      +
      +			// HANDLE: $(expr, context)
      +			// (which is just equivalent to: $(context).find(expr)
      +			} else {
      +				return this.constructor( context ).find( selector );
      +			}
      +
      +		// HANDLE: $(DOMElement)
      +		} else if ( selector.nodeType ) {
      +			this[ 0 ] = selector;
      +			this.length = 1;
      +			return this;
      +
      +		// HANDLE: $(function)
      +		// Shortcut for document ready
      +		} else if ( isFunction( selector ) ) {
      +			return root.ready !== undefined ?
      +				root.ready( selector ) :
      +
      +				// Execute immediately if ready is not present
      +				selector( jQuery );
      +		}
      +
      +		return jQuery.makeArray( selector, this );
      +	};
      +
      +// Give the init function the jQuery prototype for later instantiation
      +init.prototype = jQuery.fn;
      +
      +// Initialize central reference
      +rootjQuery = jQuery( document );
      +
      +
      +var rparentsprev = /^(?:parents|prev(?:Until|All))/,
      +
      +	// Methods guaranteed to produce a unique set when starting from a unique set
      +	guaranteedUnique = {
      +		children: true,
      +		contents: true,
      +		next: true,
      +		prev: true
      +	};
      +
      +jQuery.fn.extend( {
      +	has: function( target ) {
      +		var targets = jQuery( target, this ),
      +			l = targets.length;
      +
      +		return this.filter( function() {
      +			var i = 0;
      +			for ( ; i < l; i++ ) {
      +				if ( jQuery.contains( this, targets[ i ] ) ) {
      +					return true;
      +				}
      +			}
      +		} );
      +	},
      +
      +	closest: function( selectors, context ) {
      +		var cur,
      +			i = 0,
      +			l = this.length,
      +			matched = [],
      +			targets = typeof selectors !== "string" && jQuery( selectors );
      +
      +		// Positional selectors never match, since there's no _selection_ context
      +		if ( !rneedsContext.test( selectors ) ) {
      +			for ( ; i < l; i++ ) {
      +				for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {
      +
      +					// Always skip document fragments
      +					if ( cur.nodeType < 11 && ( targets ?
      +						targets.index( cur ) > -1 :
      +
      +						// Don't pass non-elements to Sizzle
      +						cur.nodeType === 1 &&
      +							jQuery.find.matchesSelector( cur, selectors ) ) ) {
      +
      +						matched.push( cur );
      +						break;
      +					}
      +				}
      +			}
      +		}
      +
      +		return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );
      +	},
      +
      +	// Determine the position of an element within the set
      +	index: function( elem ) {
      +
      +		// No argument, return index in parent
      +		if ( !elem ) {
      +			return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
      +		}
      +
      +		// Index in selector
      +		if ( typeof elem === "string" ) {
      +			return indexOf.call( jQuery( elem ), this[ 0 ] );
      +		}
      +
      +		// Locate the position of the desired element
      +		return indexOf.call( this,
      +
      +			// If it receives a jQuery object, the first element is used
      +			elem.jquery ? elem[ 0 ] : elem
      +		);
      +	},
      +
      +	add: function( selector, context ) {
      +		return this.pushStack(
      +			jQuery.uniqueSort(
      +				jQuery.merge( this.get(), jQuery( selector, context ) )
      +			)
      +		);
      +	},
      +
      +	addBack: function( selector ) {
      +		return this.add( selector == null ?
      +			this.prevObject : this.prevObject.filter( selector )
      +		);
      +	}
      +} );
      +
      +function sibling( cur, dir ) {
      +	while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}
      +	return cur;
      +}
      +
      +jQuery.each( {
      +	parent: function( elem ) {
      +		var parent = elem.parentNode;
      +		return parent && parent.nodeType !== 11 ? parent : null;
      +	},
      +	parents: function( elem ) {
      +		return dir( elem, "parentNode" );
      +	},
      +	parentsUntil: function( elem, i, until ) {
      +		return dir( elem, "parentNode", until );
      +	},
      +	next: function( elem ) {
      +		return sibling( elem, "nextSibling" );
      +	},
      +	prev: function( elem ) {
      +		return sibling( elem, "previousSibling" );
      +	},
      +	nextAll: function( elem ) {
      +		return dir( elem, "nextSibling" );
      +	},
      +	prevAll: function( elem ) {
      +		return dir( elem, "previousSibling" );
      +	},
      +	nextUntil: function( elem, i, until ) {
      +		return dir( elem, "nextSibling", until );
      +	},
      +	prevUntil: function( elem, i, until ) {
      +		return dir( elem, "previousSibling", until );
      +	},
      +	siblings: function( elem ) {
      +		return siblings( ( elem.parentNode || {} ).firstChild, elem );
      +	},
      +	children: function( elem ) {
      +		return siblings( elem.firstChild );
      +	},
      +	contents: function( elem ) {
      +		if ( typeof elem.contentDocument !== "undefined" ) {
      +			return elem.contentDocument;
      +		}
      +
      +		// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only
      +		// Treat the template element as a regular one in browsers that
      +		// don't support it.
      +		if ( nodeName( elem, "template" ) ) {
      +			elem = elem.content || elem;
      +		}
      +
      +		return jQuery.merge( [], elem.childNodes );
      +	}
      +}, function( name, fn ) {
      +	jQuery.fn[ name ] = function( until, selector ) {
      +		var matched = jQuery.map( this, fn, until );
      +
      +		if ( name.slice( -5 ) !== "Until" ) {
      +			selector = until;
      +		}
      +
      +		if ( selector && typeof selector === "string" ) {
      +			matched = jQuery.filter( selector, matched );
      +		}
      +
      +		if ( this.length > 1 ) {
      +
      +			// Remove duplicates
      +			if ( !guaranteedUnique[ name ] ) {
      +				jQuery.uniqueSort( matched );
      +			}
      +
      +			// Reverse order for parents* and prev-derivatives
      +			if ( rparentsprev.test( name ) ) {
      +				matched.reverse();
      +			}
      +		}
      +
      +		return this.pushStack( matched );
      +	};
      +} );
      +var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g );
      +
      +
      +
      +// Convert String-formatted options into Object-formatted ones
      +function createOptions( options ) {
      +	var object = {};
      +	jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {
      +		object[ flag ] = true;
      +	} );
      +	return object;
      +}
      +
      +/*
      + * Create a callback list using the following parameters:
      + *
      + *	options: an optional list of space-separated options that will change how
      + *			the callback list behaves or a more traditional option object
      + *
      + * By default a callback list will act like an event callback list and can be
      + * "fired" multiple times.
      + *
      + * Possible options:
      + *
      + *	once:			will ensure the callback list can only be fired once (like a Deferred)
      + *
      + *	memory:			will keep track of previous values and will call any callback added
      + *					after the list has been fired right away with the latest "memorized"
      + *					values (like a Deferred)
      + *
      + *	unique:			will ensure a callback can only be added once (no duplicate in the list)
      + *
      + *	stopOnFalse:	interrupt callings when a callback returns false
      + *
      + */
      +jQuery.Callbacks = function( options ) {
      +
      +	// Convert options from String-formatted to Object-formatted if needed
      +	// (we check in cache first)
      +	options = typeof options === "string" ?
      +		createOptions( options ) :
      +		jQuery.extend( {}, options );
      +
      +	var // Flag to know if list is currently firing
      +		firing,
      +
      +		// Last fire value for non-forgettable lists
      +		memory,
      +
      +		// Flag to know if list was already fired
      +		fired,
      +
      +		// Flag to prevent firing
      +		locked,
      +
      +		// Actual callback list
      +		list = [],
      +
      +		// Queue of execution data for repeatable lists
      +		queue = [],
      +
      +		// Index of currently firing callback (modified by add/remove as needed)
      +		firingIndex = -1,
      +
      +		// Fire callbacks
      +		fire = function() {
      +
      +			// Enforce single-firing
      +			locked = locked || options.once;
      +
      +			// Execute callbacks for all pending executions,
      +			// respecting firingIndex overrides and runtime changes
      +			fired = firing = true;
      +			for ( ; queue.length; firingIndex = -1 ) {
      +				memory = queue.shift();
      +				while ( ++firingIndex < list.length ) {
      +
      +					// Run callback and check for early termination
      +					if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&
      +						options.stopOnFalse ) {
      +
      +						// Jump to end and forget the data so .add doesn't re-fire
      +						firingIndex = list.length;
      +						memory = false;
      +					}
      +				}
      +			}
      +
      +			// Forget the data if we're done with it
      +			if ( !options.memory ) {
      +				memory = false;
      +			}
      +
      +			firing = false;
      +
      +			// Clean up if we're done firing for good
      +			if ( locked ) {
      +
      +				// Keep an empty list if we have data for future add calls
      +				if ( memory ) {
      +					list = [];
      +
      +				// Otherwise, this object is spent
      +				} else {
      +					list = "";
      +				}
      +			}
      +		},
      +
      +		// Actual Callbacks object
      +		self = {
      +
      +			// Add a callback or a collection of callbacks to the list
      +			add: function() {
      +				if ( list ) {
      +
      +					// If we have memory from a past run, we should fire after adding
      +					if ( memory && !firing ) {
      +						firingIndex = list.length - 1;
      +						queue.push( memory );
      +					}
      +
      +					( function add( args ) {
      +						jQuery.each( args, function( _, arg ) {
      +							if ( isFunction( arg ) ) {
      +								if ( !options.unique || !self.has( arg ) ) {
      +									list.push( arg );
      +								}
      +							} else if ( arg && arg.length && toType( arg ) !== "string" ) {
      +
      +								// Inspect recursively
      +								add( arg );
      +							}
      +						} );
      +					} )( arguments );
      +
      +					if ( memory && !firing ) {
      +						fire();
      +					}
      +				}
      +				return this;
      +			},
      +
      +			// Remove a callback from the list
      +			remove: function() {
      +				jQuery.each( arguments, function( _, arg ) {
      +					var index;
      +					while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
      +						list.splice( index, 1 );
      +
      +						// Handle firing indexes
      +						if ( index <= firingIndex ) {
      +							firingIndex--;
      +						}
      +					}
      +				} );
      +				return this;
      +			},
      +
      +			// Check if a given callback is in the list.
      +			// If no argument is given, return whether or not list has callbacks attached.
      +			has: function( fn ) {
      +				return fn ?
      +					jQuery.inArray( fn, list ) > -1 :
      +					list.length > 0;
      +			},
      +
      +			// Remove all callbacks from the list
      +			empty: function() {
      +				if ( list ) {
      +					list = [];
      +				}
      +				return this;
      +			},
      +
      +			// Disable .fire and .add
      +			// Abort any current/pending executions
      +			// Clear all callbacks and values
      +			disable: function() {
      +				locked = queue = [];
      +				list = memory = "";
      +				return this;
      +			},
      +			disabled: function() {
      +				return !list;
      +			},
      +
      +			// Disable .fire
      +			// Also disable .add unless we have memory (since it would have no effect)
      +			// Abort any pending executions
      +			lock: function() {
      +				locked = queue = [];
      +				if ( !memory && !firing ) {
      +					list = memory = "";
      +				}
      +				return this;
      +			},
      +			locked: function() {
      +				return !!locked;
      +			},
      +
      +			// Call all callbacks with the given context and arguments
      +			fireWith: function( context, args ) {
      +				if ( !locked ) {
      +					args = args || [];
      +					args = [ context, args.slice ? args.slice() : args ];
      +					queue.push( args );
      +					if ( !firing ) {
      +						fire();
      +					}
      +				}
      +				return this;
      +			},
      +
      +			// Call all the callbacks with the given arguments
      +			fire: function() {
      +				self.fireWith( this, arguments );
      +				return this;
      +			},
      +
      +			// To know if the callbacks have already been called at least once
      +			fired: function() {
      +				return !!fired;
      +			}
      +		};
      +
      +	return self;
      +};
      +
      +
      +function Identity( v ) {
      +	return v;
      +}
      +function Thrower( ex ) {
      +	throw ex;
      +}
      +
      +function adoptValue( value, resolve, reject, noValue ) {
      +	var method;
      +
      +	try {
      +
      +		// Check for promise aspect first to privilege synchronous behavior
      +		if ( value && isFunction( ( method = value.promise ) ) ) {
      +			method.call( value ).done( resolve ).fail( reject );
      +
      +		// Other thenables
      +		} else if ( value && isFunction( ( method = value.then ) ) ) {
      +			method.call( value, resolve, reject );
      +
      +		// Other non-thenables
      +		} else {
      +
      +			// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:
      +			// * false: [ value ].slice( 0 ) => resolve( value )
      +			// * true: [ value ].slice( 1 ) => resolve()
      +			resolve.apply( undefined, [ value ].slice( noValue ) );
      +		}
      +
      +	// For Promises/A+, convert exceptions into rejections
      +	// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in
      +	// Deferred#then to conditionally suppress rejection.
      +	} catch ( value ) {
      +
      +		// Support: Android 4.0 only
      +		// Strict mode functions invoked without .call/.apply get global-object context
      +		reject.apply( undefined, [ value ] );
      +	}
      +}
      +
      +jQuery.extend( {
      +
      +	Deferred: function( func ) {
      +		var tuples = [
      +
      +				// action, add listener, callbacks,
      +				// ... .then handlers, argument index, [final state]
      +				[ "notify", "progress", jQuery.Callbacks( "memory" ),
      +					jQuery.Callbacks( "memory" ), 2 ],
      +				[ "resolve", "done", jQuery.Callbacks( "once memory" ),
      +					jQuery.Callbacks( "once memory" ), 0, "resolved" ],
      +				[ "reject", "fail", jQuery.Callbacks( "once memory" ),
      +					jQuery.Callbacks( "once memory" ), 1, "rejected" ]
      +			],
      +			state = "pending",
      +			promise = {
      +				state: function() {
      +					return state;
      +				},
      +				always: function() {
      +					deferred.done( arguments ).fail( arguments );
      +					return this;
      +				},
      +				"catch": function( fn ) {
      +					return promise.then( null, fn );
      +				},
      +
      +				// Keep pipe for back-compat
      +				pipe: function( /* fnDone, fnFail, fnProgress */ ) {
      +					var fns = arguments;
      +
      +					return jQuery.Deferred( function( newDefer ) {
      +						jQuery.each( tuples, function( i, tuple ) {
      +
      +							// Map tuples (progress, done, fail) to arguments (done, fail, progress)
      +							var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];
      +
      +							// deferred.progress(function() { bind to newDefer or newDefer.notify })
      +							// deferred.done(function() { bind to newDefer or newDefer.resolve })
      +							// deferred.fail(function() { bind to newDefer or newDefer.reject })
      +							deferred[ tuple[ 1 ] ]( function() {
      +								var returned = fn && fn.apply( this, arguments );
      +								if ( returned && isFunction( returned.promise ) ) {
      +									returned.promise()
      +										.progress( newDefer.notify )
      +										.done( newDefer.resolve )
      +										.fail( newDefer.reject );
      +								} else {
      +									newDefer[ tuple[ 0 ] + "With" ](
      +										this,
      +										fn ? [ returned ] : arguments
      +									);
      +								}
      +							} );
      +						} );
      +						fns = null;
      +					} ).promise();
      +				},
      +				then: function( onFulfilled, onRejected, onProgress ) {
      +					var maxDepth = 0;
      +					function resolve( depth, deferred, handler, special ) {
      +						return function() {
      +							var that = this,
      +								args = arguments,
      +								mightThrow = function() {
      +									var returned, then;
      +
      +									// Support: Promises/A+ section 2.3.3.3.3
      +									// https://promisesaplus.com/#point-59
      +									// Ignore double-resolution attempts
      +									if ( depth < maxDepth ) {
      +										return;
      +									}
      +
      +									returned = handler.apply( that, args );
      +
      +									// Support: Promises/A+ section 2.3.1
      +									// https://promisesaplus.com/#point-48
      +									if ( returned === deferred.promise() ) {
      +										throw new TypeError( "Thenable self-resolution" );
      +									}
      +
      +									// Support: Promises/A+ sections 2.3.3.1, 3.5
      +									// https://promisesaplus.com/#point-54
      +									// https://promisesaplus.com/#point-75
      +									// Retrieve `then` only once
      +									then = returned &&
      +
      +										// Support: Promises/A+ section 2.3.4
      +										// https://promisesaplus.com/#point-64
      +										// Only check objects and functions for thenability
      +										( typeof returned === "object" ||
      +											typeof returned === "function" ) &&
      +										returned.then;
      +
      +									// Handle a returned thenable
      +									if ( isFunction( then ) ) {
      +
      +										// Special processors (notify) just wait for resolution
      +										if ( special ) {
      +											then.call(
      +												returned,
      +												resolve( maxDepth, deferred, Identity, special ),
      +												resolve( maxDepth, deferred, Thrower, special )
      +											);
      +
      +										// Normal processors (resolve) also hook into progress
      +										} else {
      +
      +											// ...and disregard older resolution values
      +											maxDepth++;
      +
      +											then.call(
      +												returned,
      +												resolve( maxDepth, deferred, Identity, special ),
      +												resolve( maxDepth, deferred, Thrower, special ),
      +												resolve( maxDepth, deferred, Identity,
      +													deferred.notifyWith )
      +											);
      +										}
      +
      +									// Handle all other returned values
      +									} else {
      +
      +										// Only substitute handlers pass on context
      +										// and multiple values (non-spec behavior)
      +										if ( handler !== Identity ) {
      +											that = undefined;
      +											args = [ returned ];
      +										}
      +
      +										// Process the value(s)
      +										// Default process is resolve
      +										( special || deferred.resolveWith )( that, args );
      +									}
      +								},
      +
      +								// Only normal processors (resolve) catch and reject exceptions
      +								process = special ?
      +									mightThrow :
      +									function() {
      +										try {
      +											mightThrow();
      +										} catch ( e ) {
      +
      +											if ( jQuery.Deferred.exceptionHook ) {
      +												jQuery.Deferred.exceptionHook( e,
      +													process.stackTrace );
      +											}
      +
      +											// Support: Promises/A+ section 2.3.3.3.4.1
      +											// https://promisesaplus.com/#point-61
      +											// Ignore post-resolution exceptions
      +											if ( depth + 1 >= maxDepth ) {
      +
      +												// Only substitute handlers pass on context
      +												// and multiple values (non-spec behavior)
      +												if ( handler !== Thrower ) {
      +													that = undefined;
      +													args = [ e ];
      +												}
      +
      +												deferred.rejectWith( that, args );
      +											}
      +										}
      +									};
      +
      +							// Support: Promises/A+ section 2.3.3.3.1
      +							// https://promisesaplus.com/#point-57
      +							// Re-resolve promises immediately to dodge false rejection from
      +							// subsequent errors
      +							if ( depth ) {
      +								process();
      +							} else {
      +
      +								// Call an optional hook to record the stack, in case of exception
      +								// since it's otherwise lost when execution goes async
      +								if ( jQuery.Deferred.getStackHook ) {
      +									process.stackTrace = jQuery.Deferred.getStackHook();
      +								}
      +								window.setTimeout( process );
      +							}
      +						};
      +					}
      +
      +					return jQuery.Deferred( function( newDefer ) {
      +
      +						// progress_handlers.add( ... )
      +						tuples[ 0 ][ 3 ].add(
      +							resolve(
      +								0,
      +								newDefer,
      +								isFunction( onProgress ) ?
      +									onProgress :
      +									Identity,
      +								newDefer.notifyWith
      +							)
      +						);
      +
      +						// fulfilled_handlers.add( ... )
      +						tuples[ 1 ][ 3 ].add(
      +							resolve(
      +								0,
      +								newDefer,
      +								isFunction( onFulfilled ) ?
      +									onFulfilled :
      +									Identity
      +							)
      +						);
      +
      +						// rejected_handlers.add( ... )
      +						tuples[ 2 ][ 3 ].add(
      +							resolve(
      +								0,
      +								newDefer,
      +								isFunction( onRejected ) ?
      +									onRejected :
      +									Thrower
      +							)
      +						);
      +					} ).promise();
      +				},
      +
      +				// Get a promise for this deferred
      +				// If obj is provided, the promise aspect is added to the object
      +				promise: function( obj ) {
      +					return obj != null ? jQuery.extend( obj, promise ) : promise;
      +				}
      +			},
      +			deferred = {};
      +
      +		// Add list-specific methods
      +		jQuery.each( tuples, function( i, tuple ) {
      +			var list = tuple[ 2 ],
      +				stateString = tuple[ 5 ];
      +
      +			// promise.progress = list.add
      +			// promise.done = list.add
      +			// promise.fail = list.add
      +			promise[ tuple[ 1 ] ] = list.add;
      +
      +			// Handle state
      +			if ( stateString ) {
      +				list.add(
      +					function() {
      +
      +						// state = "resolved" (i.e., fulfilled)
      +						// state = "rejected"
      +						state = stateString;
      +					},
      +
      +					// rejected_callbacks.disable
      +					// fulfilled_callbacks.disable
      +					tuples[ 3 - i ][ 2 ].disable,
      +
      +					// rejected_handlers.disable
      +					// fulfilled_handlers.disable
      +					tuples[ 3 - i ][ 3 ].disable,
      +
      +					// progress_callbacks.lock
      +					tuples[ 0 ][ 2 ].lock,
      +
      +					// progress_handlers.lock
      +					tuples[ 0 ][ 3 ].lock
      +				);
      +			}
      +
      +			// progress_handlers.fire
      +			// fulfilled_handlers.fire
      +			// rejected_handlers.fire
      +			list.add( tuple[ 3 ].fire );
      +
      +			// deferred.notify = function() { deferred.notifyWith(...) }
      +			// deferred.resolve = function() { deferred.resolveWith(...) }
      +			// deferred.reject = function() { deferred.rejectWith(...) }
      +			deferred[ tuple[ 0 ] ] = function() {
      +				deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments );
      +				return this;
      +			};
      +
      +			// deferred.notifyWith = list.fireWith
      +			// deferred.resolveWith = list.fireWith
      +			// deferred.rejectWith = list.fireWith
      +			deferred[ tuple[ 0 ] + "With" ] = list.fireWith;
      +		} );
      +
      +		// Make the deferred a promise
      +		promise.promise( deferred );
      +
      +		// Call given func if any
      +		if ( func ) {
      +			func.call( deferred, deferred );
      +		}
      +
      +		// All done!
      +		return deferred;
      +	},
      +
      +	// Deferred helper
      +	when: function( singleValue ) {
      +		var
      +
      +			// count of uncompleted subordinates
      +			remaining = arguments.length,
      +
      +			// count of unprocessed arguments
      +			i = remaining,
      +
      +			// subordinate fulfillment data
      +			resolveContexts = Array( i ),
      +			resolveValues = slice.call( arguments ),
      +
      +			// the master Deferred
      +			master = jQuery.Deferred(),
      +
      +			// subordinate callback factory
      +			updateFunc = function( i ) {
      +				return function( value ) {
      +					resolveContexts[ i ] = this;
      +					resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
      +					if ( !( --remaining ) ) {
      +						master.resolveWith( resolveContexts, resolveValues );
      +					}
      +				};
      +			};
      +
      +		// Single- and empty arguments are adopted like Promise.resolve
      +		if ( remaining <= 1 ) {
      +			adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject,
      +				!remaining );
      +
      +			// Use .then() to unwrap secondary thenables (cf. gh-3000)
      +			if ( master.state() === "pending" ||
      +				isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {
      +
      +				return master.then();
      +			}
      +		}
      +
      +		// Multiple arguments are aggregated like Promise.all array elements
      +		while ( i-- ) {
      +			adoptValue( resolveValues[ i ], updateFunc( i ), master.reject );
      +		}
      +
      +		return master.promise();
      +	}
      +} );
      +
      +
      +// These usually indicate a programmer mistake during development,
      +// warn about them ASAP rather than swallowing them by default.
      +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;
      +
      +jQuery.Deferred.exceptionHook = function( error, stack ) {
      +
      +	// Support: IE 8 - 9 only
      +	// Console exists when dev tools are open, which can happen at any time
      +	if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {
      +		window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack );
      +	}
      +};
      +
      +
      +
      +
      +jQuery.readyException = function( error ) {
      +	window.setTimeout( function() {
      +		throw error;
      +	} );
      +};
      +
      +
      +
      +
      +// The deferred used on DOM ready
      +var readyList = jQuery.Deferred();
      +
      +jQuery.fn.ready = function( fn ) {
      +
      +	readyList
      +		.then( fn )
      +
      +		// Wrap jQuery.readyException in a function so that the lookup
      +		// happens at the time of error handling instead of callback
      +		// registration.
      +		.catch( function( error ) {
      +			jQuery.readyException( error );
      +		} );
      +
      +	return this;
      +};
      +
      +jQuery.extend( {
      +
      +	// Is the DOM ready to be used? Set to true once it occurs.
      +	isReady: false,
      +
      +	// A counter to track how many items to wait for before
      +	// the ready event fires. See #6781
      +	readyWait: 1,
      +
      +	// Handle when the DOM is ready
      +	ready: function( wait ) {
      +
      +		// Abort if there are pending holds or we're already ready
      +		if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
      +			return;
      +		}
      +
      +		// Remember that the DOM is ready
      +		jQuery.isReady = true;
      +
      +		// If a normal DOM Ready event fired, decrement, and wait if need be
      +		if ( wait !== true && --jQuery.readyWait > 0 ) {
      +			return;
      +		}
      +
      +		// If there are functions bound, to execute
      +		readyList.resolveWith( document, [ jQuery ] );
      +	}
      +} );
      +
      +jQuery.ready.then = readyList.then;
      +
      +// The ready event handler and self cleanup method
      +function completed() {
      +	document.removeEventListener( "DOMContentLoaded", completed );
      +	window.removeEventListener( "load", completed );
      +	jQuery.ready();
      +}
      +
      +// Catch cases where $(document).ready() is called
      +// after the browser event has already occurred.
      +// Support: IE <=9 - 10 only
      +// Older IE sometimes signals "interactive" too soon
      +if ( document.readyState === "complete" ||
      +	( document.readyState !== "loading" && !document.documentElement.doScroll ) ) {
      +
      +	// Handle it asynchronously to allow scripts the opportunity to delay ready
      +	window.setTimeout( jQuery.ready );
      +
      +} else {
      +
      +	// Use the handy event callback
      +	document.addEventListener( "DOMContentLoaded", completed );
      +
      +	// A fallback to window.onload, that will always work
      +	window.addEventListener( "load", completed );
      +}
      +
      +
      +
      +
      +// Multifunctional method to get and set values of a collection
      +// The value/s can optionally be executed if it's a function
      +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
      +	var i = 0,
      +		len = elems.length,
      +		bulk = key == null;
      +
      +	// Sets many values
      +	if ( toType( key ) === "object" ) {
      +		chainable = true;
      +		for ( i in key ) {
      +			access( elems, fn, i, key[ i ], true, emptyGet, raw );
      +		}
      +
      +	// Sets one value
      +	} else if ( value !== undefined ) {
      +		chainable = true;
      +
      +		if ( !isFunction( value ) ) {
      +			raw = true;
      +		}
      +
      +		if ( bulk ) {
      +
      +			// Bulk operations run against the entire set
      +			if ( raw ) {
      +				fn.call( elems, value );
      +				fn = null;
      +
      +			// ...except when executing function values
      +			} else {
      +				bulk = fn;
      +				fn = function( elem, key, value ) {
      +					return bulk.call( jQuery( elem ), value );
      +				};
      +			}
      +		}
      +
      +		if ( fn ) {
      +			for ( ; i < len; i++ ) {
      +				fn(
      +					elems[ i ], key, raw ?
      +					value :
      +					value.call( elems[ i ], i, fn( elems[ i ], key ) )
      +				);
      +			}
      +		}
      +	}
      +
      +	if ( chainable ) {
      +		return elems;
      +	}
      +
      +	// Gets
      +	if ( bulk ) {
      +		return fn.call( elems );
      +	}
      +
      +	return len ? fn( elems[ 0 ], key ) : emptyGet;
      +};
      +
      +
      +// Matches dashed string for camelizing
      +var rmsPrefix = /^-ms-/,
      +	rdashAlpha = /-([a-z])/g;
      +
      +// Used by camelCase as callback to replace()
      +function fcamelCase( all, letter ) {
      +	return letter.toUpperCase();
      +}
      +
      +// Convert dashed to camelCase; used by the css and data modules
      +// Support: IE <=9 - 11, Edge 12 - 15
      +// Microsoft forgot to hump their vendor prefix (#9572)
      +function camelCase( string ) {
      +	return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
      +}
      +var acceptData = function( owner ) {
      +
      +	// Accepts only:
      +	//  - Node
      +	//    - Node.ELEMENT_NODE
      +	//    - Node.DOCUMENT_NODE
      +	//  - Object
      +	//    - Any
      +	return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
      +};
      +
      +
      +
      +
      +function Data() {
      +	this.expando = jQuery.expando + Data.uid++;
      +}
      +
      +Data.uid = 1;
      +
      +Data.prototype = {
      +
      +	cache: function( owner ) {
      +
      +		// Check if the owner object already has a cache
      +		var value = owner[ this.expando ];
      +
      +		// If not, create one
      +		if ( !value ) {
      +			value = {};
      +
      +			// We can accept data for non-element nodes in modern browsers,
      +			// but we should not, see #8335.
      +			// Always return an empty object.
      +			if ( acceptData( owner ) ) {
      +
      +				// If it is a node unlikely to be stringify-ed or looped over
      +				// use plain assignment
      +				if ( owner.nodeType ) {
      +					owner[ this.expando ] = value;
      +
      +				// Otherwise secure it in a non-enumerable property
      +				// configurable must be true to allow the property to be
      +				// deleted when data is removed
      +				} else {
      +					Object.defineProperty( owner, this.expando, {
      +						value: value,
      +						configurable: true
      +					} );
      +				}
      +			}
      +		}
      +
      +		return value;
      +	},
      +	set: function( owner, data, value ) {
      +		var prop,
      +			cache = this.cache( owner );
      +
      +		// Handle: [ owner, key, value ] args
      +		// Always use camelCase key (gh-2257)
      +		if ( typeof data === "string" ) {
      +			cache[ camelCase( data ) ] = value;
      +
      +		// Handle: [ owner, { properties } ] args
      +		} else {
      +
      +			// Copy the properties one-by-one to the cache object
      +			for ( prop in data ) {
      +				cache[ camelCase( prop ) ] = data[ prop ];
      +			}
      +		}
      +		return cache;
      +	},
      +	get: function( owner, key ) {
      +		return key === undefined ?
      +			this.cache( owner ) :
      +
      +			// Always use camelCase key (gh-2257)
      +			owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];
      +	},
      +	access: function( owner, key, value ) {
      +
      +		// In cases where either:
      +		//
      +		//   1. No key was specified
      +		//   2. A string key was specified, but no value provided
      +		//
      +		// Take the "read" path and allow the get method to determine
      +		// which value to return, respectively either:
      +		//
      +		//   1. The entire cache object
      +		//   2. The data stored at the key
      +		//
      +		if ( key === undefined ||
      +				( ( key && typeof key === "string" ) && value === undefined ) ) {
      +
      +			return this.get( owner, key );
      +		}
      +
      +		// When the key is not a string, or both a key and value
      +		// are specified, set or extend (existing objects) with either:
      +		//
      +		//   1. An object of properties
      +		//   2. A key and value
      +		//
      +		this.set( owner, key, value );
      +
      +		// Since the "set" path can have two possible entry points
      +		// return the expected data based on which path was taken[*]
      +		return value !== undefined ? value : key;
      +	},
      +	remove: function( owner, key ) {
      +		var i,
      +			cache = owner[ this.expando ];
      +
      +		if ( cache === undefined ) {
      +			return;
      +		}
      +
      +		if ( key !== undefined ) {
      +
      +			// Support array or space separated string of keys
      +			if ( Array.isArray( key ) ) {
      +
      +				// If key is an array of keys...
      +				// We always set camelCase keys, so remove that.
      +				key = key.map( camelCase );
      +			} else {
      +				key = camelCase( key );
      +
      +				// If a key with the spaces exists, use it.
      +				// Otherwise, create an array by matching non-whitespace
      +				key = key in cache ?
      +					[ key ] :
      +					( key.match( rnothtmlwhite ) || [] );
      +			}
      +
      +			i = key.length;
      +
      +			while ( i-- ) {
      +				delete cache[ key[ i ] ];
      +			}
      +		}
      +
      +		// Remove the expando if there's no more data
      +		if ( key === undefined || jQuery.isEmptyObject( cache ) ) {
      +
      +			// Support: Chrome <=35 - 45
      +			// Webkit & Blink performance suffers when deleting properties
      +			// from DOM nodes, so set to undefined instead
      +			// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)
      +			if ( owner.nodeType ) {
      +				owner[ this.expando ] = undefined;
      +			} else {
      +				delete owner[ this.expando ];
      +			}
      +		}
      +	},
      +	hasData: function( owner ) {
      +		var cache = owner[ this.expando ];
      +		return cache !== undefined && !jQuery.isEmptyObject( cache );
      +	}
      +};
      +var dataPriv = new Data();
      +
      +var dataUser = new Data();
      +
      +
      +
      +//	Implementation Summary
      +//
      +//	1. Enforce API surface and semantic compatibility with 1.9.x branch
      +//	2. Improve the module's maintainability by reducing the storage
      +//		paths to a single mechanism.
      +//	3. Use the same single mechanism to support "private" and "user" data.
      +//	4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)
      +//	5. Avoid exposing implementation details on user objects (eg. expando properties)
      +//	6. Provide a clear path for implementation upgrade to WeakMap in 2014
      +
      +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
      +	rmultiDash = /[A-Z]/g;
      +
      +function getData( data ) {
      +	if ( data === "true" ) {
      +		return true;
      +	}
      +
      +	if ( data === "false" ) {
      +		return false;
      +	}
      +
      +	if ( data === "null" ) {
      +		return null;
      +	}
      +
      +	// Only convert to a number if it doesn't change the string
      +	if ( data === +data + "" ) {
      +		return +data;
      +	}
      +
      +	if ( rbrace.test( data ) ) {
      +		return JSON.parse( data );
      +	}
      +
      +	return data;
      +}
      +
      +function dataAttr( elem, key, data ) {
      +	var name;
      +
      +	// If nothing was found internally, try to fetch any
      +	// data from the HTML5 data-* attribute
      +	if ( data === undefined && elem.nodeType === 1 ) {
      +		name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase();
      +		data = elem.getAttribute( name );
      +
      +		if ( typeof data === "string" ) {
      +			try {
      +				data = getData( data );
      +			} catch ( e ) {}
      +
      +			// Make sure we set the data so it isn't changed later
      +			dataUser.set( elem, key, data );
      +		} else {
      +			data = undefined;
      +		}
      +	}
      +	return data;
      +}
      +
      +jQuery.extend( {
      +	hasData: function( elem ) {
      +		return dataUser.hasData( elem ) || dataPriv.hasData( elem );
      +	},
      +
      +	data: function( elem, name, data ) {
      +		return dataUser.access( elem, name, data );
      +	},
      +
      +	removeData: function( elem, name ) {
      +		dataUser.remove( elem, name );
      +	},
      +
      +	// TODO: Now that all calls to _data and _removeData have been replaced
      +	// with direct calls to dataPriv methods, these can be deprecated.
      +	_data: function( elem, name, data ) {
      +		return dataPriv.access( elem, name, data );
      +	},
      +
      +	_removeData: function( elem, name ) {
      +		dataPriv.remove( elem, name );
      +	}
      +} );
      +
      +jQuery.fn.extend( {
      +	data: function( key, value ) {
      +		var i, name, data,
      +			elem = this[ 0 ],
      +			attrs = elem && elem.attributes;
      +
      +		// Gets all values
      +		if ( key === undefined ) {
      +			if ( this.length ) {
      +				data = dataUser.get( elem );
      +
      +				if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) {
      +					i = attrs.length;
      +					while ( i-- ) {
      +
      +						// Support: IE 11 only
      +						// The attrs elements can be null (#14894)
      +						if ( attrs[ i ] ) {
      +							name = attrs[ i ].name;
      +							if ( name.indexOf( "data-" ) === 0 ) {
      +								name = camelCase( name.slice( 5 ) );
      +								dataAttr( elem, name, data[ name ] );
      +							}
      +						}
      +					}
      +					dataPriv.set( elem, "hasDataAttrs", true );
      +				}
      +			}
      +
      +			return data;
      +		}
      +
      +		// Sets multiple values
      +		if ( typeof key === "object" ) {
      +			return this.each( function() {
      +				dataUser.set( this, key );
      +			} );
      +		}
      +
      +		return access( this, function( value ) {
      +			var data;
      +
      +			// The calling jQuery object (element matches) is not empty
      +			// (and therefore has an element appears at this[ 0 ]) and the
      +			// `value` parameter was not undefined. An empty jQuery object
      +			// will result in `undefined` for elem = this[ 0 ] which will
      +			// throw an exception if an attempt to read a data cache is made.
      +			if ( elem && value === undefined ) {
      +
      +				// Attempt to get data from the cache
      +				// The key will always be camelCased in Data
      +				data = dataUser.get( elem, key );
      +				if ( data !== undefined ) {
      +					return data;
      +				}
      +
      +				// Attempt to "discover" the data in
      +				// HTML5 custom data-* attrs
      +				data = dataAttr( elem, key );
      +				if ( data !== undefined ) {
      +					return data;
      +				}
      +
      +				// We tried really hard, but the data doesn't exist.
      +				return;
      +			}
      +
      +			// Set the data...
      +			this.each( function() {
      +
      +				// We always store the camelCased key
      +				dataUser.set( this, key, value );
      +			} );
      +		}, null, value, arguments.length > 1, null, true );
      +	},
      +
      +	removeData: function( key ) {
      +		return this.each( function() {
      +			dataUser.remove( this, key );
      +		} );
      +	}
      +} );
      +
      +
      +jQuery.extend( {
      +	queue: function( elem, type, data ) {
      +		var queue;
      +
      +		if ( elem ) {
      +			type = ( type || "fx" ) + "queue";
      +			queue = dataPriv.get( elem, type );
      +
      +			// Speed up dequeue by getting out quickly if this is just a lookup
      +			if ( data ) {
      +				if ( !queue || Array.isArray( data ) ) {
      +					queue = dataPriv.access( elem, type, jQuery.makeArray( data ) );
      +				} else {
      +					queue.push( data );
      +				}
      +			}
      +			return queue || [];
      +		}
      +	},
      +
      +	dequeue: function( elem, type ) {
      +		type = type || "fx";
      +
      +		var queue = jQuery.queue( elem, type ),
      +			startLength = queue.length,
      +			fn = queue.shift(),
      +			hooks = jQuery._queueHooks( elem, type ),
      +			next = function() {
      +				jQuery.dequeue( elem, type );
      +			};
      +
      +		// If the fx queue is dequeued, always remove the progress sentinel
      +		if ( fn === "inprogress" ) {
      +			fn = queue.shift();
      +			startLength--;
      +		}
      +
      +		if ( fn ) {
      +
      +			// Add a progress sentinel to prevent the fx queue from being
      +			// automatically dequeued
      +			if ( type === "fx" ) {
      +				queue.unshift( "inprogress" );
      +			}
      +
      +			// Clear up the last queue stop function
      +			delete hooks.stop;
      +			fn.call( elem, next, hooks );
      +		}
      +
      +		if ( !startLength && hooks ) {
      +			hooks.empty.fire();
      +		}
      +	},
      +
      +	// Not public - generate a queueHooks object, or return the current one
      +	_queueHooks: function( elem, type ) {
      +		var key = type + "queueHooks";
      +		return dataPriv.get( elem, key ) || dataPriv.access( elem, key, {
      +			empty: jQuery.Callbacks( "once memory" ).add( function() {
      +				dataPriv.remove( elem, [ type + "queue", key ] );
      +			} )
      +		} );
      +	}
      +} );
      +
      +jQuery.fn.extend( {
      +	queue: function( type, data ) {
      +		var setter = 2;
      +
      +		if ( typeof type !== "string" ) {
      +			data = type;
      +			type = "fx";
      +			setter--;
      +		}
      +
      +		if ( arguments.length < setter ) {
      +			return jQuery.queue( this[ 0 ], type );
      +		}
      +
      +		return data === undefined ?
      +			this :
      +			this.each( function() {
      +				var queue = jQuery.queue( this, type, data );
      +
      +				// Ensure a hooks for this queue
      +				jQuery._queueHooks( this, type );
      +
      +				if ( type === "fx" && queue[ 0 ] !== "inprogress" ) {
      +					jQuery.dequeue( this, type );
      +				}
      +			} );
      +	},
      +	dequeue: function( type ) {
      +		return this.each( function() {
      +			jQuery.dequeue( this, type );
      +		} );
      +	},
      +	clearQueue: function( type ) {
      +		return this.queue( type || "fx", [] );
      +	},
      +
      +	// Get a promise resolved when queues of a certain type
      +	// are emptied (fx is the type by default)
      +	promise: function( type, obj ) {
      +		var tmp,
      +			count = 1,
      +			defer = jQuery.Deferred(),
      +			elements = this,
      +			i = this.length,
      +			resolve = function() {
      +				if ( !( --count ) ) {
      +					defer.resolveWith( elements, [ elements ] );
      +				}
      +			};
      +
      +		if ( typeof type !== "string" ) {
      +			obj = type;
      +			type = undefined;
      +		}
      +		type = type || "fx";
      +
      +		while ( i-- ) {
      +			tmp = dataPriv.get( elements[ i ], type + "queueHooks" );
      +			if ( tmp && tmp.empty ) {
      +				count++;
      +				tmp.empty.add( resolve );
      +			}
      +		}
      +		resolve();
      +		return defer.promise( obj );
      +	}
      +} );
      +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
      +
      +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
      +
      +
      +var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
      +
      +var documentElement = document.documentElement;
      +
      +
      +
      +	var isAttached = function( elem ) {
      +			return jQuery.contains( elem.ownerDocument, elem );
      +		},
      +		composed = { composed: true };
      +
      +	// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only
      +	// Check attachment across shadow DOM boundaries when possible (gh-3504)
      +	// Support: iOS 10.0-10.2 only
      +	// Early iOS 10 versions support `attachShadow` but not `getRootNode`,
      +	// leading to errors. We need to check for `getRootNode`.
      +	if ( documentElement.getRootNode ) {
      +		isAttached = function( elem ) {
      +			return jQuery.contains( elem.ownerDocument, elem ) ||
      +				elem.getRootNode( composed ) === elem.ownerDocument;
      +		};
      +	}
      +var isHiddenWithinTree = function( elem, el ) {
      +
      +		// isHiddenWithinTree might be called from jQuery#filter function;
      +		// in that case, element will be second argument
      +		elem = el || elem;
      +
      +		// Inline style trumps all
      +		return elem.style.display === "none" ||
      +			elem.style.display === "" &&
      +
      +			// Otherwise, check computed style
      +			// Support: Firefox <=43 - 45
      +			// Disconnected elements can have computed display: none, so first confirm that elem is
      +			// in the document.
      +			isAttached( elem ) &&
      +
      +			jQuery.css( elem, "display" ) === "none";
      +	};
      +
      +var swap = function( elem, options, callback, args ) {
      +	var ret, name,
      +		old = {};
      +
      +	// Remember the old values, and insert the new ones
      +	for ( name in options ) {
      +		old[ name ] = elem.style[ name ];
      +		elem.style[ name ] = options[ name ];
      +	}
      +
      +	ret = callback.apply( elem, args || [] );
      +
      +	// Revert the old values
      +	for ( name in options ) {
      +		elem.style[ name ] = old[ name ];
      +	}
      +
      +	return ret;
      +};
      +
      +
      +
      +
      +function adjustCSS( elem, prop, valueParts, tween ) {
      +	var adjusted, scale,
      +		maxIterations = 20,
      +		currentValue = tween ?
      +			function() {
      +				return tween.cur();
      +			} :
      +			function() {
      +				return jQuery.css( elem, prop, "" );
      +			},
      +		initial = currentValue(),
      +		unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
      +
      +		// Starting value computation is required for potential unit mismatches
      +		initialInUnit = elem.nodeType &&
      +			( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) &&
      +			rcssNum.exec( jQuery.css( elem, prop ) );
      +
      +	if ( initialInUnit && initialInUnit[ 3 ] !== unit ) {
      +
      +		// Support: Firefox <=54
      +		// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)
      +		initial = initial / 2;
      +
      +		// Trust units reported by jQuery.css
      +		unit = unit || initialInUnit[ 3 ];
      +
      +		// Iteratively approximate from a nonzero starting point
      +		initialInUnit = +initial || 1;
      +
      +		while ( maxIterations-- ) {
      +
      +			// Evaluate and update our best guess (doubling guesses that zero out).
      +			// Finish if the scale equals or crosses 1 (making the old*new product non-positive).
      +			jQuery.style( elem, prop, initialInUnit + unit );
      +			if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {
      +				maxIterations = 0;
      +			}
      +			initialInUnit = initialInUnit / scale;
      +
      +		}
      +
      +		initialInUnit = initialInUnit * 2;
      +		jQuery.style( elem, prop, initialInUnit + unit );
      +
      +		// Make sure we update the tween properties later on
      +		valueParts = valueParts || [];
      +	}
      +
      +	if ( valueParts ) {
      +		initialInUnit = +initialInUnit || +initial || 0;
      +
      +		// Apply relative offset (+=/-=) if specified
      +		adjusted = valueParts[ 1 ] ?
      +			initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :
      +			+valueParts[ 2 ];
      +		if ( tween ) {
      +			tween.unit = unit;
      +			tween.start = initialInUnit;
      +			tween.end = adjusted;
      +		}
      +	}
      +	return adjusted;
      +}
      +
      +
      +var defaultDisplayMap = {};
      +
      +function getDefaultDisplay( elem ) {
      +	var temp,
      +		doc = elem.ownerDocument,
      +		nodeName = elem.nodeName,
      +		display = defaultDisplayMap[ nodeName ];
      +
      +	if ( display ) {
      +		return display;
      +	}
      +
      +	temp = doc.body.appendChild( doc.createElement( nodeName ) );
      +	display = jQuery.css( temp, "display" );
      +
      +	temp.parentNode.removeChild( temp );
      +
      +	if ( display === "none" ) {
      +		display = "block";
      +	}
      +	defaultDisplayMap[ nodeName ] = display;
      +
      +	return display;
      +}
      +
      +function showHide( elements, show ) {
      +	var display, elem,
      +		values = [],
      +		index = 0,
      +		length = elements.length;
      +
      +	// Determine new display value for elements that need to change
      +	for ( ; index < length; index++ ) {
      +		elem = elements[ index ];
      +		if ( !elem.style ) {
      +			continue;
      +		}
      +
      +		display = elem.style.display;
      +		if ( show ) {
      +
      +			// Since we force visibility upon cascade-hidden elements, an immediate (and slow)
      +			// check is required in this first loop unless we have a nonempty display value (either
      +			// inline or about-to-be-restored)
      +			if ( display === "none" ) {
      +				values[ index ] = dataPriv.get( elem, "display" ) || null;
      +				if ( !values[ index ] ) {
      +					elem.style.display = "";
      +				}
      +			}
      +			if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) {
      +				values[ index ] = getDefaultDisplay( elem );
      +			}
      +		} else {
      +			if ( display !== "none" ) {
      +				values[ index ] = "none";
      +
      +				// Remember what we're overwriting
      +				dataPriv.set( elem, "display", display );
      +			}
      +		}
      +	}
      +
      +	// Set the display of the elements in a second loop to avoid constant reflow
      +	for ( index = 0; index < length; index++ ) {
      +		if ( values[ index ] != null ) {
      +			elements[ index ].style.display = values[ index ];
      +		}
      +	}
      +
      +	return elements;
      +}
      +
      +jQuery.fn.extend( {
      +	show: function() {
      +		return showHide( this, true );
      +	},
      +	hide: function() {
      +		return showHide( this );
      +	},
      +	toggle: function( state ) {
      +		if ( typeof state === "boolean" ) {
      +			return state ? this.show() : this.hide();
      +		}
      +
      +		return this.each( function() {
      +			if ( isHiddenWithinTree( this ) ) {
      +				jQuery( this ).show();
      +			} else {
      +				jQuery( this ).hide();
      +			}
      +		} );
      +	}
      +} );
      +var rcheckableType = ( /^(?:checkbox|radio)$/i );
      +
      +var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i );
      +
      +var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i );
      +
      +
      +
      +// We have to close these tags to support XHTML (#13200)
      +var wrapMap = {
      +
      +	// Support: IE <=9 only
      +	option: [ 1, "<select multiple='multiple'>", "</select>" ],
      +
      +	// XHTML parsers do not magically insert elements in the
      +	// same way that tag soup parsers do. So we cannot shorten
      +	// this by omitting <tbody> or other required elements.
      +	thead: [ 1, "<table>", "</table>" ],
      +	col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
      +	tr: [ 2, "<table><tbody>", "</tbody></table>" ],
      +	td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
      +
      +	_default: [ 0, "", "" ]
      +};
      +
      +// Support: IE <=9 only
      +wrapMap.optgroup = wrapMap.option;
      +
      +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
      +wrapMap.th = wrapMap.td;
      +
      +
      +function getAll( context, tag ) {
      +
      +	// Support: IE <=9 - 11 only
      +	// Use typeof to avoid zero-argument method invocation on host objects (#15151)
      +	var ret;
      +
      +	if ( typeof context.getElementsByTagName !== "undefined" ) {
      +		ret = context.getElementsByTagName( tag || "*" );
      +
      +	} else if ( typeof context.querySelectorAll !== "undefined" ) {
      +		ret = context.querySelectorAll( tag || "*" );
      +
      +	} else {
      +		ret = [];
      +	}
      +
      +	if ( tag === undefined || tag && nodeName( context, tag ) ) {
      +		return jQuery.merge( [ context ], ret );
      +	}
      +
      +	return ret;
      +}
      +
      +
      +// Mark scripts as having already been evaluated
      +function setGlobalEval( elems, refElements ) {
      +	var i = 0,
      +		l = elems.length;
      +
      +	for ( ; i < l; i++ ) {
      +		dataPriv.set(
      +			elems[ i ],
      +			"globalEval",
      +			!refElements || dataPriv.get( refElements[ i ], "globalEval" )
      +		);
      +	}
      +}
      +
      +
      +var rhtml = /<|&#?\w+;/;
      +
      +function buildFragment( elems, context, scripts, selection, ignored ) {
      +	var elem, tmp, tag, wrap, attached, j,
      +		fragment = context.createDocumentFragment(),
      +		nodes = [],
      +		i = 0,
      +		l = elems.length;
      +
      +	for ( ; i < l; i++ ) {
      +		elem = elems[ i ];
      +
      +		if ( elem || elem === 0 ) {
      +
      +			// Add nodes directly
      +			if ( toType( elem ) === "object" ) {
      +
      +				// Support: Android <=4.0 only, PhantomJS 1 only
      +				// push.apply(_, arraylike) throws on ancient WebKit
      +				jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
      +
      +			// Convert non-html into a text node
      +			} else if ( !rhtml.test( elem ) ) {
      +				nodes.push( context.createTextNode( elem ) );
      +
      +			// Convert html into DOM nodes
      +			} else {
      +				tmp = tmp || fragment.appendChild( context.createElement( "div" ) );
      +
      +				// Deserialize a standard representation
      +				tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase();
      +				wrap = wrapMap[ tag ] || wrapMap._default;
      +				tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];
      +
      +				// Descend through wrappers to the right content
      +				j = wrap[ 0 ];
      +				while ( j-- ) {
      +					tmp = tmp.lastChild;
      +				}
      +
      +				// Support: Android <=4.0 only, PhantomJS 1 only
      +				// push.apply(_, arraylike) throws on ancient WebKit
      +				jQuery.merge( nodes, tmp.childNodes );
      +
      +				// Remember the top-level container
      +				tmp = fragment.firstChild;
      +
      +				// Ensure the created nodes are orphaned (#12392)
      +				tmp.textContent = "";
      +			}
      +		}
      +	}
      +
      +	// Remove wrapper from fragment
      +	fragment.textContent = "";
      +
      +	i = 0;
      +	while ( ( elem = nodes[ i++ ] ) ) {
      +
      +		// Skip elements already in the context collection (trac-4087)
      +		if ( selection && jQuery.inArray( elem, selection ) > -1 ) {
      +			if ( ignored ) {
      +				ignored.push( elem );
      +			}
      +			continue;
      +		}
      +
      +		attached = isAttached( elem );
      +
      +		// Append to fragment
      +		tmp = getAll( fragment.appendChild( elem ), "script" );
      +
      +		// Preserve script evaluation history
      +		if ( attached ) {
      +			setGlobalEval( tmp );
      +		}
      +
      +		// Capture executables
      +		if ( scripts ) {
      +			j = 0;
      +			while ( ( elem = tmp[ j++ ] ) ) {
      +				if ( rscriptType.test( elem.type || "" ) ) {
      +					scripts.push( elem );
      +				}
      +			}
      +		}
      +	}
      +
      +	return fragment;
      +}
      +
      +
      +( function() {
      +	var fragment = document.createDocumentFragment(),
      +		div = fragment.appendChild( document.createElement( "div" ) ),
      +		input = document.createElement( "input" );
      +
      +	// Support: Android 4.0 - 4.3 only
      +	// Check state lost if the name is set (#11217)
      +	// Support: Windows Web Apps (WWA)
      +	// `name` and `type` must use .setAttribute for WWA (#14901)
      +	input.setAttribute( "type", "radio" );
      +	input.setAttribute( "checked", "checked" );
      +	input.setAttribute( "name", "t" );
      +
      +	div.appendChild( input );
      +
      +	// Support: Android <=4.1 only
      +	// Older WebKit doesn't clone checked state correctly in fragments
      +	support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
      +
      +	// Support: IE <=11 only
      +	// Make sure textarea (and checkbox) defaultValue is properly cloned
      +	div.innerHTML = "<textarea>x</textarea>";
      +	support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
      +} )();
      +
      +
      +var
      +	rkeyEvent = /^key/,
      +	rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,
      +	rtypenamespace = /^([^.]*)(?:\.(.+)|)/;
      +
      +function returnTrue() {
      +	return true;
      +}
      +
      +function returnFalse() {
      +	return false;
      +}
      +
      +// Support: IE <=9 - 11+
      +// focus() and blur() are asynchronous, except when they are no-op.
      +// So expect focus to be synchronous when the element is already active,
      +// and blur to be synchronous when the element is not already active.
      +// (focus and blur are always synchronous in other supported browsers,
      +// this just defines when we can count on it).
      +function expectSync( elem, type ) {
      +	return ( elem === safeActiveElement() ) === ( type === "focus" );
      +}
      +
      +// Support: IE <=9 only
      +// Accessing document.activeElement can throw unexpectedly
      +// https://bugs.jquery.com/ticket/13393
      +function safeActiveElement() {
      +	try {
      +		return document.activeElement;
      +	} catch ( err ) { }
      +}
      +
      +function on( elem, types, selector, data, fn, one ) {
      +	var origFn, type;
      +
      +	// Types can be a map of types/handlers
      +	if ( typeof types === "object" ) {
      +
      +		// ( types-Object, selector, data )
      +		if ( typeof selector !== "string" ) {
      +
      +			// ( types-Object, data )
      +			data = data || selector;
      +			selector = undefined;
      +		}
      +		for ( type in types ) {
      +			on( elem, type, selector, data, types[ type ], one );
      +		}
      +		return elem;
      +	}
      +
      +	if ( data == null && fn == null ) {
      +
      +		// ( types, fn )
      +		fn = selector;
      +		data = selector = undefined;
      +	} else if ( fn == null ) {
      +		if ( typeof selector === "string" ) {
      +
      +			// ( types, selector, fn )
      +			fn = data;
      +			data = undefined;
      +		} else {
      +
      +			// ( types, data, fn )
      +			fn = data;
      +			data = selector;
      +			selector = undefined;
      +		}
      +	}
      +	if ( fn === false ) {
      +		fn = returnFalse;
      +	} else if ( !fn ) {
      +		return elem;
      +	}
      +
      +	if ( one === 1 ) {
      +		origFn = fn;
      +		fn = function( event ) {
      +
      +			// Can use an empty set, since event contains the info
      +			jQuery().off( event );
      +			return origFn.apply( this, arguments );
      +		};
      +
      +		// Use same guid so caller can remove using origFn
      +		fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
      +	}
      +	return elem.each( function() {
      +		jQuery.event.add( this, types, fn, data, selector );
      +	} );
      +}
      +
      +/*
      + * Helper functions for managing events -- not part of the public interface.
      + * Props to Dean Edwards' addEvent library for many of the ideas.
      + */
      +jQuery.event = {
      +
      +	global: {},
      +
      +	add: function( elem, types, handler, data, selector ) {
      +
      +		var handleObjIn, eventHandle, tmp,
      +			events, t, handleObj,
      +			special, handlers, type, namespaces, origType,
      +			elemData = dataPriv.get( elem );
      +
      +		// Don't attach events to noData or text/comment nodes (but allow plain objects)
      +		if ( !elemData ) {
      +			return;
      +		}
      +
      +		// Caller can pass in an object of custom data in lieu of the handler
      +		if ( handler.handler ) {
      +			handleObjIn = handler;
      +			handler = handleObjIn.handler;
      +			selector = handleObjIn.selector;
      +		}
      +
      +		// Ensure that invalid selectors throw exceptions at attach time
      +		// Evaluate against documentElement in case elem is a non-element node (e.g., document)
      +		if ( selector ) {
      +			jQuery.find.matchesSelector( documentElement, selector );
      +		}
      +
      +		// Make sure that the handler has a unique ID, used to find/remove it later
      +		if ( !handler.guid ) {
      +			handler.guid = jQuery.guid++;
      +		}
      +
      +		// Init the element's event structure and main handler, if this is the first
      +		if ( !( events = elemData.events ) ) {
      +			events = elemData.events = {};
      +		}
      +		if ( !( eventHandle = elemData.handle ) ) {
      +			eventHandle = elemData.handle = function( e ) {
      +
      +				// Discard the second event of a jQuery.event.trigger() and
      +				// when an event is called after a page has unloaded
      +				return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ?
      +					jQuery.event.dispatch.apply( elem, arguments ) : undefined;
      +			};
      +		}
      +
      +		// Handle multiple events separated by a space
      +		types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
      +		t = types.length;
      +		while ( t-- ) {
      +			tmp = rtypenamespace.exec( types[ t ] ) || [];
      +			type = origType = tmp[ 1 ];
      +			namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
      +
      +			// There *must* be a type, no attaching namespace-only handlers
      +			if ( !type ) {
      +				continue;
      +			}
      +
      +			// If event changes its type, use the special event handlers for the changed type
      +			special = jQuery.event.special[ type ] || {};
      +
      +			// If selector defined, determine special event api type, otherwise given type
      +			type = ( selector ? special.delegateType : special.bindType ) || type;
      +
      +			// Update special based on newly reset type
      +			special = jQuery.event.special[ type ] || {};
      +
      +			// handleObj is passed to all event handlers
      +			handleObj = jQuery.extend( {
      +				type: type,
      +				origType: origType,
      +				data: data,
      +				handler: handler,
      +				guid: handler.guid,
      +				selector: selector,
      +				needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
      +				namespace: namespaces.join( "." )
      +			}, handleObjIn );
      +
      +			// Init the event handler queue if we're the first
      +			if ( !( handlers = events[ type ] ) ) {
      +				handlers = events[ type ] = [];
      +				handlers.delegateCount = 0;
      +
      +				// Only use addEventListener if the special events handler returns false
      +				if ( !special.setup ||
      +					special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
      +
      +					if ( elem.addEventListener ) {
      +						elem.addEventListener( type, eventHandle );
      +					}
      +				}
      +			}
      +
      +			if ( special.add ) {
      +				special.add.call( elem, handleObj );
      +
      +				if ( !handleObj.handler.guid ) {
      +					handleObj.handler.guid = handler.guid;
      +				}
      +			}
      +
      +			// Add to the element's handler list, delegates in front
      +			if ( selector ) {
      +				handlers.splice( handlers.delegateCount++, 0, handleObj );
      +			} else {
      +				handlers.push( handleObj );
      +			}
      +
      +			// Keep track of which events have ever been used, for event optimization
      +			jQuery.event.global[ type ] = true;
      +		}
      +
      +	},
      +
      +	// Detach an event or set of events from an element
      +	remove: function( elem, types, handler, selector, mappedTypes ) {
      +
      +		var j, origCount, tmp,
      +			events, t, handleObj,
      +			special, handlers, type, namespaces, origType,
      +			elemData = dataPriv.hasData( elem ) && dataPriv.get( elem );
      +
      +		if ( !elemData || !( events = elemData.events ) ) {
      +			return;
      +		}
      +
      +		// Once for each type.namespace in types; type may be omitted
      +		types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
      +		t = types.length;
      +		while ( t-- ) {
      +			tmp = rtypenamespace.exec( types[ t ] ) || [];
      +			type = origType = tmp[ 1 ];
      +			namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
      +
      +			// Unbind all events (on this namespace, if provided) for the element
      +			if ( !type ) {
      +				for ( type in events ) {
      +					jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
      +				}
      +				continue;
      +			}
      +
      +			special = jQuery.event.special[ type ] || {};
      +			type = ( selector ? special.delegateType : special.bindType ) || type;
      +			handlers = events[ type ] || [];
      +			tmp = tmp[ 2 ] &&
      +				new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" );
      +
      +			// Remove matching events
      +			origCount = j = handlers.length;
      +			while ( j-- ) {
      +				handleObj = handlers[ j ];
      +
      +				if ( ( mappedTypes || origType === handleObj.origType ) &&
      +					( !handler || handler.guid === handleObj.guid ) &&
      +					( !tmp || tmp.test( handleObj.namespace ) ) &&
      +					( !selector || selector === handleObj.selector ||
      +						selector === "**" && handleObj.selector ) ) {
      +					handlers.splice( j, 1 );
      +
      +					if ( handleObj.selector ) {
      +						handlers.delegateCount--;
      +					}
      +					if ( special.remove ) {
      +						special.remove.call( elem, handleObj );
      +					}
      +				}
      +			}
      +
      +			// Remove generic event handler if we removed something and no more handlers exist
      +			// (avoids potential for endless recursion during removal of special event handlers)
      +			if ( origCount && !handlers.length ) {
      +				if ( !special.teardown ||
      +					special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
      +
      +					jQuery.removeEvent( elem, type, elemData.handle );
      +				}
      +
      +				delete events[ type ];
      +			}
      +		}
      +
      +		// Remove data and the expando if it's no longer used
      +		if ( jQuery.isEmptyObject( events ) ) {
      +			dataPriv.remove( elem, "handle events" );
      +		}
      +	},
      +
      +	dispatch: function( nativeEvent ) {
      +
      +		// Make a writable jQuery.Event from the native event object
      +		var event = jQuery.event.fix( nativeEvent );
      +
      +		var i, j, ret, matched, handleObj, handlerQueue,
      +			args = new Array( arguments.length ),
      +			handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [],
      +			special = jQuery.event.special[ event.type ] || {};
      +
      +		// Use the fix-ed jQuery.Event rather than the (read-only) native event
      +		args[ 0 ] = event;
      +
      +		for ( i = 1; i < arguments.length; i++ ) {
      +			args[ i ] = arguments[ i ];
      +		}
      +
      +		event.delegateTarget = this;
      +
      +		// Call the preDispatch hook for the mapped type, and let it bail if desired
      +		if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
      +			return;
      +		}
      +
      +		// Determine handlers
      +		handlerQueue = jQuery.event.handlers.call( this, event, handlers );
      +
      +		// Run delegates first; they may want to stop propagation beneath us
      +		i = 0;
      +		while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {
      +			event.currentTarget = matched.elem;
      +
      +			j = 0;
      +			while ( ( handleObj = matched.handlers[ j++ ] ) &&
      +				!event.isImmediatePropagationStopped() ) {
      +
      +				// If the event is namespaced, then each handler is only invoked if it is
      +				// specially universal or its namespaces are a superset of the event's.
      +				if ( !event.rnamespace || handleObj.namespace === false ||
      +					event.rnamespace.test( handleObj.namespace ) ) {
      +
      +					event.handleObj = handleObj;
      +					event.data = handleObj.data;
      +
      +					ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||
      +						handleObj.handler ).apply( matched.elem, args );
      +
      +					if ( ret !== undefined ) {
      +						if ( ( event.result = ret ) === false ) {
      +							event.preventDefault();
      +							event.stopPropagation();
      +						}
      +					}
      +				}
      +			}
      +		}
      +
      +		// Call the postDispatch hook for the mapped type
      +		if ( special.postDispatch ) {
      +			special.postDispatch.call( this, event );
      +		}
      +
      +		return event.result;
      +	},
      +
      +	handlers: function( event, handlers ) {
      +		var i, handleObj, sel, matchedHandlers, matchedSelectors,
      +			handlerQueue = [],
      +			delegateCount = handlers.delegateCount,
      +			cur = event.target;
      +
      +		// Find delegate handlers
      +		if ( delegateCount &&
      +
      +			// Support: IE <=9
      +			// Black-hole SVG <use> instance trees (trac-13180)
      +			cur.nodeType &&
      +
      +			// Support: Firefox <=42
      +			// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)
      +			// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click
      +			// Support: IE 11 only
      +			// ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343)
      +			!( event.type === "click" && event.button >= 1 ) ) {
      +
      +			for ( ; cur !== this; cur = cur.parentNode || this ) {
      +
      +				// Don't check non-elements (#13208)
      +				// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
      +				if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) {
      +					matchedHandlers = [];
      +					matchedSelectors = {};
      +					for ( i = 0; i < delegateCount; i++ ) {
      +						handleObj = handlers[ i ];
      +
      +						// Don't conflict with Object.prototype properties (#13203)
      +						sel = handleObj.selector + " ";
      +
      +						if ( matchedSelectors[ sel ] === undefined ) {
      +							matchedSelectors[ sel ] = handleObj.needsContext ?
      +								jQuery( sel, this ).index( cur ) > -1 :
      +								jQuery.find( sel, this, null, [ cur ] ).length;
      +						}
      +						if ( matchedSelectors[ sel ] ) {
      +							matchedHandlers.push( handleObj );
      +						}
      +					}
      +					if ( matchedHandlers.length ) {
      +						handlerQueue.push( { elem: cur, handlers: matchedHandlers } );
      +					}
      +				}
      +			}
      +		}
      +
      +		// Add the remaining (directly-bound) handlers
      +		cur = this;
      +		if ( delegateCount < handlers.length ) {
      +			handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );
      +		}
      +
      +		return handlerQueue;
      +	},
      +
      +	addProp: function( name, hook ) {
      +		Object.defineProperty( jQuery.Event.prototype, name, {
      +			enumerable: true,
      +			configurable: true,
      +
      +			get: isFunction( hook ) ?
      +				function() {
      +					if ( this.originalEvent ) {
      +							return hook( this.originalEvent );
      +					}
      +				} :
      +				function() {
      +					if ( this.originalEvent ) {
      +							return this.originalEvent[ name ];
      +					}
      +				},
      +
      +			set: function( value ) {
      +				Object.defineProperty( this, name, {
      +					enumerable: true,
      +					configurable: true,
      +					writable: true,
      +					value: value
      +				} );
      +			}
      +		} );
      +	},
      +
      +	fix: function( originalEvent ) {
      +		return originalEvent[ jQuery.expando ] ?
      +			originalEvent :
      +			new jQuery.Event( originalEvent );
      +	},
      +
      +	special: {
      +		load: {
      +
      +			// Prevent triggered image.load events from bubbling to window.load
      +			noBubble: true
      +		},
      +		click: {
      +
      +			// Utilize native event to ensure correct state for checkable inputs
      +			setup: function( data ) {
      +
      +				// For mutual compressibility with _default, replace `this` access with a local var.
      +				// `|| data` is dead code meant only to preserve the variable through minification.
      +				var el = this || data;
      +
      +				// Claim the first handler
      +				if ( rcheckableType.test( el.type ) &&
      +					el.click && nodeName( el, "input" ) ) {
      +
      +					// dataPriv.set( el, "click", ... )
      +					leverageNative( el, "click", returnTrue );
      +				}
      +
      +				// Return false to allow normal processing in the caller
      +				return false;
      +			},
      +			trigger: function( data ) {
      +
      +				// For mutual compressibility with _default, replace `this` access with a local var.
      +				// `|| data` is dead code meant only to preserve the variable through minification.
      +				var el = this || data;
      +
      +				// Force setup before triggering a click
      +				if ( rcheckableType.test( el.type ) &&
      +					el.click && nodeName( el, "input" ) ) {
      +
      +					leverageNative( el, "click" );
      +				}
      +
      +				// Return non-false to allow normal event-path propagation
      +				return true;
      +			},
      +
      +			// For cross-browser consistency, suppress native .click() on links
      +			// Also prevent it if we're currently inside a leveraged native-event stack
      +			_default: function( event ) {
      +				var target = event.target;
      +				return rcheckableType.test( target.type ) &&
      +					target.click && nodeName( target, "input" ) &&
      +					dataPriv.get( target, "click" ) ||
      +					nodeName( target, "a" );
      +			}
      +		},
      +
      +		beforeunload: {
      +			postDispatch: function( event ) {
      +
      +				// Support: Firefox 20+
      +				// Firefox doesn't alert if the returnValue field is not set.
      +				if ( event.result !== undefined && event.originalEvent ) {
      +					event.originalEvent.returnValue = event.result;
      +				}
      +			}
      +		}
      +	}
      +};
      +
      +// Ensure the presence of an event listener that handles manually-triggered
      +// synthetic events by interrupting progress until reinvoked in response to
      +// *native* events that it fires directly, ensuring that state changes have
      +// already occurred before other listeners are invoked.
      +function leverageNative( el, type, expectSync ) {
      +
      +	// Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add
      +	if ( !expectSync ) {
      +		if ( dataPriv.get( el, type ) === undefined ) {
      +			jQuery.event.add( el, type, returnTrue );
      +		}
      +		return;
      +	}
      +
      +	// Register the controller as a special universal handler for all event namespaces
      +	dataPriv.set( el, type, false );
      +	jQuery.event.add( el, type, {
      +		namespace: false,
      +		handler: function( event ) {
      +			var notAsync, result,
      +				saved = dataPriv.get( this, type );
      +
      +			if ( ( event.isTrigger & 1 ) && this[ type ] ) {
      +
      +				// Interrupt processing of the outer synthetic .trigger()ed event
      +				// Saved data should be false in such cases, but might be a leftover capture object
      +				// from an async native handler (gh-4350)
      +				if ( !saved.length ) {
      +
      +					// Store arguments for use when handling the inner native event
      +					// There will always be at least one argument (an event object), so this array
      +					// will not be confused with a leftover capture object.
      +					saved = slice.call( arguments );
      +					dataPriv.set( this, type, saved );
      +
      +					// Trigger the native event and capture its result
      +					// Support: IE <=9 - 11+
      +					// focus() and blur() are asynchronous
      +					notAsync = expectSync( this, type );
      +					this[ type ]();
      +					result = dataPriv.get( this, type );
      +					if ( saved !== result || notAsync ) {
      +						dataPriv.set( this, type, false );
      +					} else {
      +						result = {};
      +					}
      +					if ( saved !== result ) {
      +
      +						// Cancel the outer synthetic event
      +						event.stopImmediatePropagation();
      +						event.preventDefault();
      +						return result.value;
      +					}
      +
      +				// If this is an inner synthetic event for an event with a bubbling surrogate
      +				// (focus or blur), assume that the surrogate already propagated from triggering the
      +				// native event and prevent that from happening again here.
      +				// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the
      +				// bubbling surrogate propagates *after* the non-bubbling base), but that seems
      +				// less bad than duplication.
      +				} else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {
      +					event.stopPropagation();
      +				}
      +
      +			// If this is a native event triggered above, everything is now in order
      +			// Fire an inner synthetic event with the original arguments
      +			} else if ( saved.length ) {
      +
      +				// ...and capture the result
      +				dataPriv.set( this, type, {
      +					value: jQuery.event.trigger(
      +
      +						// Support: IE <=9 - 11+
      +						// Extend with the prototype to reset the above stopImmediatePropagation()
      +						jQuery.extend( saved[ 0 ], jQuery.Event.prototype ),
      +						saved.slice( 1 ),
      +						this
      +					)
      +				} );
      +
      +				// Abort handling of the native event
      +				event.stopImmediatePropagation();
      +			}
      +		}
      +	} );
      +}
      +
      +jQuery.removeEvent = function( elem, type, handle ) {
      +
      +	// This "if" is needed for plain objects
      +	if ( elem.removeEventListener ) {
      +		elem.removeEventListener( type, handle );
      +	}
      +};
      +
      +jQuery.Event = function( src, props ) {
      +
      +	// Allow instantiation without the 'new' keyword
      +	if ( !( this instanceof jQuery.Event ) ) {
      +		return new jQuery.Event( src, props );
      +	}
      +
      +	// Event object
      +	if ( src && src.type ) {
      +		this.originalEvent = src;
      +		this.type = src.type;
      +
      +		// Events bubbling up the document may have been marked as prevented
      +		// by a handler lower down the tree; reflect the correct value.
      +		this.isDefaultPrevented = src.defaultPrevented ||
      +				src.defaultPrevented === undefined &&
      +
      +				// Support: Android <=2.3 only
      +				src.returnValue === false ?
      +			returnTrue :
      +			returnFalse;
      +
      +		// Create target properties
      +		// Support: Safari <=6 - 7 only
      +		// Target should not be a text node (#504, #13143)
      +		this.target = ( src.target && src.target.nodeType === 3 ) ?
      +			src.target.parentNode :
      +			src.target;
      +
      +		this.currentTarget = src.currentTarget;
      +		this.relatedTarget = src.relatedTarget;
      +
      +	// Event type
      +	} else {
      +		this.type = src;
      +	}
      +
      +	// Put explicitly provided properties onto the event object
      +	if ( props ) {
      +		jQuery.extend( this, props );
      +	}
      +
      +	// Create a timestamp if incoming event doesn't have one
      +	this.timeStamp = src && src.timeStamp || Date.now();
      +
      +	// Mark it as fixed
      +	this[ jQuery.expando ] = true;
      +};
      +
      +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
      +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
      +jQuery.Event.prototype = {
      +	constructor: jQuery.Event,
      +	isDefaultPrevented: returnFalse,
      +	isPropagationStopped: returnFalse,
      +	isImmediatePropagationStopped: returnFalse,
      +	isSimulated: false,
      +
      +	preventDefault: function() {
      +		var e = this.originalEvent;
      +
      +		this.isDefaultPrevented = returnTrue;
      +
      +		if ( e && !this.isSimulated ) {
      +			e.preventDefault();
      +		}
      +	},
      +	stopPropagation: function() {
      +		var e = this.originalEvent;
      +
      +		this.isPropagationStopped = returnTrue;
      +
      +		if ( e && !this.isSimulated ) {
      +			e.stopPropagation();
      +		}
      +	},
      +	stopImmediatePropagation: function() {
      +		var e = this.originalEvent;
      +
      +		this.isImmediatePropagationStopped = returnTrue;
      +
      +		if ( e && !this.isSimulated ) {
      +			e.stopImmediatePropagation();
      +		}
      +
      +		this.stopPropagation();
      +	}
      +};
      +
      +// Includes all common event props including KeyEvent and MouseEvent specific props
      +jQuery.each( {
      +	altKey: true,
      +	bubbles: true,
      +	cancelable: true,
      +	changedTouches: true,
      +	ctrlKey: true,
      +	detail: true,
      +	eventPhase: true,
      +	metaKey: true,
      +	pageX: true,
      +	pageY: true,
      +	shiftKey: true,
      +	view: true,
      +	"char": true,
      +	code: true,
      +	charCode: true,
      +	key: true,
      +	keyCode: true,
      +	button: true,
      +	buttons: true,
      +	clientX: true,
      +	clientY: true,
      +	offsetX: true,
      +	offsetY: true,
      +	pointerId: true,
      +	pointerType: true,
      +	screenX: true,
      +	screenY: true,
      +	targetTouches: true,
      +	toElement: true,
      +	touches: true,
      +
      +	which: function( event ) {
      +		var button = event.button;
      +
      +		// Add which for key events
      +		if ( event.which == null && rkeyEvent.test( event.type ) ) {
      +			return event.charCode != null ? event.charCode : event.keyCode;
      +		}
      +
      +		// Add which for click: 1 === left; 2 === middle; 3 === right
      +		if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) {
      +			if ( button & 1 ) {
      +				return 1;
      +			}
      +
      +			if ( button & 2 ) {
      +				return 3;
      +			}
      +
      +			if ( button & 4 ) {
      +				return 2;
      +			}
      +
      +			return 0;
      +		}
      +
      +		return event.which;
      +	}
      +}, jQuery.event.addProp );
      +
      +jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) {
      +	jQuery.event.special[ type ] = {
      +
      +		// Utilize native event if possible so blur/focus sequence is correct
      +		setup: function() {
      +
      +			// Claim the first handler
      +			// dataPriv.set( this, "focus", ... )
      +			// dataPriv.set( this, "blur", ... )
      +			leverageNative( this, type, expectSync );
      +
      +			// Return false to allow normal processing in the caller
      +			return false;
      +		},
      +		trigger: function() {
      +
      +			// Force setup before trigger
      +			leverageNative( this, type );
      +
      +			// Return non-false to allow normal event-path propagation
      +			return true;
      +		},
      +
      +		delegateType: delegateType
      +	};
      +} );
      +
      +// Create mouseenter/leave events using mouseover/out and event-time checks
      +// so that event delegation works in jQuery.
      +// Do the same for pointerenter/pointerleave and pointerover/pointerout
      +//
      +// Support: Safari 7 only
      +// Safari sends mouseenter too often; see:
      +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258
      +// for the description of the bug (it existed in older Chrome versions as well).
      +jQuery.each( {
      +	mouseenter: "mouseover",
      +	mouseleave: "mouseout",
      +	pointerenter: "pointerover",
      +	pointerleave: "pointerout"
      +}, function( orig, fix ) {
      +	jQuery.event.special[ orig ] = {
      +		delegateType: fix,
      +		bindType: fix,
      +
      +		handle: function( event ) {
      +			var ret,
      +				target = this,
      +				related = event.relatedTarget,
      +				handleObj = event.handleObj;
      +
      +			// For mouseenter/leave call the handler if related is outside the target.
      +			// NB: No relatedTarget if the mouse left/entered the browser window
      +			if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {
      +				event.type = handleObj.origType;
      +				ret = handleObj.handler.apply( this, arguments );
      +				event.type = fix;
      +			}
      +			return ret;
      +		}
      +	};
      +} );
      +
      +jQuery.fn.extend( {
      +
      +	on: function( types, selector, data, fn ) {
      +		return on( this, types, selector, data, fn );
      +	},
      +	one: function( types, selector, data, fn ) {
      +		return on( this, types, selector, data, fn, 1 );
      +	},
      +	off: function( types, selector, fn ) {
      +		var handleObj, type;
      +		if ( types && types.preventDefault && types.handleObj ) {
      +
      +			// ( event )  dispatched jQuery.Event
      +			handleObj = types.handleObj;
      +			jQuery( types.delegateTarget ).off(
      +				handleObj.namespace ?
      +					handleObj.origType + "." + handleObj.namespace :
      +					handleObj.origType,
      +				handleObj.selector,
      +				handleObj.handler
      +			);
      +			return this;
      +		}
      +		if ( typeof types === "object" ) {
      +
      +			// ( types-object [, selector] )
      +			for ( type in types ) {
      +				this.off( type, selector, types[ type ] );
      +			}
      +			return this;
      +		}
      +		if ( selector === false || typeof selector === "function" ) {
      +
      +			// ( types [, fn] )
      +			fn = selector;
      +			selector = undefined;
      +		}
      +		if ( fn === false ) {
      +			fn = returnFalse;
      +		}
      +		return this.each( function() {
      +			jQuery.event.remove( this, types, fn, selector );
      +		} );
      +	}
      +} );
      +
      +
      +var
      +
      +	/* eslint-disable max-len */
      +
      +	// See https://github.com/eslint/eslint/issues/3229
      +	rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,
      +
      +	/* eslint-enable */
      +
      +	// Support: IE <=10 - 11, Edge 12 - 13 only
      +	// In IE/Edge using regex groups here causes severe slowdowns.
      +	// See https://connect.microsoft.com/IE/feedback/details/1736512/
      +	rnoInnerhtml = /<script|<style|<link/i,
      +
      +	// checked="checked" or checked
      +	rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
      +	rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;
      +
      +// Prefer a tbody over its parent table for containing new rows
      +function manipulationTarget( elem, content ) {
      +	if ( nodeName( elem, "table" ) &&
      +		nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) {
      +
      +		return jQuery( elem ).children( "tbody" )[ 0 ] || elem;
      +	}
      +
      +	return elem;
      +}
      +
      +// Replace/restore the type attribute of script elements for safe DOM manipulation
      +function disableScript( elem ) {
      +	elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type;
      +	return elem;
      +}
      +function restoreScript( elem ) {
      +	if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) {
      +		elem.type = elem.type.slice( 5 );
      +	} else {
      +		elem.removeAttribute( "type" );
      +	}
      +
      +	return elem;
      +}
      +
      +function cloneCopyEvent( src, dest ) {
      +	var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;
      +
      +	if ( dest.nodeType !== 1 ) {
      +		return;
      +	}
      +
      +	// 1. Copy private data: events, handlers, etc.
      +	if ( dataPriv.hasData( src ) ) {
      +		pdataOld = dataPriv.access( src );
      +		pdataCur = dataPriv.set( dest, pdataOld );
      +		events = pdataOld.events;
      +
      +		if ( events ) {
      +			delete pdataCur.handle;
      +			pdataCur.events = {};
      +
      +			for ( type in events ) {
      +				for ( i = 0, l = events[ type ].length; i < l; i++ ) {
      +					jQuery.event.add( dest, type, events[ type ][ i ] );
      +				}
      +			}
      +		}
      +	}
      +
      +	// 2. Copy user data
      +	if ( dataUser.hasData( src ) ) {
      +		udataOld = dataUser.access( src );
      +		udataCur = jQuery.extend( {}, udataOld );
      +
      +		dataUser.set( dest, udataCur );
      +	}
      +}
      +
      +// Fix IE bugs, see support tests
      +function fixInput( src, dest ) {
      +	var nodeName = dest.nodeName.toLowerCase();
      +
      +	// Fails to persist the checked state of a cloned checkbox or radio button.
      +	if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
      +		dest.checked = src.checked;
      +
      +	// Fails to return the selected option to the default selected state when cloning options
      +	} else if ( nodeName === "input" || nodeName === "textarea" ) {
      +		dest.defaultValue = src.defaultValue;
      +	}
      +}
      +
      +function domManip( collection, args, callback, ignored ) {
      +
      +	// Flatten any nested arrays
      +	args = concat.apply( [], args );
      +
      +	var fragment, first, scripts, hasScripts, node, doc,
      +		i = 0,
      +		l = collection.length,
      +		iNoClone = l - 1,
      +		value = args[ 0 ],
      +		valueIsFunction = isFunction( value );
      +
      +	// We can't cloneNode fragments that contain checked, in WebKit
      +	if ( valueIsFunction ||
      +			( l > 1 && typeof value === "string" &&
      +				!support.checkClone && rchecked.test( value ) ) ) {
      +		return collection.each( function( index ) {
      +			var self = collection.eq( index );
      +			if ( valueIsFunction ) {
      +				args[ 0 ] = value.call( this, index, self.html() );
      +			}
      +			domManip( self, args, callback, ignored );
      +		} );
      +	}
      +
      +	if ( l ) {
      +		fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );
      +		first = fragment.firstChild;
      +
      +		if ( fragment.childNodes.length === 1 ) {
      +			fragment = first;
      +		}
      +
      +		// Require either new content or an interest in ignored elements to invoke the callback
      +		if ( first || ignored ) {
      +			scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
      +			hasScripts = scripts.length;
      +
      +			// Use the original fragment for the last item
      +			// instead of the first because it can end up
      +			// being emptied incorrectly in certain situations (#8070).
      +			for ( ; i < l; i++ ) {
      +				node = fragment;
      +
      +				if ( i !== iNoClone ) {
      +					node = jQuery.clone( node, true, true );
      +
      +					// Keep references to cloned scripts for later restoration
      +					if ( hasScripts ) {
      +
      +						// Support: Android <=4.0 only, PhantomJS 1 only
      +						// push.apply(_, arraylike) throws on ancient WebKit
      +						jQuery.merge( scripts, getAll( node, "script" ) );
      +					}
      +				}
      +
      +				callback.call( collection[ i ], node, i );
      +			}
      +
      +			if ( hasScripts ) {
      +				doc = scripts[ scripts.length - 1 ].ownerDocument;
      +
      +				// Reenable scripts
      +				jQuery.map( scripts, restoreScript );
      +
      +				// Evaluate executable scripts on first document insertion
      +				for ( i = 0; i < hasScripts; i++ ) {
      +					node = scripts[ i ];
      +					if ( rscriptType.test( node.type || "" ) &&
      +						!dataPriv.access( node, "globalEval" ) &&
      +						jQuery.contains( doc, node ) ) {
      +
      +						if ( node.src && ( node.type || "" ).toLowerCase()  !== "module" ) {
      +
      +							// Optional AJAX dependency, but won't run scripts if not present
      +							if ( jQuery._evalUrl && !node.noModule ) {
      +								jQuery._evalUrl( node.src, {
      +									nonce: node.nonce || node.getAttribute( "nonce" )
      +								} );
      +							}
      +						} else {
      +							DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc );
      +						}
      +					}
      +				}
      +			}
      +		}
      +	}
      +
      +	return collection;
      +}
      +
      +function remove( elem, selector, keepData ) {
      +	var node,
      +		nodes = selector ? jQuery.filter( selector, elem ) : elem,
      +		i = 0;
      +
      +	for ( ; ( node = nodes[ i ] ) != null; i++ ) {
      +		if ( !keepData && node.nodeType === 1 ) {
      +			jQuery.cleanData( getAll( node ) );
      +		}
      +
      +		if ( node.parentNode ) {
      +			if ( keepData && isAttached( node ) ) {
      +				setGlobalEval( getAll( node, "script" ) );
      +			}
      +			node.parentNode.removeChild( node );
      +		}
      +	}
      +
      +	return elem;
      +}
      +
      +jQuery.extend( {
      +	htmlPrefilter: function( html ) {
      +		return html.replace( rxhtmlTag, "<$1></$2>" );
      +	},
      +
      +	clone: function( elem, dataAndEvents, deepDataAndEvents ) {
      +		var i, l, srcElements, destElements,
      +			clone = elem.cloneNode( true ),
      +			inPage = isAttached( elem );
      +
      +		// Fix IE cloning issues
      +		if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&
      +				!jQuery.isXMLDoc( elem ) ) {
      +
      +			// We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2
      +			destElements = getAll( clone );
      +			srcElements = getAll( elem );
      +
      +			for ( i = 0, l = srcElements.length; i < l; i++ ) {
      +				fixInput( srcElements[ i ], destElements[ i ] );
      +			}
      +		}
      +
      +		// Copy the events from the original to the clone
      +		if ( dataAndEvents ) {
      +			if ( deepDataAndEvents ) {
      +				srcElements = srcElements || getAll( elem );
      +				destElements = destElements || getAll( clone );
      +
      +				for ( i = 0, l = srcElements.length; i < l; i++ ) {
      +					cloneCopyEvent( srcElements[ i ], destElements[ i ] );
      +				}
      +			} else {
      +				cloneCopyEvent( elem, clone );
      +			}
      +		}
      +
      +		// Preserve script evaluation history
      +		destElements = getAll( clone, "script" );
      +		if ( destElements.length > 0 ) {
      +			setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
      +		}
      +
      +		// Return the cloned set
      +		return clone;
      +	},
      +
      +	cleanData: function( elems ) {
      +		var data, elem, type,
      +			special = jQuery.event.special,
      +			i = 0;
      +
      +		for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {
      +			if ( acceptData( elem ) ) {
      +				if ( ( data = elem[ dataPriv.expando ] ) ) {
      +					if ( data.events ) {
      +						for ( type in data.events ) {
      +							if ( special[ type ] ) {
      +								jQuery.event.remove( elem, type );
      +
      +							// This is a shortcut to avoid jQuery.event.remove's overhead
      +							} else {
      +								jQuery.removeEvent( elem, type, data.handle );
      +							}
      +						}
      +					}
      +
      +					// Support: Chrome <=35 - 45+
      +					// Assign undefined instead of using delete, see Data#remove
      +					elem[ dataPriv.expando ] = undefined;
      +				}
      +				if ( elem[ dataUser.expando ] ) {
      +
      +					// Support: Chrome <=35 - 45+
      +					// Assign undefined instead of using delete, see Data#remove
      +					elem[ dataUser.expando ] = undefined;
      +				}
      +			}
      +		}
      +	}
      +} );
      +
      +jQuery.fn.extend( {
      +	detach: function( selector ) {
      +		return remove( this, selector, true );
      +	},
      +
      +	remove: function( selector ) {
      +		return remove( this, selector );
      +	},
      +
      +	text: function( value ) {
      +		return access( this, function( value ) {
      +			return value === undefined ?
      +				jQuery.text( this ) :
      +				this.empty().each( function() {
      +					if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
      +						this.textContent = value;
      +					}
      +				} );
      +		}, null, value, arguments.length );
      +	},
      +
      +	append: function() {
      +		return domManip( this, arguments, function( elem ) {
      +			if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
      +				var target = manipulationTarget( this, elem );
      +				target.appendChild( elem );
      +			}
      +		} );
      +	},
      +
      +	prepend: function() {
      +		return domManip( this, arguments, function( elem ) {
      +			if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
      +				var target = manipulationTarget( this, elem );
      +				target.insertBefore( elem, target.firstChild );
      +			}
      +		} );
      +	},
      +
      +	before: function() {
      +		return domManip( this, arguments, function( elem ) {
      +			if ( this.parentNode ) {
      +				this.parentNode.insertBefore( elem, this );
      +			}
      +		} );
      +	},
      +
      +	after: function() {
      +		return domManip( this, arguments, function( elem ) {
      +			if ( this.parentNode ) {
      +				this.parentNode.insertBefore( elem, this.nextSibling );
      +			}
      +		} );
      +	},
      +
      +	empty: function() {
      +		var elem,
      +			i = 0;
      +
      +		for ( ; ( elem = this[ i ] ) != null; i++ ) {
      +			if ( elem.nodeType === 1 ) {
      +
      +				// Prevent memory leaks
      +				jQuery.cleanData( getAll( elem, false ) );
      +
      +				// Remove any remaining nodes
      +				elem.textContent = "";
      +			}
      +		}
      +
      +		return this;
      +	},
      +
      +	clone: function( dataAndEvents, deepDataAndEvents ) {
      +		dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
      +		deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
      +
      +		return this.map( function() {
      +			return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
      +		} );
      +	},
      +
      +	html: function( value ) {
      +		return access( this, function( value ) {
      +			var elem = this[ 0 ] || {},
      +				i = 0,
      +				l = this.length;
      +
      +			if ( value === undefined && elem.nodeType === 1 ) {
      +				return elem.innerHTML;
      +			}
      +
      +			// See if we can take a shortcut and just use innerHTML
      +			if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
      +				!wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) {
      +
      +				value = jQuery.htmlPrefilter( value );
      +
      +				try {
      +					for ( ; i < l; i++ ) {
      +						elem = this[ i ] || {};
      +
      +						// Remove element nodes and prevent memory leaks
      +						if ( elem.nodeType === 1 ) {
      +							jQuery.cleanData( getAll( elem, false ) );
      +							elem.innerHTML = value;
      +						}
      +					}
      +
      +					elem = 0;
      +
      +				// If using innerHTML throws an exception, use the fallback method
      +				} catch ( e ) {}
      +			}
      +
      +			if ( elem ) {
      +				this.empty().append( value );
      +			}
      +		}, null, value, arguments.length );
      +	},
      +
      +	replaceWith: function() {
      +		var ignored = [];
      +
      +		// Make the changes, replacing each non-ignored context element with the new content
      +		return domManip( this, arguments, function( elem ) {
      +			var parent = this.parentNode;
      +
      +			if ( jQuery.inArray( this, ignored ) < 0 ) {
      +				jQuery.cleanData( getAll( this ) );
      +				if ( parent ) {
      +					parent.replaceChild( elem, this );
      +				}
      +			}
      +
      +		// Force callback invocation
      +		}, ignored );
      +	}
      +} );
      +
      +jQuery.each( {
      +	appendTo: "append",
      +	prependTo: "prepend",
      +	insertBefore: "before",
      +	insertAfter: "after",
      +	replaceAll: "replaceWith"
      +}, function( name, original ) {
      +	jQuery.fn[ name ] = function( selector ) {
      +		var elems,
      +			ret = [],
      +			insert = jQuery( selector ),
      +			last = insert.length - 1,
      +			i = 0;
      +
      +		for ( ; i <= last; i++ ) {
      +			elems = i === last ? this : this.clone( true );
      +			jQuery( insert[ i ] )[ original ]( elems );
      +
      +			// Support: Android <=4.0 only, PhantomJS 1 only
      +			// .get() because push.apply(_, arraylike) throws on ancient WebKit
      +			push.apply( ret, elems.get() );
      +		}
      +
      +		return this.pushStack( ret );
      +	};
      +} );
      +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
      +
      +var getStyles = function( elem ) {
      +
      +		// Support: IE <=11 only, Firefox <=30 (#15098, #14150)
      +		// IE throws on elements created in popups
      +		// FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
      +		var view = elem.ownerDocument.defaultView;
      +
      +		if ( !view || !view.opener ) {
      +			view = window;
      +		}
      +
      +		return view.getComputedStyle( elem );
      +	};
      +
      +var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" );
      +
      +
      +
      +( function() {
      +
      +	// Executing both pixelPosition & boxSizingReliable tests require only one layout
      +	// so they're executed at the same time to save the second computation.
      +	function computeStyleTests() {
      +
      +		// This is a singleton, we need to execute it only once
      +		if ( !div ) {
      +			return;
      +		}
      +
      +		container.style.cssText = "position:absolute;left:-11111px;width:60px;" +
      +			"margin-top:1px;padding:0;border:0";
      +		div.style.cssText =
      +			"position:relative;display:block;box-sizing:border-box;overflow:scroll;" +
      +			"margin:auto;border:1px;padding:1px;" +
      +			"width:60%;top:1%";
      +		documentElement.appendChild( container ).appendChild( div );
      +
      +		var divStyle = window.getComputedStyle( div );
      +		pixelPositionVal = divStyle.top !== "1%";
      +
      +		// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44
      +		reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;
      +
      +		// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3
      +		// Some styles come back with percentage values, even though they shouldn't
      +		div.style.right = "60%";
      +		pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;
      +
      +		// Support: IE 9 - 11 only
      +		// Detect misreporting of content dimensions for box-sizing:border-box elements
      +		boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;
      +
      +		// Support: IE 9 only
      +		// Detect overflow:scroll screwiness (gh-3699)
      +		// Support: Chrome <=64
      +		// Don't get tricked when zoom affects offsetWidth (gh-4029)
      +		div.style.position = "absolute";
      +		scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;
      +
      +		documentElement.removeChild( container );
      +
      +		// Nullify the div so it wouldn't be stored in the memory and
      +		// it will also be a sign that checks already performed
      +		div = null;
      +	}
      +
      +	function roundPixelMeasures( measure ) {
      +		return Math.round( parseFloat( measure ) );
      +	}
      +
      +	var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,
      +		reliableMarginLeftVal,
      +		container = document.createElement( "div" ),
      +		div = document.createElement( "div" );
      +
      +	// Finish early in limited (non-browser) environments
      +	if ( !div.style ) {
      +		return;
      +	}
      +
      +	// Support: IE <=9 - 11 only
      +	// Style of cloned element affects source element cloned (#8908)
      +	div.style.backgroundClip = "content-box";
      +	div.cloneNode( true ).style.backgroundClip = "";
      +	support.clearCloneStyle = div.style.backgroundClip === "content-box";
      +
      +	jQuery.extend( support, {
      +		boxSizingReliable: function() {
      +			computeStyleTests();
      +			return boxSizingReliableVal;
      +		},
      +		pixelBoxStyles: function() {
      +			computeStyleTests();
      +			return pixelBoxStylesVal;
      +		},
      +		pixelPosition: function() {
      +			computeStyleTests();
      +			return pixelPositionVal;
      +		},
      +		reliableMarginLeft: function() {
      +			computeStyleTests();
      +			return reliableMarginLeftVal;
      +		},
      +		scrollboxSize: function() {
      +			computeStyleTests();
      +			return scrollboxSizeVal;
      +		}
      +	} );
      +} )();
      +
      +
      +function curCSS( elem, name, computed ) {
      +	var width, minWidth, maxWidth, ret,
      +
      +		// Support: Firefox 51+
      +		// Retrieving style before computed somehow
      +		// fixes an issue with getting wrong values
      +		// on detached elements
      +		style = elem.style;
      +
      +	computed = computed || getStyles( elem );
      +
      +	// getPropertyValue is needed for:
      +	//   .css('filter') (IE 9 only, #12537)
      +	//   .css('--customProperty) (#3144)
      +	if ( computed ) {
      +		ret = computed.getPropertyValue( name ) || computed[ name ];
      +
      +		if ( ret === "" && !isAttached( elem ) ) {
      +			ret = jQuery.style( elem, name );
      +		}
      +
      +		// A tribute to the "awesome hack by Dean Edwards"
      +		// Android Browser returns percentage for some values,
      +		// but width seems to be reliably pixels.
      +		// This is against the CSSOM draft spec:
      +		// https://drafts.csswg.org/cssom/#resolved-values
      +		if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {
      +
      +			// Remember the original values
      +			width = style.width;
      +			minWidth = style.minWidth;
      +			maxWidth = style.maxWidth;
      +
      +			// Put in the new values to get a computed value out
      +			style.minWidth = style.maxWidth = style.width = ret;
      +			ret = computed.width;
      +
      +			// Revert the changed values
      +			style.width = width;
      +			style.minWidth = minWidth;
      +			style.maxWidth = maxWidth;
      +		}
      +	}
      +
      +	return ret !== undefined ?
      +
      +		// Support: IE <=9 - 11 only
      +		// IE returns zIndex value as an integer.
      +		ret + "" :
      +		ret;
      +}
      +
      +
      +function addGetHookIf( conditionFn, hookFn ) {
      +
      +	// Define the hook, we'll check on the first run if it's really needed.
      +	return {
      +		get: function() {
      +			if ( conditionFn() ) {
      +
      +				// Hook not needed (or it's not possible to use it due
      +				// to missing dependency), remove it.
      +				delete this.get;
      +				return;
      +			}
      +
      +			// Hook needed; redefine it so that the support test is not executed again.
      +			return ( this.get = hookFn ).apply( this, arguments );
      +		}
      +	};
      +}
      +
      +
      +var cssPrefixes = [ "Webkit", "Moz", "ms" ],
      +	emptyStyle = document.createElement( "div" ).style,
      +	vendorProps = {};
      +
      +// Return a vendor-prefixed property or undefined
      +function vendorPropName( name ) {
      +
      +	// Check for vendor prefixed names
      +	var capName = name[ 0 ].toUpperCase() + name.slice( 1 ),
      +		i = cssPrefixes.length;
      +
      +	while ( i-- ) {
      +		name = cssPrefixes[ i ] + capName;
      +		if ( name in emptyStyle ) {
      +			return name;
      +		}
      +	}
      +}
      +
      +// Return a potentially-mapped jQuery.cssProps or vendor prefixed property
      +function finalPropName( name ) {
      +	var final = jQuery.cssProps[ name ] || vendorProps[ name ];
      +
      +	if ( final ) {
      +		return final;
      +	}
      +	if ( name in emptyStyle ) {
      +		return name;
      +	}
      +	return vendorProps[ name ] = vendorPropName( name ) || name;
      +}
      +
      +
      +var
      +
      +	// Swappable if display is none or starts with table
      +	// except "table", "table-cell", or "table-caption"
      +	// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
      +	rdisplayswap = /^(none|table(?!-c[ea]).+)/,
      +	rcustomProp = /^--/,
      +	cssShow = { position: "absolute", visibility: "hidden", display: "block" },
      +	cssNormalTransform = {
      +		letterSpacing: "0",
      +		fontWeight: "400"
      +	};
      +
      +function setPositiveNumber( elem, value, subtract ) {
      +
      +	// Any relative (+/-) values have already been
      +	// normalized at this point
      +	var matches = rcssNum.exec( value );
      +	return matches ?
      +
      +		// Guard against undefined "subtract", e.g., when used as in cssHooks
      +		Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) :
      +		value;
      +}
      +
      +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {
      +	var i = dimension === "width" ? 1 : 0,
      +		extra = 0,
      +		delta = 0;
      +
      +	// Adjustment may not be necessary
      +	if ( box === ( isBorderBox ? "border" : "content" ) ) {
      +		return 0;
      +	}
      +
      +	for ( ; i < 4; i += 2 ) {
      +
      +		// Both box models exclude margin
      +		if ( box === "margin" ) {
      +			delta += jQuery.css( elem, box + cssExpand[ i ], true, styles );
      +		}
      +
      +		// If we get here with a content-box, we're seeking "padding" or "border" or "margin"
      +		if ( !isBorderBox ) {
      +
      +			// Add padding
      +			delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
      +
      +			// For "border" or "margin", add border
      +			if ( box !== "padding" ) {
      +				delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
      +
      +			// But still keep track of it otherwise
      +			} else {
      +				extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
      +			}
      +
      +		// If we get here with a border-box (content + padding + border), we're seeking "content" or
      +		// "padding" or "margin"
      +		} else {
      +
      +			// For "content", subtract padding
      +			if ( box === "content" ) {
      +				delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
      +			}
      +
      +			// For "content" or "padding", subtract border
      +			if ( box !== "margin" ) {
      +				delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
      +			}
      +		}
      +	}
      +
      +	// Account for positive content-box scroll gutter when requested by providing computedVal
      +	if ( !isBorderBox && computedVal >= 0 ) {
      +
      +		// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border
      +		// Assuming integer scroll gutter, subtract the rest and round down
      +		delta += Math.max( 0, Math.ceil(
      +			elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -
      +			computedVal -
      +			delta -
      +			extra -
      +			0.5
      +
      +		// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter
      +		// Use an explicit zero to avoid NaN (gh-3964)
      +		) ) || 0;
      +	}
      +
      +	return delta;
      +}
      +
      +function getWidthOrHeight( elem, dimension, extra ) {
      +
      +	// Start with computed style
      +	var styles = getStyles( elem ),
      +
      +		// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).
      +		// Fake content-box until we know it's needed to know the true value.
      +		boxSizingNeeded = !support.boxSizingReliable() || extra,
      +		isBorderBox = boxSizingNeeded &&
      +			jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
      +		valueIsBorderBox = isBorderBox,
      +
      +		val = curCSS( elem, dimension, styles ),
      +		offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );
      +
      +	// Support: Firefox <=54
      +	// Return a confounding non-pixel value or feign ignorance, as appropriate.
      +	if ( rnumnonpx.test( val ) ) {
      +		if ( !extra ) {
      +			return val;
      +		}
      +		val = "auto";
      +	}
      +
      +
      +	// Fall back to offsetWidth/offsetHeight when value is "auto"
      +	// This happens for inline elements with no explicit setting (gh-3571)
      +	// Support: Android <=4.1 - 4.3 only
      +	// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)
      +	// Support: IE 9-11 only
      +	// Also use offsetWidth/offsetHeight for when box sizing is unreliable
      +	// We use getClientRects() to check for hidden/disconnected.
      +	// In those cases, the computed value can be trusted to be border-box
      +	if ( ( !support.boxSizingReliable() && isBorderBox ||
      +		val === "auto" ||
      +		!parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) &&
      +		elem.getClientRects().length ) {
      +
      +		isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box";
      +
      +		// Where available, offsetWidth/offsetHeight approximate border box dimensions.
      +		// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the
      +		// retrieved value as a content box dimension.
      +		valueIsBorderBox = offsetProp in elem;
      +		if ( valueIsBorderBox ) {
      +			val = elem[ offsetProp ];
      +		}
      +	}
      +
      +	// Normalize "" and auto
      +	val = parseFloat( val ) || 0;
      +
      +	// Adjust for the element's box model
      +	return ( val +
      +		boxModelAdjustment(
      +			elem,
      +			dimension,
      +			extra || ( isBorderBox ? "border" : "content" ),
      +			valueIsBorderBox,
      +			styles,
      +
      +			// Provide the current computed size to request scroll gutter calculation (gh-3589)
      +			val
      +		)
      +	) + "px";
      +}
      +
      +jQuery.extend( {
      +
      +	// Add in style property hooks for overriding the default
      +	// behavior of getting and setting a style property
      +	cssHooks: {
      +		opacity: {
      +			get: function( elem, computed ) {
      +				if ( computed ) {
      +
      +					// We should always get a number back from opacity
      +					var ret = curCSS( elem, "opacity" );
      +					return ret === "" ? "1" : ret;
      +				}
      +			}
      +		}
      +	},
      +
      +	// Don't automatically add "px" to these possibly-unitless properties
      +	cssNumber: {
      +		"animationIterationCount": true,
      +		"columnCount": true,
      +		"fillOpacity": true,
      +		"flexGrow": true,
      +		"flexShrink": true,
      +		"fontWeight": true,
      +		"gridArea": true,
      +		"gridColumn": true,
      +		"gridColumnEnd": true,
      +		"gridColumnStart": true,
      +		"gridRow": true,
      +		"gridRowEnd": true,
      +		"gridRowStart": true,
      +		"lineHeight": true,
      +		"opacity": true,
      +		"order": true,
      +		"orphans": true,
      +		"widows": true,
      +		"zIndex": true,
      +		"zoom": true
      +	},
      +
      +	// Add in properties whose names you wish to fix before
      +	// setting or getting the value
      +	cssProps: {},
      +
      +	// Get and set the style property on a DOM Node
      +	style: function( elem, name, value, extra ) {
      +
      +		// Don't set styles on text and comment nodes
      +		if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
      +			return;
      +		}
      +
      +		// Make sure that we're working with the right name
      +		var ret, type, hooks,
      +			origName = camelCase( name ),
      +			isCustomProp = rcustomProp.test( name ),
      +			style = elem.style;
      +
      +		// Make sure that we're working with the right name. We don't
      +		// want to query the value if it is a CSS custom property
      +		// since they are user-defined.
      +		if ( !isCustomProp ) {
      +			name = finalPropName( origName );
      +		}
      +
      +		// Gets hook for the prefixed version, then unprefixed version
      +		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
      +
      +		// Check if we're setting a value
      +		if ( value !== undefined ) {
      +			type = typeof value;
      +
      +			// Convert "+=" or "-=" to relative numbers (#7345)
      +			if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {
      +				value = adjustCSS( elem, name, ret );
      +
      +				// Fixes bug #9237
      +				type = "number";
      +			}
      +
      +			// Make sure that null and NaN values aren't set (#7116)
      +			if ( value == null || value !== value ) {
      +				return;
      +			}
      +
      +			// If a number was passed in, add the unit (except for certain CSS properties)
      +			// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append
      +			// "px" to a few hardcoded values.
      +			if ( type === "number" && !isCustomProp ) {
      +				value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" );
      +			}
      +
      +			// background-* props affect original clone's values
      +			if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) {
      +				style[ name ] = "inherit";
      +			}
      +
      +			// If a hook was provided, use that value, otherwise just set the specified value
      +			if ( !hooks || !( "set" in hooks ) ||
      +				( value = hooks.set( elem, value, extra ) ) !== undefined ) {
      +
      +				if ( isCustomProp ) {
      +					style.setProperty( name, value );
      +				} else {
      +					style[ name ] = value;
      +				}
      +			}
      +
      +		} else {
      +
      +			// If a hook was provided get the non-computed value from there
      +			if ( hooks && "get" in hooks &&
      +				( ret = hooks.get( elem, false, extra ) ) !== undefined ) {
      +
      +				return ret;
      +			}
      +
      +			// Otherwise just get the value from the style object
      +			return style[ name ];
      +		}
      +	},
      +
      +	css: function( elem, name, extra, styles ) {
      +		var val, num, hooks,
      +			origName = camelCase( name ),
      +			isCustomProp = rcustomProp.test( name );
      +
      +		// Make sure that we're working with the right name. We don't
      +		// want to modify the value if it is a CSS custom property
      +		// since they are user-defined.
      +		if ( !isCustomProp ) {
      +			name = finalPropName( origName );
      +		}
      +
      +		// Try prefixed name followed by the unprefixed name
      +		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
      +
      +		// If a hook was provided get the computed value from there
      +		if ( hooks && "get" in hooks ) {
      +			val = hooks.get( elem, true, extra );
      +		}
      +
      +		// Otherwise, if a way to get the computed value exists, use that
      +		if ( val === undefined ) {
      +			val = curCSS( elem, name, styles );
      +		}
      +
      +		// Convert "normal" to computed value
      +		if ( val === "normal" && name in cssNormalTransform ) {
      +			val = cssNormalTransform[ name ];
      +		}
      +
      +		// Make numeric if forced or a qualifier was provided and val looks numeric
      +		if ( extra === "" || extra ) {
      +			num = parseFloat( val );
      +			return extra === true || isFinite( num ) ? num || 0 : val;
      +		}
      +
      +		return val;
      +	}
      +} );
      +
      +jQuery.each( [ "height", "width" ], function( i, dimension ) {
      +	jQuery.cssHooks[ dimension ] = {
      +		get: function( elem, computed, extra ) {
      +			if ( computed ) {
      +
      +				// Certain elements can have dimension info if we invisibly show them
      +				// but it must have a current display style that would benefit
      +				return rdisplayswap.test( jQuery.css( elem, "display" ) ) &&
      +
      +					// Support: Safari 8+
      +					// Table columns in Safari have non-zero offsetWidth & zero
      +					// getBoundingClientRect().width unless display is changed.
      +					// Support: IE <=11 only
      +					// Running getBoundingClientRect on a disconnected node
      +					// in IE throws an error.
      +					( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?
      +						swap( elem, cssShow, function() {
      +							return getWidthOrHeight( elem, dimension, extra );
      +						} ) :
      +						getWidthOrHeight( elem, dimension, extra );
      +			}
      +		},
      +
      +		set: function( elem, value, extra ) {
      +			var matches,
      +				styles = getStyles( elem ),
      +
      +				// Only read styles.position if the test has a chance to fail
      +				// to avoid forcing a reflow.
      +				scrollboxSizeBuggy = !support.scrollboxSize() &&
      +					styles.position === "absolute",
      +
      +				// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)
      +				boxSizingNeeded = scrollboxSizeBuggy || extra,
      +				isBorderBox = boxSizingNeeded &&
      +					jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
      +				subtract = extra ?
      +					boxModelAdjustment(
      +						elem,
      +						dimension,
      +						extra,
      +						isBorderBox,
      +						styles
      +					) :
      +					0;
      +
      +			// Account for unreliable border-box dimensions by comparing offset* to computed and
      +			// faking a content-box to get border and padding (gh-3699)
      +			if ( isBorderBox && scrollboxSizeBuggy ) {
      +				subtract -= Math.ceil(
      +					elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -
      +					parseFloat( styles[ dimension ] ) -
      +					boxModelAdjustment( elem, dimension, "border", false, styles ) -
      +					0.5
      +				);
      +			}
      +
      +			// Convert to pixels if value adjustment is needed
      +			if ( subtract && ( matches = rcssNum.exec( value ) ) &&
      +				( matches[ 3 ] || "px" ) !== "px" ) {
      +
      +				elem.style[ dimension ] = value;
      +				value = jQuery.css( elem, dimension );
      +			}
      +
      +			return setPositiveNumber( elem, value, subtract );
      +		}
      +	};
      +} );
      +
      +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,
      +	function( elem, computed ) {
      +		if ( computed ) {
      +			return ( parseFloat( curCSS( elem, "marginLeft" ) ) ||
      +				elem.getBoundingClientRect().left -
      +					swap( elem, { marginLeft: 0 }, function() {
      +						return elem.getBoundingClientRect().left;
      +					} )
      +				) + "px";
      +		}
      +	}
      +);
      +
      +// These hooks are used by animate to expand properties
      +jQuery.each( {
      +	margin: "",
      +	padding: "",
      +	border: "Width"
      +}, function( prefix, suffix ) {
      +	jQuery.cssHooks[ prefix + suffix ] = {
      +		expand: function( value ) {
      +			var i = 0,
      +				expanded = {},
      +
      +				// Assumes a single number if not a string
      +				parts = typeof value === "string" ? value.split( " " ) : [ value ];
      +
      +			for ( ; i < 4; i++ ) {
      +				expanded[ prefix + cssExpand[ i ] + suffix ] =
      +					parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
      +			}
      +
      +			return expanded;
      +		}
      +	};
      +
      +	if ( prefix !== "margin" ) {
      +		jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
      +	}
      +} );
      +
      +jQuery.fn.extend( {
      +	css: function( name, value ) {
      +		return access( this, function( elem, name, value ) {
      +			var styles, len,
      +				map = {},
      +				i = 0;
      +
      +			if ( Array.isArray( name ) ) {
      +				styles = getStyles( elem );
      +				len = name.length;
      +
      +				for ( ; i < len; i++ ) {
      +					map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );
      +				}
      +
      +				return map;
      +			}
      +
      +			return value !== undefined ?
      +				jQuery.style( elem, name, value ) :
      +				jQuery.css( elem, name );
      +		}, name, value, arguments.length > 1 );
      +	}
      +} );
      +
      +
      +function Tween( elem, options, prop, end, easing ) {
      +	return new Tween.prototype.init( elem, options, prop, end, easing );
      +}
      +jQuery.Tween = Tween;
      +
      +Tween.prototype = {
      +	constructor: Tween,
      +	init: function( elem, options, prop, end, easing, unit ) {
      +		this.elem = elem;
      +		this.prop = prop;
      +		this.easing = easing || jQuery.easing._default;
      +		this.options = options;
      +		this.start = this.now = this.cur();
      +		this.end = end;
      +		this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
      +	},
      +	cur: function() {
      +		var hooks = Tween.propHooks[ this.prop ];
      +
      +		return hooks && hooks.get ?
      +			hooks.get( this ) :
      +			Tween.propHooks._default.get( this );
      +	},
      +	run: function( percent ) {
      +		var eased,
      +			hooks = Tween.propHooks[ this.prop ];
      +
      +		if ( this.options.duration ) {
      +			this.pos = eased = jQuery.easing[ this.easing ](
      +				percent, this.options.duration * percent, 0, 1, this.options.duration
      +			);
      +		} else {
      +			this.pos = eased = percent;
      +		}
      +		this.now = ( this.end - this.start ) * eased + this.start;
      +
      +		if ( this.options.step ) {
      +			this.options.step.call( this.elem, this.now, this );
      +		}
      +
      +		if ( hooks && hooks.set ) {
      +			hooks.set( this );
      +		} else {
      +			Tween.propHooks._default.set( this );
      +		}
      +		return this;
      +	}
      +};
      +
      +Tween.prototype.init.prototype = Tween.prototype;
      +
      +Tween.propHooks = {
      +	_default: {
      +		get: function( tween ) {
      +			var result;
      +
      +			// Use a property on the element directly when it is not a DOM element,
      +			// or when there is no matching style property that exists.
      +			if ( tween.elem.nodeType !== 1 ||
      +				tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {
      +				return tween.elem[ tween.prop ];
      +			}
      +
      +			// Passing an empty string as a 3rd parameter to .css will automatically
      +			// attempt a parseFloat and fallback to a string if the parse fails.
      +			// Simple values such as "10px" are parsed to Float;
      +			// complex values such as "rotate(1rad)" are returned as-is.
      +			result = jQuery.css( tween.elem, tween.prop, "" );
      +
      +			// Empty strings, null, undefined and "auto" are converted to 0.
      +			return !result || result === "auto" ? 0 : result;
      +		},
      +		set: function( tween ) {
      +
      +			// Use step hook for back compat.
      +			// Use cssHook if its there.
      +			// Use .style if available and use plain properties where available.
      +			if ( jQuery.fx.step[ tween.prop ] ) {
      +				jQuery.fx.step[ tween.prop ]( tween );
      +			} else if ( tween.elem.nodeType === 1 && (
      +					jQuery.cssHooks[ tween.prop ] ||
      +					tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {
      +				jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
      +			} else {
      +				tween.elem[ tween.prop ] = tween.now;
      +			}
      +		}
      +	}
      +};
      +
      +// Support: IE <=9 only
      +// Panic based approach to setting things on disconnected nodes
      +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
      +	set: function( tween ) {
      +		if ( tween.elem.nodeType && tween.elem.parentNode ) {
      +			tween.elem[ tween.prop ] = tween.now;
      +		}
      +	}
      +};
      +
      +jQuery.easing = {
      +	linear: function( p ) {
      +		return p;
      +	},
      +	swing: function( p ) {
      +		return 0.5 - Math.cos( p * Math.PI ) / 2;
      +	},
      +	_default: "swing"
      +};
      +
      +jQuery.fx = Tween.prototype.init;
      +
      +// Back compat <1.8 extension point
      +jQuery.fx.step = {};
      +
      +
      +
      +
      +var
      +	fxNow, inProgress,
      +	rfxtypes = /^(?:toggle|show|hide)$/,
      +	rrun = /queueHooks$/;
      +
      +function schedule() {
      +	if ( inProgress ) {
      +		if ( document.hidden === false && window.requestAnimationFrame ) {
      +			window.requestAnimationFrame( schedule );
      +		} else {
      +			window.setTimeout( schedule, jQuery.fx.interval );
      +		}
      +
      +		jQuery.fx.tick();
      +	}
      +}
      +
      +// Animations created synchronously will run synchronously
      +function createFxNow() {
      +	window.setTimeout( function() {
      +		fxNow = undefined;
      +	} );
      +	return ( fxNow = Date.now() );
      +}
      +
      +// Generate parameters to create a standard animation
      +function genFx( type, includeWidth ) {
      +	var which,
      +		i = 0,
      +		attrs = { height: type };
      +
      +	// If we include width, step value is 1 to do all cssExpand values,
      +	// otherwise step value is 2 to skip over Left and Right
      +	includeWidth = includeWidth ? 1 : 0;
      +	for ( ; i < 4; i += 2 - includeWidth ) {
      +		which = cssExpand[ i ];
      +		attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
      +	}
      +
      +	if ( includeWidth ) {
      +		attrs.opacity = attrs.width = type;
      +	}
      +
      +	return attrs;
      +}
      +
      +function createTween( value, prop, animation ) {
      +	var tween,
      +		collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ),
      +		index = 0,
      +		length = collection.length;
      +	for ( ; index < length; index++ ) {
      +		if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {
      +
      +			// We're done with this property
      +			return tween;
      +		}
      +	}
      +}
      +
      +function defaultPrefilter( elem, props, opts ) {
      +	var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,
      +		isBox = "width" in props || "height" in props,
      +		anim = this,
      +		orig = {},
      +		style = elem.style,
      +		hidden = elem.nodeType && isHiddenWithinTree( elem ),
      +		dataShow = dataPriv.get( elem, "fxshow" );
      +
      +	// Queue-skipping animations hijack the fx hooks
      +	if ( !opts.queue ) {
      +		hooks = jQuery._queueHooks( elem, "fx" );
      +		if ( hooks.unqueued == null ) {
      +			hooks.unqueued = 0;
      +			oldfire = hooks.empty.fire;
      +			hooks.empty.fire = function() {
      +				if ( !hooks.unqueued ) {
      +					oldfire();
      +				}
      +			};
      +		}
      +		hooks.unqueued++;
      +
      +		anim.always( function() {
      +
      +			// Ensure the complete handler is called before this completes
      +			anim.always( function() {
      +				hooks.unqueued--;
      +				if ( !jQuery.queue( elem, "fx" ).length ) {
      +					hooks.empty.fire();
      +				}
      +			} );
      +		} );
      +	}
      +
      +	// Detect show/hide animations
      +	for ( prop in props ) {
      +		value = props[ prop ];
      +		if ( rfxtypes.test( value ) ) {
      +			delete props[ prop ];
      +			toggle = toggle || value === "toggle";
      +			if ( value === ( hidden ? "hide" : "show" ) ) {
      +
      +				// Pretend to be hidden if this is a "show" and
      +				// there is still data from a stopped show/hide
      +				if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
      +					hidden = true;
      +
      +				// Ignore all other no-op show/hide data
      +				} else {
      +					continue;
      +				}
      +			}
      +			orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
      +		}
      +	}
      +
      +	// Bail out if this is a no-op like .hide().hide()
      +	propTween = !jQuery.isEmptyObject( props );
      +	if ( !propTween && jQuery.isEmptyObject( orig ) ) {
      +		return;
      +	}
      +
      +	// Restrict "overflow" and "display" styles during box animations
      +	if ( isBox && elem.nodeType === 1 ) {
      +
      +		// Support: IE <=9 - 11, Edge 12 - 15
      +		// Record all 3 overflow attributes because IE does not infer the shorthand
      +		// from identically-valued overflowX and overflowY and Edge just mirrors
      +		// the overflowX value there.
      +		opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
      +
      +		// Identify a display type, preferring old show/hide data over the CSS cascade
      +		restoreDisplay = dataShow && dataShow.display;
      +		if ( restoreDisplay == null ) {
      +			restoreDisplay = dataPriv.get( elem, "display" );
      +		}
      +		display = jQuery.css( elem, "display" );
      +		if ( display === "none" ) {
      +			if ( restoreDisplay ) {
      +				display = restoreDisplay;
      +			} else {
      +
      +				// Get nonempty value(s) by temporarily forcing visibility
      +				showHide( [ elem ], true );
      +				restoreDisplay = elem.style.display || restoreDisplay;
      +				display = jQuery.css( elem, "display" );
      +				showHide( [ elem ] );
      +			}
      +		}
      +
      +		// Animate inline elements as inline-block
      +		if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) {
      +			if ( jQuery.css( elem, "float" ) === "none" ) {
      +
      +				// Restore the original display value at the end of pure show/hide animations
      +				if ( !propTween ) {
      +					anim.done( function() {
      +						style.display = restoreDisplay;
      +					} );
      +					if ( restoreDisplay == null ) {
      +						display = style.display;
      +						restoreDisplay = display === "none" ? "" : display;
      +					}
      +				}
      +				style.display = "inline-block";
      +			}
      +		}
      +	}
      +
      +	if ( opts.overflow ) {
      +		style.overflow = "hidden";
      +		anim.always( function() {
      +			style.overflow = opts.overflow[ 0 ];
      +			style.overflowX = opts.overflow[ 1 ];
      +			style.overflowY = opts.overflow[ 2 ];
      +		} );
      +	}
      +
      +	// Implement show/hide animations
      +	propTween = false;
      +	for ( prop in orig ) {
      +
      +		// General show/hide setup for this element animation
      +		if ( !propTween ) {
      +			if ( dataShow ) {
      +				if ( "hidden" in dataShow ) {
      +					hidden = dataShow.hidden;
      +				}
      +			} else {
      +				dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } );
      +			}
      +
      +			// Store hidden/visible for toggle so `.stop().toggle()` "reverses"
      +			if ( toggle ) {
      +				dataShow.hidden = !hidden;
      +			}
      +
      +			// Show elements before animating them
      +			if ( hidden ) {
      +				showHide( [ elem ], true );
      +			}
      +
      +			/* eslint-disable no-loop-func */
      +
      +			anim.done( function() {
      +
      +			/* eslint-enable no-loop-func */
      +
      +				// The final step of a "hide" animation is actually hiding the element
      +				if ( !hidden ) {
      +					showHide( [ elem ] );
      +				}
      +				dataPriv.remove( elem, "fxshow" );
      +				for ( prop in orig ) {
      +					jQuery.style( elem, prop, orig[ prop ] );
      +				}
      +			} );
      +		}
      +
      +		// Per-property setup
      +		propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
      +		if ( !( prop in dataShow ) ) {
      +			dataShow[ prop ] = propTween.start;
      +			if ( hidden ) {
      +				propTween.end = propTween.start;
      +				propTween.start = 0;
      +			}
      +		}
      +	}
      +}
      +
      +function propFilter( props, specialEasing ) {
      +	var index, name, easing, value, hooks;
      +
      +	// camelCase, specialEasing and expand cssHook pass
      +	for ( index in props ) {
      +		name = camelCase( index );
      +		easing = specialEasing[ name ];
      +		value = props[ index ];
      +		if ( Array.isArray( value ) ) {
      +			easing = value[ 1 ];
      +			value = props[ index ] = value[ 0 ];
      +		}
      +
      +		if ( index !== name ) {
      +			props[ name ] = value;
      +			delete props[ index ];
      +		}
      +
      +		hooks = jQuery.cssHooks[ name ];
      +		if ( hooks && "expand" in hooks ) {
      +			value = hooks.expand( value );
      +			delete props[ name ];
      +
      +			// Not quite $.extend, this won't overwrite existing keys.
      +			// Reusing 'index' because we have the correct "name"
      +			for ( index in value ) {
      +				if ( !( index in props ) ) {
      +					props[ index ] = value[ index ];
      +					specialEasing[ index ] = easing;
      +				}
      +			}
      +		} else {
      +			specialEasing[ name ] = easing;
      +		}
      +	}
      +}
      +
      +function Animation( elem, properties, options ) {
      +	var result,
      +		stopped,
      +		index = 0,
      +		length = Animation.prefilters.length,
      +		deferred = jQuery.Deferred().always( function() {
      +
      +			// Don't match elem in the :animated selector
      +			delete tick.elem;
      +		} ),
      +		tick = function() {
      +			if ( stopped ) {
      +				return false;
      +			}
      +			var currentTime = fxNow || createFxNow(),
      +				remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
      +
      +				// Support: Android 2.3 only
      +				// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)
      +				temp = remaining / animation.duration || 0,
      +				percent = 1 - temp,
      +				index = 0,
      +				length = animation.tweens.length;
      +
      +			for ( ; index < length; index++ ) {
      +				animation.tweens[ index ].run( percent );
      +			}
      +
      +			deferred.notifyWith( elem, [ animation, percent, remaining ] );
      +
      +			// If there's more to do, yield
      +			if ( percent < 1 && length ) {
      +				return remaining;
      +			}
      +
      +			// If this was an empty animation, synthesize a final progress notification
      +			if ( !length ) {
      +				deferred.notifyWith( elem, [ animation, 1, 0 ] );
      +			}
      +
      +			// Resolve the animation and report its conclusion
      +			deferred.resolveWith( elem, [ animation ] );
      +			return false;
      +		},
      +		animation = deferred.promise( {
      +			elem: elem,
      +			props: jQuery.extend( {}, properties ),
      +			opts: jQuery.extend( true, {
      +				specialEasing: {},
      +				easing: jQuery.easing._default
      +			}, options ),
      +			originalProperties: properties,
      +			originalOptions: options,
      +			startTime: fxNow || createFxNow(),
      +			duration: options.duration,
      +			tweens: [],
      +			createTween: function( prop, end ) {
      +				var tween = jQuery.Tween( elem, animation.opts, prop, end,
      +						animation.opts.specialEasing[ prop ] || animation.opts.easing );
      +				animation.tweens.push( tween );
      +				return tween;
      +			},
      +			stop: function( gotoEnd ) {
      +				var index = 0,
      +
      +					// If we are going to the end, we want to run all the tweens
      +					// otherwise we skip this part
      +					length = gotoEnd ? animation.tweens.length : 0;
      +				if ( stopped ) {
      +					return this;
      +				}
      +				stopped = true;
      +				for ( ; index < length; index++ ) {
      +					animation.tweens[ index ].run( 1 );
      +				}
      +
      +				// Resolve when we played the last frame; otherwise, reject
      +				if ( gotoEnd ) {
      +					deferred.notifyWith( elem, [ animation, 1, 0 ] );
      +					deferred.resolveWith( elem, [ animation, gotoEnd ] );
      +				} else {
      +					deferred.rejectWith( elem, [ animation, gotoEnd ] );
      +				}
      +				return this;
      +			}
      +		} ),
      +		props = animation.props;
      +
      +	propFilter( props, animation.opts.specialEasing );
      +
      +	for ( ; index < length; index++ ) {
      +		result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );
      +		if ( result ) {
      +			if ( isFunction( result.stop ) ) {
      +				jQuery._queueHooks( animation.elem, animation.opts.queue ).stop =
      +					result.stop.bind( result );
      +			}
      +			return result;
      +		}
      +	}
      +
      +	jQuery.map( props, createTween, animation );
      +
      +	if ( isFunction( animation.opts.start ) ) {
      +		animation.opts.start.call( elem, animation );
      +	}
      +
      +	// Attach callbacks from options
      +	animation
      +		.progress( animation.opts.progress )
      +		.done( animation.opts.done, animation.opts.complete )
      +		.fail( animation.opts.fail )
      +		.always( animation.opts.always );
      +
      +	jQuery.fx.timer(
      +		jQuery.extend( tick, {
      +			elem: elem,
      +			anim: animation,
      +			queue: animation.opts.queue
      +		} )
      +	);
      +
      +	return animation;
      +}
      +
      +jQuery.Animation = jQuery.extend( Animation, {
      +
      +	tweeners: {
      +		"*": [ function( prop, value ) {
      +			var tween = this.createTween( prop, value );
      +			adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );
      +			return tween;
      +		} ]
      +	},
      +
      +	tweener: function( props, callback ) {
      +		if ( isFunction( props ) ) {
      +			callback = props;
      +			props = [ "*" ];
      +		} else {
      +			props = props.match( rnothtmlwhite );
      +		}
      +
      +		var prop,
      +			index = 0,
      +			length = props.length;
      +
      +		for ( ; index < length; index++ ) {
      +			prop = props[ index ];
      +			Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];
      +			Animation.tweeners[ prop ].unshift( callback );
      +		}
      +	},
      +
      +	prefilters: [ defaultPrefilter ],
      +
      +	prefilter: function( callback, prepend ) {
      +		if ( prepend ) {
      +			Animation.prefilters.unshift( callback );
      +		} else {
      +			Animation.prefilters.push( callback );
      +		}
      +	}
      +} );
      +
      +jQuery.speed = function( speed, easing, fn ) {
      +	var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
      +		complete: fn || !fn && easing ||
      +			isFunction( speed ) && speed,
      +		duration: speed,
      +		easing: fn && easing || easing && !isFunction( easing ) && easing
      +	};
      +
      +	// Go to the end state if fx are off
      +	if ( jQuery.fx.off ) {
      +		opt.duration = 0;
      +
      +	} else {
      +		if ( typeof opt.duration !== "number" ) {
      +			if ( opt.duration in jQuery.fx.speeds ) {
      +				opt.duration = jQuery.fx.speeds[ opt.duration ];
      +
      +			} else {
      +				opt.duration = jQuery.fx.speeds._default;
      +			}
      +		}
      +	}
      +
      +	// Normalize opt.queue - true/undefined/null -> "fx"
      +	if ( opt.queue == null || opt.queue === true ) {
      +		opt.queue = "fx";
      +	}
      +
      +	// Queueing
      +	opt.old = opt.complete;
      +
      +	opt.complete = function() {
      +		if ( isFunction( opt.old ) ) {
      +			opt.old.call( this );
      +		}
      +
      +		if ( opt.queue ) {
      +			jQuery.dequeue( this, opt.queue );
      +		}
      +	};
      +
      +	return opt;
      +};
      +
      +jQuery.fn.extend( {
      +	fadeTo: function( speed, to, easing, callback ) {
      +
      +		// Show any hidden elements after setting opacity to 0
      +		return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show()
      +
      +			// Animate to the value specified
      +			.end().animate( { opacity: to }, speed, easing, callback );
      +	},
      +	animate: function( prop, speed, easing, callback ) {
      +		var empty = jQuery.isEmptyObject( prop ),
      +			optall = jQuery.speed( speed, easing, callback ),
      +			doAnimation = function() {
      +
      +				// Operate on a copy of prop so per-property easing won't be lost
      +				var anim = Animation( this, jQuery.extend( {}, prop ), optall );
      +
      +				// Empty animations, or finishing resolves immediately
      +				if ( empty || dataPriv.get( this, "finish" ) ) {
      +					anim.stop( true );
      +				}
      +			};
      +			doAnimation.finish = doAnimation;
      +
      +		return empty || optall.queue === false ?
      +			this.each( doAnimation ) :
      +			this.queue( optall.queue, doAnimation );
      +	},
      +	stop: function( type, clearQueue, gotoEnd ) {
      +		var stopQueue = function( hooks ) {
      +			var stop = hooks.stop;
      +			delete hooks.stop;
      +			stop( gotoEnd );
      +		};
      +
      +		if ( typeof type !== "string" ) {
      +			gotoEnd = clearQueue;
      +			clearQueue = type;
      +			type = undefined;
      +		}
      +		if ( clearQueue && type !== false ) {
      +			this.queue( type || "fx", [] );
      +		}
      +
      +		return this.each( function() {
      +			var dequeue = true,
      +				index = type != null && type + "queueHooks",
      +				timers = jQuery.timers,
      +				data = dataPriv.get( this );
      +
      +			if ( index ) {
      +				if ( data[ index ] && data[ index ].stop ) {
      +					stopQueue( data[ index ] );
      +				}
      +			} else {
      +				for ( index in data ) {
      +					if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
      +						stopQueue( data[ index ] );
      +					}
      +				}
      +			}
      +
      +			for ( index = timers.length; index--; ) {
      +				if ( timers[ index ].elem === this &&
      +					( type == null || timers[ index ].queue === type ) ) {
      +
      +					timers[ index ].anim.stop( gotoEnd );
      +					dequeue = false;
      +					timers.splice( index, 1 );
      +				}
      +			}
      +
      +			// Start the next in the queue if the last step wasn't forced.
      +			// Timers currently will call their complete callbacks, which
      +			// will dequeue but only if they were gotoEnd.
      +			if ( dequeue || !gotoEnd ) {
      +				jQuery.dequeue( this, type );
      +			}
      +		} );
      +	},
      +	finish: function( type ) {
      +		if ( type !== false ) {
      +			type = type || "fx";
      +		}
      +		return this.each( function() {
      +			var index,
      +				data = dataPriv.get( this ),
      +				queue = data[ type + "queue" ],
      +				hooks = data[ type + "queueHooks" ],
      +				timers = jQuery.timers,
      +				length = queue ? queue.length : 0;
      +
      +			// Enable finishing flag on private data
      +			data.finish = true;
      +
      +			// Empty the queue first
      +			jQuery.queue( this, type, [] );
      +
      +			if ( hooks && hooks.stop ) {
      +				hooks.stop.call( this, true );
      +			}
      +
      +			// Look for any active animations, and finish them
      +			for ( index = timers.length; index--; ) {
      +				if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
      +					timers[ index ].anim.stop( true );
      +					timers.splice( index, 1 );
      +				}
      +			}
      +
      +			// Look for any animations in the old queue and finish them
      +			for ( index = 0; index < length; index++ ) {
      +				if ( queue[ index ] && queue[ index ].finish ) {
      +					queue[ index ].finish.call( this );
      +				}
      +			}
      +
      +			// Turn off finishing flag
      +			delete data.finish;
      +		} );
      +	}
      +} );
      +
      +jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) {
      +	var cssFn = jQuery.fn[ name ];
      +	jQuery.fn[ name ] = function( speed, easing, callback ) {
      +		return speed == null || typeof speed === "boolean" ?
      +			cssFn.apply( this, arguments ) :
      +			this.animate( genFx( name, true ), speed, easing, callback );
      +	};
      +} );
      +
      +// Generate shortcuts for custom animations
      +jQuery.each( {
      +	slideDown: genFx( "show" ),
      +	slideUp: genFx( "hide" ),
      +	slideToggle: genFx( "toggle" ),
      +	fadeIn: { opacity: "show" },
      +	fadeOut: { opacity: "hide" },
      +	fadeToggle: { opacity: "toggle" }
      +}, function( name, props ) {
      +	jQuery.fn[ name ] = function( speed, easing, callback ) {
      +		return this.animate( props, speed, easing, callback );
      +	};
      +} );
      +
      +jQuery.timers = [];
      +jQuery.fx.tick = function() {
      +	var timer,
      +		i = 0,
      +		timers = jQuery.timers;
      +
      +	fxNow = Date.now();
      +
      +	for ( ; i < timers.length; i++ ) {
      +		timer = timers[ i ];
      +
      +		// Run the timer and safely remove it when done (allowing for external removal)
      +		if ( !timer() && timers[ i ] === timer ) {
      +			timers.splice( i--, 1 );
      +		}
      +	}
      +
      +	if ( !timers.length ) {
      +		jQuery.fx.stop();
      +	}
      +	fxNow = undefined;
      +};
      +
      +jQuery.fx.timer = function( timer ) {
      +	jQuery.timers.push( timer );
      +	jQuery.fx.start();
      +};
      +
      +jQuery.fx.interval = 13;
      +jQuery.fx.start = function() {
      +	if ( inProgress ) {
      +		return;
      +	}
      +
      +	inProgress = true;
      +	schedule();
      +};
      +
      +jQuery.fx.stop = function() {
      +	inProgress = null;
      +};
      +
      +jQuery.fx.speeds = {
      +	slow: 600,
      +	fast: 200,
      +
      +	// Default speed
      +	_default: 400
      +};
      +
      +
      +// Based off of the plugin by Clint Helfers, with permission.
      +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/
      +jQuery.fn.delay = function( time, type ) {
      +	time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
      +	type = type || "fx";
      +
      +	return this.queue( type, function( next, hooks ) {
      +		var timeout = window.setTimeout( next, time );
      +		hooks.stop = function() {
      +			window.clearTimeout( timeout );
      +		};
      +	} );
      +};
      +
      +
      +( function() {
      +	var input = document.createElement( "input" ),
      +		select = document.createElement( "select" ),
      +		opt = select.appendChild( document.createElement( "option" ) );
      +
      +	input.type = "checkbox";
      +
      +	// Support: Android <=4.3 only
      +	// Default value for a checkbox should be "on"
      +	support.checkOn = input.value !== "";
      +
      +	// Support: IE <=11 only
      +	// Must access selectedIndex to make default options select
      +	support.optSelected = opt.selected;
      +
      +	// Support: IE <=11 only
      +	// An input loses its value after becoming a radio
      +	input = document.createElement( "input" );
      +	input.value = "t";
      +	input.type = "radio";
      +	support.radioValue = input.value === "t";
      +} )();
      +
      +
      +var boolHook,
      +	attrHandle = jQuery.expr.attrHandle;
      +
      +jQuery.fn.extend( {
      +	attr: function( name, value ) {
      +		return access( this, jQuery.attr, name, value, arguments.length > 1 );
      +	},
      +
      +	removeAttr: function( name ) {
      +		return this.each( function() {
      +			jQuery.removeAttr( this, name );
      +		} );
      +	}
      +} );
      +
      +jQuery.extend( {
      +	attr: function( elem, name, value ) {
      +		var ret, hooks,
      +			nType = elem.nodeType;
      +
      +		// Don't get/set attributes on text, comment and attribute nodes
      +		if ( nType === 3 || nType === 8 || nType === 2 ) {
      +			return;
      +		}
      +
      +		// Fallback to prop when attributes are not supported
      +		if ( typeof elem.getAttribute === "undefined" ) {
      +			return jQuery.prop( elem, name, value );
      +		}
      +
      +		// Attribute hooks are determined by the lowercase version
      +		// Grab necessary hook if one is defined
      +		if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
      +			hooks = jQuery.attrHooks[ name.toLowerCase() ] ||
      +				( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );
      +		}
      +
      +		if ( value !== undefined ) {
      +			if ( value === null ) {
      +				jQuery.removeAttr( elem, name );
      +				return;
      +			}
      +
      +			if ( hooks && "set" in hooks &&
      +				( ret = hooks.set( elem, value, name ) ) !== undefined ) {
      +				return ret;
      +			}
      +
      +			elem.setAttribute( name, value + "" );
      +			return value;
      +		}
      +
      +		if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
      +			return ret;
      +		}
      +
      +		ret = jQuery.find.attr( elem, name );
      +
      +		// Non-existent attributes return null, we normalize to undefined
      +		return ret == null ? undefined : ret;
      +	},
      +
      +	attrHooks: {
      +		type: {
      +			set: function( elem, value ) {
      +				if ( !support.radioValue && value === "radio" &&
      +					nodeName( elem, "input" ) ) {
      +					var val = elem.value;
      +					elem.setAttribute( "type", value );
      +					if ( val ) {
      +						elem.value = val;
      +					}
      +					return value;
      +				}
      +			}
      +		}
      +	},
      +
      +	removeAttr: function( elem, value ) {
      +		var name,
      +			i = 0,
      +
      +			// Attribute names can contain non-HTML whitespace characters
      +			// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2
      +			attrNames = value && value.match( rnothtmlwhite );
      +
      +		if ( attrNames && elem.nodeType === 1 ) {
      +			while ( ( name = attrNames[ i++ ] ) ) {
      +				elem.removeAttribute( name );
      +			}
      +		}
      +	}
      +} );
      +
      +// Hooks for boolean attributes
      +boolHook = {
      +	set: function( elem, value, name ) {
      +		if ( value === false ) {
      +
      +			// Remove boolean attributes when set to false
      +			jQuery.removeAttr( elem, name );
      +		} else {
      +			elem.setAttribute( name, name );
      +		}
      +		return name;
      +	}
      +};
      +
      +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {
      +	var getter = attrHandle[ name ] || jQuery.find.attr;
      +
      +	attrHandle[ name ] = function( elem, name, isXML ) {
      +		var ret, handle,
      +			lowercaseName = name.toLowerCase();
      +
      +		if ( !isXML ) {
      +
      +			// Avoid an infinite loop by temporarily removing this function from the getter
      +			handle = attrHandle[ lowercaseName ];
      +			attrHandle[ lowercaseName ] = ret;
      +			ret = getter( elem, name, isXML ) != null ?
      +				lowercaseName :
      +				null;
      +			attrHandle[ lowercaseName ] = handle;
      +		}
      +		return ret;
      +	};
      +} );
      +
      +
      +
      +
      +var rfocusable = /^(?:input|select|textarea|button)$/i,
      +	rclickable = /^(?:a|area)$/i;
      +
      +jQuery.fn.extend( {
      +	prop: function( name, value ) {
      +		return access( this, jQuery.prop, name, value, arguments.length > 1 );
      +	},
      +
      +	removeProp: function( name ) {
      +		return this.each( function() {
      +			delete this[ jQuery.propFix[ name ] || name ];
      +		} );
      +	}
      +} );
      +
      +jQuery.extend( {
      +	prop: function( elem, name, value ) {
      +		var ret, hooks,
      +			nType = elem.nodeType;
      +
      +		// Don't get/set properties on text, comment and attribute nodes
      +		if ( nType === 3 || nType === 8 || nType === 2 ) {
      +			return;
      +		}
      +
      +		if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
      +
      +			// Fix name and attach hooks
      +			name = jQuery.propFix[ name ] || name;
      +			hooks = jQuery.propHooks[ name ];
      +		}
      +
      +		if ( value !== undefined ) {
      +			if ( hooks && "set" in hooks &&
      +				( ret = hooks.set( elem, value, name ) ) !== undefined ) {
      +				return ret;
      +			}
      +
      +			return ( elem[ name ] = value );
      +		}
      +
      +		if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
      +			return ret;
      +		}
      +
      +		return elem[ name ];
      +	},
      +
      +	propHooks: {
      +		tabIndex: {
      +			get: function( elem ) {
      +
      +				// Support: IE <=9 - 11 only
      +				// elem.tabIndex doesn't always return the
      +				// correct value when it hasn't been explicitly set
      +				// https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
      +				// Use proper attribute retrieval(#12072)
      +				var tabindex = jQuery.find.attr( elem, "tabindex" );
      +
      +				if ( tabindex ) {
      +					return parseInt( tabindex, 10 );
      +				}
      +
      +				if (
      +					rfocusable.test( elem.nodeName ) ||
      +					rclickable.test( elem.nodeName ) &&
      +					elem.href
      +				) {
      +					return 0;
      +				}
      +
      +				return -1;
      +			}
      +		}
      +	},
      +
      +	propFix: {
      +		"for": "htmlFor",
      +		"class": "className"
      +	}
      +} );
      +
      +// Support: IE <=11 only
      +// Accessing the selectedIndex property
      +// forces the browser to respect setting selected
      +// on the option
      +// The getter ensures a default option is selected
      +// when in an optgroup
      +// eslint rule "no-unused-expressions" is disabled for this code
      +// since it considers such accessions noop
      +if ( !support.optSelected ) {
      +	jQuery.propHooks.selected = {
      +		get: function( elem ) {
      +
      +			/* eslint no-unused-expressions: "off" */
      +
      +			var parent = elem.parentNode;
      +			if ( parent && parent.parentNode ) {
      +				parent.parentNode.selectedIndex;
      +			}
      +			return null;
      +		},
      +		set: function( elem ) {
      +
      +			/* eslint no-unused-expressions: "off" */
      +
      +			var parent = elem.parentNode;
      +			if ( parent ) {
      +				parent.selectedIndex;
      +
      +				if ( parent.parentNode ) {
      +					parent.parentNode.selectedIndex;
      +				}
      +			}
      +		}
      +	};
      +}
      +
      +jQuery.each( [
      +	"tabIndex",
      +	"readOnly",
      +	"maxLength",
      +	"cellSpacing",
      +	"cellPadding",
      +	"rowSpan",
      +	"colSpan",
      +	"useMap",
      +	"frameBorder",
      +	"contentEditable"
      +], function() {
      +	jQuery.propFix[ this.toLowerCase() ] = this;
      +} );
      +
      +
      +
      +
      +	// Strip and collapse whitespace according to HTML spec
      +	// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace
      +	function stripAndCollapse( value ) {
      +		var tokens = value.match( rnothtmlwhite ) || [];
      +		return tokens.join( " " );
      +	}
      +
      +
      +function getClass( elem ) {
      +	return elem.getAttribute && elem.getAttribute( "class" ) || "";
      +}
      +
      +function classesToArray( value ) {
      +	if ( Array.isArray( value ) ) {
      +		return value;
      +	}
      +	if ( typeof value === "string" ) {
      +		return value.match( rnothtmlwhite ) || [];
      +	}
      +	return [];
      +}
      +
      +jQuery.fn.extend( {
      +	addClass: function( value ) {
      +		var classes, elem, cur, curValue, clazz, j, finalValue,
      +			i = 0;
      +
      +		if ( isFunction( value ) ) {
      +			return this.each( function( j ) {
      +				jQuery( this ).addClass( value.call( this, j, getClass( this ) ) );
      +			} );
      +		}
      +
      +		classes = classesToArray( value );
      +
      +		if ( classes.length ) {
      +			while ( ( elem = this[ i++ ] ) ) {
      +				curValue = getClass( elem );
      +				cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " );
      +
      +				if ( cur ) {
      +					j = 0;
      +					while ( ( clazz = classes[ j++ ] ) ) {
      +						if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
      +							cur += clazz + " ";
      +						}
      +					}
      +
      +					// Only assign if different to avoid unneeded rendering.
      +					finalValue = stripAndCollapse( cur );
      +					if ( curValue !== finalValue ) {
      +						elem.setAttribute( "class", finalValue );
      +					}
      +				}
      +			}
      +		}
      +
      +		return this;
      +	},
      +
      +	removeClass: function( value ) {
      +		var classes, elem, cur, curValue, clazz, j, finalValue,
      +			i = 0;
      +
      +		if ( isFunction( value ) ) {
      +			return this.each( function( j ) {
      +				jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );
      +			} );
      +		}
      +
      +		if ( !arguments.length ) {
      +			return this.attr( "class", "" );
      +		}
      +
      +		classes = classesToArray( value );
      +
      +		if ( classes.length ) {
      +			while ( ( elem = this[ i++ ] ) ) {
      +				curValue = getClass( elem );
      +
      +				// This expression is here for better compressibility (see addClass)
      +				cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " );
      +
      +				if ( cur ) {
      +					j = 0;
      +					while ( ( clazz = classes[ j++ ] ) ) {
      +
      +						// Remove *all* instances
      +						while ( cur.indexOf( " " + clazz + " " ) > -1 ) {
      +							cur = cur.replace( " " + clazz + " ", " " );
      +						}
      +					}
      +
      +					// Only assign if different to avoid unneeded rendering.
      +					finalValue = stripAndCollapse( cur );
      +					if ( curValue !== finalValue ) {
      +						elem.setAttribute( "class", finalValue );
      +					}
      +				}
      +			}
      +		}
      +
      +		return this;
      +	},
      +
      +	toggleClass: function( value, stateVal ) {
      +		var type = typeof value,
      +			isValidValue = type === "string" || Array.isArray( value );
      +
      +		if ( typeof stateVal === "boolean" && isValidValue ) {
      +			return stateVal ? this.addClass( value ) : this.removeClass( value );
      +		}
      +
      +		if ( isFunction( value ) ) {
      +			return this.each( function( i ) {
      +				jQuery( this ).toggleClass(
      +					value.call( this, i, getClass( this ), stateVal ),
      +					stateVal
      +				);
      +			} );
      +		}
      +
      +		return this.each( function() {
      +			var className, i, self, classNames;
      +
      +			if ( isValidValue ) {
      +
      +				// Toggle individual class names
      +				i = 0;
      +				self = jQuery( this );
      +				classNames = classesToArray( value );
      +
      +				while ( ( className = classNames[ i++ ] ) ) {
      +
      +					// Check each className given, space separated list
      +					if ( self.hasClass( className ) ) {
      +						self.removeClass( className );
      +					} else {
      +						self.addClass( className );
      +					}
      +				}
      +
      +			// Toggle whole class name
      +			} else if ( value === undefined || type === "boolean" ) {
      +				className = getClass( this );
      +				if ( className ) {
      +
      +					// Store className if set
      +					dataPriv.set( this, "__className__", className );
      +				}
      +
      +				// If the element has a class name or if we're passed `false`,
      +				// then remove the whole classname (if there was one, the above saved it).
      +				// Otherwise bring back whatever was previously saved (if anything),
      +				// falling back to the empty string if nothing was stored.
      +				if ( this.setAttribute ) {
      +					this.setAttribute( "class",
      +						className || value === false ?
      +						"" :
      +						dataPriv.get( this, "__className__" ) || ""
      +					);
      +				}
      +			}
      +		} );
      +	},
      +
      +	hasClass: function( selector ) {
      +		var className, elem,
      +			i = 0;
      +
      +		className = " " + selector + " ";
      +		while ( ( elem = this[ i++ ] ) ) {
      +			if ( elem.nodeType === 1 &&
      +				( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) {
      +					return true;
      +			}
      +		}
      +
      +		return false;
      +	}
      +} );
      +
      +
      +
      +
      +var rreturn = /\r/g;
      +
      +jQuery.fn.extend( {
      +	val: function( value ) {
      +		var hooks, ret, valueIsFunction,
      +			elem = this[ 0 ];
      +
      +		if ( !arguments.length ) {
      +			if ( elem ) {
      +				hooks = jQuery.valHooks[ elem.type ] ||
      +					jQuery.valHooks[ elem.nodeName.toLowerCase() ];
      +
      +				if ( hooks &&
      +					"get" in hooks &&
      +					( ret = hooks.get( elem, "value" ) ) !== undefined
      +				) {
      +					return ret;
      +				}
      +
      +				ret = elem.value;
      +
      +				// Handle most common string cases
      +				if ( typeof ret === "string" ) {
      +					return ret.replace( rreturn, "" );
      +				}
      +
      +				// Handle cases where value is null/undef or number
      +				return ret == null ? "" : ret;
      +			}
      +
      +			return;
      +		}
      +
      +		valueIsFunction = isFunction( value );
      +
      +		return this.each( function( i ) {
      +			var val;
      +
      +			if ( this.nodeType !== 1 ) {
      +				return;
      +			}
      +
      +			if ( valueIsFunction ) {
      +				val = value.call( this, i, jQuery( this ).val() );
      +			} else {
      +				val = value;
      +			}
      +
      +			// Treat null/undefined as ""; convert numbers to string
      +			if ( val == null ) {
      +				val = "";
      +
      +			} else if ( typeof val === "number" ) {
      +				val += "";
      +
      +			} else if ( Array.isArray( val ) ) {
      +				val = jQuery.map( val, function( value ) {
      +					return value == null ? "" : value + "";
      +				} );
      +			}
      +
      +			hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
      +
      +			// If set returns undefined, fall back to normal setting
      +			if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) {
      +				this.value = val;
      +			}
      +		} );
      +	}
      +} );
      +
      +jQuery.extend( {
      +	valHooks: {
      +		option: {
      +			get: function( elem ) {
      +
      +				var val = jQuery.find.attr( elem, "value" );
      +				return val != null ?
      +					val :
      +
      +					// Support: IE <=10 - 11 only
      +					// option.text throws exceptions (#14686, #14858)
      +					// Strip and collapse whitespace
      +					// https://html.spec.whatwg.org/#strip-and-collapse-whitespace
      +					stripAndCollapse( jQuery.text( elem ) );
      +			}
      +		},
      +		select: {
      +			get: function( elem ) {
      +				var value, option, i,
      +					options = elem.options,
      +					index = elem.selectedIndex,
      +					one = elem.type === "select-one",
      +					values = one ? null : [],
      +					max = one ? index + 1 : options.length;
      +
      +				if ( index < 0 ) {
      +					i = max;
      +
      +				} else {
      +					i = one ? index : 0;
      +				}
      +
      +				// Loop through all the selected options
      +				for ( ; i < max; i++ ) {
      +					option = options[ i ];
      +
      +					// Support: IE <=9 only
      +					// IE8-9 doesn't update selected after form reset (#2551)
      +					if ( ( option.selected || i === index ) &&
      +
      +							// Don't return options that are disabled or in a disabled optgroup
      +							!option.disabled &&
      +							( !option.parentNode.disabled ||
      +								!nodeName( option.parentNode, "optgroup" ) ) ) {
      +
      +						// Get the specific value for the option
      +						value = jQuery( option ).val();
      +
      +						// We don't need an array for one selects
      +						if ( one ) {
      +							return value;
      +						}
      +
      +						// Multi-Selects return an array
      +						values.push( value );
      +					}
      +				}
      +
      +				return values;
      +			},
      +
      +			set: function( elem, value ) {
      +				var optionSet, option,
      +					options = elem.options,
      +					values = jQuery.makeArray( value ),
      +					i = options.length;
      +
      +				while ( i-- ) {
      +					option = options[ i ];
      +
      +					/* eslint-disable no-cond-assign */
      +
      +					if ( option.selected =
      +						jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1
      +					) {
      +						optionSet = true;
      +					}
      +
      +					/* eslint-enable no-cond-assign */
      +				}
      +
      +				// Force browsers to behave consistently when non-matching value is set
      +				if ( !optionSet ) {
      +					elem.selectedIndex = -1;
      +				}
      +				return values;
      +			}
      +		}
      +	}
      +} );
      +
      +// Radios and checkboxes getter/setter
      +jQuery.each( [ "radio", "checkbox" ], function() {
      +	jQuery.valHooks[ this ] = {
      +		set: function( elem, value ) {
      +			if ( Array.isArray( value ) ) {
      +				return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );
      +			}
      +		}
      +	};
      +	if ( !support.checkOn ) {
      +		jQuery.valHooks[ this ].get = function( elem ) {
      +			return elem.getAttribute( "value" ) === null ? "on" : elem.value;
      +		};
      +	}
      +} );
      +
      +
      +
      +
      +// Return jQuery for attributes-only inclusion
      +
      +
      +support.focusin = "onfocusin" in window;
      +
      +
      +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
      +	stopPropagationCallback = function( e ) {
      +		e.stopPropagation();
      +	};
      +
      +jQuery.extend( jQuery.event, {
      +
      +	trigger: function( event, data, elem, onlyHandlers ) {
      +
      +		var i, cur, tmp, bubbleType, ontype, handle, special, lastElement,
      +			eventPath = [ elem || document ],
      +			type = hasOwn.call( event, "type" ) ? event.type : event,
      +			namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : [];
      +
      +		cur = lastElement = tmp = elem = elem || document;
      +
      +		// Don't do events on text and comment nodes
      +		if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
      +			return;
      +		}
      +
      +		// focus/blur morphs to focusin/out; ensure we're not firing them right now
      +		if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
      +			return;
      +		}
      +
      +		if ( type.indexOf( "." ) > -1 ) {
      +
      +			// Namespaced trigger; create a regexp to match event type in handle()
      +			namespaces = type.split( "." );
      +			type = namespaces.shift();
      +			namespaces.sort();
      +		}
      +		ontype = type.indexOf( ":" ) < 0 && "on" + type;
      +
      +		// Caller can pass in a jQuery.Event object, Object, or just an event type string
      +		event = event[ jQuery.expando ] ?
      +			event :
      +			new jQuery.Event( type, typeof event === "object" && event );
      +
      +		// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
      +		event.isTrigger = onlyHandlers ? 2 : 3;
      +		event.namespace = namespaces.join( "." );
      +		event.rnamespace = event.namespace ?
      +			new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) :
      +			null;
      +
      +		// Clean up the event in case it is being reused
      +		event.result = undefined;
      +		if ( !event.target ) {
      +			event.target = elem;
      +		}
      +
      +		// Clone any incoming data and prepend the event, creating the handler arg list
      +		data = data == null ?
      +			[ event ] :
      +			jQuery.makeArray( data, [ event ] );
      +
      +		// Allow special events to draw outside the lines
      +		special = jQuery.event.special[ type ] || {};
      +		if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
      +			return;
      +		}
      +
      +		// Determine event propagation path in advance, per W3C events spec (#9951)
      +		// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
      +		if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {
      +
      +			bubbleType = special.delegateType || type;
      +			if ( !rfocusMorph.test( bubbleType + type ) ) {
      +				cur = cur.parentNode;
      +			}
      +			for ( ; cur; cur = cur.parentNode ) {
      +				eventPath.push( cur );
      +				tmp = cur;
      +			}
      +
      +			// Only add window if we got to document (e.g., not plain obj or detached DOM)
      +			if ( tmp === ( elem.ownerDocument || document ) ) {
      +				eventPath.push( tmp.defaultView || tmp.parentWindow || window );
      +			}
      +		}
      +
      +		// Fire handlers on the event path
      +		i = 0;
      +		while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {
      +			lastElement = cur;
      +			event.type = i > 1 ?
      +				bubbleType :
      +				special.bindType || type;
      +
      +			// jQuery handler
      +			handle = ( dataPriv.get( cur, "events" ) || {} )[ event.type ] &&
      +				dataPriv.get( cur, "handle" );
      +			if ( handle ) {
      +				handle.apply( cur, data );
      +			}
      +
      +			// Native handler
      +			handle = ontype && cur[ ontype ];
      +			if ( handle && handle.apply && acceptData( cur ) ) {
      +				event.result = handle.apply( cur, data );
      +				if ( event.result === false ) {
      +					event.preventDefault();
      +				}
      +			}
      +		}
      +		event.type = type;
      +
      +		// If nobody prevented the default action, do it now
      +		if ( !onlyHandlers && !event.isDefaultPrevented() ) {
      +
      +			if ( ( !special._default ||
      +				special._default.apply( eventPath.pop(), data ) === false ) &&
      +				acceptData( elem ) ) {
      +
      +				// Call a native DOM method on the target with the same name as the event.
      +				// Don't do default actions on window, that's where global variables be (#6170)
      +				if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {
      +
      +					// Don't re-trigger an onFOO event when we call its FOO() method
      +					tmp = elem[ ontype ];
      +
      +					if ( tmp ) {
      +						elem[ ontype ] = null;
      +					}
      +
      +					// Prevent re-triggering of the same event, since we already bubbled it above
      +					jQuery.event.triggered = type;
      +
      +					if ( event.isPropagationStopped() ) {
      +						lastElement.addEventListener( type, stopPropagationCallback );
      +					}
      +
      +					elem[ type ]();
      +
      +					if ( event.isPropagationStopped() ) {
      +						lastElement.removeEventListener( type, stopPropagationCallback );
      +					}
      +
      +					jQuery.event.triggered = undefined;
      +
      +					if ( tmp ) {
      +						elem[ ontype ] = tmp;
      +					}
      +				}
      +			}
      +		}
      +
      +		return event.result;
      +	},
      +
      +	// Piggyback on a donor event to simulate a different one
      +	// Used only for `focus(in | out)` events
      +	simulate: function( type, elem, event ) {
      +		var e = jQuery.extend(
      +			new jQuery.Event(),
      +			event,
      +			{
      +				type: type,
      +				isSimulated: true
      +			}
      +		);
      +
      +		jQuery.event.trigger( e, null, elem );
      +	}
      +
      +} );
      +
      +jQuery.fn.extend( {
      +
      +	trigger: function( type, data ) {
      +		return this.each( function() {
      +			jQuery.event.trigger( type, data, this );
      +		} );
      +	},
      +	triggerHandler: function( type, data ) {
      +		var elem = this[ 0 ];
      +		if ( elem ) {
      +			return jQuery.event.trigger( type, data, elem, true );
      +		}
      +	}
      +} );
      +
      +
      +// Support: Firefox <=44
      +// Firefox doesn't have focus(in | out) events
      +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787
      +//
      +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1
      +// focus(in | out) events fire after focus & blur events,
      +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order
      +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857
      +if ( !support.focusin ) {
      +	jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) {
      +
      +		// Attach a single capturing handler on the document while someone wants focusin/focusout
      +		var handler = function( event ) {
      +			jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );
      +		};
      +
      +		jQuery.event.special[ fix ] = {
      +			setup: function() {
      +				var doc = this.ownerDocument || this,
      +					attaches = dataPriv.access( doc, fix );
      +
      +				if ( !attaches ) {
      +					doc.addEventListener( orig, handler, true );
      +				}
      +				dataPriv.access( doc, fix, ( attaches || 0 ) + 1 );
      +			},
      +			teardown: function() {
      +				var doc = this.ownerDocument || this,
      +					attaches = dataPriv.access( doc, fix ) - 1;
      +
      +				if ( !attaches ) {
      +					doc.removeEventListener( orig, handler, true );
      +					dataPriv.remove( doc, fix );
      +
      +				} else {
      +					dataPriv.access( doc, fix, attaches );
      +				}
      +			}
      +		};
      +	} );
      +}
      +var location = window.location;
      +
      +var nonce = Date.now();
      +
      +var rquery = ( /\?/ );
      +
      +
      +
      +// Cross-browser xml parsing
      +jQuery.parseXML = function( data ) {
      +	var xml;
      +	if ( !data || typeof data !== "string" ) {
      +		return null;
      +	}
      +
      +	// Support: IE 9 - 11 only
      +	// IE throws on parseFromString with invalid input.
      +	try {
      +		xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" );
      +	} catch ( e ) {
      +		xml = undefined;
      +	}
      +
      +	if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) {
      +		jQuery.error( "Invalid XML: " + data );
      +	}
      +	return xml;
      +};
      +
      +
      +var
      +	rbracket = /\[\]$/,
      +	rCRLF = /\r?\n/g,
      +	rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
      +	rsubmittable = /^(?:input|select|textarea|keygen)/i;
      +
      +function buildParams( prefix, obj, traditional, add ) {
      +	var name;
      +
      +	if ( Array.isArray( obj ) ) {
      +
      +		// Serialize array item.
      +		jQuery.each( obj, function( i, v ) {
      +			if ( traditional || rbracket.test( prefix ) ) {
      +
      +				// Treat each array item as a scalar.
      +				add( prefix, v );
      +
      +			} else {
      +
      +				// Item is non-scalar (array or object), encode its numeric index.
      +				buildParams(
      +					prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]",
      +					v,
      +					traditional,
      +					add
      +				);
      +			}
      +		} );
      +
      +	} else if ( !traditional && toType( obj ) === "object" ) {
      +
      +		// Serialize object item.
      +		for ( name in obj ) {
      +			buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
      +		}
      +
      +	} else {
      +
      +		// Serialize scalar item.
      +		add( prefix, obj );
      +	}
      +}
      +
      +// Serialize an array of form elements or a set of
      +// key/values into a query string
      +jQuery.param = function( a, traditional ) {
      +	var prefix,
      +		s = [],
      +		add = function( key, valueOrFunction ) {
      +
      +			// If value is a function, invoke it and use its return value
      +			var value = isFunction( valueOrFunction ) ?
      +				valueOrFunction() :
      +				valueOrFunction;
      +
      +			s[ s.length ] = encodeURIComponent( key ) + "=" +
      +				encodeURIComponent( value == null ? "" : value );
      +		};
      +
      +	if ( a == null ) {
      +		return "";
      +	}
      +
      +	// If an array was passed in, assume that it is an array of form elements.
      +	if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
      +
      +		// Serialize the form elements
      +		jQuery.each( a, function() {
      +			add( this.name, this.value );
      +		} );
      +
      +	} else {
      +
      +		// If traditional, encode the "old" way (the way 1.3.2 or older
      +		// did it), otherwise encode params recursively.
      +		for ( prefix in a ) {
      +			buildParams( prefix, a[ prefix ], traditional, add );
      +		}
      +	}
      +
      +	// Return the resulting serialization
      +	return s.join( "&" );
      +};
      +
      +jQuery.fn.extend( {
      +	serialize: function() {
      +		return jQuery.param( this.serializeArray() );
      +	},
      +	serializeArray: function() {
      +		return this.map( function() {
      +
      +			// Can add propHook for "elements" to filter or add form elements
      +			var elements = jQuery.prop( this, "elements" );
      +			return elements ? jQuery.makeArray( elements ) : this;
      +		} )
      +		.filter( function() {
      +			var type = this.type;
      +
      +			// Use .is( ":disabled" ) so that fieldset[disabled] works
      +			return this.name && !jQuery( this ).is( ":disabled" ) &&
      +				rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
      +				( this.checked || !rcheckableType.test( type ) );
      +		} )
      +		.map( function( i, elem ) {
      +			var val = jQuery( this ).val();
      +
      +			if ( val == null ) {
      +				return null;
      +			}
      +
      +			if ( Array.isArray( val ) ) {
      +				return jQuery.map( val, function( val ) {
      +					return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
      +				} );
      +			}
      +
      +			return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
      +		} ).get();
      +	}
      +} );
      +
      +
      +var
      +	r20 = /%20/g,
      +	rhash = /#.*$/,
      +	rantiCache = /([?&])_=[^&]*/,
      +	rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
      +
      +	// #7653, #8125, #8152: local protocol detection
      +	rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
      +	rnoContent = /^(?:GET|HEAD)$/,
      +	rprotocol = /^\/\//,
      +
      +	/* Prefilters
      +	 * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
      +	 * 2) These are called:
      +	 *    - BEFORE asking for a transport
      +	 *    - AFTER param serialization (s.data is a string if s.processData is true)
      +	 * 3) key is the dataType
      +	 * 4) the catchall symbol "*" can be used
      +	 * 5) execution will start with transport dataType and THEN continue down to "*" if needed
      +	 */
      +	prefilters = {},
      +
      +	/* Transports bindings
      +	 * 1) key is the dataType
      +	 * 2) the catchall symbol "*" can be used
      +	 * 3) selection will start with transport dataType and THEN go to "*" if needed
      +	 */
      +	transports = {},
      +
      +	// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
      +	allTypes = "*/".concat( "*" ),
      +
      +	// Anchor tag for parsing the document origin
      +	originAnchor = document.createElement( "a" );
      +	originAnchor.href = location.href;
      +
      +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
      +function addToPrefiltersOrTransports( structure ) {
      +
      +	// dataTypeExpression is optional and defaults to "*"
      +	return function( dataTypeExpression, func ) {
      +
      +		if ( typeof dataTypeExpression !== "string" ) {
      +			func = dataTypeExpression;
      +			dataTypeExpression = "*";
      +		}
      +
      +		var dataType,
      +			i = 0,
      +			dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];
      +
      +		if ( isFunction( func ) ) {
      +
      +			// For each dataType in the dataTypeExpression
      +			while ( ( dataType = dataTypes[ i++ ] ) ) {
      +
      +				// Prepend if requested
      +				if ( dataType[ 0 ] === "+" ) {
      +					dataType = dataType.slice( 1 ) || "*";
      +					( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );
      +
      +				// Otherwise append
      +				} else {
      +					( structure[ dataType ] = structure[ dataType ] || [] ).push( func );
      +				}
      +			}
      +		}
      +	};
      +}
      +
      +// Base inspection function for prefilters and transports
      +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
      +
      +	var inspected = {},
      +		seekingTransport = ( structure === transports );
      +
      +	function inspect( dataType ) {
      +		var selected;
      +		inspected[ dataType ] = true;
      +		jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
      +			var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
      +			if ( typeof dataTypeOrTransport === "string" &&
      +				!seekingTransport && !inspected[ dataTypeOrTransport ] ) {
      +
      +				options.dataTypes.unshift( dataTypeOrTransport );
      +				inspect( dataTypeOrTransport );
      +				return false;
      +			} else if ( seekingTransport ) {
      +				return !( selected = dataTypeOrTransport );
      +			}
      +		} );
      +		return selected;
      +	}
      +
      +	return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
      +}
      +
      +// A special extend for ajax options
      +// that takes "flat" options (not to be deep extended)
      +// Fixes #9887
      +function ajaxExtend( target, src ) {
      +	var key, deep,
      +		flatOptions = jQuery.ajaxSettings.flatOptions || {};
      +
      +	for ( key in src ) {
      +		if ( src[ key ] !== undefined ) {
      +			( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];
      +		}
      +	}
      +	if ( deep ) {
      +		jQuery.extend( true, target, deep );
      +	}
      +
      +	return target;
      +}
      +
      +/* Handles responses to an ajax request:
      + * - finds the right dataType (mediates between content-type and expected dataType)
      + * - returns the corresponding response
      + */
      +function ajaxHandleResponses( s, jqXHR, responses ) {
      +
      +	var ct, type, finalDataType, firstDataType,
      +		contents = s.contents,
      +		dataTypes = s.dataTypes;
      +
      +	// Remove auto dataType and get content-type in the process
      +	while ( dataTypes[ 0 ] === "*" ) {
      +		dataTypes.shift();
      +		if ( ct === undefined ) {
      +			ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" );
      +		}
      +	}
      +
      +	// Check if we're dealing with a known content-type
      +	if ( ct ) {
      +		for ( type in contents ) {
      +			if ( contents[ type ] && contents[ type ].test( ct ) ) {
      +				dataTypes.unshift( type );
      +				break;
      +			}
      +		}
      +	}
      +
      +	// Check to see if we have a response for the expected dataType
      +	if ( dataTypes[ 0 ] in responses ) {
      +		finalDataType = dataTypes[ 0 ];
      +	} else {
      +
      +		// Try convertible dataTypes
      +		for ( type in responses ) {
      +			if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) {
      +				finalDataType = type;
      +				break;
      +			}
      +			if ( !firstDataType ) {
      +				firstDataType = type;
      +			}
      +		}
      +
      +		// Or just use first one
      +		finalDataType = finalDataType || firstDataType;
      +	}
      +
      +	// If we found a dataType
      +	// We add the dataType to the list if needed
      +	// and return the corresponding response
      +	if ( finalDataType ) {
      +		if ( finalDataType !== dataTypes[ 0 ] ) {
      +			dataTypes.unshift( finalDataType );
      +		}
      +		return responses[ finalDataType ];
      +	}
      +}
      +
      +/* Chain conversions given the request and the original response
      + * Also sets the responseXXX fields on the jqXHR instance
      + */
      +function ajaxConvert( s, response, jqXHR, isSuccess ) {
      +	var conv2, current, conv, tmp, prev,
      +		converters = {},
      +
      +		// Work with a copy of dataTypes in case we need to modify it for conversion
      +		dataTypes = s.dataTypes.slice();
      +
      +	// Create converters map with lowercased keys
      +	if ( dataTypes[ 1 ] ) {
      +		for ( conv in s.converters ) {
      +			converters[ conv.toLowerCase() ] = s.converters[ conv ];
      +		}
      +	}
      +
      +	current = dataTypes.shift();
      +
      +	// Convert to each sequential dataType
      +	while ( current ) {
      +
      +		if ( s.responseFields[ current ] ) {
      +			jqXHR[ s.responseFields[ current ] ] = response;
      +		}
      +
      +		// Apply the dataFilter if provided
      +		if ( !prev && isSuccess && s.dataFilter ) {
      +			response = s.dataFilter( response, s.dataType );
      +		}
      +
      +		prev = current;
      +		current = dataTypes.shift();
      +
      +		if ( current ) {
      +
      +			// There's only work to do if current dataType is non-auto
      +			if ( current === "*" ) {
      +
      +				current = prev;
      +
      +			// Convert response if prev dataType is non-auto and differs from current
      +			} else if ( prev !== "*" && prev !== current ) {
      +
      +				// Seek a direct converter
      +				conv = converters[ prev + " " + current ] || converters[ "* " + current ];
      +
      +				// If none found, seek a pair
      +				if ( !conv ) {
      +					for ( conv2 in converters ) {
      +
      +						// If conv2 outputs current
      +						tmp = conv2.split( " " );
      +						if ( tmp[ 1 ] === current ) {
      +
      +							// If prev can be converted to accepted input
      +							conv = converters[ prev + " " + tmp[ 0 ] ] ||
      +								converters[ "* " + tmp[ 0 ] ];
      +							if ( conv ) {
      +
      +								// Condense equivalence converters
      +								if ( conv === true ) {
      +									conv = converters[ conv2 ];
      +
      +								// Otherwise, insert the intermediate dataType
      +								} else if ( converters[ conv2 ] !== true ) {
      +									current = tmp[ 0 ];
      +									dataTypes.unshift( tmp[ 1 ] );
      +								}
      +								break;
      +							}
      +						}
      +					}
      +				}
      +
      +				// Apply converter (if not an equivalence)
      +				if ( conv !== true ) {
      +
      +					// Unless errors are allowed to bubble, catch and return them
      +					if ( conv && s.throws ) {
      +						response = conv( response );
      +					} else {
      +						try {
      +							response = conv( response );
      +						} catch ( e ) {
      +							return {
      +								state: "parsererror",
      +								error: conv ? e : "No conversion from " + prev + " to " + current
      +							};
      +						}
      +					}
      +				}
      +			}
      +		}
      +	}
      +
      +	return { state: "success", data: response };
      +}
      +
      +jQuery.extend( {
      +
      +	// Counter for holding the number of active queries
      +	active: 0,
      +
      +	// Last-Modified header cache for next request
      +	lastModified: {},
      +	etag: {},
      +
      +	ajaxSettings: {
      +		url: location.href,
      +		type: "GET",
      +		isLocal: rlocalProtocol.test( location.protocol ),
      +		global: true,
      +		processData: true,
      +		async: true,
      +		contentType: "application/x-www-form-urlencoded; charset=UTF-8",
      +
      +		/*
      +		timeout: 0,
      +		data: null,
      +		dataType: null,
      +		username: null,
      +		password: null,
      +		cache: null,
      +		throws: false,
      +		traditional: false,
      +		headers: {},
      +		*/
      +
      +		accepts: {
      +			"*": allTypes,
      +			text: "text/plain",
      +			html: "text/html",
      +			xml: "application/xml, text/xml",
      +			json: "application/json, text/javascript"
      +		},
      +
      +		contents: {
      +			xml: /\bxml\b/,
      +			html: /\bhtml/,
      +			json: /\bjson\b/
      +		},
      +
      +		responseFields: {
      +			xml: "responseXML",
      +			text: "responseText",
      +			json: "responseJSON"
      +		},
      +
      +		// Data converters
      +		// Keys separate source (or catchall "*") and destination types with a single space
      +		converters: {
      +
      +			// Convert anything to text
      +			"* text": String,
      +
      +			// Text to html (true = no transformation)
      +			"text html": true,
      +
      +			// Evaluate text as a json expression
      +			"text json": JSON.parse,
      +
      +			// Parse text as xml
      +			"text xml": jQuery.parseXML
      +		},
      +
      +		// For options that shouldn't be deep extended:
      +		// you can add your own custom options here if
      +		// and when you create one that shouldn't be
      +		// deep extended (see ajaxExtend)
      +		flatOptions: {
      +			url: true,
      +			context: true
      +		}
      +	},
      +
      +	// Creates a full fledged settings object into target
      +	// with both ajaxSettings and settings fields.
      +	// If target is omitted, writes into ajaxSettings.
      +	ajaxSetup: function( target, settings ) {
      +		return settings ?
      +
      +			// Building a settings object
      +			ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
      +
      +			// Extending ajaxSettings
      +			ajaxExtend( jQuery.ajaxSettings, target );
      +	},
      +
      +	ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
      +	ajaxTransport: addToPrefiltersOrTransports( transports ),
      +
      +	// Main method
      +	ajax: function( url, options ) {
      +
      +		// If url is an object, simulate pre-1.5 signature
      +		if ( typeof url === "object" ) {
      +			options = url;
      +			url = undefined;
      +		}
      +
      +		// Force options to be an object
      +		options = options || {};
      +
      +		var transport,
      +
      +			// URL without anti-cache param
      +			cacheURL,
      +
      +			// Response headers
      +			responseHeadersString,
      +			responseHeaders,
      +
      +			// timeout handle
      +			timeoutTimer,
      +
      +			// Url cleanup var
      +			urlAnchor,
      +
      +			// Request state (becomes false upon send and true upon completion)
      +			completed,
      +
      +			// To know if global events are to be dispatched
      +			fireGlobals,
      +
      +			// Loop variable
      +			i,
      +
      +			// uncached part of the url
      +			uncached,
      +
      +			// Create the final options object
      +			s = jQuery.ajaxSetup( {}, options ),
      +
      +			// Callbacks context
      +			callbackContext = s.context || s,
      +
      +			// Context for global events is callbackContext if it is a DOM node or jQuery collection
      +			globalEventContext = s.context &&
      +				( callbackContext.nodeType || callbackContext.jquery ) ?
      +					jQuery( callbackContext ) :
      +					jQuery.event,
      +
      +			// Deferreds
      +			deferred = jQuery.Deferred(),
      +			completeDeferred = jQuery.Callbacks( "once memory" ),
      +
      +			// Status-dependent callbacks
      +			statusCode = s.statusCode || {},
      +
      +			// Headers (they are sent all at once)
      +			requestHeaders = {},
      +			requestHeadersNames = {},
      +
      +			// Default abort message
      +			strAbort = "canceled",
      +
      +			// Fake xhr
      +			jqXHR = {
      +				readyState: 0,
      +
      +				// Builds headers hashtable if needed
      +				getResponseHeader: function( key ) {
      +					var match;
      +					if ( completed ) {
      +						if ( !responseHeaders ) {
      +							responseHeaders = {};
      +							while ( ( match = rheaders.exec( responseHeadersString ) ) ) {
      +								responseHeaders[ match[ 1 ].toLowerCase() + " " ] =
      +									( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] )
      +										.concat( match[ 2 ] );
      +							}
      +						}
      +						match = responseHeaders[ key.toLowerCase() + " " ];
      +					}
      +					return match == null ? null : match.join( ", " );
      +				},
      +
      +				// Raw string
      +				getAllResponseHeaders: function() {
      +					return completed ? responseHeadersString : null;
      +				},
      +
      +				// Caches the header
      +				setRequestHeader: function( name, value ) {
      +					if ( completed == null ) {
      +						name = requestHeadersNames[ name.toLowerCase() ] =
      +							requestHeadersNames[ name.toLowerCase() ] || name;
      +						requestHeaders[ name ] = value;
      +					}
      +					return this;
      +				},
      +
      +				// Overrides response content-type header
      +				overrideMimeType: function( type ) {
      +					if ( completed == null ) {
      +						s.mimeType = type;
      +					}
      +					return this;
      +				},
      +
      +				// Status-dependent callbacks
      +				statusCode: function( map ) {
      +					var code;
      +					if ( map ) {
      +						if ( completed ) {
      +
      +							// Execute the appropriate callbacks
      +							jqXHR.always( map[ jqXHR.status ] );
      +						} else {
      +
      +							// Lazy-add the new callbacks in a way that preserves old ones
      +							for ( code in map ) {
      +								statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
      +							}
      +						}
      +					}
      +					return this;
      +				},
      +
      +				// Cancel the request
      +				abort: function( statusText ) {
      +					var finalText = statusText || strAbort;
      +					if ( transport ) {
      +						transport.abort( finalText );
      +					}
      +					done( 0, finalText );
      +					return this;
      +				}
      +			};
      +
      +		// Attach deferreds
      +		deferred.promise( jqXHR );
      +
      +		// Add protocol if not provided (prefilters might expect it)
      +		// Handle falsy url in the settings object (#10093: consistency with old signature)
      +		// We also use the url parameter if available
      +		s.url = ( ( url || s.url || location.href ) + "" )
      +			.replace( rprotocol, location.protocol + "//" );
      +
      +		// Alias method option to type as per ticket #12004
      +		s.type = options.method || options.type || s.method || s.type;
      +
      +		// Extract dataTypes list
      +		s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ];
      +
      +		// A cross-domain request is in order when the origin doesn't match the current origin.
      +		if ( s.crossDomain == null ) {
      +			urlAnchor = document.createElement( "a" );
      +
      +			// Support: IE <=8 - 11, Edge 12 - 15
      +			// IE throws exception on accessing the href property if url is malformed,
      +			// e.g. http://example.com:80x/
      +			try {
      +				urlAnchor.href = s.url;
      +
      +				// Support: IE <=8 - 11 only
      +				// Anchor's host property isn't correctly set when s.url is relative
      +				urlAnchor.href = urlAnchor.href;
      +				s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !==
      +					urlAnchor.protocol + "//" + urlAnchor.host;
      +			} catch ( e ) {
      +
      +				// If there is an error parsing the URL, assume it is crossDomain,
      +				// it can be rejected by the transport if it is invalid
      +				s.crossDomain = true;
      +			}
      +		}
      +
      +		// Convert data if not already a string
      +		if ( s.data && s.processData && typeof s.data !== "string" ) {
      +			s.data = jQuery.param( s.data, s.traditional );
      +		}
      +
      +		// Apply prefilters
      +		inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
      +
      +		// If request was aborted inside a prefilter, stop there
      +		if ( completed ) {
      +			return jqXHR;
      +		}
      +
      +		// We can fire global events as of now if asked to
      +		// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)
      +		fireGlobals = jQuery.event && s.global;
      +
      +		// Watch for a new set of requests
      +		if ( fireGlobals && jQuery.active++ === 0 ) {
      +			jQuery.event.trigger( "ajaxStart" );
      +		}
      +
      +		// Uppercase the type
      +		s.type = s.type.toUpperCase();
      +
      +		// Determine if request has content
      +		s.hasContent = !rnoContent.test( s.type );
      +
      +		// Save the URL in case we're toying with the If-Modified-Since
      +		// and/or If-None-Match header later on
      +		// Remove hash to simplify url manipulation
      +		cacheURL = s.url.replace( rhash, "" );
      +
      +		// More options handling for requests with no content
      +		if ( !s.hasContent ) {
      +
      +			// Remember the hash so we can put it back
      +			uncached = s.url.slice( cacheURL.length );
      +
      +			// If data is available and should be processed, append data to url
      +			if ( s.data && ( s.processData || typeof s.data === "string" ) ) {
      +				cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data;
      +
      +				// #9682: remove data so that it's not used in an eventual retry
      +				delete s.data;
      +			}
      +
      +			// Add or update anti-cache param if needed
      +			if ( s.cache === false ) {
      +				cacheURL = cacheURL.replace( rantiCache, "$1" );
      +				uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce++ ) + uncached;
      +			}
      +
      +			// Put hash and anti-cache on the URL that will be requested (gh-1732)
      +			s.url = cacheURL + uncached;
      +
      +		// Change '%20' to '+' if this is encoded form body content (gh-2658)
      +		} else if ( s.data && s.processData &&
      +			( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) {
      +			s.data = s.data.replace( r20, "+" );
      +		}
      +
      +		// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
      +		if ( s.ifModified ) {
      +			if ( jQuery.lastModified[ cacheURL ] ) {
      +				jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
      +			}
      +			if ( jQuery.etag[ cacheURL ] ) {
      +				jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
      +			}
      +		}
      +
      +		// Set the correct header, if data is being sent
      +		if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
      +			jqXHR.setRequestHeader( "Content-Type", s.contentType );
      +		}
      +
      +		// Set the Accepts header for the server, depending on the dataType
      +		jqXHR.setRequestHeader(
      +			"Accept",
      +			s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?
      +				s.accepts[ s.dataTypes[ 0 ] ] +
      +					( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
      +				s.accepts[ "*" ]
      +		);
      +
      +		// Check for headers option
      +		for ( i in s.headers ) {
      +			jqXHR.setRequestHeader( i, s.headers[ i ] );
      +		}
      +
      +		// Allow custom headers/mimetypes and early abort
      +		if ( s.beforeSend &&
      +			( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {
      +
      +			// Abort if not done already and return
      +			return jqXHR.abort();
      +		}
      +
      +		// Aborting is no longer a cancellation
      +		strAbort = "abort";
      +
      +		// Install callbacks on deferreds
      +		completeDeferred.add( s.complete );
      +		jqXHR.done( s.success );
      +		jqXHR.fail( s.error );
      +
      +		// Get transport
      +		transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
      +
      +		// If no transport, we auto-abort
      +		if ( !transport ) {
      +			done( -1, "No Transport" );
      +		} else {
      +			jqXHR.readyState = 1;
      +
      +			// Send global event
      +			if ( fireGlobals ) {
      +				globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
      +			}
      +
      +			// If request was aborted inside ajaxSend, stop there
      +			if ( completed ) {
      +				return jqXHR;
      +			}
      +
      +			// Timeout
      +			if ( s.async && s.timeout > 0 ) {
      +				timeoutTimer = window.setTimeout( function() {
      +					jqXHR.abort( "timeout" );
      +				}, s.timeout );
      +			}
      +
      +			try {
      +				completed = false;
      +				transport.send( requestHeaders, done );
      +			} catch ( e ) {
      +
      +				// Rethrow post-completion exceptions
      +				if ( completed ) {
      +					throw e;
      +				}
      +
      +				// Propagate others as results
      +				done( -1, e );
      +			}
      +		}
      +
      +		// Callback for when everything is done
      +		function done( status, nativeStatusText, responses, headers ) {
      +			var isSuccess, success, error, response, modified,
      +				statusText = nativeStatusText;
      +
      +			// Ignore repeat invocations
      +			if ( completed ) {
      +				return;
      +			}
      +
      +			completed = true;
      +
      +			// Clear timeout if it exists
      +			if ( timeoutTimer ) {
      +				window.clearTimeout( timeoutTimer );
      +			}
      +
      +			// Dereference transport for early garbage collection
      +			// (no matter how long the jqXHR object will be used)
      +			transport = undefined;
      +
      +			// Cache response headers
      +			responseHeadersString = headers || "";
      +
      +			// Set readyState
      +			jqXHR.readyState = status > 0 ? 4 : 0;
      +
      +			// Determine if successful
      +			isSuccess = status >= 200 && status < 300 || status === 304;
      +
      +			// Get response data
      +			if ( responses ) {
      +				response = ajaxHandleResponses( s, jqXHR, responses );
      +			}
      +
      +			// Convert no matter what (that way responseXXX fields are always set)
      +			response = ajaxConvert( s, response, jqXHR, isSuccess );
      +
      +			// If successful, handle type chaining
      +			if ( isSuccess ) {
      +
      +				// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
      +				if ( s.ifModified ) {
      +					modified = jqXHR.getResponseHeader( "Last-Modified" );
      +					if ( modified ) {
      +						jQuery.lastModified[ cacheURL ] = modified;
      +					}
      +					modified = jqXHR.getResponseHeader( "etag" );
      +					if ( modified ) {
      +						jQuery.etag[ cacheURL ] = modified;
      +					}
      +				}
      +
      +				// if no content
      +				if ( status === 204 || s.type === "HEAD" ) {
      +					statusText = "nocontent";
      +
      +				// if not modified
      +				} else if ( status === 304 ) {
      +					statusText = "notmodified";
      +
      +				// If we have data, let's convert it
      +				} else {
      +					statusText = response.state;
      +					success = response.data;
      +					error = response.error;
      +					isSuccess = !error;
      +				}
      +			} else {
      +
      +				// Extract error from statusText and normalize for non-aborts
      +				error = statusText;
      +				if ( status || !statusText ) {
      +					statusText = "error";
      +					if ( status < 0 ) {
      +						status = 0;
      +					}
      +				}
      +			}
      +
      +			// Set data for the fake xhr object
      +			jqXHR.status = status;
      +			jqXHR.statusText = ( nativeStatusText || statusText ) + "";
      +
      +			// Success/Error
      +			if ( isSuccess ) {
      +				deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
      +			} else {
      +				deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
      +			}
      +
      +			// Status-dependent callbacks
      +			jqXHR.statusCode( statusCode );
      +			statusCode = undefined;
      +
      +			if ( fireGlobals ) {
      +				globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
      +					[ jqXHR, s, isSuccess ? success : error ] );
      +			}
      +
      +			// Complete
      +			completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
      +
      +			if ( fireGlobals ) {
      +				globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
      +
      +				// Handle the global AJAX counter
      +				if ( !( --jQuery.active ) ) {
      +					jQuery.event.trigger( "ajaxStop" );
      +				}
      +			}
      +		}
      +
      +		return jqXHR;
      +	},
      +
      +	getJSON: function( url, data, callback ) {
      +		return jQuery.get( url, data, callback, "json" );
      +	},
      +
      +	getScript: function( url, callback ) {
      +		return jQuery.get( url, undefined, callback, "script" );
      +	}
      +} );
      +
      +jQuery.each( [ "get", "post" ], function( i, method ) {
      +	jQuery[ method ] = function( url, data, callback, type ) {
      +
      +		// Shift arguments if data argument was omitted
      +		if ( isFunction( data ) ) {
      +			type = type || callback;
      +			callback = data;
      +			data = undefined;
      +		}
      +
      +		// The url can be an options object (which then must have .url)
      +		return jQuery.ajax( jQuery.extend( {
      +			url: url,
      +			type: method,
      +			dataType: type,
      +			data: data,
      +			success: callback
      +		}, jQuery.isPlainObject( url ) && url ) );
      +	};
      +} );
      +
      +
      +jQuery._evalUrl = function( url, options ) {
      +	return jQuery.ajax( {
      +		url: url,
      +
      +		// Make this explicit, since user can override this through ajaxSetup (#11264)
      +		type: "GET",
      +		dataType: "script",
      +		cache: true,
      +		async: false,
      +		global: false,
      +
      +		// Only evaluate the response if it is successful (gh-4126)
      +		// dataFilter is not invoked for failure responses, so using it instead
      +		// of the default converter is kludgy but it works.
      +		converters: {
      +			"text script": function() {}
      +		},
      +		dataFilter: function( response ) {
      +			jQuery.globalEval( response, options );
      +		}
      +	} );
      +};
      +
      +
      +jQuery.fn.extend( {
      +	wrapAll: function( html ) {
      +		var wrap;
      +
      +		if ( this[ 0 ] ) {
      +			if ( isFunction( html ) ) {
      +				html = html.call( this[ 0 ] );
      +			}
      +
      +			// The elements to wrap the target around
      +			wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );
      +
      +			if ( this[ 0 ].parentNode ) {
      +				wrap.insertBefore( this[ 0 ] );
      +			}
      +
      +			wrap.map( function() {
      +				var elem = this;
      +
      +				while ( elem.firstElementChild ) {
      +					elem = elem.firstElementChild;
      +				}
      +
      +				return elem;
      +			} ).append( this );
      +		}
      +
      +		return this;
      +	},
      +
      +	wrapInner: function( html ) {
      +		if ( isFunction( html ) ) {
      +			return this.each( function( i ) {
      +				jQuery( this ).wrapInner( html.call( this, i ) );
      +			} );
      +		}
      +
      +		return this.each( function() {
      +			var self = jQuery( this ),
      +				contents = self.contents();
      +
      +			if ( contents.length ) {
      +				contents.wrapAll( html );
      +
      +			} else {
      +				self.append( html );
      +			}
      +		} );
      +	},
      +
      +	wrap: function( html ) {
      +		var htmlIsFunction = isFunction( html );
      +
      +		return this.each( function( i ) {
      +			jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );
      +		} );
      +	},
      +
      +	unwrap: function( selector ) {
      +		this.parent( selector ).not( "body" ).each( function() {
      +			jQuery( this ).replaceWith( this.childNodes );
      +		} );
      +		return this;
      +	}
      +} );
      +
      +
      +jQuery.expr.pseudos.hidden = function( elem ) {
      +	return !jQuery.expr.pseudos.visible( elem );
      +};
      +jQuery.expr.pseudos.visible = function( elem ) {
      +	return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );
      +};
      +
      +
      +
      +
      +jQuery.ajaxSettings.xhr = function() {
      +	try {
      +		return new window.XMLHttpRequest();
      +	} catch ( e ) {}
      +};
      +
      +var xhrSuccessStatus = {
      +
      +		// File protocol always yields status code 0, assume 200
      +		0: 200,
      +
      +		// Support: IE <=9 only
      +		// #1450: sometimes IE returns 1223 when it should be 204
      +		1223: 204
      +	},
      +	xhrSupported = jQuery.ajaxSettings.xhr();
      +
      +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
      +support.ajax = xhrSupported = !!xhrSupported;
      +
      +jQuery.ajaxTransport( function( options ) {
      +	var callback, errorCallback;
      +
      +	// Cross domain only allowed if supported through XMLHttpRequest
      +	if ( support.cors || xhrSupported && !options.crossDomain ) {
      +		return {
      +			send: function( headers, complete ) {
      +				var i,
      +					xhr = options.xhr();
      +
      +				xhr.open(
      +					options.type,
      +					options.url,
      +					options.async,
      +					options.username,
      +					options.password
      +				);
      +
      +				// Apply custom fields if provided
      +				if ( options.xhrFields ) {
      +					for ( i in options.xhrFields ) {
      +						xhr[ i ] = options.xhrFields[ i ];
      +					}
      +				}
      +
      +				// Override mime type if needed
      +				if ( options.mimeType && xhr.overrideMimeType ) {
      +					xhr.overrideMimeType( options.mimeType );
      +				}
      +
      +				// X-Requested-With header
      +				// For cross-domain requests, seeing as conditions for a preflight are
      +				// akin to a jigsaw puzzle, we simply never set it to be sure.
      +				// (it can always be set on a per-request basis or even using ajaxSetup)
      +				// For same-domain requests, won't change header if already provided.
      +				if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) {
      +					headers[ "X-Requested-With" ] = "XMLHttpRequest";
      +				}
      +
      +				// Set headers
      +				for ( i in headers ) {
      +					xhr.setRequestHeader( i, headers[ i ] );
      +				}
      +
      +				// Callback
      +				callback = function( type ) {
      +					return function() {
      +						if ( callback ) {
      +							callback = errorCallback = xhr.onload =
      +								xhr.onerror = xhr.onabort = xhr.ontimeout =
      +									xhr.onreadystatechange = null;
      +
      +							if ( type === "abort" ) {
      +								xhr.abort();
      +							} else if ( type === "error" ) {
      +
      +								// Support: IE <=9 only
      +								// On a manual native abort, IE9 throws
      +								// errors on any property access that is not readyState
      +								if ( typeof xhr.status !== "number" ) {
      +									complete( 0, "error" );
      +								} else {
      +									complete(
      +
      +										// File: protocol always yields status 0; see #8605, #14207
      +										xhr.status,
      +										xhr.statusText
      +									);
      +								}
      +							} else {
      +								complete(
      +									xhrSuccessStatus[ xhr.status ] || xhr.status,
      +									xhr.statusText,
      +
      +									// Support: IE <=9 only
      +									// IE9 has no XHR2 but throws on binary (trac-11426)
      +									// For XHR2 non-text, let the caller handle it (gh-2498)
      +									( xhr.responseType || "text" ) !== "text"  ||
      +									typeof xhr.responseText !== "string" ?
      +										{ binary: xhr.response } :
      +										{ text: xhr.responseText },
      +									xhr.getAllResponseHeaders()
      +								);
      +							}
      +						}
      +					};
      +				};
      +
      +				// Listen to events
      +				xhr.onload = callback();
      +				errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" );
      +
      +				// Support: IE 9 only
      +				// Use onreadystatechange to replace onabort
      +				// to handle uncaught aborts
      +				if ( xhr.onabort !== undefined ) {
      +					xhr.onabort = errorCallback;
      +				} else {
      +					xhr.onreadystatechange = function() {
      +
      +						// Check readyState before timeout as it changes
      +						if ( xhr.readyState === 4 ) {
      +
      +							// Allow onerror to be called first,
      +							// but that will not handle a native abort
      +							// Also, save errorCallback to a variable
      +							// as xhr.onerror cannot be accessed
      +							window.setTimeout( function() {
      +								if ( callback ) {
      +									errorCallback();
      +								}
      +							} );
      +						}
      +					};
      +				}
      +
      +				// Create the abort callback
      +				callback = callback( "abort" );
      +
      +				try {
      +
      +					// Do send the request (this may raise an exception)
      +					xhr.send( options.hasContent && options.data || null );
      +				} catch ( e ) {
      +
      +					// #14683: Only rethrow if this hasn't been notified as an error yet
      +					if ( callback ) {
      +						throw e;
      +					}
      +				}
      +			},
      +
      +			abort: function() {
      +				if ( callback ) {
      +					callback();
      +				}
      +			}
      +		};
      +	}
      +} );
      +
      +
      +
      +
      +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)
      +jQuery.ajaxPrefilter( function( s ) {
      +	if ( s.crossDomain ) {
      +		s.contents.script = false;
      +	}
      +} );
      +
      +// Install script dataType
      +jQuery.ajaxSetup( {
      +	accepts: {
      +		script: "text/javascript, application/javascript, " +
      +			"application/ecmascript, application/x-ecmascript"
      +	},
      +	contents: {
      +		script: /\b(?:java|ecma)script\b/
      +	},
      +	converters: {
      +		"text script": function( text ) {
      +			jQuery.globalEval( text );
      +			return text;
      +		}
      +	}
      +} );
      +
      +// Handle cache's special case and crossDomain
      +jQuery.ajaxPrefilter( "script", function( s ) {
      +	if ( s.cache === undefined ) {
      +		s.cache = false;
      +	}
      +	if ( s.crossDomain ) {
      +		s.type = "GET";
      +	}
      +} );
      +
      +// Bind script tag hack transport
      +jQuery.ajaxTransport( "script", function( s ) {
      +
      +	// This transport only deals with cross domain or forced-by-attrs requests
      +	if ( s.crossDomain || s.scriptAttrs ) {
      +		var script, callback;
      +		return {
      +			send: function( _, complete ) {
      +				script = jQuery( "<script>" )
      +					.attr( s.scriptAttrs || {} )
      +					.prop( { charset: s.scriptCharset, src: s.url } )
      +					.on( "load error", callback = function( evt ) {
      +						script.remove();
      +						callback = null;
      +						if ( evt ) {
      +							complete( evt.type === "error" ? 404 : 200, evt.type );
      +						}
      +					} );
      +
      +				// Use native DOM manipulation to avoid our domManip AJAX trickery
      +				document.head.appendChild( script[ 0 ] );
      +			},
      +			abort: function() {
      +				if ( callback ) {
      +					callback();
      +				}
      +			}
      +		};
      +	}
      +} );
      +
      +
      +
      +
      +var oldCallbacks = [],
      +	rjsonp = /(=)\?(?=&|$)|\?\?/;
      +
      +// Default jsonp settings
      +jQuery.ajaxSetup( {
      +	jsonp: "callback",
      +	jsonpCallback: function() {
      +		var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) );
      +		this[ callback ] = true;
      +		return callback;
      +	}
      +} );
      +
      +// Detect, normalize options and install callbacks for jsonp requests
      +jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
      +
      +	var callbackName, overwritten, responseContainer,
      +		jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?
      +			"url" :
      +			typeof s.data === "string" &&
      +				( s.contentType || "" )
      +					.indexOf( "application/x-www-form-urlencoded" ) === 0 &&
      +				rjsonp.test( s.data ) && "data"
      +		);
      +
      +	// Handle iff the expected data type is "jsonp" or we have a parameter to set
      +	if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {
      +
      +		// Get callback name, remembering preexisting value associated with it
      +		callbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?
      +			s.jsonpCallback() :
      +			s.jsonpCallback;
      +
      +		// Insert callback into url or form data
      +		if ( jsonProp ) {
      +			s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName );
      +		} else if ( s.jsonp !== false ) {
      +			s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
      +		}
      +
      +		// Use data converter to retrieve json after script execution
      +		s.converters[ "script json" ] = function() {
      +			if ( !responseContainer ) {
      +				jQuery.error( callbackName + " was not called" );
      +			}
      +			return responseContainer[ 0 ];
      +		};
      +
      +		// Force json dataType
      +		s.dataTypes[ 0 ] = "json";
      +
      +		// Install callback
      +		overwritten = window[ callbackName ];
      +		window[ callbackName ] = function() {
      +			responseContainer = arguments;
      +		};
      +
      +		// Clean-up function (fires after converters)
      +		jqXHR.always( function() {
      +
      +			// If previous value didn't exist - remove it
      +			if ( overwritten === undefined ) {
      +				jQuery( window ).removeProp( callbackName );
      +
      +			// Otherwise restore preexisting value
      +			} else {
      +				window[ callbackName ] = overwritten;
      +			}
      +
      +			// Save back as free
      +			if ( s[ callbackName ] ) {
      +
      +				// Make sure that re-using the options doesn't screw things around
      +				s.jsonpCallback = originalSettings.jsonpCallback;
      +
      +				// Save the callback name for future use
      +				oldCallbacks.push( callbackName );
      +			}
      +
      +			// Call if it was a function and we have a response
      +			if ( responseContainer && isFunction( overwritten ) ) {
      +				overwritten( responseContainer[ 0 ] );
      +			}
      +
      +			responseContainer = overwritten = undefined;
      +		} );
      +
      +		// Delegate to script
      +		return "script";
      +	}
      +} );
      +
      +
      +
      +
      +// Support: Safari 8 only
      +// In Safari 8 documents created via document.implementation.createHTMLDocument
      +// collapse sibling forms: the second one becomes a child of the first one.
      +// Because of that, this security measure has to be disabled in Safari 8.
      +// https://bugs.webkit.org/show_bug.cgi?id=137337
      +support.createHTMLDocument = ( function() {
      +	var body = document.implementation.createHTMLDocument( "" ).body;
      +	body.innerHTML = "<form></form><form></form>";
      +	return body.childNodes.length === 2;
      +} )();
      +
      +
      +// Argument "data" should be string of html
      +// context (optional): If specified, the fragment will be created in this context,
      +// defaults to document
      +// keepScripts (optional): If true, will include scripts passed in the html string
      +jQuery.parseHTML = function( data, context, keepScripts ) {
      +	if ( typeof data !== "string" ) {
      +		return [];
      +	}
      +	if ( typeof context === "boolean" ) {
      +		keepScripts = context;
      +		context = false;
      +	}
      +
      +	var base, parsed, scripts;
      +
      +	if ( !context ) {
      +
      +		// Stop scripts or inline event handlers from being executed immediately
      +		// by using document.implementation
      +		if ( support.createHTMLDocument ) {
      +			context = document.implementation.createHTMLDocument( "" );
      +
      +			// Set the base href for the created document
      +			// so any parsed elements with URLs
      +			// are based on the document's URL (gh-2965)
      +			base = context.createElement( "base" );
      +			base.href = document.location.href;
      +			context.head.appendChild( base );
      +		} else {
      +			context = document;
      +		}
      +	}
      +
      +	parsed = rsingleTag.exec( data );
      +	scripts = !keepScripts && [];
      +
      +	// Single tag
      +	if ( parsed ) {
      +		return [ context.createElement( parsed[ 1 ] ) ];
      +	}
      +
      +	parsed = buildFragment( [ data ], context, scripts );
      +
      +	if ( scripts && scripts.length ) {
      +		jQuery( scripts ).remove();
      +	}
      +
      +	return jQuery.merge( [], parsed.childNodes );
      +};
      +
      +
      +/**
      + * Load a url into a page
      + */
      +jQuery.fn.load = function( url, params, callback ) {
      +	var selector, type, response,
      +		self = this,
      +		off = url.indexOf( " " );
      +
      +	if ( off > -1 ) {
      +		selector = stripAndCollapse( url.slice( off ) );
      +		url = url.slice( 0, off );
      +	}
      +
      +	// If it's a function
      +	if ( isFunction( params ) ) {
      +
      +		// We assume that it's the callback
      +		callback = params;
      +		params = undefined;
      +
      +	// Otherwise, build a param string
      +	} else if ( params && typeof params === "object" ) {
      +		type = "POST";
      +	}
      +
      +	// If we have elements to modify, make the request
      +	if ( self.length > 0 ) {
      +		jQuery.ajax( {
      +			url: url,
      +
      +			// If "type" variable is undefined, then "GET" method will be used.
      +			// Make value of this field explicit since
      +			// user can override it through ajaxSetup method
      +			type: type || "GET",
      +			dataType: "html",
      +			data: params
      +		} ).done( function( responseText ) {
      +
      +			// Save response for use in complete callback
      +			response = arguments;
      +
      +			self.html( selector ?
      +
      +				// If a selector was specified, locate the right elements in a dummy div
      +				// Exclude scripts to avoid IE 'Permission Denied' errors
      +				jQuery( "<div>" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :
      +
      +				// Otherwise use the full result
      +				responseText );
      +
      +		// If the request succeeds, this function gets "data", "status", "jqXHR"
      +		// but they are ignored because response was set above.
      +		// If it fails, this function gets "jqXHR", "status", "error"
      +		} ).always( callback && function( jqXHR, status ) {
      +			self.each( function() {
      +				callback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );
      +			} );
      +		} );
      +	}
      +
      +	return this;
      +};
      +
      +
      +
      +
      +// Attach a bunch of functions for handling common AJAX events
      +jQuery.each( [
      +	"ajaxStart",
      +	"ajaxStop",
      +	"ajaxComplete",
      +	"ajaxError",
      +	"ajaxSuccess",
      +	"ajaxSend"
      +], function( i, type ) {
      +	jQuery.fn[ type ] = function( fn ) {
      +		return this.on( type, fn );
      +	};
      +} );
      +
      +
      +
      +
      +jQuery.expr.pseudos.animated = function( elem ) {
      +	return jQuery.grep( jQuery.timers, function( fn ) {
      +		return elem === fn.elem;
      +	} ).length;
      +};
      +
      +
      +
      +
      +jQuery.offset = {
      +	setOffset: function( elem, options, i ) {
      +		var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
      +			position = jQuery.css( elem, "position" ),
      +			curElem = jQuery( elem ),
      +			props = {};
      +
      +		// Set position first, in-case top/left are set even on static elem
      +		if ( position === "static" ) {
      +			elem.style.position = "relative";
      +		}
      +
      +		curOffset = curElem.offset();
      +		curCSSTop = jQuery.css( elem, "top" );
      +		curCSSLeft = jQuery.css( elem, "left" );
      +		calculatePosition = ( position === "absolute" || position === "fixed" ) &&
      +			( curCSSTop + curCSSLeft ).indexOf( "auto" ) > -1;
      +
      +		// Need to be able to calculate position if either
      +		// top or left is auto and position is either absolute or fixed
      +		if ( calculatePosition ) {
      +			curPosition = curElem.position();
      +			curTop = curPosition.top;
      +			curLeft = curPosition.left;
      +
      +		} else {
      +			curTop = parseFloat( curCSSTop ) || 0;
      +			curLeft = parseFloat( curCSSLeft ) || 0;
      +		}
      +
      +		if ( isFunction( options ) ) {
      +
      +			// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)
      +			options = options.call( elem, i, jQuery.extend( {}, curOffset ) );
      +		}
      +
      +		if ( options.top != null ) {
      +			props.top = ( options.top - curOffset.top ) + curTop;
      +		}
      +		if ( options.left != null ) {
      +			props.left = ( options.left - curOffset.left ) + curLeft;
      +		}
      +
      +		if ( "using" in options ) {
      +			options.using.call( elem, props );
      +
      +		} else {
      +			curElem.css( props );
      +		}
      +	}
      +};
      +
      +jQuery.fn.extend( {
      +
      +	// offset() relates an element's border box to the document origin
      +	offset: function( options ) {
      +
      +		// Preserve chaining for setter
      +		if ( arguments.length ) {
      +			return options === undefined ?
      +				this :
      +				this.each( function( i ) {
      +					jQuery.offset.setOffset( this, options, i );
      +				} );
      +		}
      +
      +		var rect, win,
      +			elem = this[ 0 ];
      +
      +		if ( !elem ) {
      +			return;
      +		}
      +
      +		// Return zeros for disconnected and hidden (display: none) elements (gh-2310)
      +		// Support: IE <=11 only
      +		// Running getBoundingClientRect on a
      +		// disconnected node in IE throws an error
      +		if ( !elem.getClientRects().length ) {
      +			return { top: 0, left: 0 };
      +		}
      +
      +		// Get document-relative position by adding viewport scroll to viewport-relative gBCR
      +		rect = elem.getBoundingClientRect();
      +		win = elem.ownerDocument.defaultView;
      +		return {
      +			top: rect.top + win.pageYOffset,
      +			left: rect.left + win.pageXOffset
      +		};
      +	},
      +
      +	// position() relates an element's margin box to its offset parent's padding box
      +	// This corresponds to the behavior of CSS absolute positioning
      +	position: function() {
      +		if ( !this[ 0 ] ) {
      +			return;
      +		}
      +
      +		var offsetParent, offset, doc,
      +			elem = this[ 0 ],
      +			parentOffset = { top: 0, left: 0 };
      +
      +		// position:fixed elements are offset from the viewport, which itself always has zero offset
      +		if ( jQuery.css( elem, "position" ) === "fixed" ) {
      +
      +			// Assume position:fixed implies availability of getBoundingClientRect
      +			offset = elem.getBoundingClientRect();
      +
      +		} else {
      +			offset = this.offset();
      +
      +			// Account for the *real* offset parent, which can be the document or its root element
      +			// when a statically positioned element is identified
      +			doc = elem.ownerDocument;
      +			offsetParent = elem.offsetParent || doc.documentElement;
      +			while ( offsetParent &&
      +				( offsetParent === doc.body || offsetParent === doc.documentElement ) &&
      +				jQuery.css( offsetParent, "position" ) === "static" ) {
      +
      +				offsetParent = offsetParent.parentNode;
      +			}
      +			if ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {
      +
      +				// Incorporate borders into its offset, since they are outside its content origin
      +				parentOffset = jQuery( offsetParent ).offset();
      +				parentOffset.top += jQuery.css( offsetParent, "borderTopWidth", true );
      +				parentOffset.left += jQuery.css( offsetParent, "borderLeftWidth", true );
      +			}
      +		}
      +
      +		// Subtract parent offsets and element margins
      +		return {
      +			top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ),
      +			left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true )
      +		};
      +	},
      +
      +	// This method will return documentElement in the following cases:
      +	// 1) For the element inside the iframe without offsetParent, this method will return
      +	//    documentElement of the parent window
      +	// 2) For the hidden or detached element
      +	// 3) For body or html element, i.e. in case of the html node - it will return itself
      +	//
      +	// but those exceptions were never presented as a real life use-cases
      +	// and might be considered as more preferable results.
      +	//
      +	// This logic, however, is not guaranteed and can change at any point in the future
      +	offsetParent: function() {
      +		return this.map( function() {
      +			var offsetParent = this.offsetParent;
      +
      +			while ( offsetParent && jQuery.css( offsetParent, "position" ) === "static" ) {
      +				offsetParent = offsetParent.offsetParent;
      +			}
      +
      +			return offsetParent || documentElement;
      +		} );
      +	}
      +} );
      +
      +// Create scrollLeft and scrollTop methods
      +jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) {
      +	var top = "pageYOffset" === prop;
      +
      +	jQuery.fn[ method ] = function( val ) {
      +		return access( this, function( elem, method, val ) {
      +
      +			// Coalesce documents and windows
      +			var win;
      +			if ( isWindow( elem ) ) {
      +				win = elem;
      +			} else if ( elem.nodeType === 9 ) {
      +				win = elem.defaultView;
      +			}
      +
      +			if ( val === undefined ) {
      +				return win ? win[ prop ] : elem[ method ];
      +			}
      +
      +			if ( win ) {
      +				win.scrollTo(
      +					!top ? val : win.pageXOffset,
      +					top ? val : win.pageYOffset
      +				);
      +
      +			} else {
      +				elem[ method ] = val;
      +			}
      +		}, method, val, arguments.length );
      +	};
      +} );
      +
      +// Support: Safari <=7 - 9.1, Chrome <=37 - 49
      +// Add the top/left cssHooks using jQuery.fn.position
      +// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
      +// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347
      +// getComputedStyle returns percent when specified for top/left/bottom/right;
      +// rather than make the css module depend on the offset module, just check for it here
      +jQuery.each( [ "top", "left" ], function( i, prop ) {
      +	jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
      +		function( elem, computed ) {
      +			if ( computed ) {
      +				computed = curCSS( elem, prop );
      +
      +				// If curCSS returns percentage, fallback to offset
      +				return rnumnonpx.test( computed ) ?
      +					jQuery( elem ).position()[ prop ] + "px" :
      +					computed;
      +			}
      +		}
      +	);
      +} );
      +
      +
      +// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
      +jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
      +	jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name },
      +		function( defaultExtra, funcName ) {
      +
      +		// Margin is only for outerHeight, outerWidth
      +		jQuery.fn[ funcName ] = function( margin, value ) {
      +			var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
      +				extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
      +
      +			return access( this, function( elem, type, value ) {
      +				var doc;
      +
      +				if ( isWindow( elem ) ) {
      +
      +					// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)
      +					return funcName.indexOf( "outer" ) === 0 ?
      +						elem[ "inner" + name ] :
      +						elem.document.documentElement[ "client" + name ];
      +				}
      +
      +				// Get document width or height
      +				if ( elem.nodeType === 9 ) {
      +					doc = elem.documentElement;
      +
      +					// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],
      +					// whichever is greatest
      +					return Math.max(
      +						elem.body[ "scroll" + name ], doc[ "scroll" + name ],
      +						elem.body[ "offset" + name ], doc[ "offset" + name ],
      +						doc[ "client" + name ]
      +					);
      +				}
      +
      +				return value === undefined ?
      +
      +					// Get width or height on the element, requesting but not forcing parseFloat
      +					jQuery.css( elem, type, extra ) :
      +
      +					// Set width or height on the element
      +					jQuery.style( elem, type, value, extra );
      +			}, type, chainable ? margin : undefined, chainable );
      +		};
      +	} );
      +} );
      +
      +
      +jQuery.each( ( "blur focus focusin focusout resize scroll click dblclick " +
      +	"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
      +	"change select submit keydown keypress keyup contextmenu" ).split( " " ),
      +	function( i, name ) {
      +
      +	// Handle event binding
      +	jQuery.fn[ name ] = function( data, fn ) {
      +		return arguments.length > 0 ?
      +			this.on( name, null, data, fn ) :
      +			this.trigger( name );
      +	};
      +} );
      +
      +jQuery.fn.extend( {
      +	hover: function( fnOver, fnOut ) {
      +		return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
      +	}
      +} );
      +
      +
      +
      +
      +jQuery.fn.extend( {
      +
      +	bind: function( types, data, fn ) {
      +		return this.on( types, null, data, fn );
      +	},
      +	unbind: function( types, fn ) {
      +		return this.off( types, null, fn );
      +	},
      +
      +	delegate: function( selector, types, data, fn ) {
      +		return this.on( types, selector, data, fn );
      +	},
      +	undelegate: function( selector, types, fn ) {
      +
      +		// ( namespace ) or ( selector, types [, fn] )
      +		return arguments.length === 1 ?
      +			this.off( selector, "**" ) :
      +			this.off( types, selector || "**", fn );
      +	}
      +} );
      +
      +// Bind a function to a context, optionally partially applying any
      +// arguments.
      +// jQuery.proxy is deprecated to promote standards (specifically Function#bind)
      +// However, it is not slated for removal any time soon
      +jQuery.proxy = function( fn, context ) {
      +	var tmp, args, proxy;
      +
      +	if ( typeof context === "string" ) {
      +		tmp = fn[ context ];
      +		context = fn;
      +		fn = tmp;
      +	}
      +
      +	// Quick check to determine if target is callable, in the spec
      +	// this throws a TypeError, but we will just return undefined.
      +	if ( !isFunction( fn ) ) {
      +		return undefined;
      +	}
      +
      +	// Simulated bind
      +	args = slice.call( arguments, 2 );
      +	proxy = function() {
      +		return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
      +	};
      +
      +	// Set the guid of unique handler to the same of original handler, so it can be removed
      +	proxy.guid = fn.guid = fn.guid || jQuery.guid++;
      +
      +	return proxy;
      +};
      +
      +jQuery.holdReady = function( hold ) {
      +	if ( hold ) {
      +		jQuery.readyWait++;
      +	} else {
      +		jQuery.ready( true );
      +	}
      +};
      +jQuery.isArray = Array.isArray;
      +jQuery.parseJSON = JSON.parse;
      +jQuery.nodeName = nodeName;
      +jQuery.isFunction = isFunction;
      +jQuery.isWindow = isWindow;
      +jQuery.camelCase = camelCase;
      +jQuery.type = toType;
      +
      +jQuery.now = Date.now;
      +
      +jQuery.isNumeric = function( obj ) {
      +
      +	// As of jQuery 3.0, isNumeric is limited to
      +	// strings and numbers (primitives or objects)
      +	// that can be coerced to finite numbers (gh-2662)
      +	var type = jQuery.type( obj );
      +	return ( type === "number" || type === "string" ) &&
      +
      +		// parseFloat NaNs numeric-cast false positives ("")
      +		// ...but misinterprets leading-number strings, particularly hex literals ("0x...")
      +		// subtraction forces infinities to NaN
      +		!isNaN( obj - parseFloat( obj ) );
      +};
      +
      +
      +
      +
      +// Register as a named AMD module, since jQuery can be concatenated with other
      +// files that may use define, but not via a proper concatenation script that
      +// understands anonymous AMD modules. A named AMD is safest and most robust
      +// way to register. Lowercase jquery is used because AMD module names are
      +// derived from file names, and jQuery is normally delivered in a lowercase
      +// file name. Do this after creating the global so that if an AMD module wants
      +// to call noConflict to hide this version of jQuery, it will work.
      +
      +// Note that for maximum portability, libraries that are not jQuery should
      +// declare themselves as anonymous modules, and avoid setting a global if an
      +// AMD loader is present. jQuery is a special case. For more information, see
      +// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon
      +
      +if ( typeof define === "function" && define.amd ) {
      +	define( "jquery", [], function() {
      +		return jQuery;
      +	} );
      +}
      +
      +
      +
      +
      +var
      +
      +	// Map over jQuery in case of overwrite
      +	_jQuery = window.jQuery,
      +
      +	// Map over the $ in case of overwrite
      +	_$ = window.$;
      +
      +jQuery.noConflict = function( deep ) {
      +	if ( window.$ === jQuery ) {
      +		window.$ = _$;
      +	}
      +
      +	if ( deep && window.jQuery === jQuery ) {
      +		window.jQuery = _jQuery;
      +	}
      +
      +	return jQuery;
      +};
      +
      +// Expose jQuery and $ identifiers, even in AMD
      +// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
      +// and CommonJS for browser emulators (#13566)
      +if ( !noGlobal ) {
      +	window.jQuery = window.$ = jQuery;
      +}
      +
      +
      +
      +
      +return jQuery;
      +} );
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/script-dir/jquery-3.6.0.min.js b/docs/site/testapidocs/script-dir/jquery-3.6.0.min.js
      new file mode 100644
      index 00000000..c4c6022f
      --- /dev/null
      +++ b/docs/site/testapidocs/script-dir/jquery-3.6.0.min.js
      @@ -0,0 +1,2 @@
      +/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */
      +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}S.fn=S.prototype={jquery:f,constructor:S,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=S.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return S.each(this,e)},map:function(n){return this.pushStack(S.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(S.grep(this,function(e,t){return(t+1)%2}))},odd:function(){return this.pushStack(S.grep(this,function(e,t){return t%2}))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},S.extend=S.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(S.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||S.isPlainObject(n)?n:{},i=!1,a[t]=S.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},S.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==o.call(e))&&(!(t=r(e))||"function"==typeof(n=v.call(t,"constructor")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){b(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(p(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(p(Object(e))?S.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(p(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g(a)},guid:1,support:y}),"function"==typeof Symbol&&(S.fn[Symbol.iterator]=t[Symbol.iterator]),S.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var d=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,S="sizzle"+1*new Date,p=n.document,k=0,r=0,m=ue(),x=ue(),A=ue(),N=ue(),j=function(e,t){return e===t&&(l=!0),0},D={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+M+"*\\]",F=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+W+")*)|.*)\\)|)",B=new RegExp(M+"+","g"),$=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="<a id='"+S+"'></a><select id='"+S+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0<se(t,C,null,[e]).length},se.contains=function(e,t){return(e.ownerDocument||e)!=C&&T(e),y(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=C&&T(e);var n=b.attrHandle[t.toLowerCase()],r=n&&D.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!==r?r:d.attributes||!E?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,n=[],r=0,i=0;if(l=!d.detectDuplicates,u=!d.sortStable&&e.slice(0),e.sort(j),l){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return u=null,e},o=se.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else while(t=e[r++])n+=o(t);return n},(b=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1<t.indexOf(i):"$="===r?i&&t.slice(-i.length)===i:"~="===r?-1<(" "+t.replace(B," ")+" ").indexOf(i):"|="===r&&(t===i||t.slice(0,i.length+1)===i+"-"))}},CHILD:function(h,e,t,g,v){var y="nth"!==h.slice(0,3),m="last"!==h.slice(-4),x="of-type"===e;return 1===g&&0===v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=y!==m?"nextSibling":"previousSibling",c=e.parentNode,f=x&&e.nodeName.toLowerCase(),p=!n&&!x,d=!1;if(c){if(y){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l="only"===h&&!u&&"nextSibling"}return!0}if(u=[m?c.firstChild:c.lastChild],m&&p){d=(s=(r=(i=(o=(a=c)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1])&&r[2],a=s&&c.childNodes[s];while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if(1===a.nodeType&&++d&&a===e){i[h]=[k,s,d];break}}else if(p&&(d=s=(r=(i=(o=(a=e)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1]),!1===d)while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&&++d&&(p&&((i=(o=a[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[k,d]),a===e))break;return(d-=v)===g||d%g==0&&0<=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return a[S]?a(o):1<a.length?(t=[e,e,"",o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace($,"$1"));return s[S]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0<se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1<(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||"")||se.error("unsupported lang: "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n<0?n+t:n]}),even:ve(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ve(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ve(function(e,t,n){for(var r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&"parentNode"===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[k,p];if(n){while(e=e[u])if((1===e.nodeType||f)&&s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[S]||(e[S]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&&l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&&r[0]===k&&r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(d,h,g,v,y,e){return v&&!v[S]&&(v=Ce(v)),y&&!y[S]&&(y=Ce(y,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(h||"*",n.nodeType?[n]:n,[]),f=!d||!e&&h?c:Te(c,s,d,n,r),p=g?y||(e?d:l||v)?[]:t:f;if(g&&g(f,p,n,r),v){i=Te(p,u),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(p[u[o]]=!(f[u[o]]=a))}if(e){if(y||d){if(y){i=[],o=p.length;while(o--)(a=p[o])&&i.push(f[o]=a);y(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&&-1<(i=y?P(e,a):s[o])&&(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[" "],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1<P(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[S]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return Ce(1<s&&we(c),1<s&&xe(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace($,"$1"),t,s<n&&Ee(e.slice(s,n)),n<r&&Ee(e=e.slice(n)),n<r&&xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+" "];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=_.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace($," ")}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=A[e+" "];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[S]?i.push(a):o.push(a);(a=A(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l="0",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG("*",i),h=k+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t==C||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument==C||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&&(k=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&se.uniqueSort(r)}return i&&(k=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&"ID"===(a=o[0]).type&&9===t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},d.sortStable=S.split("").sort(j).join("")===S,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement("fieldset"))}),ce(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||fe("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||fe("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(C);S.find=d,S.expr=d.selectors,S.expr[":"]=S.expr.pseudos,S.uniqueSort=S.unique=d.uniqueSort,S.text=d.getText,S.isXMLDoc=d.isXML,S.contains=d.contains,S.escapeSelector=d.escape;var h=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&S(e).is(n))break;r.push(e)}return r},T=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},k=S.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var N=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1<i.call(n,e)!==r}):S.filter(n,e,r)}S.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?S.find.matchesSelector(r,e)?[r]:[]:S.find.matches(e,S.grep(t,function(e){return 1===e.nodeType}))},S.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(S(e).filter(function(){for(t=0;t<r;t++)if(S.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)S.find(e,i[t],n);return 1<r?S.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&k.test(e)?S(e):e||[],!1).length}});var D,q=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(S.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&S(e);if(!k.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&S.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?S.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?i.call(S(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(S.uniqueSort(S.merge(this.get(),S(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),S.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return h(e,"parentNode")},parentsUntil:function(e,t,n){return h(e,"parentNode",n)},next:function(e){return O(e,"nextSibling")},prev:function(e){return O(e,"previousSibling")},nextAll:function(e){return h(e,"nextSibling")},prevAll:function(e){return h(e,"previousSibling")},nextUntil:function(e,t,n){return h(e,"nextSibling",n)},prevUntil:function(e,t,n){return h(e,"previousSibling",n)},siblings:function(e){return T((e.parentNode||{}).firstChild,e)},children:function(e){return T(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(A(e,"template")&&(e=e.content||e),S.merge([],e.childNodes))}},function(r,i){S.fn[r]=function(e,t){var n=S.map(this,i,e);return"Until"!==r.slice(-5)&&(t=e),t&&"string"==typeof t&&(n=S.filter(t,n)),1<this.length&&(H[r]||S.uniqueSort(n),L.test(r)&&n.reverse()),this.pushStack(n)}});var P=/[^\x20\t\r\n\f]+/g;function R(e){return e}function M(e){throw e}function I(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}S.Callbacks=function(r){var e,n;r="string"==typeof r?(e=r,n={},S.each(e.match(P)||[],function(e,t){n[t]=!0}),n):S.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:"")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){S.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&"string"!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return S.each(arguments,function(e,t){var n;while(-1<(n=S.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<S.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},S.extend({Deferred:function(e){var o=[["notify","progress",S.Callbacks("memory"),S.Callbacks("memory"),2],["resolve","done",S.Callbacks("once memory"),S.Callbacks("once memory"),0,"resolved"],["reject","fail",S.Callbacks("once memory"),S.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return S.Deferred(function(r){S.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+"With"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError("Thenable self-resolution");t=e&&("object"==typeof e||"function"==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,R,s),l(u,o,M,s)):(u++,t.call(e,l(u,o,R,s),l(u,o,M,s),l(u,o,R,o.notifyWith))):(a!==R&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){S.Deferred.exceptionHook&&S.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==M&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(S.Deferred.getStackHook&&(t.stackTrace=S.Deferred.getStackHook()),C.setTimeout(t))}}return S.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:R,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:R)),o[2][3].add(l(0,e,m(n)?n:M))}).promise()},promise:function(e){return null!=e?S.extend(e,a):a}},s={};return S.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=S.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(I(e,o.done(a(t)).resolve,o.reject,!n),"pending"===o.state()||m(i[t]&&i[t].then)))return o.then();while(t--)I(i[t],a(t),o.reject);return o.promise()}});var W=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;S.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&W.test(e.name)&&C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},S.readyException=function(e){C.setTimeout(function(){throw e})};var F=S.Deferred();function B(){E.removeEventListener("DOMContentLoaded",B),C.removeEventListener("load",B),S.ready()}S.fn.ready=function(e){return F.then(e)["catch"](function(e){S.readyException(e)}),this},S.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--S.readyWait:S.isReady)||(S.isReady=!0)!==e&&0<--S.readyWait||F.resolveWith(E,[S])}}),S.ready.then=F.then,"complete"===E.readyState||"loading"!==E.readyState&&!E.documentElement.doScroll?C.setTimeout(S.ready):(E.addEventListener("DOMContentLoaded",B),C.addEventListener("load",B));var $=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===w(n))for(s in i=!0,n)$(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(S(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},_=/^-ms-/,z=/-([a-z])/g;function U(e,t){return t.toUpperCase()}function X(e){return e.replace(_,"ms-").replace(z,U)}var V=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function G(){this.expando=S.expando+G.uid++}G.uid=1,G.prototype={cache:function(e){var t=e[this.expando];return t||(t={},V(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[X(t)]=n;else for(r in t)i[X(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][X(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(X):(t=X(t))in r?[t]:t.match(P)||[]).length;while(n--)delete r[t[n]]}(void 0===t||S.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!S.isEmptyObject(t)}};var Y=new G,Q=new G,J=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,K=/[A-Z]/g;function Z(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(K,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===(i=n)||"false"!==i&&("null"===i?null:i===+i+""?+i:J.test(i)?JSON.parse(i):i)}catch(e){}Q.set(e,t,n)}else n=void 0;return n}S.extend({hasData:function(e){return Q.hasData(e)||Y.hasData(e)},data:function(e,t,n){return Q.access(e,t,n)},removeData:function(e,t){Q.remove(e,t)},_data:function(e,t,n){return Y.access(e,t,n)},_removeData:function(e,t){Y.remove(e,t)}}),S.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=Q.get(o),1===o.nodeType&&!Y.get(o,"hasDataAttrs"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf("data-")&&(r=X(r.slice(5)),Z(o,r,i[r]));Y.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof n?this.each(function(){Q.set(this,n)}):$(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=Q.get(o,n))?t:void 0!==(t=Z(o,n))?t:void 0;this.each(function(){Q.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){Q.remove(this,e)})}}),S.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Y.get(e,t),n&&(!r||Array.isArray(n)?r=Y.access(e,t,S.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=S.queue(e,t),r=n.length,i=n.shift(),o=S._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){S.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Y.get(e,n)||Y.access(e,n,{empty:S.Callbacks("once memory").add(function(){Y.remove(e,[t+"queue",n])})})}}),S.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length<e?S.queue(this[0],t):void 0===n?this:this.each(function(){var e=S.queue(this,t,n);S._queueHooks(this,t),"fx"===t&&"inprogress"!==e[0]&&S.dequeue(this,t)})},dequeue:function(e){return this.each(function(){S.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=S.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=Y.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var ee=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,te=new RegExp("^(?:([+-])=|)("+ee+")([a-z%]*)$","i"),ne=["Top","Right","Bottom","Left"],re=E.documentElement,ie=function(e){return S.contains(e.ownerDocument,e)},oe={composed:!0};re.getRootNode&&(ie=function(e){return S.contains(e.ownerDocument,e)||e.getRootNode(oe)===e.ownerDocument});var ae=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&ie(e)&&"none"===S.css(e,"display")};function se(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return S.css(e,t,"")},u=s(),l=n&&n[3]||(S.cssNumber[t]?"":"px"),c=e.nodeType&&(S.cssNumber[t]||"px"!==l&&+u)&&te.exec(S.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)S.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,S.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ue={};function le(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?("none"===n&&(l[c]=Y.get(r,"display")||null,l[c]||(r.style.display="")),""===r.style.display&&ae(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ue[s])||(o=a.body.appendChild(a.createElement(s)),u=S.css(o,"display"),o.parentNode.removeChild(o),"none"===u&&(u="block"),ue[s]=u)))):"none"!==n&&(l[c]="none",Y.set(r,"display",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}S.fn.extend({show:function(){return le(this,!0)},hide:function(){return le(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){ae(this)?S(this).show():S(this).hide()})}});var ce,fe,pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="<textarea>x</textarea>",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="<option></option>",y.option=!!ce.lastChild;var ge={thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)Y.set(e[n],"globalEval",!t||Y.get(t[n],"globalEval"))}ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td,y.option||(ge.optgroup=ge.option=[1,"<select multiple='multiple'>","</select>"]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===w(o))S.merge(p,o.nodeType?[o]:o);else if(me.test(o)){a=a||f.appendChild(t.createElement("div")),s=(de.exec(o)||["",""])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+S.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;S.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&-1<S.inArray(o,r))i&&i.push(o);else if(l=ie(o),a=ve(f.appendChild(o),"script"),l&&ye(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}var be=/^([^.]*)(?:\.(.+)|)/;function we(){return!0}function Te(){return!1}function Ce(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ee(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ee(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Te;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return S().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=S.guid++)),e.each(function(){S.event.add(this,t,i,r,n)})}function Se(e,i,o){o?(Y.set(e,i,!1),S.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Y.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(S.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Y.set(this,i,r),t=o(this,i),this[i](),r!==(n=Y.get(this,i))||t?Y.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n&&n.value}else r.length&&(Y.set(this,i,{value:S.event.trigger(S.extend(r[0],S.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Y.get(e,i)&&S.event.add(e,i,we)}S.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.get(t);if(V(t)){n.handler&&(n=(o=n).handler,i=o.selector),i&&S.find.matchesSelector(re,i),n.guid||(n.guid=S.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof S&&S.event.triggered!==e.type?S.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(P)||[""]).length;while(l--)d=g=(s=be.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=S.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=S.event.special[d]||{},c=S.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&S.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),S.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.hasData(e)&&Y.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(P)||[""]).length;while(l--)if(d=g=(s=be.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=S.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||S.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)S.event.remove(e,d+t[l],n,r,!0);S.isEmptyObject(u)&&Y.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=S.event.fix(e),l=(Y.get(this,"events")||Object.create(null))[u.type]||[],c=S.event.special[u.type]||{};for(s[0]=u,t=1;t<arguments.length;t++)s[t]=arguments[t];if(u.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,u)){a=S.event.handlers.call(this,u,l),t=0;while((i=a[t++])&&!u.isPropagationStopped()){u.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!u.isImmediatePropagationStopped())u.rnamespace&&!1!==o.namespace&&!u.rnamespace.test(o.namespace)||(u.handleObj=o,u.data=o.data,void 0!==(r=((S.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1===(u.result=r)&&(u.preventDefault(),u.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,u),u.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<S(i,this).index(l):S.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(S.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[S.expando]?e:new S.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Se(t,"click",we),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Se(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,"input")&&Y.get(t,"click")||A(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},S.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},S.Event=function(e,t){if(!(this instanceof S.Event))return new S.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?we:Te,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&S.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[S.expando]=!0},S.Event.prototype={constructor:S.Event,isDefaultPrevented:Te,isPropagationStopped:Te,isImmediatePropagationStopped:Te,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=we,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=we,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=we,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},S.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:!0},S.event.addProp),S.each({focus:"focusin",blur:"focusout"},function(e,t){S.event.special[e]={setup:function(){return Se(this,e,Ce),!1},trigger:function(){return Se(this,e),!0},_default:function(){return!0},delegateType:t}}),S.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,i){S.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||S.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),S.fn.extend({on:function(e,t,n,r){return Ee(this,e,t,n,r)},one:function(e,t,n,r){return Ee(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,S(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Te),this.each(function(){S.event.remove(this,e,n,t)})}});var ke=/<script|<style|<link/i,Ae=/checked\s*(?:[^=]|=\s*.checked.)/i,Ne=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n<r;n++)S.event.add(t,i,s[i][n]);Q.hasData(e)&&(o=Q.access(e),a=S.extend({},o),Q.set(t,a))}}function He(n,r,i,o){r=g(r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&"string"==typeof d&&!y.checkClone&&Ae.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),He(t,r,i,o)});if(f&&(t=(e=xe(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=S.map(ve(e,"script"),De)).length;c<f;c++)u=e,c!==p&&(u=S.clone(u,!0,!0),s&&S.merge(a,ve(u,"script"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,S.map(a,qe),c=0;c<s;c++)u=a[c],he.test(u.type||"")&&!Y.access(u,"globalEval")&&S.contains(l,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?S._evalUrl&&!u.noModule&&S._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")},l):b(u.textContent.replace(Ne,""),u,l))}return n}function Oe(e,t,n){for(var r,i=t?S.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||S.cleanData(ve(r)),r.parentNode&&(n&&ie(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}S.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=ie(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||S.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r<i;r++)s=o[r],u=a[r],void 0,"input"===(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:"input"!==l&&"textarea"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve(c),r=0,i=o.length;r<i;r++)Le(o[r],a[r]);else Le(e,c);return 0<(a=ve(c,"script")).length&&ye(a,!f&&ve(e,"script")),c},cleanData:function(e){for(var t,n,r,i=S.event.special,o=0;void 0!==(n=e[o]);o++)if(V(n)){if(t=n[Y.expando]){if(t.events)for(r in t.events)i[r]?S.event.remove(n,r):S.removeEvent(n,r,t.handle);n[Y.expando]=void 0}n[Q.expando]&&(n[Q.expando]=void 0)}}}),S.fn.extend({detach:function(e){return Oe(this,e,!0)},remove:function(e){return Oe(this,e)},text:function(e){return $(this,function(e){return void 0===e?S.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return He(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||je(this,e).appendChild(e)})},prepend:function(){return He(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=je(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return He(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return He(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(S.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return S.clone(this,e,t)})},html:function(e){return $(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!ke.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=S.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(S.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return He(this,arguments,function(e){var t=this.parentNode;S.inArray(this,n)<0&&(S.cleanData(ve(this)),t&&t.replaceChild(e,this))},n)}}),S.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,a){S.fn[e]=function(e){for(var t,n=[],r=S(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),S(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var Pe=new RegExp("^("+ee+")(?!px)[a-z%]+$","i"),Re=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},Me=function(e,t,n){var r,i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.call(e),t)e.style[i]=o[i];return r},Ie=new RegExp(ne.join("|"),"i");function We(e,t,n){var r,i,o,a,s=e.style;return(n=n||Re(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||ie(e)||(a=S.style(e,t)),!y.pixelBoxStyles()&&Pe.test(a)&&Ie.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function Fe(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(l){u.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",l.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",re.appendChild(u).appendChild(l);var e=C.getComputedStyle(l);n="1%"!==e.top,s=12===t(e.marginLeft),l.style.right="60%",o=36===t(e.right),r=36===t(e.width),l.style.position="absolute",i=12===t(l.offsetWidth/3),re.removeChild(u),l=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s,u=E.createElement("div"),l=E.createElement("div");l.style&&(l.style.backgroundClip="content-box",l.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===l.style.backgroundClip,S.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),s},scrollboxSize:function(){return e(),i},reliableTrDimensions:function(){var e,t,n,r;return null==a&&(e=E.createElement("table"),t=E.createElement("tr"),n=E.createElement("div"),e.style.cssText="position:absolute;left:-11111px;border-collapse:separate",t.style.cssText="border:1px solid",t.style.height="1px",n.style.height="9px",n.style.display="block",re.appendChild(e).appendChild(t).appendChild(n),r=C.getComputedStyle(t),a=parseInt(r.height,10)+parseInt(r.borderTopWidth,10)+parseInt(r.borderBottomWidth,10)===t.offsetHeight,re.removeChild(e)),a}}))}();var Be=["Webkit","Moz","ms"],$e=E.createElement("div").style,_e={};function ze(e){var t=S.cssProps[e]||_e[e];return t||(e in $e?e:_e[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=Be.length;while(n--)if((e=Be[n]+t)in $e)return e}(e)||e)}var Ue=/^(none|table(?!-c[ea]).+)/,Xe=/^--/,Ve={position:"absolute",visibility:"hidden",display:"block"},Ge={letterSpacing:"0",fontWeight:"400"};function Ye(e,t,n){var r=te.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function Qe(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=S.css(e,n+ne[a],!0,i)),r?("content"===n&&(u-=S.css(e,"padding"+ne[a],!0,i)),"margin"!==n&&(u-=S.css(e,"border"+ne[a]+"Width",!0,i))):(u+=S.css(e,"padding"+ne[a],!0,i),"padding"!==n?u+=S.css(e,"border"+ne[a]+"Width",!0,i):s+=S.css(e,"border"+ne[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function Je(e,t,n){var r=Re(e),i=(!y.boxSizingReliable()||n)&&"border-box"===S.css(e,"boxSizing",!1,r),o=i,a=We(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(Pe.test(a)){if(!n)return a;a="auto"}return(!y.boxSizingReliable()&&i||!y.reliableTrDimensions()&&A(e,"tr")||"auto"===a||!parseFloat(a)&&"inline"===S.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===S.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Qe(e,t,n||(i?"border":"content"),o,r,a)+"px"}function Ke(e,t,n,r,i){return new Ke.prototype.init(e,t,n,r,i)}S.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=We(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=X(t),u=Xe.test(t),l=e.style;if(u||(t=ze(s)),a=S.cssHooks[t]||S.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=te.exec(n))&&i[1]&&(n=se(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(S.cssNumber[s]?"":"px")),y.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=X(t);return Xe.test(t)||(t=ze(s)),(a=S.cssHooks[t]||S.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=We(e,t,r)),"normal"===i&&t in Ge&&(i=Ge[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),S.each(["height","width"],function(e,u){S.cssHooks[u]={get:function(e,t,n){if(t)return!Ue.test(S.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?Je(e,u,n):Me(e,Ve,function(){return Je(e,u,n)})},set:function(e,t,n){var r,i=Re(e),o=!y.scrollboxSize()&&"absolute"===i.position,a=(o||n)&&"border-box"===S.css(e,"boxSizing",!1,i),s=n?Qe(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e["offset"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-Qe(e,u,"border",!1,i)-.5)),s&&(r=te.exec(t))&&"px"!==(r[3]||"px")&&(e.style[u]=t,t=S.css(e,u)),Ye(0,t,s)}}}),S.cssHooks.marginLeft=Fe(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(We(e,"marginLeft"))||e.getBoundingClientRect().left-Me(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),S.each({margin:"",padding:"",border:"Width"},function(i,o){S.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"==typeof e?e.split(" "):[e];t<4;t++)n[i+ne[t]+o]=r[t]||r[t-2]||r[0];return n}},"margin"!==i&&(S.cssHooks[i+o].set=Ye)}),S.fn.extend({css:function(e,t){return $(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Re(e),i=t.length;a<i;a++)o[t[a]]=S.css(e,t[a],!1,r);return o}return void 0!==n?S.style(e,t,n):S.css(e,t)},e,t,1<arguments.length)}}),((S.Tween=Ke).prototype={constructor:Ke,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||S.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(S.cssNumber[n]?"":"px")},cur:function(){var e=Ke.propHooks[this.prop];return e&&e.get?e.get(this):Ke.propHooks._default.get(this)},run:function(e){var t,n=Ke.propHooks[this.prop];return this.options.duration?this.pos=t=S.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):Ke.propHooks._default.set(this),this}}).init.prototype=Ke.prototype,(Ke.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=S.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){S.fx.step[e.prop]?S.fx.step[e.prop](e):1!==e.elem.nodeType||!S.cssHooks[e.prop]&&null==e.elem.style[ze(e.prop)]?e.elem[e.prop]=e.now:S.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=Ke.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},S.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},S.fx=Ke.prototype.init,S.fx.step={};var Ze,et,tt,nt,rt=/^(?:toggle|show|hide)$/,it=/queueHooks$/;function ot(){et&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(ot):C.setTimeout(ot,S.fx.interval),S.fx.tick())}function at(){return C.setTimeout(function(){Ze=void 0}),Ze=Date.now()}function st(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=ne[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function ut(e,t,n){for(var r,i=(lt.tweeners[t]||[]).concat(lt.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function lt(o,e,t){var n,a,r=0,i=lt.prefilters.length,s=S.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=Ze||at(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:S.extend({},e),opts:S.extend(!0,{specialEasing:{},easing:S.easing._default},t),originalProperties:e,originalOptions:t,startTime:Ze||at(),duration:t.duration,tweens:[],createTween:function(e,t){var n=S.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=X(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=S.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=lt.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(S._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return S.map(c,ut,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),S.fx.timer(S.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}S.Animation=S.extend(lt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return se(n.elem,e,te.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match(P);for(var n,r=0,i=e.length;r<i;r++)n=e[r],lt.tweeners[n]=lt.tweeners[n]||[],lt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&ae(e),v=Y.get(e,"fxshow");for(r in n.queue||(null==(a=S._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,S.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],rt.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||S.style(e,r)}if((u=!S.isEmptyObject(t))||!S.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=Y.get(e,"display")),"none"===(c=S.css(e,"display"))&&(l?c=l:(le([e],!0),l=e.style.display||l,c=S.css(e,"display"),le([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===S.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=Y.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&le([e],!0),p.done(function(){for(r in g||le([e]),Y.remove(e,"fxshow"),d)S.style(e,r,d[r])})),u=ut(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?lt.prefilters.unshift(e):lt.prefilters.push(e)}}),S.speed=function(e,t,n){var r=e&&"object"==typeof e?S.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return S.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in S.fx.speeds?r.duration=S.fx.speeds[r.duration]:r.duration=S.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&S.dequeue(this,r.queue)},r},S.fn.extend({fadeTo:function(e,t,n,r){return this.filter(ae).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=S.isEmptyObject(t),o=S.speed(e,n,r),a=function(){var e=lt(this,S.extend({},t),o);(i||Y.get(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&this.queue(i||"fx",[]),this.each(function(){var e=!0,t=null!=i&&i+"queueHooks",n=S.timers,r=Y.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&it.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||S.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Y.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=S.timers,o=n?n.length:0;for(t.finish=!0,S.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),S.each(["toggle","show","hide"],function(e,r){var i=S.fn[r];S.fn[r]=function(e,t,n){return null==e||"boolean"==typeof e?i.apply(this,arguments):this.animate(st(r,!0),e,t,n)}}),S.each({slideDown:st("show"),slideUp:st("hide"),slideToggle:st("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,r){S.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),S.timers=[],S.fx.tick=function(){var e,t=0,n=S.timers;for(Ze=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||S.fx.stop(),Ze=void 0},S.fx.timer=function(e){S.timers.push(e),S.fx.start()},S.fx.interval=13,S.fx.start=function(){et||(et=!0,ot())},S.fx.stop=function(){et=null},S.fx.speeds={slow:600,fast:200,_default:400},S.fn.delay=function(r,e){return r=S.fx&&S.fx.speeds[r]||r,e=e||"fx",this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},tt=E.createElement("input"),nt=E.createElement("select").appendChild(E.createElement("option")),tt.type="checkbox",y.checkOn=""!==tt.value,y.optSelected=nt.selected,(tt=E.createElement("input")).value="t",tt.type="radio",y.radioValue="t"===tt.value;var ct,ft=S.expr.attrHandle;S.fn.extend({attr:function(e,t){return $(this,S.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){S.removeAttr(this,e)})}}),S.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?S.prop(e,t,n):(1===o&&S.isXMLDoc(e)||(i=S.attrHooks[t.toLowerCase()]||(S.expr.match.bool.test(t)?ct:void 0)),void 0!==n?null===n?void S.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=S.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValue&&"radio"===t&&A(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(P);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),ct={set:function(e,t,n){return!1===t?S.removeAttr(e,n):e.setAttribute(n,n),n}},S.each(S.expr.match.bool.source.match(/\w+/g),function(e,t){var a=ft[t]||S.find.attr;ft[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=ft[o],ft[o]=r,r=null!=a(e,t,n)?o:null,ft[o]=i),r}});var pt=/^(?:input|select|textarea|button)$/i,dt=/^(?:a|area)$/i;function ht(e){return(e.match(P)||[]).join(" ")}function gt(e){return e.getAttribute&&e.getAttribute("class")||""}function vt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(P)||[]}S.fn.extend({prop:function(e,t){return $(this,S.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[S.propFix[e]||e]})}}),S.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&S.isXMLDoc(e)||(t=S.propFix[t]||t,i=S.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=S.find.attr(e,"tabindex");return t?parseInt(t,10):pt.test(e.nodeName)||dt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),y.optSelected||(S.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),S.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){S.propFix[this.toLowerCase()]=this}),S.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).addClass(t.call(this,e,gt(this)))});if((e=vt(t)).length)while(n=this[u++])if(i=gt(n),r=1===n.nodeType&&" "+ht(i)+" "){a=0;while(o=e[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=ht(r))&&n.setAttribute("class",s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).removeClass(t.call(this,e,gt(this)))});if(!arguments.length)return this.attr("class","");if((e=vt(t)).length)while(n=this[u++])if(i=gt(n),r=1===n.nodeType&&" "+ht(i)+" "){a=0;while(o=e[a++])while(-1<r.indexOf(" "+o+" "))r=r.replace(" "+o+" "," ");i!==(s=ht(r))&&n.setAttribute("class",s)}return this},toggleClass:function(i,t){var o=typeof i,a="string"===o||Array.isArray(i);return"boolean"==typeof t&&a?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){S(this).toggleClass(i.call(this,e,gt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t=0,n=S(this),r=vt(i);while(e=r[t++])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!==i&&"boolean"!==o||((e=gt(this))&&Y.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===i?"":Y.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&-1<(" "+ht(gt(n))+" ").indexOf(t))return!0;return!1}});var yt=/\r/g;S.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,S(this).val()):n)?t="":"number"==typeof t?t+="":Array.isArray(t)&&(t=S.map(t,function(e){return null==e?"":e+""})),(r=S.valHooks[this.type]||S.valHooks[this.nodeName.toLowerCase()])&&"set"in r&&void 0!==r.set(this,t,"value")||(this.value=t))})):t?(r=S.valHooks[t.type]||S.valHooks[t.nodeName.toLowerCase()])&&"get"in r&&void 0!==(e=r.get(t,"value"))?e:"string"==typeof(e=t.value)?e.replace(yt,""):null==e?"":e:void 0}}),S.extend({valHooks:{option:{get:function(e){var t=S.find.attr(e,"value");return null!=t?t:ht(S.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!A(n.parentNode,"optgroup"))){if(t=S(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=S.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<S.inArray(S.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),S.each(["radio","checkbox"],function(){S.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<S.inArray(S(e).val(),t)}},y.checkOn||(S.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),y.focusin="onfocusin"in C;var mt=/^(?:focusinfocus|focusoutblur)$/,xt=function(e){e.stopPropagation()};S.extend(S.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,"type")?e.type:e,h=v.call(e,"namespace")?e.namespace.split("."):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!mt.test(d+S.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[S.expando]?e:new S.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:S.makeArray(t,[e]),c=S.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!x(n)){for(s=c.delegateType||d,mt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&&p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(Y.get(o,"events")||Object.create(null))[e.type]&&Y.get(o,"handle"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&V(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!V(n)||u&&m(n[d])&&!x(n)&&((a=n[u])&&(n[u]=null),S.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,xt),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,xt),S.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=S.extend(new S.Event,n,{type:e,isSimulated:!0});S.event.trigger(r,null,t)}}),S.fn.extend({trigger:function(e,t){return this.each(function(){S.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return S.event.trigger(e,t,n,!0)}}),y.focusin||S.each({focus:"focusin",blur:"focusout"},function(n,r){var i=function(e){S.event.simulate(r,e.target,S.event.fix(e))};S.event.special[r]={setup:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r);t||e.addEventListener(n,i,!0),Y.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r)-1;t?Y.access(e,r,t):(e.removeEventListener(n,i,!0),Y.remove(e,r))}}});var bt=C.location,wt={guid:Date.now()},Tt=/\?/;S.parseXML=function(e){var t,n;if(!e||"string"!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(e){}return n=t&&t.getElementsByTagName("parsererror")[0],t&&!n||S.error("Invalid XML: "+(n?S.map(n.childNodes,function(e){return e.textContent}).join("\n"):e)),t};var Ct=/\[\]$/,Et=/\r?\n/g,St=/^(?:submit|button|image|reset|file)$/i,kt=/^(?:input|select|textarea|keygen)/i;function At(n,e,r,i){var t;if(Array.isArray(e))S.each(e,function(e,t){r||Ct.test(n)?i(n,t):At(n+"["+("object"==typeof t&&null!=t?e:"")+"]",t,r,i)});else if(r||"object"!==w(e))i(n,e);else for(t in e)At(n+"["+t+"]",e[t],r,i)}S.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!S.isPlainObject(e))S.each(e,function(){i(this.name,this.value)});else for(n in e)At(n,e[n],t,i);return r.join("&")},S.fn.extend({serialize:function(){return S.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=S.prop(this,"elements");return e?S.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!S(this).is(":disabled")&&kt.test(this.nodeName)&&!St.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=S(this).val();return null==n?null:Array.isArray(n)?S.map(n,function(e){return{name:t.name,value:e.replace(Et,"\r\n")}}):{name:t.name,value:n.replace(Et,"\r\n")}}).get()}});var Nt=/%20/g,jt=/#.*$/,Dt=/([?&])_=[^&]*/,qt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Lt=/^(?:GET|HEAD)$/,Ht=/^\/\//,Ot={},Pt={},Rt="*/".concat("*"),Mt=E.createElement("a");function It(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var n,r=0,i=e.toLowerCase().match(P)||[];if(m(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"*",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function Wt(t,i,o,a){var s={},u=t===Pt;function l(e){var r;return s[e]=!0,S.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s["*"]&&l("*")}function Ft(e,t){var n,r,i=S.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&S.extend(!0,e,r),e}Mt.href=bt.href,S.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:bt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(bt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Rt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":S.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Ft(Ft(e,S.ajaxSettings),t):Ft(S.ajaxSettings,e)},ajaxPrefilter:It(Ot),ajaxTransport:It(Pt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=S.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?S(y):S.event,x=S.Deferred(),b=S.Callbacks("once memory"),w=v.statusCode||{},a={},s={},u="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=qt.exec(p))n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}t=n[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||bt.href)+"").replace(Ht,bt.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match(P)||[""],null==v.crossDomain){r=E.createElement("a");try{r.href=v.url,r.href=r.href,v.crossDomain=Mt.protocol+"//"+Mt.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&"string"!=typeof v.data&&(v.data=S.param(v.data,v.traditional)),Wt(Ot,v,t,T),h)return T;for(i in(g=S.event&&v.global)&&0==S.active++&&S.event.trigger("ajaxStart"),v.type=v.type.toUpperCase(),v.hasContent=!Lt.test(v.type),f=v.url.replace(jt,""),v.hasContent?v.data&&v.processData&&0===(v.contentType||"").indexOf("application/x-www-form-urlencoded")&&(v.data=v.data.replace(Nt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(Tt.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(Dt,"$1"),o=(Tt.test(f)?"&":"?")+"_="+wt.guid+++o),v.url=f+o),v.ifModified&&(S.lastModified[f]&&T.setRequestHeader("If-Modified-Since",S.lastModified[f]),S.etag[f]&&T.setRequestHeader("If-None-Match",S.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader("Content-Type",v.contentType),T.setRequestHeader("Accept",v.dataTypes[0]&&v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+("*"!==v.dataTypes[0]?", "+Rt+"; q=0.01":""):v.accepts["*"]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&&(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u="abort",b.add(v.complete),T.done(v.success),T.fail(v.error),c=Wt(Pt,v,t,T)){if(T.readyState=1,g&&m.trigger("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=C.setTimeout(function(){T.abort("timeout")},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,"No Transport");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=void 0,p=r||"",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(v,T,n)),!i&&-1<S.inArray("script",v.dataTypes)&&S.inArray("json",v.dataTypes)<0&&(v.converters["text script"]=function(){}),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(v,s,T,i),i?(v.ifModified&&((u=T.getResponseHeader("Last-Modified"))&&(S.lastModified[f]=u),(u=T.getResponseHeader("etag"))&&(S.etag[f]=u)),204===e||"HEAD"===v.type?l="nocontent":304===e?l="notmodified":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l="error",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+"",i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?"ajaxSuccess":"ajaxError",[T,v,i?o:a]),b.fireWith(y,[T,l]),g&&(m.trigger("ajaxComplete",[T,v]),--S.active||S.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return S.get(e,t,n,"json")},getScript:function(e,t){return S.get(e,void 0,t,"script")}}),S.each(["get","post"],function(e,i){S[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),S.ajax(S.extend({url:e,type:i,dataType:r,data:t,success:n},S.isPlainObject(e)&&e))}}),S.ajaxPrefilter(function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")}),S._evalUrl=function(e,t,n){return S.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){S.globalEval(e,t,n)}})},S.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=S(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){S(this).wrapInner(n.call(this,e))}):this.each(function(){var e=S(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){S(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not("body").each(function(){S(this).replaceWith(this.childNodes)}),this}}),S.expr.pseudos.hidden=function(e){return!S.expr.pseudos.visible(e)},S.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},S.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var Bt={0:200,1223:204},$t=S.ajaxSettings.xhr();y.cors=!!$t&&"withCredentials"in $t,y.ajax=$t=!!$t,S.ajaxTransport(function(i){var o,a;if(y.cors||$t&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(Bt[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&C.setTimeout(function(){o&&a()})},o=o("abort");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),S.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),S.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return S.globalEval(e),e}}}),S.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),S.ajaxTransport("script",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=S("<script>").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1<s&&(r=ht(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),0<a.length&&S.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?S("<div>").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}});var Xt=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;S.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||S.guid++,i},S.holdReady=function(e){e?S.readyWait++:S.ready(!0)},S.isArray=Array.isArray,S.parseJSON=JSON.parse,S.nodeName=A,S.isFunction=m,S.isWindow=x,S.camelCase=X,S.type=w,S.now=Date.now,S.isNumeric=function(e){var t=S.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},S.trim=function(e){return null==e?"":(e+"").replace(Xt,"")},"function"==typeof define&&define.amd&&define("jquery",[],function(){return S});var Vt=C.jQuery,Gt=C.$;return S.noConflict=function(e){return C.$===S&&(C.$=Gt),e&&C.jQuery===S&&(C.jQuery=Vt),S},"undefined"==typeof e&&(C.jQuery=C.$=S),S});
      diff --git a/docs/site/testapidocs/script-dir/jquery-ui.css b/docs/site/testapidocs/script-dir/jquery-ui.css
      new file mode 100644
      index 00000000..c4487b41
      --- /dev/null
      +++ b/docs/site/testapidocs/script-dir/jquery-ui.css
      @@ -0,0 +1,582 @@
      +/*! jQuery UI - v1.12.1 - 2018-12-06
      +* http://jqueryui.com
      +* Includes: core.css, autocomplete.css, menu.css, theme.css
      +* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=custom-theme&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgImgOpacityContent=75&bgImgOpacityHeader=75&cornerRadiusShadow=8px&offsetLeftShadow=-8px&offsetTopShadow=-8px&thicknessShadow=8px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=%23aaaaaa&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=%23aaaaaa&iconColorError=%23cd0a0a&fcError=%23cd0a0a&borderColorError=%23cd0a0a&bgTextureError=glass&bgColorError=%23fef1ec&iconColorHighlight=%232e83ff&fcHighlight=%23363636&borderColorHighlight=%23fcefa1&bgTextureHighlight=glass&bgColorHighlight=%23fbf9ee&iconColorActive=%23454545&fcActive=%23212121&borderColorActive=%23aaaaaa&bgTextureActive=glass&bgColorActive=%23dadada&iconColorHover=%23454545&fcHover=%23212121&borderColorHover=%23999999&bgTextureHover=glass&bgColorHover=%23dadada&iconColorDefault=%23888888&fcDefault=%23555555&borderColorDefault=%23d3d3d3&bgTextureDefault=glass&bgColorDefault=%23e6e6e6&iconColorContent=%23222222&fcContent=%23222222&borderColorContent=%23aaaaaa&bgTextureContent=flat&bgColorContent=%23ffffff&iconColorHeader=%23222222&fcHeader=%23222222&borderColorHeader=%23aaaaaa&bgTextureHeader=highlight_soft&bgColorHeader=%23cccccc&cornerRadius=4px&fwDefault=normal&fsDefault=1.1em&ffDefault=Verdana%2CArial%2Csans-serif
      +* Copyright jQuery Foundation and other contributors; Licensed MIT */
      +
      +/* Layout helpers
      +----------------------------------*/
      +.ui-helper-hidden {
      +	display: none;
      +}
      +.ui-helper-hidden-accessible {
      +	border: 0;
      +	clip: rect(0 0 0 0);
      +	height: 1px;
      +	margin: -1px;
      +	overflow: hidden;
      +	padding: 0;
      +	position: absolute;
      +	width: 1px;
      +}
      +.ui-helper-reset {
      +	margin: 0;
      +	padding: 0;
      +	border: 0;
      +	outline: 0;
      +	line-height: 1.3;
      +	text-decoration: none;
      +	font-size: 100%;
      +	list-style: none;
      +}
      +.ui-helper-clearfix:before,
      +.ui-helper-clearfix:after {
      +	content: "";
      +	display: table;
      +	border-collapse: collapse;
      +}
      +.ui-helper-clearfix:after {
      +	clear: both;
      +}
      +.ui-helper-zfix {
      +	width: 100%;
      +	height: 100%;
      +	top: 0;
      +	left: 0;
      +	position: absolute;
      +	opacity: 0;
      +	filter:Alpha(Opacity=0); /* support: IE8 */
      +}
      +
      +.ui-front {
      +	z-index: 100;
      +}
      +
      +
      +/* Interaction Cues
      +----------------------------------*/
      +.ui-state-disabled {
      +	cursor: default !important;
      +	pointer-events: none;
      +}
      +
      +
      +/* Icons
      +----------------------------------*/
      +.ui-icon {
      +	display: inline-block;
      +	vertical-align: middle;
      +	margin-top: -.25em;
      +	position: relative;
      +	text-indent: -99999px;
      +	overflow: hidden;
      +	background-repeat: no-repeat;
      +}
      +
      +.ui-widget-icon-block {
      +	left: 50%;
      +	margin-left: -8px;
      +	display: block;
      +}
      +
      +/* Misc visuals
      +----------------------------------*/
      +
      +/* Overlays */
      +.ui-widget-overlay {
      +	position: fixed;
      +	top: 0;
      +	left: 0;
      +	width: 100%;
      +	height: 100%;
      +}
      +.ui-autocomplete {
      +	position: absolute;
      +	top: 0;
      +	left: 0;
      +	cursor: default;
      +}
      +.ui-menu {
      +	list-style: none;
      +	padding: 0;
      +	margin: 0;
      +	display: block;
      +	outline: 0;
      +}
      +.ui-menu .ui-menu {
      +	position: absolute;
      +}
      +.ui-menu .ui-menu-item {
      +	margin: 0;
      +	cursor: pointer;
      +	/* support: IE10, see #8844 */
      +	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
      +}
      +.ui-menu .ui-menu-item-wrapper {
      +	position: relative;
      +	padding: 3px 1em 3px .4em;
      +}
      +.ui-menu .ui-menu-divider {
      +	margin: 5px 0;
      +	height: 0;
      +	font-size: 0;
      +	line-height: 0;
      +	border-width: 1px 0 0 0;
      +}
      +.ui-menu .ui-state-focus,
      +.ui-menu .ui-state-active {
      +	margin: -1px;
      +}
      +
      +/* icon support */
      +.ui-menu-icons {
      +	position: relative;
      +}
      +.ui-menu-icons .ui-menu-item-wrapper {
      +	padding-left: 2em;
      +}
      +
      +/* left-aligned */
      +.ui-menu .ui-icon {
      +	position: absolute;
      +	top: 0;
      +	bottom: 0;
      +	left: .2em;
      +	margin: auto 0;
      +}
      +
      +/* right-aligned */
      +.ui-menu .ui-menu-icon {
      +	left: auto;
      +	right: 0;
      +}
      +
      +/* Component containers
      +----------------------------------*/
      +.ui-widget {
      +	font-family: Verdana,Arial,sans-serif;
      +	font-size: 1.1em;
      +}
      +.ui-widget .ui-widget {
      +	font-size: 1em;
      +}
      +.ui-widget input,
      +.ui-widget select,
      +.ui-widget textarea,
      +.ui-widget button {
      +	font-family: Verdana,Arial,sans-serif;
      +	font-size: 1em;
      +}
      +.ui-widget.ui-widget-content {
      +	border: 1px solid #d3d3d3;
      +}
      +.ui-widget-content {
      +	border: 1px solid #aaaaaa;
      +	background: #ffffff;
      +	color: #222222;
      +}
      +.ui-widget-content a {
      +	color: #222222;
      +}
      +.ui-widget-header {
      +	border: 1px solid #aaaaaa;
      +	background: #cccccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
      +	color: #222222;
      +	font-weight: bold;
      +}
      +.ui-widget-header a {
      +	color: #222222;
      +}
      +
      +/* Interaction states
      +----------------------------------*/
      +.ui-state-default,
      +.ui-widget-content .ui-state-default,
      +.ui-widget-header .ui-state-default,
      +.ui-button,
      +
      +/* We use html here because we need a greater specificity to make sure disabled
      +works properly when clicked or hovered */
      +html .ui-button.ui-state-disabled:hover,
      +html .ui-button.ui-state-disabled:active {
      +	border: 1px solid #d3d3d3;
      +	background: #e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
      +	font-weight: normal;
      +	color: #555555;
      +}
      +.ui-state-default a,
      +.ui-state-default a:link,
      +.ui-state-default a:visited,
      +a.ui-button,
      +a:link.ui-button,
      +a:visited.ui-button,
      +.ui-button {
      +	color: #555555;
      +	text-decoration: none;
      +}
      +.ui-state-hover,
      +.ui-widget-content .ui-state-hover,
      +.ui-widget-header .ui-state-hover,
      +.ui-state-focus,
      +.ui-widget-content .ui-state-focus,
      +.ui-widget-header .ui-state-focus,
      +.ui-button:hover,
      +.ui-button:focus {
      +	border: 1px solid #999999;
      +	background: #dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;
      +	font-weight: normal;
      +	color: #212121;
      +}
      +.ui-state-hover a,
      +.ui-state-hover a:hover,
      +.ui-state-hover a:link,
      +.ui-state-hover a:visited,
      +.ui-state-focus a,
      +.ui-state-focus a:hover,
      +.ui-state-focus a:link,
      +.ui-state-focus a:visited,
      +a.ui-button:hover,
      +a.ui-button:focus {
      +	color: #212121;
      +	text-decoration: none;
      +}
      +
      +.ui-visual-focus {
      +	box-shadow: 0 0 3px 1px rgb(94, 158, 214);
      +}
      +.ui-state-active,
      +.ui-widget-content .ui-state-active,
      +.ui-widget-header .ui-state-active,
      +a.ui-button:active,
      +.ui-button:active,
      +.ui-button.ui-state-active:hover {
      +	border: 1px solid #aaaaaa;
      +	background: #dadada url("images/ui-bg_glass_65_dadada_1x400.png") 50% 50% repeat-x;
      +	font-weight: normal;
      +	color: #212121;
      +}
      +.ui-icon-background,
      +.ui-state-active .ui-icon-background {
      +	border: #aaaaaa;
      +	background-color: #212121;
      +}
      +.ui-state-active a,
      +.ui-state-active a:link,
      +.ui-state-active a:visited {
      +	color: #212121;
      +	text-decoration: none;
      +}
      +
      +/* Interaction Cues
      +----------------------------------*/
      +.ui-state-highlight,
      +.ui-widget-content .ui-state-highlight,
      +.ui-widget-header .ui-state-highlight {
      +	border: 1px solid #fcefa1;
      +	background: #fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
      +	color: #363636;
      +}
      +.ui-state-checked {
      +	border: 1px solid #fcefa1;
      +	background: #fbf9ee;
      +}
      +.ui-state-highlight a,
      +.ui-widget-content .ui-state-highlight a,
      +.ui-widget-header .ui-state-highlight a {
      +	color: #363636;
      +}
      +.ui-state-error,
      +.ui-widget-content .ui-state-error,
      +.ui-widget-header .ui-state-error {
      +	border: 1px solid #cd0a0a;
      +	background: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
      +	color: #cd0a0a;
      +}
      +.ui-state-error a,
      +.ui-widget-content .ui-state-error a,
      +.ui-widget-header .ui-state-error a {
      +	color: #cd0a0a;
      +}
      +.ui-state-error-text,
      +.ui-widget-content .ui-state-error-text,
      +.ui-widget-header .ui-state-error-text {
      +	color: #cd0a0a;
      +}
      +.ui-priority-primary,
      +.ui-widget-content .ui-priority-primary,
      +.ui-widget-header .ui-priority-primary {
      +	font-weight: bold;
      +}
      +.ui-priority-secondary,
      +.ui-widget-content .ui-priority-secondary,
      +.ui-widget-header .ui-priority-secondary {
      +	opacity: .7;
      +	filter:Alpha(Opacity=70); /* support: IE8 */
      +	font-weight: normal;
      +}
      +.ui-state-disabled,
      +.ui-widget-content .ui-state-disabled,
      +.ui-widget-header .ui-state-disabled {
      +	opacity: .35;
      +	filter:Alpha(Opacity=35); /* support: IE8 */
      +	background-image: none;
      +}
      +.ui-state-disabled .ui-icon {
      +	filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
      +}
      +
      +/* Icons
      +----------------------------------*/
      +
      +/* states and images */
      +.ui-icon {
      +	width: 16px;
      +	height: 16px;
      +}
      +.ui-icon,
      +.ui-widget-content .ui-icon {
      +	background-image: url("images/ui-icons_222222_256x240.png");
      +}
      +.ui-widget-header .ui-icon {
      +	background-image: url("images/ui-icons_222222_256x240.png");
      +}
      +.ui-state-hover .ui-icon,
      +.ui-state-focus .ui-icon,
      +.ui-button:hover .ui-icon,
      +.ui-button:focus .ui-icon {
      +	background-image: url("images/ui-icons_454545_256x240.png");
      +}
      +.ui-state-active .ui-icon,
      +.ui-button:active .ui-icon {
      +	background-image: url("images/ui-icons_454545_256x240.png");
      +}
      +.ui-state-highlight .ui-icon,
      +.ui-button .ui-state-highlight.ui-icon {
      +	background-image: url("images/ui-icons_2e83ff_256x240.png");
      +}
      +.ui-state-error .ui-icon,
      +.ui-state-error-text .ui-icon {
      +	background-image: url("images/ui-icons_cd0a0a_256x240.png");
      +}
      +.ui-button .ui-icon {
      +	background-image: url("images/ui-icons_888888_256x240.png");
      +}
      +
      +/* positioning */
      +.ui-icon-blank { background-position: 16px 16px; }
      +.ui-icon-caret-1-n { background-position: 0 0; }
      +.ui-icon-caret-1-ne { background-position: -16px 0; }
      +.ui-icon-caret-1-e { background-position: -32px 0; }
      +.ui-icon-caret-1-se { background-position: -48px 0; }
      +.ui-icon-caret-1-s { background-position: -65px 0; }
      +.ui-icon-caret-1-sw { background-position: -80px 0; }
      +.ui-icon-caret-1-w { background-position: -96px 0; }
      +.ui-icon-caret-1-nw { background-position: -112px 0; }
      +.ui-icon-caret-2-n-s { background-position: -128px 0; }
      +.ui-icon-caret-2-e-w { background-position: -144px 0; }
      +.ui-icon-triangle-1-n { background-position: 0 -16px; }
      +.ui-icon-triangle-1-ne { background-position: -16px -16px; }
      +.ui-icon-triangle-1-e { background-position: -32px -16px; }
      +.ui-icon-triangle-1-se { background-position: -48px -16px; }
      +.ui-icon-triangle-1-s { background-position: -65px -16px; }
      +.ui-icon-triangle-1-sw { background-position: -80px -16px; }
      +.ui-icon-triangle-1-w { background-position: -96px -16px; }
      +.ui-icon-triangle-1-nw { background-position: -112px -16px; }
      +.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
      +.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
      +.ui-icon-arrow-1-n { background-position: 0 -32px; }
      +.ui-icon-arrow-1-ne { background-position: -16px -32px; }
      +.ui-icon-arrow-1-e { background-position: -32px -32px; }
      +.ui-icon-arrow-1-se { background-position: -48px -32px; }
      +.ui-icon-arrow-1-s { background-position: -65px -32px; }
      +.ui-icon-arrow-1-sw { background-position: -80px -32px; }
      +.ui-icon-arrow-1-w { background-position: -96px -32px; }
      +.ui-icon-arrow-1-nw { background-position: -112px -32px; }
      +.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
      +.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
      +.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
      +.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
      +.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
      +.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
      +.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
      +.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
      +.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
      +.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
      +.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
      +.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
      +.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
      +.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
      +.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
      +.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
      +.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
      +.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
      +.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
      +.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
      +.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
      +.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
      +.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
      +.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
      +.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
      +.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
      +.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
      +.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
      +.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
      +.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
      +.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
      +.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
      +.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
      +.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
      +.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
      +.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
      +.ui-icon-arrow-4 { background-position: 0 -80px; }
      +.ui-icon-arrow-4-diag { background-position: -16px -80px; }
      +.ui-icon-extlink { background-position: -32px -80px; }
      +.ui-icon-newwin { background-position: -48px -80px; }
      +.ui-icon-refresh { background-position: -64px -80px; }
      +.ui-icon-shuffle { background-position: -80px -80px; }
      +.ui-icon-transfer-e-w { background-position: -96px -80px; }
      +.ui-icon-transferthick-e-w { background-position: -112px -80px; }
      +.ui-icon-folder-collapsed { background-position: 0 -96px; }
      +.ui-icon-folder-open { background-position: -16px -96px; }
      +.ui-icon-document { background-position: -32px -96px; }
      +.ui-icon-document-b { background-position: -48px -96px; }
      +.ui-icon-note { background-position: -64px -96px; }
      +.ui-icon-mail-closed { background-position: -80px -96px; }
      +.ui-icon-mail-open { background-position: -96px -96px; }
      +.ui-icon-suitcase { background-position: -112px -96px; }
      +.ui-icon-comment { background-position: -128px -96px; }
      +.ui-icon-person { background-position: -144px -96px; }
      +.ui-icon-print { background-position: -160px -96px; }
      +.ui-icon-trash { background-position: -176px -96px; }
      +.ui-icon-locked { background-position: -192px -96px; }
      +.ui-icon-unlocked { background-position: -208px -96px; }
      +.ui-icon-bookmark { background-position: -224px -96px; }
      +.ui-icon-tag { background-position: -240px -96px; }
      +.ui-icon-home { background-position: 0 -112px; }
      +.ui-icon-flag { background-position: -16px -112px; }
      +.ui-icon-calendar { background-position: -32px -112px; }
      +.ui-icon-cart { background-position: -48px -112px; }
      +.ui-icon-pencil { background-position: -64px -112px; }
      +.ui-icon-clock { background-position: -80px -112px; }
      +.ui-icon-disk { background-position: -96px -112px; }
      +.ui-icon-calculator { background-position: -112px -112px; }
      +.ui-icon-zoomin { background-position: -128px -112px; }
      +.ui-icon-zoomout { background-position: -144px -112px; }
      +.ui-icon-search { background-position: -160px -112px; }
      +.ui-icon-wrench { background-position: -176px -112px; }
      +.ui-icon-gear { background-position: -192px -112px; }
      +.ui-icon-heart { background-position: -208px -112px; }
      +.ui-icon-star { background-position: -224px -112px; }
      +.ui-icon-link { background-position: -240px -112px; }
      +.ui-icon-cancel { background-position: 0 -128px; }
      +.ui-icon-plus { background-position: -16px -128px; }
      +.ui-icon-plusthick { background-position: -32px -128px; }
      +.ui-icon-minus { background-position: -48px -128px; }
      +.ui-icon-minusthick { background-position: -64px -128px; }
      +.ui-icon-close { background-position: -80px -128px; }
      +.ui-icon-closethick { background-position: -96px -128px; }
      +.ui-icon-key { background-position: -112px -128px; }
      +.ui-icon-lightbulb { background-position: -128px -128px; }
      +.ui-icon-scissors { background-position: -144px -128px; }
      +.ui-icon-clipboard { background-position: -160px -128px; }
      +.ui-icon-copy { background-position: -176px -128px; }
      +.ui-icon-contact { background-position: -192px -128px; }
      +.ui-icon-image { background-position: -208px -128px; }
      +.ui-icon-video { background-position: -224px -128px; }
      +.ui-icon-script { background-position: -240px -128px; }
      +.ui-icon-alert { background-position: 0 -144px; }
      +.ui-icon-info { background-position: -16px -144px; }
      +.ui-icon-notice { background-position: -32px -144px; }
      +.ui-icon-help { background-position: -48px -144px; }
      +.ui-icon-check { background-position: -64px -144px; }
      +.ui-icon-bullet { background-position: -80px -144px; }
      +.ui-icon-radio-on { background-position: -96px -144px; }
      +.ui-icon-radio-off { background-position: -112px -144px; }
      +.ui-icon-pin-w { background-position: -128px -144px; }
      +.ui-icon-pin-s { background-position: -144px -144px; }
      +.ui-icon-play { background-position: 0 -160px; }
      +.ui-icon-pause { background-position: -16px -160px; }
      +.ui-icon-seek-next { background-position: -32px -160px; }
      +.ui-icon-seek-prev { background-position: -48px -160px; }
      +.ui-icon-seek-end { background-position: -64px -160px; }
      +.ui-icon-seek-start { background-position: -80px -160px; }
      +/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
      +.ui-icon-seek-first { background-position: -80px -160px; }
      +.ui-icon-stop { background-position: -96px -160px; }
      +.ui-icon-eject { background-position: -112px -160px; }
      +.ui-icon-volume-off { background-position: -128px -160px; }
      +.ui-icon-volume-on { background-position: -144px -160px; }
      +.ui-icon-power { background-position: 0 -176px; }
      +.ui-icon-signal-diag { background-position: -16px -176px; }
      +.ui-icon-signal { background-position: -32px -176px; }
      +.ui-icon-battery-0 { background-position: -48px -176px; }
      +.ui-icon-battery-1 { background-position: -64px -176px; }
      +.ui-icon-battery-2 { background-position: -80px -176px; }
      +.ui-icon-battery-3 { background-position: -96px -176px; }
      +.ui-icon-circle-plus { background-position: 0 -192px; }
      +.ui-icon-circle-minus { background-position: -16px -192px; }
      +.ui-icon-circle-close { background-position: -32px -192px; }
      +.ui-icon-circle-triangle-e { background-position: -48px -192px; }
      +.ui-icon-circle-triangle-s { background-position: -64px -192px; }
      +.ui-icon-circle-triangle-w { background-position: -80px -192px; }
      +.ui-icon-circle-triangle-n { background-position: -96px -192px; }
      +.ui-icon-circle-arrow-e { background-position: -112px -192px; }
      +.ui-icon-circle-arrow-s { background-position: -128px -192px; }
      +.ui-icon-circle-arrow-w { background-position: -144px -192px; }
      +.ui-icon-circle-arrow-n { background-position: -160px -192px; }
      +.ui-icon-circle-zoomin { background-position: -176px -192px; }
      +.ui-icon-circle-zoomout { background-position: -192px -192px; }
      +.ui-icon-circle-check { background-position: -208px -192px; }
      +.ui-icon-circlesmall-plus { background-position: 0 -208px; }
      +.ui-icon-circlesmall-minus { background-position: -16px -208px; }
      +.ui-icon-circlesmall-close { background-position: -32px -208px; }
      +.ui-icon-squaresmall-plus { background-position: -48px -208px; }
      +.ui-icon-squaresmall-minus { background-position: -64px -208px; }
      +.ui-icon-squaresmall-close { background-position: -80px -208px; }
      +.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
      +.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
      +.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
      +.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
      +.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
      +.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
      +
      +
      +/* Misc visuals
      +----------------------------------*/
      +
      +/* Corner radius */
      +.ui-corner-all,
      +.ui-corner-top,
      +.ui-corner-left,
      +.ui-corner-tl {
      +	border-top-left-radius: 4px;
      +}
      +.ui-corner-all,
      +.ui-corner-top,
      +.ui-corner-right,
      +.ui-corner-tr {
      +	border-top-right-radius: 4px;
      +}
      +.ui-corner-all,
      +.ui-corner-bottom,
      +.ui-corner-left,
      +.ui-corner-bl {
      +	border-bottom-left-radius: 4px;
      +}
      +.ui-corner-all,
      +.ui-corner-bottom,
      +.ui-corner-right,
      +.ui-corner-br {
      +	border-bottom-right-radius: 4px;
      +}
      +
      +/* Overlays */
      +.ui-widget-overlay {
      +	background: #aaaaaa;
      +	opacity: .3;
      +	filter: Alpha(Opacity=30); /* support: IE8 */
      +}
      +.ui-widget-shadow {
      +	-webkit-box-shadow: -8px -8px 8px #aaaaaa;
      +	box-shadow: -8px -8px 8px #aaaaaa;
      +}
      diff --git a/docs/site/testapidocs/script-dir/jquery-ui.js b/docs/site/testapidocs/script-dir/jquery-ui.js
      new file mode 100644
      index 00000000..87fb2143
      --- /dev/null
      +++ b/docs/site/testapidocs/script-dir/jquery-ui.js
      @@ -0,0 +1,2659 @@
      +/*! jQuery UI - v1.12.1 - 2018-12-06
      +* http://jqueryui.com
      +* Includes: widget.js, position.js, keycode.js, unique-id.js, widgets/autocomplete.js, widgets/menu.js
      +* Copyright jQuery Foundation and other contributors; Licensed MIT */
      +
      +(function( factory ) {
      +	if ( typeof define === "function" && define.amd ) {
      +
      +		// AMD. Register as an anonymous module.
      +		define([ "jquery" ], factory );
      +	} else {
      +
      +		// Browser globals
      +		factory( jQuery );
      +	}
      +}(function( $ ) {
      +
      +$.ui = $.ui || {};
      +
      +var version = $.ui.version = "1.12.1";
      +
      +
      +/*!
      + * jQuery UI Widget 1.12.1
      + * http://jqueryui.com
      + *
      + * Copyright jQuery Foundation and other contributors
      + * Released under the MIT license.
      + * http://jquery.org/license
      + */
      +
      +//>>label: Widget
      +//>>group: Core
      +//>>description: Provides a factory for creating stateful widgets with a common API.
      +//>>docs: http://api.jqueryui.com/jQuery.widget/
      +//>>demos: http://jqueryui.com/widget/
      +
      +
      +
      +var widgetUuid = 0;
      +var widgetSlice = Array.prototype.slice;
      +
      +$.cleanData = ( function( orig ) {
      +	return function( elems ) {
      +		var events, elem, i;
      +		for ( i = 0; ( elem = elems[ i ] ) != null; i++ ) {
      +			try {
      +
      +				// Only trigger remove when necessary to save time
      +				events = $._data( elem, "events" );
      +				if ( events && events.remove ) {
      +					$( elem ).triggerHandler( "remove" );
      +				}
      +
      +			// Http://bugs.jquery.com/ticket/8235
      +			} catch ( e ) {}
      +		}
      +		orig( elems );
      +	};
      +} )( $.cleanData );
      +
      +$.widget = function( name, base, prototype ) {
      +	var existingConstructor, constructor, basePrototype;
      +
      +	// ProxiedPrototype allows the provided prototype to remain unmodified
      +	// so that it can be used as a mixin for multiple widgets (#8876)
      +	var proxiedPrototype = {};
      +
      +	var namespace = name.split( "." )[ 0 ];
      +	name = name.split( "." )[ 1 ];
      +	var fullName = namespace + "-" + name;
      +
      +	if ( !prototype ) {
      +		prototype = base;
      +		base = $.Widget;
      +	}
      +
      +	if ( $.isArray( prototype ) ) {
      +		prototype = $.extend.apply( null, [ {} ].concat( prototype ) );
      +	}
      +
      +	// Create selector for plugin
      +	$.expr[ ":" ][ fullName.toLowerCase() ] = function( elem ) {
      +		return !!$.data( elem, fullName );
      +	};
      +
      +	$[ namespace ] = $[ namespace ] || {};
      +	existingConstructor = $[ namespace ][ name ];
      +	constructor = $[ namespace ][ name ] = function( options, element ) {
      +
      +		// Allow instantiation without "new" keyword
      +		if ( !this._createWidget ) {
      +			return new constructor( options, element );
      +		}
      +
      +		// Allow instantiation without initializing for simple inheritance
      +		// must use "new" keyword (the code above always passes args)
      +		if ( arguments.length ) {
      +			this._createWidget( options, element );
      +		}
      +	};
      +
      +	// Extend with the existing constructor to carry over any static properties
      +	$.extend( constructor, existingConstructor, {
      +		version: prototype.version,
      +
      +		// Copy the object used to create the prototype in case we need to
      +		// redefine the widget later
      +		_proto: $.extend( {}, prototype ),
      +
      +		// Track widgets that inherit from this widget in case this widget is
      +		// redefined after a widget inherits from it
      +		_childConstructors: []
      +	} );
      +
      +	basePrototype = new base();
      +
      +	// We need to make the options hash a property directly on the new instance
      +	// otherwise we'll modify the options hash on the prototype that we're
      +	// inheriting from
      +	basePrototype.options = $.widget.extend( {}, basePrototype.options );
      +	$.each( prototype, function( prop, value ) {
      +		if ( !$.isFunction( value ) ) {
      +			proxiedPrototype[ prop ] = value;
      +			return;
      +		}
      +		proxiedPrototype[ prop ] = ( function() {
      +			function _super() {
      +				return base.prototype[ prop ].apply( this, arguments );
      +			}
      +
      +			function _superApply( args ) {
      +				return base.prototype[ prop ].apply( this, args );
      +			}
      +
      +			return function() {
      +				var __super = this._super;
      +				var __superApply = this._superApply;
      +				var returnValue;
      +
      +				this._super = _super;
      +				this._superApply = _superApply;
      +
      +				returnValue = value.apply( this, arguments );
      +
      +				this._super = __super;
      +				this._superApply = __superApply;
      +
      +				return returnValue;
      +			};
      +		} )();
      +	} );
      +	constructor.prototype = $.widget.extend( basePrototype, {
      +
      +		// TODO: remove support for widgetEventPrefix
      +		// always use the name + a colon as the prefix, e.g., draggable:start
      +		// don't prefix for widgets that aren't DOM-based
      +		widgetEventPrefix: existingConstructor ? ( basePrototype.widgetEventPrefix || name ) : name
      +	}, proxiedPrototype, {
      +		constructor: constructor,
      +		namespace: namespace,
      +		widgetName: name,
      +		widgetFullName: fullName
      +	} );
      +
      +	// If this widget is being redefined then we need to find all widgets that
      +	// are inheriting from it and redefine all of them so that they inherit from
      +	// the new version of this widget. We're essentially trying to replace one
      +	// level in the prototype chain.
      +	if ( existingConstructor ) {
      +		$.each( existingConstructor._childConstructors, function( i, child ) {
      +			var childPrototype = child.prototype;
      +
      +			// Redefine the child widget using the same prototype that was
      +			// originally used, but inherit from the new version of the base
      +			$.widget( childPrototype.namespace + "." + childPrototype.widgetName, constructor,
      +				child._proto );
      +		} );
      +
      +		// Remove the list of existing child constructors from the old constructor
      +		// so the old child constructors can be garbage collected
      +		delete existingConstructor._childConstructors;
      +	} else {
      +		base._childConstructors.push( constructor );
      +	}
      +
      +	$.widget.bridge( name, constructor );
      +
      +	return constructor;
      +};
      +
      +$.widget.extend = function( target ) {
      +	var input = widgetSlice.call( arguments, 1 );
      +	var inputIndex = 0;
      +	var inputLength = input.length;
      +	var key;
      +	var value;
      +
      +	for ( ; inputIndex < inputLength; inputIndex++ ) {
      +		for ( key in input[ inputIndex ] ) {
      +			value = input[ inputIndex ][ key ];
      +			if ( input[ inputIndex ].hasOwnProperty( key ) && value !== undefined ) {
      +
      +				// Clone objects
      +				if ( $.isPlainObject( value ) ) {
      +					target[ key ] = $.isPlainObject( target[ key ] ) ?
      +						$.widget.extend( {}, target[ key ], value ) :
      +
      +						// Don't extend strings, arrays, etc. with objects
      +						$.widget.extend( {}, value );
      +
      +				// Copy everything else by reference
      +				} else {
      +					target[ key ] = value;
      +				}
      +			}
      +		}
      +	}
      +	return target;
      +};
      +
      +$.widget.bridge = function( name, object ) {
      +	var fullName = object.prototype.widgetFullName || name;
      +	$.fn[ name ] = function( options ) {
      +		var isMethodCall = typeof options === "string";
      +		var args = widgetSlice.call( arguments, 1 );
      +		var returnValue = this;
      +
      +		if ( isMethodCall ) {
      +
      +			// If this is an empty collection, we need to have the instance method
      +			// return undefined instead of the jQuery instance
      +			if ( !this.length && options === "instance" ) {
      +				returnValue = undefined;
      +			} else {
      +				this.each( function() {
      +					var methodValue;
      +					var instance = $.data( this, fullName );
      +
      +					if ( options === "instance" ) {
      +						returnValue = instance;
      +						return false;
      +					}
      +
      +					if ( !instance ) {
      +						return $.error( "cannot call methods on " + name +
      +							" prior to initialization; " +
      +							"attempted to call method '" + options + "'" );
      +					}
      +
      +					if ( !$.isFunction( instance[ options ] ) || options.charAt( 0 ) === "_" ) {
      +						return $.error( "no such method '" + options + "' for " + name +
      +							" widget instance" );
      +					}
      +
      +					methodValue = instance[ options ].apply( instance, args );
      +
      +					if ( methodValue !== instance && methodValue !== undefined ) {
      +						returnValue = methodValue && methodValue.jquery ?
      +							returnValue.pushStack( methodValue.get() ) :
      +							methodValue;
      +						return false;
      +					}
      +				} );
      +			}
      +		} else {
      +
      +			// Allow multiple hashes to be passed on init
      +			if ( args.length ) {
      +				options = $.widget.extend.apply( null, [ options ].concat( args ) );
      +			}
      +
      +			this.each( function() {
      +				var instance = $.data( this, fullName );
      +				if ( instance ) {
      +					instance.option( options || {} );
      +					if ( instance._init ) {
      +						instance._init();
      +					}
      +				} else {
      +					$.data( this, fullName, new object( options, this ) );
      +				}
      +			} );
      +		}
      +
      +		return returnValue;
      +	};
      +};
      +
      +$.Widget = function( /* options, element */ ) {};
      +$.Widget._childConstructors = [];
      +
      +$.Widget.prototype = {
      +	widgetName: "widget",
      +	widgetEventPrefix: "",
      +	defaultElement: "<div>",
      +
      +	options: {
      +		classes: {},
      +		disabled: false,
      +
      +		// Callbacks
      +		create: null
      +	},
      +
      +	_createWidget: function( options, element ) {
      +		element = $( element || this.defaultElement || this )[ 0 ];
      +		this.element = $( element );
      +		this.uuid = widgetUuid++;
      +		this.eventNamespace = "." + this.widgetName + this.uuid;
      +
      +		this.bindings = $();
      +		this.hoverable = $();
      +		this.focusable = $();
      +		this.classesElementLookup = {};
      +
      +		if ( element !== this ) {
      +			$.data( element, this.widgetFullName, this );
      +			this._on( true, this.element, {
      +				remove: function( event ) {
      +					if ( event.target === element ) {
      +						this.destroy();
      +					}
      +				}
      +			} );
      +			this.document = $( element.style ?
      +
      +				// Element within the document
      +				element.ownerDocument :
      +
      +				// Element is window or document
      +				element.document || element );
      +			this.window = $( this.document[ 0 ].defaultView || this.document[ 0 ].parentWindow );
      +		}
      +
      +		this.options = $.widget.extend( {},
      +			this.options,
      +			this._getCreateOptions(),
      +			options );
      +
      +		this._create();
      +
      +		if ( this.options.disabled ) {
      +			this._setOptionDisabled( this.options.disabled );
      +		}
      +
      +		this._trigger( "create", null, this._getCreateEventData() );
      +		this._init();
      +	},
      +
      +	_getCreateOptions: function() {
      +		return {};
      +	},
      +
      +	_getCreateEventData: $.noop,
      +
      +	_create: $.noop,
      +
      +	_init: $.noop,
      +
      +	destroy: function() {
      +		var that = this;
      +
      +		this._destroy();
      +		$.each( this.classesElementLookup, function( key, value ) {
      +			that._removeClass( value, key );
      +		} );
      +
      +		// We can probably remove the unbind calls in 2.0
      +		// all event bindings should go through this._on()
      +		this.element
      +			.off( this.eventNamespace )
      +			.removeData( this.widgetFullName );
      +		this.widget()
      +			.off( this.eventNamespace )
      +			.removeAttr( "aria-disabled" );
      +
      +		// Clean up events and states
      +		this.bindings.off( this.eventNamespace );
      +	},
      +
      +	_destroy: $.noop,
      +
      +	widget: function() {
      +		return this.element;
      +	},
      +
      +	option: function( key, value ) {
      +		var options = key;
      +		var parts;
      +		var curOption;
      +		var i;
      +
      +		if ( arguments.length === 0 ) {
      +
      +			// Don't return a reference to the internal hash
      +			return $.widget.extend( {}, this.options );
      +		}
      +
      +		if ( typeof key === "string" ) {
      +
      +			// Handle nested keys, e.g., "foo.bar" => { foo: { bar: ___ } }
      +			options = {};
      +			parts = key.split( "." );
      +			key = parts.shift();
      +			if ( parts.length ) {
      +				curOption = options[ key ] = $.widget.extend( {}, this.options[ key ] );
      +				for ( i = 0; i < parts.length - 1; i++ ) {
      +					curOption[ parts[ i ] ] = curOption[ parts[ i ] ] || {};
      +					curOption = curOption[ parts[ i ] ];
      +				}
      +				key = parts.pop();
      +				if ( arguments.length === 1 ) {
      +					return curOption[ key ] === undefined ? null : curOption[ key ];
      +				}
      +				curOption[ key ] = value;
      +			} else {
      +				if ( arguments.length === 1 ) {
      +					return this.options[ key ] === undefined ? null : this.options[ key ];
      +				}
      +				options[ key ] = value;
      +			}
      +		}
      +
      +		this._setOptions( options );
      +
      +		return this;
      +	},
      +
      +	_setOptions: function( options ) {
      +		var key;
      +
      +		for ( key in options ) {
      +			this._setOption( key, options[ key ] );
      +		}
      +
      +		return this;
      +	},
      +
      +	_setOption: function( key, value ) {
      +		if ( key === "classes" ) {
      +			this._setOptionClasses( value );
      +		}
      +
      +		this.options[ key ] = value;
      +
      +		if ( key === "disabled" ) {
      +			this._setOptionDisabled( value );
      +		}
      +
      +		return this;
      +	},
      +
      +	_setOptionClasses: function( value ) {
      +		var classKey, elements, currentElements;
      +
      +		for ( classKey in value ) {
      +			currentElements = this.classesElementLookup[ classKey ];
      +			if ( value[ classKey ] === this.options.classes[ classKey ] ||
      +					!currentElements ||
      +					!currentElements.length ) {
      +				continue;
      +			}
      +
      +			// We are doing this to create a new jQuery object because the _removeClass() call
      +			// on the next line is going to destroy the reference to the current elements being
      +			// tracked. We need to save a copy of this collection so that we can add the new classes
      +			// below.
      +			elements = $( currentElements.get() );
      +			this._removeClass( currentElements, classKey );
      +
      +			// We don't use _addClass() here, because that uses this.options.classes
      +			// for generating the string of classes. We want to use the value passed in from
      +			// _setOption(), this is the new value of the classes option which was passed to
      +			// _setOption(). We pass this value directly to _classes().
      +			elements.addClass( this._classes( {
      +				element: elements,
      +				keys: classKey,
      +				classes: value,
      +				add: true
      +			} ) );
      +		}
      +	},
      +
      +	_setOptionDisabled: function( value ) {
      +		this._toggleClass( this.widget(), this.widgetFullName + "-disabled", null, !!value );
      +
      +		// If the widget is becoming disabled, then nothing is interactive
      +		if ( value ) {
      +			this._removeClass( this.hoverable, null, "ui-state-hover" );
      +			this._removeClass( this.focusable, null, "ui-state-focus" );
      +		}
      +	},
      +
      +	enable: function() {
      +		return this._setOptions( { disabled: false } );
      +	},
      +
      +	disable: function() {
      +		return this._setOptions( { disabled: true } );
      +	},
      +
      +	_classes: function( options ) {
      +		var full = [];
      +		var that = this;
      +
      +		options = $.extend( {
      +			element: this.element,
      +			classes: this.options.classes || {}
      +		}, options );
      +
      +		function processClassString( classes, checkOption ) {
      +			var current, i;
      +			for ( i = 0; i < classes.length; i++ ) {
      +				current = that.classesElementLookup[ classes[ i ] ] || $();
      +				if ( options.add ) {
      +					current = $( $.unique( current.get().concat( options.element.get() ) ) );
      +				} else {
      +					current = $( current.not( options.element ).get() );
      +				}
      +				that.classesElementLookup[ classes[ i ] ] = current;
      +				full.push( classes[ i ] );
      +				if ( checkOption && options.classes[ classes[ i ] ] ) {
      +					full.push( options.classes[ classes[ i ] ] );
      +				}
      +			}
      +		}
      +
      +		this._on( options.element, {
      +			"remove": "_untrackClassesElement"
      +		} );
      +
      +		if ( options.keys ) {
      +			processClassString( options.keys.match( /\S+/g ) || [], true );
      +		}
      +		if ( options.extra ) {
      +			processClassString( options.extra.match( /\S+/g ) || [] );
      +		}
      +
      +		return full.join( " " );
      +	},
      +
      +	_untrackClassesElement: function( event ) {
      +		var that = this;
      +		$.each( that.classesElementLookup, function( key, value ) {
      +			if ( $.inArray( event.target, value ) !== -1 ) {
      +				that.classesElementLookup[ key ] = $( value.not( event.target ).get() );
      +			}
      +		} );
      +	},
      +
      +	_removeClass: function( element, keys, extra ) {
      +		return this._toggleClass( element, keys, extra, false );
      +	},
      +
      +	_addClass: function( element, keys, extra ) {
      +		return this._toggleClass( element, keys, extra, true );
      +	},
      +
      +	_toggleClass: function( element, keys, extra, add ) {
      +		add = ( typeof add === "boolean" ) ? add : extra;
      +		var shift = ( typeof element === "string" || element === null ),
      +			options = {
      +				extra: shift ? keys : extra,
      +				keys: shift ? element : keys,
      +				element: shift ? this.element : element,
      +				add: add
      +			};
      +		options.element.toggleClass( this._classes( options ), add );
      +		return this;
      +	},
      +
      +	_on: function( suppressDisabledCheck, element, handlers ) {
      +		var delegateElement;
      +		var instance = this;
      +
      +		// No suppressDisabledCheck flag, shuffle arguments
      +		if ( typeof suppressDisabledCheck !== "boolean" ) {
      +			handlers = element;
      +			element = suppressDisabledCheck;
      +			suppressDisabledCheck = false;
      +		}
      +
      +		// No element argument, shuffle and use this.element
      +		if ( !handlers ) {
      +			handlers = element;
      +			element = this.element;
      +			delegateElement = this.widget();
      +		} else {
      +			element = delegateElement = $( element );
      +			this.bindings = this.bindings.add( element );
      +		}
      +
      +		$.each( handlers, function( event, handler ) {
      +			function handlerProxy() {
      +
      +				// Allow widgets to customize the disabled handling
      +				// - disabled as an array instead of boolean
      +				// - disabled class as method for disabling individual parts
      +				if ( !suppressDisabledCheck &&
      +						( instance.options.disabled === true ||
      +						$( this ).hasClass( "ui-state-disabled" ) ) ) {
      +					return;
      +				}
      +				return ( typeof handler === "string" ? instance[ handler ] : handler )
      +					.apply( instance, arguments );
      +			}
      +
      +			// Copy the guid so direct unbinding works
      +			if ( typeof handler !== "string" ) {
      +				handlerProxy.guid = handler.guid =
      +					handler.guid || handlerProxy.guid || $.guid++;
      +			}
      +
      +			var match = event.match( /^([\w:-]*)\s*(.*)$/ );
      +			var eventName = match[ 1 ] + instance.eventNamespace;
      +			var selector = match[ 2 ];
      +
      +			if ( selector ) {
      +				delegateElement.on( eventName, selector, handlerProxy );
      +			} else {
      +				element.on( eventName, handlerProxy );
      +			}
      +		} );
      +	},
      +
      +	_off: function( element, eventName ) {
      +		eventName = ( eventName || "" ).split( " " ).join( this.eventNamespace + " " ) +
      +			this.eventNamespace;
      +		element.off( eventName ).off( eventName );
      +
      +		// Clear the stack to avoid memory leaks (#10056)
      +		this.bindings = $( this.bindings.not( element ).get() );
      +		this.focusable = $( this.focusable.not( element ).get() );
      +		this.hoverable = $( this.hoverable.not( element ).get() );
      +	},
      +
      +	_delay: function( handler, delay ) {
      +		function handlerProxy() {
      +			return ( typeof handler === "string" ? instance[ handler ] : handler )
      +				.apply( instance, arguments );
      +		}
      +		var instance = this;
      +		return setTimeout( handlerProxy, delay || 0 );
      +	},
      +
      +	_hoverable: function( element ) {
      +		this.hoverable = this.hoverable.add( element );
      +		this._on( element, {
      +			mouseenter: function( event ) {
      +				this._addClass( $( event.currentTarget ), null, "ui-state-hover" );
      +			},
      +			mouseleave: function( event ) {
      +				this._removeClass( $( event.currentTarget ), null, "ui-state-hover" );
      +			}
      +		} );
      +	},
      +
      +	_focusable: function( element ) {
      +		this.focusable = this.focusable.add( element );
      +		this._on( element, {
      +			focusin: function( event ) {
      +				this._addClass( $( event.currentTarget ), null, "ui-state-focus" );
      +			},
      +			focusout: function( event ) {
      +				this._removeClass( $( event.currentTarget ), null, "ui-state-focus" );
      +			}
      +		} );
      +	},
      +
      +	_trigger: function( type, event, data ) {
      +		var prop, orig;
      +		var callback = this.options[ type ];
      +
      +		data = data || {};
      +		event = $.Event( event );
      +		event.type = ( type === this.widgetEventPrefix ?
      +			type :
      +			this.widgetEventPrefix + type ).toLowerCase();
      +
      +		// The original event may come from any element
      +		// so we need to reset the target on the new event
      +		event.target = this.element[ 0 ];
      +
      +		// Copy original event properties over to the new event
      +		orig = event.originalEvent;
      +		if ( orig ) {
      +			for ( prop in orig ) {
      +				if ( !( prop in event ) ) {
      +					event[ prop ] = orig[ prop ];
      +				}
      +			}
      +		}
      +
      +		this.element.trigger( event, data );
      +		return !( $.isFunction( callback ) &&
      +			callback.apply( this.element[ 0 ], [ event ].concat( data ) ) === false ||
      +			event.isDefaultPrevented() );
      +	}
      +};
      +
      +$.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) {
      +	$.Widget.prototype[ "_" + method ] = function( element, options, callback ) {
      +		if ( typeof options === "string" ) {
      +			options = { effect: options };
      +		}
      +
      +		var hasOptions;
      +		var effectName = !options ?
      +			method :
      +			options === true || typeof options === "number" ?
      +				defaultEffect :
      +				options.effect || defaultEffect;
      +
      +		options = options || {};
      +		if ( typeof options === "number" ) {
      +			options = { duration: options };
      +		}
      +
      +		hasOptions = !$.isEmptyObject( options );
      +		options.complete = callback;
      +
      +		if ( options.delay ) {
      +			element.delay( options.delay );
      +		}
      +
      +		if ( hasOptions && $.effects && $.effects.effect[ effectName ] ) {
      +			element[ method ]( options );
      +		} else if ( effectName !== method && element[ effectName ] ) {
      +			element[ effectName ]( options.duration, options.easing, callback );
      +		} else {
      +			element.queue( function( next ) {
      +				$( this )[ method ]();
      +				if ( callback ) {
      +					callback.call( element[ 0 ] );
      +				}
      +				next();
      +			} );
      +		}
      +	};
      +} );
      +
      +var widget = $.widget;
      +
      +
      +/*!
      + * jQuery UI Position 1.12.1
      + * http://jqueryui.com
      + *
      + * Copyright jQuery Foundation and other contributors
      + * Released under the MIT license.
      + * http://jquery.org/license
      + *
      + * http://api.jqueryui.com/position/
      + */
      +
      +//>>label: Position
      +//>>group: Core
      +//>>description: Positions elements relative to other elements.
      +//>>docs: http://api.jqueryui.com/position/
      +//>>demos: http://jqueryui.com/position/
      +
      +
      +( function() {
      +var cachedScrollbarWidth,
      +	max = Math.max,
      +	abs = Math.abs,
      +	rhorizontal = /left|center|right/,
      +	rvertical = /top|center|bottom/,
      +	roffset = /[\+\-]\d+(\.[\d]+)?%?/,
      +	rposition = /^\w+/,
      +	rpercent = /%$/,
      +	_position = $.fn.position;
      +
      +function getOffsets( offsets, width, height ) {
      +	return [
      +		parseFloat( offsets[ 0 ] ) * ( rpercent.test( offsets[ 0 ] ) ? width / 100 : 1 ),
      +		parseFloat( offsets[ 1 ] ) * ( rpercent.test( offsets[ 1 ] ) ? height / 100 : 1 )
      +	];
      +}
      +
      +function parseCss( element, property ) {
      +	return parseInt( $.css( element, property ), 10 ) || 0;
      +}
      +
      +function getDimensions( elem ) {
      +	var raw = elem[ 0 ];
      +	if ( raw.nodeType === 9 ) {
      +		return {
      +			width: elem.width(),
      +			height: elem.height(),
      +			offset: { top: 0, left: 0 }
      +		};
      +	}
      +	if ( $.isWindow( raw ) ) {
      +		return {
      +			width: elem.width(),
      +			height: elem.height(),
      +			offset: { top: elem.scrollTop(), left: elem.scrollLeft() }
      +		};
      +	}
      +	if ( raw.preventDefault ) {
      +		return {
      +			width: 0,
      +			height: 0,
      +			offset: { top: raw.pageY, left: raw.pageX }
      +		};
      +	}
      +	return {
      +		width: elem.outerWidth(),
      +		height: elem.outerHeight(),
      +		offset: elem.offset()
      +	};
      +}
      +
      +$.position = {
      +	scrollbarWidth: function() {
      +		if ( cachedScrollbarWidth !== undefined ) {
      +			return cachedScrollbarWidth;
      +		}
      +		var w1, w2,
      +			div = $( "<div " +
      +				"style='display:block;position:absolute;width:50px;height:50px;overflow:hidden;'>" +
      +				"<div style='height:100px;width:auto;'></div></div>" ),
      +			innerDiv = div.children()[ 0 ];
      +
      +		$( "body" ).append( div );
      +		w1 = innerDiv.offsetWidth;
      +		div.css( "overflow", "scroll" );
      +
      +		w2 = innerDiv.offsetWidth;
      +
      +		if ( w1 === w2 ) {
      +			w2 = div[ 0 ].clientWidth;
      +		}
      +
      +		div.remove();
      +
      +		return ( cachedScrollbarWidth = w1 - w2 );
      +	},
      +	getScrollInfo: function( within ) {
      +		var overflowX = within.isWindow || within.isDocument ? "" :
      +				within.element.css( "overflow-x" ),
      +			overflowY = within.isWindow || within.isDocument ? "" :
      +				within.element.css( "overflow-y" ),
      +			hasOverflowX = overflowX === "scroll" ||
      +				( overflowX === "auto" && within.width < within.element[ 0 ].scrollWidth ),
      +			hasOverflowY = overflowY === "scroll" ||
      +				( overflowY === "auto" && within.height < within.element[ 0 ].scrollHeight );
      +		return {
      +			width: hasOverflowY ? $.position.scrollbarWidth() : 0,
      +			height: hasOverflowX ? $.position.scrollbarWidth() : 0
      +		};
      +	},
      +	getWithinInfo: function( element ) {
      +		var withinElement = $( element || window ),
      +			isWindow = $.isWindow( withinElement[ 0 ] ),
      +			isDocument = !!withinElement[ 0 ] && withinElement[ 0 ].nodeType === 9,
      +			hasOffset = !isWindow && !isDocument;
      +		return {
      +			element: withinElement,
      +			isWindow: isWindow,
      +			isDocument: isDocument,
      +			offset: hasOffset ? $( element ).offset() : { left: 0, top: 0 },
      +			scrollLeft: withinElement.scrollLeft(),
      +			scrollTop: withinElement.scrollTop(),
      +			width: withinElement.outerWidth(),
      +			height: withinElement.outerHeight()
      +		};
      +	}
      +};
      +
      +$.fn.position = function( options ) {
      +	if ( !options || !options.of ) {
      +		return _position.apply( this, arguments );
      +	}
      +
      +	// Make a copy, we don't want to modify arguments
      +	options = $.extend( {}, options );
      +
      +	var atOffset, targetWidth, targetHeight, targetOffset, basePosition, dimensions,
      +		target = $( options.of ),
      +		within = $.position.getWithinInfo( options.within ),
      +		scrollInfo = $.position.getScrollInfo( within ),
      +		collision = ( options.collision || "flip" ).split( " " ),
      +		offsets = {};
      +
      +	dimensions = getDimensions( target );
      +	if ( target[ 0 ].preventDefault ) {
      +
      +		// Force left top to allow flipping
      +		options.at = "left top";
      +	}
      +	targetWidth = dimensions.width;
      +	targetHeight = dimensions.height;
      +	targetOffset = dimensions.offset;
      +
      +	// Clone to reuse original targetOffset later
      +	basePosition = $.extend( {}, targetOffset );
      +
      +	// Force my and at to have valid horizontal and vertical positions
      +	// if a value is missing or invalid, it will be converted to center
      +	$.each( [ "my", "at" ], function() {
      +		var pos = ( options[ this ] || "" ).split( " " ),
      +			horizontalOffset,
      +			verticalOffset;
      +
      +		if ( pos.length === 1 ) {
      +			pos = rhorizontal.test( pos[ 0 ] ) ?
      +				pos.concat( [ "center" ] ) :
      +				rvertical.test( pos[ 0 ] ) ?
      +					[ "center" ].concat( pos ) :
      +					[ "center", "center" ];
      +		}
      +		pos[ 0 ] = rhorizontal.test( pos[ 0 ] ) ? pos[ 0 ] : "center";
      +		pos[ 1 ] = rvertical.test( pos[ 1 ] ) ? pos[ 1 ] : "center";
      +
      +		// Calculate offsets
      +		horizontalOffset = roffset.exec( pos[ 0 ] );
      +		verticalOffset = roffset.exec( pos[ 1 ] );
      +		offsets[ this ] = [
      +			horizontalOffset ? horizontalOffset[ 0 ] : 0,
      +			verticalOffset ? verticalOffset[ 0 ] : 0
      +		];
      +
      +		// Reduce to just the positions without the offsets
      +		options[ this ] = [
      +			rposition.exec( pos[ 0 ] )[ 0 ],
      +			rposition.exec( pos[ 1 ] )[ 0 ]
      +		];
      +	} );
      +
      +	// Normalize collision option
      +	if ( collision.length === 1 ) {
      +		collision[ 1 ] = collision[ 0 ];
      +	}
      +
      +	if ( options.at[ 0 ] === "right" ) {
      +		basePosition.left += targetWidth;
      +	} else if ( options.at[ 0 ] === "center" ) {
      +		basePosition.left += targetWidth / 2;
      +	}
      +
      +	if ( options.at[ 1 ] === "bottom" ) {
      +		basePosition.top += targetHeight;
      +	} else if ( options.at[ 1 ] === "center" ) {
      +		basePosition.top += targetHeight / 2;
      +	}
      +
      +	atOffset = getOffsets( offsets.at, targetWidth, targetHeight );
      +	basePosition.left += atOffset[ 0 ];
      +	basePosition.top += atOffset[ 1 ];
      +
      +	return this.each( function() {
      +		var collisionPosition, using,
      +			elem = $( this ),
      +			elemWidth = elem.outerWidth(),
      +			elemHeight = elem.outerHeight(),
      +			marginLeft = parseCss( this, "marginLeft" ),
      +			marginTop = parseCss( this, "marginTop" ),
      +			collisionWidth = elemWidth + marginLeft + parseCss( this, "marginRight" ) +
      +				scrollInfo.width,
      +			collisionHeight = elemHeight + marginTop + parseCss( this, "marginBottom" ) +
      +				scrollInfo.height,
      +			position = $.extend( {}, basePosition ),
      +			myOffset = getOffsets( offsets.my, elem.outerWidth(), elem.outerHeight() );
      +
      +		if ( options.my[ 0 ] === "right" ) {
      +			position.left -= elemWidth;
      +		} else if ( options.my[ 0 ] === "center" ) {
      +			position.left -= elemWidth / 2;
      +		}
      +
      +		if ( options.my[ 1 ] === "bottom" ) {
      +			position.top -= elemHeight;
      +		} else if ( options.my[ 1 ] === "center" ) {
      +			position.top -= elemHeight / 2;
      +		}
      +
      +		position.left += myOffset[ 0 ];
      +		position.top += myOffset[ 1 ];
      +
      +		collisionPosition = {
      +			marginLeft: marginLeft,
      +			marginTop: marginTop
      +		};
      +
      +		$.each( [ "left", "top" ], function( i, dir ) {
      +			if ( $.ui.position[ collision[ i ] ] ) {
      +				$.ui.position[ collision[ i ] ][ dir ]( position, {
      +					targetWidth: targetWidth,
      +					targetHeight: targetHeight,
      +					elemWidth: elemWidth,
      +					elemHeight: elemHeight,
      +					collisionPosition: collisionPosition,
      +					collisionWidth: collisionWidth,
      +					collisionHeight: collisionHeight,
      +					offset: [ atOffset[ 0 ] + myOffset[ 0 ], atOffset [ 1 ] + myOffset[ 1 ] ],
      +					my: options.my,
      +					at: options.at,
      +					within: within,
      +					elem: elem
      +				} );
      +			}
      +		} );
      +
      +		if ( options.using ) {
      +
      +			// Adds feedback as second argument to using callback, if present
      +			using = function( props ) {
      +				var left = targetOffset.left - position.left,
      +					right = left + targetWidth - elemWidth,
      +					top = targetOffset.top - position.top,
      +					bottom = top + targetHeight - elemHeight,
      +					feedback = {
      +						target: {
      +							element: target,
      +							left: targetOffset.left,
      +							top: targetOffset.top,
      +							width: targetWidth,
      +							height: targetHeight
      +						},
      +						element: {
      +							element: elem,
      +							left: position.left,
      +							top: position.top,
      +							width: elemWidth,
      +							height: elemHeight
      +						},
      +						horizontal: right < 0 ? "left" : left > 0 ? "right" : "center",
      +						vertical: bottom < 0 ? "top" : top > 0 ? "bottom" : "middle"
      +					};
      +				if ( targetWidth < elemWidth && abs( left + right ) < targetWidth ) {
      +					feedback.horizontal = "center";
      +				}
      +				if ( targetHeight < elemHeight && abs( top + bottom ) < targetHeight ) {
      +					feedback.vertical = "middle";
      +				}
      +				if ( max( abs( left ), abs( right ) ) > max( abs( top ), abs( bottom ) ) ) {
      +					feedback.important = "horizontal";
      +				} else {
      +					feedback.important = "vertical";
      +				}
      +				options.using.call( this, props, feedback );
      +			};
      +		}
      +
      +		elem.offset( $.extend( position, { using: using } ) );
      +	} );
      +};
      +
      +$.ui.position = {
      +	fit: {
      +		left: function( position, data ) {
      +			var within = data.within,
      +				withinOffset = within.isWindow ? within.scrollLeft : within.offset.left,
      +				outerWidth = within.width,
      +				collisionPosLeft = position.left - data.collisionPosition.marginLeft,
      +				overLeft = withinOffset - collisionPosLeft,
      +				overRight = collisionPosLeft + data.collisionWidth - outerWidth - withinOffset,
      +				newOverRight;
      +
      +			// Element is wider than within
      +			if ( data.collisionWidth > outerWidth ) {
      +
      +				// Element is initially over the left side of within
      +				if ( overLeft > 0 && overRight <= 0 ) {
      +					newOverRight = position.left + overLeft + data.collisionWidth - outerWidth -
      +						withinOffset;
      +					position.left += overLeft - newOverRight;
      +
      +				// Element is initially over right side of within
      +				} else if ( overRight > 0 && overLeft <= 0 ) {
      +					position.left = withinOffset;
      +
      +				// Element is initially over both left and right sides of within
      +				} else {
      +					if ( overLeft > overRight ) {
      +						position.left = withinOffset + outerWidth - data.collisionWidth;
      +					} else {
      +						position.left = withinOffset;
      +					}
      +				}
      +
      +			// Too far left -> align with left edge
      +			} else if ( overLeft > 0 ) {
      +				position.left += overLeft;
      +
      +			// Too far right -> align with right edge
      +			} else if ( overRight > 0 ) {
      +				position.left -= overRight;
      +
      +			// Adjust based on position and margin
      +			} else {
      +				position.left = max( position.left - collisionPosLeft, position.left );
      +			}
      +		},
      +		top: function( position, data ) {
      +			var within = data.within,
      +				withinOffset = within.isWindow ? within.scrollTop : within.offset.top,
      +				outerHeight = data.within.height,
      +				collisionPosTop = position.top - data.collisionPosition.marginTop,
      +				overTop = withinOffset - collisionPosTop,
      +				overBottom = collisionPosTop + data.collisionHeight - outerHeight - withinOffset,
      +				newOverBottom;
      +
      +			// Element is taller than within
      +			if ( data.collisionHeight > outerHeight ) {
      +
      +				// Element is initially over the top of within
      +				if ( overTop > 0 && overBottom <= 0 ) {
      +					newOverBottom = position.top + overTop + data.collisionHeight - outerHeight -
      +						withinOffset;
      +					position.top += overTop - newOverBottom;
      +
      +				// Element is initially over bottom of within
      +				} else if ( overBottom > 0 && overTop <= 0 ) {
      +					position.top = withinOffset;
      +
      +				// Element is initially over both top and bottom of within
      +				} else {
      +					if ( overTop > overBottom ) {
      +						position.top = withinOffset + outerHeight - data.collisionHeight;
      +					} else {
      +						position.top = withinOffset;
      +					}
      +				}
      +
      +			// Too far up -> align with top
      +			} else if ( overTop > 0 ) {
      +				position.top += overTop;
      +
      +			// Too far down -> align with bottom edge
      +			} else if ( overBottom > 0 ) {
      +				position.top -= overBottom;
      +
      +			// Adjust based on position and margin
      +			} else {
      +				position.top = max( position.top - collisionPosTop, position.top );
      +			}
      +		}
      +	},
      +	flip: {
      +		left: function( position, data ) {
      +			var within = data.within,
      +				withinOffset = within.offset.left + within.scrollLeft,
      +				outerWidth = within.width,
      +				offsetLeft = within.isWindow ? within.scrollLeft : within.offset.left,
      +				collisionPosLeft = position.left - data.collisionPosition.marginLeft,
      +				overLeft = collisionPosLeft - offsetLeft,
      +				overRight = collisionPosLeft + data.collisionWidth - outerWidth - offsetLeft,
      +				myOffset = data.my[ 0 ] === "left" ?
      +					-data.elemWidth :
      +					data.my[ 0 ] === "right" ?
      +						data.elemWidth :
      +						0,
      +				atOffset = data.at[ 0 ] === "left" ?
      +					data.targetWidth :
      +					data.at[ 0 ] === "right" ?
      +						-data.targetWidth :
      +						0,
      +				offset = -2 * data.offset[ 0 ],
      +				newOverRight,
      +				newOverLeft;
      +
      +			if ( overLeft < 0 ) {
      +				newOverRight = position.left + myOffset + atOffset + offset + data.collisionWidth -
      +					outerWidth - withinOffset;
      +				if ( newOverRight < 0 || newOverRight < abs( overLeft ) ) {
      +					position.left += myOffset + atOffset + offset;
      +				}
      +			} else if ( overRight > 0 ) {
      +				newOverLeft = position.left - data.collisionPosition.marginLeft + myOffset +
      +					atOffset + offset - offsetLeft;
      +				if ( newOverLeft > 0 || abs( newOverLeft ) < overRight ) {
      +					position.left += myOffset + atOffset + offset;
      +				}
      +			}
      +		},
      +		top: function( position, data ) {
      +			var within = data.within,
      +				withinOffset = within.offset.top + within.scrollTop,
      +				outerHeight = within.height,
      +				offsetTop = within.isWindow ? within.scrollTop : within.offset.top,
      +				collisionPosTop = position.top - data.collisionPosition.marginTop,
      +				overTop = collisionPosTop - offsetTop,
      +				overBottom = collisionPosTop + data.collisionHeight - outerHeight - offsetTop,
      +				top = data.my[ 1 ] === "top",
      +				myOffset = top ?
      +					-data.elemHeight :
      +					data.my[ 1 ] === "bottom" ?
      +						data.elemHeight :
      +						0,
      +				atOffset = data.at[ 1 ] === "top" ?
      +					data.targetHeight :
      +					data.at[ 1 ] === "bottom" ?
      +						-data.targetHeight :
      +						0,
      +				offset = -2 * data.offset[ 1 ],
      +				newOverTop,
      +				newOverBottom;
      +			if ( overTop < 0 ) {
      +				newOverBottom = position.top + myOffset + atOffset + offset + data.collisionHeight -
      +					outerHeight - withinOffset;
      +				if ( newOverBottom < 0 || newOverBottom < abs( overTop ) ) {
      +					position.top += myOffset + atOffset + offset;
      +				}
      +			} else if ( overBottom > 0 ) {
      +				newOverTop = position.top - data.collisionPosition.marginTop + myOffset + atOffset +
      +					offset - offsetTop;
      +				if ( newOverTop > 0 || abs( newOverTop ) < overBottom ) {
      +					position.top += myOffset + atOffset + offset;
      +				}
      +			}
      +		}
      +	},
      +	flipfit: {
      +		left: function() {
      +			$.ui.position.flip.left.apply( this, arguments );
      +			$.ui.position.fit.left.apply( this, arguments );
      +		},
      +		top: function() {
      +			$.ui.position.flip.top.apply( this, arguments );
      +			$.ui.position.fit.top.apply( this, arguments );
      +		}
      +	}
      +};
      +
      +} )();
      +
      +var position = $.ui.position;
      +
      +
      +/*!
      + * jQuery UI Keycode 1.12.1
      + * http://jqueryui.com
      + *
      + * Copyright jQuery Foundation and other contributors
      + * Released under the MIT license.
      + * http://jquery.org/license
      + */
      +
      +//>>label: Keycode
      +//>>group: Core
      +//>>description: Provide keycodes as keynames
      +//>>docs: http://api.jqueryui.com/jQuery.ui.keyCode/
      +
      +
      +var keycode = $.ui.keyCode = {
      +	BACKSPACE: 8,
      +	COMMA: 188,
      +	DELETE: 46,
      +	DOWN: 40,
      +	END: 35,
      +	ENTER: 13,
      +	ESCAPE: 27,
      +	HOME: 36,
      +	LEFT: 37,
      +	PAGE_DOWN: 34,
      +	PAGE_UP: 33,
      +	PERIOD: 190,
      +	RIGHT: 39,
      +	SPACE: 32,
      +	TAB: 9,
      +	UP: 38
      +};
      +
      +
      +/*!
      + * jQuery UI Unique ID 1.12.1
      + * http://jqueryui.com
      + *
      + * Copyright jQuery Foundation and other contributors
      + * Released under the MIT license.
      + * http://jquery.org/license
      + */
      +
      +//>>label: uniqueId
      +//>>group: Core
      +//>>description: Functions to generate and remove uniqueId's
      +//>>docs: http://api.jqueryui.com/uniqueId/
      +
      +
      +
      +var uniqueId = $.fn.extend( {
      +	uniqueId: ( function() {
      +		var uuid = 0;
      +
      +		return function() {
      +			return this.each( function() {
      +				if ( !this.id ) {
      +					this.id = "ui-id-" + ( ++uuid );
      +				}
      +			} );
      +		};
      +	} )(),
      +
      +	removeUniqueId: function() {
      +		return this.each( function() {
      +			if ( /^ui-id-\d+$/.test( this.id ) ) {
      +				$( this ).removeAttr( "id" );
      +			}
      +		} );
      +	}
      +} );
      +
      +
      +
      +var safeActiveElement = $.ui.safeActiveElement = function( document ) {
      +	var activeElement;
      +
      +	// Support: IE 9 only
      +	// IE9 throws an "Unspecified error" accessing document.activeElement from an <iframe>
      +	try {
      +		activeElement = document.activeElement;
      +	} catch ( error ) {
      +		activeElement = document.body;
      +	}
      +
      +	// Support: IE 9 - 11 only
      +	// IE may return null instead of an element
      +	// Interestingly, this only seems to occur when NOT in an iframe
      +	if ( !activeElement ) {
      +		activeElement = document.body;
      +	}
      +
      +	// Support: IE 11 only
      +	// IE11 returns a seemingly empty object in some cases when accessing
      +	// document.activeElement from an <iframe>
      +	if ( !activeElement.nodeName ) {
      +		activeElement = document.body;
      +	}
      +
      +	return activeElement;
      +};
      +
      +
      +/*!
      + * jQuery UI Menu 1.12.1
      + * http://jqueryui.com
      + *
      + * Copyright jQuery Foundation and other contributors
      + * Released under the MIT license.
      + * http://jquery.org/license
      + */
      +
      +//>>label: Menu
      +//>>group: Widgets
      +//>>description: Creates nestable menus.
      +//>>docs: http://api.jqueryui.com/menu/
      +//>>demos: http://jqueryui.com/menu/
      +//>>css.structure: ../../themes/base/core.css
      +//>>css.structure: ../../themes/base/menu.css
      +//>>css.theme: ../../themes/base/theme.css
      +
      +
      +
      +var widgetsMenu = $.widget( "ui.menu", {
      +	version: "1.12.1",
      +	defaultElement: "<ul>",
      +	delay: 300,
      +	options: {
      +		icons: {
      +			submenu: "ui-icon-caret-1-e"
      +		},
      +		items: "> *",
      +		menus: "ul",
      +		position: {
      +			my: "left top",
      +			at: "right top"
      +		},
      +		role: "menu",
      +
      +		// Callbacks
      +		blur: null,
      +		focus: null,
      +		select: null
      +	},
      +
      +	_create: function() {
      +		this.activeMenu = this.element;
      +
      +		// Flag used to prevent firing of the click handler
      +		// as the event bubbles up through nested menus
      +		this.mouseHandled = false;
      +		this.element
      +			.uniqueId()
      +			.attr( {
      +				role: this.options.role,
      +				tabIndex: 0
      +			} );
      +
      +		this._addClass( "ui-menu", "ui-widget ui-widget-content" );
      +		this._on( {
      +
      +			// Prevent focus from sticking to links inside menu after clicking
      +			// them (focus should always stay on UL during navigation).
      +			"mousedown .ui-menu-item": function( event ) {
      +				event.preventDefault();
      +			},
      +			"click .ui-menu-item": function( event ) {
      +				var target = $( event.target );
      +				var active = $( $.ui.safeActiveElement( this.document[ 0 ] ) );
      +				if ( !this.mouseHandled && target.not( ".ui-state-disabled" ).length ) {
      +					this.select( event );
      +
      +					// Only set the mouseHandled flag if the event will bubble, see #9469.
      +					if ( !event.isPropagationStopped() ) {
      +						this.mouseHandled = true;
      +					}
      +
      +					// Open submenu on click
      +					if ( target.has( ".ui-menu" ).length ) {
      +						this.expand( event );
      +					} else if ( !this.element.is( ":focus" ) &&
      +							active.closest( ".ui-menu" ).length ) {
      +
      +						// Redirect focus to the menu
      +						this.element.trigger( "focus", [ true ] );
      +
      +						// If the active item is on the top level, let it stay active.
      +						// Otherwise, blur the active item since it is no longer visible.
      +						if ( this.active && this.active.parents( ".ui-menu" ).length === 1 ) {
      +							clearTimeout( this.timer );
      +						}
      +					}
      +				}
      +			},
      +			"mouseenter .ui-menu-item": function( event ) {
      +
      +				// Ignore mouse events while typeahead is active, see #10458.
      +				// Prevents focusing the wrong item when typeahead causes a scroll while the mouse
      +				// is over an item in the menu
      +				if ( this.previousFilter ) {
      +					return;
      +				}
      +
      +				var actualTarget = $( event.target ).closest( ".ui-menu-item" ),
      +					target = $( event.currentTarget );
      +
      +				// Ignore bubbled events on parent items, see #11641
      +				if ( actualTarget[ 0 ] !== target[ 0 ] ) {
      +					return;
      +				}
      +
      +				// Remove ui-state-active class from siblings of the newly focused menu item
      +				// to avoid a jump caused by adjacent elements both having a class with a border
      +				this._removeClass( target.siblings().children( ".ui-state-active" ),
      +					null, "ui-state-active" );
      +				this.focus( event, target );
      +			},
      +			mouseleave: "collapseAll",
      +			"mouseleave .ui-menu": "collapseAll",
      +			focus: function( event, keepActiveItem ) {
      +
      +				// If there's already an active item, keep it active
      +				// If not, activate the first item
      +				var item = this.active || this.element.find( this.options.items ).eq( 0 );
      +
      +				if ( !keepActiveItem ) {
      +					this.focus( event, item );
      +				}
      +			},
      +			blur: function( event ) {
      +				this._delay( function() {
      +					var notContained = !$.contains(
      +						this.element[ 0 ],
      +						$.ui.safeActiveElement( this.document[ 0 ] )
      +					);
      +					if ( notContained ) {
      +						this.collapseAll( event );
      +					}
      +				} );
      +			},
      +			keydown: "_keydown"
      +		} );
      +
      +		this.refresh();
      +
      +		// Clicks outside of a menu collapse any open menus
      +		this._on( this.document, {
      +			click: function( event ) {
      +				if ( this._closeOnDocumentClick( event ) ) {
      +					this.collapseAll( event );
      +				}
      +
      +				// Reset the mouseHandled flag
      +				this.mouseHandled = false;
      +			}
      +		} );
      +	},
      +
      +	_destroy: function() {
      +		var items = this.element.find( ".ui-menu-item" )
      +				.removeAttr( "role aria-disabled" ),
      +			submenus = items.children( ".ui-menu-item-wrapper" )
      +				.removeUniqueId()
      +				.removeAttr( "tabIndex role aria-haspopup" );
      +
      +		// Destroy (sub)menus
      +		this.element
      +			.removeAttr( "aria-activedescendant" )
      +			.find( ".ui-menu" ).addBack()
      +				.removeAttr( "role aria-labelledby aria-expanded aria-hidden aria-disabled " +
      +					"tabIndex" )
      +				.removeUniqueId()
      +				.show();
      +
      +		submenus.children().each( function() {
      +			var elem = $( this );
      +			if ( elem.data( "ui-menu-submenu-caret" ) ) {
      +				elem.remove();
      +			}
      +		} );
      +	},
      +
      +	_keydown: function( event ) {
      +		var match, prev, character, skip,
      +			preventDefault = true;
      +
      +		switch ( event.keyCode ) {
      +		case $.ui.keyCode.PAGE_UP:
      +			this.previousPage( event );
      +			break;
      +		case $.ui.keyCode.PAGE_DOWN:
      +			this.nextPage( event );
      +			break;
      +		case $.ui.keyCode.HOME:
      +			this._move( "first", "first", event );
      +			break;
      +		case $.ui.keyCode.END:
      +			this._move( "last", "last", event );
      +			break;
      +		case $.ui.keyCode.UP:
      +			this.previous( event );
      +			break;
      +		case $.ui.keyCode.DOWN:
      +			this.next( event );
      +			break;
      +		case $.ui.keyCode.LEFT:
      +			this.collapse( event );
      +			break;
      +		case $.ui.keyCode.RIGHT:
      +			if ( this.active && !this.active.is( ".ui-state-disabled" ) ) {
      +				this.expand( event );
      +			}
      +			break;
      +		case $.ui.keyCode.ENTER:
      +		case $.ui.keyCode.SPACE:
      +			this._activate( event );
      +			break;
      +		case $.ui.keyCode.ESCAPE:
      +			this.collapse( event );
      +			break;
      +		default:
      +			preventDefault = false;
      +			prev = this.previousFilter || "";
      +			skip = false;
      +
      +			// Support number pad values
      +			character = event.keyCode >= 96 && event.keyCode <= 105 ?
      +				( event.keyCode - 96 ).toString() : String.fromCharCode( event.keyCode );
      +
      +			clearTimeout( this.filterTimer );
      +
      +			if ( character === prev ) {
      +				skip = true;
      +			} else {
      +				character = prev + character;
      +			}
      +
      +			match = this._filterMenuItems( character );
      +			match = skip && match.index( this.active.next() ) !== -1 ?
      +				this.active.nextAll( ".ui-menu-item" ) :
      +				match;
      +
      +			// If no matches on the current filter, reset to the last character pressed
      +			// to move down the menu to the first item that starts with that character
      +			if ( !match.length ) {
      +				character = String.fromCharCode( event.keyCode );
      +				match = this._filterMenuItems( character );
      +			}
      +
      +			if ( match.length ) {
      +				this.focus( event, match );
      +				this.previousFilter = character;
      +				this.filterTimer = this._delay( function() {
      +					delete this.previousFilter;
      +				}, 1000 );
      +			} else {
      +				delete this.previousFilter;
      +			}
      +		}
      +
      +		if ( preventDefault ) {
      +			event.preventDefault();
      +		}
      +	},
      +
      +	_activate: function( event ) {
      +		if ( this.active && !this.active.is( ".ui-state-disabled" ) ) {
      +			if ( this.active.children( "[aria-haspopup='true']" ).length ) {
      +				this.expand( event );
      +			} else {
      +				this.select( event );
      +			}
      +		}
      +	},
      +
      +	refresh: function() {
      +		var menus, items, newSubmenus, newItems, newWrappers,
      +			that = this,
      +			icon = this.options.icons.submenu,
      +			submenus = this.element.find( this.options.menus );
      +
      +		this._toggleClass( "ui-menu-icons", null, !!this.element.find( ".ui-icon" ).length );
      +
      +		// Initialize nested menus
      +		newSubmenus = submenus.filter( ":not(.ui-menu)" )
      +			.hide()
      +			.attr( {
      +				role: this.options.role,
      +				"aria-hidden": "true",
      +				"aria-expanded": "false"
      +			} )
      +			.each( function() {
      +				var menu = $( this ),
      +					item = menu.prev(),
      +					submenuCaret = $( "<span>" ).data( "ui-menu-submenu-caret", true );
      +
      +				that._addClass( submenuCaret, "ui-menu-icon", "ui-icon " + icon );
      +				item
      +					.attr( "aria-haspopup", "true" )
      +					.prepend( submenuCaret );
      +				menu.attr( "aria-labelledby", item.attr( "id" ) );
      +			} );
      +
      +		this._addClass( newSubmenus, "ui-menu", "ui-widget ui-widget-content ui-front" );
      +
      +		menus = submenus.add( this.element );
      +		items = menus.find( this.options.items );
      +
      +		// Initialize menu-items containing spaces and/or dashes only as dividers
      +		items.not( ".ui-menu-item" ).each( function() {
      +			var item = $( this );
      +			if ( that._isDivider( item ) ) {
      +				that._addClass( item, "ui-menu-divider", "ui-widget-content" );
      +			}
      +		} );
      +
      +		// Don't refresh list items that are already adapted
      +		newItems = items.not( ".ui-menu-item, .ui-menu-divider" );
      +		newWrappers = newItems.children()
      +			.not( ".ui-menu" )
      +				.uniqueId()
      +				.attr( {
      +					tabIndex: -1,
      +					role: this._itemRole()
      +				} );
      +		this._addClass( newItems, "ui-menu-item" )
      +			._addClass( newWrappers, "ui-menu-item-wrapper" );
      +
      +		// Add aria-disabled attribute to any disabled menu item
      +		items.filter( ".ui-state-disabled" ).attr( "aria-disabled", "true" );
      +
      +		// If the active item has been removed, blur the menu
      +		if ( this.active && !$.contains( this.element[ 0 ], this.active[ 0 ] ) ) {
      +			this.blur();
      +		}
      +	},
      +
      +	_itemRole: function() {
      +		return {
      +			menu: "menuitem",
      +			listbox: "option"
      +		}[ this.options.role ];
      +	},
      +
      +	_setOption: function( key, value ) {
      +		if ( key === "icons" ) {
      +			var icons = this.element.find( ".ui-menu-icon" );
      +			this._removeClass( icons, null, this.options.icons.submenu )
      +				._addClass( icons, null, value.submenu );
      +		}
      +		this._super( key, value );
      +	},
      +
      +	_setOptionDisabled: function( value ) {
      +		this._super( value );
      +
      +		this.element.attr( "aria-disabled", String( value ) );
      +		this._toggleClass( null, "ui-state-disabled", !!value );
      +	},
      +
      +	focus: function( event, item ) {
      +		var nested, focused, activeParent;
      +		this.blur( event, event && event.type === "focus" );
      +
      +		this._scrollIntoView( item );
      +
      +		this.active = item.first();
      +
      +		focused = this.active.children( ".ui-menu-item-wrapper" );
      +		this._addClass( focused, null, "ui-state-active" );
      +
      +		// Only update aria-activedescendant if there's a role
      +		// otherwise we assume focus is managed elsewhere
      +		if ( this.options.role ) {
      +			this.element.attr( "aria-activedescendant", focused.attr( "id" ) );
      +		}
      +
      +		// Highlight active parent menu item, if any
      +		activeParent = this.active
      +			.parent()
      +				.closest( ".ui-menu-item" )
      +					.children( ".ui-menu-item-wrapper" );
      +		this._addClass( activeParent, null, "ui-state-active" );
      +
      +		if ( event && event.type === "keydown" ) {
      +			this._close();
      +		} else {
      +			this.timer = this._delay( function() {
      +				this._close();
      +			}, this.delay );
      +		}
      +
      +		nested = item.children( ".ui-menu" );
      +		if ( nested.length && event && ( /^mouse/.test( event.type ) ) ) {
      +			this._startOpening( nested );
      +		}
      +		this.activeMenu = item.parent();
      +
      +		this._trigger( "focus", event, { item: item } );
      +	},
      +
      +	_scrollIntoView: function( item ) {
      +		var borderTop, paddingTop, offset, scroll, elementHeight, itemHeight;
      +		if ( this._hasScroll() ) {
      +			borderTop = parseFloat( $.css( this.activeMenu[ 0 ], "borderTopWidth" ) ) || 0;
      +			paddingTop = parseFloat( $.css( this.activeMenu[ 0 ], "paddingTop" ) ) || 0;
      +			offset = item.offset().top - this.activeMenu.offset().top - borderTop - paddingTop;
      +			scroll = this.activeMenu.scrollTop();
      +			elementHeight = this.activeMenu.height();
      +			itemHeight = item.outerHeight();
      +
      +			if ( offset < 0 ) {
      +				this.activeMenu.scrollTop( scroll + offset );
      +			} else if ( offset + itemHeight > elementHeight ) {
      +				this.activeMenu.scrollTop( scroll + offset - elementHeight + itemHeight );
      +			}
      +		}
      +	},
      +
      +	blur: function( event, fromFocus ) {
      +		if ( !fromFocus ) {
      +			clearTimeout( this.timer );
      +		}
      +
      +		if ( !this.active ) {
      +			return;
      +		}
      +
      +		this._removeClass( this.active.children( ".ui-menu-item-wrapper" ),
      +			null, "ui-state-active" );
      +
      +		this._trigger( "blur", event, { item: this.active } );
      +		this.active = null;
      +	},
      +
      +	_startOpening: function( submenu ) {
      +		clearTimeout( this.timer );
      +
      +		// Don't open if already open fixes a Firefox bug that caused a .5 pixel
      +		// shift in the submenu position when mousing over the caret icon
      +		if ( submenu.attr( "aria-hidden" ) !== "true" ) {
      +			return;
      +		}
      +
      +		this.timer = this._delay( function() {
      +			this._close();
      +			this._open( submenu );
      +		}, this.delay );
      +	},
      +
      +	_open: function( submenu ) {
      +		var position = $.extend( {
      +			of: this.active
      +		}, this.options.position );
      +
      +		clearTimeout( this.timer );
      +		this.element.find( ".ui-menu" ).not( submenu.parents( ".ui-menu" ) )
      +			.hide()
      +			.attr( "aria-hidden", "true" );
      +
      +		submenu
      +			.show()
      +			.removeAttr( "aria-hidden" )
      +			.attr( "aria-expanded", "true" )
      +			.position( position );
      +	},
      +
      +	collapseAll: function( event, all ) {
      +		clearTimeout( this.timer );
      +		this.timer = this._delay( function() {
      +
      +			// If we were passed an event, look for the submenu that contains the event
      +			var currentMenu = all ? this.element :
      +				$( event && event.target ).closest( this.element.find( ".ui-menu" ) );
      +
      +			// If we found no valid submenu ancestor, use the main menu to close all
      +			// sub menus anyway
      +			if ( !currentMenu.length ) {
      +				currentMenu = this.element;
      +			}
      +
      +			this._close( currentMenu );
      +
      +			this.blur( event );
      +
      +			// Work around active item staying active after menu is blurred
      +			this._removeClass( currentMenu.find( ".ui-state-active" ), null, "ui-state-active" );
      +
      +			this.activeMenu = currentMenu;
      +		}, this.delay );
      +	},
      +
      +	// With no arguments, closes the currently active menu - if nothing is active
      +	// it closes all menus.  If passed an argument, it will search for menus BELOW
      +	_close: function( startMenu ) {
      +		if ( !startMenu ) {
      +			startMenu = this.active ? this.active.parent() : this.element;
      +		}
      +
      +		startMenu.find( ".ui-menu" )
      +			.hide()
      +			.attr( "aria-hidden", "true" )
      +			.attr( "aria-expanded", "false" );
      +	},
      +
      +	_closeOnDocumentClick: function( event ) {
      +		return !$( event.target ).closest( ".ui-menu" ).length;
      +	},
      +
      +	_isDivider: function( item ) {
      +
      +		// Match hyphen, em dash, en dash
      +		return !/[^\-\u2014\u2013\s]/.test( item.text() );
      +	},
      +
      +	collapse: function( event ) {
      +		var newItem = this.active &&
      +			this.active.parent().closest( ".ui-menu-item", this.element );
      +		if ( newItem && newItem.length ) {
      +			this._close();
      +			this.focus( event, newItem );
      +		}
      +	},
      +
      +	expand: function( event ) {
      +		var newItem = this.active &&
      +			this.active
      +				.children( ".ui-menu " )
      +					.find( this.options.items )
      +						.first();
      +
      +		if ( newItem && newItem.length ) {
      +			this._open( newItem.parent() );
      +
      +			// Delay so Firefox will not hide activedescendant change in expanding submenu from AT
      +			this._delay( function() {
      +				this.focus( event, newItem );
      +			} );
      +		}
      +	},
      +
      +	next: function( event ) {
      +		this._move( "next", "first", event );
      +	},
      +
      +	previous: function( event ) {
      +		this._move( "prev", "last", event );
      +	},
      +
      +	isFirstItem: function() {
      +		return this.active && !this.active.prevAll( ".ui-menu-item" ).length;
      +	},
      +
      +	isLastItem: function() {
      +		return this.active && !this.active.nextAll( ".ui-menu-item" ).length;
      +	},
      +
      +	_move: function( direction, filter, event ) {
      +		var next;
      +		if ( this.active ) {
      +			if ( direction === "first" || direction === "last" ) {
      +				next = this.active
      +					[ direction === "first" ? "prevAll" : "nextAll" ]( ".ui-menu-item" )
      +					.eq( -1 );
      +			} else {
      +				next = this.active
      +					[ direction + "All" ]( ".ui-menu-item" )
      +					.eq( 0 );
      +			}
      +		}
      +		if ( !next || !next.length || !this.active ) {
      +			next = this.activeMenu.find( this.options.items )[ filter ]();
      +		}
      +
      +		this.focus( event, next );
      +	},
      +
      +	nextPage: function( event ) {
      +		var item, base, height;
      +
      +		if ( !this.active ) {
      +			this.next( event );
      +			return;
      +		}
      +		if ( this.isLastItem() ) {
      +			return;
      +		}
      +		if ( this._hasScroll() ) {
      +			base = this.active.offset().top;
      +			height = this.element.height();
      +			this.active.nextAll( ".ui-menu-item" ).each( function() {
      +				item = $( this );
      +				return item.offset().top - base - height < 0;
      +			} );
      +
      +			this.focus( event, item );
      +		} else {
      +			this.focus( event, this.activeMenu.find( this.options.items )
      +				[ !this.active ? "first" : "last" ]() );
      +		}
      +	},
      +
      +	previousPage: function( event ) {
      +		var item, base, height;
      +		if ( !this.active ) {
      +			this.next( event );
      +			return;
      +		}
      +		if ( this.isFirstItem() ) {
      +			return;
      +		}
      +		if ( this._hasScroll() ) {
      +			base = this.active.offset().top;
      +			height = this.element.height();
      +			this.active.prevAll( ".ui-menu-item" ).each( function() {
      +				item = $( this );
      +				return item.offset().top - base + height > 0;
      +			} );
      +
      +			this.focus( event, item );
      +		} else {
      +			this.focus( event, this.activeMenu.find( this.options.items ).first() );
      +		}
      +	},
      +
      +	_hasScroll: function() {
      +		return this.element.outerHeight() < this.element.prop( "scrollHeight" );
      +	},
      +
      +	select: function( event ) {
      +
      +		// TODO: It should never be possible to not have an active item at this
      +		// point, but the tests don't trigger mouseenter before click.
      +		this.active = this.active || $( event.target ).closest( ".ui-menu-item" );
      +		var ui = { item: this.active };
      +		if ( !this.active.has( ".ui-menu" ).length ) {
      +			this.collapseAll( event, true );
      +		}
      +		this._trigger( "select", event, ui );
      +	},
      +
      +	_filterMenuItems: function( character ) {
      +		var escapedCharacter = character.replace( /[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&" ),
      +			regex = new RegExp( "^" + escapedCharacter, "i" );
      +
      +		return this.activeMenu
      +			.find( this.options.items )
      +
      +				// Only match on items, not dividers or other content (#10571)
      +				.filter( ".ui-menu-item" )
      +					.filter( function() {
      +						return regex.test(
      +							$.trim( $( this ).children( ".ui-menu-item-wrapper" ).text() ) );
      +					} );
      +	}
      +} );
      +
      +
      +/*!
      + * jQuery UI Autocomplete 1.12.1
      + * http://jqueryui.com
      + *
      + * Copyright jQuery Foundation and other contributors
      + * Released under the MIT license.
      + * http://jquery.org/license
      + */
      +
      +//>>label: Autocomplete
      +//>>group: Widgets
      +//>>description: Lists suggested words as the user is typing.
      +//>>docs: http://api.jqueryui.com/autocomplete/
      +//>>demos: http://jqueryui.com/autocomplete/
      +//>>css.structure: ../../themes/base/core.css
      +//>>css.structure: ../../themes/base/autocomplete.css
      +//>>css.theme: ../../themes/base/theme.css
      +
      +
      +
      +$.widget( "ui.autocomplete", {
      +	version: "1.12.1",
      +	defaultElement: "<input>",
      +	options: {
      +		appendTo: null,
      +		autoFocus: false,
      +		delay: 300,
      +		minLength: 1,
      +		position: {
      +			my: "left top",
      +			at: "left bottom",
      +			collision: "none"
      +		},
      +		source: null,
      +
      +		// Callbacks
      +		change: null,
      +		close: null,
      +		focus: null,
      +		open: null,
      +		response: null,
      +		search: null,
      +		select: null
      +	},
      +
      +	requestIndex: 0,
      +	pending: 0,
      +
      +	_create: function() {
      +
      +		// Some browsers only repeat keydown events, not keypress events,
      +		// so we use the suppressKeyPress flag to determine if we've already
      +		// handled the keydown event. #7269
      +		// Unfortunately the code for & in keypress is the same as the up arrow,
      +		// so we use the suppressKeyPressRepeat flag to avoid handling keypress
      +		// events when we know the keydown event was used to modify the
      +		// search term. #7799
      +		var suppressKeyPress, suppressKeyPressRepeat, suppressInput,
      +			nodeName = this.element[ 0 ].nodeName.toLowerCase(),
      +			isTextarea = nodeName === "textarea",
      +			isInput = nodeName === "input";
      +
      +		// Textareas are always multi-line
      +		// Inputs are always single-line, even if inside a contentEditable element
      +		// IE also treats inputs as contentEditable
      +		// All other element types are determined by whether or not they're contentEditable
      +		this.isMultiLine = isTextarea || !isInput && this._isContentEditable( this.element );
      +
      +		this.valueMethod = this.element[ isTextarea || isInput ? "val" : "text" ];
      +		this.isNewMenu = true;
      +
      +		this._addClass( "ui-autocomplete-input" );
      +		this.element.attr( "autocomplete", "off" );
      +
      +		this._on( this.element, {
      +			keydown: function( event ) {
      +				if ( this.element.prop( "readOnly" ) ) {
      +					suppressKeyPress = true;
      +					suppressInput = true;
      +					suppressKeyPressRepeat = true;
      +					return;
      +				}
      +
      +				suppressKeyPress = false;
      +				suppressInput = false;
      +				suppressKeyPressRepeat = false;
      +				var keyCode = $.ui.keyCode;
      +				switch ( event.keyCode ) {
      +				case keyCode.PAGE_UP:
      +					suppressKeyPress = true;
      +					this._move( "previousPage", event );
      +					break;
      +				case keyCode.PAGE_DOWN:
      +					suppressKeyPress = true;
      +					this._move( "nextPage", event );
      +					break;
      +				case keyCode.UP:
      +					suppressKeyPress = true;
      +					this._keyEvent( "previous", event );
      +					break;
      +				case keyCode.DOWN:
      +					suppressKeyPress = true;
      +					this._keyEvent( "next", event );
      +					break;
      +				case keyCode.ENTER:
      +
      +					// when menu is open and has focus
      +					if ( this.menu.active ) {
      +
      +						// #6055 - Opera still allows the keypress to occur
      +						// which causes forms to submit
      +						suppressKeyPress = true;
      +						event.preventDefault();
      +						this.menu.select( event );
      +					}
      +					break;
      +				case keyCode.TAB:
      +					if ( this.menu.active ) {
      +						this.menu.select( event );
      +					}
      +					break;
      +				case keyCode.ESCAPE:
      +					if ( this.menu.element.is( ":visible" ) ) {
      +						if ( !this.isMultiLine ) {
      +							this._value( this.term );
      +						}
      +						this.close( event );
      +
      +						// Different browsers have different default behavior for escape
      +						// Single press can mean undo or clear
      +						// Double press in IE means clear the whole form
      +						event.preventDefault();
      +					}
      +					break;
      +				default:
      +					suppressKeyPressRepeat = true;
      +
      +					// search timeout should be triggered before the input value is changed
      +					this._searchTimeout( event );
      +					break;
      +				}
      +			},
      +			keypress: function( event ) {
      +				if ( suppressKeyPress ) {
      +					suppressKeyPress = false;
      +					if ( !this.isMultiLine || this.menu.element.is( ":visible" ) ) {
      +						event.preventDefault();
      +					}
      +					return;
      +				}
      +				if ( suppressKeyPressRepeat ) {
      +					return;
      +				}
      +
      +				// Replicate some key handlers to allow them to repeat in Firefox and Opera
      +				var keyCode = $.ui.keyCode;
      +				switch ( event.keyCode ) {
      +				case keyCode.PAGE_UP:
      +					this._move( "previousPage", event );
      +					break;
      +				case keyCode.PAGE_DOWN:
      +					this._move( "nextPage", event );
      +					break;
      +				case keyCode.UP:
      +					this._keyEvent( "previous", event );
      +					break;
      +				case keyCode.DOWN:
      +					this._keyEvent( "next", event );
      +					break;
      +				}
      +			},
      +			input: function( event ) {
      +				if ( suppressInput ) {
      +					suppressInput = false;
      +					event.preventDefault();
      +					return;
      +				}
      +				this._searchTimeout( event );
      +			},
      +			focus: function() {
      +				this.selectedItem = null;
      +				this.previous = this._value();
      +			},
      +			blur: function( event ) {
      +				if ( this.cancelBlur ) {
      +					delete this.cancelBlur;
      +					return;
      +				}
      +
      +				clearTimeout( this.searching );
      +				this.close( event );
      +				this._change( event );
      +			}
      +		} );
      +
      +		this._initSource();
      +		this.menu = $( "<ul>" )
      +			.appendTo( this._appendTo() )
      +			.menu( {
      +
      +				// disable ARIA support, the live region takes care of that
      +				role: null
      +			} )
      +			.hide()
      +			.menu( "instance" );
      +
      +		this._addClass( this.menu.element, "ui-autocomplete", "ui-front" );
      +		this._on( this.menu.element, {
      +			mousedown: function( event ) {
      +
      +				// prevent moving focus out of the text field
      +				event.preventDefault();
      +
      +				// IE doesn't prevent moving focus even with event.preventDefault()
      +				// so we set a flag to know when we should ignore the blur event
      +				this.cancelBlur = true;
      +				this._delay( function() {
      +					delete this.cancelBlur;
      +
      +					// Support: IE 8 only
      +					// Right clicking a menu item or selecting text from the menu items will
      +					// result in focus moving out of the input. However, we've already received
      +					// and ignored the blur event because of the cancelBlur flag set above. So
      +					// we restore focus to ensure that the menu closes properly based on the user's
      +					// next actions.
      +					if ( this.element[ 0 ] !== $.ui.safeActiveElement( this.document[ 0 ] ) ) {
      +						this.element.trigger( "focus" );
      +					}
      +				} );
      +			},
      +			menufocus: function( event, ui ) {
      +				var label, item;
      +
      +				// support: Firefox
      +				// Prevent accidental activation of menu items in Firefox (#7024 #9118)
      +				if ( this.isNewMenu ) {
      +					this.isNewMenu = false;
      +					if ( event.originalEvent && /^mouse/.test( event.originalEvent.type ) ) {
      +						this.menu.blur();
      +
      +						this.document.one( "mousemove", function() {
      +							$( event.target ).trigger( event.originalEvent );
      +						} );
      +
      +						return;
      +					}
      +				}
      +
      +				item = ui.item.data( "ui-autocomplete-item" );
      +				if ( false !== this._trigger( "focus", event, { item: item } ) ) {
      +
      +					// use value to match what will end up in the input, if it was a key event
      +					if ( event.originalEvent && /^key/.test( event.originalEvent.type ) ) {
      +						this._value( item.value );
      +					}
      +				}
      +
      +				// Announce the value in the liveRegion
      +				label = ui.item.attr( "aria-label" ) || item.value;
      +				if ( label && $.trim( label ).length ) {
      +					this.liveRegion.children().hide();
      +					$( "<div>" ).text( label ).appendTo( this.liveRegion );
      +				}
      +			},
      +			menuselect: function( event, ui ) {
      +				var item = ui.item.data( "ui-autocomplete-item" ),
      +					previous = this.previous;
      +
      +				// Only trigger when focus was lost (click on menu)
      +				if ( this.element[ 0 ] !== $.ui.safeActiveElement( this.document[ 0 ] ) ) {
      +					this.element.trigger( "focus" );
      +					this.previous = previous;
      +
      +					// #6109 - IE triggers two focus events and the second
      +					// is asynchronous, so we need to reset the previous
      +					// term synchronously and asynchronously :-(
      +					this._delay( function() {
      +						this.previous = previous;
      +						this.selectedItem = item;
      +					} );
      +				}
      +
      +				if ( false !== this._trigger( "select", event, { item: item } ) ) {
      +					this._value( item.value );
      +				}
      +
      +				// reset the term after the select event
      +				// this allows custom select handling to work properly
      +				this.term = this._value();
      +
      +				this.close( event );
      +				this.selectedItem = item;
      +			}
      +		} );
      +
      +		this.liveRegion = $( "<div>", {
      +			role: "status",
      +			"aria-live": "assertive",
      +			"aria-relevant": "additions"
      +		} )
      +			.appendTo( this.document[ 0 ].body );
      +
      +		this._addClass( this.liveRegion, null, "ui-helper-hidden-accessible" );
      +
      +		// Turning off autocomplete prevents the browser from remembering the
      +		// value when navigating through history, so we re-enable autocomplete
      +		// if the page is unloaded before the widget is destroyed. #7790
      +		this._on( this.window, {
      +			beforeunload: function() {
      +				this.element.removeAttr( "autocomplete" );
      +			}
      +		} );
      +	},
      +
      +	_destroy: function() {
      +		clearTimeout( this.searching );
      +		this.element.removeAttr( "autocomplete" );
      +		this.menu.element.remove();
      +		this.liveRegion.remove();
      +	},
      +
      +	_setOption: function( key, value ) {
      +		this._super( key, value );
      +		if ( key === "source" ) {
      +			this._initSource();
      +		}
      +		if ( key === "appendTo" ) {
      +			this.menu.element.appendTo( this._appendTo() );
      +		}
      +		if ( key === "disabled" && value && this.xhr ) {
      +			this.xhr.abort();
      +		}
      +	},
      +
      +	_isEventTargetInWidget: function( event ) {
      +		var menuElement = this.menu.element[ 0 ];
      +
      +		return event.target === this.element[ 0 ] ||
      +			event.target === menuElement ||
      +			$.contains( menuElement, event.target );
      +	},
      +
      +	_closeOnClickOutside: function( event ) {
      +		if ( !this._isEventTargetInWidget( event ) ) {
      +			this.close();
      +		}
      +	},
      +
      +	_appendTo: function() {
      +		var element = this.options.appendTo;
      +
      +		if ( element ) {
      +			element = element.jquery || element.nodeType ?
      +				$( element ) :
      +				this.document.find( element ).eq( 0 );
      +		}
      +
      +		if ( !element || !element[ 0 ] ) {
      +			element = this.element.closest( ".ui-front, dialog" );
      +		}
      +
      +		if ( !element.length ) {
      +			element = this.document[ 0 ].body;
      +		}
      +
      +		return element;
      +	},
      +
      +	_initSource: function() {
      +		var array, url,
      +			that = this;
      +		if ( $.isArray( this.options.source ) ) {
      +			array = this.options.source;
      +			this.source = function( request, response ) {
      +				response( $.ui.autocomplete.filter( array, request.term ) );
      +			};
      +		} else if ( typeof this.options.source === "string" ) {
      +			url = this.options.source;
      +			this.source = function( request, response ) {
      +				if ( that.xhr ) {
      +					that.xhr.abort();
      +				}
      +				that.xhr = $.ajax( {
      +					url: url,
      +					data: request,
      +					dataType: "json",
      +					success: function( data ) {
      +						response( data );
      +					},
      +					error: function() {
      +						response( [] );
      +					}
      +				} );
      +			};
      +		} else {
      +			this.source = this.options.source;
      +		}
      +	},
      +
      +	_searchTimeout: function( event ) {
      +		clearTimeout( this.searching );
      +		this.searching = this._delay( function() {
      +
      +			// Search if the value has changed, or if the user retypes the same value (see #7434)
      +			var equalValues = this.term === this._value(),
      +				menuVisible = this.menu.element.is( ":visible" ),
      +				modifierKey = event.altKey || event.ctrlKey || event.metaKey || event.shiftKey;
      +
      +			if ( !equalValues || ( equalValues && !menuVisible && !modifierKey ) ) {
      +				this.selectedItem = null;
      +				this.search( null, event );
      +			}
      +		}, this.options.delay );
      +	},
      +
      +	search: function( value, event ) {
      +		value = value != null ? value : this._value();
      +
      +		// Always save the actual value, not the one passed as an argument
      +		this.term = this._value();
      +
      +		if ( value.length < this.options.minLength ) {
      +			return this.close( event );
      +		}
      +
      +		if ( this._trigger( "search", event ) === false ) {
      +			return;
      +		}
      +
      +		return this._search( value );
      +	},
      +
      +	_search: function( value ) {
      +		this.pending++;
      +		this._addClass( "ui-autocomplete-loading" );
      +		this.cancelSearch = false;
      +
      +		this.source( { term: value }, this._response() );
      +	},
      +
      +	_response: function() {
      +		var index = ++this.requestIndex;
      +
      +		return $.proxy( function( content ) {
      +			if ( index === this.requestIndex ) {
      +				this.__response( content );
      +			}
      +
      +			this.pending--;
      +			if ( !this.pending ) {
      +				this._removeClass( "ui-autocomplete-loading" );
      +			}
      +		}, this );
      +	},
      +
      +	__response: function( content ) {
      +		if ( content ) {
      +			content = this._normalize( content );
      +		}
      +		this._trigger( "response", null, { content: content } );
      +		if ( !this.options.disabled && content && content.length && !this.cancelSearch ) {
      +			this._suggest( content );
      +			this._trigger( "open" );
      +		} else {
      +
      +			// use ._close() instead of .close() so we don't cancel future searches
      +			this._close();
      +		}
      +	},
      +
      +	close: function( event ) {
      +		this.cancelSearch = true;
      +		this._close( event );
      +	},
      +
      +	_close: function( event ) {
      +
      +		// Remove the handler that closes the menu on outside clicks
      +		this._off( this.document, "mousedown" );
      +
      +		if ( this.menu.element.is( ":visible" ) ) {
      +			this.menu.element.hide();
      +			this.menu.blur();
      +			this.isNewMenu = true;
      +			this._trigger( "close", event );
      +		}
      +	},
      +
      +	_change: function( event ) {
      +		if ( this.previous !== this._value() ) {
      +			this._trigger( "change", event, { item: this.selectedItem } );
      +		}
      +	},
      +
      +	_normalize: function( items ) {
      +
      +		// assume all items have the right format when the first item is complete
      +		if ( items.length && items[ 0 ].label && items[ 0 ].value ) {
      +			return items;
      +		}
      +		return $.map( items, function( item ) {
      +			if ( typeof item === "string" ) {
      +				return {
      +					label: item,
      +					value: item
      +				};
      +			}
      +			return $.extend( {}, item, {
      +				label: item.label || item.value,
      +				value: item.value || item.label
      +			} );
      +		} );
      +	},
      +
      +	_suggest: function( items ) {
      +		var ul = this.menu.element.empty();
      +		this._renderMenu( ul, items );
      +		this.isNewMenu = true;
      +		this.menu.refresh();
      +
      +		// Size and position menu
      +		ul.show();
      +		this._resizeMenu();
      +		ul.position( $.extend( {
      +			of: this.element
      +		}, this.options.position ) );
      +
      +		if ( this.options.autoFocus ) {
      +			this.menu.next();
      +		}
      +
      +		// Listen for interactions outside of the widget (#6642)
      +		this._on( this.document, {
      +			mousedown: "_closeOnClickOutside"
      +		} );
      +	},
      +
      +	_resizeMenu: function() {
      +		var ul = this.menu.element;
      +		ul.outerWidth( Math.max(
      +
      +			// Firefox wraps long text (possibly a rounding bug)
      +			// so we add 1px to avoid the wrapping (#7513)
      +			ul.width( "" ).outerWidth() + 1,
      +			this.element.outerWidth()
      +		) );
      +	},
      +
      +	_renderMenu: function( ul, items ) {
      +		var that = this;
      +		$.each( items, function( index, item ) {
      +			that._renderItemData( ul, item );
      +		} );
      +	},
      +
      +	_renderItemData: function( ul, item ) {
      +		return this._renderItem( ul, item ).data( "ui-autocomplete-item", item );
      +	},
      +
      +	_renderItem: function( ul, item ) {
      +		return $( "<li>" )
      +			.append( $( "<div>" ).text( item.label ) )
      +			.appendTo( ul );
      +	},
      +
      +	_move: function( direction, event ) {
      +		if ( !this.menu.element.is( ":visible" ) ) {
      +			this.search( null, event );
      +			return;
      +		}
      +		if ( this.menu.isFirstItem() && /^previous/.test( direction ) ||
      +				this.menu.isLastItem() && /^next/.test( direction ) ) {
      +
      +			if ( !this.isMultiLine ) {
      +				this._value( this.term );
      +			}
      +
      +			this.menu.blur();
      +			return;
      +		}
      +		this.menu[ direction ]( event );
      +	},
      +
      +	widget: function() {
      +		return this.menu.element;
      +	},
      +
      +	_value: function() {
      +		return this.valueMethod.apply( this.element, arguments );
      +	},
      +
      +	_keyEvent: function( keyEvent, event ) {
      +		if ( !this.isMultiLine || this.menu.element.is( ":visible" ) ) {
      +			this._move( keyEvent, event );
      +
      +			// Prevents moving cursor to beginning/end of the text field in some browsers
      +			event.preventDefault();
      +		}
      +	},
      +
      +	// Support: Chrome <=50
      +	// We should be able to just use this.element.prop( "isContentEditable" )
      +	// but hidden elements always report false in Chrome.
      +	// https://code.google.com/p/chromium/issues/detail?id=313082
      +	_isContentEditable: function( element ) {
      +		if ( !element.length ) {
      +			return false;
      +		}
      +
      +		var editable = element.prop( "contentEditable" );
      +
      +		if ( editable === "inherit" ) {
      +		  return this._isContentEditable( element.parent() );
      +		}
      +
      +		return editable === "true";
      +	}
      +} );
      +
      +$.extend( $.ui.autocomplete, {
      +	escapeRegex: function( value ) {
      +		return value.replace( /[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&" );
      +	},
      +	filter: function( array, term ) {
      +		var matcher = new RegExp( $.ui.autocomplete.escapeRegex( term ), "i" );
      +		return $.grep( array, function( value ) {
      +			return matcher.test( value.label || value.value || value );
      +		} );
      +	}
      +} );
      +
      +// Live region extension, adding a `messages` option
      +// NOTE: This is an experimental API. We are still investigating
      +// a full solution for string manipulation and internationalization.
      +$.widget( "ui.autocomplete", $.ui.autocomplete, {
      +	options: {
      +		messages: {
      +			noResults: "No search results.",
      +			results: function( amount ) {
      +				return amount + ( amount > 1 ? " results are" : " result is" ) +
      +					" available, use up and down arrow keys to navigate.";
      +			}
      +		}
      +	},
      +
      +	__response: function( content ) {
      +		var message;
      +		this._superApply( arguments );
      +		if ( this.options.disabled || this.cancelSearch ) {
      +			return;
      +		}
      +		if ( content && content.length ) {
      +			message = this.options.messages.results( content.length );
      +		} else {
      +			message = this.options.messages.noResults;
      +		}
      +		this.liveRegion.children().hide();
      +		$( "<div>" ).text( message ).appendTo( this.liveRegion );
      +	}
      +} );
      +
      +var widgetsAutocomplete = $.ui.autocomplete;
      +
      +
      +
      +
      +}));
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/script-dir/jquery-ui.min.css b/docs/site/testapidocs/script-dir/jquery-ui.min.css
      new file mode 100644
      index 00000000..d64539cb
      --- /dev/null
      +++ b/docs/site/testapidocs/script-dir/jquery-ui.min.css
      @@ -0,0 +1,6 @@
      +/*! jQuery UI - v1.13.1 - 2022-05-12
      +* http://jqueryui.com
      +* Includes: core.css, autocomplete.css, menu.css
      +* Copyright jQuery Foundation and other contributors; Licensed MIT */
      +
      +.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;-ms-filter:"alpha(opacity=0)"}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/script-dir/jquery-ui.min.js b/docs/site/testapidocs/script-dir/jquery-ui.min.js
      new file mode 100644
      index 00000000..55c28329
      --- /dev/null
      +++ b/docs/site/testapidocs/script-dir/jquery-ui.min.js
      @@ -0,0 +1,6 @@
      +/*! jQuery UI - v1.13.1 - 2022-05-12
      +* http://jqueryui.com
      +* Includes: widget.js, position.js, keycode.js, unique-id.js, widgets/autocomplete.js, widgets/menu.js
      +* Copyright jQuery Foundation and other contributors; Licensed MIT */
      +
      +!function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)}(function(x){"use strict";x.ui=x.ui||{};x.ui.version="1.13.1";var n,i=0,l=Array.prototype.hasOwnProperty,a=Array.prototype.slice;x.cleanData=(n=x.cleanData,function(t){for(var e,i,s=0;null!=(i=t[s]);s++)(e=x._data(i,"events"))&&e.remove&&x(i).triggerHandler("remove");n(t)}),x.widget=function(t,i,e){var s,n,o,l={},a=t.split(".")[0],r=a+"-"+(t=t.split(".")[1]);return e||(e=i,i=x.Widget),Array.isArray(e)&&(e=x.extend.apply(null,[{}].concat(e))),x.expr.pseudos[r.toLowerCase()]=function(t){return!!x.data(t,r)},x[a]=x[a]||{},s=x[a][t],n=x[a][t]=function(t,e){if(!this||!this._createWidget)return new n(t,e);arguments.length&&this._createWidget(t,e)},x.extend(n,s,{version:e.version,_proto:x.extend({},e),_childConstructors:[]}),(o=new i).options=x.widget.extend({},o.options),x.each(e,function(e,s){function n(){return i.prototype[e].apply(this,arguments)}function o(t){return i.prototype[e].apply(this,t)}l[e]="function"==typeof s?function(){var t,e=this._super,i=this._superApply;return this._super=n,this._superApply=o,t=s.apply(this,arguments),this._super=e,this._superApply=i,t}:s}),n.prototype=x.widget.extend(o,{widgetEventPrefix:s&&o.widgetEventPrefix||t},l,{constructor:n,namespace:a,widgetName:t,widgetFullName:r}),s?(x.each(s._childConstructors,function(t,e){var i=e.prototype;x.widget(i.namespace+"."+i.widgetName,n,e._proto)}),delete s._childConstructors):i._childConstructors.push(n),x.widget.bridge(t,n),n},x.widget.extend=function(t){for(var e,i,s=a.call(arguments,1),n=0,o=s.length;n<o;n++)for(e in s[n])i=s[n][e],l.call(s[n],e)&&void 0!==i&&(x.isPlainObject(i)?t[e]=x.isPlainObject(t[e])?x.widget.extend({},t[e],i):x.widget.extend({},i):t[e]=i);return t},x.widget.bridge=function(o,e){var l=e.prototype.widgetFullName||o;x.fn[o]=function(i){var t="string"==typeof i,s=a.call(arguments,1),n=this;return t?this.length||"instance"!==i?this.each(function(){var t,e=x.data(this,l);return"instance"===i?(n=e,!1):e?"function"!=typeof e[i]||"_"===i.charAt(0)?x.error("no such method '"+i+"' for "+o+" widget instance"):(t=e[i].apply(e,s))!==e&&void 0!==t?(n=t&&t.jquery?n.pushStack(t.get()):t,!1):void 0:x.error("cannot call methods on "+o+" prior to initialization; attempted to call method '"+i+"'")}):n=void 0:(s.length&&(i=x.widget.extend.apply(null,[i].concat(s))),this.each(function(){var t=x.data(this,l);t?(t.option(i||{}),t._init&&t._init()):x.data(this,l,new e(i,this))})),n}},x.Widget=function(){},x.Widget._childConstructors=[],x.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"<div>",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=x(e||this.defaultElement||this)[0],this.element=x(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=x(),this.hoverable=x(),this.focusable=x(),this.classesElementLookup={},e!==this&&(x.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=x(e.style?e.ownerDocument:e.document||e),this.window=x(this.document[0].defaultView||this.document[0].parentWindow)),this.options=x.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:x.noop,_create:x.noop,_init:x.noop,destroy:function(){var i=this;this._destroy(),x.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:x.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return x.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=x.widget.extend({},this.options[t]),n=0;n<i.length-1;n++)s[i[n]]=s[i[n]]||{},s=s[i[n]];if(t=i.pop(),1===arguments.length)return void 0===s[t]?null:s[t];s[t]=e}else{if(1===arguments.length)return void 0===this.options[t]?null:this.options[t];o[t]=e}return this._setOptions(o),this},_setOptions:function(t){for(var e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(t){var e,i,s;for(e in t)s=this.classesElementLookup[e],t[e]!==this.options.classes[e]&&s&&s.length&&(i=x(s.get()),this._removeClass(s,e),i.addClass(this._classes({element:i,keys:e,classes:t,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(n){var o=[],l=this;function t(t,e){for(var i,s=0;s<t.length;s++)i=l.classesElementLookup[t[s]]||x(),i=n.add?(function(){var i=[];n.element.each(function(t,e){x.map(l.classesElementLookup,function(t){return t}).some(function(t){return t.is(e)})||i.push(e)}),l._on(x(i),{remove:"_untrackClassesElement"})}(),x(x.uniqueSort(i.get().concat(n.element.get())))):x(i.not(n.element).get()),l.classesElementLookup[t[s]]=i,o.push(t[s]),e&&n.classes[t[s]]&&o.push(n.classes[t[s]])}return(n=x.extend({element:this.element,classes:this.options.classes||{}},n)).keys&&t(n.keys.match(/\S+/g)||[],!0),n.extra&&t(n.extra.match(/\S+/g)||[]),o.join(" ")},_untrackClassesElement:function(i){var s=this;x.each(s.classesElementLookup,function(t,e){-1!==x.inArray(i.target,e)&&(s.classesElementLookup[t]=x(e.not(i.target).get()))}),this._off(x(i.target))},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){var n="string"==typeof t||null===t,i={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s="boolean"==typeof s?s:i};return i.element.toggleClass(this._classes(i),s),this},_on:function(n,o,t){var l,a=this;"boolean"!=typeof n&&(t=o,o=n,n=!1),t?(o=l=x(o),this.bindings=this.bindings.add(o)):(t=o,o=this.element,l=this.widget()),x.each(t,function(t,e){function i(){if(n||!0!==a.options.disabled&&!x(this).hasClass("ui-state-disabled"))return("string"==typeof e?a[e]:e).apply(a,arguments)}"string"!=typeof e&&(i.guid=e.guid=e.guid||i.guid||x.guid++);var s=t.match(/^([\w:-]*)\s*(.*)$/),t=s[1]+a.eventNamespace,s=s[2];s?l.on(t,s,i):o.on(t,i)})},_off:function(t,e){e=(e||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,t.off(e),this.bindings=x(this.bindings.not(t).get()),this.focusable=x(this.focusable.not(t).get()),this.hoverable=x(this.hoverable.not(t).get())},_delay:function(t,e){var i=this;return setTimeout(function(){return("string"==typeof t?i[t]:t).apply(i,arguments)},e||0)},_hoverable:function(t){this.hoverable=this.hoverable.add(t),this._on(t,{mouseenter:function(t){this._addClass(x(t.currentTarget),null,"ui-state-hover")},mouseleave:function(t){this._removeClass(x(t.currentTarget),null,"ui-state-hover")}})},_focusable:function(t){this.focusable=this.focusable.add(t),this._on(t,{focusin:function(t){this._addClass(x(t.currentTarget),null,"ui-state-focus")},focusout:function(t){this._removeClass(x(t.currentTarget),null,"ui-state-focus")}})},_trigger:function(t,e,i){var s,n,o=this.options[t];if(i=i||{},(e=x.Event(e)).type=(t===this.widgetEventPrefix?t:this.widgetEventPrefix+t).toLowerCase(),e.target=this.element[0],n=e.originalEvent)for(s in n)s in e||(e[s]=n[s]);return this.element.trigger(e,i),!("function"==typeof o&&!1===o.apply(this.element[0],[e].concat(i))||e.isDefaultPrevented())}},x.each({show:"fadeIn",hide:"fadeOut"},function(o,l){x.Widget.prototype["_"+o]=function(e,t,i){var s,n=(t="string"==typeof t?{effect:t}:t)?!0!==t&&"number"!=typeof t&&t.effect||l:o;"number"==typeof(t=t||{})?t={duration:t}:!0===t&&(t={}),s=!x.isEmptyObject(t),t.complete=i,t.delay&&e.delay(t.delay),s&&x.effects&&x.effects.effect[n]?e[o](t):n!==o&&e[n]?e[n](t.duration,t.easing,i):e.queue(function(t){x(this)[o](),i&&i.call(e[0]),t()})}});var s,C,E,o,r,u,h,c,k;x.widget;function T(t,e,i){return[parseFloat(t[0])*(c.test(t[0])?e/100:1),parseFloat(t[1])*(c.test(t[1])?i/100:1)]}function A(t,e){return parseInt(x.css(t,e),10)||0}function W(t){return null!=t&&t===t.window}C=Math.max,E=Math.abs,o=/left|center|right/,r=/top|center|bottom/,u=/[\+\-]\d+(\.[\d]+)?%?/,h=/^\w+/,c=/%$/,k=x.fn.position,x.position={scrollbarWidth:function(){if(void 0!==s)return s;var t,e=x("<div style='display:block;position:absolute;width:200px;height:200px;overflow:hidden;'><div style='height:300px;width:auto;'></div></div>"),i=e.children()[0];return x("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.width<t.element[0].scrollWidth;return{width:"scroll"===i||"auto"===i&&t.height<t.element[0].scrollHeight?x.position.scrollbarWidth():0,height:e?x.position.scrollbarWidth():0}},getWithinInfo:function(t){var e=x(t||window),i=W(e[0]),s=!!e[0]&&9===e[0].nodeType;return{element:e,isWindow:i,isDocument:s,offset:!i&&!s?x(t).offset():{left:0,top:0},scrollLeft:e.scrollLeft(),scrollTop:e.scrollTop(),width:e.outerWidth(),height:e.outerHeight()}}},x.fn.position=function(c){if(!c||!c.of)return k.apply(this,arguments);var d,f,m,p,v,t,g="string"==typeof(c=x.extend({},c)).of?x(document).find(c.of):x(c.of),_=x.position.getWithinInfo(c.within),y=x.position.getScrollInfo(_),b=(c.collision||"flip").split(" "),w={},e=9===(t=(e=g)[0]).nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:W(t)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:t.preventDefault?{width:0,height:0,offset:{top:t.pageY,left:t.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()};return g[0].preventDefault&&(c.at="left top"),f=e.width,m=e.height,v=x.extend({},p=e.offset),x.each(["my","at"],function(){var t,e,i=(c[this]||"").split(" ");(i=1===i.length?o.test(i[0])?i.concat(["center"]):r.test(i[0])?["center"].concat(i):["center","center"]:i)[0]=o.test(i[0])?i[0]:"center",i[1]=r.test(i[1])?i[1]:"center",t=u.exec(i[0]),e=u.exec(i[1]),w[this]=[t?t[0]:0,e?e[0]:0],c[this]=[h.exec(i[0])[0],h.exec(i[1])[0]]}),1===b.length&&(b[1]=b[0]),"right"===c.at[0]?v.left+=f:"center"===c.at[0]&&(v.left+=f/2),"bottom"===c.at[1]?v.top+=m:"center"===c.at[1]&&(v.top+=m/2),d=T(w.at,f,m),v.left+=d[0],v.top+=d[1],this.each(function(){var i,t,l=x(this),a=l.outerWidth(),r=l.outerHeight(),e=A(this,"marginLeft"),s=A(this,"marginTop"),n=a+e+A(this,"marginRight")+y.width,o=r+s+A(this,"marginBottom")+y.height,u=x.extend({},v),h=T(w.my,l.outerWidth(),l.outerHeight());"right"===c.my[0]?u.left-=a:"center"===c.my[0]&&(u.left-=a/2),"bottom"===c.my[1]?u.top-=r:"center"===c.my[1]&&(u.top-=r/2),u.left+=h[0],u.top+=h[1],i={marginLeft:e,marginTop:s},x.each(["left","top"],function(t,e){x.ui.position[b[t]]&&x.ui.position[b[t]][e](u,{targetWidth:f,targetHeight:m,elemWidth:a,elemHeight:r,collisionPosition:i,collisionWidth:n,collisionHeight:o,offset:[d[0]+h[0],d[1]+h[1]],my:c.my,at:c.at,within:_,elem:l})}),c.using&&(t=function(t){var e=p.left-u.left,i=e+f-a,s=p.top-u.top,n=s+m-r,o={target:{element:g,left:p.left,top:p.top,width:f,height:m},element:{element:l,left:u.left,top:u.top,width:a,height:r},horizontal:i<0?"left":0<e?"right":"center",vertical:n<0?"top":0<s?"bottom":"middle"};f<a&&E(e+i)<f&&(o.horizontal="center"),m<r&&E(s+n)<m&&(o.vertical="middle"),C(E(e),E(i))>C(E(s),E(n))?o.important="horizontal":o.important="vertical",c.using.call(this,t,o)}),l.offset(x.extend(u,{using:t}))})},x.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,l=s-o,a=o+e.collisionWidth-n-s;e.collisionWidth>n?0<l&&a<=0?(i=t.left+l+e.collisionWidth-n-s,t.left+=l-i):t.left=!(0<a&&l<=0)&&a<l?s+n-e.collisionWidth:s:0<l?t.left+=l:0<a?t.left-=a:t.left=C(t.left-o,t.left)},top:function(t,e){var i=e.within,s=i.isWindow?i.scrollTop:i.offset.top,n=e.within.height,o=t.top-e.collisionPosition.marginTop,l=s-o,a=o+e.collisionHeight-n-s;e.collisionHeight>n?0<l&&a<=0?(i=t.top+l+e.collisionHeight-n-s,t.top+=l-i):t.top=!(0<a&&l<=0)&&a<l?s+n-e.collisionHeight:s:0<l?t.top+=l:0<a?t.top-=a:t.top=C(t.top-o,t.top)}},flip:{left:function(t,e){var i=e.within,s=i.offset.left+i.scrollLeft,n=i.width,o=i.isWindow?i.scrollLeft:i.offset.left,l=t.left-e.collisionPosition.marginLeft,a=l-o,r=l+e.collisionWidth-n-o,u="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,i="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,l=-2*e.offset[0];a<0?((s=t.left+u+i+l+e.collisionWidth-n-s)<0||s<E(a))&&(t.left+=u+i+l):0<r&&(0<(o=t.left-e.collisionPosition.marginLeft+u+i+l-o)||E(o)<r)&&(t.left+=u+i+l)},top:function(t,e){var i=e.within,s=i.offset.top+i.scrollTop,n=i.height,o=i.isWindow?i.scrollTop:i.offset.top,l=t.top-e.collisionPosition.marginTop,a=l-o,r=l+e.collisionHeight-n-o,u="top"===e.my[1]?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,i="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,l=-2*e.offset[1];a<0?((s=t.top+u+i+l+e.collisionHeight-n-s)<0||s<E(a))&&(t.top+=u+i+l):0<r&&(0<(o=t.top-e.collisionPosition.marginTop+u+i+l-o)||E(o)<r)&&(t.top+=u+i+l)}},flipfit:{left:function(){x.ui.position.flip.left.apply(this,arguments),x.ui.position.fit.left.apply(this,arguments)},top:function(){x.ui.position.flip.top.apply(this,arguments),x.ui.position.fit.top.apply(this,arguments)}}};var t;x.ui.position,x.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},x.fn.extend({uniqueId:(t=0,function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++t)})}),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&x(this).removeAttr("id")})}}),x.ui.safeActiveElement=function(e){var i;try{i=e.activeElement}catch(t){i=e.body}return i=!(i=i||e.body).nodeName?e.body:i},x.widget("ui.menu",{version:"1.13.1",defaultElement:"<ul>",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=x(t.target),i=x(x.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){x.contains(this.element[0],x.ui.safeActiveElement(this.document[0]))||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=x(t.target).closest(".ui-menu-item"),i=x(t.currentTarget),e[0]===i[0]&&(i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=x(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case x.ui.keyCode.PAGE_UP:this.previousPage(t);break;case x.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case x.ui.keyCode.HOME:this._move("first","first",t);break;case x.ui.keyCode.END:this._move("last","last",t);break;case x.ui.keyCode.UP:this.previous(t);break;case x.ui.keyCode.DOWN:this.next(t);break;case x.ui.keyCode.LEFT:this.collapse(t);break;case x.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case x.ui.keyCode.ENTER:case x.ui.keyCode.SPACE:this._activate(t);break;case x.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),e=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=x(this),e=t.prev(),i=x("<span>").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(e,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=x(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),i=(e=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(e,"ui-menu-item")._addClass(i,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!x.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(i=parseFloat(x.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(x.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-i-s,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s<e+t&&this.activeMenu.scrollTop(i+e-s+t))},blur:function(t,e){e||clearTimeout(this.timer),this.active&&(this._removeClass(this.active.children(".ui-menu-item-wrapper"),null,"ui-state-active"),this._trigger("blur",t,{item:this.active}),this.active=null)},_startOpening:function(t){clearTimeout(this.timer),"true"===t.attr("aria-hidden")&&(this.timer=this._delay(function(){this._close(),this._open(t)},this.delay))},_open:function(t){var e=x.extend({of:this.active},this.options.position);clearTimeout(this.timer),this.element.find(".ui-menu").not(t.parents(".ui-menu")).hide().attr("aria-hidden","true"),t.show().removeAttr("aria-hidden").attr("aria-expanded","true").position(e)},collapseAll:function(e,i){clearTimeout(this.timer),this.timer=this._delay(function(){var t=i?this.element:x(e&&e.target).closest(this.element.find(".ui-menu"));t.length||(t=this.element),this._close(t),this.blur(e),this._removeClass(t.find(".ui-state-active"),null,"ui-state-active"),this.activeMenu=t},i?0:this.delay)},_close:function(t){(t=t||(this.active?this.active.parent():this.element)).find(".ui-menu").hide().attr("aria-hidden","true").attr("aria-expanded","false")},_closeOnDocumentClick:function(t){return!x(t.target).closest(".ui-menu").length},_isDivider:function(t){return!/[^\-\u2014\u2013\s]/.test(t.text())},collapse:function(t){var e=this.active&&this.active.parent().closest(".ui-menu-item",this.element);e&&e.length&&(this._close(),this.focus(t,e))},expand:function(t){var e=this.active&&this._menuItems(this.active.children(".ui-menu")).first();e&&e.length&&(this._open(e.parent()),this._delay(function(){this.focus(t,e)}))},next:function(t){this._move("next","first",t)},previous:function(t){this._move("prev","last",t)},isFirstItem:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},isLastItem:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},_menuItems:function(t){return(t||this.element).find(this.options.items).filter(".ui-menu-item")},_move:function(t,e,i){var s;(s=this.active?"first"===t||"last"===t?this.active["first"===t?"prevAll":"nextAll"](".ui-menu-item").last():this.active[t+"All"](".ui-menu-item").first():s)&&s.length&&this.active||(s=this._menuItems(this.activeMenu)[e]()),this.focus(i,s)},nextPage:function(t){var e,i,s;this.active?this.isLastItem()||(this._hasScroll()?(i=this.active.offset().top,s=this.element.innerHeight(),0===x.fn.jquery.indexOf("3.2.")&&(s+=this.element[0].offsetHeight-this.element.outerHeight()),this.active.nextAll(".ui-menu-item").each(function(){return(e=x(this)).offset().top-i-s<0}),this.focus(t,e)):this.focus(t,this._menuItems(this.activeMenu)[this.active?"last":"first"]())):this.next(t)},previousPage:function(t){var e,i,s;this.active?this.isFirstItem()||(this._hasScroll()?(i=this.active.offset().top,s=this.element.innerHeight(),0===x.fn.jquery.indexOf("3.2.")&&(s+=this.element[0].offsetHeight-this.element.outerHeight()),this.active.prevAll(".ui-menu-item").each(function(){return 0<(e=x(this)).offset().top-i+s}),this.focus(t,e)):this.focus(t,this._menuItems(this.activeMenu).first())):this.next(t)},_hasScroll:function(){return this.element.outerHeight()<this.element.prop("scrollHeight")},select:function(t){this.active=this.active||x(t.target).closest(".ui-menu-item");var e={item:this.active};this.active.has(".ui-menu").length||this.collapseAll(t,!0),this._trigger("select",t,e)},_filterMenuItems:function(t){var t=t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&"),e=new RegExp("^"+t,"i");return this.activeMenu.find(this.options.items).filter(".ui-menu-item").filter(function(){return e.test(String.prototype.trim.call(x(this).children(".ui-menu-item-wrapper").text()))})}});x.widget("ui.autocomplete",{version:"1.13.1",defaultElement:"<input>",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&this._isContentEditable(this.element),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)return i=!1,void(this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault());if(!s){var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){if(n)return n=!1,void t.preventDefault();this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=x("<ul>").appendTo(this._appendTo()).menu({role:null}).hide().attr({unselectable:"on"}).menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault()},menufocus:function(t,e){var i,s;if(this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent&&/^mouse/.test(t.originalEvent.type)))return this.menu.blur(),void this.document.one("mousemove",function(){x(t.target).trigger(t.originalEvent)});s=e.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:s})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(s.value),(i=e.item.attr("aria-label")||s.value)&&String.prototype.trim.call(i).length&&(clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(x("<div>").text(i))},100))},menuselect:function(t,e){var i=e.item.data("ui-autocomplete-item"),s=this.previous;this.element[0]!==x.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s,this.selectedItem=i})),!1!==this._trigger("select",t,{item:i})&&this._value(i.value),this.term=this._value(),this.close(t),this.selectedItem=i}}),this.liveRegion=x("<div>",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(t){var e=this.menu.element[0];return t.target===this.element[0]||t.target===e||x.contains(e,t.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?x(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_initSource:function(){var i,s,n=this;Array.isArray(this.options.source)?(i=this.options.source,this.source=function(t,e){e(x.ui.autocomplete.filter(i,t.term))}):"string"==typeof this.options.source?(s=this.options.source,this.source=function(t,e){n.xhr&&n.xhr.abort(),n.xhr=x.ajax({url:s,data:t,dataType:"json",success:function(t){e(t)},error:function(){e([])}})}):this.source=this.options.source},_searchTimeout:function(s){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),e=this.menu.element.is(":visible"),i=s.altKey||s.ctrlKey||s.metaKey||s.shiftKey;t&&(e||i)||(this.selectedItem=null,this.search(null,s))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length<this.options.minLength?this.close(e):!1!==this._trigger("search",e)?this._search(t):void 0},_search:function(t){this.pending++,this._addClass("ui-autocomplete-loading"),this.cancelSearch=!1,this.source({term:t},this._response())},_response:function(){var e=++this.requestIndex;return function(t){e===this.requestIndex&&this.__response(t),this.pending--,this.pending||this._removeClass("ui-autocomplete-loading")}.bind(this)},__response:function(t){t=t&&this._normalize(t),this._trigger("response",null,{content:t}),!this.options.disabled&&t&&t.length&&!this.cancelSearch?(this._suggest(t),this._trigger("open")):this._close()},close:function(t){this.cancelSearch=!0,this._close(t)},_close:function(t){this._off(this.document,"mousedown"),this.menu.element.is(":visible")&&(this.menu.element.hide(),this.menu.blur(),this.isNewMenu=!0,this._trigger("close",t))},_change:function(t){this.previous!==this._value()&&this._trigger("change",t,{item:this.selectedItem})},_normalize:function(t){return t.length&&t[0].label&&t[0].value?t:x.map(t,function(t){return"string"==typeof t?{label:t,value:t}:x.extend({},t,{label:t.label||t.value,value:t.value||t.label})})},_suggest:function(t){var e=this.menu.element.empty();this._renderMenu(e,t),this.isNewMenu=!0,this.menu.refresh(),e.show(),this._resizeMenu(),e.position(x.extend({of:this.element},this.options.position)),this.options.autoFocus&&this.menu.next(),this._on(this.document,{mousedown:"_closeOnClickOutside"})},_resizeMenu:function(){var t=this.menu.element;t.outerWidth(Math.max(t.width("").outerWidth()+1,this.element.outerWidth()))},_renderMenu:function(i,t){var s=this;x.each(t,function(t,e){s._renderItemData(i,e)})},_renderItemData:function(t,e){return this._renderItem(t,e).data("ui-autocomplete-item",e)},_renderItem:function(t,e){return x("<li>").append(x("<div>").text(e.label)).appendTo(t)},_move:function(t,e){if(this.menu.element.is(":visible"))return this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),void this.menu.blur()):void this.menu[t](e);this.search(null,e)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){this.isMultiLine&&!this.menu.element.is(":visible")||(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),x.extend(x.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,e){var i=new RegExp(x.ui.autocomplete.escapeRegex(e),"i");return x.grep(t,function(t){return i.test(t.label||t.value||t)})}}),x.widget("ui.autocomplete",x.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(1<t?" results are":" result is")+" available, use up and down arrow keys to navigate."}}},__response:function(t){var e;this._superApply(arguments),this.options.disabled||this.cancelSearch||(e=t&&t.length?this.options.messages.results(t.length):this.options.messages.noResults,clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(x("<div>").text(e))},100))}});x.ui.autocomplete});
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/script-dir/jquery-ui.structure.css b/docs/site/testapidocs/script-dir/jquery-ui.structure.css
      new file mode 100644
      index 00000000..d8c81c2b
      --- /dev/null
      +++ b/docs/site/testapidocs/script-dir/jquery-ui.structure.css
      @@ -0,0 +1,156 @@
      +/*!
      + * jQuery UI CSS Framework 1.12.1
      + * http://jqueryui.com
      + *
      + * Copyright jQuery Foundation and other contributors
      + * Released under the MIT license.
      + * http://jquery.org/license
      + *
      + * http://api.jqueryui.com/category/theming/
      + */
      +/* Layout helpers
      +----------------------------------*/
      +.ui-helper-hidden {
      +	display: none;
      +}
      +.ui-helper-hidden-accessible {
      +	border: 0;
      +	clip: rect(0 0 0 0);
      +	height: 1px;
      +	margin: -1px;
      +	overflow: hidden;
      +	padding: 0;
      +	position: absolute;
      +	width: 1px;
      +}
      +.ui-helper-reset {
      +	margin: 0;
      +	padding: 0;
      +	border: 0;
      +	outline: 0;
      +	line-height: 1.3;
      +	text-decoration: none;
      +	font-size: 100%;
      +	list-style: none;
      +}
      +.ui-helper-clearfix:before,
      +.ui-helper-clearfix:after {
      +	content: "";
      +	display: table;
      +	border-collapse: collapse;
      +}
      +.ui-helper-clearfix:after {
      +	clear: both;
      +}
      +.ui-helper-zfix {
      +	width: 100%;
      +	height: 100%;
      +	top: 0;
      +	left: 0;
      +	position: absolute;
      +	opacity: 0;
      +	filter:Alpha(Opacity=0); /* support: IE8 */
      +}
      +
      +.ui-front {
      +	z-index: 100;
      +}
      +
      +
      +/* Interaction Cues
      +----------------------------------*/
      +.ui-state-disabled {
      +	cursor: default !important;
      +	pointer-events: none;
      +}
      +
      +
      +/* Icons
      +----------------------------------*/
      +.ui-icon {
      +	display: inline-block;
      +	vertical-align: middle;
      +	margin-top: -.25em;
      +	position: relative;
      +	text-indent: -99999px;
      +	overflow: hidden;
      +	background-repeat: no-repeat;
      +}
      +
      +.ui-widget-icon-block {
      +	left: 50%;
      +	margin-left: -8px;
      +	display: block;
      +}
      +
      +/* Misc visuals
      +----------------------------------*/
      +
      +/* Overlays */
      +.ui-widget-overlay {
      +	position: fixed;
      +	top: 0;
      +	left: 0;
      +	width: 100%;
      +	height: 100%;
      +}
      +.ui-autocomplete {
      +	position: absolute;
      +	top: 0;
      +	left: 0;
      +	cursor: default;
      +}
      +.ui-menu {
      +	list-style: none;
      +	padding: 0;
      +	margin: 0;
      +	display: block;
      +	outline: 0;
      +}
      +.ui-menu .ui-menu {
      +	position: absolute;
      +}
      +.ui-menu .ui-menu-item {
      +	margin: 0;
      +	cursor: pointer;
      +	/* support: IE10, see #8844 */
      +	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
      +}
      +.ui-menu .ui-menu-item-wrapper {
      +	position: relative;
      +	padding: 3px 1em 3px .4em;
      +}
      +.ui-menu .ui-menu-divider {
      +	margin: 5px 0;
      +	height: 0;
      +	font-size: 0;
      +	line-height: 0;
      +	border-width: 1px 0 0 0;
      +}
      +.ui-menu .ui-state-focus,
      +.ui-menu .ui-state-active {
      +	margin: -1px;
      +}
      +
      +/* icon support */
      +.ui-menu-icons {
      +	position: relative;
      +}
      +.ui-menu-icons .ui-menu-item-wrapper {
      +	padding-left: 2em;
      +}
      +
      +/* left-aligned */
      +.ui-menu .ui-icon {
      +	position: absolute;
      +	top: 0;
      +	bottom: 0;
      +	left: .2em;
      +	margin: auto 0;
      +}
      +
      +/* right-aligned */
      +.ui-menu .ui-menu-icon {
      +	left: auto;
      +	right: 0;
      +}
      diff --git a/docs/site/testapidocs/script-dir/jquery-ui.structure.min.css b/docs/site/testapidocs/script-dir/jquery-ui.structure.min.css
      new file mode 100644
      index 00000000..e8808927
      --- /dev/null
      +++ b/docs/site/testapidocs/script-dir/jquery-ui.structure.min.css
      @@ -0,0 +1,5 @@
      +/*! jQuery UI - v1.12.1 - 2018-12-06
      +* http://jqueryui.com
      +* Copyright jQuery Foundation and other contributors; Licensed MIT */
      +
      +.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/script-dir/jszip-utils/dist/jszip-utils-ie.js b/docs/site/testapidocs/script-dir/jszip-utils/dist/jszip-utils-ie.js
      new file mode 100644
      index 00000000..a74cc709
      --- /dev/null
      +++ b/docs/site/testapidocs/script-dir/jszip-utils/dist/jszip-utils-ie.js
      @@ -0,0 +1,56 @@
      +/*!
      +
      +JSZipUtils - A collection of cross-browser utilities to go along with JSZip.
      +<http://stuk.github.io/jszip-utils>
      +
      +(c) 2014 Stuart Knightley, David Duponchel
      +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown.
      +
      +*/
      +;(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
      +var global=typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {};/* jshint evil: true, newcap: false */
      +/* global IEBinaryToArray_ByteStr, IEBinaryToArray_ByteStr_Last */
      +"use strict";
      +
      +// Adapted from http://stackoverflow.com/questions/1095102/how-do-i-load-binary-image-data-using-javascript-and-xmlhttprequest
      +var IEBinaryToArray_ByteStr_Script =
      +    "<!-- IEBinaryToArray_ByteStr -->\r\n"+
      +    "<script type='text/vbscript'>\r\n"+
      +    "Function IEBinaryToArray_ByteStr(Binary)\r\n"+
      +    "   IEBinaryToArray_ByteStr = CStr(Binary)\r\n"+
      +    "End Function\r\n"+
      +    "Function IEBinaryToArray_ByteStr_Last(Binary)\r\n"+
      +    "   Dim lastIndex\r\n"+
      +    "   lastIndex = LenB(Binary)\r\n"+
      +    "   if lastIndex mod 2 Then\r\n"+
      +    "       IEBinaryToArray_ByteStr_Last = Chr( AscB( MidB( Binary, lastIndex, 1 ) ) )\r\n"+
      +    "   Else\r\n"+
      +    "       IEBinaryToArray_ByteStr_Last = "+'""'+"\r\n"+
      +    "   End If\r\n"+
      +    "End Function\r\n"+
      +    "</script>\r\n";
      +
      +// inject VBScript
      +document.write(IEBinaryToArray_ByteStr_Script);
      +
      +global.JSZipUtils._getBinaryFromXHR = function (xhr) {
      +    var binary = xhr.responseBody;
      +    var byteMapping = {};
      +    for ( var i = 0; i < 256; i++ ) {
      +        for ( var j = 0; j < 256; j++ ) {
      +            byteMapping[ String.fromCharCode( i + (j << 8) ) ] =
      +                String.fromCharCode(i) + String.fromCharCode(j);
      +        }
      +    }
      +    var rawBytes = IEBinaryToArray_ByteStr(binary);
      +    var lastChr = IEBinaryToArray_ByteStr_Last(binary);
      +    return rawBytes.replace(/[\s\S]/g, function( match ) {
      +        return byteMapping[match];
      +    }) + lastChr;
      +};
      +
      +// enforcing Stuk's coding style
      +// vim: set shiftwidth=4 softtabstop=4:
      +
      +},{}]},{},[1])
      +;
      diff --git a/docs/site/testapidocs/script-dir/jszip-utils/dist/jszip-utils-ie.min.js b/docs/site/testapidocs/script-dir/jszip-utils/dist/jszip-utils-ie.min.js
      new file mode 100644
      index 00000000..93d8bc8e
      --- /dev/null
      +++ b/docs/site/testapidocs/script-dir/jszip-utils/dist/jszip-utils-ie.min.js
      @@ -0,0 +1,10 @@
      +/*!
      +
      +JSZipUtils - A collection of cross-browser utilities to go along with JSZip.
      +<http://stuk.github.io/jszip-utils>
      +
      +(c) 2014 Stuart Knightley, David Duponchel
      +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown.
      +
      +*/
      +!function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g<d.length;g++)e(d[g]);return e}({1:[function(){var a="undefined"!=typeof self?self:"undefined"!=typeof window?window:{},b="<!-- IEBinaryToArray_ByteStr -->\r\n<script type='text/vbscript'>\r\nFunction IEBinaryToArray_ByteStr(Binary)\r\n   IEBinaryToArray_ByteStr = CStr(Binary)\r\nEnd Function\r\nFunction IEBinaryToArray_ByteStr_Last(Binary)\r\n   Dim lastIndex\r\n   lastIndex = LenB(Binary)\r\n   if lastIndex mod 2 Then\r\n       IEBinaryToArray_ByteStr_Last = Chr( AscB( MidB( Binary, lastIndex, 1 ) ) )\r\n   Else\r\n       IEBinaryToArray_ByteStr_Last = \"\"\r\n   End If\r\nEnd Function\r\n</script>\r\n";document.write(b),a.JSZipUtils._getBinaryFromXHR=function(a){for(var b=a.responseBody,c={},d=0;256>d;d++)for(var e=0;256>e;e++)c[String.fromCharCode(d+(e<<8))]=String.fromCharCode(d)+String.fromCharCode(e);var f=IEBinaryToArray_ByteStr(b),g=IEBinaryToArray_ByteStr_Last(b);return f.replace(/[\s\S]/g,function(a){return c[a]})+g}},{}]},{},[1]);
      diff --git a/docs/site/testapidocs/script-dir/jszip-utils/dist/jszip-utils.js b/docs/site/testapidocs/script-dir/jszip-utils/dist/jszip-utils.js
      new file mode 100644
      index 00000000..775895ec
      --- /dev/null
      +++ b/docs/site/testapidocs/script-dir/jszip-utils/dist/jszip-utils.js
      @@ -0,0 +1,118 @@
      +/*!
      +
      +JSZipUtils - A collection of cross-browser utilities to go along with JSZip.
      +<http://stuk.github.io/jszip-utils>
      +
      +(c) 2014 Stuart Knightley, David Duponchel
      +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown.
      +
      +*/
      +!function(e){"object"==typeof exports?module.exports=e():"function"==typeof define&&define.amd?define(e):"undefined"!=typeof window?window.JSZipUtils=e():"undefined"!=typeof global?global.JSZipUtils=e():"undefined"!=typeof self&&(self.JSZipUtils=e())}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
      +'use strict';
      +
      +var JSZipUtils = {};
      +// just use the responseText with xhr1, response with xhr2.
      +// The transformation doesn't throw away high-order byte (with responseText)
      +// because JSZip handles that case. If not used with JSZip, you may need to
      +// do it, see https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data
      +JSZipUtils._getBinaryFromXHR = function (xhr) {
      +    // for xhr.responseText, the 0xFF mask is applied by JSZip
      +    return xhr.response || xhr.responseText;
      +};
      +
      +// taken from jQuery
      +function createStandardXHR() {
      +    try {
      +        return new window.XMLHttpRequest();
      +    } catch( e ) {}
      +}
      +
      +function createActiveXHR() {
      +    try {
      +        return new window.ActiveXObject("Microsoft.XMLHTTP");
      +    } catch( e ) {}
      +}
      +
      +// Create the request object
      +var createXHR = window.ActiveXObject ?
      +    /* Microsoft failed to properly
      +     * implement the XMLHttpRequest in IE7 (can't request local files),
      +     * so we use the ActiveXObject when it is available
      +     * Additionally XMLHttpRequest can be disabled in IE7/IE8 so
      +     * we need a fallback.
      +     */
      +    function() {
      +    return createStandardXHR() || createActiveXHR();
      +} :
      +    // For all other browsers, use the standard XMLHttpRequest object
      +    createStandardXHR;
      +
      +
      +
      +JSZipUtils.getBinaryContent = function(path, callback) {
      +    /*
      +     * Here is the tricky part : getting the data.
      +     * In firefox/chrome/opera/... setting the mimeType to 'text/plain; charset=x-user-defined'
      +     * is enough, the result is in the standard xhr.responseText.
      +     * cf https://developer.mozilla.org/En/XMLHttpRequest/Using_XMLHttpRequest#Receiving_binary_data_in_older_browsers
      +     * In IE <= 9, we must use (the IE only) attribute responseBody
      +     * (for binary data, its content is different from responseText).
      +     * In IE 10, the 'charset=x-user-defined' trick doesn't work, only the
      +     * responseType will work :
      +     * http://msdn.microsoft.com/en-us/library/ie/hh673569%28v=vs.85%29.aspx#Binary_Object_upload_and_download
      +     *
      +     * I'd like to use jQuery to avoid this XHR madness, but it doesn't support
      +     * the responseType attribute : http://bugs.jquery.com/ticket/11461
      +     */
      +    try {
      +
      +        var xhr = createXHR();
      +
      +        xhr.open('GET', path, true);
      +
      +        // recent browsers
      +        if ("responseType" in xhr) {
      +            xhr.responseType = "arraybuffer";
      +        }
      +
      +        // older browser
      +        if(xhr.overrideMimeType) {
      +            xhr.overrideMimeType("text/plain; charset=x-user-defined");
      +        }
      +
      +        xhr.onreadystatechange = function(evt) {
      +            var file, err;
      +            // use `xhr` and not `this`... thanks IE
      +            if (xhr.readyState === 4) {
      +                if (xhr.status === 200 || xhr.status === 0) {
      +                    file = null;
      +                    err = null;
      +                    try {
      +                        file = JSZipUtils._getBinaryFromXHR(xhr);
      +                    } catch(e) {
      +                        err = new Error(e);
      +                    }
      +                    callback(err, file);
      +                } else {
      +                    callback(new Error("Ajax error for " + path + " : " + this.status + " " + this.statusText), null);
      +                }
      +            }
      +        };
      +
      +        xhr.send();
      +
      +    } catch (e) {
      +        callback(new Error(e), null);
      +    }
      +};
      +
      +// export
      +module.exports = JSZipUtils;
      +
      +// enforcing Stuk's coding style
      +// vim: set shiftwidth=4 softtabstop=4:
      +
      +},{}]},{},[1])
      +(1)
      +});
      +;
      diff --git a/docs/site/testapidocs/script-dir/jszip-utils/dist/jszip-utils.min.js b/docs/site/testapidocs/script-dir/jszip-utils/dist/jszip-utils.min.js
      new file mode 100644
      index 00000000..78c7f5e5
      --- /dev/null
      +++ b/docs/site/testapidocs/script-dir/jszip-utils/dist/jszip-utils.min.js
      @@ -0,0 +1,10 @@
      +/*!
      +
      +JSZipUtils - A collection of cross-browser utilities to go along with JSZip.
      +<http://stuk.github.io/jszip-utils>
      +
      +(c) 2014 Stuart Knightley, David Duponchel
      +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown.
      +
      +*/
      +!function(a){"object"==typeof exports?module.exports=a():"function"==typeof define&&define.amd?define(a):"undefined"!=typeof window?window.JSZipUtils=a():"undefined"!=typeof global?global.JSZipUtils=a():"undefined"!=typeof self&&(self.JSZipUtils=a())}(function(){return function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g<d.length;g++)e(d[g]);return e}({1:[function(a,b){"use strict";function c(){try{return new window.XMLHttpRequest}catch(a){}}function d(){try{return new window.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}}var e={};e._getBinaryFromXHR=function(a){return a.response||a.responseText};var f=window.ActiveXObject?function(){return c()||d()}:c;e.getBinaryContent=function(a,b){try{var c=f();c.open("GET",a,!0),"responseType"in c&&(c.responseType="arraybuffer"),c.overrideMimeType&&c.overrideMimeType("text/plain; charset=x-user-defined"),c.onreadystatechange=function(){var d,f;if(4===c.readyState)if(200===c.status||0===c.status){d=null,f=null;try{d=e._getBinaryFromXHR(c)}catch(g){f=new Error(g)}b(f,d)}else b(new Error("Ajax error for "+a+" : "+this.status+" "+this.statusText),null)},c.send()}catch(d){b(new Error(d),null)}},b.exports=e},{}]},{},[1])(1)});
      diff --git a/docs/site/testapidocs/script-dir/jszip/dist/jszip.js b/docs/site/testapidocs/script-dir/jszip/dist/jszip.js
      new file mode 100644
      index 00000000..e53c056b
      --- /dev/null
      +++ b/docs/site/testapidocs/script-dir/jszip/dist/jszip.js
      @@ -0,0 +1,11367 @@
      +/*!
      +
      +JSZip v3.2.1 - A JavaScript class for generating and reading zip files
      +<http://stuartk.com/jszip>
      +
      +(c) 2009-2016 Stuart Knightley <stuart [at] stuartk.com>
      +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/master/LICENSE.markdown.
      +
      +JSZip uses the library pako released under the MIT license :
      +https://github.com/nodeca/pako/blob/master/LICENSE
      +*/
      +
      +(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.JSZip = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
      +'use strict';
      +var utils = require('./utils');
      +var support = require('./support');
      +// private property
      +var _keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
      +
      +
      +// public method for encoding
      +exports.encode = function(input) {
      +    var output = [];
      +    var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
      +    var i = 0, len = input.length, remainingBytes = len;
      +
      +    var isArray = utils.getTypeOf(input) !== "string";
      +    while (i < input.length) {
      +        remainingBytes = len - i;
      +
      +        if (!isArray) {
      +            chr1 = input.charCodeAt(i++);
      +            chr2 = i < len ? input.charCodeAt(i++) : 0;
      +            chr3 = i < len ? input.charCodeAt(i++) : 0;
      +        } else {
      +            chr1 = input[i++];
      +            chr2 = i < len ? input[i++] : 0;
      +            chr3 = i < len ? input[i++] : 0;
      +        }
      +
      +        enc1 = chr1 >> 2;
      +        enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
      +        enc3 = remainingBytes > 1 ? (((chr2 & 15) << 2) | (chr3 >> 6)) : 64;
      +        enc4 = remainingBytes > 2 ? (chr3 & 63) : 64;
      +
      +        output.push(_keyStr.charAt(enc1) + _keyStr.charAt(enc2) + _keyStr.charAt(enc3) + _keyStr.charAt(enc4));
      +
      +    }
      +
      +    return output.join("");
      +};
      +
      +// public method for decoding
      +exports.decode = function(input) {
      +    var chr1, chr2, chr3;
      +    var enc1, enc2, enc3, enc4;
      +    var i = 0, resultIndex = 0;
      +
      +    var dataUrlPrefix = "data:";
      +
      +    if (input.substr(0, dataUrlPrefix.length) === dataUrlPrefix) {
      +        // This is a common error: people give a data url
      +        // (data:image/png;base64,iVBOR...) with a {base64: true} and
      +        // wonders why things don't work.
      +        // We can detect that the string input looks like a data url but we
      +        // *can't* be sure it is one: removing everything up to the comma would
      +        // be too dangerous.
      +        throw new Error("Invalid base64 input, it looks like a data url.");
      +    }
      +
      +    input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
      +
      +    var totalLength = input.length * 3 / 4;
      +    if(input.charAt(input.length - 1) === _keyStr.charAt(64)) {
      +        totalLength--;
      +    }
      +    if(input.charAt(input.length - 2) === _keyStr.charAt(64)) {
      +        totalLength--;
      +    }
      +    if (totalLength % 1 !== 0) {
      +        // totalLength is not an integer, the length does not match a valid
      +        // base64 content. That can happen if:
      +        // - the input is not a base64 content
      +        // - the input is *almost* a base64 content, with a extra chars at the
      +        //   beginning or at the end
      +        // - the input uses a base64 variant (base64url for example)
      +        throw new Error("Invalid base64 input, bad content length.");
      +    }
      +    var output;
      +    if (support.uint8array) {
      +        output = new Uint8Array(totalLength|0);
      +    } else {
      +        output = new Array(totalLength|0);
      +    }
      +
      +    while (i < input.length) {
      +
      +        enc1 = _keyStr.indexOf(input.charAt(i++));
      +        enc2 = _keyStr.indexOf(input.charAt(i++));
      +        enc3 = _keyStr.indexOf(input.charAt(i++));
      +        enc4 = _keyStr.indexOf(input.charAt(i++));
      +
      +        chr1 = (enc1 << 2) | (enc2 >> 4);
      +        chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
      +        chr3 = ((enc3 & 3) << 6) | enc4;
      +
      +        output[resultIndex++] = chr1;
      +
      +        if (enc3 !== 64) {
      +            output[resultIndex++] = chr2;
      +        }
      +        if (enc4 !== 64) {
      +            output[resultIndex++] = chr3;
      +        }
      +
      +    }
      +
      +    return output;
      +};
      +
      +},{"./support":30,"./utils":32}],2:[function(require,module,exports){
      +'use strict';
      +
      +var external = require("./external");
      +var DataWorker = require('./stream/DataWorker');
      +var DataLengthProbe = require('./stream/DataLengthProbe');
      +var Crc32Probe = require('./stream/Crc32Probe');
      +var DataLengthProbe = require('./stream/DataLengthProbe');
      +
      +/**
      + * Represent a compressed object, with everything needed to decompress it.
      + * @constructor
      + * @param {number} compressedSize the size of the data compressed.
      + * @param {number} uncompressedSize the size of the data after decompression.
      + * @param {number} crc32 the crc32 of the decompressed file.
      + * @param {object} compression the type of compression, see lib/compressions.js.
      + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the compressed data.
      + */
      +function CompressedObject(compressedSize, uncompressedSize, crc32, compression, data) {
      +    this.compressedSize = compressedSize;
      +    this.uncompressedSize = uncompressedSize;
      +    this.crc32 = crc32;
      +    this.compression = compression;
      +    this.compressedContent = data;
      +}
      +
      +CompressedObject.prototype = {
      +    /**
      +     * Create a worker to get the uncompressed content.
      +     * @return {GenericWorker} the worker.
      +     */
      +    getContentWorker : function () {
      +        var worker = new DataWorker(external.Promise.resolve(this.compressedContent))
      +        .pipe(this.compression.uncompressWorker())
      +        .pipe(new DataLengthProbe("data_length"));
      +
      +        var that = this;
      +        worker.on("end", function () {
      +            if(this.streamInfo['data_length'] !== that.uncompressedSize) {
      +                throw new Error("Bug : uncompressed data size mismatch");
      +            }
      +        });
      +        return worker;
      +    },
      +    /**
      +     * Create a worker to get the compressed content.
      +     * @return {GenericWorker} the worker.
      +     */
      +    getCompressedWorker : function () {
      +        return new DataWorker(external.Promise.resolve(this.compressedContent))
      +        .withStreamInfo("compressedSize", this.compressedSize)
      +        .withStreamInfo("uncompressedSize", this.uncompressedSize)
      +        .withStreamInfo("crc32", this.crc32)
      +        .withStreamInfo("compression", this.compression)
      +        ;
      +    }
      +};
      +
      +/**
      + * Chain the given worker with other workers to compress the content with the
      + * given compresion.
      + * @param {GenericWorker} uncompressedWorker the worker to pipe.
      + * @param {Object} compression the compression object.
      + * @param {Object} compressionOptions the options to use when compressing.
      + * @return {GenericWorker} the new worker compressing the content.
      + */
      +CompressedObject.createWorkerFrom = function (uncompressedWorker, compression, compressionOptions) {
      +    return uncompressedWorker
      +    .pipe(new Crc32Probe())
      +    .pipe(new DataLengthProbe("uncompressedSize"))
      +    .pipe(compression.compressWorker(compressionOptions))
      +    .pipe(new DataLengthProbe("compressedSize"))
      +    .withStreamInfo("compression", compression);
      +};
      +
      +module.exports = CompressedObject;
      +
      +},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(require,module,exports){
      +'use strict';
      +
      +var GenericWorker = require("./stream/GenericWorker");
      +
      +exports.STORE = {
      +    magic: "\x00\x00",
      +    compressWorker : function (compressionOptions) {
      +        return new GenericWorker("STORE compression");
      +    },
      +    uncompressWorker : function () {
      +        return new GenericWorker("STORE decompression");
      +    }
      +};
      +exports.DEFLATE = require('./flate');
      +
      +},{"./flate":7,"./stream/GenericWorker":28}],4:[function(require,module,exports){
      +'use strict';
      +
      +var utils = require('./utils');
      +
      +/**
      + * The following functions come from pako, from pako/lib/zlib/crc32.js
      + * released under the MIT license, see pako https://github.com/nodeca/pako/
      + */
      +
      +// Use ordinary array, since untyped makes no boost here
      +function makeTable() {
      +    var c, table = [];
      +
      +    for(var n =0; n < 256; n++){
      +        c = n;
      +        for(var k =0; k < 8; k++){
      +            c = ((c&1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1));
      +        }
      +        table[n] = c;
      +    }
      +
      +    return table;
      +}
      +
      +// Create table on load. Just 255 signed longs. Not a problem.
      +var crcTable = makeTable();
      +
      +
      +function crc32(crc, buf, len, pos) {
      +    var t = crcTable, end = pos + len;
      +
      +    crc = crc ^ (-1);
      +
      +    for (var i = pos; i < end; i++ ) {
      +        crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF];
      +    }
      +
      +    return (crc ^ (-1)); // >>> 0;
      +}
      +
      +// That's all for the pako functions.
      +
      +/**
      + * Compute the crc32 of a string.
      + * This is almost the same as the function crc32, but for strings. Using the
      + * same function for the two use cases leads to horrible performances.
      + * @param {Number} crc the starting value of the crc.
      + * @param {String} str the string to use.
      + * @param {Number} len the length of the string.
      + * @param {Number} pos the starting position for the crc32 computation.
      + * @return {Number} the computed crc32.
      + */
      +function crc32str(crc, str, len, pos) {
      +    var t = crcTable, end = pos + len;
      +
      +    crc = crc ^ (-1);
      +
      +    for (var i = pos; i < end; i++ ) {
      +        crc = (crc >>> 8) ^ t[(crc ^ str.charCodeAt(i)) & 0xFF];
      +    }
      +
      +    return (crc ^ (-1)); // >>> 0;
      +}
      +
      +module.exports = function crc32wrapper(input, crc) {
      +    if (typeof input === "undefined" || !input.length) {
      +        return 0;
      +    }
      +
      +    var isArray = utils.getTypeOf(input) !== "string";
      +
      +    if(isArray) {
      +        return crc32(crc|0, input, input.length, 0);
      +    } else {
      +        return crc32str(crc|0, input, input.length, 0);
      +    }
      +};
      +
      +},{"./utils":32}],5:[function(require,module,exports){
      +'use strict';
      +exports.base64 = false;
      +exports.binary = false;
      +exports.dir = false;
      +exports.createFolders = true;
      +exports.date = null;
      +exports.compression = null;
      +exports.compressionOptions = null;
      +exports.comment = null;
      +exports.unixPermissions = null;
      +exports.dosPermissions = null;
      +
      +},{}],6:[function(require,module,exports){
      +/* global Promise */
      +'use strict';
      +
      +// load the global object first:
      +// - it should be better integrated in the system (unhandledRejection in node)
      +// - the environment may have a custom Promise implementation (see zone.js)
      +var ES6Promise = null;
      +if (typeof Promise !== "undefined") {
      +    ES6Promise = Promise;
      +} else {
      +    ES6Promise = require("lie");
      +}
      +
      +/**
      + * Let the user use/change some implementations.
      + */
      +module.exports = {
      +    Promise: ES6Promise
      +};
      +
      +},{"lie":37}],7:[function(require,module,exports){
      +'use strict';
      +var USE_TYPEDARRAY = (typeof Uint8Array !== 'undefined') && (typeof Uint16Array !== 'undefined') && (typeof Uint32Array !== 'undefined');
      +
      +var pako = require("pako");
      +var utils = require("./utils");
      +var GenericWorker = require("./stream/GenericWorker");
      +
      +var ARRAY_TYPE = USE_TYPEDARRAY ? "uint8array" : "array";
      +
      +exports.magic = "\x08\x00";
      +
      +/**
      + * Create a worker that uses pako to inflate/deflate.
      + * @constructor
      + * @param {String} action the name of the pako function to call : either "Deflate" or "Inflate".
      + * @param {Object} options the options to use when (de)compressing.
      + */
      +function FlateWorker(action, options) {
      +    GenericWorker.call(this, "FlateWorker/" + action);
      +
      +    this._pako = null;
      +    this._pakoAction = action;
      +    this._pakoOptions = options;
      +    // the `meta` object from the last chunk received
      +    // this allow this worker to pass around metadata
      +    this.meta = {};
      +}
      +
      +utils.inherits(FlateWorker, GenericWorker);
      +
      +/**
      + * @see GenericWorker.processChunk
      + */
      +FlateWorker.prototype.processChunk = function (chunk) {
      +    this.meta = chunk.meta;
      +    if (this._pako === null) {
      +        this._createPako();
      +    }
      +    this._pako.push(utils.transformTo(ARRAY_TYPE, chunk.data), false);
      +};
      +
      +/**
      + * @see GenericWorker.flush
      + */
      +FlateWorker.prototype.flush = function () {
      +    GenericWorker.prototype.flush.call(this);
      +    if (this._pako === null) {
      +        this._createPako();
      +    }
      +    this._pako.push([], true);
      +};
      +/**
      + * @see GenericWorker.cleanUp
      + */
      +FlateWorker.prototype.cleanUp = function () {
      +    GenericWorker.prototype.cleanUp.call(this);
      +    this._pako = null;
      +};
      +
      +/**
      + * Create the _pako object.
      + * TODO: lazy-loading this object isn't the best solution but it's the
      + * quickest. The best solution is to lazy-load the worker list. See also the
      + * issue #446.
      + */
      +FlateWorker.prototype._createPako = function () {
      +    this._pako = new pako[this._pakoAction]({
      +        raw: true,
      +        level: this._pakoOptions.level || -1 // default compression
      +    });
      +    var self = this;
      +    this._pako.onData = function(data) {
      +        self.push({
      +            data : data,
      +            meta : self.meta
      +        });
      +    };
      +};
      +
      +exports.compressWorker = function (compressionOptions) {
      +    return new FlateWorker("Deflate", compressionOptions);
      +};
      +exports.uncompressWorker = function () {
      +    return new FlateWorker("Inflate", {});
      +};
      +
      +},{"./stream/GenericWorker":28,"./utils":32,"pako":38}],8:[function(require,module,exports){
      +'use strict';
      +
      +var utils = require('../utils');
      +var GenericWorker = require('../stream/GenericWorker');
      +var utf8 = require('../utf8');
      +var crc32 = require('../crc32');
      +var signature = require('../signature');
      +
      +/**
      + * Transform an integer into a string in hexadecimal.
      + * @private
      + * @param {number} dec the number to convert.
      + * @param {number} bytes the number of bytes to generate.
      + * @returns {string} the result.
      + */
      +var decToHex = function(dec, bytes) {
      +    var hex = "", i;
      +    for (i = 0; i < bytes; i++) {
      +        hex += String.fromCharCode(dec & 0xff);
      +        dec = dec >>> 8;
      +    }
      +    return hex;
      +};
      +
      +/**
      + * Generate the UNIX part of the external file attributes.
      + * @param {Object} unixPermissions the unix permissions or null.
      + * @param {Boolean} isDir true if the entry is a directory, false otherwise.
      + * @return {Number} a 32 bit integer.
      + *
      + * adapted from http://unix.stackexchange.com/questions/14705/the-zip-formats-external-file-attribute :
      + *
      + * TTTTsstrwxrwxrwx0000000000ADVSHR
      + * ^^^^____________________________ file type, see zipinfo.c (UNX_*)
      + *     ^^^_________________________ setuid, setgid, sticky
      + *        ^^^^^^^^^________________ permissions
      + *                 ^^^^^^^^^^______ not used ?
      + *                           ^^^^^^ DOS attribute bits : Archive, Directory, Volume label, System file, Hidden, Read only
      + */
      +var generateUnixExternalFileAttr = function (unixPermissions, isDir) {
      +
      +    var result = unixPermissions;
      +    if (!unixPermissions) {
      +        // I can't use octal values in strict mode, hence the hexa.
      +        //  040775 => 0x41fd
      +        // 0100664 => 0x81b4
      +        result = isDir ? 0x41fd : 0x81b4;
      +    }
      +    return (result & 0xFFFF) << 16;
      +};
      +
      +/**
      + * Generate the DOS part of the external file attributes.
      + * @param {Object} dosPermissions the dos permissions or null.
      + * @param {Boolean} isDir true if the entry is a directory, false otherwise.
      + * @return {Number} a 32 bit integer.
      + *
      + * Bit 0     Read-Only
      + * Bit 1     Hidden
      + * Bit 2     System
      + * Bit 3     Volume Label
      + * Bit 4     Directory
      + * Bit 5     Archive
      + */
      +var generateDosExternalFileAttr = function (dosPermissions, isDir) {
      +
      +    // the dir flag is already set for compatibility
      +    return (dosPermissions || 0)  & 0x3F;
      +};
      +
      +/**
      + * Generate the various parts used in the construction of the final zip file.
      + * @param {Object} streamInfo the hash with informations about the compressed file.
      + * @param {Boolean} streamedContent is the content streamed ?
      + * @param {Boolean} streamingEnded is the stream finished ?
      + * @param {number} offset the current offset from the start of the zip file.
      + * @param {String} platform let's pretend we are this platform (change platform dependents fields)
      + * @param {Function} encodeFileName the function to encode the file name / comment.
      + * @return {Object} the zip parts.
      + */
      +var generateZipParts = function(streamInfo, streamedContent, streamingEnded, offset, platform, encodeFileName) {
      +    var file = streamInfo['file'],
      +    compression = streamInfo['compression'],
      +    useCustomEncoding = encodeFileName !== utf8.utf8encode,
      +    encodedFileName = utils.transformTo("string", encodeFileName(file.name)),
      +    utfEncodedFileName = utils.transformTo("string", utf8.utf8encode(file.name)),
      +    comment = file.comment,
      +    encodedComment = utils.transformTo("string", encodeFileName(comment)),
      +    utfEncodedComment = utils.transformTo("string", utf8.utf8encode(comment)),
      +    useUTF8ForFileName = utfEncodedFileName.length !== file.name.length,
      +    useUTF8ForComment = utfEncodedComment.length !== comment.length,
      +    dosTime,
      +    dosDate,
      +    extraFields = "",
      +    unicodePathExtraField = "",
      +    unicodeCommentExtraField = "",
      +    dir = file.dir,
      +    date = file.date;
      +
      +
      +    var dataInfo = {
      +        crc32 : 0,
      +        compressedSize : 0,
      +        uncompressedSize : 0
      +    };
      +
      +    // if the content is streamed, the sizes/crc32 are only available AFTER
      +    // the end of the stream.
      +    if (!streamedContent || streamingEnded) {
      +        dataInfo.crc32 = streamInfo['crc32'];
      +        dataInfo.compressedSize = streamInfo['compressedSize'];
      +        dataInfo.uncompressedSize = streamInfo['uncompressedSize'];
      +    }
      +
      +    var bitflag = 0;
      +    if (streamedContent) {
      +        // Bit 3: the sizes/crc32 are set to zero in the local header.
      +        // The correct values are put in the data descriptor immediately
      +        // following the compressed data.
      +        bitflag |= 0x0008;
      +    }
      +    if (!useCustomEncoding && (useUTF8ForFileName || useUTF8ForComment)) {
      +        // Bit 11: Language encoding flag (EFS).
      +        bitflag |= 0x0800;
      +    }
      +
      +
      +    var extFileAttr = 0;
      +    var versionMadeBy = 0;
      +    if (dir) {
      +        // dos or unix, we set the dos dir flag
      +        extFileAttr |= 0x00010;
      +    }
      +    if(platform === "UNIX") {
      +        versionMadeBy = 0x031E; // UNIX, version 3.0
      +        extFileAttr |= generateUnixExternalFileAttr(file.unixPermissions, dir);
      +    } else { // DOS or other, fallback to DOS
      +        versionMadeBy = 0x0014; // DOS, version 2.0
      +        extFileAttr |= generateDosExternalFileAttr(file.dosPermissions, dir);
      +    }
      +
      +    // date
      +    // @see http://www.delorie.com/djgpp/doc/rbinter/it/52/13.html
      +    // @see http://www.delorie.com/djgpp/doc/rbinter/it/65/16.html
      +    // @see http://www.delorie.com/djgpp/doc/rbinter/it/66/16.html
      +
      +    dosTime = date.getUTCHours();
      +    dosTime = dosTime << 6;
      +    dosTime = dosTime | date.getUTCMinutes();
      +    dosTime = dosTime << 5;
      +    dosTime = dosTime | date.getUTCSeconds() / 2;
      +
      +    dosDate = date.getUTCFullYear() - 1980;
      +    dosDate = dosDate << 4;
      +    dosDate = dosDate | (date.getUTCMonth() + 1);
      +    dosDate = dosDate << 5;
      +    dosDate = dosDate | date.getUTCDate();
      +
      +    if (useUTF8ForFileName) {
      +        // set the unicode path extra field. unzip needs at least one extra
      +        // field to correctly handle unicode path, so using the path is as good
      +        // as any other information. This could improve the situation with
      +        // other archive managers too.
      +        // This field is usually used without the utf8 flag, with a non
      +        // unicode path in the header (winrar, winzip). This helps (a bit)
      +        // with the messy Windows' default compressed folders feature but
      +        // breaks on p7zip which doesn't seek the unicode path extra field.
      +        // So for now, UTF-8 everywhere !
      +        unicodePathExtraField =
      +            // Version
      +            decToHex(1, 1) +
      +            // NameCRC32
      +            decToHex(crc32(encodedFileName), 4) +
      +            // UnicodeName
      +            utfEncodedFileName;
      +
      +        extraFields +=
      +            // Info-ZIP Unicode Path Extra Field
      +            "\x75\x70" +
      +            // size
      +            decToHex(unicodePathExtraField.length, 2) +
      +            // content
      +            unicodePathExtraField;
      +    }
      +
      +    if(useUTF8ForComment) {
      +
      +        unicodeCommentExtraField =
      +            // Version
      +            decToHex(1, 1) +
      +            // CommentCRC32
      +            decToHex(crc32(encodedComment), 4) +
      +            // UnicodeName
      +            utfEncodedComment;
      +
      +        extraFields +=
      +            // Info-ZIP Unicode Path Extra Field
      +            "\x75\x63" +
      +            // size
      +            decToHex(unicodeCommentExtraField.length, 2) +
      +            // content
      +            unicodeCommentExtraField;
      +    }
      +
      +    var header = "";
      +
      +    // version needed to extract
      +    header += "\x0A\x00";
      +    // general purpose bit flag
      +    header += decToHex(bitflag, 2);
      +    // compression method
      +    header += compression.magic;
      +    // last mod file time
      +    header += decToHex(dosTime, 2);
      +    // last mod file date
      +    header += decToHex(dosDate, 2);
      +    // crc-32
      +    header += decToHex(dataInfo.crc32, 4);
      +    // compressed size
      +    header += decToHex(dataInfo.compressedSize, 4);
      +    // uncompressed size
      +    header += decToHex(dataInfo.uncompressedSize, 4);
      +    // file name length
      +    header += decToHex(encodedFileName.length, 2);
      +    // extra field length
      +    header += decToHex(extraFields.length, 2);
      +
      +
      +    var fileRecord = signature.LOCAL_FILE_HEADER + header + encodedFileName + extraFields;
      +
      +    var dirRecord = signature.CENTRAL_FILE_HEADER +
      +        // version made by (00: DOS)
      +        decToHex(versionMadeBy, 2) +
      +        // file header (common to file and central directory)
      +        header +
      +        // file comment length
      +        decToHex(encodedComment.length, 2) +
      +        // disk number start
      +        "\x00\x00" +
      +        // internal file attributes TODO
      +        "\x00\x00" +
      +        // external file attributes
      +        decToHex(extFileAttr, 4) +
      +        // relative offset of local header
      +        decToHex(offset, 4) +
      +        // file name
      +        encodedFileName +
      +        // extra field
      +        extraFields +
      +        // file comment
      +        encodedComment;
      +
      +    return {
      +        fileRecord: fileRecord,
      +        dirRecord: dirRecord
      +    };
      +};
      +
      +/**
      + * Generate the EOCD record.
      + * @param {Number} entriesCount the number of entries in the zip file.
      + * @param {Number} centralDirLength the length (in bytes) of the central dir.
      + * @param {Number} localDirLength the length (in bytes) of the local dir.
      + * @param {String} comment the zip file comment as a binary string.
      + * @param {Function} encodeFileName the function to encode the comment.
      + * @return {String} the EOCD record.
      + */
      +var generateCentralDirectoryEnd = function (entriesCount, centralDirLength, localDirLength, comment, encodeFileName) {
      +    var dirEnd = "";
      +    var encodedComment = utils.transformTo("string", encodeFileName(comment));
      +
      +    // end of central dir signature
      +    dirEnd = signature.CENTRAL_DIRECTORY_END +
      +        // number of this disk
      +        "\x00\x00" +
      +        // number of the disk with the start of the central directory
      +        "\x00\x00" +
      +        // total number of entries in the central directory on this disk
      +        decToHex(entriesCount, 2) +
      +        // total number of entries in the central directory
      +        decToHex(entriesCount, 2) +
      +        // size of the central directory   4 bytes
      +        decToHex(centralDirLength, 4) +
      +        // offset of start of central directory with respect to the starting disk number
      +        decToHex(localDirLength, 4) +
      +        // .ZIP file comment length
      +        decToHex(encodedComment.length, 2) +
      +        // .ZIP file comment
      +        encodedComment;
      +
      +    return dirEnd;
      +};
      +
      +/**
      + * Generate data descriptors for a file entry.
      + * @param {Object} streamInfo the hash generated by a worker, containing informations
      + * on the file entry.
      + * @return {String} the data descriptors.
      + */
      +var generateDataDescriptors = function (streamInfo) {
      +    var descriptor = "";
      +    descriptor = signature.DATA_DESCRIPTOR +
      +        // crc-32                          4 bytes
      +        decToHex(streamInfo['crc32'], 4) +
      +        // compressed size                 4 bytes
      +        decToHex(streamInfo['compressedSize'], 4) +
      +        // uncompressed size               4 bytes
      +        decToHex(streamInfo['uncompressedSize'], 4);
      +
      +    return descriptor;
      +};
      +
      +
      +/**
      + * A worker to concatenate other workers to create a zip file.
      + * @param {Boolean} streamFiles `true` to stream the content of the files,
      + * `false` to accumulate it.
      + * @param {String} comment the comment to use.
      + * @param {String} platform the platform to use, "UNIX" or "DOS".
      + * @param {Function} encodeFileName the function to encode file names and comments.
      + */
      +function ZipFileWorker(streamFiles, comment, platform, encodeFileName) {
      +    GenericWorker.call(this, "ZipFileWorker");
      +    // The number of bytes written so far. This doesn't count accumulated chunks.
      +    this.bytesWritten = 0;
      +    // The comment of the zip file
      +    this.zipComment = comment;
      +    // The platform "generating" the zip file.
      +    this.zipPlatform = platform;
      +    // the function to encode file names and comments.
      +    this.encodeFileName = encodeFileName;
      +    // Should we stream the content of the files ?
      +    this.streamFiles = streamFiles;
      +    // If `streamFiles` is false, we will need to accumulate the content of the
      +    // files to calculate sizes / crc32 (and write them *before* the content).
      +    // This boolean indicates if we are accumulating chunks (it will change a lot
      +    // during the lifetime of this worker).
      +    this.accumulate = false;
      +    // The buffer receiving chunks when accumulating content.
      +    this.contentBuffer = [];
      +    // The list of generated directory records.
      +    this.dirRecords = [];
      +    // The offset (in bytes) from the beginning of the zip file for the current source.
      +    this.currentSourceOffset = 0;
      +    // The total number of entries in this zip file.
      +    this.entriesCount = 0;
      +    // the name of the file currently being added, null when handling the end of the zip file.
      +    // Used for the emited metadata.
      +    this.currentFile = null;
      +
      +
      +
      +    this._sources = [];
      +}
      +utils.inherits(ZipFileWorker, GenericWorker);
      +
      +/**
      + * @see GenericWorker.push
      + */
      +ZipFileWorker.prototype.push = function (chunk) {
      +
      +    var currentFilePercent = chunk.meta.percent || 0;
      +    var entriesCount = this.entriesCount;
      +    var remainingFiles = this._sources.length;
      +
      +    if(this.accumulate) {
      +        this.contentBuffer.push(chunk);
      +    } else {
      +        this.bytesWritten += chunk.data.length;
      +
      +        GenericWorker.prototype.push.call(this, {
      +            data : chunk.data,
      +            meta : {
      +                currentFile : this.currentFile,
      +                percent : entriesCount ? (currentFilePercent + 100 * (entriesCount - remainingFiles - 1)) / entriesCount : 100
      +            }
      +        });
      +    }
      +};
      +
      +/**
      + * The worker started a new source (an other worker).
      + * @param {Object} streamInfo the streamInfo object from the new source.
      + */
      +ZipFileWorker.prototype.openedSource = function (streamInfo) {
      +    this.currentSourceOffset = this.bytesWritten;
      +    this.currentFile = streamInfo['file'].name;
      +
      +    var streamedContent = this.streamFiles && !streamInfo['file'].dir;
      +
      +    // don't stream folders (because they don't have any content)
      +    if(streamedContent) {
      +        var record = generateZipParts(streamInfo, streamedContent, false, this.currentSourceOffset, this.zipPlatform, this.encodeFileName);
      +        this.push({
      +            data : record.fileRecord,
      +            meta : {percent:0}
      +        });
      +    } else {
      +        // we need to wait for the whole file before pushing anything
      +        this.accumulate = true;
      +    }
      +};
      +
      +/**
      + * The worker finished a source (an other worker).
      + * @param {Object} streamInfo the streamInfo object from the finished source.
      + */
      +ZipFileWorker.prototype.closedSource = function (streamInfo) {
      +    this.accumulate = false;
      +    var streamedContent = this.streamFiles && !streamInfo['file'].dir;
      +    var record = generateZipParts(streamInfo, streamedContent, true, this.currentSourceOffset, this.zipPlatform, this.encodeFileName);
      +
      +    this.dirRecords.push(record.dirRecord);
      +    if(streamedContent) {
      +        // after the streamed file, we put data descriptors
      +        this.push({
      +            data : generateDataDescriptors(streamInfo),
      +            meta : {percent:100}
      +        });
      +    } else {
      +        // the content wasn't streamed, we need to push everything now
      +        // first the file record, then the content
      +        this.push({
      +            data : record.fileRecord,
      +            meta : {percent:0}
      +        });
      +        while(this.contentBuffer.length) {
      +            this.push(this.contentBuffer.shift());
      +        }
      +    }
      +    this.currentFile = null;
      +};
      +
      +/**
      + * @see GenericWorker.flush
      + */
      +ZipFileWorker.prototype.flush = function () {
      +
      +    var localDirLength = this.bytesWritten;
      +    for(var i = 0; i < this.dirRecords.length; i++) {
      +        this.push({
      +            data : this.dirRecords[i],
      +            meta : {percent:100}
      +        });
      +    }
      +    var centralDirLength = this.bytesWritten - localDirLength;
      +
      +    var dirEnd = generateCentralDirectoryEnd(this.dirRecords.length, centralDirLength, localDirLength, this.zipComment, this.encodeFileName);
      +
      +    this.push({
      +        data : dirEnd,
      +        meta : {percent:100}
      +    });
      +};
      +
      +/**
      + * Prepare the next source to be read.
      + */
      +ZipFileWorker.prototype.prepareNextSource = function () {
      +    this.previous = this._sources.shift();
      +    this.openedSource(this.previous.streamInfo);
      +    if (this.isPaused) {
      +        this.previous.pause();
      +    } else {
      +        this.previous.resume();
      +    }
      +};
      +
      +/**
      + * @see GenericWorker.registerPrevious
      + */
      +ZipFileWorker.prototype.registerPrevious = function (previous) {
      +    this._sources.push(previous);
      +    var self = this;
      +
      +    previous.on('data', function (chunk) {
      +        self.processChunk(chunk);
      +    });
      +    previous.on('end', function () {
      +        self.closedSource(self.previous.streamInfo);
      +        if(self._sources.length) {
      +            self.prepareNextSource();
      +        } else {
      +            self.end();
      +        }
      +    });
      +    previous.on('error', function (e) {
      +        self.error(e);
      +    });
      +    return this;
      +};
      +
      +/**
      + * @see GenericWorker.resume
      + */
      +ZipFileWorker.prototype.resume = function () {
      +    if(!GenericWorker.prototype.resume.call(this)) {
      +        return false;
      +    }
      +
      +    if (!this.previous && this._sources.length) {
      +        this.prepareNextSource();
      +        return true;
      +    }
      +    if (!this.previous && !this._sources.length && !this.generatedError) {
      +        this.end();
      +        return true;
      +    }
      +};
      +
      +/**
      + * @see GenericWorker.error
      + */
      +ZipFileWorker.prototype.error = function (e) {
      +    var sources = this._sources;
      +    if(!GenericWorker.prototype.error.call(this, e)) {
      +        return false;
      +    }
      +    for(var i = 0; i < sources.length; i++) {
      +        try {
      +            sources[i].error(e);
      +        } catch(e) {
      +            // the `error` exploded, nothing to do
      +        }
      +    }
      +    return true;
      +};
      +
      +/**
      + * @see GenericWorker.lock
      + */
      +ZipFileWorker.prototype.lock = function () {
      +    GenericWorker.prototype.lock.call(this);
      +    var sources = this._sources;
      +    for(var i = 0; i < sources.length; i++) {
      +        sources[i].lock();
      +    }
      +};
      +
      +module.exports = ZipFileWorker;
      +
      +},{"../crc32":4,"../signature":23,"../stream/GenericWorker":28,"../utf8":31,"../utils":32}],9:[function(require,module,exports){
      +'use strict';
      +
      +var compressions = require('../compressions');
      +var ZipFileWorker = require('./ZipFileWorker');
      +
      +/**
      + * Find the compression to use.
      + * @param {String} fileCompression the compression defined at the file level, if any.
      + * @param {String} zipCompression the compression defined at the load() level.
      + * @return {Object} the compression object to use.
      + */
      +var getCompression = function (fileCompression, zipCompression) {
      +
      +    var compressionName = fileCompression || zipCompression;
      +    var compression = compressions[compressionName];
      +    if (!compression) {
      +        throw new Error(compressionName + " is not a valid compression method !");
      +    }
      +    return compression;
      +};
      +
      +/**
      + * Create a worker to generate a zip file.
      + * @param {JSZip} zip the JSZip instance at the right root level.
      + * @param {Object} options to generate the zip file.
      + * @param {String} comment the comment to use.
      + */
      +exports.generateWorker = function (zip, options, comment) {
      +
      +    var zipFileWorker = new ZipFileWorker(options.streamFiles, comment, options.platform, options.encodeFileName);
      +    var entriesCount = 0;
      +    try {
      +
      +        zip.forEach(function (relativePath, file) {
      +            entriesCount++;
      +            var compression = getCompression(file.options.compression, options.compression);
      +            var compressionOptions = file.options.compressionOptions || options.compressionOptions || {};
      +            var dir = file.dir, date = file.date;
      +
      +            file._compressWorker(compression, compressionOptions)
      +            .withStreamInfo("file", {
      +                name : relativePath,
      +                dir : dir,
      +                date : date,
      +                comment : file.comment || "",
      +                unixPermissions : file.unixPermissions,
      +                dosPermissions : file.dosPermissions
      +            })
      +            .pipe(zipFileWorker);
      +        });
      +        zipFileWorker.entriesCount = entriesCount;
      +    } catch (e) {
      +        zipFileWorker.error(e);
      +    }
      +
      +    return zipFileWorker;
      +};
      +
      +},{"../compressions":3,"./ZipFileWorker":8}],10:[function(require,module,exports){
      +'use strict';
      +
      +/**
      + * Representation a of zip file in js
      + * @constructor
      + */
      +function JSZip() {
      +    // if this constructor is used without `new`, it adds `new` before itself:
      +    if(!(this instanceof JSZip)) {
      +        return new JSZip();
      +    }
      +
      +    if(arguments.length) {
      +        throw new Error("The constructor with parameters has been removed in JSZip 3.0, please check the upgrade guide.");
      +    }
      +
      +    // object containing the files :
      +    // {
      +    //   "folder/" : {...},
      +    //   "folder/data.txt" : {...}
      +    // }
      +    this.files = {};
      +
      +    this.comment = null;
      +
      +    // Where we are in the hierarchy
      +    this.root = "";
      +    this.clone = function() {
      +        var newObj = new JSZip();
      +        for (var i in this) {
      +            if (typeof this[i] !== "function") {
      +                newObj[i] = this[i];
      +            }
      +        }
      +        return newObj;
      +    };
      +}
      +JSZip.prototype = require('./object');
      +JSZip.prototype.loadAsync = require('./load');
      +JSZip.support = require('./support');
      +JSZip.defaults = require('./defaults');
      +
      +// TODO find a better way to handle this version,
      +// a require('package.json').version doesn't work with webpack, see #327
      +JSZip.version = "3.2.0";
      +
      +JSZip.loadAsync = function (content, options) {
      +    return new JSZip().loadAsync(content, options);
      +};
      +
      +JSZip.external = require("./external");
      +module.exports = JSZip;
      +
      +},{"./defaults":5,"./external":6,"./load":11,"./object":15,"./support":30}],11:[function(require,module,exports){
      +'use strict';
      +var utils = require('./utils');
      +var external = require("./external");
      +var utf8 = require('./utf8');
      +var utils = require('./utils');
      +var ZipEntries = require('./zipEntries');
      +var Crc32Probe = require('./stream/Crc32Probe');
      +var nodejsUtils = require("./nodejsUtils");
      +
      +/**
      + * Check the CRC32 of an entry.
      + * @param {ZipEntry} zipEntry the zip entry to check.
      + * @return {Promise} the result.
      + */
      +function checkEntryCRC32(zipEntry) {
      +    return new external.Promise(function (resolve, reject) {
      +        var worker = zipEntry.decompressed.getContentWorker().pipe(new Crc32Probe());
      +        worker.on("error", function (e) {
      +            reject(e);
      +        })
      +        .on("end", function () {
      +            if (worker.streamInfo.crc32 !== zipEntry.decompressed.crc32) {
      +                reject(new Error("Corrupted zip : CRC32 mismatch"));
      +            } else {
      +                resolve();
      +            }
      +        })
      +        .resume();
      +    });
      +}
      +
      +module.exports = function(data, options) {
      +    var zip = this;
      +    options = utils.extend(options || {}, {
      +        base64: false,
      +        checkCRC32: false,
      +        optimizedBinaryString: false,
      +        createFolders: false,
      +        decodeFileName: utf8.utf8decode
      +    });
      +
      +    if (nodejsUtils.isNode && nodejsUtils.isStream(data)) {
      +        return external.Promise.reject(new Error("JSZip can't accept a stream when loading a zip file."));
      +    }
      +
      +    return utils.prepareContent("the loaded zip file", data, true, options.optimizedBinaryString, options.base64)
      +    .then(function(data) {
      +        var zipEntries = new ZipEntries(options);
      +        zipEntries.load(data);
      +        return zipEntries;
      +    }).then(function checkCRC32(zipEntries) {
      +        var promises = [external.Promise.resolve(zipEntries)];
      +        var files = zipEntries.files;
      +        if (options.checkCRC32) {
      +            for (var i = 0; i < files.length; i++) {
      +                promises.push(checkEntryCRC32(files[i]));
      +            }
      +        }
      +        return external.Promise.all(promises);
      +    }).then(function addFiles(results) {
      +        var zipEntries = results.shift();
      +        var files = zipEntries.files;
      +        for (var i = 0; i < files.length; i++) {
      +            var input = files[i];
      +            zip.file(input.fileNameStr, input.decompressed, {
      +                binary: true,
      +                optimizedBinaryString: true,
      +                date: input.date,
      +                dir: input.dir,
      +                comment : input.fileCommentStr.length ? input.fileCommentStr : null,
      +                unixPermissions : input.unixPermissions,
      +                dosPermissions : input.dosPermissions,
      +                createFolders: options.createFolders
      +            });
      +        }
      +        if (zipEntries.zipComment.length) {
      +            zip.comment = zipEntries.zipComment;
      +        }
      +
      +        return zip;
      +    });
      +};
      +
      +},{"./external":6,"./nodejsUtils":14,"./stream/Crc32Probe":25,"./utf8":31,"./utils":32,"./zipEntries":33}],12:[function(require,module,exports){
      +"use strict";
      +
      +var utils = require('../utils');
      +var GenericWorker = require('../stream/GenericWorker');
      +
      +/**
      + * A worker that use a nodejs stream as source.
      + * @constructor
      + * @param {String} filename the name of the file entry for this stream.
      + * @param {Readable} stream the nodejs stream.
      + */
      +function NodejsStreamInputAdapter(filename, stream) {
      +    GenericWorker.call(this, "Nodejs stream input adapter for " + filename);
      +    this._upstreamEnded = false;
      +    this._bindStream(stream);
      +}
      +
      +utils.inherits(NodejsStreamInputAdapter, GenericWorker);
      +
      +/**
      + * Prepare the stream and bind the callbacks on it.
      + * Do this ASAP on node 0.10 ! A lazy binding doesn't always work.
      + * @param {Stream} stream the nodejs stream to use.
      + */
      +NodejsStreamInputAdapter.prototype._bindStream = function (stream) {
      +    var self = this;
      +    this._stream = stream;
      +    stream.pause();
      +    stream
      +    .on("data", function (chunk) {
      +        self.push({
      +            data: chunk,
      +            meta : {
      +                percent : 0
      +            }
      +        });
      +    })
      +    .on("error", function (e) {
      +        if(self.isPaused) {
      +            this.generatedError = e;
      +        } else {
      +            self.error(e);
      +        }
      +    })
      +    .on("end", function () {
      +        if(self.isPaused) {
      +            self._upstreamEnded = true;
      +        } else {
      +            self.end();
      +        }
      +    });
      +};
      +NodejsStreamInputAdapter.prototype.pause = function () {
      +    if(!GenericWorker.prototype.pause.call(this)) {
      +        return false;
      +    }
      +    this._stream.pause();
      +    return true;
      +};
      +NodejsStreamInputAdapter.prototype.resume = function () {
      +    if(!GenericWorker.prototype.resume.call(this)) {
      +        return false;
      +    }
      +
      +    if(this._upstreamEnded) {
      +        this.end();
      +    } else {
      +        this._stream.resume();
      +    }
      +
      +    return true;
      +};
      +
      +module.exports = NodejsStreamInputAdapter;
      +
      +},{"../stream/GenericWorker":28,"../utils":32}],13:[function(require,module,exports){
      +'use strict';
      +
      +var Readable = require('readable-stream').Readable;
      +
      +var utils = require('../utils');
      +utils.inherits(NodejsStreamOutputAdapter, Readable);
      +
      +/**
      +* A nodejs stream using a worker as source.
      +* @see the SourceWrapper in http://nodejs.org/api/stream.html
      +* @constructor
      +* @param {StreamHelper} helper the helper wrapping the worker
      +* @param {Object} options the nodejs stream options
      +* @param {Function} updateCb the update callback.
      +*/
      +function NodejsStreamOutputAdapter(helper, options, updateCb) {
      +    Readable.call(this, options);
      +    this._helper = helper;
      +
      +    var self = this;
      +    helper.on("data", function (data, meta) {
      +        if (!self.push(data)) {
      +            self._helper.pause();
      +        }
      +        if(updateCb) {
      +            updateCb(meta);
      +        }
      +    })
      +    .on("error", function(e) {
      +        self.emit('error', e);
      +    })
      +    .on("end", function () {
      +        self.push(null);
      +    });
      +}
      +
      +
      +NodejsStreamOutputAdapter.prototype._read = function() {
      +    this._helper.resume();
      +};
      +
      +module.exports = NodejsStreamOutputAdapter;
      +
      +},{"../utils":32,"readable-stream":16}],14:[function(require,module,exports){
      +'use strict';
      +
      +module.exports = {
      +    /**
      +     * True if this is running in Nodejs, will be undefined in a browser.
      +     * In a browser, browserify won't include this file and the whole module
      +     * will be resolved an empty object.
      +     */
      +    isNode : typeof Buffer !== "undefined",
      +    /**
      +     * Create a new nodejs Buffer from an existing content.
      +     * @param {Object} data the data to pass to the constructor.
      +     * @param {String} encoding the encoding to use.
      +     * @return {Buffer} a new Buffer.
      +     */
      +    newBufferFrom: function(data, encoding) {
      +        if (Buffer.from && Buffer.from !== Uint8Array.from) {
      +            return Buffer.from(data, encoding);
      +        } else {
      +            if (typeof data === "number") {
      +                // Safeguard for old Node.js versions. On newer versions,
      +                // Buffer.from(number) / Buffer(number, encoding) already throw.
      +                throw new Error("The \"data\" argument must not be a number");
      +            }
      +            return new Buffer(data, encoding);
      +        }
      +    },
      +    /**
      +     * Create a new nodejs Buffer with the specified size.
      +     * @param {Integer} size the size of the buffer.
      +     * @return {Buffer} a new Buffer.
      +     */
      +    allocBuffer: function (size) {
      +        if (Buffer.alloc) {
      +            return Buffer.alloc(size);
      +        } else {
      +            var buf = new Buffer(size);
      +            buf.fill(0);
      +            return buf;
      +        }
      +    },
      +    /**
      +     * Find out if an object is a Buffer.
      +     * @param {Object} b the object to test.
      +     * @return {Boolean} true if the object is a Buffer, false otherwise.
      +     */
      +    isBuffer : function(b){
      +        return Buffer.isBuffer(b);
      +    },
      +
      +    isStream : function (obj) {
      +        return obj &&
      +            typeof obj.on === "function" &&
      +            typeof obj.pause === "function" &&
      +            typeof obj.resume === "function";
      +    }
      +};
      +
      +},{}],15:[function(require,module,exports){
      +'use strict';
      +var utf8 = require('./utf8');
      +var utils = require('./utils');
      +var GenericWorker = require('./stream/GenericWorker');
      +var StreamHelper = require('./stream/StreamHelper');
      +var defaults = require('./defaults');
      +var CompressedObject = require('./compressedObject');
      +var ZipObject = require('./zipObject');
      +var generate = require("./generate");
      +var nodejsUtils = require("./nodejsUtils");
      +var NodejsStreamInputAdapter = require("./nodejs/NodejsStreamInputAdapter");
      +
      +
      +/**
      + * Add a file in the current folder.
      + * @private
      + * @param {string} name the name of the file
      + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data of the file
      + * @param {Object} originalOptions the options of the file
      + * @return {Object} the new file.
      + */
      +var fileAdd = function(name, data, originalOptions) {
      +    // be sure sub folders exist
      +    var dataType = utils.getTypeOf(data),
      +        parent;
      +
      +
      +    /*
      +     * Correct options.
      +     */
      +
      +    var o = utils.extend(originalOptions || {}, defaults);
      +    o.date = o.date || new Date();
      +    if (o.compression !== null) {
      +        o.compression = o.compression.toUpperCase();
      +    }
      +
      +    if (typeof o.unixPermissions === "string") {
      +        o.unixPermissions = parseInt(o.unixPermissions, 8);
      +    }
      +
      +    // UNX_IFDIR  0040000 see zipinfo.c
      +    if (o.unixPermissions && (o.unixPermissions & 0x4000)) {
      +        o.dir = true;
      +    }
      +    // Bit 4    Directory
      +    if (o.dosPermissions && (o.dosPermissions & 0x0010)) {
      +        o.dir = true;
      +    }
      +
      +    if (o.dir) {
      +        name = forceTrailingSlash(name);
      +    }
      +    if (o.createFolders && (parent = parentFolder(name))) {
      +        folderAdd.call(this, parent, true);
      +    }
      +
      +    var isUnicodeString = dataType === "string" && o.binary === false && o.base64 === false;
      +    if (!originalOptions || typeof originalOptions.binary === "undefined") {
      +        o.binary = !isUnicodeString;
      +    }
      +
      +
      +    var isCompressedEmpty = (data instanceof CompressedObject) && data.uncompressedSize === 0;
      +
      +    if (isCompressedEmpty || o.dir || !data || data.length === 0) {
      +        o.base64 = false;
      +        o.binary = true;
      +        data = "";
      +        o.compression = "STORE";
      +        dataType = "string";
      +    }
      +
      +    /*
      +     * Convert content to fit.
      +     */
      +
      +    var zipObjectContent = null;
      +    if (data instanceof CompressedObject || data instanceof GenericWorker) {
      +        zipObjectContent = data;
      +    } else if (nodejsUtils.isNode && nodejsUtils.isStream(data)) {
      +        zipObjectContent = new NodejsStreamInputAdapter(name, data);
      +    } else {
      +        zipObjectContent = utils.prepareContent(name, data, o.binary, o.optimizedBinaryString, o.base64);
      +    }
      +
      +    var object = new ZipObject(name, zipObjectContent, o);
      +    this.files[name] = object;
      +    /*
      +    TODO: we can't throw an exception because we have async promises
      +    (we can have a promise of a Date() for example) but returning a
      +    promise is useless because file(name, data) returns the JSZip
      +    object for chaining. Should we break that to allow the user
      +    to catch the error ?
      +
      +    return external.Promise.resolve(zipObjectContent)
      +    .then(function () {
      +        return object;
      +    });
      +    */
      +};
      +
      +/**
      + * Find the parent folder of the path.
      + * @private
      + * @param {string} path the path to use
      + * @return {string} the parent folder, or ""
      + */
      +var parentFolder = function (path) {
      +    if (path.slice(-1) === '/') {
      +        path = path.substring(0, path.length - 1);
      +    }
      +    var lastSlash = path.lastIndexOf('/');
      +    return (lastSlash > 0) ? path.substring(0, lastSlash) : "";
      +};
      +
      +/**
      + * Returns the path with a slash at the end.
      + * @private
      + * @param {String} path the path to check.
      + * @return {String} the path with a trailing slash.
      + */
      +var forceTrailingSlash = function(path) {
      +    // Check the name ends with a /
      +    if (path.slice(-1) !== "/") {
      +        path += "/"; // IE doesn't like substr(-1)
      +    }
      +    return path;
      +};
      +
      +/**
      + * Add a (sub) folder in the current folder.
      + * @private
      + * @param {string} name the folder's name
      + * @param {boolean=} [createFolders] If true, automatically create sub
      + *  folders. Defaults to false.
      + * @return {Object} the new folder.
      + */
      +var folderAdd = function(name, createFolders) {
      +    createFolders = (typeof createFolders !== 'undefined') ? createFolders : defaults.createFolders;
      +
      +    name = forceTrailingSlash(name);
      +
      +    // Does this folder already exist?
      +    if (!this.files[name]) {
      +        fileAdd.call(this, name, null, {
      +            dir: true,
      +            createFolders: createFolders
      +        });
      +    }
      +    return this.files[name];
      +};
      +
      +/**
      +* Cross-window, cross-Node-context regular expression detection
      +* @param  {Object}  object Anything
      +* @return {Boolean}        true if the object is a regular expression,
      +* false otherwise
      +*/
      +function isRegExp(object) {
      +    return Object.prototype.toString.call(object) === "[object RegExp]";
      +}
      +
      +// return the actual prototype of JSZip
      +var out = {
      +    /**
      +     * @see loadAsync
      +     */
      +    load: function() {
      +        throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.");
      +    },
      +
      +
      +    /**
      +     * Call a callback function for each entry at this folder level.
      +     * @param {Function} cb the callback function:
      +     * function (relativePath, file) {...}
      +     * It takes 2 arguments : the relative path and the file.
      +     */
      +    forEach: function(cb) {
      +        var filename, relativePath, file;
      +        for (filename in this.files) {
      +            if (!this.files.hasOwnProperty(filename)) {
      +                continue;
      +            }
      +            file = this.files[filename];
      +            relativePath = filename.slice(this.root.length, filename.length);
      +            if (relativePath && filename.slice(0, this.root.length) === this.root) { // the file is in the current root
      +                cb(relativePath, file); // TODO reverse the parameters ? need to be clean AND consistent with the filter search fn...
      +            }
      +        }
      +    },
      +
      +    /**
      +     * Filter nested files/folders with the specified function.
      +     * @param {Function} search the predicate to use :
      +     * function (relativePath, file) {...}
      +     * It takes 2 arguments : the relative path and the file.
      +     * @return {Array} An array of matching elements.
      +     */
      +    filter: function(search) {
      +        var result = [];
      +        this.forEach(function (relativePath, entry) {
      +            if (search(relativePath, entry)) { // the file matches the function
      +                result.push(entry);
      +            }
      +
      +        });
      +        return result;
      +    },
      +
      +    /**
      +     * Add a file to the zip file, or search a file.
      +     * @param   {string|RegExp} name The name of the file to add (if data is defined),
      +     * the name of the file to find (if no data) or a regex to match files.
      +     * @param   {String|ArrayBuffer|Uint8Array|Buffer} data  The file data, either raw or base64 encoded
      +     * @param   {Object} o     File options
      +     * @return  {JSZip|Object|Array} this JSZip object (when adding a file),
      +     * a file (when searching by string) or an array of files (when searching by regex).
      +     */
      +    file: function(name, data, o) {
      +        if (arguments.length === 1) {
      +            if (isRegExp(name)) {
      +                var regexp = name;
      +                return this.filter(function(relativePath, file) {
      +                    return !file.dir && regexp.test(relativePath);
      +                });
      +            }
      +            else { // text
      +                var obj = this.files[this.root + name];
      +                if (obj && !obj.dir) {
      +                    return obj;
      +                } else {
      +                    return null;
      +                }
      +            }
      +        }
      +        else { // more than one argument : we have data !
      +            name = this.root + name;
      +            fileAdd.call(this, name, data, o);
      +        }
      +        return this;
      +    },
      +
      +    /**
      +     * Add a directory to the zip file, or search.
      +     * @param   {String|RegExp} arg The name of the directory to add, or a regex to search folders.
      +     * @return  {JSZip} an object with the new directory as the root, or an array containing matching folders.
      +     */
      +    folder: function(arg) {
      +        if (!arg) {
      +            return this;
      +        }
      +
      +        if (isRegExp(arg)) {
      +            return this.filter(function(relativePath, file) {
      +                return file.dir && arg.test(relativePath);
      +            });
      +        }
      +
      +        // else, name is a new folder
      +        var name = this.root + arg;
      +        var newFolder = folderAdd.call(this, name);
      +
      +        // Allow chaining by returning a new object with this folder as the root
      +        var ret = this.clone();
      +        ret.root = newFolder.name;
      +        return ret;
      +    },
      +
      +    /**
      +     * Delete a file, or a directory and all sub-files, from the zip
      +     * @param {string} name the name of the file to delete
      +     * @return {JSZip} this JSZip object
      +     */
      +    remove: function(name) {
      +        name = this.root + name;
      +        var file = this.files[name];
      +        if (!file) {
      +            // Look for any folders
      +            if (name.slice(-1) !== "/") {
      +                name += "/";
      +            }
      +            file = this.files[name];
      +        }
      +
      +        if (file && !file.dir) {
      +            // file
      +            delete this.files[name];
      +        } else {
      +            // maybe a folder, delete recursively
      +            var kids = this.filter(function(relativePath, file) {
      +                return file.name.slice(0, name.length) === name;
      +            });
      +            for (var i = 0; i < kids.length; i++) {
      +                delete this.files[kids[i].name];
      +            }
      +        }
      +
      +        return this;
      +    },
      +
      +    /**
      +     * Generate the complete zip file
      +     * @param {Object} options the options to generate the zip file :
      +     * - compression, "STORE" by default.
      +     * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob.
      +     * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the zip file
      +     */
      +    generate: function(options) {
      +        throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.");
      +    },
      +
      +    /**
      +     * Generate the complete zip file as an internal stream.
      +     * @param {Object} options the options to generate the zip file :
      +     * - compression, "STORE" by default.
      +     * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob.
      +     * @return {StreamHelper} the streamed zip file.
      +     */
      +    generateInternalStream: function(options) {
      +      var worker, opts = {};
      +      try {
      +          opts = utils.extend(options || {}, {
      +              streamFiles: false,
      +              compression: "STORE",
      +              compressionOptions : null,
      +              type: "",
      +              platform: "DOS",
      +              comment: null,
      +              mimeType: 'application/zip',
      +              encodeFileName: utf8.utf8encode
      +          });
      +
      +          opts.type = opts.type.toLowerCase();
      +          opts.compression = opts.compression.toUpperCase();
      +
      +          // "binarystring" is prefered but the internals use "string".
      +          if(opts.type === "binarystring") {
      +            opts.type = "string";
      +          }
      +
      +          if (!opts.type) {
      +            throw new Error("No output type specified.");
      +          }
      +
      +          utils.checkSupport(opts.type);
      +
      +          // accept nodejs `process.platform`
      +          if(
      +              opts.platform === 'darwin' ||
      +              opts.platform === 'freebsd' ||
      +              opts.platform === 'linux' ||
      +              opts.platform === 'sunos'
      +          ) {
      +              opts.platform = "UNIX";
      +          }
      +          if (opts.platform === 'win32') {
      +              opts.platform = "DOS";
      +          }
      +
      +          var comment = opts.comment || this.comment || "";
      +          worker = generate.generateWorker(this, opts, comment);
      +      } catch (e) {
      +        worker = new GenericWorker("error");
      +        worker.error(e);
      +      }
      +      return new StreamHelper(worker, opts.type || "string", opts.mimeType);
      +    },
      +    /**
      +     * Generate the complete zip file asynchronously.
      +     * @see generateInternalStream
      +     */
      +    generateAsync: function(options, onUpdate) {
      +        return this.generateInternalStream(options).accumulate(onUpdate);
      +    },
      +    /**
      +     * Generate the complete zip file asynchronously.
      +     * @see generateInternalStream
      +     */
      +    generateNodeStream: function(options, onUpdate) {
      +        options = options || {};
      +        if (!options.type) {
      +            options.type = "nodebuffer";
      +        }
      +        return this.generateInternalStream(options).toNodejsStream(onUpdate);
      +    }
      +};
      +module.exports = out;
      +
      +},{"./compressedObject":2,"./defaults":5,"./generate":9,"./nodejs/NodejsStreamInputAdapter":12,"./nodejsUtils":14,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31,"./utils":32,"./zipObject":35}],16:[function(require,module,exports){
      +/*
      + * This file is used by module bundlers (browserify/webpack/etc) when
      + * including a stream implementation. We use "readable-stream" to get a
      + * consistent behavior between nodejs versions but bundlers often have a shim
      + * for "stream". Using this shim greatly improve the compatibility and greatly
      + * reduce the final size of the bundle (only one stream implementation, not
      + * two).
      + */
      +module.exports = require("stream");
      +
      +},{"stream":undefined}],17:[function(require,module,exports){
      +'use strict';
      +var DataReader = require('./DataReader');
      +var utils = require('../utils');
      +
      +function ArrayReader(data) {
      +    DataReader.call(this, data);
      +	for(var i = 0; i < this.data.length; i++) {
      +		data[i] = data[i] & 0xFF;
      +	}
      +}
      +utils.inherits(ArrayReader, DataReader);
      +/**
      + * @see DataReader.byteAt
      + */
      +ArrayReader.prototype.byteAt = function(i) {
      +    return this.data[this.zero + i];
      +};
      +/**
      + * @see DataReader.lastIndexOfSignature
      + */
      +ArrayReader.prototype.lastIndexOfSignature = function(sig) {
      +    var sig0 = sig.charCodeAt(0),
      +        sig1 = sig.charCodeAt(1),
      +        sig2 = sig.charCodeAt(2),
      +        sig3 = sig.charCodeAt(3);
      +    for (var i = this.length - 4; i >= 0; --i) {
      +        if (this.data[i] === sig0 && this.data[i + 1] === sig1 && this.data[i + 2] === sig2 && this.data[i + 3] === sig3) {
      +            return i - this.zero;
      +        }
      +    }
      +
      +    return -1;
      +};
      +/**
      + * @see DataReader.readAndCheckSignature
      + */
      +ArrayReader.prototype.readAndCheckSignature = function (sig) {
      +    var sig0 = sig.charCodeAt(0),
      +        sig1 = sig.charCodeAt(1),
      +        sig2 = sig.charCodeAt(2),
      +        sig3 = sig.charCodeAt(3),
      +        data = this.readData(4);
      +    return sig0 === data[0] && sig1 === data[1] && sig2 === data[2] && sig3 === data[3];
      +};
      +/**
      + * @see DataReader.readData
      + */
      +ArrayReader.prototype.readData = function(size) {
      +    this.checkOffset(size);
      +    if(size === 0) {
      +        return [];
      +    }
      +    var result = this.data.slice(this.zero + this.index, this.zero + this.index + size);
      +    this.index += size;
      +    return result;
      +};
      +module.exports = ArrayReader;
      +
      +},{"../utils":32,"./DataReader":18}],18:[function(require,module,exports){
      +'use strict';
      +var utils = require('../utils');
      +
      +function DataReader(data) {
      +    this.data = data; // type : see implementation
      +    this.length = data.length;
      +    this.index = 0;
      +    this.zero = 0;
      +}
      +DataReader.prototype = {
      +    /**
      +     * Check that the offset will not go too far.
      +     * @param {string} offset the additional offset to check.
      +     * @throws {Error} an Error if the offset is out of bounds.
      +     */
      +    checkOffset: function(offset) {
      +        this.checkIndex(this.index + offset);
      +    },
      +    /**
      +     * Check that the specified index will not be too far.
      +     * @param {string} newIndex the index to check.
      +     * @throws {Error} an Error if the index is out of bounds.
      +     */
      +    checkIndex: function(newIndex) {
      +        if (this.length < this.zero + newIndex || newIndex < 0) {
      +            throw new Error("End of data reached (data length = " + this.length + ", asked index = " + (newIndex) + "). Corrupted zip ?");
      +        }
      +    },
      +    /**
      +     * Change the index.
      +     * @param {number} newIndex The new index.
      +     * @throws {Error} if the new index is out of the data.
      +     */
      +    setIndex: function(newIndex) {
      +        this.checkIndex(newIndex);
      +        this.index = newIndex;
      +    },
      +    /**
      +     * Skip the next n bytes.
      +     * @param {number} n the number of bytes to skip.
      +     * @throws {Error} if the new index is out of the data.
      +     */
      +    skip: function(n) {
      +        this.setIndex(this.index + n);
      +    },
      +    /**
      +     * Get the byte at the specified index.
      +     * @param {number} i the index to use.
      +     * @return {number} a byte.
      +     */
      +    byteAt: function(i) {
      +        // see implementations
      +    },
      +    /**
      +     * Get the next number with a given byte size.
      +     * @param {number} size the number of bytes to read.
      +     * @return {number} the corresponding number.
      +     */
      +    readInt: function(size) {
      +        var result = 0,
      +            i;
      +        this.checkOffset(size);
      +        for (i = this.index + size - 1; i >= this.index; i--) {
      +            result = (result << 8) + this.byteAt(i);
      +        }
      +        this.index += size;
      +        return result;
      +    },
      +    /**
      +     * Get the next string with a given byte size.
      +     * @param {number} size the number of bytes to read.
      +     * @return {string} the corresponding string.
      +     */
      +    readString: function(size) {
      +        return utils.transformTo("string", this.readData(size));
      +    },
      +    /**
      +     * Get raw data without conversion, <size> bytes.
      +     * @param {number} size the number of bytes to read.
      +     * @return {Object} the raw data, implementation specific.
      +     */
      +    readData: function(size) {
      +        // see implementations
      +    },
      +    /**
      +     * Find the last occurence of a zip signature (4 bytes).
      +     * @param {string} sig the signature to find.
      +     * @return {number} the index of the last occurence, -1 if not found.
      +     */
      +    lastIndexOfSignature: function(sig) {
      +        // see implementations
      +    },
      +    /**
      +     * Read the signature (4 bytes) at the current position and compare it with sig.
      +     * @param {string} sig the expected signature
      +     * @return {boolean} true if the signature matches, false otherwise.
      +     */
      +    readAndCheckSignature: function(sig) {
      +        // see implementations
      +    },
      +    /**
      +     * Get the next date.
      +     * @return {Date} the date.
      +     */
      +    readDate: function() {
      +        var dostime = this.readInt(4);
      +        return new Date(Date.UTC(
      +        ((dostime >> 25) & 0x7f) + 1980, // year
      +        ((dostime >> 21) & 0x0f) - 1, // month
      +        (dostime >> 16) & 0x1f, // day
      +        (dostime >> 11) & 0x1f, // hour
      +        (dostime >> 5) & 0x3f, // minute
      +        (dostime & 0x1f) << 1)); // second
      +    }
      +};
      +module.exports = DataReader;
      +
      +},{"../utils":32}],19:[function(require,module,exports){
      +'use strict';
      +var Uint8ArrayReader = require('./Uint8ArrayReader');
      +var utils = require('../utils');
      +
      +function NodeBufferReader(data) {
      +    Uint8ArrayReader.call(this, data);
      +}
      +utils.inherits(NodeBufferReader, Uint8ArrayReader);
      +
      +/**
      + * @see DataReader.readData
      + */
      +NodeBufferReader.prototype.readData = function(size) {
      +    this.checkOffset(size);
      +    var result = this.data.slice(this.zero + this.index, this.zero + this.index + size);
      +    this.index += size;
      +    return result;
      +};
      +module.exports = NodeBufferReader;
      +
      +},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(require,module,exports){
      +'use strict';
      +var DataReader = require('./DataReader');
      +var utils = require('../utils');
      +
      +function StringReader(data) {
      +    DataReader.call(this, data);
      +}
      +utils.inherits(StringReader, DataReader);
      +/**
      + * @see DataReader.byteAt
      + */
      +StringReader.prototype.byteAt = function(i) {
      +    return this.data.charCodeAt(this.zero + i);
      +};
      +/**
      + * @see DataReader.lastIndexOfSignature
      + */
      +StringReader.prototype.lastIndexOfSignature = function(sig) {
      +    return this.data.lastIndexOf(sig) - this.zero;
      +};
      +/**
      + * @see DataReader.readAndCheckSignature
      + */
      +StringReader.prototype.readAndCheckSignature = function (sig) {
      +    var data = this.readData(4);
      +    return sig === data;
      +};
      +/**
      + * @see DataReader.readData
      + */
      +StringReader.prototype.readData = function(size) {
      +    this.checkOffset(size);
      +    // this will work because the constructor applied the "& 0xff" mask.
      +    var result = this.data.slice(this.zero + this.index, this.zero + this.index + size);
      +    this.index += size;
      +    return result;
      +};
      +module.exports = StringReader;
      +
      +},{"../utils":32,"./DataReader":18}],21:[function(require,module,exports){
      +'use strict';
      +var ArrayReader = require('./ArrayReader');
      +var utils = require('../utils');
      +
      +function Uint8ArrayReader(data) {
      +    ArrayReader.call(this, data);
      +}
      +utils.inherits(Uint8ArrayReader, ArrayReader);
      +/**
      + * @see DataReader.readData
      + */
      +Uint8ArrayReader.prototype.readData = function(size) {
      +    this.checkOffset(size);
      +    if(size === 0) {
      +        // in IE10, when using subarray(idx, idx), we get the array [0x00] instead of [].
      +        return new Uint8Array(0);
      +    }
      +    var result = this.data.subarray(this.zero + this.index, this.zero + this.index + size);
      +    this.index += size;
      +    return result;
      +};
      +module.exports = Uint8ArrayReader;
      +
      +},{"../utils":32,"./ArrayReader":17}],22:[function(require,module,exports){
      +'use strict';
      +
      +var utils = require('../utils');
      +var support = require('../support');
      +var ArrayReader = require('./ArrayReader');
      +var StringReader = require('./StringReader');
      +var NodeBufferReader = require('./NodeBufferReader');
      +var Uint8ArrayReader = require('./Uint8ArrayReader');
      +
      +/**
      + * Create a reader adapted to the data.
      + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data to read.
      + * @return {DataReader} the data reader.
      + */
      +module.exports = function (data) {
      +    var type = utils.getTypeOf(data);
      +    utils.checkSupport(type);
      +    if (type === "string" && !support.uint8array) {
      +        return new StringReader(data);
      +    }
      +    if (type === "nodebuffer") {
      +        return new NodeBufferReader(data);
      +    }
      +    if (support.uint8array) {
      +        return new Uint8ArrayReader(utils.transformTo("uint8array", data));
      +    }
      +    return new ArrayReader(utils.transformTo("array", data));
      +};
      +
      +},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(require,module,exports){
      +'use strict';
      +exports.LOCAL_FILE_HEADER = "PK\x03\x04";
      +exports.CENTRAL_FILE_HEADER = "PK\x01\x02";
      +exports.CENTRAL_DIRECTORY_END = "PK\x05\x06";
      +exports.ZIP64_CENTRAL_DIRECTORY_LOCATOR = "PK\x06\x07";
      +exports.ZIP64_CENTRAL_DIRECTORY_END = "PK\x06\x06";
      +exports.DATA_DESCRIPTOR = "PK\x07\x08";
      +
      +},{}],24:[function(require,module,exports){
      +'use strict';
      +
      +var GenericWorker = require('./GenericWorker');
      +var utils = require('../utils');
      +
      +/**
      + * A worker which convert chunks to a specified type.
      + * @constructor
      + * @param {String} destType the destination type.
      + */
      +function ConvertWorker(destType) {
      +    GenericWorker.call(this, "ConvertWorker to " + destType);
      +    this.destType = destType;
      +}
      +utils.inherits(ConvertWorker, GenericWorker);
      +
      +/**
      + * @see GenericWorker.processChunk
      + */
      +ConvertWorker.prototype.processChunk = function (chunk) {
      +    this.push({
      +        data : utils.transformTo(this.destType, chunk.data),
      +        meta : chunk.meta
      +    });
      +};
      +module.exports = ConvertWorker;
      +
      +},{"../utils":32,"./GenericWorker":28}],25:[function(require,module,exports){
      +'use strict';
      +
      +var GenericWorker = require('./GenericWorker');
      +var crc32 = require('../crc32');
      +var utils = require('../utils');
      +
      +/**
      + * A worker which calculate the crc32 of the data flowing through.
      + * @constructor
      + */
      +function Crc32Probe() {
      +    GenericWorker.call(this, "Crc32Probe");
      +    this.withStreamInfo("crc32", 0);
      +}
      +utils.inherits(Crc32Probe, GenericWorker);
      +
      +/**
      + * @see GenericWorker.processChunk
      + */
      +Crc32Probe.prototype.processChunk = function (chunk) {
      +    this.streamInfo.crc32 = crc32(chunk.data, this.streamInfo.crc32 || 0);
      +    this.push(chunk);
      +};
      +module.exports = Crc32Probe;
      +
      +},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(require,module,exports){
      +'use strict';
      +
      +var utils = require('../utils');
      +var GenericWorker = require('./GenericWorker');
      +
      +/**
      + * A worker which calculate the total length of the data flowing through.
      + * @constructor
      + * @param {String} propName the name used to expose the length
      + */
      +function DataLengthProbe(propName) {
      +    GenericWorker.call(this, "DataLengthProbe for " + propName);
      +    this.propName = propName;
      +    this.withStreamInfo(propName, 0);
      +}
      +utils.inherits(DataLengthProbe, GenericWorker);
      +
      +/**
      + * @see GenericWorker.processChunk
      + */
      +DataLengthProbe.prototype.processChunk = function (chunk) {
      +    if(chunk) {
      +        var length = this.streamInfo[this.propName] || 0;
      +        this.streamInfo[this.propName] = length + chunk.data.length;
      +    }
      +    GenericWorker.prototype.processChunk.call(this, chunk);
      +};
      +module.exports = DataLengthProbe;
      +
      +
      +},{"../utils":32,"./GenericWorker":28}],27:[function(require,module,exports){
      +'use strict';
      +
      +var utils = require('../utils');
      +var GenericWorker = require('./GenericWorker');
      +
      +// the size of the generated chunks
      +// TODO expose this as a public variable
      +var DEFAULT_BLOCK_SIZE = 16 * 1024;
      +
      +/**
      + * A worker that reads a content and emits chunks.
      + * @constructor
      + * @param {Promise} dataP the promise of the data to split
      + */
      +function DataWorker(dataP) {
      +    GenericWorker.call(this, "DataWorker");
      +    var self = this;
      +    this.dataIsReady = false;
      +    this.index = 0;
      +    this.max = 0;
      +    this.data = null;
      +    this.type = "";
      +
      +    this._tickScheduled = false;
      +
      +    dataP.then(function (data) {
      +        self.dataIsReady = true;
      +        self.data = data;
      +        self.max = data && data.length || 0;
      +        self.type = utils.getTypeOf(data);
      +        if(!self.isPaused) {
      +            self._tickAndRepeat();
      +        }
      +    }, function (e) {
      +        self.error(e);
      +    });
      +}
      +
      +utils.inherits(DataWorker, GenericWorker);
      +
      +/**
      + * @see GenericWorker.cleanUp
      + */
      +DataWorker.prototype.cleanUp = function () {
      +    GenericWorker.prototype.cleanUp.call(this);
      +    this.data = null;
      +};
      +
      +/**
      + * @see GenericWorker.resume
      + */
      +DataWorker.prototype.resume = function () {
      +    if(!GenericWorker.prototype.resume.call(this)) {
      +        return false;
      +    }
      +
      +    if (!this._tickScheduled && this.dataIsReady) {
      +        this._tickScheduled = true;
      +        utils.delay(this._tickAndRepeat, [], this);
      +    }
      +    return true;
      +};
      +
      +/**
      + * Trigger a tick a schedule an other call to this function.
      + */
      +DataWorker.prototype._tickAndRepeat = function() {
      +    this._tickScheduled = false;
      +    if(this.isPaused || this.isFinished) {
      +        return;
      +    }
      +    this._tick();
      +    if(!this.isFinished) {
      +        utils.delay(this._tickAndRepeat, [], this);
      +        this._tickScheduled = true;
      +    }
      +};
      +
      +/**
      + * Read and push a chunk.
      + */
      +DataWorker.prototype._tick = function() {
      +
      +    if(this.isPaused || this.isFinished) {
      +        return false;
      +    }
      +
      +    var size = DEFAULT_BLOCK_SIZE;
      +    var data = null, nextIndex = Math.min(this.max, this.index + size);
      +    if (this.index >= this.max) {
      +        // EOF
      +        return this.end();
      +    } else {
      +        switch(this.type) {
      +            case "string":
      +                data = this.data.substring(this.index, nextIndex);
      +            break;
      +            case "uint8array":
      +                data = this.data.subarray(this.index, nextIndex);
      +            break;
      +            case "array":
      +            case "nodebuffer":
      +                data = this.data.slice(this.index, nextIndex);
      +            break;
      +        }
      +        this.index = nextIndex;
      +        return this.push({
      +            data : data,
      +            meta : {
      +                percent : this.max ? this.index / this.max * 100 : 0
      +            }
      +        });
      +    }
      +};
      +
      +module.exports = DataWorker;
      +
      +},{"../utils":32,"./GenericWorker":28}],28:[function(require,module,exports){
      +'use strict';
      +
      +/**
      + * A worker that does nothing but passing chunks to the next one. This is like
      + * a nodejs stream but with some differences. On the good side :
      + * - it works on IE 6-9 without any issue / polyfill
      + * - it weights less than the full dependencies bundled with browserify
      + * - it forwards errors (no need to declare an error handler EVERYWHERE)
      + *
      + * A chunk is an object with 2 attributes : `meta` and `data`. The former is an
      + * object containing anything (`percent` for example), see each worker for more
      + * details. The latter is the real data (String, Uint8Array, etc).
      + *
      + * @constructor
      + * @param {String} name the name of the stream (mainly used for debugging purposes)
      + */
      +function GenericWorker(name) {
      +    // the name of the worker
      +    this.name = name || "default";
      +    // an object containing metadata about the workers chain
      +    this.streamInfo = {};
      +    // an error which happened when the worker was paused
      +    this.generatedError = null;
      +    // an object containing metadata to be merged by this worker into the general metadata
      +    this.extraStreamInfo = {};
      +    // true if the stream is paused (and should not do anything), false otherwise
      +    this.isPaused = true;
      +    // true if the stream is finished (and should not do anything), false otherwise
      +    this.isFinished = false;
      +    // true if the stream is locked to prevent further structure updates (pipe), false otherwise
      +    this.isLocked = false;
      +    // the event listeners
      +    this._listeners = {
      +        'data':[],
      +        'end':[],
      +        'error':[]
      +    };
      +    // the previous worker, if any
      +    this.previous = null;
      +}
      +
      +GenericWorker.prototype = {
      +    /**
      +     * Push a chunk to the next workers.
      +     * @param {Object} chunk the chunk to push
      +     */
      +    push : function (chunk) {
      +        this.emit("data", chunk);
      +    },
      +    /**
      +     * End the stream.
      +     * @return {Boolean} true if this call ended the worker, false otherwise.
      +     */
      +    end : function () {
      +        if (this.isFinished) {
      +            return false;
      +        }
      +
      +        this.flush();
      +        try {
      +            this.emit("end");
      +            this.cleanUp();
      +            this.isFinished = true;
      +        } catch (e) {
      +            this.emit("error", e);
      +        }
      +        return true;
      +    },
      +    /**
      +     * End the stream with an error.
      +     * @param {Error} e the error which caused the premature end.
      +     * @return {Boolean} true if this call ended the worker with an error, false otherwise.
      +     */
      +    error : function (e) {
      +        if (this.isFinished) {
      +            return false;
      +        }
      +
      +        if(this.isPaused) {
      +            this.generatedError = e;
      +        } else {
      +            this.isFinished = true;
      +
      +            this.emit("error", e);
      +
      +            // in the workers chain exploded in the middle of the chain,
      +            // the error event will go downward but we also need to notify
      +            // workers upward that there has been an error.
      +            if(this.previous) {
      +                this.previous.error(e);
      +            }
      +
      +            this.cleanUp();
      +        }
      +        return true;
      +    },
      +    /**
      +     * Add a callback on an event.
      +     * @param {String} name the name of the event (data, end, error)
      +     * @param {Function} listener the function to call when the event is triggered
      +     * @return {GenericWorker} the current object for chainability
      +     */
      +    on : function (name, listener) {
      +        this._listeners[name].push(listener);
      +        return this;
      +    },
      +    /**
      +     * Clean any references when a worker is ending.
      +     */
      +    cleanUp : function () {
      +        this.streamInfo = this.generatedError = this.extraStreamInfo = null;
      +        this._listeners = [];
      +    },
      +    /**
      +     * Trigger an event. This will call registered callback with the provided arg.
      +     * @param {String} name the name of the event (data, end, error)
      +     * @param {Object} arg the argument to call the callback with.
      +     */
      +    emit : function (name, arg) {
      +        if (this._listeners[name]) {
      +            for(var i = 0; i < this._listeners[name].length; i++) {
      +                this._listeners[name][i].call(this, arg);
      +            }
      +        }
      +    },
      +    /**
      +     * Chain a worker with an other.
      +     * @param {Worker} next the worker receiving events from the current one.
      +     * @return {worker} the next worker for chainability
      +     */
      +    pipe : function (next) {
      +        return next.registerPrevious(this);
      +    },
      +    /**
      +     * Same as `pipe` in the other direction.
      +     * Using an API with `pipe(next)` is very easy.
      +     * Implementing the API with the point of view of the next one registering
      +     * a source is easier, see the ZipFileWorker.
      +     * @param {Worker} previous the previous worker, sending events to this one
      +     * @return {Worker} the current worker for chainability
      +     */
      +    registerPrevious : function (previous) {
      +        if (this.isLocked) {
      +            throw new Error("The stream '" + this + "' has already been used.");
      +        }
      +
      +        // sharing the streamInfo...
      +        this.streamInfo = previous.streamInfo;
      +        // ... and adding our own bits
      +        this.mergeStreamInfo();
      +        this.previous =  previous;
      +        var self = this;
      +        previous.on('data', function (chunk) {
      +            self.processChunk(chunk);
      +        });
      +        previous.on('end', function () {
      +            self.end();
      +        });
      +        previous.on('error', function (e) {
      +            self.error(e);
      +        });
      +        return this;
      +    },
      +    /**
      +     * Pause the stream so it doesn't send events anymore.
      +     * @return {Boolean} true if this call paused the worker, false otherwise.
      +     */
      +    pause : function () {
      +        if(this.isPaused || this.isFinished) {
      +            return false;
      +        }
      +        this.isPaused = true;
      +
      +        if(this.previous) {
      +            this.previous.pause();
      +        }
      +        return true;
      +    },
      +    /**
      +     * Resume a paused stream.
      +     * @return {Boolean} true if this call resumed the worker, false otherwise.
      +     */
      +    resume : function () {
      +        if(!this.isPaused || this.isFinished) {
      +            return false;
      +        }
      +        this.isPaused = false;
      +
      +        // if true, the worker tried to resume but failed
      +        var withError = false;
      +        if(this.generatedError) {
      +            this.error(this.generatedError);
      +            withError = true;
      +        }
      +        if(this.previous) {
      +            this.previous.resume();
      +        }
      +
      +        return !withError;
      +    },
      +    /**
      +     * Flush any remaining bytes as the stream is ending.
      +     */
      +    flush : function () {},
      +    /**
      +     * Process a chunk. This is usually the method overridden.
      +     * @param {Object} chunk the chunk to process.
      +     */
      +    processChunk : function(chunk) {
      +        this.push(chunk);
      +    },
      +    /**
      +     * Add a key/value to be added in the workers chain streamInfo once activated.
      +     * @param {String} key the key to use
      +     * @param {Object} value the associated value
      +     * @return {Worker} the current worker for chainability
      +     */
      +    withStreamInfo : function (key, value) {
      +        this.extraStreamInfo[key] = value;
      +        this.mergeStreamInfo();
      +        return this;
      +    },
      +    /**
      +     * Merge this worker's streamInfo into the chain's streamInfo.
      +     */
      +    mergeStreamInfo : function () {
      +        for(var key in this.extraStreamInfo) {
      +            if (!this.extraStreamInfo.hasOwnProperty(key)) {
      +                continue;
      +            }
      +            this.streamInfo[key] = this.extraStreamInfo[key];
      +        }
      +    },
      +
      +    /**
      +     * Lock the stream to prevent further updates on the workers chain.
      +     * After calling this method, all calls to pipe will fail.
      +     */
      +    lock: function () {
      +        if (this.isLocked) {
      +            throw new Error("The stream '" + this + "' has already been used.");
      +        }
      +        this.isLocked = true;
      +        if (this.previous) {
      +            this.previous.lock();
      +        }
      +    },
      +
      +    /**
      +     *
      +     * Pretty print the workers chain.
      +     */
      +    toString : function () {
      +        var me = "Worker " + this.name;
      +        if (this.previous) {
      +            return this.previous + " -> " + me;
      +        } else {
      +            return me;
      +        }
      +    }
      +};
      +
      +module.exports = GenericWorker;
      +
      +},{}],29:[function(require,module,exports){
      +'use strict';
      +
      +var utils = require('../utils');
      +var ConvertWorker = require('./ConvertWorker');
      +var GenericWorker = require('./GenericWorker');
      +var base64 = require('../base64');
      +var support = require("../support");
      +var external = require("../external");
      +
      +var NodejsStreamOutputAdapter = null;
      +if (support.nodestream) {
      +    try {
      +        NodejsStreamOutputAdapter = require('../nodejs/NodejsStreamOutputAdapter');
      +    } catch(e) {}
      +}
      +
      +/**
      + * Apply the final transformation of the data. If the user wants a Blob for
      + * example, it's easier to work with an U8intArray and finally do the
      + * ArrayBuffer/Blob conversion.
      + * @param {String} type the name of the final type
      + * @param {String|Uint8Array|Buffer} content the content to transform
      + * @param {String} mimeType the mime type of the content, if applicable.
      + * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the content in the right format.
      + */
      +function transformZipOutput(type, content, mimeType) {
      +    switch(type) {
      +        case "blob" :
      +            return utils.newBlob(utils.transformTo("arraybuffer", content), mimeType);
      +        case "base64" :
      +            return base64.encode(content);
      +        default :
      +            return utils.transformTo(type, content);
      +    }
      +}
      +
      +/**
      + * Concatenate an array of data of the given type.
      + * @param {String} type the type of the data in the given array.
      + * @param {Array} dataArray the array containing the data chunks to concatenate
      + * @return {String|Uint8Array|Buffer} the concatenated data
      + * @throws Error if the asked type is unsupported
      + */
      +function concat (type, dataArray) {
      +    var i, index = 0, res = null, totalLength = 0;
      +    for(i = 0; i < dataArray.length; i++) {
      +        totalLength += dataArray[i].length;
      +    }
      +    switch(type) {
      +        case "string":
      +            return dataArray.join("");
      +          case "array":
      +            return Array.prototype.concat.apply([], dataArray);
      +        case "uint8array":
      +            res = new Uint8Array(totalLength);
      +            for(i = 0; i < dataArray.length; i++) {
      +                res.set(dataArray[i], index);
      +                index += dataArray[i].length;
      +            }
      +            return res;
      +        case "nodebuffer":
      +            return Buffer.concat(dataArray);
      +        default:
      +            throw new Error("concat : unsupported type '"  + type + "'");
      +    }
      +}
      +
      +/**
      + * Listen a StreamHelper, accumulate its content and concatenate it into a
      + * complete block.
      + * @param {StreamHelper} helper the helper to use.
      + * @param {Function} updateCallback a callback called on each update. Called
      + * with one arg :
      + * - the metadata linked to the update received.
      + * @return Promise the promise for the accumulation.
      + */
      +function accumulate(helper, updateCallback) {
      +    return new external.Promise(function (resolve, reject){
      +        var dataArray = [];
      +        var chunkType = helper._internalType,
      +            resultType = helper._outputType,
      +            mimeType = helper._mimeType;
      +        helper
      +        .on('data', function (data, meta) {
      +            dataArray.push(data);
      +            if(updateCallback) {
      +                updateCallback(meta);
      +            }
      +        })
      +        .on('error', function(err) {
      +            dataArray = [];
      +            reject(err);
      +        })
      +        .on('end', function (){
      +            try {
      +                var result = transformZipOutput(resultType, concat(chunkType, dataArray), mimeType);
      +                resolve(result);
      +            } catch (e) {
      +                reject(e);
      +            }
      +            dataArray = [];
      +        })
      +        .resume();
      +    });
      +}
      +
      +/**
      + * An helper to easily use workers outside of JSZip.
      + * @constructor
      + * @param {Worker} worker the worker to wrap
      + * @param {String} outputType the type of data expected by the use
      + * @param {String} mimeType the mime type of the content, if applicable.
      + */
      +function StreamHelper(worker, outputType, mimeType) {
      +    var internalType = outputType;
      +    switch(outputType) {
      +        case "blob":
      +        case "arraybuffer":
      +            internalType = "uint8array";
      +        break;
      +        case "base64":
      +            internalType = "string";
      +        break;
      +    }
      +
      +    try {
      +        // the type used internally
      +        this._internalType = internalType;
      +        // the type used to output results
      +        this._outputType = outputType;
      +        // the mime type
      +        this._mimeType = mimeType;
      +        utils.checkSupport(internalType);
      +        this._worker = worker.pipe(new ConvertWorker(internalType));
      +        // the last workers can be rewired without issues but we need to
      +        // prevent any updates on previous workers.
      +        worker.lock();
      +    } catch(e) {
      +        this._worker = new GenericWorker("error");
      +        this._worker.error(e);
      +    }
      +}
      +
      +StreamHelper.prototype = {
      +    /**
      +     * Listen a StreamHelper, accumulate its content and concatenate it into a
      +     * complete block.
      +     * @param {Function} updateCb the update callback.
      +     * @return Promise the promise for the accumulation.
      +     */
      +    accumulate : function (updateCb) {
      +        return accumulate(this, updateCb);
      +    },
      +    /**
      +     * Add a listener on an event triggered on a stream.
      +     * @param {String} evt the name of the event
      +     * @param {Function} fn the listener
      +     * @return {StreamHelper} the current helper.
      +     */
      +    on : function (evt, fn) {
      +        var self = this;
      +
      +        if(evt === "data") {
      +            this._worker.on(evt, function (chunk) {
      +                fn.call(self, chunk.data, chunk.meta);
      +            });
      +        } else {
      +            this._worker.on(evt, function () {
      +                utils.delay(fn, arguments, self);
      +            });
      +        }
      +        return this;
      +    },
      +    /**
      +     * Resume the flow of chunks.
      +     * @return {StreamHelper} the current helper.
      +     */
      +    resume : function () {
      +        utils.delay(this._worker.resume, [], this._worker);
      +        return this;
      +    },
      +    /**
      +     * Pause the flow of chunks.
      +     * @return {StreamHelper} the current helper.
      +     */
      +    pause : function () {
      +        this._worker.pause();
      +        return this;
      +    },
      +    /**
      +     * Return a nodejs stream for this helper.
      +     * @param {Function} updateCb the update callback.
      +     * @return {NodejsStreamOutputAdapter} the nodejs stream.
      +     */
      +    toNodejsStream : function (updateCb) {
      +        utils.checkSupport("nodestream");
      +        if (this._outputType !== "nodebuffer") {
      +            // an object stream containing blob/arraybuffer/uint8array/string
      +            // is strange and I don't know if it would be useful.
      +            // I you find this comment and have a good usecase, please open a
      +            // bug report !
      +            throw new Error(this._outputType + " is not supported by this method");
      +        }
      +
      +        return new NodejsStreamOutputAdapter(this, {
      +            objectMode : this._outputType !== "nodebuffer"
      +        }, updateCb);
      +    }
      +};
      +
      +
      +module.exports = StreamHelper;
      +
      +},{"../base64":1,"../external":6,"../nodejs/NodejsStreamOutputAdapter":13,"../support":30,"../utils":32,"./ConvertWorker":24,"./GenericWorker":28}],30:[function(require,module,exports){
      +'use strict';
      +
      +exports.base64 = true;
      +exports.array = true;
      +exports.string = true;
      +exports.arraybuffer = typeof ArrayBuffer !== "undefined" && typeof Uint8Array !== "undefined";
      +exports.nodebuffer = typeof Buffer !== "undefined";
      +// contains true if JSZip can read/generate Uint8Array, false otherwise.
      +exports.uint8array = typeof Uint8Array !== "undefined";
      +
      +if (typeof ArrayBuffer === "undefined") {
      +    exports.blob = false;
      +}
      +else {
      +    var buffer = new ArrayBuffer(0);
      +    try {
      +        exports.blob = new Blob([buffer], {
      +            type: "application/zip"
      +        }).size === 0;
      +    }
      +    catch (e) {
      +        try {
      +            var Builder = self.BlobBuilder || self.WebKitBlobBuilder || self.MozBlobBuilder || self.MSBlobBuilder;
      +            var builder = new Builder();
      +            builder.append(buffer);
      +            exports.blob = builder.getBlob('application/zip').size === 0;
      +        }
      +        catch (e) {
      +            exports.blob = false;
      +        }
      +    }
      +}
      +
      +try {
      +    exports.nodestream = !!require('readable-stream').Readable;
      +} catch(e) {
      +    exports.nodestream = false;
      +}
      +
      +},{"readable-stream":16}],31:[function(require,module,exports){
      +'use strict';
      +
      +var utils = require('./utils');
      +var support = require('./support');
      +var nodejsUtils = require('./nodejsUtils');
      +var GenericWorker = require('./stream/GenericWorker');
      +
      +/**
      + * The following functions come from pako, from pako/lib/utils/strings
      + * released under the MIT license, see pako https://github.com/nodeca/pako/
      + */
      +
      +// Table with utf8 lengths (calculated by first byte of sequence)
      +// Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS,
      +// because max possible codepoint is 0x10ffff
      +var _utf8len = new Array(256);
      +for (var i=0; i<256; i++) {
      +  _utf8len[i] = (i >= 252 ? 6 : i >= 248 ? 5 : i >= 240 ? 4 : i >= 224 ? 3 : i >= 192 ? 2 : 1);
      +}
      +_utf8len[254]=_utf8len[254]=1; // Invalid sequence start
      +
      +// convert string to array (typed, when possible)
      +var string2buf = function (str) {
      +    var buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0;
      +
      +    // count binary size
      +    for (m_pos = 0; m_pos < str_len; m_pos++) {
      +        c = str.charCodeAt(m_pos);
      +        if ((c & 0xfc00) === 0xd800 && (m_pos+1 < str_len)) {
      +            c2 = str.charCodeAt(m_pos+1);
      +            if ((c2 & 0xfc00) === 0xdc00) {
      +                c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
      +                m_pos++;
      +            }
      +        }
      +        buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4;
      +    }
      +
      +    // allocate buffer
      +    if (support.uint8array) {
      +        buf = new Uint8Array(buf_len);
      +    } else {
      +        buf = new Array(buf_len);
      +    }
      +
      +    // convert
      +    for (i=0, m_pos = 0; i < buf_len; m_pos++) {
      +        c = str.charCodeAt(m_pos);
      +        if ((c & 0xfc00) === 0xd800 && (m_pos+1 < str_len)) {
      +            c2 = str.charCodeAt(m_pos+1);
      +            if ((c2 & 0xfc00) === 0xdc00) {
      +                c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
      +                m_pos++;
      +            }
      +        }
      +        if (c < 0x80) {
      +            /* one byte */
      +            buf[i++] = c;
      +        } else if (c < 0x800) {
      +            /* two bytes */
      +            buf[i++] = 0xC0 | (c >>> 6);
      +            buf[i++] = 0x80 | (c & 0x3f);
      +        } else if (c < 0x10000) {
      +            /* three bytes */
      +            buf[i++] = 0xE0 | (c >>> 12);
      +            buf[i++] = 0x80 | (c >>> 6 & 0x3f);
      +            buf[i++] = 0x80 | (c & 0x3f);
      +        } else {
      +            /* four bytes */
      +            buf[i++] = 0xf0 | (c >>> 18);
      +            buf[i++] = 0x80 | (c >>> 12 & 0x3f);
      +            buf[i++] = 0x80 | (c >>> 6 & 0x3f);
      +            buf[i++] = 0x80 | (c & 0x3f);
      +        }
      +    }
      +
      +    return buf;
      +};
      +
      +// Calculate max possible position in utf8 buffer,
      +// that will not break sequence. If that's not possible
      +// - (very small limits) return max size as is.
      +//
      +// buf[] - utf8 bytes array
      +// max   - length limit (mandatory);
      +var utf8border = function(buf, max) {
      +    var pos;
      +
      +    max = max || buf.length;
      +    if (max > buf.length) { max = buf.length; }
      +
      +    // go back from last position, until start of sequence found
      +    pos = max-1;
      +    while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; }
      +
      +    // Fuckup - very small and broken sequence,
      +    // return max, because we should return something anyway.
      +    if (pos < 0) { return max; }
      +
      +    // If we came to start of buffer - that means vuffer is too small,
      +    // return max too.
      +    if (pos === 0) { return max; }
      +
      +    return (pos + _utf8len[buf[pos]] > max) ? pos : max;
      +};
      +
      +// convert array to string
      +var buf2string = function (buf) {
      +    var str, i, out, c, c_len;
      +    var len = buf.length;
      +
      +    // Reserve max possible length (2 words per char)
      +    // NB: by unknown reasons, Array is significantly faster for
      +    //     String.fromCharCode.apply than Uint16Array.
      +    var utf16buf = new Array(len*2);
      +
      +    for (out=0, i=0; i<len;) {
      +        c = buf[i++];
      +        // quick process ascii
      +        if (c < 0x80) { utf16buf[out++] = c; continue; }
      +
      +        c_len = _utf8len[c];
      +        // skip 5 & 6 byte codes
      +        if (c_len > 4) { utf16buf[out++] = 0xfffd; i += c_len-1; continue; }
      +
      +        // apply mask on first byte
      +        c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07;
      +        // join the rest
      +        while (c_len > 1 && i < len) {
      +            c = (c << 6) | (buf[i++] & 0x3f);
      +            c_len--;
      +        }
      +
      +        // terminated by end of string?
      +        if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; }
      +
      +        if (c < 0x10000) {
      +            utf16buf[out++] = c;
      +        } else {
      +            c -= 0x10000;
      +            utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff);
      +            utf16buf[out++] = 0xdc00 | (c & 0x3ff);
      +        }
      +    }
      +
      +    // shrinkBuf(utf16buf, out)
      +    if (utf16buf.length !== out) {
      +        if(utf16buf.subarray) {
      +            utf16buf = utf16buf.subarray(0, out);
      +        } else {
      +            utf16buf.length = out;
      +        }
      +    }
      +
      +    // return String.fromCharCode.apply(null, utf16buf);
      +    return utils.applyFromCharCode(utf16buf);
      +};
      +
      +
      +// That's all for the pako functions.
      +
      +
      +/**
      + * Transform a javascript string into an array (typed if possible) of bytes,
      + * UTF-8 encoded.
      + * @param {String} str the string to encode
      + * @return {Array|Uint8Array|Buffer} the UTF-8 encoded string.
      + */
      +exports.utf8encode = function utf8encode(str) {
      +    if (support.nodebuffer) {
      +        return nodejsUtils.newBufferFrom(str, "utf-8");
      +    }
      +
      +    return string2buf(str);
      +};
      +
      +
      +/**
      + * Transform a bytes array (or a representation) representing an UTF-8 encoded
      + * string into a javascript string.
      + * @param {Array|Uint8Array|Buffer} buf the data de decode
      + * @return {String} the decoded string.
      + */
      +exports.utf8decode = function utf8decode(buf) {
      +    if (support.nodebuffer) {
      +        return utils.transformTo("nodebuffer", buf).toString("utf-8");
      +    }
      +
      +    buf = utils.transformTo(support.uint8array ? "uint8array" : "array", buf);
      +
      +    return buf2string(buf);
      +};
      +
      +/**
      + * A worker to decode utf8 encoded binary chunks into string chunks.
      + * @constructor
      + */
      +function Utf8DecodeWorker() {
      +    GenericWorker.call(this, "utf-8 decode");
      +    // the last bytes if a chunk didn't end with a complete codepoint.
      +    this.leftOver = null;
      +}
      +utils.inherits(Utf8DecodeWorker, GenericWorker);
      +
      +/**
      + * @see GenericWorker.processChunk
      + */
      +Utf8DecodeWorker.prototype.processChunk = function (chunk) {
      +
      +    var data = utils.transformTo(support.uint8array ? "uint8array" : "array", chunk.data);
      +
      +    // 1st step, re-use what's left of the previous chunk
      +    if (this.leftOver && this.leftOver.length) {
      +        if(support.uint8array) {
      +            var previousData = data;
      +            data = new Uint8Array(previousData.length + this.leftOver.length);
      +            data.set(this.leftOver, 0);
      +            data.set(previousData, this.leftOver.length);
      +        } else {
      +            data = this.leftOver.concat(data);
      +        }
      +        this.leftOver = null;
      +    }
      +
      +    var nextBoundary = utf8border(data);
      +    var usableData = data;
      +    if (nextBoundary !== data.length) {
      +        if (support.uint8array) {
      +            usableData = data.subarray(0, nextBoundary);
      +            this.leftOver = data.subarray(nextBoundary, data.length);
      +        } else {
      +            usableData = data.slice(0, nextBoundary);
      +            this.leftOver = data.slice(nextBoundary, data.length);
      +        }
      +    }
      +
      +    this.push({
      +        data : exports.utf8decode(usableData),
      +        meta : chunk.meta
      +    });
      +};
      +
      +/**
      + * @see GenericWorker.flush
      + */
      +Utf8DecodeWorker.prototype.flush = function () {
      +    if(this.leftOver && this.leftOver.length) {
      +        this.push({
      +            data : exports.utf8decode(this.leftOver),
      +            meta : {}
      +        });
      +        this.leftOver = null;
      +    }
      +};
      +exports.Utf8DecodeWorker = Utf8DecodeWorker;
      +
      +/**
      + * A worker to endcode string chunks into utf8 encoded binary chunks.
      + * @constructor
      + */
      +function Utf8EncodeWorker() {
      +    GenericWorker.call(this, "utf-8 encode");
      +}
      +utils.inherits(Utf8EncodeWorker, GenericWorker);
      +
      +/**
      + * @see GenericWorker.processChunk
      + */
      +Utf8EncodeWorker.prototype.processChunk = function (chunk) {
      +    this.push({
      +        data : exports.utf8encode(chunk.data),
      +        meta : chunk.meta
      +    });
      +};
      +exports.Utf8EncodeWorker = Utf8EncodeWorker;
      +
      +},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(require,module,exports){
      +'use strict';
      +
      +var support = require('./support');
      +var base64 = require('./base64');
      +var nodejsUtils = require('./nodejsUtils');
      +var setImmediate = require('set-immediate-shim');
      +var external = require("./external");
      +
      +
      +/**
      + * Convert a string that pass as a "binary string": it should represent a byte
      + * array but may have > 255 char codes. Be sure to take only the first byte
      + * and returns the byte array.
      + * @param {String} str the string to transform.
      + * @return {Array|Uint8Array} the string in a binary format.
      + */
      +function string2binary(str) {
      +    var result = null;
      +    if (support.uint8array) {
      +      result = new Uint8Array(str.length);
      +    } else {
      +      result = new Array(str.length);
      +    }
      +    return stringToArrayLike(str, result);
      +}
      +
      +/**
      + * Create a new blob with the given content and the given type.
      + * @param {String|ArrayBuffer} part the content to put in the blob. DO NOT use
      + * an Uint8Array because the stock browser of android 4 won't accept it (it
      + * will be silently converted to a string, "[object Uint8Array]").
      + *
      + * Use only ONE part to build the blob to avoid a memory leak in IE11 / Edge:
      + * when a large amount of Array is used to create the Blob, the amount of
      + * memory consumed is nearly 100 times the original data amount.
      + *
      + * @param {String} type the mime type of the blob.
      + * @return {Blob} the created blob.
      + */
      +exports.newBlob = function(part, type) {
      +    exports.checkSupport("blob");
      +
      +    try {
      +        // Blob constructor
      +        return new Blob([part], {
      +            type: type
      +        });
      +    }
      +    catch (e) {
      +
      +        try {
      +            // deprecated, browser only, old way
      +            var Builder = self.BlobBuilder || self.WebKitBlobBuilder || self.MozBlobBuilder || self.MSBlobBuilder;
      +            var builder = new Builder();
      +            builder.append(part);
      +            return builder.getBlob(type);
      +        }
      +        catch (e) {
      +
      +            // well, fuck ?!
      +            throw new Error("Bug : can't construct the Blob.");
      +        }
      +    }
      +
      +
      +};
      +/**
      + * The identity function.
      + * @param {Object} input the input.
      + * @return {Object} the same input.
      + */
      +function identity(input) {
      +    return input;
      +}
      +
      +/**
      + * Fill in an array with a string.
      + * @param {String} str the string to use.
      + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to fill in (will be mutated).
      + * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated array.
      + */
      +function stringToArrayLike(str, array) {
      +    for (var i = 0; i < str.length; ++i) {
      +        array[i] = str.charCodeAt(i) & 0xFF;
      +    }
      +    return array;
      +}
      +
      +/**
      + * An helper for the function arrayLikeToString.
      + * This contains static informations and functions that
      + * can be optimized by the browser JIT compiler.
      + */
      +var arrayToStringHelper = {
      +    /**
      +     * Transform an array of int into a string, chunk by chunk.
      +     * See the performances notes on arrayLikeToString.
      +     * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform.
      +     * @param {String} type the type of the array.
      +     * @param {Integer} chunk the chunk size.
      +     * @return {String} the resulting string.
      +     * @throws Error if the chunk is too big for the stack.
      +     */
      +    stringifyByChunk: function(array, type, chunk) {
      +        var result = [], k = 0, len = array.length;
      +        // shortcut
      +        if (len <= chunk) {
      +            return String.fromCharCode.apply(null, array);
      +        }
      +        while (k < len) {
      +            if (type === "array" || type === "nodebuffer") {
      +                result.push(String.fromCharCode.apply(null, array.slice(k, Math.min(k + chunk, len))));
      +            }
      +            else {
      +                result.push(String.fromCharCode.apply(null, array.subarray(k, Math.min(k + chunk, len))));
      +            }
      +            k += chunk;
      +        }
      +        return result.join("");
      +    },
      +    /**
      +     * Call String.fromCharCode on every item in the array.
      +     * This is the naive implementation, which generate A LOT of intermediate string.
      +     * This should be used when everything else fail.
      +     * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform.
      +     * @return {String} the result.
      +     */
      +    stringifyByChar: function(array){
      +        var resultStr = "";
      +        for(var i = 0; i < array.length; i++) {
      +            resultStr += String.fromCharCode(array[i]);
      +        }
      +        return resultStr;
      +    },
      +    applyCanBeUsed : {
      +        /**
      +         * true if the browser accepts to use String.fromCharCode on Uint8Array
      +         */
      +        uint8array : (function () {
      +            try {
      +                return support.uint8array && String.fromCharCode.apply(null, new Uint8Array(1)).length === 1;
      +            } catch (e) {
      +                return false;
      +            }
      +        })(),
      +        /**
      +         * true if the browser accepts to use String.fromCharCode on nodejs Buffer.
      +         */
      +        nodebuffer : (function () {
      +            try {
      +                return support.nodebuffer && String.fromCharCode.apply(null, nodejsUtils.allocBuffer(1)).length === 1;
      +            } catch (e) {
      +                return false;
      +            }
      +        })()
      +    }
      +};
      +
      +/**
      + * Transform an array-like object to a string.
      + * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform.
      + * @return {String} the result.
      + */
      +function arrayLikeToString(array) {
      +    // Performances notes :
      +    // --------------------
      +    // String.fromCharCode.apply(null, array) is the fastest, see
      +    // see http://jsperf.com/converting-a-uint8array-to-a-string/2
      +    // but the stack is limited (and we can get huge arrays !).
      +    //
      +    // result += String.fromCharCode(array[i]); generate too many strings !
      +    //
      +    // This code is inspired by http://jsperf.com/arraybuffer-to-string-apply-performance/2
      +    // TODO : we now have workers that split the work. Do we still need that ?
      +    var chunk = 65536,
      +        type = exports.getTypeOf(array),
      +        canUseApply = true;
      +    if (type === "uint8array") {
      +        canUseApply = arrayToStringHelper.applyCanBeUsed.uint8array;
      +    } else if (type === "nodebuffer") {
      +        canUseApply = arrayToStringHelper.applyCanBeUsed.nodebuffer;
      +    }
      +
      +    if (canUseApply) {
      +        while (chunk > 1) {
      +            try {
      +                return arrayToStringHelper.stringifyByChunk(array, type, chunk);
      +            } catch (e) {
      +                chunk = Math.floor(chunk / 2);
      +            }
      +        }
      +    }
      +
      +    // no apply or chunk error : slow and painful algorithm
      +    // default browser on android 4.*
      +    return arrayToStringHelper.stringifyByChar(array);
      +}
      +
      +exports.applyFromCharCode = arrayLikeToString;
      +
      +
      +/**
      + * Copy the data from an array-like to an other array-like.
      + * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayFrom the origin array.
      + * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayTo the destination array which will be mutated.
      + * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated destination array.
      + */
      +function arrayLikeToArrayLike(arrayFrom, arrayTo) {
      +    for (var i = 0; i < arrayFrom.length; i++) {
      +        arrayTo[i] = arrayFrom[i];
      +    }
      +    return arrayTo;
      +}
      +
      +// a matrix containing functions to transform everything into everything.
      +var transform = {};
      +
      +// string to ?
      +transform["string"] = {
      +    "string": identity,
      +    "array": function(input) {
      +        return stringToArrayLike(input, new Array(input.length));
      +    },
      +    "arraybuffer": function(input) {
      +        return transform["string"]["uint8array"](input).buffer;
      +    },
      +    "uint8array": function(input) {
      +        return stringToArrayLike(input, new Uint8Array(input.length));
      +    },
      +    "nodebuffer": function(input) {
      +        return stringToArrayLike(input, nodejsUtils.allocBuffer(input.length));
      +    }
      +};
      +
      +// array to ?
      +transform["array"] = {
      +    "string": arrayLikeToString,
      +    "array": identity,
      +    "arraybuffer": function(input) {
      +        return (new Uint8Array(input)).buffer;
      +    },
      +    "uint8array": function(input) {
      +        return new Uint8Array(input);
      +    },
      +    "nodebuffer": function(input) {
      +        return nodejsUtils.newBufferFrom(input);
      +    }
      +};
      +
      +// arraybuffer to ?
      +transform["arraybuffer"] = {
      +    "string": function(input) {
      +        return arrayLikeToString(new Uint8Array(input));
      +    },
      +    "array": function(input) {
      +        return arrayLikeToArrayLike(new Uint8Array(input), new Array(input.byteLength));
      +    },
      +    "arraybuffer": identity,
      +    "uint8array": function(input) {
      +        return new Uint8Array(input);
      +    },
      +    "nodebuffer": function(input) {
      +        return nodejsUtils.newBufferFrom(new Uint8Array(input));
      +    }
      +};
      +
      +// uint8array to ?
      +transform["uint8array"] = {
      +    "string": arrayLikeToString,
      +    "array": function(input) {
      +        return arrayLikeToArrayLike(input, new Array(input.length));
      +    },
      +    "arraybuffer": function(input) {
      +        return input.buffer;
      +    },
      +    "uint8array": identity,
      +    "nodebuffer": function(input) {
      +        return nodejsUtils.newBufferFrom(input);
      +    }
      +};
      +
      +// nodebuffer to ?
      +transform["nodebuffer"] = {
      +    "string": arrayLikeToString,
      +    "array": function(input) {
      +        return arrayLikeToArrayLike(input, new Array(input.length));
      +    },
      +    "arraybuffer": function(input) {
      +        return transform["nodebuffer"]["uint8array"](input).buffer;
      +    },
      +    "uint8array": function(input) {
      +        return arrayLikeToArrayLike(input, new Uint8Array(input.length));
      +    },
      +    "nodebuffer": identity
      +};
      +
      +/**
      + * Transform an input into any type.
      + * The supported output type are : string, array, uint8array, arraybuffer, nodebuffer.
      + * If no output type is specified, the unmodified input will be returned.
      + * @param {String} outputType the output type.
      + * @param {String|Array|ArrayBuffer|Uint8Array|Buffer} input the input to convert.
      + * @throws {Error} an Error if the browser doesn't support the requested output type.
      + */
      +exports.transformTo = function(outputType, input) {
      +    if (!input) {
      +        // undefined, null, etc
      +        // an empty string won't harm.
      +        input = "";
      +    }
      +    if (!outputType) {
      +        return input;
      +    }
      +    exports.checkSupport(outputType);
      +    var inputType = exports.getTypeOf(input);
      +    var result = transform[inputType][outputType](input);
      +    return result;
      +};
      +
      +/**
      + * Return the type of the input.
      + * The type will be in a format valid for JSZip.utils.transformTo : string, array, uint8array, arraybuffer.
      + * @param {Object} input the input to identify.
      + * @return {String} the (lowercase) type of the input.
      + */
      +exports.getTypeOf = function(input) {
      +    if (typeof input === "string") {
      +        return "string";
      +    }
      +    if (Object.prototype.toString.call(input) === "[object Array]") {
      +        return "array";
      +    }
      +    if (support.nodebuffer && nodejsUtils.isBuffer(input)) {
      +        return "nodebuffer";
      +    }
      +    if (support.uint8array && input instanceof Uint8Array) {
      +        return "uint8array";
      +    }
      +    if (support.arraybuffer && input instanceof ArrayBuffer) {
      +        return "arraybuffer";
      +    }
      +};
      +
      +/**
      + * Throw an exception if the type is not supported.
      + * @param {String} type the type to check.
      + * @throws {Error} an Error if the browser doesn't support the requested type.
      + */
      +exports.checkSupport = function(type) {
      +    var supported = support[type.toLowerCase()];
      +    if (!supported) {
      +        throw new Error(type + " is not supported by this platform");
      +    }
      +};
      +
      +exports.MAX_VALUE_16BITS = 65535;
      +exports.MAX_VALUE_32BITS = -1; // well, "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" is parsed as -1
      +
      +/**
      + * Prettify a string read as binary.
      + * @param {string} str the string to prettify.
      + * @return {string} a pretty string.
      + */
      +exports.pretty = function(str) {
      +    var res = '',
      +        code, i;
      +    for (i = 0; i < (str || "").length; i++) {
      +        code = str.charCodeAt(i);
      +        res += '\\x' + (code < 16 ? "0" : "") + code.toString(16).toUpperCase();
      +    }
      +    return res;
      +};
      +
      +/**
      + * Defer the call of a function.
      + * @param {Function} callback the function to call asynchronously.
      + * @param {Array} args the arguments to give to the callback.
      + */
      +exports.delay = function(callback, args, self) {
      +    setImmediate(function () {
      +        callback.apply(self || null, args || []);
      +    });
      +};
      +
      +/**
      + * Extends a prototype with an other, without calling a constructor with
      + * side effects. Inspired by nodejs' `utils.inherits`
      + * @param {Function} ctor the constructor to augment
      + * @param {Function} superCtor the parent constructor to use
      + */
      +exports.inherits = function (ctor, superCtor) {
      +    var Obj = function() {};
      +    Obj.prototype = superCtor.prototype;
      +    ctor.prototype = new Obj();
      +};
      +
      +/**
      + * Merge the objects passed as parameters into a new one.
      + * @private
      + * @param {...Object} var_args All objects to merge.
      + * @return {Object} a new object with the data of the others.
      + */
      +exports.extend = function() {
      +    var result = {}, i, attr;
      +    for (i = 0; i < arguments.length; i++) { // arguments is not enumerable in some browsers
      +        for (attr in arguments[i]) {
      +            if (arguments[i].hasOwnProperty(attr) && typeof result[attr] === "undefined") {
      +                result[attr] = arguments[i][attr];
      +            }
      +        }
      +    }
      +    return result;
      +};
      +
      +/**
      + * Transform arbitrary content into a Promise.
      + * @param {String} name a name for the content being processed.
      + * @param {Object} inputData the content to process.
      + * @param {Boolean} isBinary true if the content is not an unicode string
      + * @param {Boolean} isOptimizedBinaryString true if the string content only has one byte per character.
      + * @param {Boolean} isBase64 true if the string content is encoded with base64.
      + * @return {Promise} a promise in a format usable by JSZip.
      + */
      +exports.prepareContent = function(name, inputData, isBinary, isOptimizedBinaryString, isBase64) {
      +
      +    // if inputData is already a promise, this flatten it.
      +    var promise = external.Promise.resolve(inputData).then(function(data) {
      +        
      +        
      +        var isBlob = support.blob && (data instanceof Blob || ['[object File]', '[object Blob]'].indexOf(Object.prototype.toString.call(data)) !== -1);
      +
      +        if (isBlob && typeof FileReader !== "undefined") {
      +            return new external.Promise(function (resolve, reject) {
      +                var reader = new FileReader();
      +
      +                reader.onload = function(e) {
      +                    resolve(e.target.result);
      +                };
      +                reader.onerror = function(e) {
      +                    reject(e.target.error);
      +                };
      +                reader.readAsArrayBuffer(data);
      +            });
      +        } else {
      +            return data;
      +        }
      +    });
      +
      +    return promise.then(function(data) {
      +        var dataType = exports.getTypeOf(data);
      +
      +        if (!dataType) {
      +            return external.Promise.reject(
      +                new Error("Can't read the data of '" + name + "'. Is it " +
      +                          "in a supported JavaScript type (String, Blob, ArrayBuffer, etc) ?")
      +            );
      +        }
      +        // special case : it's way easier to work with Uint8Array than with ArrayBuffer
      +        if (dataType === "arraybuffer") {
      +            data = exports.transformTo("uint8array", data);
      +        } else if (dataType === "string") {
      +            if (isBase64) {
      +                data = base64.decode(data);
      +            }
      +            else if (isBinary) {
      +                // optimizedBinaryString === true means that the file has already been filtered with a 0xFF mask
      +                if (isOptimizedBinaryString !== true) {
      +                    // this is a string, not in a base64 format.
      +                    // Be sure that this is a correct "binary string"
      +                    data = string2binary(data);
      +                }
      +            }
      +        }
      +        return data;
      +    });
      +};
      +
      +},{"./base64":1,"./external":6,"./nodejsUtils":14,"./support":30,"set-immediate-shim":54}],33:[function(require,module,exports){
      +'use strict';
      +var readerFor = require('./reader/readerFor');
      +var utils = require('./utils');
      +var sig = require('./signature');
      +var ZipEntry = require('./zipEntry');
      +var utf8 = require('./utf8');
      +var support = require('./support');
      +//  class ZipEntries {{{
      +/**
      + * All the entries in the zip file.
      + * @constructor
      + * @param {Object} loadOptions Options for loading the stream.
      + */
      +function ZipEntries(loadOptions) {
      +    this.files = [];
      +    this.loadOptions = loadOptions;
      +}
      +ZipEntries.prototype = {
      +    /**
      +     * Check that the reader is on the specified signature.
      +     * @param {string} expectedSignature the expected signature.
      +     * @throws {Error} if it is an other signature.
      +     */
      +    checkSignature: function(expectedSignature) {
      +        if (!this.reader.readAndCheckSignature(expectedSignature)) {
      +            this.reader.index -= 4;
      +            var signature = this.reader.readString(4);
      +            throw new Error("Corrupted zip or bug: unexpected signature " + "(" + utils.pretty(signature) + ", expected " + utils.pretty(expectedSignature) + ")");
      +        }
      +    },
      +    /**
      +     * Check if the given signature is at the given index.
      +     * @param {number} askedIndex the index to check.
      +     * @param {string} expectedSignature the signature to expect.
      +     * @return {boolean} true if the signature is here, false otherwise.
      +     */
      +    isSignature: function(askedIndex, expectedSignature) {
      +        var currentIndex = this.reader.index;
      +        this.reader.setIndex(askedIndex);
      +        var signature = this.reader.readString(4);
      +        var result = signature === expectedSignature;
      +        this.reader.setIndex(currentIndex);
      +        return result;
      +    },
      +    /**
      +     * Read the end of the central directory.
      +     */
      +    readBlockEndOfCentral: function() {
      +        this.diskNumber = this.reader.readInt(2);
      +        this.diskWithCentralDirStart = this.reader.readInt(2);
      +        this.centralDirRecordsOnThisDisk = this.reader.readInt(2);
      +        this.centralDirRecords = this.reader.readInt(2);
      +        this.centralDirSize = this.reader.readInt(4);
      +        this.centralDirOffset = this.reader.readInt(4);
      +
      +        this.zipCommentLength = this.reader.readInt(2);
      +        // warning : the encoding depends of the system locale
      +        // On a linux machine with LANG=en_US.utf8, this field is utf8 encoded.
      +        // On a windows machine, this field is encoded with the localized windows code page.
      +        var zipComment = this.reader.readData(this.zipCommentLength);
      +        var decodeParamType = support.uint8array ? "uint8array" : "array";
      +        // To get consistent behavior with the generation part, we will assume that
      +        // this is utf8 encoded unless specified otherwise.
      +        var decodeContent = utils.transformTo(decodeParamType, zipComment);
      +        this.zipComment = this.loadOptions.decodeFileName(decodeContent);
      +    },
      +    /**
      +     * Read the end of the Zip 64 central directory.
      +     * Not merged with the method readEndOfCentral :
      +     * The end of central can coexist with its Zip64 brother,
      +     * I don't want to read the wrong number of bytes !
      +     */
      +    readBlockZip64EndOfCentral: function() {
      +        this.zip64EndOfCentralSize = this.reader.readInt(8);
      +        this.reader.skip(4);
      +        // this.versionMadeBy = this.reader.readString(2);
      +        // this.versionNeeded = this.reader.readInt(2);
      +        this.diskNumber = this.reader.readInt(4);
      +        this.diskWithCentralDirStart = this.reader.readInt(4);
      +        this.centralDirRecordsOnThisDisk = this.reader.readInt(8);
      +        this.centralDirRecords = this.reader.readInt(8);
      +        this.centralDirSize = this.reader.readInt(8);
      +        this.centralDirOffset = this.reader.readInt(8);
      +
      +        this.zip64ExtensibleData = {};
      +        var extraDataSize = this.zip64EndOfCentralSize - 44,
      +            index = 0,
      +            extraFieldId,
      +            extraFieldLength,
      +            extraFieldValue;
      +        while (index < extraDataSize) {
      +            extraFieldId = this.reader.readInt(2);
      +            extraFieldLength = this.reader.readInt(4);
      +            extraFieldValue = this.reader.readData(extraFieldLength);
      +            this.zip64ExtensibleData[extraFieldId] = {
      +                id: extraFieldId,
      +                length: extraFieldLength,
      +                value: extraFieldValue
      +            };
      +        }
      +    },
      +    /**
      +     * Read the end of the Zip 64 central directory locator.
      +     */
      +    readBlockZip64EndOfCentralLocator: function() {
      +        this.diskWithZip64CentralDirStart = this.reader.readInt(4);
      +        this.relativeOffsetEndOfZip64CentralDir = this.reader.readInt(8);
      +        this.disksCount = this.reader.readInt(4);
      +        if (this.disksCount > 1) {
      +            throw new Error("Multi-volumes zip are not supported");
      +        }
      +    },
      +    /**
      +     * Read the local files, based on the offset read in the central part.
      +     */
      +    readLocalFiles: function() {
      +        var i, file;
      +        for (i = 0; i < this.files.length; i++) {
      +            file = this.files[i];
      +            this.reader.setIndex(file.localHeaderOffset);
      +            this.checkSignature(sig.LOCAL_FILE_HEADER);
      +            file.readLocalPart(this.reader);
      +            file.handleUTF8();
      +            file.processAttributes();
      +        }
      +    },
      +    /**
      +     * Read the central directory.
      +     */
      +    readCentralDir: function() {
      +        var file;
      +
      +        this.reader.setIndex(this.centralDirOffset);
      +        while (this.reader.readAndCheckSignature(sig.CENTRAL_FILE_HEADER)) {
      +            file = new ZipEntry({
      +                zip64: this.zip64
      +            }, this.loadOptions);
      +            file.readCentralPart(this.reader);
      +            this.files.push(file);
      +        }
      +
      +        if (this.centralDirRecords !== this.files.length) {
      +            if (this.centralDirRecords !== 0 && this.files.length === 0) {
      +                // We expected some records but couldn't find ANY.
      +                // This is really suspicious, as if something went wrong.
      +                throw new Error("Corrupted zip or bug: expected " + this.centralDirRecords + " records in central dir, got " + this.files.length);
      +            } else {
      +                // We found some records but not all.
      +                // Something is wrong but we got something for the user: no error here.
      +                // console.warn("expected", this.centralDirRecords, "records in central dir, got", this.files.length);
      +            }
      +        }
      +    },
      +    /**
      +     * Read the end of central directory.
      +     */
      +    readEndOfCentral: function() {
      +        var offset = this.reader.lastIndexOfSignature(sig.CENTRAL_DIRECTORY_END);
      +        if (offset < 0) {
      +            // Check if the content is a truncated zip or complete garbage.
      +            // A "LOCAL_FILE_HEADER" is not required at the beginning (auto
      +            // extractible zip for example) but it can give a good hint.
      +            // If an ajax request was used without responseType, we will also
      +            // get unreadable data.
      +            var isGarbage = !this.isSignature(0, sig.LOCAL_FILE_HEADER);
      +
      +            if (isGarbage) {
      +                throw new Error("Can't find end of central directory : is this a zip file ? " +
      +                                "If it is, see https://stuk.github.io/jszip/documentation/howto/read_zip.html");
      +            } else {
      +                throw new Error("Corrupted zip: can't find end of central directory");
      +            }
      +
      +        }
      +        this.reader.setIndex(offset);
      +        var endOfCentralDirOffset = offset;
      +        this.checkSignature(sig.CENTRAL_DIRECTORY_END);
      +        this.readBlockEndOfCentral();
      +
      +
      +        /* extract from the zip spec :
      +            4)  If one of the fields in the end of central directory
      +                record is too small to hold required data, the field
      +                should be set to -1 (0xFFFF or 0xFFFFFFFF) and the
      +                ZIP64 format record should be created.
      +            5)  The end of central directory record and the
      +                Zip64 end of central directory locator record must
      +                reside on the same disk when splitting or spanning
      +                an archive.
      +         */
      +        if (this.diskNumber === utils.MAX_VALUE_16BITS || this.diskWithCentralDirStart === utils.MAX_VALUE_16BITS || this.centralDirRecordsOnThisDisk === utils.MAX_VALUE_16BITS || this.centralDirRecords === utils.MAX_VALUE_16BITS || this.centralDirSize === utils.MAX_VALUE_32BITS || this.centralDirOffset === utils.MAX_VALUE_32BITS) {
      +            this.zip64 = true;
      +
      +            /*
      +            Warning : the zip64 extension is supported, but ONLY if the 64bits integer read from
      +            the zip file can fit into a 32bits integer. This cannot be solved : JavaScript represents
      +            all numbers as 64-bit double precision IEEE 754 floating point numbers.
      +            So, we have 53bits for integers and bitwise operations treat everything as 32bits.
      +            see https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Operators/Bitwise_Operators
      +            and http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf section 8.5
      +            */
      +
      +            // should look for a zip64 EOCD locator
      +            offset = this.reader.lastIndexOfSignature(sig.ZIP64_CENTRAL_DIRECTORY_LOCATOR);
      +            if (offset < 0) {
      +                throw new Error("Corrupted zip: can't find the ZIP64 end of central directory locator");
      +            }
      +            this.reader.setIndex(offset);
      +            this.checkSignature(sig.ZIP64_CENTRAL_DIRECTORY_LOCATOR);
      +            this.readBlockZip64EndOfCentralLocator();
      +
      +            // now the zip64 EOCD record
      +            if (!this.isSignature(this.relativeOffsetEndOfZip64CentralDir, sig.ZIP64_CENTRAL_DIRECTORY_END)) {
      +                // console.warn("ZIP64 end of central directory not where expected.");
      +                this.relativeOffsetEndOfZip64CentralDir = this.reader.lastIndexOfSignature(sig.ZIP64_CENTRAL_DIRECTORY_END);
      +                if (this.relativeOffsetEndOfZip64CentralDir < 0) {
      +                    throw new Error("Corrupted zip: can't find the ZIP64 end of central directory");
      +                }
      +            }
      +            this.reader.setIndex(this.relativeOffsetEndOfZip64CentralDir);
      +            this.checkSignature(sig.ZIP64_CENTRAL_DIRECTORY_END);
      +            this.readBlockZip64EndOfCentral();
      +        }
      +
      +        var expectedEndOfCentralDirOffset = this.centralDirOffset + this.centralDirSize;
      +        if (this.zip64) {
      +            expectedEndOfCentralDirOffset += 20; // end of central dir 64 locator
      +            expectedEndOfCentralDirOffset += 12 /* should not include the leading 12 bytes */ + this.zip64EndOfCentralSize;
      +        }
      +
      +        var extraBytes = endOfCentralDirOffset - expectedEndOfCentralDirOffset;
      +
      +        if (extraBytes > 0) {
      +            // console.warn(extraBytes, "extra bytes at beginning or within zipfile");
      +            if (this.isSignature(endOfCentralDirOffset, sig.CENTRAL_FILE_HEADER)) {
      +                // The offsets seem wrong, but we have something at the specified offset.
      +                // So… we keep it.
      +            } else {
      +                // the offset is wrong, update the "zero" of the reader
      +                // this happens if data has been prepended (crx files for example)
      +                this.reader.zero = extraBytes;
      +            }
      +        } else if (extraBytes < 0) {
      +            throw new Error("Corrupted zip: missing " + Math.abs(extraBytes) + " bytes.");
      +        }
      +    },
      +    prepareReader: function(data) {
      +        this.reader = readerFor(data);
      +    },
      +    /**
      +     * Read a zip file and create ZipEntries.
      +     * @param {String|ArrayBuffer|Uint8Array|Buffer} data the binary string representing a zip file.
      +     */
      +    load: function(data) {
      +        this.prepareReader(data);
      +        this.readEndOfCentral();
      +        this.readCentralDir();
      +        this.readLocalFiles();
      +    }
      +};
      +// }}} end of ZipEntries
      +module.exports = ZipEntries;
      +
      +},{"./reader/readerFor":22,"./signature":23,"./support":30,"./utf8":31,"./utils":32,"./zipEntry":34}],34:[function(require,module,exports){
      +'use strict';
      +var readerFor = require('./reader/readerFor');
      +var utils = require('./utils');
      +var CompressedObject = require('./compressedObject');
      +var crc32fn = require('./crc32');
      +var utf8 = require('./utf8');
      +var compressions = require('./compressions');
      +var support = require('./support');
      +
      +var MADE_BY_DOS = 0x00;
      +var MADE_BY_UNIX = 0x03;
      +
      +/**
      + * Find a compression registered in JSZip.
      + * @param {string} compressionMethod the method magic to find.
      + * @return {Object|null} the JSZip compression object, null if none found.
      + */
      +var findCompression = function(compressionMethod) {
      +    for (var method in compressions) {
      +        if (!compressions.hasOwnProperty(method)) {
      +            continue;
      +        }
      +        if (compressions[method].magic === compressionMethod) {
      +            return compressions[method];
      +        }
      +    }
      +    return null;
      +};
      +
      +// class ZipEntry {{{
      +/**
      + * An entry in the zip file.
      + * @constructor
      + * @param {Object} options Options of the current file.
      + * @param {Object} loadOptions Options for loading the stream.
      + */
      +function ZipEntry(options, loadOptions) {
      +    this.options = options;
      +    this.loadOptions = loadOptions;
      +}
      +ZipEntry.prototype = {
      +    /**
      +     * say if the file is encrypted.
      +     * @return {boolean} true if the file is encrypted, false otherwise.
      +     */
      +    isEncrypted: function() {
      +        // bit 1 is set
      +        return (this.bitFlag & 0x0001) === 0x0001;
      +    },
      +    /**
      +     * say if the file has utf-8 filename/comment.
      +     * @return {boolean} true if the filename/comment is in utf-8, false otherwise.
      +     */
      +    useUTF8: function() {
      +        // bit 11 is set
      +        return (this.bitFlag & 0x0800) === 0x0800;
      +    },
      +    /**
      +     * Read the local part of a zip file and add the info in this object.
      +     * @param {DataReader} reader the reader to use.
      +     */
      +    readLocalPart: function(reader) {
      +        var compression, localExtraFieldsLength;
      +
      +        // we already know everything from the central dir !
      +        // If the central dir data are false, we are doomed.
      +        // On the bright side, the local part is scary  : zip64, data descriptors, both, etc.
      +        // The less data we get here, the more reliable this should be.
      +        // Let's skip the whole header and dash to the data !
      +        reader.skip(22);
      +        // in some zip created on windows, the filename stored in the central dir contains \ instead of /.
      +        // Strangely, the filename here is OK.
      +        // I would love to treat these zip files as corrupted (see http://www.info-zip.org/FAQ.html#backslashes
      +        // or APPNOTE#4.4.17.1, "All slashes MUST be forward slashes '/'") but there are a lot of bad zip generators...
      +        // Search "unzip mismatching "local" filename continuing with "central" filename version" on
      +        // the internet.
      +        //
      +        // I think I see the logic here : the central directory is used to display
      +        // content and the local directory is used to extract the files. Mixing / and \
      +        // may be used to display \ to windows users and use / when extracting the files.
      +        // Unfortunately, this lead also to some issues : http://seclists.org/fulldisclosure/2009/Sep/394
      +        this.fileNameLength = reader.readInt(2);
      +        localExtraFieldsLength = reader.readInt(2); // can't be sure this will be the same as the central dir
      +        // the fileName is stored as binary data, the handleUTF8 method will take care of the encoding.
      +        this.fileName = reader.readData(this.fileNameLength);
      +        reader.skip(localExtraFieldsLength);
      +
      +        if (this.compressedSize === -1 || this.uncompressedSize === -1) {
      +            throw new Error("Bug or corrupted zip : didn't get enough informations from the central directory " + "(compressedSize === -1 || uncompressedSize === -1)");
      +        }
      +
      +        compression = findCompression(this.compressionMethod);
      +        if (compression === null) { // no compression found
      +            throw new Error("Corrupted zip : compression " + utils.pretty(this.compressionMethod) + " unknown (inner file : " + utils.transformTo("string", this.fileName) + ")");
      +        }
      +        this.decompressed = new CompressedObject(this.compressedSize, this.uncompressedSize, this.crc32, compression, reader.readData(this.compressedSize));
      +    },
      +
      +    /**
      +     * Read the central part of a zip file and add the info in this object.
      +     * @param {DataReader} reader the reader to use.
      +     */
      +    readCentralPart: function(reader) {
      +        this.versionMadeBy = reader.readInt(2);
      +        reader.skip(2);
      +        // this.versionNeeded = reader.readInt(2);
      +        this.bitFlag = reader.readInt(2);
      +        this.compressionMethod = reader.readString(2);
      +        this.date = reader.readDate();
      +        this.crc32 = reader.readInt(4);
      +        this.compressedSize = reader.readInt(4);
      +        this.uncompressedSize = reader.readInt(4);
      +        var fileNameLength = reader.readInt(2);
      +        this.extraFieldsLength = reader.readInt(2);
      +        this.fileCommentLength = reader.readInt(2);
      +        this.diskNumberStart = reader.readInt(2);
      +        this.internalFileAttributes = reader.readInt(2);
      +        this.externalFileAttributes = reader.readInt(4);
      +        this.localHeaderOffset = reader.readInt(4);
      +
      +        if (this.isEncrypted()) {
      +            throw new Error("Encrypted zip are not supported");
      +        }
      +
      +        // will be read in the local part, see the comments there
      +        reader.skip(fileNameLength);
      +        this.readExtraFields(reader);
      +        this.parseZIP64ExtraField(reader);
      +        this.fileComment = reader.readData(this.fileCommentLength);
      +    },
      +
      +    /**
      +     * Parse the external file attributes and get the unix/dos permissions.
      +     */
      +    processAttributes: function () {
      +        this.unixPermissions = null;
      +        this.dosPermissions = null;
      +        var madeBy = this.versionMadeBy >> 8;
      +
      +        // Check if we have the DOS directory flag set.
      +        // We look for it in the DOS and UNIX permissions
      +        // but some unknown platform could set it as a compatibility flag.
      +        this.dir = this.externalFileAttributes & 0x0010 ? true : false;
      +
      +        if(madeBy === MADE_BY_DOS) {
      +            // first 6 bits (0 to 5)
      +            this.dosPermissions = this.externalFileAttributes & 0x3F;
      +        }
      +
      +        if(madeBy === MADE_BY_UNIX) {
      +            this.unixPermissions = (this.externalFileAttributes >> 16) & 0xFFFF;
      +            // the octal permissions are in (this.unixPermissions & 0x01FF).toString(8);
      +        }
      +
      +        // fail safe : if the name ends with a / it probably means a folder
      +        if (!this.dir && this.fileNameStr.slice(-1) === '/') {
      +            this.dir = true;
      +        }
      +    },
      +
      +    /**
      +     * Parse the ZIP64 extra field and merge the info in the current ZipEntry.
      +     * @param {DataReader} reader the reader to use.
      +     */
      +    parseZIP64ExtraField: function(reader) {
      +
      +        if (!this.extraFields[0x0001]) {
      +            return;
      +        }
      +
      +        // should be something, preparing the extra reader
      +        var extraReader = readerFor(this.extraFields[0x0001].value);
      +
      +        // I really hope that these 64bits integer can fit in 32 bits integer, because js
      +        // won't let us have more.
      +        if (this.uncompressedSize === utils.MAX_VALUE_32BITS) {
      +            this.uncompressedSize = extraReader.readInt(8);
      +        }
      +        if (this.compressedSize === utils.MAX_VALUE_32BITS) {
      +            this.compressedSize = extraReader.readInt(8);
      +        }
      +        if (this.localHeaderOffset === utils.MAX_VALUE_32BITS) {
      +            this.localHeaderOffset = extraReader.readInt(8);
      +        }
      +        if (this.diskNumberStart === utils.MAX_VALUE_32BITS) {
      +            this.diskNumberStart = extraReader.readInt(4);
      +        }
      +    },
      +    /**
      +     * Read the central part of a zip file and add the info in this object.
      +     * @param {DataReader} reader the reader to use.
      +     */
      +    readExtraFields: function(reader) {
      +        var end = reader.index + this.extraFieldsLength,
      +            extraFieldId,
      +            extraFieldLength,
      +            extraFieldValue;
      +
      +        if (!this.extraFields) {
      +            this.extraFields = {};
      +        }
      +
      +        while (reader.index < end) {
      +            extraFieldId = reader.readInt(2);
      +            extraFieldLength = reader.readInt(2);
      +            extraFieldValue = reader.readData(extraFieldLength);
      +
      +            this.extraFields[extraFieldId] = {
      +                id: extraFieldId,
      +                length: extraFieldLength,
      +                value: extraFieldValue
      +            };
      +        }
      +    },
      +    /**
      +     * Apply an UTF8 transformation if needed.
      +     */
      +    handleUTF8: function() {
      +        var decodeParamType = support.uint8array ? "uint8array" : "array";
      +        if (this.useUTF8()) {
      +            this.fileNameStr = utf8.utf8decode(this.fileName);
      +            this.fileCommentStr = utf8.utf8decode(this.fileComment);
      +        } else {
      +            var upath = this.findExtraFieldUnicodePath();
      +            if (upath !== null) {
      +                this.fileNameStr = upath;
      +            } else {
      +                // ASCII text or unsupported code page
      +                var fileNameByteArray =  utils.transformTo(decodeParamType, this.fileName);
      +                this.fileNameStr = this.loadOptions.decodeFileName(fileNameByteArray);
      +            }
      +
      +            var ucomment = this.findExtraFieldUnicodeComment();
      +            if (ucomment !== null) {
      +                this.fileCommentStr = ucomment;
      +            } else {
      +                // ASCII text or unsupported code page
      +                var commentByteArray =  utils.transformTo(decodeParamType, this.fileComment);
      +                this.fileCommentStr = this.loadOptions.decodeFileName(commentByteArray);
      +            }
      +        }
      +    },
      +
      +    /**
      +     * Find the unicode path declared in the extra field, if any.
      +     * @return {String} the unicode path, null otherwise.
      +     */
      +    findExtraFieldUnicodePath: function() {
      +        var upathField = this.extraFields[0x7075];
      +        if (upathField) {
      +            var extraReader = readerFor(upathField.value);
      +
      +            // wrong version
      +            if (extraReader.readInt(1) !== 1) {
      +                return null;
      +            }
      +
      +            // the crc of the filename changed, this field is out of date.
      +            if (crc32fn(this.fileName) !== extraReader.readInt(4)) {
      +                return null;
      +            }
      +
      +            return utf8.utf8decode(extraReader.readData(upathField.length - 5));
      +        }
      +        return null;
      +    },
      +
      +    /**
      +     * Find the unicode comment declared in the extra field, if any.
      +     * @return {String} the unicode comment, null otherwise.
      +     */
      +    findExtraFieldUnicodeComment: function() {
      +        var ucommentField = this.extraFields[0x6375];
      +        if (ucommentField) {
      +            var extraReader = readerFor(ucommentField.value);
      +
      +            // wrong version
      +            if (extraReader.readInt(1) !== 1) {
      +                return null;
      +            }
      +
      +            // the crc of the comment changed, this field is out of date.
      +            if (crc32fn(this.fileComment) !== extraReader.readInt(4)) {
      +                return null;
      +            }
      +
      +            return utf8.utf8decode(extraReader.readData(ucommentField.length - 5));
      +        }
      +        return null;
      +    }
      +};
      +module.exports = ZipEntry;
      +
      +},{"./compressedObject":2,"./compressions":3,"./crc32":4,"./reader/readerFor":22,"./support":30,"./utf8":31,"./utils":32}],35:[function(require,module,exports){
      +'use strict';
      +
      +var StreamHelper = require('./stream/StreamHelper');
      +var DataWorker = require('./stream/DataWorker');
      +var utf8 = require('./utf8');
      +var CompressedObject = require('./compressedObject');
      +var GenericWorker = require('./stream/GenericWorker');
      +
      +/**
      + * A simple object representing a file in the zip file.
      + * @constructor
      + * @param {string} name the name of the file
      + * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data
      + * @param {Object} options the options of the file
      + */
      +var ZipObject = function(name, data, options) {
      +    this.name = name;
      +    this.dir = options.dir;
      +    this.date = options.date;
      +    this.comment = options.comment;
      +    this.unixPermissions = options.unixPermissions;
      +    this.dosPermissions = options.dosPermissions;
      +
      +    this._data = data;
      +    this._dataBinary = options.binary;
      +    // keep only the compression
      +    this.options = {
      +        compression : options.compression,
      +        compressionOptions : options.compressionOptions
      +    };
      +};
      +
      +ZipObject.prototype = {
      +    /**
      +     * Create an internal stream for the content of this object.
      +     * @param {String} type the type of each chunk.
      +     * @return StreamHelper the stream.
      +     */
      +    internalStream: function (type) {
      +        var result = null, outputType = "string";
      +        try {
      +            if (!type) {
      +                throw new Error("No output type specified.");
      +            }
      +            outputType = type.toLowerCase();
      +            var askUnicodeString = outputType === "string" || outputType === "text";
      +            if (outputType === "binarystring" || outputType === "text") {
      +                outputType = "string";
      +            }
      +            result = this._decompressWorker();
      +
      +            var isUnicodeString = !this._dataBinary;
      +
      +            if (isUnicodeString && !askUnicodeString) {
      +                result = result.pipe(new utf8.Utf8EncodeWorker());
      +            }
      +            if (!isUnicodeString && askUnicodeString) {
      +                result = result.pipe(new utf8.Utf8DecodeWorker());
      +            }
      +        } catch (e) {
      +            result = new GenericWorker("error");
      +            result.error(e);
      +        }
      +
      +        return new StreamHelper(result, outputType, "");
      +    },
      +
      +    /**
      +     * Prepare the content in the asked type.
      +     * @param {String} type the type of the result.
      +     * @param {Function} onUpdate a function to call on each internal update.
      +     * @return Promise the promise of the result.
      +     */
      +    async: function (type, onUpdate) {
      +        return this.internalStream(type).accumulate(onUpdate);
      +    },
      +
      +    /**
      +     * Prepare the content as a nodejs stream.
      +     * @param {String} type the type of each chunk.
      +     * @param {Function} onUpdate a function to call on each internal update.
      +     * @return Stream the stream.
      +     */
      +    nodeStream: function (type, onUpdate) {
      +        return this.internalStream(type || "nodebuffer").toNodejsStream(onUpdate);
      +    },
      +
      +    /**
      +     * Return a worker for the compressed content.
      +     * @private
      +     * @param {Object} compression the compression object to use.
      +     * @param {Object} compressionOptions the options to use when compressing.
      +     * @return Worker the worker.
      +     */
      +    _compressWorker: function (compression, compressionOptions) {
      +        if (
      +            this._data instanceof CompressedObject &&
      +            this._data.compression.magic === compression.magic
      +        ) {
      +            return this._data.getCompressedWorker();
      +        } else {
      +            var result = this._decompressWorker();
      +            if(!this._dataBinary) {
      +                result = result.pipe(new utf8.Utf8EncodeWorker());
      +            }
      +            return CompressedObject.createWorkerFrom(result, compression, compressionOptions);
      +        }
      +    },
      +    /**
      +     * Return a worker for the decompressed content.
      +     * @private
      +     * @return Worker the worker.
      +     */
      +    _decompressWorker : function () {
      +        if (this._data instanceof CompressedObject) {
      +            return this._data.getContentWorker();
      +        } else if (this._data instanceof GenericWorker) {
      +            return this._data;
      +        } else {
      +            return new DataWorker(this._data);
      +        }
      +    }
      +};
      +
      +var removedMethods = ["asText", "asBinary", "asNodeBuffer", "asUint8Array", "asArrayBuffer"];
      +var removedFn = function () {
      +    throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.");
      +};
      +
      +for(var i = 0; i < removedMethods.length; i++) {
      +    ZipObject.prototype[removedMethods[i]] = removedFn;
      +}
      +module.exports = ZipObject;
      +
      +},{"./compressedObject":2,"./stream/DataWorker":27,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31}],36:[function(require,module,exports){
      +(function (global){
      +'use strict';
      +var Mutation = global.MutationObserver || global.WebKitMutationObserver;
      +
      +var scheduleDrain;
      +
      +{
      +  if (Mutation) {
      +    var called = 0;
      +    var observer = new Mutation(nextTick);
      +    var element = global.document.createTextNode('');
      +    observer.observe(element, {
      +      characterData: true
      +    });
      +    scheduleDrain = function () {
      +      element.data = (called = ++called % 2);
      +    };
      +  } else if (!global.setImmediate && typeof global.MessageChannel !== 'undefined') {
      +    var channel = new global.MessageChannel();
      +    channel.port1.onmessage = nextTick;
      +    scheduleDrain = function () {
      +      channel.port2.postMessage(0);
      +    };
      +  } else if ('document' in global && 'onreadystatechange' in global.document.createElement('script')) {
      +    scheduleDrain = function () {
      +
      +      // Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted
      +      // into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.
      +      var scriptEl = global.document.createElement('script');
      +      scriptEl.onreadystatechange = function () {
      +        nextTick();
      +
      +        scriptEl.onreadystatechange = null;
      +        scriptEl.parentNode.removeChild(scriptEl);
      +        scriptEl = null;
      +      };
      +      global.document.documentElement.appendChild(scriptEl);
      +    };
      +  } else {
      +    scheduleDrain = function () {
      +      setTimeout(nextTick, 0);
      +    };
      +  }
      +}
      +
      +var draining;
      +var queue = [];
      +//named nextTick for less confusing stack traces
      +function nextTick() {
      +  draining = true;
      +  var i, oldQueue;
      +  var len = queue.length;
      +  while (len) {
      +    oldQueue = queue;
      +    queue = [];
      +    i = -1;
      +    while (++i < len) {
      +      oldQueue[i]();
      +    }
      +    len = queue.length;
      +  }
      +  draining = false;
      +}
      +
      +module.exports = immediate;
      +function immediate(task) {
      +  if (queue.push(task) === 1 && !draining) {
      +    scheduleDrain();
      +  }
      +}
      +
      +}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
      +},{}],37:[function(require,module,exports){
      +'use strict';
      +var immediate = require('immediate');
      +
      +/* istanbul ignore next */
      +function INTERNAL() {}
      +
      +var handlers = {};
      +
      +var REJECTED = ['REJECTED'];
      +var FULFILLED = ['FULFILLED'];
      +var PENDING = ['PENDING'];
      +
      +module.exports = Promise;
      +
      +function Promise(resolver) {
      +  if (typeof resolver !== 'function') {
      +    throw new TypeError('resolver must be a function');
      +  }
      +  this.state = PENDING;
      +  this.queue = [];
      +  this.outcome = void 0;
      +  if (resolver !== INTERNAL) {
      +    safelyResolveThenable(this, resolver);
      +  }
      +}
      +
      +Promise.prototype["finally"] = function (callback) {
      +  if (typeof callback !== 'function') {
      +    return this;
      +  }
      +  var p = this.constructor;
      +  return this.then(resolve, reject);
      +
      +  function resolve(value) {
      +    function yes () {
      +      return value;
      +    }
      +    return p.resolve(callback()).then(yes);
      +  }
      +  function reject(reason) {
      +    function no () {
      +      throw reason;
      +    }
      +    return p.resolve(callback()).then(no);
      +  }
      +};
      +Promise.prototype["catch"] = function (onRejected) {
      +  return this.then(null, onRejected);
      +};
      +Promise.prototype.then = function (onFulfilled, onRejected) {
      +  if (typeof onFulfilled !== 'function' && this.state === FULFILLED ||
      +    typeof onRejected !== 'function' && this.state === REJECTED) {
      +    return this;
      +  }
      +  var promise = new this.constructor(INTERNAL);
      +  if (this.state !== PENDING) {
      +    var resolver = this.state === FULFILLED ? onFulfilled : onRejected;
      +    unwrap(promise, resolver, this.outcome);
      +  } else {
      +    this.queue.push(new QueueItem(promise, onFulfilled, onRejected));
      +  }
      +
      +  return promise;
      +};
      +function QueueItem(promise, onFulfilled, onRejected) {
      +  this.promise = promise;
      +  if (typeof onFulfilled === 'function') {
      +    this.onFulfilled = onFulfilled;
      +    this.callFulfilled = this.otherCallFulfilled;
      +  }
      +  if (typeof onRejected === 'function') {
      +    this.onRejected = onRejected;
      +    this.callRejected = this.otherCallRejected;
      +  }
      +}
      +QueueItem.prototype.callFulfilled = function (value) {
      +  handlers.resolve(this.promise, value);
      +};
      +QueueItem.prototype.otherCallFulfilled = function (value) {
      +  unwrap(this.promise, this.onFulfilled, value);
      +};
      +QueueItem.prototype.callRejected = function (value) {
      +  handlers.reject(this.promise, value);
      +};
      +QueueItem.prototype.otherCallRejected = function (value) {
      +  unwrap(this.promise, this.onRejected, value);
      +};
      +
      +function unwrap(promise, func, value) {
      +  immediate(function () {
      +    var returnValue;
      +    try {
      +      returnValue = func(value);
      +    } catch (e) {
      +      return handlers.reject(promise, e);
      +    }
      +    if (returnValue === promise) {
      +      handlers.reject(promise, new TypeError('Cannot resolve promise with itself'));
      +    } else {
      +      handlers.resolve(promise, returnValue);
      +    }
      +  });
      +}
      +
      +handlers.resolve = function (self, value) {
      +  var result = tryCatch(getThen, value);
      +  if (result.status === 'error') {
      +    return handlers.reject(self, result.value);
      +  }
      +  var thenable = result.value;
      +
      +  if (thenable) {
      +    safelyResolveThenable(self, thenable);
      +  } else {
      +    self.state = FULFILLED;
      +    self.outcome = value;
      +    var i = -1;
      +    var len = self.queue.length;
      +    while (++i < len) {
      +      self.queue[i].callFulfilled(value);
      +    }
      +  }
      +  return self;
      +};
      +handlers.reject = function (self, error) {
      +  self.state = REJECTED;
      +  self.outcome = error;
      +  var i = -1;
      +  var len = self.queue.length;
      +  while (++i < len) {
      +    self.queue[i].callRejected(error);
      +  }
      +  return self;
      +};
      +
      +function getThen(obj) {
      +  // Make sure we only access the accessor once as required by the spec
      +  var then = obj && obj.then;
      +  if (obj && (typeof obj === 'object' || typeof obj === 'function') && typeof then === 'function') {
      +    return function appyThen() {
      +      then.apply(obj, arguments);
      +    };
      +  }
      +}
      +
      +function safelyResolveThenable(self, thenable) {
      +  // Either fulfill, reject or reject with error
      +  var called = false;
      +  function onError(value) {
      +    if (called) {
      +      return;
      +    }
      +    called = true;
      +    handlers.reject(self, value);
      +  }
      +
      +  function onSuccess(value) {
      +    if (called) {
      +      return;
      +    }
      +    called = true;
      +    handlers.resolve(self, value);
      +  }
      +
      +  function tryToUnwrap() {
      +    thenable(onSuccess, onError);
      +  }
      +
      +  var result = tryCatch(tryToUnwrap);
      +  if (result.status === 'error') {
      +    onError(result.value);
      +  }
      +}
      +
      +function tryCatch(func, value) {
      +  var out = {};
      +  try {
      +    out.value = func(value);
      +    out.status = 'success';
      +  } catch (e) {
      +    out.status = 'error';
      +    out.value = e;
      +  }
      +  return out;
      +}
      +
      +Promise.resolve = resolve;
      +function resolve(value) {
      +  if (value instanceof this) {
      +    return value;
      +  }
      +  return handlers.resolve(new this(INTERNAL), value);
      +}
      +
      +Promise.reject = reject;
      +function reject(reason) {
      +  var promise = new this(INTERNAL);
      +  return handlers.reject(promise, reason);
      +}
      +
      +Promise.all = all;
      +function all(iterable) {
      +  var self = this;
      +  if (Object.prototype.toString.call(iterable) !== '[object Array]') {
      +    return this.reject(new TypeError('must be an array'));
      +  }
      +
      +  var len = iterable.length;
      +  var called = false;
      +  if (!len) {
      +    return this.resolve([]);
      +  }
      +
      +  var values = new Array(len);
      +  var resolved = 0;
      +  var i = -1;
      +  var promise = new this(INTERNAL);
      +
      +  while (++i < len) {
      +    allResolver(iterable[i], i);
      +  }
      +  return promise;
      +  function allResolver(value, i) {
      +    self.resolve(value).then(resolveFromAll, function (error) {
      +      if (!called) {
      +        called = true;
      +        handlers.reject(promise, error);
      +      }
      +    });
      +    function resolveFromAll(outValue) {
      +      values[i] = outValue;
      +      if (++resolved === len && !called) {
      +        called = true;
      +        handlers.resolve(promise, values);
      +      }
      +    }
      +  }
      +}
      +
      +Promise.race = race;
      +function race(iterable) {
      +  var self = this;
      +  if (Object.prototype.toString.call(iterable) !== '[object Array]') {
      +    return this.reject(new TypeError('must be an array'));
      +  }
      +
      +  var len = iterable.length;
      +  var called = false;
      +  if (!len) {
      +    return this.resolve([]);
      +  }
      +
      +  var i = -1;
      +  var promise = new this(INTERNAL);
      +
      +  while (++i < len) {
      +    resolver(iterable[i]);
      +  }
      +  return promise;
      +  function resolver(value) {
      +    self.resolve(value).then(function (response) {
      +      if (!called) {
      +        called = true;
      +        handlers.resolve(promise, response);
      +      }
      +    }, function (error) {
      +      if (!called) {
      +        called = true;
      +        handlers.reject(promise, error);
      +      }
      +    });
      +  }
      +}
      +
      +},{"immediate":36}],38:[function(require,module,exports){
      +// Top level file is just a mixin of submodules & constants
      +'use strict';
      +
      +var assign    = require('./lib/utils/common').assign;
      +
      +var deflate   = require('./lib/deflate');
      +var inflate   = require('./lib/inflate');
      +var constants = require('./lib/zlib/constants');
      +
      +var pako = {};
      +
      +assign(pako, deflate, inflate, constants);
      +
      +module.exports = pako;
      +
      +},{"./lib/deflate":39,"./lib/inflate":40,"./lib/utils/common":41,"./lib/zlib/constants":44}],39:[function(require,module,exports){
      +'use strict';
      +
      +
      +var zlib_deflate = require('./zlib/deflate');
      +var utils        = require('./utils/common');
      +var strings      = require('./utils/strings');
      +var msg          = require('./zlib/messages');
      +var ZStream      = require('./zlib/zstream');
      +
      +var toString = Object.prototype.toString;
      +
      +/* Public constants ==========================================================*/
      +/* ===========================================================================*/
      +
      +var Z_NO_FLUSH      = 0;
      +var Z_FINISH        = 4;
      +
      +var Z_OK            = 0;
      +var Z_STREAM_END    = 1;
      +var Z_SYNC_FLUSH    = 2;
      +
      +var Z_DEFAULT_COMPRESSION = -1;
      +
      +var Z_DEFAULT_STRATEGY    = 0;
      +
      +var Z_DEFLATED  = 8;
      +
      +/* ===========================================================================*/
      +
      +
      +/**
      + * class Deflate
      + *
      + * Generic JS-style wrapper for zlib calls. If you don't need
      + * streaming behaviour - use more simple functions: [[deflate]],
      + * [[deflateRaw]] and [[gzip]].
      + **/
      +
      +/* internal
      + * Deflate.chunks -> Array
      + *
      + * Chunks of output data, if [[Deflate#onData]] not overriden.
      + **/
      +
      +/**
      + * Deflate.result -> Uint8Array|Array
      + *
      + * Compressed result, generated by default [[Deflate#onData]]
      + * and [[Deflate#onEnd]] handlers. Filled after you push last chunk
      + * (call [[Deflate#push]] with `Z_FINISH` / `true` param)  or if you
      + * push a chunk with explicit flush (call [[Deflate#push]] with
      + * `Z_SYNC_FLUSH` param).
      + **/
      +
      +/**
      + * Deflate.err -> Number
      + *
      + * Error code after deflate finished. 0 (Z_OK) on success.
      + * You will not need it in real life, because deflate errors
      + * are possible only on wrong options or bad `onData` / `onEnd`
      + * custom handlers.
      + **/
      +
      +/**
      + * Deflate.msg -> String
      + *
      + * Error message, if [[Deflate.err]] != 0
      + **/
      +
      +
      +/**
      + * new Deflate(options)
      + * - options (Object): zlib deflate options.
      + *
      + * Creates new deflator instance with specified params. Throws exception
      + * on bad params. Supported options:
      + *
      + * - `level`
      + * - `windowBits`
      + * - `memLevel`
      + * - `strategy`
      + * - `dictionary`
      + *
      + * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)
      + * for more information on these.
      + *
      + * Additional options, for internal needs:
      + *
      + * - `chunkSize` - size of generated data chunks (16K by default)
      + * - `raw` (Boolean) - do raw deflate
      + * - `gzip` (Boolean) - create gzip wrapper
      + * - `to` (String) - if equal to 'string', then result will be "binary string"
      + *    (each char code [0..255])
      + * - `header` (Object) - custom header for gzip
      + *   - `text` (Boolean) - true if compressed data believed to be text
      + *   - `time` (Number) - modification time, unix timestamp
      + *   - `os` (Number) - operation system code
      + *   - `extra` (Array) - array of bytes with extra data (max 65536)
      + *   - `name` (String) - file name (binary string)
      + *   - `comment` (String) - comment (binary string)
      + *   - `hcrc` (Boolean) - true if header crc should be added
      + *
      + * ##### Example:
      + *
      + * ```javascript
      + * var pako = require('pako')
      + *   , chunk1 = Uint8Array([1,2,3,4,5,6,7,8,9])
      + *   , chunk2 = Uint8Array([10,11,12,13,14,15,16,17,18,19]);
      + *
      + * var deflate = new pako.Deflate({ level: 3});
      + *
      + * deflate.push(chunk1, false);
      + * deflate.push(chunk2, true);  // true -> last chunk
      + *
      + * if (deflate.err) { throw new Error(deflate.err); }
      + *
      + * console.log(deflate.result);
      + * ```
      + **/
      +function Deflate(options) {
      +  if (!(this instanceof Deflate)) return new Deflate(options);
      +
      +  this.options = utils.assign({
      +    level: Z_DEFAULT_COMPRESSION,
      +    method: Z_DEFLATED,
      +    chunkSize: 16384,
      +    windowBits: 15,
      +    memLevel: 8,
      +    strategy: Z_DEFAULT_STRATEGY,
      +    to: ''
      +  }, options || {});
      +
      +  var opt = this.options;
      +
      +  if (opt.raw && (opt.windowBits > 0)) {
      +    opt.windowBits = -opt.windowBits;
      +  }
      +
      +  else if (opt.gzip && (opt.windowBits > 0) && (opt.windowBits < 16)) {
      +    opt.windowBits += 16;
      +  }
      +
      +  this.err    = 0;      // error code, if happens (0 = Z_OK)
      +  this.msg    = '';     // error message
      +  this.ended  = false;  // used to avoid multiple onEnd() calls
      +  this.chunks = [];     // chunks of compressed data
      +
      +  this.strm = new ZStream();
      +  this.strm.avail_out = 0;
      +
      +  var status = zlib_deflate.deflateInit2(
      +    this.strm,
      +    opt.level,
      +    opt.method,
      +    opt.windowBits,
      +    opt.memLevel,
      +    opt.strategy
      +  );
      +
      +  if (status !== Z_OK) {
      +    throw new Error(msg[status]);
      +  }
      +
      +  if (opt.header) {
      +    zlib_deflate.deflateSetHeader(this.strm, opt.header);
      +  }
      +
      +  if (opt.dictionary) {
      +    var dict;
      +    // Convert data if needed
      +    if (typeof opt.dictionary === 'string') {
      +      // If we need to compress text, change encoding to utf8.
      +      dict = strings.string2buf(opt.dictionary);
      +    } else if (toString.call(opt.dictionary) === '[object ArrayBuffer]') {
      +      dict = new Uint8Array(opt.dictionary);
      +    } else {
      +      dict = opt.dictionary;
      +    }
      +
      +    status = zlib_deflate.deflateSetDictionary(this.strm, dict);
      +
      +    if (status !== Z_OK) {
      +      throw new Error(msg[status]);
      +    }
      +
      +    this._dict_set = true;
      +  }
      +}
      +
      +/**
      + * Deflate#push(data[, mode]) -> Boolean
      + * - data (Uint8Array|Array|ArrayBuffer|String): input data. Strings will be
      + *   converted to utf8 byte sequence.
      + * - mode (Number|Boolean): 0..6 for corresponding Z_NO_FLUSH..Z_TREE modes.
      + *   See constants. Skipped or `false` means Z_NO_FLUSH, `true` meansh Z_FINISH.
      + *
      + * Sends input data to deflate pipe, generating [[Deflate#onData]] calls with
      + * new compressed chunks. Returns `true` on success. The last data block must have
      + * mode Z_FINISH (or `true`). That will flush internal pending buffers and call
      + * [[Deflate#onEnd]]. For interim explicit flushes (without ending the stream) you
      + * can use mode Z_SYNC_FLUSH, keeping the compression context.
      + *
      + * On fail call [[Deflate#onEnd]] with error code and return false.
      + *
      + * We strongly recommend to use `Uint8Array` on input for best speed (output
      + * array format is detected automatically). Also, don't skip last param and always
      + * use the same type in your code (boolean or number). That will improve JS speed.
      + *
      + * For regular `Array`-s make sure all elements are [0..255].
      + *
      + * ##### Example
      + *
      + * ```javascript
      + * push(chunk, false); // push one of data chunks
      + * ...
      + * push(chunk, true);  // push last chunk
      + * ```
      + **/
      +Deflate.prototype.push = function (data, mode) {
      +  var strm = this.strm;
      +  var chunkSize = this.options.chunkSize;
      +  var status, _mode;
      +
      +  if (this.ended) { return false; }
      +
      +  _mode = (mode === ~~mode) ? mode : ((mode === true) ? Z_FINISH : Z_NO_FLUSH);
      +
      +  // Convert data if needed
      +  if (typeof data === 'string') {
      +    // If we need to compress text, change encoding to utf8.
      +    strm.input = strings.string2buf(data);
      +  } else if (toString.call(data) === '[object ArrayBuffer]') {
      +    strm.input = new Uint8Array(data);
      +  } else {
      +    strm.input = data;
      +  }
      +
      +  strm.next_in = 0;
      +  strm.avail_in = strm.input.length;
      +
      +  do {
      +    if (strm.avail_out === 0) {
      +      strm.output = new utils.Buf8(chunkSize);
      +      strm.next_out = 0;
      +      strm.avail_out = chunkSize;
      +    }
      +    status = zlib_deflate.deflate(strm, _mode);    /* no bad return value */
      +
      +    if (status !== Z_STREAM_END && status !== Z_OK) {
      +      this.onEnd(status);
      +      this.ended = true;
      +      return false;
      +    }
      +    if (strm.avail_out === 0 || (strm.avail_in === 0 && (_mode === Z_FINISH || _mode === Z_SYNC_FLUSH))) {
      +      if (this.options.to === 'string') {
      +        this.onData(strings.buf2binstring(utils.shrinkBuf(strm.output, strm.next_out)));
      +      } else {
      +        this.onData(utils.shrinkBuf(strm.output, strm.next_out));
      +      }
      +    }
      +  } while ((strm.avail_in > 0 || strm.avail_out === 0) && status !== Z_STREAM_END);
      +
      +  // Finalize on the last chunk.
      +  if (_mode === Z_FINISH) {
      +    status = zlib_deflate.deflateEnd(this.strm);
      +    this.onEnd(status);
      +    this.ended = true;
      +    return status === Z_OK;
      +  }
      +
      +  // callback interim results if Z_SYNC_FLUSH.
      +  if (_mode === Z_SYNC_FLUSH) {
      +    this.onEnd(Z_OK);
      +    strm.avail_out = 0;
      +    return true;
      +  }
      +
      +  return true;
      +};
      +
      +
      +/**
      + * Deflate#onData(chunk) -> Void
      + * - chunk (Uint8Array|Array|String): ouput data. Type of array depends
      + *   on js engine support. When string output requested, each chunk
      + *   will be string.
      + *
      + * By default, stores data blocks in `chunks[]` property and glue
      + * those in `onEnd`. Override this handler, if you need another behaviour.
      + **/
      +Deflate.prototype.onData = function (chunk) {
      +  this.chunks.push(chunk);
      +};
      +
      +
      +/**
      + * Deflate#onEnd(status) -> Void
      + * - status (Number): deflate status. 0 (Z_OK) on success,
      + *   other if not.
      + *
      + * Called once after you tell deflate that the input stream is
      + * complete (Z_FINISH) or should be flushed (Z_SYNC_FLUSH)
      + * or if an error happened. By default - join collected chunks,
      + * free memory and fill `results` / `err` properties.
      + **/
      +Deflate.prototype.onEnd = function (status) {
      +  // On success - join
      +  if (status === Z_OK) {
      +    if (this.options.to === 'string') {
      +      this.result = this.chunks.join('');
      +    } else {
      +      this.result = utils.flattenChunks(this.chunks);
      +    }
      +  }
      +  this.chunks = [];
      +  this.err = status;
      +  this.msg = this.strm.msg;
      +};
      +
      +
      +/**
      + * deflate(data[, options]) -> Uint8Array|Array|String
      + * - data (Uint8Array|Array|String): input data to compress.
      + * - options (Object): zlib deflate options.
      + *
      + * Compress `data` with deflate algorithm and `options`.
      + *
      + * Supported options are:
      + *
      + * - level
      + * - windowBits
      + * - memLevel
      + * - strategy
      + * - dictionary
      + *
      + * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)
      + * for more information on these.
      + *
      + * Sugar (options):
      + *
      + * - `raw` (Boolean) - say that we work with raw stream, if you don't wish to specify
      + *   negative windowBits implicitly.
      + * - `to` (String) - if equal to 'string', then result will be "binary string"
      + *    (each char code [0..255])
      + *
      + * ##### Example:
      + *
      + * ```javascript
      + * var pako = require('pako')
      + *   , data = Uint8Array([1,2,3,4,5,6,7,8,9]);
      + *
      + * console.log(pako.deflate(data));
      + * ```
      + **/
      +function deflate(input, options) {
      +  var deflator = new Deflate(options);
      +
      +  deflator.push(input, true);
      +
      +  // That will never happens, if you don't cheat with options :)
      +  if (deflator.err) { throw deflator.msg || msg[deflator.err]; }
      +
      +  return deflator.result;
      +}
      +
      +
      +/**
      + * deflateRaw(data[, options]) -> Uint8Array|Array|String
      + * - data (Uint8Array|Array|String): input data to compress.
      + * - options (Object): zlib deflate options.
      + *
      + * The same as [[deflate]], but creates raw data, without wrapper
      + * (header and adler32 crc).
      + **/
      +function deflateRaw(input, options) {
      +  options = options || {};
      +  options.raw = true;
      +  return deflate(input, options);
      +}
      +
      +
      +/**
      + * gzip(data[, options]) -> Uint8Array|Array|String
      + * - data (Uint8Array|Array|String): input data to compress.
      + * - options (Object): zlib deflate options.
      + *
      + * The same as [[deflate]], but create gzip wrapper instead of
      + * deflate one.
      + **/
      +function gzip(input, options) {
      +  options = options || {};
      +  options.gzip = true;
      +  return deflate(input, options);
      +}
      +
      +
      +exports.Deflate = Deflate;
      +exports.deflate = deflate;
      +exports.deflateRaw = deflateRaw;
      +exports.gzip = gzip;
      +
      +},{"./utils/common":41,"./utils/strings":42,"./zlib/deflate":46,"./zlib/messages":51,"./zlib/zstream":53}],40:[function(require,module,exports){
      +'use strict';
      +
      +
      +var zlib_inflate = require('./zlib/inflate');
      +var utils        = require('./utils/common');
      +var strings      = require('./utils/strings');
      +var c            = require('./zlib/constants');
      +var msg          = require('./zlib/messages');
      +var ZStream      = require('./zlib/zstream');
      +var GZheader     = require('./zlib/gzheader');
      +
      +var toString = Object.prototype.toString;
      +
      +/**
      + * class Inflate
      + *
      + * Generic JS-style wrapper for zlib calls. If you don't need
      + * streaming behaviour - use more simple functions: [[inflate]]
      + * and [[inflateRaw]].
      + **/
      +
      +/* internal
      + * inflate.chunks -> Array
      + *
      + * Chunks of output data, if [[Inflate#onData]] not overriden.
      + **/
      +
      +/**
      + * Inflate.result -> Uint8Array|Array|String
      + *
      + * Uncompressed result, generated by default [[Inflate#onData]]
      + * and [[Inflate#onEnd]] handlers. Filled after you push last chunk
      + * (call [[Inflate#push]] with `Z_FINISH` / `true` param) or if you
      + * push a chunk with explicit flush (call [[Inflate#push]] with
      + * `Z_SYNC_FLUSH` param).
      + **/
      +
      +/**
      + * Inflate.err -> Number
      + *
      + * Error code after inflate finished. 0 (Z_OK) on success.
      + * Should be checked if broken data possible.
      + **/
      +
      +/**
      + * Inflate.msg -> String
      + *
      + * Error message, if [[Inflate.err]] != 0
      + **/
      +
      +
      +/**
      + * new Inflate(options)
      + * - options (Object): zlib inflate options.
      + *
      + * Creates new inflator instance with specified params. Throws exception
      + * on bad params. Supported options:
      + *
      + * - `windowBits`
      + * - `dictionary`
      + *
      + * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)
      + * for more information on these.
      + *
      + * Additional options, for internal needs:
      + *
      + * - `chunkSize` - size of generated data chunks (16K by default)
      + * - `raw` (Boolean) - do raw inflate
      + * - `to` (String) - if equal to 'string', then result will be converted
      + *   from utf8 to utf16 (javascript) string. When string output requested,
      + *   chunk length can differ from `chunkSize`, depending on content.
      + *
      + * By default, when no options set, autodetect deflate/gzip data format via
      + * wrapper header.
      + *
      + * ##### Example:
      + *
      + * ```javascript
      + * var pako = require('pako')
      + *   , chunk1 = Uint8Array([1,2,3,4,5,6,7,8,9])
      + *   , chunk2 = Uint8Array([10,11,12,13,14,15,16,17,18,19]);
      + *
      + * var inflate = new pako.Inflate({ level: 3});
      + *
      + * inflate.push(chunk1, false);
      + * inflate.push(chunk2, true);  // true -> last chunk
      + *
      + * if (inflate.err) { throw new Error(inflate.err); }
      + *
      + * console.log(inflate.result);
      + * ```
      + **/
      +function Inflate(options) {
      +  if (!(this instanceof Inflate)) return new Inflate(options);
      +
      +  this.options = utils.assign({
      +    chunkSize: 16384,
      +    windowBits: 0,
      +    to: ''
      +  }, options || {});
      +
      +  var opt = this.options;
      +
      +  // Force window size for `raw` data, if not set directly,
      +  // because we have no header for autodetect.
      +  if (opt.raw && (opt.windowBits >= 0) && (opt.windowBits < 16)) {
      +    opt.windowBits = -opt.windowBits;
      +    if (opt.windowBits === 0) { opt.windowBits = -15; }
      +  }
      +
      +  // If `windowBits` not defined (and mode not raw) - set autodetect flag for gzip/deflate
      +  if ((opt.windowBits >= 0) && (opt.windowBits < 16) &&
      +      !(options && options.windowBits)) {
      +    opt.windowBits += 32;
      +  }
      +
      +  // Gzip header has no info about windows size, we can do autodetect only
      +  // for deflate. So, if window size not set, force it to max when gzip possible
      +  if ((opt.windowBits > 15) && (opt.windowBits < 48)) {
      +    // bit 3 (16) -> gzipped data
      +    // bit 4 (32) -> autodetect gzip/deflate
      +    if ((opt.windowBits & 15) === 0) {
      +      opt.windowBits |= 15;
      +    }
      +  }
      +
      +  this.err    = 0;      // error code, if happens (0 = Z_OK)
      +  this.msg    = '';     // error message
      +  this.ended  = false;  // used to avoid multiple onEnd() calls
      +  this.chunks = [];     // chunks of compressed data
      +
      +  this.strm   = new ZStream();
      +  this.strm.avail_out = 0;
      +
      +  var status  = zlib_inflate.inflateInit2(
      +    this.strm,
      +    opt.windowBits
      +  );
      +
      +  if (status !== c.Z_OK) {
      +    throw new Error(msg[status]);
      +  }
      +
      +  this.header = new GZheader();
      +
      +  zlib_inflate.inflateGetHeader(this.strm, this.header);
      +}
      +
      +/**
      + * Inflate#push(data[, mode]) -> Boolean
      + * - data (Uint8Array|Array|ArrayBuffer|String): input data
      + * - mode (Number|Boolean): 0..6 for corresponding Z_NO_FLUSH..Z_TREE modes.
      + *   See constants. Skipped or `false` means Z_NO_FLUSH, `true` meansh Z_FINISH.
      + *
      + * Sends input data to inflate pipe, generating [[Inflate#onData]] calls with
      + * new output chunks. Returns `true` on success. The last data block must have
      + * mode Z_FINISH (or `true`). That will flush internal pending buffers and call
      + * [[Inflate#onEnd]]. For interim explicit flushes (without ending the stream) you
      + * can use mode Z_SYNC_FLUSH, keeping the decompression context.
      + *
      + * On fail call [[Inflate#onEnd]] with error code and return false.
      + *
      + * We strongly recommend to use `Uint8Array` on input for best speed (output
      + * format is detected automatically). Also, don't skip last param and always
      + * use the same type in your code (boolean or number). That will improve JS speed.
      + *
      + * For regular `Array`-s make sure all elements are [0..255].
      + *
      + * ##### Example
      + *
      + * ```javascript
      + * push(chunk, false); // push one of data chunks
      + * ...
      + * push(chunk, true);  // push last chunk
      + * ```
      + **/
      +Inflate.prototype.push = function (data, mode) {
      +  var strm = this.strm;
      +  var chunkSize = this.options.chunkSize;
      +  var dictionary = this.options.dictionary;
      +  var status, _mode;
      +  var next_out_utf8, tail, utf8str;
      +  var dict;
      +
      +  // Flag to properly process Z_BUF_ERROR on testing inflate call
      +  // when we check that all output data was flushed.
      +  var allowBufError = false;
      +
      +  if (this.ended) { return false; }
      +  _mode = (mode === ~~mode) ? mode : ((mode === true) ? c.Z_FINISH : c.Z_NO_FLUSH);
      +
      +  // Convert data if needed
      +  if (typeof data === 'string') {
      +    // Only binary strings can be decompressed on practice
      +    strm.input = strings.binstring2buf(data);
      +  } else if (toString.call(data) === '[object ArrayBuffer]') {
      +    strm.input = new Uint8Array(data);
      +  } else {
      +    strm.input = data;
      +  }
      +
      +  strm.next_in = 0;
      +  strm.avail_in = strm.input.length;
      +
      +  do {
      +    if (strm.avail_out === 0) {
      +      strm.output = new utils.Buf8(chunkSize);
      +      strm.next_out = 0;
      +      strm.avail_out = chunkSize;
      +    }
      +
      +    status = zlib_inflate.inflate(strm, c.Z_NO_FLUSH);    /* no bad return value */
      +
      +    if (status === c.Z_NEED_DICT && dictionary) {
      +      // Convert data if needed
      +      if (typeof dictionary === 'string') {
      +        dict = strings.string2buf(dictionary);
      +      } else if (toString.call(dictionary) === '[object ArrayBuffer]') {
      +        dict = new Uint8Array(dictionary);
      +      } else {
      +        dict = dictionary;
      +      }
      +
      +      status = zlib_inflate.inflateSetDictionary(this.strm, dict);
      +
      +    }
      +
      +    if (status === c.Z_BUF_ERROR && allowBufError === true) {
      +      status = c.Z_OK;
      +      allowBufError = false;
      +    }
      +
      +    if (status !== c.Z_STREAM_END && status !== c.Z_OK) {
      +      this.onEnd(status);
      +      this.ended = true;
      +      return false;
      +    }
      +
      +    if (strm.next_out) {
      +      if (strm.avail_out === 0 || status === c.Z_STREAM_END || (strm.avail_in === 0 && (_mode === c.Z_FINISH || _mode === c.Z_SYNC_FLUSH))) {
      +
      +        if (this.options.to === 'string') {
      +
      +          next_out_utf8 = strings.utf8border(strm.output, strm.next_out);
      +
      +          tail = strm.next_out - next_out_utf8;
      +          utf8str = strings.buf2string(strm.output, next_out_utf8);
      +
      +          // move tail
      +          strm.next_out = tail;
      +          strm.avail_out = chunkSize - tail;
      +          if (tail) { utils.arraySet(strm.output, strm.output, next_out_utf8, tail, 0); }
      +
      +          this.onData(utf8str);
      +
      +        } else {
      +          this.onData(utils.shrinkBuf(strm.output, strm.next_out));
      +        }
      +      }
      +    }
      +
      +    // When no more input data, we should check that internal inflate buffers
      +    // are flushed. The only way to do it when avail_out = 0 - run one more
      +    // inflate pass. But if output data not exists, inflate return Z_BUF_ERROR.
      +    // Here we set flag to process this error properly.
      +    //
      +    // NOTE. Deflate does not return error in this case and does not needs such
      +    // logic.
      +    if (strm.avail_in === 0 && strm.avail_out === 0) {
      +      allowBufError = true;
      +    }
      +
      +  } while ((strm.avail_in > 0 || strm.avail_out === 0) && status !== c.Z_STREAM_END);
      +
      +  if (status === c.Z_STREAM_END) {
      +    _mode = c.Z_FINISH;
      +  }
      +
      +  // Finalize on the last chunk.
      +  if (_mode === c.Z_FINISH) {
      +    status = zlib_inflate.inflateEnd(this.strm);
      +    this.onEnd(status);
      +    this.ended = true;
      +    return status === c.Z_OK;
      +  }
      +
      +  // callback interim results if Z_SYNC_FLUSH.
      +  if (_mode === c.Z_SYNC_FLUSH) {
      +    this.onEnd(c.Z_OK);
      +    strm.avail_out = 0;
      +    return true;
      +  }
      +
      +  return true;
      +};
      +
      +
      +/**
      + * Inflate#onData(chunk) -> Void
      + * - chunk (Uint8Array|Array|String): ouput data. Type of array depends
      + *   on js engine support. When string output requested, each chunk
      + *   will be string.
      + *
      + * By default, stores data blocks in `chunks[]` property and glue
      + * those in `onEnd`. Override this handler, if you need another behaviour.
      + **/
      +Inflate.prototype.onData = function (chunk) {
      +  this.chunks.push(chunk);
      +};
      +
      +
      +/**
      + * Inflate#onEnd(status) -> Void
      + * - status (Number): inflate status. 0 (Z_OK) on success,
      + *   other if not.
      + *
      + * Called either after you tell inflate that the input stream is
      + * complete (Z_FINISH) or should be flushed (Z_SYNC_FLUSH)
      + * or if an error happened. By default - join collected chunks,
      + * free memory and fill `results` / `err` properties.
      + **/
      +Inflate.prototype.onEnd = function (status) {
      +  // On success - join
      +  if (status === c.Z_OK) {
      +    if (this.options.to === 'string') {
      +      // Glue & convert here, until we teach pako to send
      +      // utf8 alligned strings to onData
      +      this.result = this.chunks.join('');
      +    } else {
      +      this.result = utils.flattenChunks(this.chunks);
      +    }
      +  }
      +  this.chunks = [];
      +  this.err = status;
      +  this.msg = this.strm.msg;
      +};
      +
      +
      +/**
      + * inflate(data[, options]) -> Uint8Array|Array|String
      + * - data (Uint8Array|Array|String): input data to decompress.
      + * - options (Object): zlib inflate options.
      + *
      + * Decompress `data` with inflate/ungzip and `options`. Autodetect
      + * format via wrapper header by default. That's why we don't provide
      + * separate `ungzip` method.
      + *
      + * Supported options are:
      + *
      + * - windowBits
      + *
      + * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)
      + * for more information.
      + *
      + * Sugar (options):
      + *
      + * - `raw` (Boolean) - say that we work with raw stream, if you don't wish to specify
      + *   negative windowBits implicitly.
      + * - `to` (String) - if equal to 'string', then result will be converted
      + *   from utf8 to utf16 (javascript) string. When string output requested,
      + *   chunk length can differ from `chunkSize`, depending on content.
      + *
      + *
      + * ##### Example:
      + *
      + * ```javascript
      + * var pako = require('pako')
      + *   , input = pako.deflate([1,2,3,4,5,6,7,8,9])
      + *   , output;
      + *
      + * try {
      + *   output = pako.inflate(input);
      + * } catch (err)
      + *   console.log(err);
      + * }
      + * ```
      + **/
      +function inflate(input, options) {
      +  var inflator = new Inflate(options);
      +
      +  inflator.push(input, true);
      +
      +  // That will never happens, if you don't cheat with options :)
      +  if (inflator.err) { throw inflator.msg || msg[inflator.err]; }
      +
      +  return inflator.result;
      +}
      +
      +
      +/**
      + * inflateRaw(data[, options]) -> Uint8Array|Array|String
      + * - data (Uint8Array|Array|String): input data to decompress.
      + * - options (Object): zlib inflate options.
      + *
      + * The same as [[inflate]], but creates raw data, without wrapper
      + * (header and adler32 crc).
      + **/
      +function inflateRaw(input, options) {
      +  options = options || {};
      +  options.raw = true;
      +  return inflate(input, options);
      +}
      +
      +
      +/**
      + * ungzip(data[, options]) -> Uint8Array|Array|String
      + * - data (Uint8Array|Array|String): input data to decompress.
      + * - options (Object): zlib inflate options.
      + *
      + * Just shortcut to [[inflate]], because it autodetects format
      + * by header.content. Done for convenience.
      + **/
      +
      +
      +exports.Inflate = Inflate;
      +exports.inflate = inflate;
      +exports.inflateRaw = inflateRaw;
      +exports.ungzip  = inflate;
      +
      +},{"./utils/common":41,"./utils/strings":42,"./zlib/constants":44,"./zlib/gzheader":47,"./zlib/inflate":49,"./zlib/messages":51,"./zlib/zstream":53}],41:[function(require,module,exports){
      +'use strict';
      +
      +
      +var TYPED_OK =  (typeof Uint8Array !== 'undefined') &&
      +                (typeof Uint16Array !== 'undefined') &&
      +                (typeof Int32Array !== 'undefined');
      +
      +
      +exports.assign = function (obj /*from1, from2, from3, ...*/) {
      +  var sources = Array.prototype.slice.call(arguments, 1);
      +  while (sources.length) {
      +    var source = sources.shift();
      +    if (!source) { continue; }
      +
      +    if (typeof source !== 'object') {
      +      throw new TypeError(source + 'must be non-object');
      +    }
      +
      +    for (var p in source) {
      +      if (source.hasOwnProperty(p)) {
      +        obj[p] = source[p];
      +      }
      +    }
      +  }
      +
      +  return obj;
      +};
      +
      +
      +// reduce buffer size, avoiding mem copy
      +exports.shrinkBuf = function (buf, size) {
      +  if (buf.length === size) { return buf; }
      +  if (buf.subarray) { return buf.subarray(0, size); }
      +  buf.length = size;
      +  return buf;
      +};
      +
      +
      +var fnTyped = {
      +  arraySet: function (dest, src, src_offs, len, dest_offs) {
      +    if (src.subarray && dest.subarray) {
      +      dest.set(src.subarray(src_offs, src_offs + len), dest_offs);
      +      return;
      +    }
      +    // Fallback to ordinary array
      +    for (var i = 0; i < len; i++) {
      +      dest[dest_offs + i] = src[src_offs + i];
      +    }
      +  },
      +  // Join array of chunks to single array.
      +  flattenChunks: function (chunks) {
      +    var i, l, len, pos, chunk, result;
      +
      +    // calculate data length
      +    len = 0;
      +    for (i = 0, l = chunks.length; i < l; i++) {
      +      len += chunks[i].length;
      +    }
      +
      +    // join chunks
      +    result = new Uint8Array(len);
      +    pos = 0;
      +    for (i = 0, l = chunks.length; i < l; i++) {
      +      chunk = chunks[i];
      +      result.set(chunk, pos);
      +      pos += chunk.length;
      +    }
      +
      +    return result;
      +  }
      +};
      +
      +var fnUntyped = {
      +  arraySet: function (dest, src, src_offs, len, dest_offs) {
      +    for (var i = 0; i < len; i++) {
      +      dest[dest_offs + i] = src[src_offs + i];
      +    }
      +  },
      +  // Join array of chunks to single array.
      +  flattenChunks: function (chunks) {
      +    return [].concat.apply([], chunks);
      +  }
      +};
      +
      +
      +// Enable/Disable typed arrays use, for testing
      +//
      +exports.setTyped = function (on) {
      +  if (on) {
      +    exports.Buf8  = Uint8Array;
      +    exports.Buf16 = Uint16Array;
      +    exports.Buf32 = Int32Array;
      +    exports.assign(exports, fnTyped);
      +  } else {
      +    exports.Buf8  = Array;
      +    exports.Buf16 = Array;
      +    exports.Buf32 = Array;
      +    exports.assign(exports, fnUntyped);
      +  }
      +};
      +
      +exports.setTyped(TYPED_OK);
      +
      +},{}],42:[function(require,module,exports){
      +// String encode/decode helpers
      +'use strict';
      +
      +
      +var utils = require('./common');
      +
      +
      +// Quick check if we can use fast array to bin string conversion
      +//
      +// - apply(Array) can fail on Android 2.2
      +// - apply(Uint8Array) can fail on iOS 5.1 Safary
      +//
      +var STR_APPLY_OK = true;
      +var STR_APPLY_UIA_OK = true;
      +
      +try { String.fromCharCode.apply(null, [ 0 ]); } catch (__) { STR_APPLY_OK = false; }
      +try { String.fromCharCode.apply(null, new Uint8Array(1)); } catch (__) { STR_APPLY_UIA_OK = false; }
      +
      +
      +// Table with utf8 lengths (calculated by first byte of sequence)
      +// Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS,
      +// because max possible codepoint is 0x10ffff
      +var _utf8len = new utils.Buf8(256);
      +for (var q = 0; q < 256; q++) {
      +  _utf8len[q] = (q >= 252 ? 6 : q >= 248 ? 5 : q >= 240 ? 4 : q >= 224 ? 3 : q >= 192 ? 2 : 1);
      +}
      +_utf8len[254] = _utf8len[254] = 1; // Invalid sequence start
      +
      +
      +// convert string to array (typed, when possible)
      +exports.string2buf = function (str) {
      +  var buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0;
      +
      +  // count binary size
      +  for (m_pos = 0; m_pos < str_len; m_pos++) {
      +    c = str.charCodeAt(m_pos);
      +    if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {
      +      c2 = str.charCodeAt(m_pos + 1);
      +      if ((c2 & 0xfc00) === 0xdc00) {
      +        c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
      +        m_pos++;
      +      }
      +    }
      +    buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4;
      +  }
      +
      +  // allocate buffer
      +  buf = new utils.Buf8(buf_len);
      +
      +  // convert
      +  for (i = 0, m_pos = 0; i < buf_len; m_pos++) {
      +    c = str.charCodeAt(m_pos);
      +    if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {
      +      c2 = str.charCodeAt(m_pos + 1);
      +      if ((c2 & 0xfc00) === 0xdc00) {
      +        c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
      +        m_pos++;
      +      }
      +    }
      +    if (c < 0x80) {
      +      /* one byte */
      +      buf[i++] = c;
      +    } else if (c < 0x800) {
      +      /* two bytes */
      +      buf[i++] = 0xC0 | (c >>> 6);
      +      buf[i++] = 0x80 | (c & 0x3f);
      +    } else if (c < 0x10000) {
      +      /* three bytes */
      +      buf[i++] = 0xE0 | (c >>> 12);
      +      buf[i++] = 0x80 | (c >>> 6 & 0x3f);
      +      buf[i++] = 0x80 | (c & 0x3f);
      +    } else {
      +      /* four bytes */
      +      buf[i++] = 0xf0 | (c >>> 18);
      +      buf[i++] = 0x80 | (c >>> 12 & 0x3f);
      +      buf[i++] = 0x80 | (c >>> 6 & 0x3f);
      +      buf[i++] = 0x80 | (c & 0x3f);
      +    }
      +  }
      +
      +  return buf;
      +};
      +
      +// Helper (used in 2 places)
      +function buf2binstring(buf, len) {
      +  // use fallback for big arrays to avoid stack overflow
      +  if (len < 65537) {
      +    if ((buf.subarray && STR_APPLY_UIA_OK) || (!buf.subarray && STR_APPLY_OK)) {
      +      return String.fromCharCode.apply(null, utils.shrinkBuf(buf, len));
      +    }
      +  }
      +
      +  var result = '';
      +  for (var i = 0; i < len; i++) {
      +    result += String.fromCharCode(buf[i]);
      +  }
      +  return result;
      +}
      +
      +
      +// Convert byte array to binary string
      +exports.buf2binstring = function (buf) {
      +  return buf2binstring(buf, buf.length);
      +};
      +
      +
      +// Convert binary string (typed, when possible)
      +exports.binstring2buf = function (str) {
      +  var buf = new utils.Buf8(str.length);
      +  for (var i = 0, len = buf.length; i < len; i++) {
      +    buf[i] = str.charCodeAt(i);
      +  }
      +  return buf;
      +};
      +
      +
      +// convert array to string
      +exports.buf2string = function (buf, max) {
      +  var i, out, c, c_len;
      +  var len = max || buf.length;
      +
      +  // Reserve max possible length (2 words per char)
      +  // NB: by unknown reasons, Array is significantly faster for
      +  //     String.fromCharCode.apply than Uint16Array.
      +  var utf16buf = new Array(len * 2);
      +
      +  for (out = 0, i = 0; i < len;) {
      +    c = buf[i++];
      +    // quick process ascii
      +    if (c < 0x80) { utf16buf[out++] = c; continue; }
      +
      +    c_len = _utf8len[c];
      +    // skip 5 & 6 byte codes
      +    if (c_len > 4) { utf16buf[out++] = 0xfffd; i += c_len - 1; continue; }
      +
      +    // apply mask on first byte
      +    c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07;
      +    // join the rest
      +    while (c_len > 1 && i < len) {
      +      c = (c << 6) | (buf[i++] & 0x3f);
      +      c_len--;
      +    }
      +
      +    // terminated by end of string?
      +    if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; }
      +
      +    if (c < 0x10000) {
      +      utf16buf[out++] = c;
      +    } else {
      +      c -= 0x10000;
      +      utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff);
      +      utf16buf[out++] = 0xdc00 | (c & 0x3ff);
      +    }
      +  }
      +
      +  return buf2binstring(utf16buf, out);
      +};
      +
      +
      +// Calculate max possible position in utf8 buffer,
      +// that will not break sequence. If that's not possible
      +// - (very small limits) return max size as is.
      +//
      +// buf[] - utf8 bytes array
      +// max   - length limit (mandatory);
      +exports.utf8border = function (buf, max) {
      +  var pos;
      +
      +  max = max || buf.length;
      +  if (max > buf.length) { max = buf.length; }
      +
      +  // go back from last position, until start of sequence found
      +  pos = max - 1;
      +  while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; }
      +
      +  // Fuckup - very small and broken sequence,
      +  // return max, because we should return something anyway.
      +  if (pos < 0) { return max; }
      +
      +  // If we came to start of buffer - that means vuffer is too small,
      +  // return max too.
      +  if (pos === 0) { return max; }
      +
      +  return (pos + _utf8len[buf[pos]] > max) ? pos : max;
      +};
      +
      +},{"./common":41}],43:[function(require,module,exports){
      +'use strict';
      +
      +// Note: adler32 takes 12% for level 0 and 2% for level 6.
      +// It doesn't worth to make additional optimizationa as in original.
      +// Small size is preferable.
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +function adler32(adler, buf, len, pos) {
      +  var s1 = (adler & 0xffff) |0,
      +      s2 = ((adler >>> 16) & 0xffff) |0,
      +      n = 0;
      +
      +  while (len !== 0) {
      +    // Set limit ~ twice less than 5552, to keep
      +    // s2 in 31-bits, because we force signed ints.
      +    // in other case %= will fail.
      +    n = len > 2000 ? 2000 : len;
      +    len -= n;
      +
      +    do {
      +      s1 = (s1 + buf[pos++]) |0;
      +      s2 = (s2 + s1) |0;
      +    } while (--n);
      +
      +    s1 %= 65521;
      +    s2 %= 65521;
      +  }
      +
      +  return (s1 | (s2 << 16)) |0;
      +}
      +
      +
      +module.exports = adler32;
      +
      +},{}],44:[function(require,module,exports){
      +'use strict';
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +module.exports = {
      +
      +  /* Allowed flush values; see deflate() and inflate() below for details */
      +  Z_NO_FLUSH:         0,
      +  Z_PARTIAL_FLUSH:    1,
      +  Z_SYNC_FLUSH:       2,
      +  Z_FULL_FLUSH:       3,
      +  Z_FINISH:           4,
      +  Z_BLOCK:            5,
      +  Z_TREES:            6,
      +
      +  /* Return codes for the compression/decompression functions. Negative values
      +  * are errors, positive values are used for special but normal events.
      +  */
      +  Z_OK:               0,
      +  Z_STREAM_END:       1,
      +  Z_NEED_DICT:        2,
      +  Z_ERRNO:           -1,
      +  Z_STREAM_ERROR:    -2,
      +  Z_DATA_ERROR:      -3,
      +  //Z_MEM_ERROR:     -4,
      +  Z_BUF_ERROR:       -5,
      +  //Z_VERSION_ERROR: -6,
      +
      +  /* compression levels */
      +  Z_NO_COMPRESSION:         0,
      +  Z_BEST_SPEED:             1,
      +  Z_BEST_COMPRESSION:       9,
      +  Z_DEFAULT_COMPRESSION:   -1,
      +
      +
      +  Z_FILTERED:               1,
      +  Z_HUFFMAN_ONLY:           2,
      +  Z_RLE:                    3,
      +  Z_FIXED:                  4,
      +  Z_DEFAULT_STRATEGY:       0,
      +
      +  /* Possible values of the data_type field (though see inflate()) */
      +  Z_BINARY:                 0,
      +  Z_TEXT:                   1,
      +  //Z_ASCII:                1, // = Z_TEXT (deprecated)
      +  Z_UNKNOWN:                2,
      +
      +  /* The deflate compression method */
      +  Z_DEFLATED:               8
      +  //Z_NULL:                 null // Use -1 or null inline, depending on var type
      +};
      +
      +},{}],45:[function(require,module,exports){
      +'use strict';
      +
      +// Note: we can't get significant speed boost here.
      +// So write code to minimize size - no pregenerated tables
      +// and array tools dependencies.
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +// Use ordinary array, since untyped makes no boost here
      +function makeTable() {
      +  var c, table = [];
      +
      +  for (var n = 0; n < 256; n++) {
      +    c = n;
      +    for (var k = 0; k < 8; k++) {
      +      c = ((c & 1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1));
      +    }
      +    table[n] = c;
      +  }
      +
      +  return table;
      +}
      +
      +// Create table on load. Just 255 signed longs. Not a problem.
      +var crcTable = makeTable();
      +
      +
      +function crc32(crc, buf, len, pos) {
      +  var t = crcTable,
      +      end = pos + len;
      +
      +  crc ^= -1;
      +
      +  for (var i = pos; i < end; i++) {
      +    crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF];
      +  }
      +
      +  return (crc ^ (-1)); // >>> 0;
      +}
      +
      +
      +module.exports = crc32;
      +
      +},{}],46:[function(require,module,exports){
      +'use strict';
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +var utils   = require('../utils/common');
      +var trees   = require('./trees');
      +var adler32 = require('./adler32');
      +var crc32   = require('./crc32');
      +var msg     = require('./messages');
      +
      +/* Public constants ==========================================================*/
      +/* ===========================================================================*/
      +
      +
      +/* Allowed flush values; see deflate() and inflate() below for details */
      +var Z_NO_FLUSH      = 0;
      +var Z_PARTIAL_FLUSH = 1;
      +//var Z_SYNC_FLUSH    = 2;
      +var Z_FULL_FLUSH    = 3;
      +var Z_FINISH        = 4;
      +var Z_BLOCK         = 5;
      +//var Z_TREES         = 6;
      +
      +
      +/* Return codes for the compression/decompression functions. Negative values
      + * are errors, positive values are used for special but normal events.
      + */
      +var Z_OK            = 0;
      +var Z_STREAM_END    = 1;
      +//var Z_NEED_DICT     = 2;
      +//var Z_ERRNO         = -1;
      +var Z_STREAM_ERROR  = -2;
      +var Z_DATA_ERROR    = -3;
      +//var Z_MEM_ERROR     = -4;
      +var Z_BUF_ERROR     = -5;
      +//var Z_VERSION_ERROR = -6;
      +
      +
      +/* compression levels */
      +//var Z_NO_COMPRESSION      = 0;
      +//var Z_BEST_SPEED          = 1;
      +//var Z_BEST_COMPRESSION    = 9;
      +var Z_DEFAULT_COMPRESSION = -1;
      +
      +
      +var Z_FILTERED            = 1;
      +var Z_HUFFMAN_ONLY        = 2;
      +var Z_RLE                 = 3;
      +var Z_FIXED               = 4;
      +var Z_DEFAULT_STRATEGY    = 0;
      +
      +/* Possible values of the data_type field (though see inflate()) */
      +//var Z_BINARY              = 0;
      +//var Z_TEXT                = 1;
      +//var Z_ASCII               = 1; // = Z_TEXT
      +var Z_UNKNOWN             = 2;
      +
      +
      +/* The deflate compression method */
      +var Z_DEFLATED  = 8;
      +
      +/*============================================================================*/
      +
      +
      +var MAX_MEM_LEVEL = 9;
      +/* Maximum value for memLevel in deflateInit2 */
      +var MAX_WBITS = 15;
      +/* 32K LZ77 window */
      +var DEF_MEM_LEVEL = 8;
      +
      +
      +var LENGTH_CODES  = 29;
      +/* number of length codes, not counting the special END_BLOCK code */
      +var LITERALS      = 256;
      +/* number of literal bytes 0..255 */
      +var L_CODES       = LITERALS + 1 + LENGTH_CODES;
      +/* number of Literal or Length codes, including the END_BLOCK code */
      +var D_CODES       = 30;
      +/* number of distance codes */
      +var BL_CODES      = 19;
      +/* number of codes used to transfer the bit lengths */
      +var HEAP_SIZE     = 2 * L_CODES + 1;
      +/* maximum heap size */
      +var MAX_BITS  = 15;
      +/* All codes must not exceed MAX_BITS bits */
      +
      +var MIN_MATCH = 3;
      +var MAX_MATCH = 258;
      +var MIN_LOOKAHEAD = (MAX_MATCH + MIN_MATCH + 1);
      +
      +var PRESET_DICT = 0x20;
      +
      +var INIT_STATE = 42;
      +var EXTRA_STATE = 69;
      +var NAME_STATE = 73;
      +var COMMENT_STATE = 91;
      +var HCRC_STATE = 103;
      +var BUSY_STATE = 113;
      +var FINISH_STATE = 666;
      +
      +var BS_NEED_MORE      = 1; /* block not completed, need more input or more output */
      +var BS_BLOCK_DONE     = 2; /* block flush performed */
      +var BS_FINISH_STARTED = 3; /* finish started, need only more output at next deflate */
      +var BS_FINISH_DONE    = 4; /* finish done, accept no more input or output */
      +
      +var OS_CODE = 0x03; // Unix :) . Don't detect, use this default.
      +
      +function err(strm, errorCode) {
      +  strm.msg = msg[errorCode];
      +  return errorCode;
      +}
      +
      +function rank(f) {
      +  return ((f) << 1) - ((f) > 4 ? 9 : 0);
      +}
      +
      +function zero(buf) { var len = buf.length; while (--len >= 0) { buf[len] = 0; } }
      +
      +
      +/* =========================================================================
      + * Flush as much pending output as possible. All deflate() output goes
      + * through this function so some applications may wish to modify it
      + * to avoid allocating a large strm->output buffer and copying into it.
      + * (See also read_buf()).
      + */
      +function flush_pending(strm) {
      +  var s = strm.state;
      +
      +  //_tr_flush_bits(s);
      +  var len = s.pending;
      +  if (len > strm.avail_out) {
      +    len = strm.avail_out;
      +  }
      +  if (len === 0) { return; }
      +
      +  utils.arraySet(strm.output, s.pending_buf, s.pending_out, len, strm.next_out);
      +  strm.next_out += len;
      +  s.pending_out += len;
      +  strm.total_out += len;
      +  strm.avail_out -= len;
      +  s.pending -= len;
      +  if (s.pending === 0) {
      +    s.pending_out = 0;
      +  }
      +}
      +
      +
      +function flush_block_only(s, last) {
      +  trees._tr_flush_block(s, (s.block_start >= 0 ? s.block_start : -1), s.strstart - s.block_start, last);
      +  s.block_start = s.strstart;
      +  flush_pending(s.strm);
      +}
      +
      +
      +function put_byte(s, b) {
      +  s.pending_buf[s.pending++] = b;
      +}
      +
      +
      +/* =========================================================================
      + * Put a short in the pending buffer. The 16-bit value is put in MSB order.
      + * IN assertion: the stream state is correct and there is enough room in
      + * pending_buf.
      + */
      +function putShortMSB(s, b) {
      +//  put_byte(s, (Byte)(b >> 8));
      +//  put_byte(s, (Byte)(b & 0xff));
      +  s.pending_buf[s.pending++] = (b >>> 8) & 0xff;
      +  s.pending_buf[s.pending++] = b & 0xff;
      +}
      +
      +
      +/* ===========================================================================
      + * Read a new buffer from the current input stream, update the adler32
      + * and total number of bytes read.  All deflate() input goes through
      + * this function so some applications may wish to modify it to avoid
      + * allocating a large strm->input buffer and copying from it.
      + * (See also flush_pending()).
      + */
      +function read_buf(strm, buf, start, size) {
      +  var len = strm.avail_in;
      +
      +  if (len > size) { len = size; }
      +  if (len === 0) { return 0; }
      +
      +  strm.avail_in -= len;
      +
      +  // zmemcpy(buf, strm->next_in, len);
      +  utils.arraySet(buf, strm.input, strm.next_in, len, start);
      +  if (strm.state.wrap === 1) {
      +    strm.adler = adler32(strm.adler, buf, len, start);
      +  }
      +
      +  else if (strm.state.wrap === 2) {
      +    strm.adler = crc32(strm.adler, buf, len, start);
      +  }
      +
      +  strm.next_in += len;
      +  strm.total_in += len;
      +
      +  return len;
      +}
      +
      +
      +/* ===========================================================================
      + * Set match_start to the longest match starting at the given string and
      + * return its length. Matches shorter or equal to prev_length are discarded,
      + * in which case the result is equal to prev_length and match_start is
      + * garbage.
      + * IN assertions: cur_match is the head of the hash chain for the current
      + *   string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
      + * OUT assertion: the match length is not greater than s->lookahead.
      + */
      +function longest_match(s, cur_match) {
      +  var chain_length = s.max_chain_length;      /* max hash chain length */
      +  var scan = s.strstart; /* current string */
      +  var match;                       /* matched string */
      +  var len;                           /* length of current match */
      +  var best_len = s.prev_length;              /* best match length so far */
      +  var nice_match = s.nice_match;             /* stop if match long enough */
      +  var limit = (s.strstart > (s.w_size - MIN_LOOKAHEAD)) ?
      +      s.strstart - (s.w_size - MIN_LOOKAHEAD) : 0/*NIL*/;
      +
      +  var _win = s.window; // shortcut
      +
      +  var wmask = s.w_mask;
      +  var prev  = s.prev;
      +
      +  /* Stop when cur_match becomes <= limit. To simplify the code,
      +   * we prevent matches with the string of window index 0.
      +   */
      +
      +  var strend = s.strstart + MAX_MATCH;
      +  var scan_end1  = _win[scan + best_len - 1];
      +  var scan_end   = _win[scan + best_len];
      +
      +  /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
      +   * It is easy to get rid of this optimization if necessary.
      +   */
      +  // Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
      +
      +  /* Do not waste too much time if we already have a good match: */
      +  if (s.prev_length >= s.good_match) {
      +    chain_length >>= 2;
      +  }
      +  /* Do not look for matches beyond the end of the input. This is necessary
      +   * to make deflate deterministic.
      +   */
      +  if (nice_match > s.lookahead) { nice_match = s.lookahead; }
      +
      +  // Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
      +
      +  do {
      +    // Assert(cur_match < s->strstart, "no future");
      +    match = cur_match;
      +
      +    /* Skip to next match if the match length cannot increase
      +     * or if the match length is less than 2.  Note that the checks below
      +     * for insufficient lookahead only occur occasionally for performance
      +     * reasons.  Therefore uninitialized memory will be accessed, and
      +     * conditional jumps will be made that depend on those values.
      +     * However the length of the match is limited to the lookahead, so
      +     * the output of deflate is not affected by the uninitialized values.
      +     */
      +
      +    if (_win[match + best_len]     !== scan_end  ||
      +        _win[match + best_len - 1] !== scan_end1 ||
      +        _win[match]                !== _win[scan] ||
      +        _win[++match]              !== _win[scan + 1]) {
      +      continue;
      +    }
      +
      +    /* The check at best_len-1 can be removed because it will be made
      +     * again later. (This heuristic is not always a win.)
      +     * It is not necessary to compare scan[2] and match[2] since they
      +     * are always equal when the other bytes match, given that
      +     * the hash keys are equal and that HASH_BITS >= 8.
      +     */
      +    scan += 2;
      +    match++;
      +    // Assert(*scan == *match, "match[2]?");
      +
      +    /* We check for insufficient lookahead only every 8th comparison;
      +     * the 256th check will be made at strstart+258.
      +     */
      +    do {
      +      /*jshint noempty:false*/
      +    } while (_win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
      +             _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
      +             _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
      +             _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
      +             scan < strend);
      +
      +    // Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
      +
      +    len = MAX_MATCH - (strend - scan);
      +    scan = strend - MAX_MATCH;
      +
      +    if (len > best_len) {
      +      s.match_start = cur_match;
      +      best_len = len;
      +      if (len >= nice_match) {
      +        break;
      +      }
      +      scan_end1  = _win[scan + best_len - 1];
      +      scan_end   = _win[scan + best_len];
      +    }
      +  } while ((cur_match = prev[cur_match & wmask]) > limit && --chain_length !== 0);
      +
      +  if (best_len <= s.lookahead) {
      +    return best_len;
      +  }
      +  return s.lookahead;
      +}
      +
      +
      +/* ===========================================================================
      + * Fill the window when the lookahead becomes insufficient.
      + * Updates strstart and lookahead.
      + *
      + * IN assertion: lookahead < MIN_LOOKAHEAD
      + * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD
      + *    At least one byte has been read, or avail_in == 0; reads are
      + *    performed for at least two bytes (required for the zip translate_eol
      + *    option -- not supported here).
      + */
      +function fill_window(s) {
      +  var _w_size = s.w_size;
      +  var p, n, m, more, str;
      +
      +  //Assert(s->lookahead < MIN_LOOKAHEAD, "already enough lookahead");
      +
      +  do {
      +    more = s.window_size - s.lookahead - s.strstart;
      +
      +    // JS ints have 32 bit, block below not needed
      +    /* Deal with !@#$% 64K limit: */
      +    //if (sizeof(int) <= 2) {
      +    //    if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
      +    //        more = wsize;
      +    //
      +    //  } else if (more == (unsigned)(-1)) {
      +    //        /* Very unlikely, but possible on 16 bit machine if
      +    //         * strstart == 0 && lookahead == 1 (input done a byte at time)
      +    //         */
      +    //        more--;
      +    //    }
      +    //}
      +
      +
      +    /* If the window is almost full and there is insufficient lookahead,
      +     * move the upper half to the lower one to make room in the upper half.
      +     */
      +    if (s.strstart >= _w_size + (_w_size - MIN_LOOKAHEAD)) {
      +
      +      utils.arraySet(s.window, s.window, _w_size, _w_size, 0);
      +      s.match_start -= _w_size;
      +      s.strstart -= _w_size;
      +      /* we now have strstart >= MAX_DIST */
      +      s.block_start -= _w_size;
      +
      +      /* Slide the hash table (could be avoided with 32 bit values
      +       at the expense of memory usage). We slide even when level == 0
      +       to keep the hash table consistent if we switch back to level > 0
      +       later. (Using level 0 permanently is not an optimal usage of
      +       zlib, so we don't care about this pathological case.)
      +       */
      +
      +      n = s.hash_size;
      +      p = n;
      +      do {
      +        m = s.head[--p];
      +        s.head[p] = (m >= _w_size ? m - _w_size : 0);
      +      } while (--n);
      +
      +      n = _w_size;
      +      p = n;
      +      do {
      +        m = s.prev[--p];
      +        s.prev[p] = (m >= _w_size ? m - _w_size : 0);
      +        /* If n is not on any hash chain, prev[n] is garbage but
      +         * its value will never be used.
      +         */
      +      } while (--n);
      +
      +      more += _w_size;
      +    }
      +    if (s.strm.avail_in === 0) {
      +      break;
      +    }
      +
      +    /* If there was no sliding:
      +     *    strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &&
      +     *    more == window_size - lookahead - strstart
      +     * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)
      +     * => more >= window_size - 2*WSIZE + 2
      +     * In the BIG_MEM or MMAP case (not yet supported),
      +     *   window_size == input_size + MIN_LOOKAHEAD  &&
      +     *   strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD.
      +     * Otherwise, window_size == 2*WSIZE so more >= 2.
      +     * If there was sliding, more >= WSIZE. So in all cases, more >= 2.
      +     */
      +    //Assert(more >= 2, "more < 2");
      +    n = read_buf(s.strm, s.window, s.strstart + s.lookahead, more);
      +    s.lookahead += n;
      +
      +    /* Initialize the hash value now that we have some input: */
      +    if (s.lookahead + s.insert >= MIN_MATCH) {
      +      str = s.strstart - s.insert;
      +      s.ins_h = s.window[str];
      +
      +      /* UPDATE_HASH(s, s->ins_h, s->window[str + 1]); */
      +      s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str + 1]) & s.hash_mask;
      +//#if MIN_MATCH != 3
      +//        Call update_hash() MIN_MATCH-3 more times
      +//#endif
      +      while (s.insert) {
      +        /* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */
      +        s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str + MIN_MATCH - 1]) & s.hash_mask;
      +
      +        s.prev[str & s.w_mask] = s.head[s.ins_h];
      +        s.head[s.ins_h] = str;
      +        str++;
      +        s.insert--;
      +        if (s.lookahead + s.insert < MIN_MATCH) {
      +          break;
      +        }
      +      }
      +    }
      +    /* If the whole input has less than MIN_MATCH bytes, ins_h is garbage,
      +     * but this is not important since only literal bytes will be emitted.
      +     */
      +
      +  } while (s.lookahead < MIN_LOOKAHEAD && s.strm.avail_in !== 0);
      +
      +  /* If the WIN_INIT bytes after the end of the current data have never been
      +   * written, then zero those bytes in order to avoid memory check reports of
      +   * the use of uninitialized (or uninitialised as Julian writes) bytes by
      +   * the longest match routines.  Update the high water mark for the next
      +   * time through here.  WIN_INIT is set to MAX_MATCH since the longest match
      +   * routines allow scanning to strstart + MAX_MATCH, ignoring lookahead.
      +   */
      +//  if (s.high_water < s.window_size) {
      +//    var curr = s.strstart + s.lookahead;
      +//    var init = 0;
      +//
      +//    if (s.high_water < curr) {
      +//      /* Previous high water mark below current data -- zero WIN_INIT
      +//       * bytes or up to end of window, whichever is less.
      +//       */
      +//      init = s.window_size - curr;
      +//      if (init > WIN_INIT)
      +//        init = WIN_INIT;
      +//      zmemzero(s->window + curr, (unsigned)init);
      +//      s->high_water = curr + init;
      +//    }
      +//    else if (s->high_water < (ulg)curr + WIN_INIT) {
      +//      /* High water mark at or above current data, but below current data
      +//       * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up
      +//       * to end of window, whichever is less.
      +//       */
      +//      init = (ulg)curr + WIN_INIT - s->high_water;
      +//      if (init > s->window_size - s->high_water)
      +//        init = s->window_size - s->high_water;
      +//      zmemzero(s->window + s->high_water, (unsigned)init);
      +//      s->high_water += init;
      +//    }
      +//  }
      +//
      +//  Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
      +//    "not enough room for search");
      +}
      +
      +/* ===========================================================================
      + * Copy without compression as much as possible from the input stream, return
      + * the current block state.
      + * This function does not insert new strings in the dictionary since
      + * uncompressible data is probably not useful. This function is used
      + * only for the level=0 compression option.
      + * NOTE: this function should be optimized to avoid extra copying from
      + * window to pending_buf.
      + */
      +function deflate_stored(s, flush) {
      +  /* Stored blocks are limited to 0xffff bytes, pending_buf is limited
      +   * to pending_buf_size, and each stored block has a 5 byte header:
      +   */
      +  var max_block_size = 0xffff;
      +
      +  if (max_block_size > s.pending_buf_size - 5) {
      +    max_block_size = s.pending_buf_size - 5;
      +  }
      +
      +  /* Copy as much as possible from input to output: */
      +  for (;;) {
      +    /* Fill the window as much as possible: */
      +    if (s.lookahead <= 1) {
      +
      +      //Assert(s->strstart < s->w_size+MAX_DIST(s) ||
      +      //  s->block_start >= (long)s->w_size, "slide too late");
      +//      if (!(s.strstart < s.w_size + (s.w_size - MIN_LOOKAHEAD) ||
      +//        s.block_start >= s.w_size)) {
      +//        throw  new Error("slide too late");
      +//      }
      +
      +      fill_window(s);
      +      if (s.lookahead === 0 && flush === Z_NO_FLUSH) {
      +        return BS_NEED_MORE;
      +      }
      +
      +      if (s.lookahead === 0) {
      +        break;
      +      }
      +      /* flush the current block */
      +    }
      +    //Assert(s->block_start >= 0L, "block gone");
      +//    if (s.block_start < 0) throw new Error("block gone");
      +
      +    s.strstart += s.lookahead;
      +    s.lookahead = 0;
      +
      +    /* Emit a stored block if pending_buf will be full: */
      +    var max_start = s.block_start + max_block_size;
      +
      +    if (s.strstart === 0 || s.strstart >= max_start) {
      +      /* strstart == 0 is possible when wraparound on 16-bit machine */
      +      s.lookahead = s.strstart - max_start;
      +      s.strstart = max_start;
      +      /*** FLUSH_BLOCK(s, 0); ***/
      +      flush_block_only(s, false);
      +      if (s.strm.avail_out === 0) {
      +        return BS_NEED_MORE;
      +      }
      +      /***/
      +
      +
      +    }
      +    /* Flush if we may have to slide, otherwise block_start may become
      +     * negative and the data will be gone:
      +     */
      +    if (s.strstart - s.block_start >= (s.w_size - MIN_LOOKAHEAD)) {
      +      /*** FLUSH_BLOCK(s, 0); ***/
      +      flush_block_only(s, false);
      +      if (s.strm.avail_out === 0) {
      +        return BS_NEED_MORE;
      +      }
      +      /***/
      +    }
      +  }
      +
      +  s.insert = 0;
      +
      +  if (flush === Z_FINISH) {
      +    /*** FLUSH_BLOCK(s, 1); ***/
      +    flush_block_only(s, true);
      +    if (s.strm.avail_out === 0) {
      +      return BS_FINISH_STARTED;
      +    }
      +    /***/
      +    return BS_FINISH_DONE;
      +  }
      +
      +  if (s.strstart > s.block_start) {
      +    /*** FLUSH_BLOCK(s, 0); ***/
      +    flush_block_only(s, false);
      +    if (s.strm.avail_out === 0) {
      +      return BS_NEED_MORE;
      +    }
      +    /***/
      +  }
      +
      +  return BS_NEED_MORE;
      +}
      +
      +/* ===========================================================================
      + * Compress as much as possible from the input stream, return the current
      + * block state.
      + * This function does not perform lazy evaluation of matches and inserts
      + * new strings in the dictionary only for unmatched strings or for short
      + * matches. It is used only for the fast compression options.
      + */
      +function deflate_fast(s, flush) {
      +  var hash_head;        /* head of the hash chain */
      +  var bflush;           /* set if current block must be flushed */
      +
      +  for (;;) {
      +    /* Make sure that we always have enough lookahead, except
      +     * at the end of the input file. We need MAX_MATCH bytes
      +     * for the next match, plus MIN_MATCH bytes to insert the
      +     * string following the next match.
      +     */
      +    if (s.lookahead < MIN_LOOKAHEAD) {
      +      fill_window(s);
      +      if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
      +        return BS_NEED_MORE;
      +      }
      +      if (s.lookahead === 0) {
      +        break; /* flush the current block */
      +      }
      +    }
      +
      +    /* Insert the string window[strstart .. strstart+2] in the
      +     * dictionary, and set hash_head to the head of the hash chain:
      +     */
      +    hash_head = 0/*NIL*/;
      +    if (s.lookahead >= MIN_MATCH) {
      +      /*** INSERT_STRING(s, s.strstart, hash_head); ***/
      +      s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
      +      hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
      +      s.head[s.ins_h] = s.strstart;
      +      /***/
      +    }
      +
      +    /* Find the longest match, discarding those <= prev_length.
      +     * At this point we have always match_length < MIN_MATCH
      +     */
      +    if (hash_head !== 0/*NIL*/ && ((s.strstart - hash_head) <= (s.w_size - MIN_LOOKAHEAD))) {
      +      /* To simplify the code, we prevent matches with the string
      +       * of window index 0 (in particular we have to avoid a match
      +       * of the string with itself at the start of the input file).
      +       */
      +      s.match_length = longest_match(s, hash_head);
      +      /* longest_match() sets match_start */
      +    }
      +    if (s.match_length >= MIN_MATCH) {
      +      // check_match(s, s.strstart, s.match_start, s.match_length); // for debug only
      +
      +      /*** _tr_tally_dist(s, s.strstart - s.match_start,
      +                     s.match_length - MIN_MATCH, bflush); ***/
      +      bflush = trees._tr_tally(s, s.strstart - s.match_start, s.match_length - MIN_MATCH);
      +
      +      s.lookahead -= s.match_length;
      +
      +      /* Insert new strings in the hash table only if the match length
      +       * is not too large. This saves time but degrades compression.
      +       */
      +      if (s.match_length <= s.max_lazy_match/*max_insert_length*/ && s.lookahead >= MIN_MATCH) {
      +        s.match_length--; /* string at strstart already in table */
      +        do {
      +          s.strstart++;
      +          /*** INSERT_STRING(s, s.strstart, hash_head); ***/
      +          s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
      +          hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
      +          s.head[s.ins_h] = s.strstart;
      +          /***/
      +          /* strstart never exceeds WSIZE-MAX_MATCH, so there are
      +           * always MIN_MATCH bytes ahead.
      +           */
      +        } while (--s.match_length !== 0);
      +        s.strstart++;
      +      } else
      +      {
      +        s.strstart += s.match_length;
      +        s.match_length = 0;
      +        s.ins_h = s.window[s.strstart];
      +        /* UPDATE_HASH(s, s.ins_h, s.window[s.strstart+1]); */
      +        s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + 1]) & s.hash_mask;
      +
      +//#if MIN_MATCH != 3
      +//                Call UPDATE_HASH() MIN_MATCH-3 more times
      +//#endif
      +        /* If lookahead < MIN_MATCH, ins_h is garbage, but it does not
      +         * matter since it will be recomputed at next deflate call.
      +         */
      +      }
      +    } else {
      +      /* No match, output a literal byte */
      +      //Tracevv((stderr,"%c", s.window[s.strstart]));
      +      /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/
      +      bflush = trees._tr_tally(s, 0, s.window[s.strstart]);
      +
      +      s.lookahead--;
      +      s.strstart++;
      +    }
      +    if (bflush) {
      +      /*** FLUSH_BLOCK(s, 0); ***/
      +      flush_block_only(s, false);
      +      if (s.strm.avail_out === 0) {
      +        return BS_NEED_MORE;
      +      }
      +      /***/
      +    }
      +  }
      +  s.insert = ((s.strstart < (MIN_MATCH - 1)) ? s.strstart : MIN_MATCH - 1);
      +  if (flush === Z_FINISH) {
      +    /*** FLUSH_BLOCK(s, 1); ***/
      +    flush_block_only(s, true);
      +    if (s.strm.avail_out === 0) {
      +      return BS_FINISH_STARTED;
      +    }
      +    /***/
      +    return BS_FINISH_DONE;
      +  }
      +  if (s.last_lit) {
      +    /*** FLUSH_BLOCK(s, 0); ***/
      +    flush_block_only(s, false);
      +    if (s.strm.avail_out === 0) {
      +      return BS_NEED_MORE;
      +    }
      +    /***/
      +  }
      +  return BS_BLOCK_DONE;
      +}
      +
      +/* ===========================================================================
      + * Same as above, but achieves better compression. We use a lazy
      + * evaluation for matches: a match is finally adopted only if there is
      + * no better match at the next window position.
      + */
      +function deflate_slow(s, flush) {
      +  var hash_head;          /* head of hash chain */
      +  var bflush;              /* set if current block must be flushed */
      +
      +  var max_insert;
      +
      +  /* Process the input block. */
      +  for (;;) {
      +    /* Make sure that we always have enough lookahead, except
      +     * at the end of the input file. We need MAX_MATCH bytes
      +     * for the next match, plus MIN_MATCH bytes to insert the
      +     * string following the next match.
      +     */
      +    if (s.lookahead < MIN_LOOKAHEAD) {
      +      fill_window(s);
      +      if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
      +        return BS_NEED_MORE;
      +      }
      +      if (s.lookahead === 0) { break; } /* flush the current block */
      +    }
      +
      +    /* Insert the string window[strstart .. strstart+2] in the
      +     * dictionary, and set hash_head to the head of the hash chain:
      +     */
      +    hash_head = 0/*NIL*/;
      +    if (s.lookahead >= MIN_MATCH) {
      +      /*** INSERT_STRING(s, s.strstart, hash_head); ***/
      +      s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
      +      hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
      +      s.head[s.ins_h] = s.strstart;
      +      /***/
      +    }
      +
      +    /* Find the longest match, discarding those <= prev_length.
      +     */
      +    s.prev_length = s.match_length;
      +    s.prev_match = s.match_start;
      +    s.match_length = MIN_MATCH - 1;
      +
      +    if (hash_head !== 0/*NIL*/ && s.prev_length < s.max_lazy_match &&
      +        s.strstart - hash_head <= (s.w_size - MIN_LOOKAHEAD)/*MAX_DIST(s)*/) {
      +      /* To simplify the code, we prevent matches with the string
      +       * of window index 0 (in particular we have to avoid a match
      +       * of the string with itself at the start of the input file).
      +       */
      +      s.match_length = longest_match(s, hash_head);
      +      /* longest_match() sets match_start */
      +
      +      if (s.match_length <= 5 &&
      +         (s.strategy === Z_FILTERED || (s.match_length === MIN_MATCH && s.strstart - s.match_start > 4096/*TOO_FAR*/))) {
      +
      +        /* If prev_match is also MIN_MATCH, match_start is garbage
      +         * but we will ignore the current match anyway.
      +         */
      +        s.match_length = MIN_MATCH - 1;
      +      }
      +    }
      +    /* If there was a match at the previous step and the current
      +     * match is not better, output the previous match:
      +     */
      +    if (s.prev_length >= MIN_MATCH && s.match_length <= s.prev_length) {
      +      max_insert = s.strstart + s.lookahead - MIN_MATCH;
      +      /* Do not insert strings in hash table beyond this. */
      +
      +      //check_match(s, s.strstart-1, s.prev_match, s.prev_length);
      +
      +      /***_tr_tally_dist(s, s.strstart - 1 - s.prev_match,
      +                     s.prev_length - MIN_MATCH, bflush);***/
      +      bflush = trees._tr_tally(s, s.strstart - 1 - s.prev_match, s.prev_length - MIN_MATCH);
      +      /* Insert in hash table all strings up to the end of the match.
      +       * strstart-1 and strstart are already inserted. If there is not
      +       * enough lookahead, the last two strings are not inserted in
      +       * the hash table.
      +       */
      +      s.lookahead -= s.prev_length - 1;
      +      s.prev_length -= 2;
      +      do {
      +        if (++s.strstart <= max_insert) {
      +          /*** INSERT_STRING(s, s.strstart, hash_head); ***/
      +          s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
      +          hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
      +          s.head[s.ins_h] = s.strstart;
      +          /***/
      +        }
      +      } while (--s.prev_length !== 0);
      +      s.match_available = 0;
      +      s.match_length = MIN_MATCH - 1;
      +      s.strstart++;
      +
      +      if (bflush) {
      +        /*** FLUSH_BLOCK(s, 0); ***/
      +        flush_block_only(s, false);
      +        if (s.strm.avail_out === 0) {
      +          return BS_NEED_MORE;
      +        }
      +        /***/
      +      }
      +
      +    } else if (s.match_available) {
      +      /* If there was no match at the previous position, output a
      +       * single literal. If there was a match but the current match
      +       * is longer, truncate the previous match to a single literal.
      +       */
      +      //Tracevv((stderr,"%c", s->window[s->strstart-1]));
      +      /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/
      +      bflush = trees._tr_tally(s, 0, s.window[s.strstart - 1]);
      +
      +      if (bflush) {
      +        /*** FLUSH_BLOCK_ONLY(s, 0) ***/
      +        flush_block_only(s, false);
      +        /***/
      +      }
      +      s.strstart++;
      +      s.lookahead--;
      +      if (s.strm.avail_out === 0) {
      +        return BS_NEED_MORE;
      +      }
      +    } else {
      +      /* There is no previous match to compare with, wait for
      +       * the next step to decide.
      +       */
      +      s.match_available = 1;
      +      s.strstart++;
      +      s.lookahead--;
      +    }
      +  }
      +  //Assert (flush != Z_NO_FLUSH, "no flush?");
      +  if (s.match_available) {
      +    //Tracevv((stderr,"%c", s->window[s->strstart-1]));
      +    /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/
      +    bflush = trees._tr_tally(s, 0, s.window[s.strstart - 1]);
      +
      +    s.match_available = 0;
      +  }
      +  s.insert = s.strstart < MIN_MATCH - 1 ? s.strstart : MIN_MATCH - 1;
      +  if (flush === Z_FINISH) {
      +    /*** FLUSH_BLOCK(s, 1); ***/
      +    flush_block_only(s, true);
      +    if (s.strm.avail_out === 0) {
      +      return BS_FINISH_STARTED;
      +    }
      +    /***/
      +    return BS_FINISH_DONE;
      +  }
      +  if (s.last_lit) {
      +    /*** FLUSH_BLOCK(s, 0); ***/
      +    flush_block_only(s, false);
      +    if (s.strm.avail_out === 0) {
      +      return BS_NEED_MORE;
      +    }
      +    /***/
      +  }
      +
      +  return BS_BLOCK_DONE;
      +}
      +
      +
      +/* ===========================================================================
      + * For Z_RLE, simply look for runs of bytes, generate matches only of distance
      + * one.  Do not maintain a hash table.  (It will be regenerated if this run of
      + * deflate switches away from Z_RLE.)
      + */
      +function deflate_rle(s, flush) {
      +  var bflush;            /* set if current block must be flushed */
      +  var prev;              /* byte at distance one to match */
      +  var scan, strend;      /* scan goes up to strend for length of run */
      +
      +  var _win = s.window;
      +
      +  for (;;) {
      +    /* Make sure that we always have enough lookahead, except
      +     * at the end of the input file. We need MAX_MATCH bytes
      +     * for the longest run, plus one for the unrolled loop.
      +     */
      +    if (s.lookahead <= MAX_MATCH) {
      +      fill_window(s);
      +      if (s.lookahead <= MAX_MATCH && flush === Z_NO_FLUSH) {
      +        return BS_NEED_MORE;
      +      }
      +      if (s.lookahead === 0) { break; } /* flush the current block */
      +    }
      +
      +    /* See how many times the previous byte repeats */
      +    s.match_length = 0;
      +    if (s.lookahead >= MIN_MATCH && s.strstart > 0) {
      +      scan = s.strstart - 1;
      +      prev = _win[scan];
      +      if (prev === _win[++scan] && prev === _win[++scan] && prev === _win[++scan]) {
      +        strend = s.strstart + MAX_MATCH;
      +        do {
      +          /*jshint noempty:false*/
      +        } while (prev === _win[++scan] && prev === _win[++scan] &&
      +                 prev === _win[++scan] && prev === _win[++scan] &&
      +                 prev === _win[++scan] && prev === _win[++scan] &&
      +                 prev === _win[++scan] && prev === _win[++scan] &&
      +                 scan < strend);
      +        s.match_length = MAX_MATCH - (strend - scan);
      +        if (s.match_length > s.lookahead) {
      +          s.match_length = s.lookahead;
      +        }
      +      }
      +      //Assert(scan <= s->window+(uInt)(s->window_size-1), "wild scan");
      +    }
      +
      +    /* Emit match if have run of MIN_MATCH or longer, else emit literal */
      +    if (s.match_length >= MIN_MATCH) {
      +      //check_match(s, s.strstart, s.strstart - 1, s.match_length);
      +
      +      /*** _tr_tally_dist(s, 1, s.match_length - MIN_MATCH, bflush); ***/
      +      bflush = trees._tr_tally(s, 1, s.match_length - MIN_MATCH);
      +
      +      s.lookahead -= s.match_length;
      +      s.strstart += s.match_length;
      +      s.match_length = 0;
      +    } else {
      +      /* No match, output a literal byte */
      +      //Tracevv((stderr,"%c", s->window[s->strstart]));
      +      /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/
      +      bflush = trees._tr_tally(s, 0, s.window[s.strstart]);
      +
      +      s.lookahead--;
      +      s.strstart++;
      +    }
      +    if (bflush) {
      +      /*** FLUSH_BLOCK(s, 0); ***/
      +      flush_block_only(s, false);
      +      if (s.strm.avail_out === 0) {
      +        return BS_NEED_MORE;
      +      }
      +      /***/
      +    }
      +  }
      +  s.insert = 0;
      +  if (flush === Z_FINISH) {
      +    /*** FLUSH_BLOCK(s, 1); ***/
      +    flush_block_only(s, true);
      +    if (s.strm.avail_out === 0) {
      +      return BS_FINISH_STARTED;
      +    }
      +    /***/
      +    return BS_FINISH_DONE;
      +  }
      +  if (s.last_lit) {
      +    /*** FLUSH_BLOCK(s, 0); ***/
      +    flush_block_only(s, false);
      +    if (s.strm.avail_out === 0) {
      +      return BS_NEED_MORE;
      +    }
      +    /***/
      +  }
      +  return BS_BLOCK_DONE;
      +}
      +
      +/* ===========================================================================
      + * For Z_HUFFMAN_ONLY, do not look for matches.  Do not maintain a hash table.
      + * (It will be regenerated if this run of deflate switches away from Huffman.)
      + */
      +function deflate_huff(s, flush) {
      +  var bflush;             /* set if current block must be flushed */
      +
      +  for (;;) {
      +    /* Make sure that we have a literal to write. */
      +    if (s.lookahead === 0) {
      +      fill_window(s);
      +      if (s.lookahead === 0) {
      +        if (flush === Z_NO_FLUSH) {
      +          return BS_NEED_MORE;
      +        }
      +        break;      /* flush the current block */
      +      }
      +    }
      +
      +    /* Output a literal byte */
      +    s.match_length = 0;
      +    //Tracevv((stderr,"%c", s->window[s->strstart]));
      +    /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/
      +    bflush = trees._tr_tally(s, 0, s.window[s.strstart]);
      +    s.lookahead--;
      +    s.strstart++;
      +    if (bflush) {
      +      /*** FLUSH_BLOCK(s, 0); ***/
      +      flush_block_only(s, false);
      +      if (s.strm.avail_out === 0) {
      +        return BS_NEED_MORE;
      +      }
      +      /***/
      +    }
      +  }
      +  s.insert = 0;
      +  if (flush === Z_FINISH) {
      +    /*** FLUSH_BLOCK(s, 1); ***/
      +    flush_block_only(s, true);
      +    if (s.strm.avail_out === 0) {
      +      return BS_FINISH_STARTED;
      +    }
      +    /***/
      +    return BS_FINISH_DONE;
      +  }
      +  if (s.last_lit) {
      +    /*** FLUSH_BLOCK(s, 0); ***/
      +    flush_block_only(s, false);
      +    if (s.strm.avail_out === 0) {
      +      return BS_NEED_MORE;
      +    }
      +    /***/
      +  }
      +  return BS_BLOCK_DONE;
      +}
      +
      +/* Values for max_lazy_match, good_match and max_chain_length, depending on
      + * the desired pack level (0..9). The values given below have been tuned to
      + * exclude worst case performance for pathological files. Better values may be
      + * found for specific files.
      + */
      +function Config(good_length, max_lazy, nice_length, max_chain, func) {
      +  this.good_length = good_length;
      +  this.max_lazy = max_lazy;
      +  this.nice_length = nice_length;
      +  this.max_chain = max_chain;
      +  this.func = func;
      +}
      +
      +var configuration_table;
      +
      +configuration_table = [
      +  /*      good lazy nice chain */
      +  new Config(0, 0, 0, 0, deflate_stored),          /* 0 store only */
      +  new Config(4, 4, 8, 4, deflate_fast),            /* 1 max speed, no lazy matches */
      +  new Config(4, 5, 16, 8, deflate_fast),           /* 2 */
      +  new Config(4, 6, 32, 32, deflate_fast),          /* 3 */
      +
      +  new Config(4, 4, 16, 16, deflate_slow),          /* 4 lazy matches */
      +  new Config(8, 16, 32, 32, deflate_slow),         /* 5 */
      +  new Config(8, 16, 128, 128, deflate_slow),       /* 6 */
      +  new Config(8, 32, 128, 256, deflate_slow),       /* 7 */
      +  new Config(32, 128, 258, 1024, deflate_slow),    /* 8 */
      +  new Config(32, 258, 258, 4096, deflate_slow)     /* 9 max compression */
      +];
      +
      +
      +/* ===========================================================================
      + * Initialize the "longest match" routines for a new zlib stream
      + */
      +function lm_init(s) {
      +  s.window_size = 2 * s.w_size;
      +
      +  /*** CLEAR_HASH(s); ***/
      +  zero(s.head); // Fill with NIL (= 0);
      +
      +  /* Set the default configuration parameters:
      +   */
      +  s.max_lazy_match = configuration_table[s.level].max_lazy;
      +  s.good_match = configuration_table[s.level].good_length;
      +  s.nice_match = configuration_table[s.level].nice_length;
      +  s.max_chain_length = configuration_table[s.level].max_chain;
      +
      +  s.strstart = 0;
      +  s.block_start = 0;
      +  s.lookahead = 0;
      +  s.insert = 0;
      +  s.match_length = s.prev_length = MIN_MATCH - 1;
      +  s.match_available = 0;
      +  s.ins_h = 0;
      +}
      +
      +
      +function DeflateState() {
      +  this.strm = null;            /* pointer back to this zlib stream */
      +  this.status = 0;            /* as the name implies */
      +  this.pending_buf = null;      /* output still pending */
      +  this.pending_buf_size = 0;  /* size of pending_buf */
      +  this.pending_out = 0;       /* next pending byte to output to the stream */
      +  this.pending = 0;           /* nb of bytes in the pending buffer */
      +  this.wrap = 0;              /* bit 0 true for zlib, bit 1 true for gzip */
      +  this.gzhead = null;         /* gzip header information to write */
      +  this.gzindex = 0;           /* where in extra, name, or comment */
      +  this.method = Z_DEFLATED; /* can only be DEFLATED */
      +  this.last_flush = -1;   /* value of flush param for previous deflate call */
      +
      +  this.w_size = 0;  /* LZ77 window size (32K by default) */
      +  this.w_bits = 0;  /* log2(w_size)  (8..16) */
      +  this.w_mask = 0;  /* w_size - 1 */
      +
      +  this.window = null;
      +  /* Sliding window. Input bytes are read into the second half of the window,
      +   * and move to the first half later to keep a dictionary of at least wSize
      +   * bytes. With this organization, matches are limited to a distance of
      +   * wSize-MAX_MATCH bytes, but this ensures that IO is always
      +   * performed with a length multiple of the block size.
      +   */
      +
      +  this.window_size = 0;
      +  /* Actual size of window: 2*wSize, except when the user input buffer
      +   * is directly used as sliding window.
      +   */
      +
      +  this.prev = null;
      +  /* Link to older string with same hash index. To limit the size of this
      +   * array to 64K, this link is maintained only for the last 32K strings.
      +   * An index in this array is thus a window index modulo 32K.
      +   */
      +
      +  this.head = null;   /* Heads of the hash chains or NIL. */
      +
      +  this.ins_h = 0;       /* hash index of string to be inserted */
      +  this.hash_size = 0;   /* number of elements in hash table */
      +  this.hash_bits = 0;   /* log2(hash_size) */
      +  this.hash_mask = 0;   /* hash_size-1 */
      +
      +  this.hash_shift = 0;
      +  /* Number of bits by which ins_h must be shifted at each input
      +   * step. It must be such that after MIN_MATCH steps, the oldest
      +   * byte no longer takes part in the hash key, that is:
      +   *   hash_shift * MIN_MATCH >= hash_bits
      +   */
      +
      +  this.block_start = 0;
      +  /* Window position at the beginning of the current output block. Gets
      +   * negative when the window is moved backwards.
      +   */
      +
      +  this.match_length = 0;      /* length of best match */
      +  this.prev_match = 0;        /* previous match */
      +  this.match_available = 0;   /* set if previous match exists */
      +  this.strstart = 0;          /* start of string to insert */
      +  this.match_start = 0;       /* start of matching string */
      +  this.lookahead = 0;         /* number of valid bytes ahead in window */
      +
      +  this.prev_length = 0;
      +  /* Length of the best match at previous step. Matches not greater than this
      +   * are discarded. This is used in the lazy match evaluation.
      +   */
      +
      +  this.max_chain_length = 0;
      +  /* To speed up deflation, hash chains are never searched beyond this
      +   * length.  A higher limit improves compression ratio but degrades the
      +   * speed.
      +   */
      +
      +  this.max_lazy_match = 0;
      +  /* Attempt to find a better match only when the current match is strictly
      +   * smaller than this value. This mechanism is used only for compression
      +   * levels >= 4.
      +   */
      +  // That's alias to max_lazy_match, don't use directly
      +  //this.max_insert_length = 0;
      +  /* Insert new strings in the hash table only if the match length is not
      +   * greater than this length. This saves time but degrades compression.
      +   * max_insert_length is used only for compression levels <= 3.
      +   */
      +
      +  this.level = 0;     /* compression level (1..9) */
      +  this.strategy = 0;  /* favor or force Huffman coding*/
      +
      +  this.good_match = 0;
      +  /* Use a faster search when the previous match is longer than this */
      +
      +  this.nice_match = 0; /* Stop searching when current match exceeds this */
      +
      +              /* used by trees.c: */
      +
      +  /* Didn't use ct_data typedef below to suppress compiler warning */
      +
      +  // struct ct_data_s dyn_ltree[HEAP_SIZE];   /* literal and length tree */
      +  // struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */
      +  // struct ct_data_s bl_tree[2*BL_CODES+1];  /* Huffman tree for bit lengths */
      +
      +  // Use flat array of DOUBLE size, with interleaved fata,
      +  // because JS does not support effective
      +  this.dyn_ltree  = new utils.Buf16(HEAP_SIZE * 2);
      +  this.dyn_dtree  = new utils.Buf16((2 * D_CODES + 1) * 2);
      +  this.bl_tree    = new utils.Buf16((2 * BL_CODES + 1) * 2);
      +  zero(this.dyn_ltree);
      +  zero(this.dyn_dtree);
      +  zero(this.bl_tree);
      +
      +  this.l_desc   = null;         /* desc. for literal tree */
      +  this.d_desc   = null;         /* desc. for distance tree */
      +  this.bl_desc  = null;         /* desc. for bit length tree */
      +
      +  //ush bl_count[MAX_BITS+1];
      +  this.bl_count = new utils.Buf16(MAX_BITS + 1);
      +  /* number of codes at each bit length for an optimal tree */
      +
      +  //int heap[2*L_CODES+1];      /* heap used to build the Huffman trees */
      +  this.heap = new utils.Buf16(2 * L_CODES + 1);  /* heap used to build the Huffman trees */
      +  zero(this.heap);
      +
      +  this.heap_len = 0;               /* number of elements in the heap */
      +  this.heap_max = 0;               /* element of largest frequency */
      +  /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
      +   * The same heap array is used to build all trees.
      +   */
      +
      +  this.depth = new utils.Buf16(2 * L_CODES + 1); //uch depth[2*L_CODES+1];
      +  zero(this.depth);
      +  /* Depth of each subtree used as tie breaker for trees of equal frequency
      +   */
      +
      +  this.l_buf = 0;          /* buffer index for literals or lengths */
      +
      +  this.lit_bufsize = 0;
      +  /* Size of match buffer for literals/lengths.  There are 4 reasons for
      +   * limiting lit_bufsize to 64K:
      +   *   - frequencies can be kept in 16 bit counters
      +   *   - if compression is not successful for the first block, all input
      +   *     data is still in the window so we can still emit a stored block even
      +   *     when input comes from standard input.  (This can also be done for
      +   *     all blocks if lit_bufsize is not greater than 32K.)
      +   *   - if compression is not successful for a file smaller than 64K, we can
      +   *     even emit a stored file instead of a stored block (saving 5 bytes).
      +   *     This is applicable only for zip (not gzip or zlib).
      +   *   - creating new Huffman trees less frequently may not provide fast
      +   *     adaptation to changes in the input data statistics. (Take for
      +   *     example a binary file with poorly compressible code followed by
      +   *     a highly compressible string table.) Smaller buffer sizes give
      +   *     fast adaptation but have of course the overhead of transmitting
      +   *     trees more frequently.
      +   *   - I can't count above 4
      +   */
      +
      +  this.last_lit = 0;      /* running index in l_buf */
      +
      +  this.d_buf = 0;
      +  /* Buffer index for distances. To simplify the code, d_buf and l_buf have
      +   * the same number of elements. To use different lengths, an extra flag
      +   * array would be necessary.
      +   */
      +
      +  this.opt_len = 0;       /* bit length of current block with optimal trees */
      +  this.static_len = 0;    /* bit length of current block with static trees */
      +  this.matches = 0;       /* number of string matches in current block */
      +  this.insert = 0;        /* bytes at end of window left to insert */
      +
      +
      +  this.bi_buf = 0;
      +  /* Output buffer. bits are inserted starting at the bottom (least
      +   * significant bits).
      +   */
      +  this.bi_valid = 0;
      +  /* Number of valid bits in bi_buf.  All bits above the last valid bit
      +   * are always zero.
      +   */
      +
      +  // Used for window memory init. We safely ignore it for JS. That makes
      +  // sense only for pointers and memory check tools.
      +  //this.high_water = 0;
      +  /* High water mark offset in window for initialized bytes -- bytes above
      +   * this are set to zero in order to avoid memory check warnings when
      +   * longest match routines access bytes past the input.  This is then
      +   * updated to the new high water mark.
      +   */
      +}
      +
      +
      +function deflateResetKeep(strm) {
      +  var s;
      +
      +  if (!strm || !strm.state) {
      +    return err(strm, Z_STREAM_ERROR);
      +  }
      +
      +  strm.total_in = strm.total_out = 0;
      +  strm.data_type = Z_UNKNOWN;
      +
      +  s = strm.state;
      +  s.pending = 0;
      +  s.pending_out = 0;
      +
      +  if (s.wrap < 0) {
      +    s.wrap = -s.wrap;
      +    /* was made negative by deflate(..., Z_FINISH); */
      +  }
      +  s.status = (s.wrap ? INIT_STATE : BUSY_STATE);
      +  strm.adler = (s.wrap === 2) ?
      +    0  // crc32(0, Z_NULL, 0)
      +  :
      +    1; // adler32(0, Z_NULL, 0)
      +  s.last_flush = Z_NO_FLUSH;
      +  trees._tr_init(s);
      +  return Z_OK;
      +}
      +
      +
      +function deflateReset(strm) {
      +  var ret = deflateResetKeep(strm);
      +  if (ret === Z_OK) {
      +    lm_init(strm.state);
      +  }
      +  return ret;
      +}
      +
      +
      +function deflateSetHeader(strm, head) {
      +  if (!strm || !strm.state) { return Z_STREAM_ERROR; }
      +  if (strm.state.wrap !== 2) { return Z_STREAM_ERROR; }
      +  strm.state.gzhead = head;
      +  return Z_OK;
      +}
      +
      +
      +function deflateInit2(strm, level, method, windowBits, memLevel, strategy) {
      +  if (!strm) { // === Z_NULL
      +    return Z_STREAM_ERROR;
      +  }
      +  var wrap = 1;
      +
      +  if (level === Z_DEFAULT_COMPRESSION) {
      +    level = 6;
      +  }
      +
      +  if (windowBits < 0) { /* suppress zlib wrapper */
      +    wrap = 0;
      +    windowBits = -windowBits;
      +  }
      +
      +  else if (windowBits > 15) {
      +    wrap = 2;           /* write gzip wrapper instead */
      +    windowBits -= 16;
      +  }
      +
      +
      +  if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method !== Z_DEFLATED ||
      +    windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
      +    strategy < 0 || strategy > Z_FIXED) {
      +    return err(strm, Z_STREAM_ERROR);
      +  }
      +
      +
      +  if (windowBits === 8) {
      +    windowBits = 9;
      +  }
      +  /* until 256-byte window bug fixed */
      +
      +  var s = new DeflateState();
      +
      +  strm.state = s;
      +  s.strm = strm;
      +
      +  s.wrap = wrap;
      +  s.gzhead = null;
      +  s.w_bits = windowBits;
      +  s.w_size = 1 << s.w_bits;
      +  s.w_mask = s.w_size - 1;
      +
      +  s.hash_bits = memLevel + 7;
      +  s.hash_size = 1 << s.hash_bits;
      +  s.hash_mask = s.hash_size - 1;
      +  s.hash_shift = ~~((s.hash_bits + MIN_MATCH - 1) / MIN_MATCH);
      +
      +  s.window = new utils.Buf8(s.w_size * 2);
      +  s.head = new utils.Buf16(s.hash_size);
      +  s.prev = new utils.Buf16(s.w_size);
      +
      +  // Don't need mem init magic for JS.
      +  //s.high_water = 0;  /* nothing written to s->window yet */
      +
      +  s.lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
      +
      +  s.pending_buf_size = s.lit_bufsize * 4;
      +
      +  //overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
      +  //s->pending_buf = (uchf *) overlay;
      +  s.pending_buf = new utils.Buf8(s.pending_buf_size);
      +
      +  // It is offset from `s.pending_buf` (size is `s.lit_bufsize * 2`)
      +  //s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
      +  s.d_buf = 1 * s.lit_bufsize;
      +
      +  //s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
      +  s.l_buf = (1 + 2) * s.lit_bufsize;
      +
      +  s.level = level;
      +  s.strategy = strategy;
      +  s.method = method;
      +
      +  return deflateReset(strm);
      +}
      +
      +function deflateInit(strm, level) {
      +  return deflateInit2(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY);
      +}
      +
      +
      +function deflate(strm, flush) {
      +  var old_flush, s;
      +  var beg, val; // for gzip header write only
      +
      +  if (!strm || !strm.state ||
      +    flush > Z_BLOCK || flush < 0) {
      +    return strm ? err(strm, Z_STREAM_ERROR) : Z_STREAM_ERROR;
      +  }
      +
      +  s = strm.state;
      +
      +  if (!strm.output ||
      +      (!strm.input && strm.avail_in !== 0) ||
      +      (s.status === FINISH_STATE && flush !== Z_FINISH)) {
      +    return err(strm, (strm.avail_out === 0) ? Z_BUF_ERROR : Z_STREAM_ERROR);
      +  }
      +
      +  s.strm = strm; /* just in case */
      +  old_flush = s.last_flush;
      +  s.last_flush = flush;
      +
      +  /* Write the header */
      +  if (s.status === INIT_STATE) {
      +
      +    if (s.wrap === 2) { // GZIP header
      +      strm.adler = 0;  //crc32(0L, Z_NULL, 0);
      +      put_byte(s, 31);
      +      put_byte(s, 139);
      +      put_byte(s, 8);
      +      if (!s.gzhead) { // s->gzhead == Z_NULL
      +        put_byte(s, 0);
      +        put_byte(s, 0);
      +        put_byte(s, 0);
      +        put_byte(s, 0);
      +        put_byte(s, 0);
      +        put_byte(s, s.level === 9 ? 2 :
      +                    (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ?
      +                     4 : 0));
      +        put_byte(s, OS_CODE);
      +        s.status = BUSY_STATE;
      +      }
      +      else {
      +        put_byte(s, (s.gzhead.text ? 1 : 0) +
      +                    (s.gzhead.hcrc ? 2 : 0) +
      +                    (!s.gzhead.extra ? 0 : 4) +
      +                    (!s.gzhead.name ? 0 : 8) +
      +                    (!s.gzhead.comment ? 0 : 16)
      +                );
      +        put_byte(s, s.gzhead.time & 0xff);
      +        put_byte(s, (s.gzhead.time >> 8) & 0xff);
      +        put_byte(s, (s.gzhead.time >> 16) & 0xff);
      +        put_byte(s, (s.gzhead.time >> 24) & 0xff);
      +        put_byte(s, s.level === 9 ? 2 :
      +                    (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ?
      +                     4 : 0));
      +        put_byte(s, s.gzhead.os & 0xff);
      +        if (s.gzhead.extra && s.gzhead.extra.length) {
      +          put_byte(s, s.gzhead.extra.length & 0xff);
      +          put_byte(s, (s.gzhead.extra.length >> 8) & 0xff);
      +        }
      +        if (s.gzhead.hcrc) {
      +          strm.adler = crc32(strm.adler, s.pending_buf, s.pending, 0);
      +        }
      +        s.gzindex = 0;
      +        s.status = EXTRA_STATE;
      +      }
      +    }
      +    else // DEFLATE header
      +    {
      +      var header = (Z_DEFLATED + ((s.w_bits - 8) << 4)) << 8;
      +      var level_flags = -1;
      +
      +      if (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2) {
      +        level_flags = 0;
      +      } else if (s.level < 6) {
      +        level_flags = 1;
      +      } else if (s.level === 6) {
      +        level_flags = 2;
      +      } else {
      +        level_flags = 3;
      +      }
      +      header |= (level_flags << 6);
      +      if (s.strstart !== 0) { header |= PRESET_DICT; }
      +      header += 31 - (header % 31);
      +
      +      s.status = BUSY_STATE;
      +      putShortMSB(s, header);
      +
      +      /* Save the adler32 of the preset dictionary: */
      +      if (s.strstart !== 0) {
      +        putShortMSB(s, strm.adler >>> 16);
      +        putShortMSB(s, strm.adler & 0xffff);
      +      }
      +      strm.adler = 1; // adler32(0L, Z_NULL, 0);
      +    }
      +  }
      +
      +//#ifdef GZIP
      +  if (s.status === EXTRA_STATE) {
      +    if (s.gzhead.extra/* != Z_NULL*/) {
      +      beg = s.pending;  /* start of bytes to update crc */
      +
      +      while (s.gzindex < (s.gzhead.extra.length & 0xffff)) {
      +        if (s.pending === s.pending_buf_size) {
      +          if (s.gzhead.hcrc && s.pending > beg) {
      +            strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
      +          }
      +          flush_pending(strm);
      +          beg = s.pending;
      +          if (s.pending === s.pending_buf_size) {
      +            break;
      +          }
      +        }
      +        put_byte(s, s.gzhead.extra[s.gzindex] & 0xff);
      +        s.gzindex++;
      +      }
      +      if (s.gzhead.hcrc && s.pending > beg) {
      +        strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
      +      }
      +      if (s.gzindex === s.gzhead.extra.length) {
      +        s.gzindex = 0;
      +        s.status = NAME_STATE;
      +      }
      +    }
      +    else {
      +      s.status = NAME_STATE;
      +    }
      +  }
      +  if (s.status === NAME_STATE) {
      +    if (s.gzhead.name/* != Z_NULL*/) {
      +      beg = s.pending;  /* start of bytes to update crc */
      +      //int val;
      +
      +      do {
      +        if (s.pending === s.pending_buf_size) {
      +          if (s.gzhead.hcrc && s.pending > beg) {
      +            strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
      +          }
      +          flush_pending(strm);
      +          beg = s.pending;
      +          if (s.pending === s.pending_buf_size) {
      +            val = 1;
      +            break;
      +          }
      +        }
      +        // JS specific: little magic to add zero terminator to end of string
      +        if (s.gzindex < s.gzhead.name.length) {
      +          val = s.gzhead.name.charCodeAt(s.gzindex++) & 0xff;
      +        } else {
      +          val = 0;
      +        }
      +        put_byte(s, val);
      +      } while (val !== 0);
      +
      +      if (s.gzhead.hcrc && s.pending > beg) {
      +        strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
      +      }
      +      if (val === 0) {
      +        s.gzindex = 0;
      +        s.status = COMMENT_STATE;
      +      }
      +    }
      +    else {
      +      s.status = COMMENT_STATE;
      +    }
      +  }
      +  if (s.status === COMMENT_STATE) {
      +    if (s.gzhead.comment/* != Z_NULL*/) {
      +      beg = s.pending;  /* start of bytes to update crc */
      +      //int val;
      +
      +      do {
      +        if (s.pending === s.pending_buf_size) {
      +          if (s.gzhead.hcrc && s.pending > beg) {
      +            strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
      +          }
      +          flush_pending(strm);
      +          beg = s.pending;
      +          if (s.pending === s.pending_buf_size) {
      +            val = 1;
      +            break;
      +          }
      +        }
      +        // JS specific: little magic to add zero terminator to end of string
      +        if (s.gzindex < s.gzhead.comment.length) {
      +          val = s.gzhead.comment.charCodeAt(s.gzindex++) & 0xff;
      +        } else {
      +          val = 0;
      +        }
      +        put_byte(s, val);
      +      } while (val !== 0);
      +
      +      if (s.gzhead.hcrc && s.pending > beg) {
      +        strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
      +      }
      +      if (val === 0) {
      +        s.status = HCRC_STATE;
      +      }
      +    }
      +    else {
      +      s.status = HCRC_STATE;
      +    }
      +  }
      +  if (s.status === HCRC_STATE) {
      +    if (s.gzhead.hcrc) {
      +      if (s.pending + 2 > s.pending_buf_size) {
      +        flush_pending(strm);
      +      }
      +      if (s.pending + 2 <= s.pending_buf_size) {
      +        put_byte(s, strm.adler & 0xff);
      +        put_byte(s, (strm.adler >> 8) & 0xff);
      +        strm.adler = 0; //crc32(0L, Z_NULL, 0);
      +        s.status = BUSY_STATE;
      +      }
      +    }
      +    else {
      +      s.status = BUSY_STATE;
      +    }
      +  }
      +//#endif
      +
      +  /* Flush as much pending output as possible */
      +  if (s.pending !== 0) {
      +    flush_pending(strm);
      +    if (strm.avail_out === 0) {
      +      /* Since avail_out is 0, deflate will be called again with
      +       * more output space, but possibly with both pending and
      +       * avail_in equal to zero. There won't be anything to do,
      +       * but this is not an error situation so make sure we
      +       * return OK instead of BUF_ERROR at next call of deflate:
      +       */
      +      s.last_flush = -1;
      +      return Z_OK;
      +    }
      +
      +    /* Make sure there is something to do and avoid duplicate consecutive
      +     * flushes. For repeated and useless calls with Z_FINISH, we keep
      +     * returning Z_STREAM_END instead of Z_BUF_ERROR.
      +     */
      +  } else if (strm.avail_in === 0 && rank(flush) <= rank(old_flush) &&
      +    flush !== Z_FINISH) {
      +    return err(strm, Z_BUF_ERROR);
      +  }
      +
      +  /* User must not provide more input after the first FINISH: */
      +  if (s.status === FINISH_STATE && strm.avail_in !== 0) {
      +    return err(strm, Z_BUF_ERROR);
      +  }
      +
      +  /* Start a new block or continue the current one.
      +   */
      +  if (strm.avail_in !== 0 || s.lookahead !== 0 ||
      +    (flush !== Z_NO_FLUSH && s.status !== FINISH_STATE)) {
      +    var bstate = (s.strategy === Z_HUFFMAN_ONLY) ? deflate_huff(s, flush) :
      +      (s.strategy === Z_RLE ? deflate_rle(s, flush) :
      +        configuration_table[s.level].func(s, flush));
      +
      +    if (bstate === BS_FINISH_STARTED || bstate === BS_FINISH_DONE) {
      +      s.status = FINISH_STATE;
      +    }
      +    if (bstate === BS_NEED_MORE || bstate === BS_FINISH_STARTED) {
      +      if (strm.avail_out === 0) {
      +        s.last_flush = -1;
      +        /* avoid BUF_ERROR next call, see above */
      +      }
      +      return Z_OK;
      +      /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
      +       * of deflate should use the same flush parameter to make sure
      +       * that the flush is complete. So we don't have to output an
      +       * empty block here, this will be done at next call. This also
      +       * ensures that for a very small output buffer, we emit at most
      +       * one empty block.
      +       */
      +    }
      +    if (bstate === BS_BLOCK_DONE) {
      +      if (flush === Z_PARTIAL_FLUSH) {
      +        trees._tr_align(s);
      +      }
      +      else if (flush !== Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
      +
      +        trees._tr_stored_block(s, 0, 0, false);
      +        /* For a full flush, this empty block will be recognized
      +         * as a special marker by inflate_sync().
      +         */
      +        if (flush === Z_FULL_FLUSH) {
      +          /*** CLEAR_HASH(s); ***/             /* forget history */
      +          zero(s.head); // Fill with NIL (= 0);
      +
      +          if (s.lookahead === 0) {
      +            s.strstart = 0;
      +            s.block_start = 0;
      +            s.insert = 0;
      +          }
      +        }
      +      }
      +      flush_pending(strm);
      +      if (strm.avail_out === 0) {
      +        s.last_flush = -1; /* avoid BUF_ERROR at next call, see above */
      +        return Z_OK;
      +      }
      +    }
      +  }
      +  //Assert(strm->avail_out > 0, "bug2");
      +  //if (strm.avail_out <= 0) { throw new Error("bug2");}
      +
      +  if (flush !== Z_FINISH) { return Z_OK; }
      +  if (s.wrap <= 0) { return Z_STREAM_END; }
      +
      +  /* Write the trailer */
      +  if (s.wrap === 2) {
      +    put_byte(s, strm.adler & 0xff);
      +    put_byte(s, (strm.adler >> 8) & 0xff);
      +    put_byte(s, (strm.adler >> 16) & 0xff);
      +    put_byte(s, (strm.adler >> 24) & 0xff);
      +    put_byte(s, strm.total_in & 0xff);
      +    put_byte(s, (strm.total_in >> 8) & 0xff);
      +    put_byte(s, (strm.total_in >> 16) & 0xff);
      +    put_byte(s, (strm.total_in >> 24) & 0xff);
      +  }
      +  else
      +  {
      +    putShortMSB(s, strm.adler >>> 16);
      +    putShortMSB(s, strm.adler & 0xffff);
      +  }
      +
      +  flush_pending(strm);
      +  /* If avail_out is zero, the application will call deflate again
      +   * to flush the rest.
      +   */
      +  if (s.wrap > 0) { s.wrap = -s.wrap; }
      +  /* write the trailer only once! */
      +  return s.pending !== 0 ? Z_OK : Z_STREAM_END;
      +}
      +
      +function deflateEnd(strm) {
      +  var status;
      +
      +  if (!strm/*== Z_NULL*/ || !strm.state/*== Z_NULL*/) {
      +    return Z_STREAM_ERROR;
      +  }
      +
      +  status = strm.state.status;
      +  if (status !== INIT_STATE &&
      +    status !== EXTRA_STATE &&
      +    status !== NAME_STATE &&
      +    status !== COMMENT_STATE &&
      +    status !== HCRC_STATE &&
      +    status !== BUSY_STATE &&
      +    status !== FINISH_STATE
      +  ) {
      +    return err(strm, Z_STREAM_ERROR);
      +  }
      +
      +  strm.state = null;
      +
      +  return status === BUSY_STATE ? err(strm, Z_DATA_ERROR) : Z_OK;
      +}
      +
      +
      +/* =========================================================================
      + * Initializes the compression dictionary from the given byte
      + * sequence without producing any compressed output.
      + */
      +function deflateSetDictionary(strm, dictionary) {
      +  var dictLength = dictionary.length;
      +
      +  var s;
      +  var str, n;
      +  var wrap;
      +  var avail;
      +  var next;
      +  var input;
      +  var tmpDict;
      +
      +  if (!strm/*== Z_NULL*/ || !strm.state/*== Z_NULL*/) {
      +    return Z_STREAM_ERROR;
      +  }
      +
      +  s = strm.state;
      +  wrap = s.wrap;
      +
      +  if (wrap === 2 || (wrap === 1 && s.status !== INIT_STATE) || s.lookahead) {
      +    return Z_STREAM_ERROR;
      +  }
      +
      +  /* when using zlib wrappers, compute Adler-32 for provided dictionary */
      +  if (wrap === 1) {
      +    /* adler32(strm->adler, dictionary, dictLength); */
      +    strm.adler = adler32(strm.adler, dictionary, dictLength, 0);
      +  }
      +
      +  s.wrap = 0;   /* avoid computing Adler-32 in read_buf */
      +
      +  /* if dictionary would fill window, just replace the history */
      +  if (dictLength >= s.w_size) {
      +    if (wrap === 0) {            /* already empty otherwise */
      +      /*** CLEAR_HASH(s); ***/
      +      zero(s.head); // Fill with NIL (= 0);
      +      s.strstart = 0;
      +      s.block_start = 0;
      +      s.insert = 0;
      +    }
      +    /* use the tail */
      +    // dictionary = dictionary.slice(dictLength - s.w_size);
      +    tmpDict = new utils.Buf8(s.w_size);
      +    utils.arraySet(tmpDict, dictionary, dictLength - s.w_size, s.w_size, 0);
      +    dictionary = tmpDict;
      +    dictLength = s.w_size;
      +  }
      +  /* insert dictionary into window and hash */
      +  avail = strm.avail_in;
      +  next = strm.next_in;
      +  input = strm.input;
      +  strm.avail_in = dictLength;
      +  strm.next_in = 0;
      +  strm.input = dictionary;
      +  fill_window(s);
      +  while (s.lookahead >= MIN_MATCH) {
      +    str = s.strstart;
      +    n = s.lookahead - (MIN_MATCH - 1);
      +    do {
      +      /* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */
      +      s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str + MIN_MATCH - 1]) & s.hash_mask;
      +
      +      s.prev[str & s.w_mask] = s.head[s.ins_h];
      +
      +      s.head[s.ins_h] = str;
      +      str++;
      +    } while (--n);
      +    s.strstart = str;
      +    s.lookahead = MIN_MATCH - 1;
      +    fill_window(s);
      +  }
      +  s.strstart += s.lookahead;
      +  s.block_start = s.strstart;
      +  s.insert = s.lookahead;
      +  s.lookahead = 0;
      +  s.match_length = s.prev_length = MIN_MATCH - 1;
      +  s.match_available = 0;
      +  strm.next_in = next;
      +  strm.input = input;
      +  strm.avail_in = avail;
      +  s.wrap = wrap;
      +  return Z_OK;
      +}
      +
      +
      +exports.deflateInit = deflateInit;
      +exports.deflateInit2 = deflateInit2;
      +exports.deflateReset = deflateReset;
      +exports.deflateResetKeep = deflateResetKeep;
      +exports.deflateSetHeader = deflateSetHeader;
      +exports.deflate = deflate;
      +exports.deflateEnd = deflateEnd;
      +exports.deflateSetDictionary = deflateSetDictionary;
      +exports.deflateInfo = 'pako deflate (from Nodeca project)';
      +
      +/* Not implemented
      +exports.deflateBound = deflateBound;
      +exports.deflateCopy = deflateCopy;
      +exports.deflateParams = deflateParams;
      +exports.deflatePending = deflatePending;
      +exports.deflatePrime = deflatePrime;
      +exports.deflateTune = deflateTune;
      +*/
      +
      +},{"../utils/common":41,"./adler32":43,"./crc32":45,"./messages":51,"./trees":52}],47:[function(require,module,exports){
      +'use strict';
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +function GZheader() {
      +  /* true if compressed data believed to be text */
      +  this.text       = 0;
      +  /* modification time */
      +  this.time       = 0;
      +  /* extra flags (not used when writing a gzip file) */
      +  this.xflags     = 0;
      +  /* operating system */
      +  this.os         = 0;
      +  /* pointer to extra field or Z_NULL if none */
      +  this.extra      = null;
      +  /* extra field length (valid if extra != Z_NULL) */
      +  this.extra_len  = 0; // Actually, we don't need it in JS,
      +                       // but leave for few code modifications
      +
      +  //
      +  // Setup limits is not necessary because in js we should not preallocate memory
      +  // for inflate use constant limit in 65536 bytes
      +  //
      +
      +  /* space at extra (only when reading header) */
      +  // this.extra_max  = 0;
      +  /* pointer to zero-terminated file name or Z_NULL */
      +  this.name       = '';
      +  /* space at name (only when reading header) */
      +  // this.name_max   = 0;
      +  /* pointer to zero-terminated comment or Z_NULL */
      +  this.comment    = '';
      +  /* space at comment (only when reading header) */
      +  // this.comm_max   = 0;
      +  /* true if there was or will be a header crc */
      +  this.hcrc       = 0;
      +  /* true when done reading gzip header (not used when writing a gzip file) */
      +  this.done       = false;
      +}
      +
      +module.exports = GZheader;
      +
      +},{}],48:[function(require,module,exports){
      +'use strict';
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +// See state defs from inflate.js
      +var BAD = 30;       /* got a data error -- remain here until reset */
      +var TYPE = 12;      /* i: waiting for type bits, including last-flag bit */
      +
      +/*
      +   Decode literal, length, and distance codes and write out the resulting
      +   literal and match bytes until either not enough input or output is
      +   available, an end-of-block is encountered, or a data error is encountered.
      +   When large enough input and output buffers are supplied to inflate(), for
      +   example, a 16K input buffer and a 64K output buffer, more than 95% of the
      +   inflate execution time is spent in this routine.
      +
      +   Entry assumptions:
      +
      +        state.mode === LEN
      +        strm.avail_in >= 6
      +        strm.avail_out >= 258
      +        start >= strm.avail_out
      +        state.bits < 8
      +
      +   On return, state.mode is one of:
      +
      +        LEN -- ran out of enough output space or enough available input
      +        TYPE -- reached end of block code, inflate() to interpret next block
      +        BAD -- error in block data
      +
      +   Notes:
      +
      +    - The maximum input bits used by a length/distance pair is 15 bits for the
      +      length code, 5 bits for the length extra, 15 bits for the distance code,
      +      and 13 bits for the distance extra.  This totals 48 bits, or six bytes.
      +      Therefore if strm.avail_in >= 6, then there is enough input to avoid
      +      checking for available input while decoding.
      +
      +    - The maximum bytes that a single length/distance pair can output is 258
      +      bytes, which is the maximum length that can be coded.  inflate_fast()
      +      requires strm.avail_out >= 258 for each loop to avoid checking for
      +      output space.
      + */
      +module.exports = function inflate_fast(strm, start) {
      +  var state;
      +  var _in;                    /* local strm.input */
      +  var last;                   /* have enough input while in < last */
      +  var _out;                   /* local strm.output */
      +  var beg;                    /* inflate()'s initial strm.output */
      +  var end;                    /* while out < end, enough space available */
      +//#ifdef INFLATE_STRICT
      +  var dmax;                   /* maximum distance from zlib header */
      +//#endif
      +  var wsize;                  /* window size or zero if not using window */
      +  var whave;                  /* valid bytes in the window */
      +  var wnext;                  /* window write index */
      +  // Use `s_window` instead `window`, avoid conflict with instrumentation tools
      +  var s_window;               /* allocated sliding window, if wsize != 0 */
      +  var hold;                   /* local strm.hold */
      +  var bits;                   /* local strm.bits */
      +  var lcode;                  /* local strm.lencode */
      +  var dcode;                  /* local strm.distcode */
      +  var lmask;                  /* mask for first level of length codes */
      +  var dmask;                  /* mask for first level of distance codes */
      +  var here;                   /* retrieved table entry */
      +  var op;                     /* code bits, operation, extra bits, or */
      +                              /*  window position, window bytes to copy */
      +  var len;                    /* match length, unused bytes */
      +  var dist;                   /* match distance */
      +  var from;                   /* where to copy match from */
      +  var from_source;
      +
      +
      +  var input, output; // JS specific, because we have no pointers
      +
      +  /* copy state to local variables */
      +  state = strm.state;
      +  //here = state.here;
      +  _in = strm.next_in;
      +  input = strm.input;
      +  last = _in + (strm.avail_in - 5);
      +  _out = strm.next_out;
      +  output = strm.output;
      +  beg = _out - (start - strm.avail_out);
      +  end = _out + (strm.avail_out - 257);
      +//#ifdef INFLATE_STRICT
      +  dmax = state.dmax;
      +//#endif
      +  wsize = state.wsize;
      +  whave = state.whave;
      +  wnext = state.wnext;
      +  s_window = state.window;
      +  hold = state.hold;
      +  bits = state.bits;
      +  lcode = state.lencode;
      +  dcode = state.distcode;
      +  lmask = (1 << state.lenbits) - 1;
      +  dmask = (1 << state.distbits) - 1;
      +
      +
      +  /* decode literals and length/distances until end-of-block or not enough
      +     input data or output space */
      +
      +  top:
      +  do {
      +    if (bits < 15) {
      +      hold += input[_in++] << bits;
      +      bits += 8;
      +      hold += input[_in++] << bits;
      +      bits += 8;
      +    }
      +
      +    here = lcode[hold & lmask];
      +
      +    dolen:
      +    for (;;) { // Goto emulation
      +      op = here >>> 24/*here.bits*/;
      +      hold >>>= op;
      +      bits -= op;
      +      op = (here >>> 16) & 0xff/*here.op*/;
      +      if (op === 0) {                          /* literal */
      +        //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
      +        //        "inflate:         literal '%c'\n" :
      +        //        "inflate:         literal 0x%02x\n", here.val));
      +        output[_out++] = here & 0xffff/*here.val*/;
      +      }
      +      else if (op & 16) {                     /* length base */
      +        len = here & 0xffff/*here.val*/;
      +        op &= 15;                           /* number of extra bits */
      +        if (op) {
      +          if (bits < op) {
      +            hold += input[_in++] << bits;
      +            bits += 8;
      +          }
      +          len += hold & ((1 << op) - 1);
      +          hold >>>= op;
      +          bits -= op;
      +        }
      +        //Tracevv((stderr, "inflate:         length %u\n", len));
      +        if (bits < 15) {
      +          hold += input[_in++] << bits;
      +          bits += 8;
      +          hold += input[_in++] << bits;
      +          bits += 8;
      +        }
      +        here = dcode[hold & dmask];
      +
      +        dodist:
      +        for (;;) { // goto emulation
      +          op = here >>> 24/*here.bits*/;
      +          hold >>>= op;
      +          bits -= op;
      +          op = (here >>> 16) & 0xff/*here.op*/;
      +
      +          if (op & 16) {                      /* distance base */
      +            dist = here & 0xffff/*here.val*/;
      +            op &= 15;                       /* number of extra bits */
      +            if (bits < op) {
      +              hold += input[_in++] << bits;
      +              bits += 8;
      +              if (bits < op) {
      +                hold += input[_in++] << bits;
      +                bits += 8;
      +              }
      +            }
      +            dist += hold & ((1 << op) - 1);
      +//#ifdef INFLATE_STRICT
      +            if (dist > dmax) {
      +              strm.msg = 'invalid distance too far back';
      +              state.mode = BAD;
      +              break top;
      +            }
      +//#endif
      +            hold >>>= op;
      +            bits -= op;
      +            //Tracevv((stderr, "inflate:         distance %u\n", dist));
      +            op = _out - beg;                /* max distance in output */
      +            if (dist > op) {                /* see if copy from window */
      +              op = dist - op;               /* distance back in window */
      +              if (op > whave) {
      +                if (state.sane) {
      +                  strm.msg = 'invalid distance too far back';
      +                  state.mode = BAD;
      +                  break top;
      +                }
      +
      +// (!) This block is disabled in zlib defailts,
      +// don't enable it for binary compatibility
      +//#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
      +//                if (len <= op - whave) {
      +//                  do {
      +//                    output[_out++] = 0;
      +//                  } while (--len);
      +//                  continue top;
      +//                }
      +//                len -= op - whave;
      +//                do {
      +//                  output[_out++] = 0;
      +//                } while (--op > whave);
      +//                if (op === 0) {
      +//                  from = _out - dist;
      +//                  do {
      +//                    output[_out++] = output[from++];
      +//                  } while (--len);
      +//                  continue top;
      +//                }
      +//#endif
      +              }
      +              from = 0; // window index
      +              from_source = s_window;
      +              if (wnext === 0) {           /* very common case */
      +                from += wsize - op;
      +                if (op < len) {         /* some from window */
      +                  len -= op;
      +                  do {
      +                    output[_out++] = s_window[from++];
      +                  } while (--op);
      +                  from = _out - dist;  /* rest from output */
      +                  from_source = output;
      +                }
      +              }
      +              else if (wnext < op) {      /* wrap around window */
      +                from += wsize + wnext - op;
      +                op -= wnext;
      +                if (op < len) {         /* some from end of window */
      +                  len -= op;
      +                  do {
      +                    output[_out++] = s_window[from++];
      +                  } while (--op);
      +                  from = 0;
      +                  if (wnext < len) {  /* some from start of window */
      +                    op = wnext;
      +                    len -= op;
      +                    do {
      +                      output[_out++] = s_window[from++];
      +                    } while (--op);
      +                    from = _out - dist;      /* rest from output */
      +                    from_source = output;
      +                  }
      +                }
      +              }
      +              else {                      /* contiguous in window */
      +                from += wnext - op;
      +                if (op < len) {         /* some from window */
      +                  len -= op;
      +                  do {
      +                    output[_out++] = s_window[from++];
      +                  } while (--op);
      +                  from = _out - dist;  /* rest from output */
      +                  from_source = output;
      +                }
      +              }
      +              while (len > 2) {
      +                output[_out++] = from_source[from++];
      +                output[_out++] = from_source[from++];
      +                output[_out++] = from_source[from++];
      +                len -= 3;
      +              }
      +              if (len) {
      +                output[_out++] = from_source[from++];
      +                if (len > 1) {
      +                  output[_out++] = from_source[from++];
      +                }
      +              }
      +            }
      +            else {
      +              from = _out - dist;          /* copy direct from output */
      +              do {                        /* minimum length is three */
      +                output[_out++] = output[from++];
      +                output[_out++] = output[from++];
      +                output[_out++] = output[from++];
      +                len -= 3;
      +              } while (len > 2);
      +              if (len) {
      +                output[_out++] = output[from++];
      +                if (len > 1) {
      +                  output[_out++] = output[from++];
      +                }
      +              }
      +            }
      +          }
      +          else if ((op & 64) === 0) {          /* 2nd level distance code */
      +            here = dcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))];
      +            continue dodist;
      +          }
      +          else {
      +            strm.msg = 'invalid distance code';
      +            state.mode = BAD;
      +            break top;
      +          }
      +
      +          break; // need to emulate goto via "continue"
      +        }
      +      }
      +      else if ((op & 64) === 0) {              /* 2nd level length code */
      +        here = lcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))];
      +        continue dolen;
      +      }
      +      else if (op & 32) {                     /* end-of-block */
      +        //Tracevv((stderr, "inflate:         end of block\n"));
      +        state.mode = TYPE;
      +        break top;
      +      }
      +      else {
      +        strm.msg = 'invalid literal/length code';
      +        state.mode = BAD;
      +        break top;
      +      }
      +
      +      break; // need to emulate goto via "continue"
      +    }
      +  } while (_in < last && _out < end);
      +
      +  /* return unused bytes (on entry, bits < 8, so in won't go too far back) */
      +  len = bits >> 3;
      +  _in -= len;
      +  bits -= len << 3;
      +  hold &= (1 << bits) - 1;
      +
      +  /* update state and return */
      +  strm.next_in = _in;
      +  strm.next_out = _out;
      +  strm.avail_in = (_in < last ? 5 + (last - _in) : 5 - (_in - last));
      +  strm.avail_out = (_out < end ? 257 + (end - _out) : 257 - (_out - end));
      +  state.hold = hold;
      +  state.bits = bits;
      +  return;
      +};
      +
      +},{}],49:[function(require,module,exports){
      +'use strict';
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +var utils         = require('../utils/common');
      +var adler32       = require('./adler32');
      +var crc32         = require('./crc32');
      +var inflate_fast  = require('./inffast');
      +var inflate_table = require('./inftrees');
      +
      +var CODES = 0;
      +var LENS = 1;
      +var DISTS = 2;
      +
      +/* Public constants ==========================================================*/
      +/* ===========================================================================*/
      +
      +
      +/* Allowed flush values; see deflate() and inflate() below for details */
      +//var Z_NO_FLUSH      = 0;
      +//var Z_PARTIAL_FLUSH = 1;
      +//var Z_SYNC_FLUSH    = 2;
      +//var Z_FULL_FLUSH    = 3;
      +var Z_FINISH        = 4;
      +var Z_BLOCK         = 5;
      +var Z_TREES         = 6;
      +
      +
      +/* Return codes for the compression/decompression functions. Negative values
      + * are errors, positive values are used for special but normal events.
      + */
      +var Z_OK            = 0;
      +var Z_STREAM_END    = 1;
      +var Z_NEED_DICT     = 2;
      +//var Z_ERRNO         = -1;
      +var Z_STREAM_ERROR  = -2;
      +var Z_DATA_ERROR    = -3;
      +var Z_MEM_ERROR     = -4;
      +var Z_BUF_ERROR     = -5;
      +//var Z_VERSION_ERROR = -6;
      +
      +/* The deflate compression method */
      +var Z_DEFLATED  = 8;
      +
      +
      +/* STATES ====================================================================*/
      +/* ===========================================================================*/
      +
      +
      +var    HEAD = 1;       /* i: waiting for magic header */
      +var    FLAGS = 2;      /* i: waiting for method and flags (gzip) */
      +var    TIME = 3;       /* i: waiting for modification time (gzip) */
      +var    OS = 4;         /* i: waiting for extra flags and operating system (gzip) */
      +var    EXLEN = 5;      /* i: waiting for extra length (gzip) */
      +var    EXTRA = 6;      /* i: waiting for extra bytes (gzip) */
      +var    NAME = 7;       /* i: waiting for end of file name (gzip) */
      +var    COMMENT = 8;    /* i: waiting for end of comment (gzip) */
      +var    HCRC = 9;       /* i: waiting for header crc (gzip) */
      +var    DICTID = 10;    /* i: waiting for dictionary check value */
      +var    DICT = 11;      /* waiting for inflateSetDictionary() call */
      +var        TYPE = 12;      /* i: waiting for type bits, including last-flag bit */
      +var        TYPEDO = 13;    /* i: same, but skip check to exit inflate on new block */
      +var        STORED = 14;    /* i: waiting for stored size (length and complement) */
      +var        COPY_ = 15;     /* i/o: same as COPY below, but only first time in */
      +var        COPY = 16;      /* i/o: waiting for input or output to copy stored block */
      +var        TABLE = 17;     /* i: waiting for dynamic block table lengths */
      +var        LENLENS = 18;   /* i: waiting for code length code lengths */
      +var        CODELENS = 19;  /* i: waiting for length/lit and distance code lengths */
      +var            LEN_ = 20;      /* i: same as LEN below, but only first time in */
      +var            LEN = 21;       /* i: waiting for length/lit/eob code */
      +var            LENEXT = 22;    /* i: waiting for length extra bits */
      +var            DIST = 23;      /* i: waiting for distance code */
      +var            DISTEXT = 24;   /* i: waiting for distance extra bits */
      +var            MATCH = 25;     /* o: waiting for output space to copy string */
      +var            LIT = 26;       /* o: waiting for output space to write literal */
      +var    CHECK = 27;     /* i: waiting for 32-bit check value */
      +var    LENGTH = 28;    /* i: waiting for 32-bit length (gzip) */
      +var    DONE = 29;      /* finished check, done -- remain here until reset */
      +var    BAD = 30;       /* got a data error -- remain here until reset */
      +var    MEM = 31;       /* got an inflate() memory error -- remain here until reset */
      +var    SYNC = 32;      /* looking for synchronization bytes to restart inflate() */
      +
      +/* ===========================================================================*/
      +
      +
      +
      +var ENOUGH_LENS = 852;
      +var ENOUGH_DISTS = 592;
      +//var ENOUGH =  (ENOUGH_LENS+ENOUGH_DISTS);
      +
      +var MAX_WBITS = 15;
      +/* 32K LZ77 window */
      +var DEF_WBITS = MAX_WBITS;
      +
      +
      +function zswap32(q) {
      +  return  (((q >>> 24) & 0xff) +
      +          ((q >>> 8) & 0xff00) +
      +          ((q & 0xff00) << 8) +
      +          ((q & 0xff) << 24));
      +}
      +
      +
      +function InflateState() {
      +  this.mode = 0;             /* current inflate mode */
      +  this.last = false;          /* true if processing last block */
      +  this.wrap = 0;              /* bit 0 true for zlib, bit 1 true for gzip */
      +  this.havedict = false;      /* true if dictionary provided */
      +  this.flags = 0;             /* gzip header method and flags (0 if zlib) */
      +  this.dmax = 0;              /* zlib header max distance (INFLATE_STRICT) */
      +  this.check = 0;             /* protected copy of check value */
      +  this.total = 0;             /* protected copy of output count */
      +  // TODO: may be {}
      +  this.head = null;           /* where to save gzip header information */
      +
      +  /* sliding window */
      +  this.wbits = 0;             /* log base 2 of requested window size */
      +  this.wsize = 0;             /* window size or zero if not using window */
      +  this.whave = 0;             /* valid bytes in the window */
      +  this.wnext = 0;             /* window write index */
      +  this.window = null;         /* allocated sliding window, if needed */
      +
      +  /* bit accumulator */
      +  this.hold = 0;              /* input bit accumulator */
      +  this.bits = 0;              /* number of bits in "in" */
      +
      +  /* for string and stored block copying */
      +  this.length = 0;            /* literal or length of data to copy */
      +  this.offset = 0;            /* distance back to copy string from */
      +
      +  /* for table and code decoding */
      +  this.extra = 0;             /* extra bits needed */
      +
      +  /* fixed and dynamic code tables */
      +  this.lencode = null;          /* starting table for length/literal codes */
      +  this.distcode = null;         /* starting table for distance codes */
      +  this.lenbits = 0;           /* index bits for lencode */
      +  this.distbits = 0;          /* index bits for distcode */
      +
      +  /* dynamic table building */
      +  this.ncode = 0;             /* number of code length code lengths */
      +  this.nlen = 0;              /* number of length code lengths */
      +  this.ndist = 0;             /* number of distance code lengths */
      +  this.have = 0;              /* number of code lengths in lens[] */
      +  this.next = null;              /* next available space in codes[] */
      +
      +  this.lens = new utils.Buf16(320); /* temporary storage for code lengths */
      +  this.work = new utils.Buf16(288); /* work area for code table building */
      +
      +  /*
      +   because we don't have pointers in js, we use lencode and distcode directly
      +   as buffers so we don't need codes
      +  */
      +  //this.codes = new utils.Buf32(ENOUGH);       /* space for code tables */
      +  this.lendyn = null;              /* dynamic table for length/literal codes (JS specific) */
      +  this.distdyn = null;             /* dynamic table for distance codes (JS specific) */
      +  this.sane = 0;                   /* if false, allow invalid distance too far */
      +  this.back = 0;                   /* bits back of last unprocessed length/lit */
      +  this.was = 0;                    /* initial length of match */
      +}
      +
      +function inflateResetKeep(strm) {
      +  var state;
      +
      +  if (!strm || !strm.state) { return Z_STREAM_ERROR; }
      +  state = strm.state;
      +  strm.total_in = strm.total_out = state.total = 0;
      +  strm.msg = ''; /*Z_NULL*/
      +  if (state.wrap) {       /* to support ill-conceived Java test suite */
      +    strm.adler = state.wrap & 1;
      +  }
      +  state.mode = HEAD;
      +  state.last = 0;
      +  state.havedict = 0;
      +  state.dmax = 32768;
      +  state.head = null/*Z_NULL*/;
      +  state.hold = 0;
      +  state.bits = 0;
      +  //state.lencode = state.distcode = state.next = state.codes;
      +  state.lencode = state.lendyn = new utils.Buf32(ENOUGH_LENS);
      +  state.distcode = state.distdyn = new utils.Buf32(ENOUGH_DISTS);
      +
      +  state.sane = 1;
      +  state.back = -1;
      +  //Tracev((stderr, "inflate: reset\n"));
      +  return Z_OK;
      +}
      +
      +function inflateReset(strm) {
      +  var state;
      +
      +  if (!strm || !strm.state) { return Z_STREAM_ERROR; }
      +  state = strm.state;
      +  state.wsize = 0;
      +  state.whave = 0;
      +  state.wnext = 0;
      +  return inflateResetKeep(strm);
      +
      +}
      +
      +function inflateReset2(strm, windowBits) {
      +  var wrap;
      +  var state;
      +
      +  /* get the state */
      +  if (!strm || !strm.state) { return Z_STREAM_ERROR; }
      +  state = strm.state;
      +
      +  /* extract wrap request from windowBits parameter */
      +  if (windowBits < 0) {
      +    wrap = 0;
      +    windowBits = -windowBits;
      +  }
      +  else {
      +    wrap = (windowBits >> 4) + 1;
      +    if (windowBits < 48) {
      +      windowBits &= 15;
      +    }
      +  }
      +
      +  /* set number of window bits, free window if different */
      +  if (windowBits && (windowBits < 8 || windowBits > 15)) {
      +    return Z_STREAM_ERROR;
      +  }
      +  if (state.window !== null && state.wbits !== windowBits) {
      +    state.window = null;
      +  }
      +
      +  /* update state and reset the rest of it */
      +  state.wrap = wrap;
      +  state.wbits = windowBits;
      +  return inflateReset(strm);
      +}
      +
      +function inflateInit2(strm, windowBits) {
      +  var ret;
      +  var state;
      +
      +  if (!strm) { return Z_STREAM_ERROR; }
      +  //strm.msg = Z_NULL;                 /* in case we return an error */
      +
      +  state = new InflateState();
      +
      +  //if (state === Z_NULL) return Z_MEM_ERROR;
      +  //Tracev((stderr, "inflate: allocated\n"));
      +  strm.state = state;
      +  state.window = null/*Z_NULL*/;
      +  ret = inflateReset2(strm, windowBits);
      +  if (ret !== Z_OK) {
      +    strm.state = null/*Z_NULL*/;
      +  }
      +  return ret;
      +}
      +
      +function inflateInit(strm) {
      +  return inflateInit2(strm, DEF_WBITS);
      +}
      +
      +
      +/*
      + Return state with length and distance decoding tables and index sizes set to
      + fixed code decoding.  Normally this returns fixed tables from inffixed.h.
      + If BUILDFIXED is defined, then instead this routine builds the tables the
      + first time it's called, and returns those tables the first time and
      + thereafter.  This reduces the size of the code by about 2K bytes, in
      + exchange for a little execution time.  However, BUILDFIXED should not be
      + used for threaded applications, since the rewriting of the tables and virgin
      + may not be thread-safe.
      + */
      +var virgin = true;
      +
      +var lenfix, distfix; // We have no pointers in JS, so keep tables separate
      +
      +function fixedtables(state) {
      +  /* build fixed huffman tables if first call (may not be thread safe) */
      +  if (virgin) {
      +    var sym;
      +
      +    lenfix = new utils.Buf32(512);
      +    distfix = new utils.Buf32(32);
      +
      +    /* literal/length table */
      +    sym = 0;
      +    while (sym < 144) { state.lens[sym++] = 8; }
      +    while (sym < 256) { state.lens[sym++] = 9; }
      +    while (sym < 280) { state.lens[sym++] = 7; }
      +    while (sym < 288) { state.lens[sym++] = 8; }
      +
      +    inflate_table(LENS,  state.lens, 0, 288, lenfix,   0, state.work, { bits: 9 });
      +
      +    /* distance table */
      +    sym = 0;
      +    while (sym < 32) { state.lens[sym++] = 5; }
      +
      +    inflate_table(DISTS, state.lens, 0, 32,   distfix, 0, state.work, { bits: 5 });
      +
      +    /* do this just once */
      +    virgin = false;
      +  }
      +
      +  state.lencode = lenfix;
      +  state.lenbits = 9;
      +  state.distcode = distfix;
      +  state.distbits = 5;
      +}
      +
      +
      +/*
      + Update the window with the last wsize (normally 32K) bytes written before
      + returning.  If window does not exist yet, create it.  This is only called
      + when a window is already in use, or when output has been written during this
      + inflate call, but the end of the deflate stream has not been reached yet.
      + It is also called to create a window for dictionary data when a dictionary
      + is loaded.
      +
      + Providing output buffers larger than 32K to inflate() should provide a speed
      + advantage, since only the last 32K of output is copied to the sliding window
      + upon return from inflate(), and since all distances after the first 32K of
      + output will fall in the output data, making match copies simpler and faster.
      + The advantage may be dependent on the size of the processor's data caches.
      + */
      +function updatewindow(strm, src, end, copy) {
      +  var dist;
      +  var state = strm.state;
      +
      +  /* if it hasn't been done already, allocate space for the window */
      +  if (state.window === null) {
      +    state.wsize = 1 << state.wbits;
      +    state.wnext = 0;
      +    state.whave = 0;
      +
      +    state.window = new utils.Buf8(state.wsize);
      +  }
      +
      +  /* copy state->wsize or less output bytes into the circular window */
      +  if (copy >= state.wsize) {
      +    utils.arraySet(state.window, src, end - state.wsize, state.wsize, 0);
      +    state.wnext = 0;
      +    state.whave = state.wsize;
      +  }
      +  else {
      +    dist = state.wsize - state.wnext;
      +    if (dist > copy) {
      +      dist = copy;
      +    }
      +    //zmemcpy(state->window + state->wnext, end - copy, dist);
      +    utils.arraySet(state.window, src, end - copy, dist, state.wnext);
      +    copy -= dist;
      +    if (copy) {
      +      //zmemcpy(state->window, end - copy, copy);
      +      utils.arraySet(state.window, src, end - copy, copy, 0);
      +      state.wnext = copy;
      +      state.whave = state.wsize;
      +    }
      +    else {
      +      state.wnext += dist;
      +      if (state.wnext === state.wsize) { state.wnext = 0; }
      +      if (state.whave < state.wsize) { state.whave += dist; }
      +    }
      +  }
      +  return 0;
      +}
      +
      +function inflate(strm, flush) {
      +  var state;
      +  var input, output;          // input/output buffers
      +  var next;                   /* next input INDEX */
      +  var put;                    /* next output INDEX */
      +  var have, left;             /* available input and output */
      +  var hold;                   /* bit buffer */
      +  var bits;                   /* bits in bit buffer */
      +  var _in, _out;              /* save starting available input and output */
      +  var copy;                   /* number of stored or match bytes to copy */
      +  var from;                   /* where to copy match bytes from */
      +  var from_source;
      +  var here = 0;               /* current decoding table entry */
      +  var here_bits, here_op, here_val; // paked "here" denormalized (JS specific)
      +  //var last;                   /* parent table entry */
      +  var last_bits, last_op, last_val; // paked "last" denormalized (JS specific)
      +  var len;                    /* length to copy for repeats, bits to drop */
      +  var ret;                    /* return code */
      +  var hbuf = new utils.Buf8(4);    /* buffer for gzip header crc calculation */
      +  var opts;
      +
      +  var n; // temporary var for NEED_BITS
      +
      +  var order = /* permutation of code lengths */
      +    [ 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 ];
      +
      +
      +  if (!strm || !strm.state || !strm.output ||
      +      (!strm.input && strm.avail_in !== 0)) {
      +    return Z_STREAM_ERROR;
      +  }
      +
      +  state = strm.state;
      +  if (state.mode === TYPE) { state.mode = TYPEDO; }    /* skip check */
      +
      +
      +  //--- LOAD() ---
      +  put = strm.next_out;
      +  output = strm.output;
      +  left = strm.avail_out;
      +  next = strm.next_in;
      +  input = strm.input;
      +  have = strm.avail_in;
      +  hold = state.hold;
      +  bits = state.bits;
      +  //---
      +
      +  _in = have;
      +  _out = left;
      +  ret = Z_OK;
      +
      +  inf_leave: // goto emulation
      +  for (;;) {
      +    switch (state.mode) {
      +    case HEAD:
      +      if (state.wrap === 0) {
      +        state.mode = TYPEDO;
      +        break;
      +      }
      +      //=== NEEDBITS(16);
      +      while (bits < 16) {
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +      }
      +      //===//
      +      if ((state.wrap & 2) && hold === 0x8b1f) {  /* gzip header */
      +        state.check = 0/*crc32(0L, Z_NULL, 0)*/;
      +        //=== CRC2(state.check, hold);
      +        hbuf[0] = hold & 0xff;
      +        hbuf[1] = (hold >>> 8) & 0xff;
      +        state.check = crc32(state.check, hbuf, 2, 0);
      +        //===//
      +
      +        //=== INITBITS();
      +        hold = 0;
      +        bits = 0;
      +        //===//
      +        state.mode = FLAGS;
      +        break;
      +      }
      +      state.flags = 0;           /* expect zlib header */
      +      if (state.head) {
      +        state.head.done = false;
      +      }
      +      if (!(state.wrap & 1) ||   /* check if zlib header allowed */
      +        (((hold & 0xff)/*BITS(8)*/ << 8) + (hold >> 8)) % 31) {
      +        strm.msg = 'incorrect header check';
      +        state.mode = BAD;
      +        break;
      +      }
      +      if ((hold & 0x0f)/*BITS(4)*/ !== Z_DEFLATED) {
      +        strm.msg = 'unknown compression method';
      +        state.mode = BAD;
      +        break;
      +      }
      +      //--- DROPBITS(4) ---//
      +      hold >>>= 4;
      +      bits -= 4;
      +      //---//
      +      len = (hold & 0x0f)/*BITS(4)*/ + 8;
      +      if (state.wbits === 0) {
      +        state.wbits = len;
      +      }
      +      else if (len > state.wbits) {
      +        strm.msg = 'invalid window size';
      +        state.mode = BAD;
      +        break;
      +      }
      +      state.dmax = 1 << len;
      +      //Tracev((stderr, "inflate:   zlib header ok\n"));
      +      strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/;
      +      state.mode = hold & 0x200 ? DICTID : TYPE;
      +      //=== INITBITS();
      +      hold = 0;
      +      bits = 0;
      +      //===//
      +      break;
      +    case FLAGS:
      +      //=== NEEDBITS(16); */
      +      while (bits < 16) {
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +      }
      +      //===//
      +      state.flags = hold;
      +      if ((state.flags & 0xff) !== Z_DEFLATED) {
      +        strm.msg = 'unknown compression method';
      +        state.mode = BAD;
      +        break;
      +      }
      +      if (state.flags & 0xe000) {
      +        strm.msg = 'unknown header flags set';
      +        state.mode = BAD;
      +        break;
      +      }
      +      if (state.head) {
      +        state.head.text = ((hold >> 8) & 1);
      +      }
      +      if (state.flags & 0x0200) {
      +        //=== CRC2(state.check, hold);
      +        hbuf[0] = hold & 0xff;
      +        hbuf[1] = (hold >>> 8) & 0xff;
      +        state.check = crc32(state.check, hbuf, 2, 0);
      +        //===//
      +      }
      +      //=== INITBITS();
      +      hold = 0;
      +      bits = 0;
      +      //===//
      +      state.mode = TIME;
      +      /* falls through */
      +    case TIME:
      +      //=== NEEDBITS(32); */
      +      while (bits < 32) {
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +      }
      +      //===//
      +      if (state.head) {
      +        state.head.time = hold;
      +      }
      +      if (state.flags & 0x0200) {
      +        //=== CRC4(state.check, hold)
      +        hbuf[0] = hold & 0xff;
      +        hbuf[1] = (hold >>> 8) & 0xff;
      +        hbuf[2] = (hold >>> 16) & 0xff;
      +        hbuf[3] = (hold >>> 24) & 0xff;
      +        state.check = crc32(state.check, hbuf, 4, 0);
      +        //===
      +      }
      +      //=== INITBITS();
      +      hold = 0;
      +      bits = 0;
      +      //===//
      +      state.mode = OS;
      +      /* falls through */
      +    case OS:
      +      //=== NEEDBITS(16); */
      +      while (bits < 16) {
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +      }
      +      //===//
      +      if (state.head) {
      +        state.head.xflags = (hold & 0xff);
      +        state.head.os = (hold >> 8);
      +      }
      +      if (state.flags & 0x0200) {
      +        //=== CRC2(state.check, hold);
      +        hbuf[0] = hold & 0xff;
      +        hbuf[1] = (hold >>> 8) & 0xff;
      +        state.check = crc32(state.check, hbuf, 2, 0);
      +        //===//
      +      }
      +      //=== INITBITS();
      +      hold = 0;
      +      bits = 0;
      +      //===//
      +      state.mode = EXLEN;
      +      /* falls through */
      +    case EXLEN:
      +      if (state.flags & 0x0400) {
      +        //=== NEEDBITS(16); */
      +        while (bits < 16) {
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          hold += input[next++] << bits;
      +          bits += 8;
      +        }
      +        //===//
      +        state.length = hold;
      +        if (state.head) {
      +          state.head.extra_len = hold;
      +        }
      +        if (state.flags & 0x0200) {
      +          //=== CRC2(state.check, hold);
      +          hbuf[0] = hold & 0xff;
      +          hbuf[1] = (hold >>> 8) & 0xff;
      +          state.check = crc32(state.check, hbuf, 2, 0);
      +          //===//
      +        }
      +        //=== INITBITS();
      +        hold = 0;
      +        bits = 0;
      +        //===//
      +      }
      +      else if (state.head) {
      +        state.head.extra = null/*Z_NULL*/;
      +      }
      +      state.mode = EXTRA;
      +      /* falls through */
      +    case EXTRA:
      +      if (state.flags & 0x0400) {
      +        copy = state.length;
      +        if (copy > have) { copy = have; }
      +        if (copy) {
      +          if (state.head) {
      +            len = state.head.extra_len - state.length;
      +            if (!state.head.extra) {
      +              // Use untyped array for more conveniend processing later
      +              state.head.extra = new Array(state.head.extra_len);
      +            }
      +            utils.arraySet(
      +              state.head.extra,
      +              input,
      +              next,
      +              // extra field is limited to 65536 bytes
      +              // - no need for additional size check
      +              copy,
      +              /*len + copy > state.head.extra_max - len ? state.head.extra_max : copy,*/
      +              len
      +            );
      +            //zmemcpy(state.head.extra + len, next,
      +            //        len + copy > state.head.extra_max ?
      +            //        state.head.extra_max - len : copy);
      +          }
      +          if (state.flags & 0x0200) {
      +            state.check = crc32(state.check, input, copy, next);
      +          }
      +          have -= copy;
      +          next += copy;
      +          state.length -= copy;
      +        }
      +        if (state.length) { break inf_leave; }
      +      }
      +      state.length = 0;
      +      state.mode = NAME;
      +      /* falls through */
      +    case NAME:
      +      if (state.flags & 0x0800) {
      +        if (have === 0) { break inf_leave; }
      +        copy = 0;
      +        do {
      +          // TODO: 2 or 1 bytes?
      +          len = input[next + copy++];
      +          /* use constant limit because in js we should not preallocate memory */
      +          if (state.head && len &&
      +              (state.length < 65536 /*state.head.name_max*/)) {
      +            state.head.name += String.fromCharCode(len);
      +          }
      +        } while (len && copy < have);
      +
      +        if (state.flags & 0x0200) {
      +          state.check = crc32(state.check, input, copy, next);
      +        }
      +        have -= copy;
      +        next += copy;
      +        if (len) { break inf_leave; }
      +      }
      +      else if (state.head) {
      +        state.head.name = null;
      +      }
      +      state.length = 0;
      +      state.mode = COMMENT;
      +      /* falls through */
      +    case COMMENT:
      +      if (state.flags & 0x1000) {
      +        if (have === 0) { break inf_leave; }
      +        copy = 0;
      +        do {
      +          len = input[next + copy++];
      +          /* use constant limit because in js we should not preallocate memory */
      +          if (state.head && len &&
      +              (state.length < 65536 /*state.head.comm_max*/)) {
      +            state.head.comment += String.fromCharCode(len);
      +          }
      +        } while (len && copy < have);
      +        if (state.flags & 0x0200) {
      +          state.check = crc32(state.check, input, copy, next);
      +        }
      +        have -= copy;
      +        next += copy;
      +        if (len) { break inf_leave; }
      +      }
      +      else if (state.head) {
      +        state.head.comment = null;
      +      }
      +      state.mode = HCRC;
      +      /* falls through */
      +    case HCRC:
      +      if (state.flags & 0x0200) {
      +        //=== NEEDBITS(16); */
      +        while (bits < 16) {
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          hold += input[next++] << bits;
      +          bits += 8;
      +        }
      +        //===//
      +        if (hold !== (state.check & 0xffff)) {
      +          strm.msg = 'header crc mismatch';
      +          state.mode = BAD;
      +          break;
      +        }
      +        //=== INITBITS();
      +        hold = 0;
      +        bits = 0;
      +        //===//
      +      }
      +      if (state.head) {
      +        state.head.hcrc = ((state.flags >> 9) & 1);
      +        state.head.done = true;
      +      }
      +      strm.adler = state.check = 0;
      +      state.mode = TYPE;
      +      break;
      +    case DICTID:
      +      //=== NEEDBITS(32); */
      +      while (bits < 32) {
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +      }
      +      //===//
      +      strm.adler = state.check = zswap32(hold);
      +      //=== INITBITS();
      +      hold = 0;
      +      bits = 0;
      +      //===//
      +      state.mode = DICT;
      +      /* falls through */
      +    case DICT:
      +      if (state.havedict === 0) {
      +        //--- RESTORE() ---
      +        strm.next_out = put;
      +        strm.avail_out = left;
      +        strm.next_in = next;
      +        strm.avail_in = have;
      +        state.hold = hold;
      +        state.bits = bits;
      +        //---
      +        return Z_NEED_DICT;
      +      }
      +      strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/;
      +      state.mode = TYPE;
      +      /* falls through */
      +    case TYPE:
      +      if (flush === Z_BLOCK || flush === Z_TREES) { break inf_leave; }
      +      /* falls through */
      +    case TYPEDO:
      +      if (state.last) {
      +        //--- BYTEBITS() ---//
      +        hold >>>= bits & 7;
      +        bits -= bits & 7;
      +        //---//
      +        state.mode = CHECK;
      +        break;
      +      }
      +      //=== NEEDBITS(3); */
      +      while (bits < 3) {
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +      }
      +      //===//
      +      state.last = (hold & 0x01)/*BITS(1)*/;
      +      //--- DROPBITS(1) ---//
      +      hold >>>= 1;
      +      bits -= 1;
      +      //---//
      +
      +      switch ((hold & 0x03)/*BITS(2)*/) {
      +      case 0:                             /* stored block */
      +        //Tracev((stderr, "inflate:     stored block%s\n",
      +        //        state.last ? " (last)" : ""));
      +        state.mode = STORED;
      +        break;
      +      case 1:                             /* fixed block */
      +        fixedtables(state);
      +        //Tracev((stderr, "inflate:     fixed codes block%s\n",
      +        //        state.last ? " (last)" : ""));
      +        state.mode = LEN_;             /* decode codes */
      +        if (flush === Z_TREES) {
      +          //--- DROPBITS(2) ---//
      +          hold >>>= 2;
      +          bits -= 2;
      +          //---//
      +          break inf_leave;
      +        }
      +        break;
      +      case 2:                             /* dynamic block */
      +        //Tracev((stderr, "inflate:     dynamic codes block%s\n",
      +        //        state.last ? " (last)" : ""));
      +        state.mode = TABLE;
      +        break;
      +      case 3:
      +        strm.msg = 'invalid block type';
      +        state.mode = BAD;
      +      }
      +      //--- DROPBITS(2) ---//
      +      hold >>>= 2;
      +      bits -= 2;
      +      //---//
      +      break;
      +    case STORED:
      +      //--- BYTEBITS() ---// /* go to byte boundary */
      +      hold >>>= bits & 7;
      +      bits -= bits & 7;
      +      //---//
      +      //=== NEEDBITS(32); */
      +      while (bits < 32) {
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +      }
      +      //===//
      +      if ((hold & 0xffff) !== ((hold >>> 16) ^ 0xffff)) {
      +        strm.msg = 'invalid stored block lengths';
      +        state.mode = BAD;
      +        break;
      +      }
      +      state.length = hold & 0xffff;
      +      //Tracev((stderr, "inflate:       stored length %u\n",
      +      //        state.length));
      +      //=== INITBITS();
      +      hold = 0;
      +      bits = 0;
      +      //===//
      +      state.mode = COPY_;
      +      if (flush === Z_TREES) { break inf_leave; }
      +      /* falls through */
      +    case COPY_:
      +      state.mode = COPY;
      +      /* falls through */
      +    case COPY:
      +      copy = state.length;
      +      if (copy) {
      +        if (copy > have) { copy = have; }
      +        if (copy > left) { copy = left; }
      +        if (copy === 0) { break inf_leave; }
      +        //--- zmemcpy(put, next, copy); ---
      +        utils.arraySet(output, input, next, copy, put);
      +        //---//
      +        have -= copy;
      +        next += copy;
      +        left -= copy;
      +        put += copy;
      +        state.length -= copy;
      +        break;
      +      }
      +      //Tracev((stderr, "inflate:       stored end\n"));
      +      state.mode = TYPE;
      +      break;
      +    case TABLE:
      +      //=== NEEDBITS(14); */
      +      while (bits < 14) {
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +      }
      +      //===//
      +      state.nlen = (hold & 0x1f)/*BITS(5)*/ + 257;
      +      //--- DROPBITS(5) ---//
      +      hold >>>= 5;
      +      bits -= 5;
      +      //---//
      +      state.ndist = (hold & 0x1f)/*BITS(5)*/ + 1;
      +      //--- DROPBITS(5) ---//
      +      hold >>>= 5;
      +      bits -= 5;
      +      //---//
      +      state.ncode = (hold & 0x0f)/*BITS(4)*/ + 4;
      +      //--- DROPBITS(4) ---//
      +      hold >>>= 4;
      +      bits -= 4;
      +      //---//
      +//#ifndef PKZIP_BUG_WORKAROUND
      +      if (state.nlen > 286 || state.ndist > 30) {
      +        strm.msg = 'too many length or distance symbols';
      +        state.mode = BAD;
      +        break;
      +      }
      +//#endif
      +      //Tracev((stderr, "inflate:       table sizes ok\n"));
      +      state.have = 0;
      +      state.mode = LENLENS;
      +      /* falls through */
      +    case LENLENS:
      +      while (state.have < state.ncode) {
      +        //=== NEEDBITS(3);
      +        while (bits < 3) {
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          hold += input[next++] << bits;
      +          bits += 8;
      +        }
      +        //===//
      +        state.lens[order[state.have++]] = (hold & 0x07);//BITS(3);
      +        //--- DROPBITS(3) ---//
      +        hold >>>= 3;
      +        bits -= 3;
      +        //---//
      +      }
      +      while (state.have < 19) {
      +        state.lens[order[state.have++]] = 0;
      +      }
      +      // We have separate tables & no pointers. 2 commented lines below not needed.
      +      //state.next = state.codes;
      +      //state.lencode = state.next;
      +      // Switch to use dynamic table
      +      state.lencode = state.lendyn;
      +      state.lenbits = 7;
      +
      +      opts = { bits: state.lenbits };
      +      ret = inflate_table(CODES, state.lens, 0, 19, state.lencode, 0, state.work, opts);
      +      state.lenbits = opts.bits;
      +
      +      if (ret) {
      +        strm.msg = 'invalid code lengths set';
      +        state.mode = BAD;
      +        break;
      +      }
      +      //Tracev((stderr, "inflate:       code lengths ok\n"));
      +      state.have = 0;
      +      state.mode = CODELENS;
      +      /* falls through */
      +    case CODELENS:
      +      while (state.have < state.nlen + state.ndist) {
      +        for (;;) {
      +          here = state.lencode[hold & ((1 << state.lenbits) - 1)];/*BITS(state.lenbits)*/
      +          here_bits = here >>> 24;
      +          here_op = (here >>> 16) & 0xff;
      +          here_val = here & 0xffff;
      +
      +          if ((here_bits) <= bits) { break; }
      +          //--- PULLBYTE() ---//
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          hold += input[next++] << bits;
      +          bits += 8;
      +          //---//
      +        }
      +        if (here_val < 16) {
      +          //--- DROPBITS(here.bits) ---//
      +          hold >>>= here_bits;
      +          bits -= here_bits;
      +          //---//
      +          state.lens[state.have++] = here_val;
      +        }
      +        else {
      +          if (here_val === 16) {
      +            //=== NEEDBITS(here.bits + 2);
      +            n = here_bits + 2;
      +            while (bits < n) {
      +              if (have === 0) { break inf_leave; }
      +              have--;
      +              hold += input[next++] << bits;
      +              bits += 8;
      +            }
      +            //===//
      +            //--- DROPBITS(here.bits) ---//
      +            hold >>>= here_bits;
      +            bits -= here_bits;
      +            //---//
      +            if (state.have === 0) {
      +              strm.msg = 'invalid bit length repeat';
      +              state.mode = BAD;
      +              break;
      +            }
      +            len = state.lens[state.have - 1];
      +            copy = 3 + (hold & 0x03);//BITS(2);
      +            //--- DROPBITS(2) ---//
      +            hold >>>= 2;
      +            bits -= 2;
      +            //---//
      +          }
      +          else if (here_val === 17) {
      +            //=== NEEDBITS(here.bits + 3);
      +            n = here_bits + 3;
      +            while (bits < n) {
      +              if (have === 0) { break inf_leave; }
      +              have--;
      +              hold += input[next++] << bits;
      +              bits += 8;
      +            }
      +            //===//
      +            //--- DROPBITS(here.bits) ---//
      +            hold >>>= here_bits;
      +            bits -= here_bits;
      +            //---//
      +            len = 0;
      +            copy = 3 + (hold & 0x07);//BITS(3);
      +            //--- DROPBITS(3) ---//
      +            hold >>>= 3;
      +            bits -= 3;
      +            //---//
      +          }
      +          else {
      +            //=== NEEDBITS(here.bits + 7);
      +            n = here_bits + 7;
      +            while (bits < n) {
      +              if (have === 0) { break inf_leave; }
      +              have--;
      +              hold += input[next++] << bits;
      +              bits += 8;
      +            }
      +            //===//
      +            //--- DROPBITS(here.bits) ---//
      +            hold >>>= here_bits;
      +            bits -= here_bits;
      +            //---//
      +            len = 0;
      +            copy = 11 + (hold & 0x7f);//BITS(7);
      +            //--- DROPBITS(7) ---//
      +            hold >>>= 7;
      +            bits -= 7;
      +            //---//
      +          }
      +          if (state.have + copy > state.nlen + state.ndist) {
      +            strm.msg = 'invalid bit length repeat';
      +            state.mode = BAD;
      +            break;
      +          }
      +          while (copy--) {
      +            state.lens[state.have++] = len;
      +          }
      +        }
      +      }
      +
      +      /* handle error breaks in while */
      +      if (state.mode === BAD) { break; }
      +
      +      /* check for end-of-block code (better have one) */
      +      if (state.lens[256] === 0) {
      +        strm.msg = 'invalid code -- missing end-of-block';
      +        state.mode = BAD;
      +        break;
      +      }
      +
      +      /* build code tables -- note: do not change the lenbits or distbits
      +         values here (9 and 6) without reading the comments in inftrees.h
      +         concerning the ENOUGH constants, which depend on those values */
      +      state.lenbits = 9;
      +
      +      opts = { bits: state.lenbits };
      +      ret = inflate_table(LENS, state.lens, 0, state.nlen, state.lencode, 0, state.work, opts);
      +      // We have separate tables & no pointers. 2 commented lines below not needed.
      +      // state.next_index = opts.table_index;
      +      state.lenbits = opts.bits;
      +      // state.lencode = state.next;
      +
      +      if (ret) {
      +        strm.msg = 'invalid literal/lengths set';
      +        state.mode = BAD;
      +        break;
      +      }
      +
      +      state.distbits = 6;
      +      //state.distcode.copy(state.codes);
      +      // Switch to use dynamic table
      +      state.distcode = state.distdyn;
      +      opts = { bits: state.distbits };
      +      ret = inflate_table(DISTS, state.lens, state.nlen, state.ndist, state.distcode, 0, state.work, opts);
      +      // We have separate tables & no pointers. 2 commented lines below not needed.
      +      // state.next_index = opts.table_index;
      +      state.distbits = opts.bits;
      +      // state.distcode = state.next;
      +
      +      if (ret) {
      +        strm.msg = 'invalid distances set';
      +        state.mode = BAD;
      +        break;
      +      }
      +      //Tracev((stderr, 'inflate:       codes ok\n'));
      +      state.mode = LEN_;
      +      if (flush === Z_TREES) { break inf_leave; }
      +      /* falls through */
      +    case LEN_:
      +      state.mode = LEN;
      +      /* falls through */
      +    case LEN:
      +      if (have >= 6 && left >= 258) {
      +        //--- RESTORE() ---
      +        strm.next_out = put;
      +        strm.avail_out = left;
      +        strm.next_in = next;
      +        strm.avail_in = have;
      +        state.hold = hold;
      +        state.bits = bits;
      +        //---
      +        inflate_fast(strm, _out);
      +        //--- LOAD() ---
      +        put = strm.next_out;
      +        output = strm.output;
      +        left = strm.avail_out;
      +        next = strm.next_in;
      +        input = strm.input;
      +        have = strm.avail_in;
      +        hold = state.hold;
      +        bits = state.bits;
      +        //---
      +
      +        if (state.mode === TYPE) {
      +          state.back = -1;
      +        }
      +        break;
      +      }
      +      state.back = 0;
      +      for (;;) {
      +        here = state.lencode[hold & ((1 << state.lenbits) - 1)];  /*BITS(state.lenbits)*/
      +        here_bits = here >>> 24;
      +        here_op = (here >>> 16) & 0xff;
      +        here_val = here & 0xffff;
      +
      +        if (here_bits <= bits) { break; }
      +        //--- PULLBYTE() ---//
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +        //---//
      +      }
      +      if (here_op && (here_op & 0xf0) === 0) {
      +        last_bits = here_bits;
      +        last_op = here_op;
      +        last_val = here_val;
      +        for (;;) {
      +          here = state.lencode[last_val +
      +                  ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)];
      +          here_bits = here >>> 24;
      +          here_op = (here >>> 16) & 0xff;
      +          here_val = here & 0xffff;
      +
      +          if ((last_bits + here_bits) <= bits) { break; }
      +          //--- PULLBYTE() ---//
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          hold += input[next++] << bits;
      +          bits += 8;
      +          //---//
      +        }
      +        //--- DROPBITS(last.bits) ---//
      +        hold >>>= last_bits;
      +        bits -= last_bits;
      +        //---//
      +        state.back += last_bits;
      +      }
      +      //--- DROPBITS(here.bits) ---//
      +      hold >>>= here_bits;
      +      bits -= here_bits;
      +      //---//
      +      state.back += here_bits;
      +      state.length = here_val;
      +      if (here_op === 0) {
      +        //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
      +        //        "inflate:         literal '%c'\n" :
      +        //        "inflate:         literal 0x%02x\n", here.val));
      +        state.mode = LIT;
      +        break;
      +      }
      +      if (here_op & 32) {
      +        //Tracevv((stderr, "inflate:         end of block\n"));
      +        state.back = -1;
      +        state.mode = TYPE;
      +        break;
      +      }
      +      if (here_op & 64) {
      +        strm.msg = 'invalid literal/length code';
      +        state.mode = BAD;
      +        break;
      +      }
      +      state.extra = here_op & 15;
      +      state.mode = LENEXT;
      +      /* falls through */
      +    case LENEXT:
      +      if (state.extra) {
      +        //=== NEEDBITS(state.extra);
      +        n = state.extra;
      +        while (bits < n) {
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          hold += input[next++] << bits;
      +          bits += 8;
      +        }
      +        //===//
      +        state.length += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/;
      +        //--- DROPBITS(state.extra) ---//
      +        hold >>>= state.extra;
      +        bits -= state.extra;
      +        //---//
      +        state.back += state.extra;
      +      }
      +      //Tracevv((stderr, "inflate:         length %u\n", state.length));
      +      state.was = state.length;
      +      state.mode = DIST;
      +      /* falls through */
      +    case DIST:
      +      for (;;) {
      +        here = state.distcode[hold & ((1 << state.distbits) - 1)];/*BITS(state.distbits)*/
      +        here_bits = here >>> 24;
      +        here_op = (here >>> 16) & 0xff;
      +        here_val = here & 0xffff;
      +
      +        if ((here_bits) <= bits) { break; }
      +        //--- PULLBYTE() ---//
      +        if (have === 0) { break inf_leave; }
      +        have--;
      +        hold += input[next++] << bits;
      +        bits += 8;
      +        //---//
      +      }
      +      if ((here_op & 0xf0) === 0) {
      +        last_bits = here_bits;
      +        last_op = here_op;
      +        last_val = here_val;
      +        for (;;) {
      +          here = state.distcode[last_val +
      +                  ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)];
      +          here_bits = here >>> 24;
      +          here_op = (here >>> 16) & 0xff;
      +          here_val = here & 0xffff;
      +
      +          if ((last_bits + here_bits) <= bits) { break; }
      +          //--- PULLBYTE() ---//
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          hold += input[next++] << bits;
      +          bits += 8;
      +          //---//
      +        }
      +        //--- DROPBITS(last.bits) ---//
      +        hold >>>= last_bits;
      +        bits -= last_bits;
      +        //---//
      +        state.back += last_bits;
      +      }
      +      //--- DROPBITS(here.bits) ---//
      +      hold >>>= here_bits;
      +      bits -= here_bits;
      +      //---//
      +      state.back += here_bits;
      +      if (here_op & 64) {
      +        strm.msg = 'invalid distance code';
      +        state.mode = BAD;
      +        break;
      +      }
      +      state.offset = here_val;
      +      state.extra = (here_op) & 15;
      +      state.mode = DISTEXT;
      +      /* falls through */
      +    case DISTEXT:
      +      if (state.extra) {
      +        //=== NEEDBITS(state.extra);
      +        n = state.extra;
      +        while (bits < n) {
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          hold += input[next++] << bits;
      +          bits += 8;
      +        }
      +        //===//
      +        state.offset += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/;
      +        //--- DROPBITS(state.extra) ---//
      +        hold >>>= state.extra;
      +        bits -= state.extra;
      +        //---//
      +        state.back += state.extra;
      +      }
      +//#ifdef INFLATE_STRICT
      +      if (state.offset > state.dmax) {
      +        strm.msg = 'invalid distance too far back';
      +        state.mode = BAD;
      +        break;
      +      }
      +//#endif
      +      //Tracevv((stderr, "inflate:         distance %u\n", state.offset));
      +      state.mode = MATCH;
      +      /* falls through */
      +    case MATCH:
      +      if (left === 0) { break inf_leave; }
      +      copy = _out - left;
      +      if (state.offset > copy) {         /* copy from window */
      +        copy = state.offset - copy;
      +        if (copy > state.whave) {
      +          if (state.sane) {
      +            strm.msg = 'invalid distance too far back';
      +            state.mode = BAD;
      +            break;
      +          }
      +// (!) This block is disabled in zlib defailts,
      +// don't enable it for binary compatibility
      +//#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
      +//          Trace((stderr, "inflate.c too far\n"));
      +//          copy -= state.whave;
      +//          if (copy > state.length) { copy = state.length; }
      +//          if (copy > left) { copy = left; }
      +//          left -= copy;
      +//          state.length -= copy;
      +//          do {
      +//            output[put++] = 0;
      +//          } while (--copy);
      +//          if (state.length === 0) { state.mode = LEN; }
      +//          break;
      +//#endif
      +        }
      +        if (copy > state.wnext) {
      +          copy -= state.wnext;
      +          from = state.wsize - copy;
      +        }
      +        else {
      +          from = state.wnext - copy;
      +        }
      +        if (copy > state.length) { copy = state.length; }
      +        from_source = state.window;
      +      }
      +      else {                              /* copy from output */
      +        from_source = output;
      +        from = put - state.offset;
      +        copy = state.length;
      +      }
      +      if (copy > left) { copy = left; }
      +      left -= copy;
      +      state.length -= copy;
      +      do {
      +        output[put++] = from_source[from++];
      +      } while (--copy);
      +      if (state.length === 0) { state.mode = LEN; }
      +      break;
      +    case LIT:
      +      if (left === 0) { break inf_leave; }
      +      output[put++] = state.length;
      +      left--;
      +      state.mode = LEN;
      +      break;
      +    case CHECK:
      +      if (state.wrap) {
      +        //=== NEEDBITS(32);
      +        while (bits < 32) {
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          // Use '|' insdead of '+' to make sure that result is signed
      +          hold |= input[next++] << bits;
      +          bits += 8;
      +        }
      +        //===//
      +        _out -= left;
      +        strm.total_out += _out;
      +        state.total += _out;
      +        if (_out) {
      +          strm.adler = state.check =
      +              /*UPDATE(state.check, put - _out, _out);*/
      +              (state.flags ? crc32(state.check, output, _out, put - _out) : adler32(state.check, output, _out, put - _out));
      +
      +        }
      +        _out = left;
      +        // NB: crc32 stored as signed 32-bit int, zswap32 returns signed too
      +        if ((state.flags ? hold : zswap32(hold)) !== state.check) {
      +          strm.msg = 'incorrect data check';
      +          state.mode = BAD;
      +          break;
      +        }
      +        //=== INITBITS();
      +        hold = 0;
      +        bits = 0;
      +        //===//
      +        //Tracev((stderr, "inflate:   check matches trailer\n"));
      +      }
      +      state.mode = LENGTH;
      +      /* falls through */
      +    case LENGTH:
      +      if (state.wrap && state.flags) {
      +        //=== NEEDBITS(32);
      +        while (bits < 32) {
      +          if (have === 0) { break inf_leave; }
      +          have--;
      +          hold += input[next++] << bits;
      +          bits += 8;
      +        }
      +        //===//
      +        if (hold !== (state.total & 0xffffffff)) {
      +          strm.msg = 'incorrect length check';
      +          state.mode = BAD;
      +          break;
      +        }
      +        //=== INITBITS();
      +        hold = 0;
      +        bits = 0;
      +        //===//
      +        //Tracev((stderr, "inflate:   length matches trailer\n"));
      +      }
      +      state.mode = DONE;
      +      /* falls through */
      +    case DONE:
      +      ret = Z_STREAM_END;
      +      break inf_leave;
      +    case BAD:
      +      ret = Z_DATA_ERROR;
      +      break inf_leave;
      +    case MEM:
      +      return Z_MEM_ERROR;
      +    case SYNC:
      +      /* falls through */
      +    default:
      +      return Z_STREAM_ERROR;
      +    }
      +  }
      +
      +  // inf_leave <- here is real place for "goto inf_leave", emulated via "break inf_leave"
      +
      +  /*
      +     Return from inflate(), updating the total counts and the check value.
      +     If there was no progress during the inflate() call, return a buffer
      +     error.  Call updatewindow() to create and/or update the window state.
      +     Note: a memory error from inflate() is non-recoverable.
      +   */
      +
      +  //--- RESTORE() ---
      +  strm.next_out = put;
      +  strm.avail_out = left;
      +  strm.next_in = next;
      +  strm.avail_in = have;
      +  state.hold = hold;
      +  state.bits = bits;
      +  //---
      +
      +  if (state.wsize || (_out !== strm.avail_out && state.mode < BAD &&
      +                      (state.mode < CHECK || flush !== Z_FINISH))) {
      +    if (updatewindow(strm, strm.output, strm.next_out, _out - strm.avail_out)) {
      +      state.mode = MEM;
      +      return Z_MEM_ERROR;
      +    }
      +  }
      +  _in -= strm.avail_in;
      +  _out -= strm.avail_out;
      +  strm.total_in += _in;
      +  strm.total_out += _out;
      +  state.total += _out;
      +  if (state.wrap && _out) {
      +    strm.adler = state.check = /*UPDATE(state.check, strm.next_out - _out, _out);*/
      +      (state.flags ? crc32(state.check, output, _out, strm.next_out - _out) : adler32(state.check, output, _out, strm.next_out - _out));
      +  }
      +  strm.data_type = state.bits + (state.last ? 64 : 0) +
      +                    (state.mode === TYPE ? 128 : 0) +
      +                    (state.mode === LEN_ || state.mode === COPY_ ? 256 : 0);
      +  if (((_in === 0 && _out === 0) || flush === Z_FINISH) && ret === Z_OK) {
      +    ret = Z_BUF_ERROR;
      +  }
      +  return ret;
      +}
      +
      +function inflateEnd(strm) {
      +
      +  if (!strm || !strm.state /*|| strm->zfree == (free_func)0*/) {
      +    return Z_STREAM_ERROR;
      +  }
      +
      +  var state = strm.state;
      +  if (state.window) {
      +    state.window = null;
      +  }
      +  strm.state = null;
      +  return Z_OK;
      +}
      +
      +function inflateGetHeader(strm, head) {
      +  var state;
      +
      +  /* check state */
      +  if (!strm || !strm.state) { return Z_STREAM_ERROR; }
      +  state = strm.state;
      +  if ((state.wrap & 2) === 0) { return Z_STREAM_ERROR; }
      +
      +  /* save header structure */
      +  state.head = head;
      +  head.done = false;
      +  return Z_OK;
      +}
      +
      +function inflateSetDictionary(strm, dictionary) {
      +  var dictLength = dictionary.length;
      +
      +  var state;
      +  var dictid;
      +  var ret;
      +
      +  /* check state */
      +  if (!strm /* == Z_NULL */ || !strm.state /* == Z_NULL */) { return Z_STREAM_ERROR; }
      +  state = strm.state;
      +
      +  if (state.wrap !== 0 && state.mode !== DICT) {
      +    return Z_STREAM_ERROR;
      +  }
      +
      +  /* check for correct dictionary identifier */
      +  if (state.mode === DICT) {
      +    dictid = 1; /* adler32(0, null, 0)*/
      +    /* dictid = adler32(dictid, dictionary, dictLength); */
      +    dictid = adler32(dictid, dictionary, dictLength, 0);
      +    if (dictid !== state.check) {
      +      return Z_DATA_ERROR;
      +    }
      +  }
      +  /* copy dictionary to window using updatewindow(), which will amend the
      +   existing dictionary if appropriate */
      +  ret = updatewindow(strm, dictionary, dictLength, dictLength);
      +  if (ret) {
      +    state.mode = MEM;
      +    return Z_MEM_ERROR;
      +  }
      +  state.havedict = 1;
      +  // Tracev((stderr, "inflate:   dictionary set\n"));
      +  return Z_OK;
      +}
      +
      +exports.inflateReset = inflateReset;
      +exports.inflateReset2 = inflateReset2;
      +exports.inflateResetKeep = inflateResetKeep;
      +exports.inflateInit = inflateInit;
      +exports.inflateInit2 = inflateInit2;
      +exports.inflate = inflate;
      +exports.inflateEnd = inflateEnd;
      +exports.inflateGetHeader = inflateGetHeader;
      +exports.inflateSetDictionary = inflateSetDictionary;
      +exports.inflateInfo = 'pako inflate (from Nodeca project)';
      +
      +/* Not implemented
      +exports.inflateCopy = inflateCopy;
      +exports.inflateGetDictionary = inflateGetDictionary;
      +exports.inflateMark = inflateMark;
      +exports.inflatePrime = inflatePrime;
      +exports.inflateSync = inflateSync;
      +exports.inflateSyncPoint = inflateSyncPoint;
      +exports.inflateUndermine = inflateUndermine;
      +*/
      +
      +},{"../utils/common":41,"./adler32":43,"./crc32":45,"./inffast":48,"./inftrees":50}],50:[function(require,module,exports){
      +'use strict';
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +var utils = require('../utils/common');
      +
      +var MAXBITS = 15;
      +var ENOUGH_LENS = 852;
      +var ENOUGH_DISTS = 592;
      +//var ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS);
      +
      +var CODES = 0;
      +var LENS = 1;
      +var DISTS = 2;
      +
      +var lbase = [ /* Length codes 257..285 base */
      +  3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,
      +  35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0
      +];
      +
      +var lext = [ /* Length codes 257..285 extra */
      +  16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18,
      +  19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 72, 78
      +];
      +
      +var dbase = [ /* Distance codes 0..29 base */
      +  1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
      +  257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
      +  8193, 12289, 16385, 24577, 0, 0
      +];
      +
      +var dext = [ /* Distance codes 0..29 extra */
      +  16, 16, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22,
      +  23, 23, 24, 24, 25, 25, 26, 26, 27, 27,
      +  28, 28, 29, 29, 64, 64
      +];
      +
      +module.exports = function inflate_table(type, lens, lens_index, codes, table, table_index, work, opts)
      +{
      +  var bits = opts.bits;
      +      //here = opts.here; /* table entry for duplication */
      +
      +  var len = 0;               /* a code's length in bits */
      +  var sym = 0;               /* index of code symbols */
      +  var min = 0, max = 0;          /* minimum and maximum code lengths */
      +  var root = 0;              /* number of index bits for root table */
      +  var curr = 0;              /* number of index bits for current table */
      +  var drop = 0;              /* code bits to drop for sub-table */
      +  var left = 0;                   /* number of prefix codes available */
      +  var used = 0;              /* code entries in table used */
      +  var huff = 0;              /* Huffman code */
      +  var incr;              /* for incrementing code, index */
      +  var fill;              /* index for replicating entries */
      +  var low;               /* low bits for current root entry */
      +  var mask;              /* mask for low root bits */
      +  var next;             /* next available space in table */
      +  var base = null;     /* base value table to use */
      +  var base_index = 0;
      +//  var shoextra;    /* extra bits table to use */
      +  var end;                    /* use base and extra for symbol > end */
      +  var count = new utils.Buf16(MAXBITS + 1); //[MAXBITS+1];    /* number of codes of each length */
      +  var offs = new utils.Buf16(MAXBITS + 1); //[MAXBITS+1];     /* offsets in table for each length */
      +  var extra = null;
      +  var extra_index = 0;
      +
      +  var here_bits, here_op, here_val;
      +
      +  /*
      +   Process a set of code lengths to create a canonical Huffman code.  The
      +   code lengths are lens[0..codes-1].  Each length corresponds to the
      +   symbols 0..codes-1.  The Huffman code is generated by first sorting the
      +   symbols by length from short to long, and retaining the symbol order
      +   for codes with equal lengths.  Then the code starts with all zero bits
      +   for the first code of the shortest length, and the codes are integer
      +   increments for the same length, and zeros are appended as the length
      +   increases.  For the deflate format, these bits are stored backwards
      +   from their more natural integer increment ordering, and so when the
      +   decoding tables are built in the large loop below, the integer codes
      +   are incremented backwards.
      +
      +   This routine assumes, but does not check, that all of the entries in
      +   lens[] are in the range 0..MAXBITS.  The caller must assure this.
      +   1..MAXBITS is interpreted as that code length.  zero means that that
      +   symbol does not occur in this code.
      +
      +   The codes are sorted by computing a count of codes for each length,
      +   creating from that a table of starting indices for each length in the
      +   sorted table, and then entering the symbols in order in the sorted
      +   table.  The sorted table is work[], with that space being provided by
      +   the caller.
      +
      +   The length counts are used for other purposes as well, i.e. finding
      +   the minimum and maximum length codes, determining if there are any
      +   codes at all, checking for a valid set of lengths, and looking ahead
      +   at length counts to determine sub-table sizes when building the
      +   decoding tables.
      +   */
      +
      +  /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */
      +  for (len = 0; len <= MAXBITS; len++) {
      +    count[len] = 0;
      +  }
      +  for (sym = 0; sym < codes; sym++) {
      +    count[lens[lens_index + sym]]++;
      +  }
      +
      +  /* bound code lengths, force root to be within code lengths */
      +  root = bits;
      +  for (max = MAXBITS; max >= 1; max--) {
      +    if (count[max] !== 0) { break; }
      +  }
      +  if (root > max) {
      +    root = max;
      +  }
      +  if (max === 0) {                     /* no symbols to code at all */
      +    //table.op[opts.table_index] = 64;  //here.op = (var char)64;    /* invalid code marker */
      +    //table.bits[opts.table_index] = 1;   //here.bits = (var char)1;
      +    //table.val[opts.table_index++] = 0;   //here.val = (var short)0;
      +    table[table_index++] = (1 << 24) | (64 << 16) | 0;
      +
      +
      +    //table.op[opts.table_index] = 64;
      +    //table.bits[opts.table_index] = 1;
      +    //table.val[opts.table_index++] = 0;
      +    table[table_index++] = (1 << 24) | (64 << 16) | 0;
      +
      +    opts.bits = 1;
      +    return 0;     /* no symbols, but wait for decoding to report error */
      +  }
      +  for (min = 1; min < max; min++) {
      +    if (count[min] !== 0) { break; }
      +  }
      +  if (root < min) {
      +    root = min;
      +  }
      +
      +  /* check for an over-subscribed or incomplete set of lengths */
      +  left = 1;
      +  for (len = 1; len <= MAXBITS; len++) {
      +    left <<= 1;
      +    left -= count[len];
      +    if (left < 0) {
      +      return -1;
      +    }        /* over-subscribed */
      +  }
      +  if (left > 0 && (type === CODES || max !== 1)) {
      +    return -1;                      /* incomplete set */
      +  }
      +
      +  /* generate offsets into symbol table for each length for sorting */
      +  offs[1] = 0;
      +  for (len = 1; len < MAXBITS; len++) {
      +    offs[len + 1] = offs[len] + count[len];
      +  }
      +
      +  /* sort symbols by length, by symbol order within each length */
      +  for (sym = 0; sym < codes; sym++) {
      +    if (lens[lens_index + sym] !== 0) {
      +      work[offs[lens[lens_index + sym]]++] = sym;
      +    }
      +  }
      +
      +  /*
      +   Create and fill in decoding tables.  In this loop, the table being
      +   filled is at next and has curr index bits.  The code being used is huff
      +   with length len.  That code is converted to an index by dropping drop
      +   bits off of the bottom.  For codes where len is less than drop + curr,
      +   those top drop + curr - len bits are incremented through all values to
      +   fill the table with replicated entries.
      +
      +   root is the number of index bits for the root table.  When len exceeds
      +   root, sub-tables are created pointed to by the root entry with an index
      +   of the low root bits of huff.  This is saved in low to check for when a
      +   new sub-table should be started.  drop is zero when the root table is
      +   being filled, and drop is root when sub-tables are being filled.
      +
      +   When a new sub-table is needed, it is necessary to look ahead in the
      +   code lengths to determine what size sub-table is needed.  The length
      +   counts are used for this, and so count[] is decremented as codes are
      +   entered in the tables.
      +
      +   used keeps track of how many table entries have been allocated from the
      +   provided *table space.  It is checked for LENS and DIST tables against
      +   the constants ENOUGH_LENS and ENOUGH_DISTS to guard against changes in
      +   the initial root table size constants.  See the comments in inftrees.h
      +   for more information.
      +
      +   sym increments through all symbols, and the loop terminates when
      +   all codes of length max, i.e. all codes, have been processed.  This
      +   routine permits incomplete codes, so another loop after this one fills
      +   in the rest of the decoding tables with invalid code markers.
      +   */
      +
      +  /* set up for code type */
      +  // poor man optimization - use if-else instead of switch,
      +  // to avoid deopts in old v8
      +  if (type === CODES) {
      +    base = extra = work;    /* dummy value--not used */
      +    end = 19;
      +
      +  } else if (type === LENS) {
      +    base = lbase;
      +    base_index -= 257;
      +    extra = lext;
      +    extra_index -= 257;
      +    end = 256;
      +
      +  } else {                    /* DISTS */
      +    base = dbase;
      +    extra = dext;
      +    end = -1;
      +  }
      +
      +  /* initialize opts for loop */
      +  huff = 0;                   /* starting code */
      +  sym = 0;                    /* starting code symbol */
      +  len = min;                  /* starting code length */
      +  next = table_index;              /* current table to fill in */
      +  curr = root;                /* current table index bits */
      +  drop = 0;                   /* current bits to drop from code for index */
      +  low = -1;                   /* trigger new sub-table when len > root */
      +  used = 1 << root;          /* use root table entries */
      +  mask = used - 1;            /* mask for comparing low */
      +
      +  /* check available table space */
      +  if ((type === LENS && used > ENOUGH_LENS) ||
      +    (type === DISTS && used > ENOUGH_DISTS)) {
      +    return 1;
      +  }
      +
      +  /* process all codes and make table entries */
      +  for (;;) {
      +    /* create table entry */
      +    here_bits = len - drop;
      +    if (work[sym] < end) {
      +      here_op = 0;
      +      here_val = work[sym];
      +    }
      +    else if (work[sym] > end) {
      +      here_op = extra[extra_index + work[sym]];
      +      here_val = base[base_index + work[sym]];
      +    }
      +    else {
      +      here_op = 32 + 64;         /* end of block */
      +      here_val = 0;
      +    }
      +
      +    /* replicate for those indices with low len bits equal to huff */
      +    incr = 1 << (len - drop);
      +    fill = 1 << curr;
      +    min = fill;                 /* save offset to next table */
      +    do {
      +      fill -= incr;
      +      table[next + (huff >> drop) + fill] = (here_bits << 24) | (here_op << 16) | here_val |0;
      +    } while (fill !== 0);
      +
      +    /* backwards increment the len-bit code huff */
      +    incr = 1 << (len - 1);
      +    while (huff & incr) {
      +      incr >>= 1;
      +    }
      +    if (incr !== 0) {
      +      huff &= incr - 1;
      +      huff += incr;
      +    } else {
      +      huff = 0;
      +    }
      +
      +    /* go to next symbol, update count, len */
      +    sym++;
      +    if (--count[len] === 0) {
      +      if (len === max) { break; }
      +      len = lens[lens_index + work[sym]];
      +    }
      +
      +    /* create new sub-table if needed */
      +    if (len > root && (huff & mask) !== low) {
      +      /* if first time, transition to sub-tables */
      +      if (drop === 0) {
      +        drop = root;
      +      }
      +
      +      /* increment past last table */
      +      next += min;            /* here min is 1 << curr */
      +
      +      /* determine length of next table */
      +      curr = len - drop;
      +      left = 1 << curr;
      +      while (curr + drop < max) {
      +        left -= count[curr + drop];
      +        if (left <= 0) { break; }
      +        curr++;
      +        left <<= 1;
      +      }
      +
      +      /* check for enough space */
      +      used += 1 << curr;
      +      if ((type === LENS && used > ENOUGH_LENS) ||
      +        (type === DISTS && used > ENOUGH_DISTS)) {
      +        return 1;
      +      }
      +
      +      /* point entry in root table to sub-table */
      +      low = huff & mask;
      +      /*table.op[low] = curr;
      +      table.bits[low] = root;
      +      table.val[low] = next - opts.table_index;*/
      +      table[low] = (root << 24) | (curr << 16) | (next - table_index) |0;
      +    }
      +  }
      +
      +  /* fill in remaining table entry if code is incomplete (guaranteed to have
      +   at most one remaining entry, since if the code is incomplete, the
      +   maximum code length that was allowed to get this far is one bit) */
      +  if (huff !== 0) {
      +    //table.op[next + huff] = 64;            /* invalid code marker */
      +    //table.bits[next + huff] = len - drop;
      +    //table.val[next + huff] = 0;
      +    table[next + huff] = ((len - drop) << 24) | (64 << 16) |0;
      +  }
      +
      +  /* set return parameters */
      +  //opts.table_index += used;
      +  opts.bits = root;
      +  return 0;
      +};
      +
      +},{"../utils/common":41}],51:[function(require,module,exports){
      +'use strict';
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +module.exports = {
      +  2:      'need dictionary',     /* Z_NEED_DICT       2  */
      +  1:      'stream end',          /* Z_STREAM_END      1  */
      +  0:      '',                    /* Z_OK              0  */
      +  '-1':   'file error',          /* Z_ERRNO         (-1) */
      +  '-2':   'stream error',        /* Z_STREAM_ERROR  (-2) */
      +  '-3':   'data error',          /* Z_DATA_ERROR    (-3) */
      +  '-4':   'insufficient memory', /* Z_MEM_ERROR     (-4) */
      +  '-5':   'buffer error',        /* Z_BUF_ERROR     (-5) */
      +  '-6':   'incompatible version' /* Z_VERSION_ERROR (-6) */
      +};
      +
      +},{}],52:[function(require,module,exports){
      +'use strict';
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +var utils = require('../utils/common');
      +
      +/* Public constants ==========================================================*/
      +/* ===========================================================================*/
      +
      +
      +//var Z_FILTERED          = 1;
      +//var Z_HUFFMAN_ONLY      = 2;
      +//var Z_RLE               = 3;
      +var Z_FIXED               = 4;
      +//var Z_DEFAULT_STRATEGY  = 0;
      +
      +/* Possible values of the data_type field (though see inflate()) */
      +var Z_BINARY              = 0;
      +var Z_TEXT                = 1;
      +//var Z_ASCII             = 1; // = Z_TEXT
      +var Z_UNKNOWN             = 2;
      +
      +/*============================================================================*/
      +
      +
      +function zero(buf) { var len = buf.length; while (--len >= 0) { buf[len] = 0; } }
      +
      +// From zutil.h
      +
      +var STORED_BLOCK = 0;
      +var STATIC_TREES = 1;
      +var DYN_TREES    = 2;
      +/* The three kinds of block type */
      +
      +var MIN_MATCH    = 3;
      +var MAX_MATCH    = 258;
      +/* The minimum and maximum match lengths */
      +
      +// From deflate.h
      +/* ===========================================================================
      + * Internal compression state.
      + */
      +
      +var LENGTH_CODES  = 29;
      +/* number of length codes, not counting the special END_BLOCK code */
      +
      +var LITERALS      = 256;
      +/* number of literal bytes 0..255 */
      +
      +var L_CODES       = LITERALS + 1 + LENGTH_CODES;
      +/* number of Literal or Length codes, including the END_BLOCK code */
      +
      +var D_CODES       = 30;
      +/* number of distance codes */
      +
      +var BL_CODES      = 19;
      +/* number of codes used to transfer the bit lengths */
      +
      +var HEAP_SIZE     = 2 * L_CODES + 1;
      +/* maximum heap size */
      +
      +var MAX_BITS      = 15;
      +/* All codes must not exceed MAX_BITS bits */
      +
      +var Buf_size      = 16;
      +/* size of bit buffer in bi_buf */
      +
      +
      +/* ===========================================================================
      + * Constants
      + */
      +
      +var MAX_BL_BITS = 7;
      +/* Bit length codes must not exceed MAX_BL_BITS bits */
      +
      +var END_BLOCK   = 256;
      +/* end of block literal code */
      +
      +var REP_3_6     = 16;
      +/* repeat previous bit length 3-6 times (2 bits of repeat count) */
      +
      +var REPZ_3_10   = 17;
      +/* repeat a zero length 3-10 times  (3 bits of repeat count) */
      +
      +var REPZ_11_138 = 18;
      +/* repeat a zero length 11-138 times  (7 bits of repeat count) */
      +
      +/* eslint-disable comma-spacing,array-bracket-spacing */
      +var extra_lbits =   /* extra bits for each length code */
      +  [0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0];
      +
      +var extra_dbits =   /* extra bits for each distance code */
      +  [0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13];
      +
      +var extra_blbits =  /* extra bits for each bit length code */
      +  [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7];
      +
      +var bl_order =
      +  [16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];
      +/* eslint-enable comma-spacing,array-bracket-spacing */
      +
      +/* The lengths of the bit length codes are sent in order of decreasing
      + * probability, to avoid transmitting the lengths for unused bit length codes.
      + */
      +
      +/* ===========================================================================
      + * Local data. These are initialized only once.
      + */
      +
      +// We pre-fill arrays with 0 to avoid uninitialized gaps
      +
      +var DIST_CODE_LEN = 512; /* see definition of array dist_code below */
      +
      +// !!!! Use flat array insdead of structure, Freq = i*2, Len = i*2+1
      +var static_ltree  = new Array((L_CODES + 2) * 2);
      +zero(static_ltree);
      +/* The static literal tree. Since the bit lengths are imposed, there is no
      + * need for the L_CODES extra codes used during heap construction. However
      + * The codes 286 and 287 are needed to build a canonical tree (see _tr_init
      + * below).
      + */
      +
      +var static_dtree  = new Array(D_CODES * 2);
      +zero(static_dtree);
      +/* The static distance tree. (Actually a trivial tree since all codes use
      + * 5 bits.)
      + */
      +
      +var _dist_code    = new Array(DIST_CODE_LEN);
      +zero(_dist_code);
      +/* Distance codes. The first 256 values correspond to the distances
      + * 3 .. 258, the last 256 values correspond to the top 8 bits of
      + * the 15 bit distances.
      + */
      +
      +var _length_code  = new Array(MAX_MATCH - MIN_MATCH + 1);
      +zero(_length_code);
      +/* length code for each normalized match length (0 == MIN_MATCH) */
      +
      +var base_length   = new Array(LENGTH_CODES);
      +zero(base_length);
      +/* First normalized length for each code (0 = MIN_MATCH) */
      +
      +var base_dist     = new Array(D_CODES);
      +zero(base_dist);
      +/* First normalized distance for each code (0 = distance of 1) */
      +
      +
      +function StaticTreeDesc(static_tree, extra_bits, extra_base, elems, max_length) {
      +
      +  this.static_tree  = static_tree;  /* static tree or NULL */
      +  this.extra_bits   = extra_bits;   /* extra bits for each code or NULL */
      +  this.extra_base   = extra_base;   /* base index for extra_bits */
      +  this.elems        = elems;        /* max number of elements in the tree */
      +  this.max_length   = max_length;   /* max bit length for the codes */
      +
      +  // show if `static_tree` has data or dummy - needed for monomorphic objects
      +  this.has_stree    = static_tree && static_tree.length;
      +}
      +
      +
      +var static_l_desc;
      +var static_d_desc;
      +var static_bl_desc;
      +
      +
      +function TreeDesc(dyn_tree, stat_desc) {
      +  this.dyn_tree = dyn_tree;     /* the dynamic tree */
      +  this.max_code = 0;            /* largest code with non zero frequency */
      +  this.stat_desc = stat_desc;   /* the corresponding static tree */
      +}
      +
      +
      +
      +function d_code(dist) {
      +  return dist < 256 ? _dist_code[dist] : _dist_code[256 + (dist >>> 7)];
      +}
      +
      +
      +/* ===========================================================================
      + * Output a short LSB first on the stream.
      + * IN assertion: there is enough room in pendingBuf.
      + */
      +function put_short(s, w) {
      +//    put_byte(s, (uch)((w) & 0xff));
      +//    put_byte(s, (uch)((ush)(w) >> 8));
      +  s.pending_buf[s.pending++] = (w) & 0xff;
      +  s.pending_buf[s.pending++] = (w >>> 8) & 0xff;
      +}
      +
      +
      +/* ===========================================================================
      + * Send a value on a given number of bits.
      + * IN assertion: length <= 16 and value fits in length bits.
      + */
      +function send_bits(s, value, length) {
      +  if (s.bi_valid > (Buf_size - length)) {
      +    s.bi_buf |= (value << s.bi_valid) & 0xffff;
      +    put_short(s, s.bi_buf);
      +    s.bi_buf = value >> (Buf_size - s.bi_valid);
      +    s.bi_valid += length - Buf_size;
      +  } else {
      +    s.bi_buf |= (value << s.bi_valid) & 0xffff;
      +    s.bi_valid += length;
      +  }
      +}
      +
      +
      +function send_code(s, c, tree) {
      +  send_bits(s, tree[c * 2]/*.Code*/, tree[c * 2 + 1]/*.Len*/);
      +}
      +
      +
      +/* ===========================================================================
      + * Reverse the first len bits of a code, using straightforward code (a faster
      + * method would use a table)
      + * IN assertion: 1 <= len <= 15
      + */
      +function bi_reverse(code, len) {
      +  var res = 0;
      +  do {
      +    res |= code & 1;
      +    code >>>= 1;
      +    res <<= 1;
      +  } while (--len > 0);
      +  return res >>> 1;
      +}
      +
      +
      +/* ===========================================================================
      + * Flush the bit buffer, keeping at most 7 bits in it.
      + */
      +function bi_flush(s) {
      +  if (s.bi_valid === 16) {
      +    put_short(s, s.bi_buf);
      +    s.bi_buf = 0;
      +    s.bi_valid = 0;
      +
      +  } else if (s.bi_valid >= 8) {
      +    s.pending_buf[s.pending++] = s.bi_buf & 0xff;
      +    s.bi_buf >>= 8;
      +    s.bi_valid -= 8;
      +  }
      +}
      +
      +
      +/* ===========================================================================
      + * Compute the optimal bit lengths for a tree and update the total bit length
      + * for the current block.
      + * IN assertion: the fields freq and dad are set, heap[heap_max] and
      + *    above are the tree nodes sorted by increasing frequency.
      + * OUT assertions: the field len is set to the optimal bit length, the
      + *     array bl_count contains the frequencies for each bit length.
      + *     The length opt_len is updated; static_len is also updated if stree is
      + *     not null.
      + */
      +function gen_bitlen(s, desc)
      +//    deflate_state *s;
      +//    tree_desc *desc;    /* the tree descriptor */
      +{
      +  var tree            = desc.dyn_tree;
      +  var max_code        = desc.max_code;
      +  var stree           = desc.stat_desc.static_tree;
      +  var has_stree       = desc.stat_desc.has_stree;
      +  var extra           = desc.stat_desc.extra_bits;
      +  var base            = desc.stat_desc.extra_base;
      +  var max_length      = desc.stat_desc.max_length;
      +  var h;              /* heap index */
      +  var n, m;           /* iterate over the tree elements */
      +  var bits;           /* bit length */
      +  var xbits;          /* extra bits */
      +  var f;              /* frequency */
      +  var overflow = 0;   /* number of elements with bit length too large */
      +
      +  for (bits = 0; bits <= MAX_BITS; bits++) {
      +    s.bl_count[bits] = 0;
      +  }
      +
      +  /* In a first pass, compute the optimal bit lengths (which may
      +   * overflow in the case of the bit length tree).
      +   */
      +  tree[s.heap[s.heap_max] * 2 + 1]/*.Len*/ = 0; /* root of the heap */
      +
      +  for (h = s.heap_max + 1; h < HEAP_SIZE; h++) {
      +    n = s.heap[h];
      +    bits = tree[tree[n * 2 + 1]/*.Dad*/ * 2 + 1]/*.Len*/ + 1;
      +    if (bits > max_length) {
      +      bits = max_length;
      +      overflow++;
      +    }
      +    tree[n * 2 + 1]/*.Len*/ = bits;
      +    /* We overwrite tree[n].Dad which is no longer needed */
      +
      +    if (n > max_code) { continue; } /* not a leaf node */
      +
      +    s.bl_count[bits]++;
      +    xbits = 0;
      +    if (n >= base) {
      +      xbits = extra[n - base];
      +    }
      +    f = tree[n * 2]/*.Freq*/;
      +    s.opt_len += f * (bits + xbits);
      +    if (has_stree) {
      +      s.static_len += f * (stree[n * 2 + 1]/*.Len*/ + xbits);
      +    }
      +  }
      +  if (overflow === 0) { return; }
      +
      +  // Trace((stderr,"\nbit length overflow\n"));
      +  /* This happens for example on obj2 and pic of the Calgary corpus */
      +
      +  /* Find the first bit length which could increase: */
      +  do {
      +    bits = max_length - 1;
      +    while (s.bl_count[bits] === 0) { bits--; }
      +    s.bl_count[bits]--;      /* move one leaf down the tree */
      +    s.bl_count[bits + 1] += 2; /* move one overflow item as its brother */
      +    s.bl_count[max_length]--;
      +    /* The brother of the overflow item also moves one step up,
      +     * but this does not affect bl_count[max_length]
      +     */
      +    overflow -= 2;
      +  } while (overflow > 0);
      +
      +  /* Now recompute all bit lengths, scanning in increasing frequency.
      +   * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
      +   * lengths instead of fixing only the wrong ones. This idea is taken
      +   * from 'ar' written by Haruhiko Okumura.)
      +   */
      +  for (bits = max_length; bits !== 0; bits--) {
      +    n = s.bl_count[bits];
      +    while (n !== 0) {
      +      m = s.heap[--h];
      +      if (m > max_code) { continue; }
      +      if (tree[m * 2 + 1]/*.Len*/ !== bits) {
      +        // Trace((stderr,"code %d bits %d->%d\n", m, tree[m].Len, bits));
      +        s.opt_len += (bits - tree[m * 2 + 1]/*.Len*/) * tree[m * 2]/*.Freq*/;
      +        tree[m * 2 + 1]/*.Len*/ = bits;
      +      }
      +      n--;
      +    }
      +  }
      +}
      +
      +
      +/* ===========================================================================
      + * Generate the codes for a given tree and bit counts (which need not be
      + * optimal).
      + * IN assertion: the array bl_count contains the bit length statistics for
      + * the given tree and the field len is set for all tree elements.
      + * OUT assertion: the field code is set for all tree elements of non
      + *     zero code length.
      + */
      +function gen_codes(tree, max_code, bl_count)
      +//    ct_data *tree;             /* the tree to decorate */
      +//    int max_code;              /* largest code with non zero frequency */
      +//    ushf *bl_count;            /* number of codes at each bit length */
      +{
      +  var next_code = new Array(MAX_BITS + 1); /* next code value for each bit length */
      +  var code = 0;              /* running code value */
      +  var bits;                  /* bit index */
      +  var n;                     /* code index */
      +
      +  /* The distribution counts are first used to generate the code values
      +   * without bit reversal.
      +   */
      +  for (bits = 1; bits <= MAX_BITS; bits++) {
      +    next_code[bits] = code = (code + bl_count[bits - 1]) << 1;
      +  }
      +  /* Check that the bit counts in bl_count are consistent. The last code
      +   * must be all ones.
      +   */
      +  //Assert (code + bl_count[MAX_BITS]-1 == (1<<MAX_BITS)-1,
      +  //        "inconsistent bit counts");
      +  //Tracev((stderr,"\ngen_codes: max_code %d ", max_code));
      +
      +  for (n = 0;  n <= max_code; n++) {
      +    var len = tree[n * 2 + 1]/*.Len*/;
      +    if (len === 0) { continue; }
      +    /* Now reverse the bits */
      +    tree[n * 2]/*.Code*/ = bi_reverse(next_code[len]++, len);
      +
      +    //Tracecv(tree != static_ltree, (stderr,"\nn %3d %c l %2d c %4x (%x) ",
      +    //     n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1));
      +  }
      +}
      +
      +
      +/* ===========================================================================
      + * Initialize the various 'constant' tables.
      + */
      +function tr_static_init() {
      +  var n;        /* iterates over tree elements */
      +  var bits;     /* bit counter */
      +  var length;   /* length value */
      +  var code;     /* code value */
      +  var dist;     /* distance index */
      +  var bl_count = new Array(MAX_BITS + 1);
      +  /* number of codes at each bit length for an optimal tree */
      +
      +  // do check in _tr_init()
      +  //if (static_init_done) return;
      +
      +  /* For some embedded targets, global variables are not initialized: */
      +/*#ifdef NO_INIT_GLOBAL_POINTERS
      +  static_l_desc.static_tree = static_ltree;
      +  static_l_desc.extra_bits = extra_lbits;
      +  static_d_desc.static_tree = static_dtree;
      +  static_d_desc.extra_bits = extra_dbits;
      +  static_bl_desc.extra_bits = extra_blbits;
      +#endif*/
      +
      +  /* Initialize the mapping length (0..255) -> length code (0..28) */
      +  length = 0;
      +  for (code = 0; code < LENGTH_CODES - 1; code++) {
      +    base_length[code] = length;
      +    for (n = 0; n < (1 << extra_lbits[code]); n++) {
      +      _length_code[length++] = code;
      +    }
      +  }
      +  //Assert (length == 256, "tr_static_init: length != 256");
      +  /* Note that the length 255 (match length 258) can be represented
      +   * in two different ways: code 284 + 5 bits or code 285, so we
      +   * overwrite length_code[255] to use the best encoding:
      +   */
      +  _length_code[length - 1] = code;
      +
      +  /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
      +  dist = 0;
      +  for (code = 0; code < 16; code++) {
      +    base_dist[code] = dist;
      +    for (n = 0; n < (1 << extra_dbits[code]); n++) {
      +      _dist_code[dist++] = code;
      +    }
      +  }
      +  //Assert (dist == 256, "tr_static_init: dist != 256");
      +  dist >>= 7; /* from now on, all distances are divided by 128 */
      +  for (; code < D_CODES; code++) {
      +    base_dist[code] = dist << 7;
      +    for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) {
      +      _dist_code[256 + dist++] = code;
      +    }
      +  }
      +  //Assert (dist == 256, "tr_static_init: 256+dist != 512");
      +
      +  /* Construct the codes of the static literal tree */
      +  for (bits = 0; bits <= MAX_BITS; bits++) {
      +    bl_count[bits] = 0;
      +  }
      +
      +  n = 0;
      +  while (n <= 143) {
      +    static_ltree[n * 2 + 1]/*.Len*/ = 8;
      +    n++;
      +    bl_count[8]++;
      +  }
      +  while (n <= 255) {
      +    static_ltree[n * 2 + 1]/*.Len*/ = 9;
      +    n++;
      +    bl_count[9]++;
      +  }
      +  while (n <= 279) {
      +    static_ltree[n * 2 + 1]/*.Len*/ = 7;
      +    n++;
      +    bl_count[7]++;
      +  }
      +  while (n <= 287) {
      +    static_ltree[n * 2 + 1]/*.Len*/ = 8;
      +    n++;
      +    bl_count[8]++;
      +  }
      +  /* Codes 286 and 287 do not exist, but we must include them in the
      +   * tree construction to get a canonical Huffman tree (longest code
      +   * all ones)
      +   */
      +  gen_codes(static_ltree, L_CODES + 1, bl_count);
      +
      +  /* The static distance tree is trivial: */
      +  for (n = 0; n < D_CODES; n++) {
      +    static_dtree[n * 2 + 1]/*.Len*/ = 5;
      +    static_dtree[n * 2]/*.Code*/ = bi_reverse(n, 5);
      +  }
      +
      +  // Now data ready and we can init static trees
      +  static_l_desc = new StaticTreeDesc(static_ltree, extra_lbits, LITERALS + 1, L_CODES, MAX_BITS);
      +  static_d_desc = new StaticTreeDesc(static_dtree, extra_dbits, 0,          D_CODES, MAX_BITS);
      +  static_bl_desc = new StaticTreeDesc(new Array(0), extra_blbits, 0,         BL_CODES, MAX_BL_BITS);
      +
      +  //static_init_done = true;
      +}
      +
      +
      +/* ===========================================================================
      + * Initialize a new block.
      + */
      +function init_block(s) {
      +  var n; /* iterates over tree elements */
      +
      +  /* Initialize the trees. */
      +  for (n = 0; n < L_CODES;  n++) { s.dyn_ltree[n * 2]/*.Freq*/ = 0; }
      +  for (n = 0; n < D_CODES;  n++) { s.dyn_dtree[n * 2]/*.Freq*/ = 0; }
      +  for (n = 0; n < BL_CODES; n++) { s.bl_tree[n * 2]/*.Freq*/ = 0; }
      +
      +  s.dyn_ltree[END_BLOCK * 2]/*.Freq*/ = 1;
      +  s.opt_len = s.static_len = 0;
      +  s.last_lit = s.matches = 0;
      +}
      +
      +
      +/* ===========================================================================
      + * Flush the bit buffer and align the output on a byte boundary
      + */
      +function bi_windup(s)
      +{
      +  if (s.bi_valid > 8) {
      +    put_short(s, s.bi_buf);
      +  } else if (s.bi_valid > 0) {
      +    //put_byte(s, (Byte)s->bi_buf);
      +    s.pending_buf[s.pending++] = s.bi_buf;
      +  }
      +  s.bi_buf = 0;
      +  s.bi_valid = 0;
      +}
      +
      +/* ===========================================================================
      + * Copy a stored block, storing first the length and its
      + * one's complement if requested.
      + */
      +function copy_block(s, buf, len, header)
      +//DeflateState *s;
      +//charf    *buf;    /* the input data */
      +//unsigned len;     /* its length */
      +//int      header;  /* true if block header must be written */
      +{
      +  bi_windup(s);        /* align on byte boundary */
      +
      +  if (header) {
      +    put_short(s, len);
      +    put_short(s, ~len);
      +  }
      +//  while (len--) {
      +//    put_byte(s, *buf++);
      +//  }
      +  utils.arraySet(s.pending_buf, s.window, buf, len, s.pending);
      +  s.pending += len;
      +}
      +
      +/* ===========================================================================
      + * Compares to subtrees, using the tree depth as tie breaker when
      + * the subtrees have equal frequency. This minimizes the worst case length.
      + */
      +function smaller(tree, n, m, depth) {
      +  var _n2 = n * 2;
      +  var _m2 = m * 2;
      +  return (tree[_n2]/*.Freq*/ < tree[_m2]/*.Freq*/ ||
      +         (tree[_n2]/*.Freq*/ === tree[_m2]/*.Freq*/ && depth[n] <= depth[m]));
      +}
      +
      +/* ===========================================================================
      + * Restore the heap property by moving down the tree starting at node k,
      + * exchanging a node with the smallest of its two sons if necessary, stopping
      + * when the heap property is re-established (each father smaller than its
      + * two sons).
      + */
      +function pqdownheap(s, tree, k)
      +//    deflate_state *s;
      +//    ct_data *tree;  /* the tree to restore */
      +//    int k;               /* node to move down */
      +{
      +  var v = s.heap[k];
      +  var j = k << 1;  /* left son of k */
      +  while (j <= s.heap_len) {
      +    /* Set j to the smallest of the two sons: */
      +    if (j < s.heap_len &&
      +      smaller(tree, s.heap[j + 1], s.heap[j], s.depth)) {
      +      j++;
      +    }
      +    /* Exit if v is smaller than both sons */
      +    if (smaller(tree, v, s.heap[j], s.depth)) { break; }
      +
      +    /* Exchange v with the smallest son */
      +    s.heap[k] = s.heap[j];
      +    k = j;
      +
      +    /* And continue down the tree, setting j to the left son of k */
      +    j <<= 1;
      +  }
      +  s.heap[k] = v;
      +}
      +
      +
      +// inlined manually
      +// var SMALLEST = 1;
      +
      +/* ===========================================================================
      + * Send the block data compressed using the given Huffman trees
      + */
      +function compress_block(s, ltree, dtree)
      +//    deflate_state *s;
      +//    const ct_data *ltree; /* literal tree */
      +//    const ct_data *dtree; /* distance tree */
      +{
      +  var dist;           /* distance of matched string */
      +  var lc;             /* match length or unmatched char (if dist == 0) */
      +  var lx = 0;         /* running index in l_buf */
      +  var code;           /* the code to send */
      +  var extra;          /* number of extra bits to send */
      +
      +  if (s.last_lit !== 0) {
      +    do {
      +      dist = (s.pending_buf[s.d_buf + lx * 2] << 8) | (s.pending_buf[s.d_buf + lx * 2 + 1]);
      +      lc = s.pending_buf[s.l_buf + lx];
      +      lx++;
      +
      +      if (dist === 0) {
      +        send_code(s, lc, ltree); /* send a literal byte */
      +        //Tracecv(isgraph(lc), (stderr," '%c' ", lc));
      +      } else {
      +        /* Here, lc is the match length - MIN_MATCH */
      +        code = _length_code[lc];
      +        send_code(s, code + LITERALS + 1, ltree); /* send the length code */
      +        extra = extra_lbits[code];
      +        if (extra !== 0) {
      +          lc -= base_length[code];
      +          send_bits(s, lc, extra);       /* send the extra length bits */
      +        }
      +        dist--; /* dist is now the match distance - 1 */
      +        code = d_code(dist);
      +        //Assert (code < D_CODES, "bad d_code");
      +
      +        send_code(s, code, dtree);       /* send the distance code */
      +        extra = extra_dbits[code];
      +        if (extra !== 0) {
      +          dist -= base_dist[code];
      +          send_bits(s, dist, extra);   /* send the extra distance bits */
      +        }
      +      } /* literal or match pair ? */
      +
      +      /* Check that the overlay between pending_buf and d_buf+l_buf is ok: */
      +      //Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
      +      //       "pendingBuf overflow");
      +
      +    } while (lx < s.last_lit);
      +  }
      +
      +  send_code(s, END_BLOCK, ltree);
      +}
      +
      +
      +/* ===========================================================================
      + * Construct one Huffman tree and assigns the code bit strings and lengths.
      + * Update the total bit length for the current block.
      + * IN assertion: the field freq is set for all tree elements.
      + * OUT assertions: the fields len and code are set to the optimal bit length
      + *     and corresponding code. The length opt_len is updated; static_len is
      + *     also updated if stree is not null. The field max_code is set.
      + */
      +function build_tree(s, desc)
      +//    deflate_state *s;
      +//    tree_desc *desc; /* the tree descriptor */
      +{
      +  var tree     = desc.dyn_tree;
      +  var stree    = desc.stat_desc.static_tree;
      +  var has_stree = desc.stat_desc.has_stree;
      +  var elems    = desc.stat_desc.elems;
      +  var n, m;          /* iterate over heap elements */
      +  var max_code = -1; /* largest code with non zero frequency */
      +  var node;          /* new node being created */
      +
      +  /* Construct the initial heap, with least frequent element in
      +   * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
      +   * heap[0] is not used.
      +   */
      +  s.heap_len = 0;
      +  s.heap_max = HEAP_SIZE;
      +
      +  for (n = 0; n < elems; n++) {
      +    if (tree[n * 2]/*.Freq*/ !== 0) {
      +      s.heap[++s.heap_len] = max_code = n;
      +      s.depth[n] = 0;
      +
      +    } else {
      +      tree[n * 2 + 1]/*.Len*/ = 0;
      +    }
      +  }
      +
      +  /* The pkzip format requires that at least one distance code exists,
      +   * and that at least one bit should be sent even if there is only one
      +   * possible code. So to avoid special checks later on we force at least
      +   * two codes of non zero frequency.
      +   */
      +  while (s.heap_len < 2) {
      +    node = s.heap[++s.heap_len] = (max_code < 2 ? ++max_code : 0);
      +    tree[node * 2]/*.Freq*/ = 1;
      +    s.depth[node] = 0;
      +    s.opt_len--;
      +
      +    if (has_stree) {
      +      s.static_len -= stree[node * 2 + 1]/*.Len*/;
      +    }
      +    /* node is 0 or 1 so it does not have extra bits */
      +  }
      +  desc.max_code = max_code;
      +
      +  /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
      +   * establish sub-heaps of increasing lengths:
      +   */
      +  for (n = (s.heap_len >> 1/*int /2*/); n >= 1; n--) { pqdownheap(s, tree, n); }
      +
      +  /* Construct the Huffman tree by repeatedly combining the least two
      +   * frequent nodes.
      +   */
      +  node = elems;              /* next internal node of the tree */
      +  do {
      +    //pqremove(s, tree, n);  /* n = node of least frequency */
      +    /*** pqremove ***/
      +    n = s.heap[1/*SMALLEST*/];
      +    s.heap[1/*SMALLEST*/] = s.heap[s.heap_len--];
      +    pqdownheap(s, tree, 1/*SMALLEST*/);
      +    /***/
      +
      +    m = s.heap[1/*SMALLEST*/]; /* m = node of next least frequency */
      +
      +    s.heap[--s.heap_max] = n; /* keep the nodes sorted by frequency */
      +    s.heap[--s.heap_max] = m;
      +
      +    /* Create a new node father of n and m */
      +    tree[node * 2]/*.Freq*/ = tree[n * 2]/*.Freq*/ + tree[m * 2]/*.Freq*/;
      +    s.depth[node] = (s.depth[n] >= s.depth[m] ? s.depth[n] : s.depth[m]) + 1;
      +    tree[n * 2 + 1]/*.Dad*/ = tree[m * 2 + 1]/*.Dad*/ = node;
      +
      +    /* and insert the new node in the heap */
      +    s.heap[1/*SMALLEST*/] = node++;
      +    pqdownheap(s, tree, 1/*SMALLEST*/);
      +
      +  } while (s.heap_len >= 2);
      +
      +  s.heap[--s.heap_max] = s.heap[1/*SMALLEST*/];
      +
      +  /* At this point, the fields freq and dad are set. We can now
      +   * generate the bit lengths.
      +   */
      +  gen_bitlen(s, desc);
      +
      +  /* The field len is now set, we can generate the bit codes */
      +  gen_codes(tree, max_code, s.bl_count);
      +}
      +
      +
      +/* ===========================================================================
      + * Scan a literal or distance tree to determine the frequencies of the codes
      + * in the bit length tree.
      + */
      +function scan_tree(s, tree, max_code)
      +//    deflate_state *s;
      +//    ct_data *tree;   /* the tree to be scanned */
      +//    int max_code;    /* and its largest code of non zero frequency */
      +{
      +  var n;                     /* iterates over all tree elements */
      +  var prevlen = -1;          /* last emitted length */
      +  var curlen;                /* length of current code */
      +
      +  var nextlen = tree[0 * 2 + 1]/*.Len*/; /* length of next code */
      +
      +  var count = 0;             /* repeat count of the current code */
      +  var max_count = 7;         /* max repeat count */
      +  var min_count = 4;         /* min repeat count */
      +
      +  if (nextlen === 0) {
      +    max_count = 138;
      +    min_count = 3;
      +  }
      +  tree[(max_code + 1) * 2 + 1]/*.Len*/ = 0xffff; /* guard */
      +
      +  for (n = 0; n <= max_code; n++) {
      +    curlen = nextlen;
      +    nextlen = tree[(n + 1) * 2 + 1]/*.Len*/;
      +
      +    if (++count < max_count && curlen === nextlen) {
      +      continue;
      +
      +    } else if (count < min_count) {
      +      s.bl_tree[curlen * 2]/*.Freq*/ += count;
      +
      +    } else if (curlen !== 0) {
      +
      +      if (curlen !== prevlen) { s.bl_tree[curlen * 2]/*.Freq*/++; }
      +      s.bl_tree[REP_3_6 * 2]/*.Freq*/++;
      +
      +    } else if (count <= 10) {
      +      s.bl_tree[REPZ_3_10 * 2]/*.Freq*/++;
      +
      +    } else {
      +      s.bl_tree[REPZ_11_138 * 2]/*.Freq*/++;
      +    }
      +
      +    count = 0;
      +    prevlen = curlen;
      +
      +    if (nextlen === 0) {
      +      max_count = 138;
      +      min_count = 3;
      +
      +    } else if (curlen === nextlen) {
      +      max_count = 6;
      +      min_count = 3;
      +
      +    } else {
      +      max_count = 7;
      +      min_count = 4;
      +    }
      +  }
      +}
      +
      +
      +/* ===========================================================================
      + * Send a literal or distance tree in compressed form, using the codes in
      + * bl_tree.
      + */
      +function send_tree(s, tree, max_code)
      +//    deflate_state *s;
      +//    ct_data *tree; /* the tree to be scanned */
      +//    int max_code;       /* and its largest code of non zero frequency */
      +{
      +  var n;                     /* iterates over all tree elements */
      +  var prevlen = -1;          /* last emitted length */
      +  var curlen;                /* length of current code */
      +
      +  var nextlen = tree[0 * 2 + 1]/*.Len*/; /* length of next code */
      +
      +  var count = 0;             /* repeat count of the current code */
      +  var max_count = 7;         /* max repeat count */
      +  var min_count = 4;         /* min repeat count */
      +
      +  /* tree[max_code+1].Len = -1; */  /* guard already set */
      +  if (nextlen === 0) {
      +    max_count = 138;
      +    min_count = 3;
      +  }
      +
      +  for (n = 0; n <= max_code; n++) {
      +    curlen = nextlen;
      +    nextlen = tree[(n + 1) * 2 + 1]/*.Len*/;
      +
      +    if (++count < max_count && curlen === nextlen) {
      +      continue;
      +
      +    } else if (count < min_count) {
      +      do { send_code(s, curlen, s.bl_tree); } while (--count !== 0);
      +
      +    } else if (curlen !== 0) {
      +      if (curlen !== prevlen) {
      +        send_code(s, curlen, s.bl_tree);
      +        count--;
      +      }
      +      //Assert(count >= 3 && count <= 6, " 3_6?");
      +      send_code(s, REP_3_6, s.bl_tree);
      +      send_bits(s, count - 3, 2);
      +
      +    } else if (count <= 10) {
      +      send_code(s, REPZ_3_10, s.bl_tree);
      +      send_bits(s, count - 3, 3);
      +
      +    } else {
      +      send_code(s, REPZ_11_138, s.bl_tree);
      +      send_bits(s, count - 11, 7);
      +    }
      +
      +    count = 0;
      +    prevlen = curlen;
      +    if (nextlen === 0) {
      +      max_count = 138;
      +      min_count = 3;
      +
      +    } else if (curlen === nextlen) {
      +      max_count = 6;
      +      min_count = 3;
      +
      +    } else {
      +      max_count = 7;
      +      min_count = 4;
      +    }
      +  }
      +}
      +
      +
      +/* ===========================================================================
      + * Construct the Huffman tree for the bit lengths and return the index in
      + * bl_order of the last bit length code to send.
      + */
      +function build_bl_tree(s) {
      +  var max_blindex;  /* index of last bit length code of non zero freq */
      +
      +  /* Determine the bit length frequencies for literal and distance trees */
      +  scan_tree(s, s.dyn_ltree, s.l_desc.max_code);
      +  scan_tree(s, s.dyn_dtree, s.d_desc.max_code);
      +
      +  /* Build the bit length tree: */
      +  build_tree(s, s.bl_desc);
      +  /* opt_len now includes the length of the tree representations, except
      +   * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.
      +   */
      +
      +  /* Determine the number of bit length codes to send. The pkzip format
      +   * requires that at least 4 bit length codes be sent. (appnote.txt says
      +   * 3 but the actual value used is 4.)
      +   */
      +  for (max_blindex = BL_CODES - 1; max_blindex >= 3; max_blindex--) {
      +    if (s.bl_tree[bl_order[max_blindex] * 2 + 1]/*.Len*/ !== 0) {
      +      break;
      +    }
      +  }
      +  /* Update opt_len to include the bit length tree and counts */
      +  s.opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4;
      +  //Tracev((stderr, "\ndyn trees: dyn %ld, stat %ld",
      +  //        s->opt_len, s->static_len));
      +
      +  return max_blindex;
      +}
      +
      +
      +/* ===========================================================================
      + * Send the header for a block using dynamic Huffman trees: the counts, the
      + * lengths of the bit length codes, the literal tree and the distance tree.
      + * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
      + */
      +function send_all_trees(s, lcodes, dcodes, blcodes)
      +//    deflate_state *s;
      +//    int lcodes, dcodes, blcodes; /* number of codes for each tree */
      +{
      +  var rank;                    /* index in bl_order */
      +
      +  //Assert (lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes");
      +  //Assert (lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES,
      +  //        "too many codes");
      +  //Tracev((stderr, "\nbl counts: "));
      +  send_bits(s, lcodes - 257, 5); /* not +255 as stated in appnote.txt */
      +  send_bits(s, dcodes - 1,   5);
      +  send_bits(s, blcodes - 4,  4); /* not -3 as stated in appnote.txt */
      +  for (rank = 0; rank < blcodes; rank++) {
      +    //Tracev((stderr, "\nbl code %2d ", bl_order[rank]));
      +    send_bits(s, s.bl_tree[bl_order[rank] * 2 + 1]/*.Len*/, 3);
      +  }
      +  //Tracev((stderr, "\nbl tree: sent %ld", s->bits_sent));
      +
      +  send_tree(s, s.dyn_ltree, lcodes - 1); /* literal tree */
      +  //Tracev((stderr, "\nlit tree: sent %ld", s->bits_sent));
      +
      +  send_tree(s, s.dyn_dtree, dcodes - 1); /* distance tree */
      +  //Tracev((stderr, "\ndist tree: sent %ld", s->bits_sent));
      +}
      +
      +
      +/* ===========================================================================
      + * Check if the data type is TEXT or BINARY, using the following algorithm:
      + * - TEXT if the two conditions below are satisfied:
      + *    a) There are no non-portable control characters belonging to the
      + *       "black list" (0..6, 14..25, 28..31).
      + *    b) There is at least one printable character belonging to the
      + *       "white list" (9 {TAB}, 10 {LF}, 13 {CR}, 32..255).
      + * - BINARY otherwise.
      + * - The following partially-portable control characters form a
      + *   "gray list" that is ignored in this detection algorithm:
      + *   (7 {BEL}, 8 {BS}, 11 {VT}, 12 {FF}, 26 {SUB}, 27 {ESC}).
      + * IN assertion: the fields Freq of dyn_ltree are set.
      + */
      +function detect_data_type(s) {
      +  /* black_mask is the bit mask of black-listed bytes
      +   * set bits 0..6, 14..25, and 28..31
      +   * 0xf3ffc07f = binary 11110011111111111100000001111111
      +   */
      +  var black_mask = 0xf3ffc07f;
      +  var n;
      +
      +  /* Check for non-textual ("black-listed") bytes. */
      +  for (n = 0; n <= 31; n++, black_mask >>>= 1) {
      +    if ((black_mask & 1) && (s.dyn_ltree[n * 2]/*.Freq*/ !== 0)) {
      +      return Z_BINARY;
      +    }
      +  }
      +
      +  /* Check for textual ("white-listed") bytes. */
      +  if (s.dyn_ltree[9 * 2]/*.Freq*/ !== 0 || s.dyn_ltree[10 * 2]/*.Freq*/ !== 0 ||
      +      s.dyn_ltree[13 * 2]/*.Freq*/ !== 0) {
      +    return Z_TEXT;
      +  }
      +  for (n = 32; n < LITERALS; n++) {
      +    if (s.dyn_ltree[n * 2]/*.Freq*/ !== 0) {
      +      return Z_TEXT;
      +    }
      +  }
      +
      +  /* There are no "black-listed" or "white-listed" bytes:
      +   * this stream either is empty or has tolerated ("gray-listed") bytes only.
      +   */
      +  return Z_BINARY;
      +}
      +
      +
      +var static_init_done = false;
      +
      +/* ===========================================================================
      + * Initialize the tree data structures for a new zlib stream.
      + */
      +function _tr_init(s)
      +{
      +
      +  if (!static_init_done) {
      +    tr_static_init();
      +    static_init_done = true;
      +  }
      +
      +  s.l_desc  = new TreeDesc(s.dyn_ltree, static_l_desc);
      +  s.d_desc  = new TreeDesc(s.dyn_dtree, static_d_desc);
      +  s.bl_desc = new TreeDesc(s.bl_tree, static_bl_desc);
      +
      +  s.bi_buf = 0;
      +  s.bi_valid = 0;
      +
      +  /* Initialize the first block of the first file: */
      +  init_block(s);
      +}
      +
      +
      +/* ===========================================================================
      + * Send a stored block
      + */
      +function _tr_stored_block(s, buf, stored_len, last)
      +//DeflateState *s;
      +//charf *buf;       /* input block */
      +//ulg stored_len;   /* length of input block */
      +//int last;         /* one if this is the last block for a file */
      +{
      +  send_bits(s, (STORED_BLOCK << 1) + (last ? 1 : 0), 3);    /* send block type */
      +  copy_block(s, buf, stored_len, true); /* with header */
      +}
      +
      +
      +/* ===========================================================================
      + * Send one empty static block to give enough lookahead for inflate.
      + * This takes 10 bits, of which 7 may remain in the bit buffer.
      + */
      +function _tr_align(s) {
      +  send_bits(s, STATIC_TREES << 1, 3);
      +  send_code(s, END_BLOCK, static_ltree);
      +  bi_flush(s);
      +}
      +
      +
      +/* ===========================================================================
      + * Determine the best encoding for the current block: dynamic trees, static
      + * trees or store, and output the encoded block to the zip file.
      + */
      +function _tr_flush_block(s, buf, stored_len, last)
      +//DeflateState *s;
      +//charf *buf;       /* input block, or NULL if too old */
      +//ulg stored_len;   /* length of input block */
      +//int last;         /* one if this is the last block for a file */
      +{
      +  var opt_lenb, static_lenb;  /* opt_len and static_len in bytes */
      +  var max_blindex = 0;        /* index of last bit length code of non zero freq */
      +
      +  /* Build the Huffman trees unless a stored block is forced */
      +  if (s.level > 0) {
      +
      +    /* Check if the file is binary or text */
      +    if (s.strm.data_type === Z_UNKNOWN) {
      +      s.strm.data_type = detect_data_type(s);
      +    }
      +
      +    /* Construct the literal and distance trees */
      +    build_tree(s, s.l_desc);
      +    // Tracev((stderr, "\nlit data: dyn %ld, stat %ld", s->opt_len,
      +    //        s->static_len));
      +
      +    build_tree(s, s.d_desc);
      +    // Tracev((stderr, "\ndist data: dyn %ld, stat %ld", s->opt_len,
      +    //        s->static_len));
      +    /* At this point, opt_len and static_len are the total bit lengths of
      +     * the compressed block data, excluding the tree representations.
      +     */
      +
      +    /* Build the bit length tree for the above two trees, and get the index
      +     * in bl_order of the last bit length code to send.
      +     */
      +    max_blindex = build_bl_tree(s);
      +
      +    /* Determine the best encoding. Compute the block lengths in bytes. */
      +    opt_lenb = (s.opt_len + 3 + 7) >>> 3;
      +    static_lenb = (s.static_len + 3 + 7) >>> 3;
      +
      +    // Tracev((stderr, "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u ",
      +    //        opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
      +    //        s->last_lit));
      +
      +    if (static_lenb <= opt_lenb) { opt_lenb = static_lenb; }
      +
      +  } else {
      +    // Assert(buf != (char*)0, "lost buf");
      +    opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
      +  }
      +
      +  if ((stored_len + 4 <= opt_lenb) && (buf !== -1)) {
      +    /* 4: two words for the lengths */
      +
      +    /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
      +     * Otherwise we can't have processed more than WSIZE input bytes since
      +     * the last block flush, because compression would have been
      +     * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
      +     * transform a block into a stored block.
      +     */
      +    _tr_stored_block(s, buf, stored_len, last);
      +
      +  } else if (s.strategy === Z_FIXED || static_lenb === opt_lenb) {
      +
      +    send_bits(s, (STATIC_TREES << 1) + (last ? 1 : 0), 3);
      +    compress_block(s, static_ltree, static_dtree);
      +
      +  } else {
      +    send_bits(s, (DYN_TREES << 1) + (last ? 1 : 0), 3);
      +    send_all_trees(s, s.l_desc.max_code + 1, s.d_desc.max_code + 1, max_blindex + 1);
      +    compress_block(s, s.dyn_ltree, s.dyn_dtree);
      +  }
      +  // Assert (s->compressed_len == s->bits_sent, "bad compressed size");
      +  /* The above check is made mod 2^32, for files larger than 512 MB
      +   * and uLong implemented on 32 bits.
      +   */
      +  init_block(s);
      +
      +  if (last) {
      +    bi_windup(s);
      +  }
      +  // Tracev((stderr,"\ncomprlen %lu(%lu) ", s->compressed_len>>3,
      +  //       s->compressed_len-7*last));
      +}
      +
      +/* ===========================================================================
      + * Save the match info and tally the frequency counts. Return true if
      + * the current block must be flushed.
      + */
      +function _tr_tally(s, dist, lc)
      +//    deflate_state *s;
      +//    unsigned dist;  /* distance of matched string */
      +//    unsigned lc;    /* match length-MIN_MATCH or unmatched char (if dist==0) */
      +{
      +  //var out_length, in_length, dcode;
      +
      +  s.pending_buf[s.d_buf + s.last_lit * 2]     = (dist >>> 8) & 0xff;
      +  s.pending_buf[s.d_buf + s.last_lit * 2 + 1] = dist & 0xff;
      +
      +  s.pending_buf[s.l_buf + s.last_lit] = lc & 0xff;
      +  s.last_lit++;
      +
      +  if (dist === 0) {
      +    /* lc is the unmatched char */
      +    s.dyn_ltree[lc * 2]/*.Freq*/++;
      +  } else {
      +    s.matches++;
      +    /* Here, lc is the match length - MIN_MATCH */
      +    dist--;             /* dist = match distance - 1 */
      +    //Assert((ush)dist < (ush)MAX_DIST(s) &&
      +    //       (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
      +    //       (ush)d_code(dist) < (ush)D_CODES,  "_tr_tally: bad match");
      +
      +    s.dyn_ltree[(_length_code[lc] + LITERALS + 1) * 2]/*.Freq*/++;
      +    s.dyn_dtree[d_code(dist) * 2]/*.Freq*/++;
      +  }
      +
      +// (!) This block is disabled in zlib defailts,
      +// don't enable it for binary compatibility
      +
      +//#ifdef TRUNCATE_BLOCK
      +//  /* Try to guess if it is profitable to stop the current block here */
      +//  if ((s.last_lit & 0x1fff) === 0 && s.level > 2) {
      +//    /* Compute an upper bound for the compressed length */
      +//    out_length = s.last_lit*8;
      +//    in_length = s.strstart - s.block_start;
      +//
      +//    for (dcode = 0; dcode < D_CODES; dcode++) {
      +//      out_length += s.dyn_dtree[dcode*2]/*.Freq*/ * (5 + extra_dbits[dcode]);
      +//    }
      +//    out_length >>>= 3;
      +//    //Tracev((stderr,"\nlast_lit %u, in %ld, out ~%ld(%ld%%) ",
      +//    //       s->last_lit, in_length, out_length,
      +//    //       100L - out_length*100L/in_length));
      +//    if (s.matches < (s.last_lit>>1)/*int /2*/ && out_length < (in_length>>1)/*int /2*/) {
      +//      return true;
      +//    }
      +//  }
      +//#endif
      +
      +  return (s.last_lit === s.lit_bufsize - 1);
      +  /* We avoid equality with lit_bufsize because of wraparound at 64K
      +   * on 16 bit machines and because stored blocks are restricted to
      +   * 64K-1 bytes.
      +   */
      +}
      +
      +exports._tr_init  = _tr_init;
      +exports._tr_stored_block = _tr_stored_block;
      +exports._tr_flush_block  = _tr_flush_block;
      +exports._tr_tally = _tr_tally;
      +exports._tr_align = _tr_align;
      +
      +},{"../utils/common":41}],53:[function(require,module,exports){
      +'use strict';
      +
      +// (C) 1995-2013 Jean-loup Gailly and Mark Adler
      +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
      +//
      +// This software is provided 'as-is', without any express or implied
      +// warranty. In no event will the authors be held liable for any damages
      +// arising from the use of this software.
      +//
      +// Permission is granted to anyone to use this software for any purpose,
      +// including commercial applications, and to alter it and redistribute it
      +// freely, subject to the following restrictions:
      +//
      +// 1. The origin of this software must not be misrepresented; you must not
      +//   claim that you wrote the original software. If you use this software
      +//   in a product, an acknowledgment in the product documentation would be
      +//   appreciated but is not required.
      +// 2. Altered source versions must be plainly marked as such, and must not be
      +//   misrepresented as being the original software.
      +// 3. This notice may not be removed or altered from any source distribution.
      +
      +function ZStream() {
      +  /* next input byte */
      +  this.input = null; // JS specific, because we have no pointers
      +  this.next_in = 0;
      +  /* number of bytes available at input */
      +  this.avail_in = 0;
      +  /* total number of input bytes read so far */
      +  this.total_in = 0;
      +  /* next output byte should be put there */
      +  this.output = null; // JS specific, because we have no pointers
      +  this.next_out = 0;
      +  /* remaining free space at output */
      +  this.avail_out = 0;
      +  /* total number of bytes output so far */
      +  this.total_out = 0;
      +  /* last error message, NULL if no error */
      +  this.msg = ''/*Z_NULL*/;
      +  /* not visible by applications */
      +  this.state = null;
      +  /* best guess about the data type: binary or text */
      +  this.data_type = 2/*Z_UNKNOWN*/;
      +  /* adler32 value of the uncompressed data */
      +  this.adler = 0;
      +}
      +
      +module.exports = ZStream;
      +
      +},{}],54:[function(require,module,exports){
      +'use strict';
      +module.exports = typeof setImmediate === 'function' ? setImmediate :
      +	function setImmediate() {
      +		var args = [].slice.apply(arguments);
      +		args.splice(1, 0, 0);
      +		setTimeout.apply(null, args);
      +	};
      +
      +},{}]},{},[10])(10)
      +});
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/script-dir/jszip/dist/jszip.min.js b/docs/site/testapidocs/script-dir/jszip/dist/jszip.min.js
      new file mode 100644
      index 00000000..520db074
      --- /dev/null
      +++ b/docs/site/testapidocs/script-dir/jszip/dist/jszip.min.js
      @@ -0,0 +1,13 @@
      +/*!
      +
      +JSZip v3.2.1 - A JavaScript class for generating and reading zip files
      +<http://stuartk.com/jszip>
      +
      +(c) 2009-2016 Stuart Knightley <stuart [at] stuartk.com>
      +Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/master/LICENSE.markdown.
      +
      +JSZip uses the library pako released under the MIT license :
      +https://github.com/nodeca/pako/blob/master/LICENSE
      +*/
      +
      +!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).JSZip=t()}}(function(){return function s(a,o,h){function u(r,t){if(!o[r]){if(!a[r]){var e="function"==typeof require&&require;if(!t&&e)return e(r,!0);if(l)return l(r,!0);var i=new Error("Cannot find module '"+r+"'");throw i.code="MODULE_NOT_FOUND",i}var n=o[r]={exports:{}};a[r][0].call(n.exports,function(t){var e=a[r][1][t];return u(e||t)},n,n.exports,s,a,o,h)}return o[r].exports}for(var l="function"==typeof require&&require,t=0;t<h.length;t++)u(h[t]);return u}({1:[function(t,e,r){"use strict";var c=t("./utils"),d=t("./support"),p="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";r.encode=function(t){for(var e,r,i,n,s,a,o,h=[],u=0,l=t.length,f=l,d="string"!==c.getTypeOf(t);u<t.length;)f=l-u,i=d?(e=t[u++],r=u<l?t[u++]:0,u<l?t[u++]:0):(e=t.charCodeAt(u++),r=u<l?t.charCodeAt(u++):0,u<l?t.charCodeAt(u++):0),n=e>>2,s=(3&e)<<4|r>>4,a=1<f?(15&r)<<2|i>>6:64,o=2<f?63&i:64,h.push(p.charAt(n)+p.charAt(s)+p.charAt(a)+p.charAt(o));return h.join("")},r.decode=function(t){var e,r,i,n,s,a,o=0,h=0,u="data:";if(t.substr(0,u.length)===u)throw new Error("Invalid base64 input, it looks like a data url.");var l,f=3*(t=t.replace(/[^A-Za-z0-9\+\/\=]/g,"")).length/4;if(t.charAt(t.length-1)===p.charAt(64)&&f--,t.charAt(t.length-2)===p.charAt(64)&&f--,f%1!=0)throw new Error("Invalid base64 input, bad content length.");for(l=d.uint8array?new Uint8Array(0|f):new Array(0|f);o<t.length;)e=p.indexOf(t.charAt(o++))<<2|(n=p.indexOf(t.charAt(o++)))>>4,r=(15&n)<<4|(s=p.indexOf(t.charAt(o++)))>>2,i=(3&s)<<6|(a=p.indexOf(t.charAt(o++))),l[h++]=e,64!==s&&(l[h++]=r),64!==a&&(l[h++]=i);return l}},{"./support":30,"./utils":32}],2:[function(t,e,r){"use strict";var i=t("./external"),n=t("./stream/DataWorker"),s=t("./stream/DataLengthProbe"),a=t("./stream/Crc32Probe");s=t("./stream/DataLengthProbe");function o(t,e,r,i,n){this.compressedSize=t,this.uncompressedSize=e,this.crc32=r,this.compression=i,this.compressedContent=n}o.prototype={getContentWorker:function(){var t=new n(i.Promise.resolve(this.compressedContent)).pipe(this.compression.uncompressWorker()).pipe(new s("data_length")),e=this;return t.on("end",function(){if(this.streamInfo.data_length!==e.uncompressedSize)throw new Error("Bug : uncompressed data size mismatch")}),t},getCompressedWorker:function(){return new n(i.Promise.resolve(this.compressedContent)).withStreamInfo("compressedSize",this.compressedSize).withStreamInfo("uncompressedSize",this.uncompressedSize).withStreamInfo("crc32",this.crc32).withStreamInfo("compression",this.compression)}},o.createWorkerFrom=function(t,e,r){return t.pipe(new a).pipe(new s("uncompressedSize")).pipe(e.compressWorker(r)).pipe(new s("compressedSize")).withStreamInfo("compression",e)},e.exports=o},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(t,e,r){"use strict";var i=t("./stream/GenericWorker");r.STORE={magic:"\0\0",compressWorker:function(t){return new i("STORE compression")},uncompressWorker:function(){return new i("STORE decompression")}},r.DEFLATE=t("./flate")},{"./flate":7,"./stream/GenericWorker":28}],4:[function(t,e,r){"use strict";var i=t("./utils");var o=function(){for(var t,e=[],r=0;r<256;r++){t=r;for(var i=0;i<8;i++)t=1&t?3988292384^t>>>1:t>>>1;e[r]=t}return e}();e.exports=function(t,e){return void 0!==t&&t.length?"string"!==i.getTypeOf(t)?function(t,e,r,i){var n=o,s=i+r;t^=-1;for(var a=i;a<s;a++)t=t>>>8^n[255&(t^e[a])];return-1^t}(0|e,t,t.length,0):function(t,e,r,i){var n=o,s=i+r;t^=-1;for(var a=i;a<s;a++)t=t>>>8^n[255&(t^e.charCodeAt(a))];return-1^t}(0|e,t,t.length,0):0}},{"./utils":32}],5:[function(t,e,r){"use strict";r.base64=!1,r.binary=!1,r.dir=!1,r.createFolders=!0,r.date=null,r.compression=null,r.compressionOptions=null,r.comment=null,r.unixPermissions=null,r.dosPermissions=null},{}],6:[function(t,e,r){"use strict";var i=null;i="undefined"!=typeof Promise?Promise:t("lie"),e.exports={Promise:i}},{lie:37}],7:[function(t,e,r){"use strict";var i="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Uint32Array,n=t("pako"),s=t("./utils"),a=t("./stream/GenericWorker"),o=i?"uint8array":"array";function h(t,e){a.call(this,"FlateWorker/"+t),this._pako=null,this._pakoAction=t,this._pakoOptions=e,this.meta={}}r.magic="\b\0",s.inherits(h,a),h.prototype.processChunk=function(t){this.meta=t.meta,null===this._pako&&this._createPako(),this._pako.push(s.transformTo(o,t.data),!1)},h.prototype.flush=function(){a.prototype.flush.call(this),null===this._pako&&this._createPako(),this._pako.push([],!0)},h.prototype.cleanUp=function(){a.prototype.cleanUp.call(this),this._pako=null},h.prototype._createPako=function(){this._pako=new n[this._pakoAction]({raw:!0,level:this._pakoOptions.level||-1});var e=this;this._pako.onData=function(t){e.push({data:t,meta:e.meta})}},r.compressWorker=function(t){return new h("Deflate",t)},r.uncompressWorker=function(){return new h("Inflate",{})}},{"./stream/GenericWorker":28,"./utils":32,pako:38}],8:[function(t,e,r){"use strict";function A(t,e){var r,i="";for(r=0;r<e;r++)i+=String.fromCharCode(255&t),t>>>=8;return i}function i(t,e,r,i,n,s){var a,o,h=t.file,u=t.compression,l=s!==O.utf8encode,f=I.transformTo("string",s(h.name)),d=I.transformTo("string",O.utf8encode(h.name)),c=h.comment,p=I.transformTo("string",s(c)),m=I.transformTo("string",O.utf8encode(c)),_=d.length!==h.name.length,g=m.length!==c.length,b="",v="",y="",w=h.dir,k=h.date,x={crc32:0,compressedSize:0,uncompressedSize:0};e&&!r||(x.crc32=t.crc32,x.compressedSize=t.compressedSize,x.uncompressedSize=t.uncompressedSize);var S=0;e&&(S|=8),l||!_&&!g||(S|=2048);var z=0,C=0;w&&(z|=16),"UNIX"===n?(C=798,z|=function(t,e){var r=t;return t||(r=e?16893:33204),(65535&r)<<16}(h.unixPermissions,w)):(C=20,z|=function(t){return 63&(t||0)}(h.dosPermissions)),a=k.getUTCHours(),a<<=6,a|=k.getUTCMinutes(),a<<=5,a|=k.getUTCSeconds()/2,o=k.getUTCFullYear()-1980,o<<=4,o|=k.getUTCMonth()+1,o<<=5,o|=k.getUTCDate(),_&&(v=A(1,1)+A(B(f),4)+d,b+="up"+A(v.length,2)+v),g&&(y=A(1,1)+A(B(p),4)+m,b+="uc"+A(y.length,2)+y);var E="";return E+="\n\0",E+=A(S,2),E+=u.magic,E+=A(a,2),E+=A(o,2),E+=A(x.crc32,4),E+=A(x.compressedSize,4),E+=A(x.uncompressedSize,4),E+=A(f.length,2),E+=A(b.length,2),{fileRecord:R.LOCAL_FILE_HEADER+E+f+b,dirRecord:R.CENTRAL_FILE_HEADER+A(C,2)+E+A(p.length,2)+"\0\0\0\0"+A(z,4)+A(i,4)+f+b+p}}var I=t("../utils"),n=t("../stream/GenericWorker"),O=t("../utf8"),B=t("../crc32"),R=t("../signature");function s(t,e,r,i){n.call(this,"ZipFileWorker"),this.bytesWritten=0,this.zipComment=e,this.zipPlatform=r,this.encodeFileName=i,this.streamFiles=t,this.accumulate=!1,this.contentBuffer=[],this.dirRecords=[],this.currentSourceOffset=0,this.entriesCount=0,this.currentFile=null,this._sources=[]}I.inherits(s,n),s.prototype.push=function(t){var e=t.meta.percent||0,r=this.entriesCount,i=this._sources.length;this.accumulate?this.contentBuffer.push(t):(this.bytesWritten+=t.data.length,n.prototype.push.call(this,{data:t.data,meta:{currentFile:this.currentFile,percent:r?(e+100*(r-i-1))/r:100}}))},s.prototype.openedSource=function(t){this.currentSourceOffset=this.bytesWritten,this.currentFile=t.file.name;var e=this.streamFiles&&!t.file.dir;if(e){var r=i(t,e,!1,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);this.push({data:r.fileRecord,meta:{percent:0}})}else this.accumulate=!0},s.prototype.closedSource=function(t){this.accumulate=!1;var e=this.streamFiles&&!t.file.dir,r=i(t,e,!0,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);if(this.dirRecords.push(r.dirRecord),e)this.push({data:function(t){return R.DATA_DESCRIPTOR+A(t.crc32,4)+A(t.compressedSize,4)+A(t.uncompressedSize,4)}(t),meta:{percent:100}});else for(this.push({data:r.fileRecord,meta:{percent:0}});this.contentBuffer.length;)this.push(this.contentBuffer.shift());this.currentFile=null},s.prototype.flush=function(){for(var t=this.bytesWritten,e=0;e<this.dirRecords.length;e++)this.push({data:this.dirRecords[e],meta:{percent:100}});var r=this.bytesWritten-t,i=function(t,e,r,i,n){var s=I.transformTo("string",n(i));return R.CENTRAL_DIRECTORY_END+"\0\0\0\0"+A(t,2)+A(t,2)+A(e,4)+A(r,4)+A(s.length,2)+s}(this.dirRecords.length,r,t,this.zipComment,this.encodeFileName);this.push({data:i,meta:{percent:100}})},s.prototype.prepareNextSource=function(){this.previous=this._sources.shift(),this.openedSource(this.previous.streamInfo),this.isPaused?this.previous.pause():this.previous.resume()},s.prototype.registerPrevious=function(t){this._sources.push(t);var e=this;return t.on("data",function(t){e.processChunk(t)}),t.on("end",function(){e.closedSource(e.previous.streamInfo),e._sources.length?e.prepareNextSource():e.end()}),t.on("error",function(t){e.error(t)}),this},s.prototype.resume=function(){return!!n.prototype.resume.call(this)&&(!this.previous&&this._sources.length?(this.prepareNextSource(),!0):this.previous||this._sources.length||this.generatedError?void 0:(this.end(),!0))},s.prototype.error=function(t){var e=this._sources;if(!n.prototype.error.call(this,t))return!1;for(var r=0;r<e.length;r++)try{e[r].error(t)}catch(t){}return!0},s.prototype.lock=function(){n.prototype.lock.call(this);for(var t=this._sources,e=0;e<t.length;e++)t[e].lock()},e.exports=s},{"../crc32":4,"../signature":23,"../stream/GenericWorker":28,"../utf8":31,"../utils":32}],9:[function(t,e,r){"use strict";var u=t("../compressions"),i=t("./ZipFileWorker");r.generateWorker=function(t,a,e){var o=new i(a.streamFiles,e,a.platform,a.encodeFileName),h=0;try{t.forEach(function(t,e){h++;var r=function(t,e){var r=t||e,i=u[r];if(!i)throw new Error(r+" is not a valid compression method !");return i}(e.options.compression,a.compression),i=e.options.compressionOptions||a.compressionOptions||{},n=e.dir,s=e.date;e._compressWorker(r,i).withStreamInfo("file",{name:t,dir:n,date:s,comment:e.comment||"",unixPermissions:e.unixPermissions,dosPermissions:e.dosPermissions}).pipe(o)}),o.entriesCount=h}catch(t){o.error(t)}return o}},{"../compressions":3,"./ZipFileWorker":8}],10:[function(t,e,r){"use strict";function i(){if(!(this instanceof i))return new i;if(arguments.length)throw new Error("The constructor with parameters has been removed in JSZip 3.0, please check the upgrade guide.");this.files={},this.comment=null,this.root="",this.clone=function(){var t=new i;for(var e in this)"function"!=typeof this[e]&&(t[e]=this[e]);return t}}(i.prototype=t("./object")).loadAsync=t("./load"),i.support=t("./support"),i.defaults=t("./defaults"),i.version="3.2.0",i.loadAsync=function(t,e){return(new i).loadAsync(t,e)},i.external=t("./external"),e.exports=i},{"./defaults":5,"./external":6,"./load":11,"./object":15,"./support":30}],11:[function(t,e,r){"use strict";var i=t("./utils"),n=t("./external"),o=t("./utf8"),h=(i=t("./utils"),t("./zipEntries")),s=t("./stream/Crc32Probe"),u=t("./nodejsUtils");function l(i){return new n.Promise(function(t,e){var r=i.decompressed.getContentWorker().pipe(new s);r.on("error",function(t){e(t)}).on("end",function(){r.streamInfo.crc32!==i.decompressed.crc32?e(new Error("Corrupted zip : CRC32 mismatch")):t()}).resume()})}e.exports=function(t,s){var a=this;return s=i.extend(s||{},{base64:!1,checkCRC32:!1,optimizedBinaryString:!1,createFolders:!1,decodeFileName:o.utf8decode}),u.isNode&&u.isStream(t)?n.Promise.reject(new Error("JSZip can't accept a stream when loading a zip file.")):i.prepareContent("the loaded zip file",t,!0,s.optimizedBinaryString,s.base64).then(function(t){var e=new h(s);return e.load(t),e}).then(function(t){var e=[n.Promise.resolve(t)],r=t.files;if(s.checkCRC32)for(var i=0;i<r.length;i++)e.push(l(r[i]));return n.Promise.all(e)}).then(function(t){for(var e=t.shift(),r=e.files,i=0;i<r.length;i++){var n=r[i];a.file(n.fileNameStr,n.decompressed,{binary:!0,optimizedBinaryString:!0,date:n.date,dir:n.dir,comment:n.fileCommentStr.length?n.fileCommentStr:null,unixPermissions:n.unixPermissions,dosPermissions:n.dosPermissions,createFolders:s.createFolders})}return e.zipComment.length&&(a.comment=e.zipComment),a})}},{"./external":6,"./nodejsUtils":14,"./stream/Crc32Probe":25,"./utf8":31,"./utils":32,"./zipEntries":33}],12:[function(t,e,r){"use strict";var i=t("../utils"),n=t("../stream/GenericWorker");function s(t,e){n.call(this,"Nodejs stream input adapter for "+t),this._upstreamEnded=!1,this._bindStream(e)}i.inherits(s,n),s.prototype._bindStream=function(t){var e=this;(this._stream=t).pause(),t.on("data",function(t){e.push({data:t,meta:{percent:0}})}).on("error",function(t){e.isPaused?this.generatedError=t:e.error(t)}).on("end",function(){e.isPaused?e._upstreamEnded=!0:e.end()})},s.prototype.pause=function(){return!!n.prototype.pause.call(this)&&(this._stream.pause(),!0)},s.prototype.resume=function(){return!!n.prototype.resume.call(this)&&(this._upstreamEnded?this.end():this._stream.resume(),!0)},e.exports=s},{"../stream/GenericWorker":28,"../utils":32}],13:[function(t,e,r){"use strict";var n=t("readable-stream").Readable;function i(t,e,r){n.call(this,e),this._helper=t;var i=this;t.on("data",function(t,e){i.push(t)||i._helper.pause(),r&&r(e)}).on("error",function(t){i.emit("error",t)}).on("end",function(){i.push(null)})}t("../utils").inherits(i,n),i.prototype._read=function(){this._helper.resume()},e.exports=i},{"../utils":32,"readable-stream":16}],14:[function(t,e,r){"use strict";e.exports={isNode:"undefined"!=typeof Buffer,newBufferFrom:function(t,e){if(Buffer.from&&Buffer.from!==Uint8Array.from)return Buffer.from(t,e);if("number"==typeof t)throw new Error('The "data" argument must not be a number');return new Buffer(t,e)},allocBuffer:function(t){if(Buffer.alloc)return Buffer.alloc(t);var e=new Buffer(t);return e.fill(0),e},isBuffer:function(t){return Buffer.isBuffer(t)},isStream:function(t){return t&&"function"==typeof t.on&&"function"==typeof t.pause&&"function"==typeof t.resume}}},{}],15:[function(t,e,r){"use strict";function s(t,e,r){var i,n=u.getTypeOf(e),s=u.extend(r||{},f);s.date=s.date||new Date,null!==s.compression&&(s.compression=s.compression.toUpperCase()),"string"==typeof s.unixPermissions&&(s.unixPermissions=parseInt(s.unixPermissions,8)),s.unixPermissions&&16384&s.unixPermissions&&(s.dir=!0),s.dosPermissions&&16&s.dosPermissions&&(s.dir=!0),s.dir&&(t=g(t)),s.createFolders&&(i=_(t))&&b.call(this,i,!0);var a="string"===n&&!1===s.binary&&!1===s.base64;r&&void 0!==r.binary||(s.binary=!a),(e instanceof d&&0===e.uncompressedSize||s.dir||!e||0===e.length)&&(s.base64=!1,s.binary=!0,e="",s.compression="STORE",n="string");var o=null;o=e instanceof d||e instanceof l?e:p.isNode&&p.isStream(e)?new m(t,e):u.prepareContent(t,e,s.binary,s.optimizedBinaryString,s.base64);var h=new c(t,o,s);this.files[t]=h}var n=t("./utf8"),u=t("./utils"),l=t("./stream/GenericWorker"),a=t("./stream/StreamHelper"),f=t("./defaults"),d=t("./compressedObject"),c=t("./zipObject"),o=t("./generate"),p=t("./nodejsUtils"),m=t("./nodejs/NodejsStreamInputAdapter"),_=function(t){"/"===t.slice(-1)&&(t=t.substring(0,t.length-1));var e=t.lastIndexOf("/");return 0<e?t.substring(0,e):""},g=function(t){return"/"!==t.slice(-1)&&(t+="/"),t},b=function(t,e){return e=void 0!==e?e:f.createFolders,t=g(t),this.files[t]||s.call(this,t,null,{dir:!0,createFolders:e}),this.files[t]};function h(t){return"[object RegExp]"===Object.prototype.toString.call(t)}var i={load:function(){throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.")},forEach:function(t){var e,r,i;for(e in this.files)this.files.hasOwnProperty(e)&&(i=this.files[e],(r=e.slice(this.root.length,e.length))&&e.slice(0,this.root.length)===this.root&&t(r,i))},filter:function(r){var i=[];return this.forEach(function(t,e){r(t,e)&&i.push(e)}),i},file:function(t,e,r){if(1!==arguments.length)return t=this.root+t,s.call(this,t,e,r),this;if(h(t)){var i=t;return this.filter(function(t,e){return!e.dir&&i.test(t)})}var n=this.files[this.root+t];return n&&!n.dir?n:null},folder:function(r){if(!r)return this;if(h(r))return this.filter(function(t,e){return e.dir&&r.test(t)});var t=this.root+r,e=b.call(this,t),i=this.clone();return i.root=e.name,i},remove:function(r){r=this.root+r;var t=this.files[r];if(t||("/"!==r.slice(-1)&&(r+="/"),t=this.files[r]),t&&!t.dir)delete this.files[r];else for(var e=this.filter(function(t,e){return e.name.slice(0,r.length)===r}),i=0;i<e.length;i++)delete this.files[e[i].name];return this},generate:function(t){throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.")},generateInternalStream:function(t){var e,r={};try{if((r=u.extend(t||{},{streamFiles:!1,compression:"STORE",compressionOptions:null,type:"",platform:"DOS",comment:null,mimeType:"application/zip",encodeFileName:n.utf8encode})).type=r.type.toLowerCase(),r.compression=r.compression.toUpperCase(),"binarystring"===r.type&&(r.type="string"),!r.type)throw new Error("No output type specified.");u.checkSupport(r.type),"darwin"!==r.platform&&"freebsd"!==r.platform&&"linux"!==r.platform&&"sunos"!==r.platform||(r.platform="UNIX"),"win32"===r.platform&&(r.platform="DOS");var i=r.comment||this.comment||"";e=o.generateWorker(this,r,i)}catch(t){(e=new l("error")).error(t)}return new a(e,r.type||"string",r.mimeType)},generateAsync:function(t,e){return this.generateInternalStream(t).accumulate(e)},generateNodeStream:function(t,e){return(t=t||{}).type||(t.type="nodebuffer"),this.generateInternalStream(t).toNodejsStream(e)}};e.exports=i},{"./compressedObject":2,"./defaults":5,"./generate":9,"./nodejs/NodejsStreamInputAdapter":12,"./nodejsUtils":14,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31,"./utils":32,"./zipObject":35}],16:[function(t,e,r){e.exports=t("stream")},{stream:void 0}],17:[function(t,e,r){"use strict";var i=t("./DataReader");function n(t){i.call(this,t);for(var e=0;e<this.data.length;e++)t[e]=255&t[e]}t("../utils").inherits(n,i),n.prototype.byteAt=function(t){return this.data[this.zero+t]},n.prototype.lastIndexOfSignature=function(t){for(var e=t.charCodeAt(0),r=t.charCodeAt(1),i=t.charCodeAt(2),n=t.charCodeAt(3),s=this.length-4;0<=s;--s)if(this.data[s]===e&&this.data[s+1]===r&&this.data[s+2]===i&&this.data[s+3]===n)return s-this.zero;return-1},n.prototype.readAndCheckSignature=function(t){var e=t.charCodeAt(0),r=t.charCodeAt(1),i=t.charCodeAt(2),n=t.charCodeAt(3),s=this.readData(4);return e===s[0]&&r===s[1]&&i===s[2]&&n===s[3]},n.prototype.readData=function(t){if(this.checkOffset(t),0===t)return[];var e=this.data.slice(this.zero+this.index,this.zero+this.index+t);return this.index+=t,e},e.exports=n},{"../utils":32,"./DataReader":18}],18:[function(t,e,r){"use strict";var i=t("../utils");function n(t){this.data=t,this.length=t.length,this.index=0,this.zero=0}n.prototype={checkOffset:function(t){this.checkIndex(this.index+t)},checkIndex:function(t){if(this.length<this.zero+t||t<0)throw new Error("End of data reached (data length = "+this.length+", asked index = "+t+"). Corrupted zip ?")},setIndex:function(t){this.checkIndex(t),this.index=t},skip:function(t){this.setIndex(this.index+t)},byteAt:function(t){},readInt:function(t){var e,r=0;for(this.checkOffset(t),e=this.index+t-1;e>=this.index;e--)r=(r<<8)+this.byteAt(e);return this.index+=t,r},readString:function(t){return i.transformTo("string",this.readData(t))},readData:function(t){},lastIndexOfSignature:function(t){},readAndCheckSignature:function(t){},readDate:function(){var t=this.readInt(4);return new Date(Date.UTC(1980+(t>>25&127),(t>>21&15)-1,t>>16&31,t>>11&31,t>>5&63,(31&t)<<1))}},e.exports=n},{"../utils":32}],19:[function(t,e,r){"use strict";var i=t("./Uint8ArrayReader");function n(t){i.call(this,t)}t("../utils").inherits(n,i),n.prototype.readData=function(t){this.checkOffset(t);var e=this.data.slice(this.zero+this.index,this.zero+this.index+t);return this.index+=t,e},e.exports=n},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(t,e,r){"use strict";var i=t("./DataReader");function n(t){i.call(this,t)}t("../utils").inherits(n,i),n.prototype.byteAt=function(t){return this.data.charCodeAt(this.zero+t)},n.prototype.lastIndexOfSignature=function(t){return this.data.lastIndexOf(t)-this.zero},n.prototype.readAndCheckSignature=function(t){return t===this.readData(4)},n.prototype.readData=function(t){this.checkOffset(t);var e=this.data.slice(this.zero+this.index,this.zero+this.index+t);return this.index+=t,e},e.exports=n},{"../utils":32,"./DataReader":18}],21:[function(t,e,r){"use strict";var i=t("./ArrayReader");function n(t){i.call(this,t)}t("../utils").inherits(n,i),n.prototype.readData=function(t){if(this.checkOffset(t),0===t)return new Uint8Array(0);var e=this.data.subarray(this.zero+this.index,this.zero+this.index+t);return this.index+=t,e},e.exports=n},{"../utils":32,"./ArrayReader":17}],22:[function(t,e,r){"use strict";var i=t("../utils"),n=t("../support"),s=t("./ArrayReader"),a=t("./StringReader"),o=t("./NodeBufferReader"),h=t("./Uint8ArrayReader");e.exports=function(t){var e=i.getTypeOf(t);return i.checkSupport(e),"string"!==e||n.uint8array?"nodebuffer"===e?new o(t):n.uint8array?new h(i.transformTo("uint8array",t)):new s(i.transformTo("array",t)):new a(t)}},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(t,e,r){"use strict";r.LOCAL_FILE_HEADER="PK",r.CENTRAL_FILE_HEADER="PK",r.CENTRAL_DIRECTORY_END="PK",r.ZIP64_CENTRAL_DIRECTORY_LOCATOR="PK",r.ZIP64_CENTRAL_DIRECTORY_END="PK",r.DATA_DESCRIPTOR="PK\b"},{}],24:[function(t,e,r){"use strict";var i=t("./GenericWorker"),n=t("../utils");function s(t){i.call(this,"ConvertWorker to "+t),this.destType=t}n.inherits(s,i),s.prototype.processChunk=function(t){this.push({data:n.transformTo(this.destType,t.data),meta:t.meta})},e.exports=s},{"../utils":32,"./GenericWorker":28}],25:[function(t,e,r){"use strict";var i=t("./GenericWorker"),n=t("../crc32");function s(){i.call(this,"Crc32Probe"),this.withStreamInfo("crc32",0)}t("../utils").inherits(s,i),s.prototype.processChunk=function(t){this.streamInfo.crc32=n(t.data,this.streamInfo.crc32||0),this.push(t)},e.exports=s},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(t,e,r){"use strict";var i=t("../utils"),n=t("./GenericWorker");function s(t){n.call(this,"DataLengthProbe for "+t),this.propName=t,this.withStreamInfo(t,0)}i.inherits(s,n),s.prototype.processChunk=function(t){if(t){var e=this.streamInfo[this.propName]||0;this.streamInfo[this.propName]=e+t.data.length}n.prototype.processChunk.call(this,t)},e.exports=s},{"../utils":32,"./GenericWorker":28}],27:[function(t,e,r){"use strict";var i=t("../utils"),n=t("./GenericWorker");function s(t){n.call(this,"DataWorker");var e=this;this.dataIsReady=!1,this.index=0,this.max=0,this.data=null,this.type="",this._tickScheduled=!1,t.then(function(t){e.dataIsReady=!0,e.data=t,e.max=t&&t.length||0,e.type=i.getTypeOf(t),e.isPaused||e._tickAndRepeat()},function(t){e.error(t)})}i.inherits(s,n),s.prototype.cleanUp=function(){n.prototype.cleanUp.call(this),this.data=null},s.prototype.resume=function(){return!!n.prototype.resume.call(this)&&(!this._tickScheduled&&this.dataIsReady&&(this._tickScheduled=!0,i.delay(this._tickAndRepeat,[],this)),!0)},s.prototype._tickAndRepeat=function(){this._tickScheduled=!1,this.isPaused||this.isFinished||(this._tick(),this.isFinished||(i.delay(this._tickAndRepeat,[],this),this._tickScheduled=!0))},s.prototype._tick=function(){if(this.isPaused||this.isFinished)return!1;var t=null,e=Math.min(this.max,this.index+16384);if(this.index>=this.max)return this.end();switch(this.type){case"string":t=this.data.substring(this.index,e);break;case"uint8array":t=this.data.subarray(this.index,e);break;case"array":case"nodebuffer":t=this.data.slice(this.index,e)}return this.index=e,this.push({data:t,meta:{percent:this.max?this.index/this.max*100:0}})},e.exports=s},{"../utils":32,"./GenericWorker":28}],28:[function(t,e,r){"use strict";function i(t){this.name=t||"default",this.streamInfo={},this.generatedError=null,this.extraStreamInfo={},this.isPaused=!0,this.isFinished=!1,this.isLocked=!1,this._listeners={data:[],end:[],error:[]},this.previous=null}i.prototype={push:function(t){this.emit("data",t)},end:function(){if(this.isFinished)return!1;this.flush();try{this.emit("end"),this.cleanUp(),this.isFinished=!0}catch(t){this.emit("error",t)}return!0},error:function(t){return!this.isFinished&&(this.isPaused?this.generatedError=t:(this.isFinished=!0,this.emit("error",t),this.previous&&this.previous.error(t),this.cleanUp()),!0)},on:function(t,e){return this._listeners[t].push(e),this},cleanUp:function(){this.streamInfo=this.generatedError=this.extraStreamInfo=null,this._listeners=[]},emit:function(t,e){if(this._listeners[t])for(var r=0;r<this._listeners[t].length;r++)this._listeners[t][r].call(this,e)},pipe:function(t){return t.registerPrevious(this)},registerPrevious:function(t){if(this.isLocked)throw new Error("The stream '"+this+"' has already been used.");this.streamInfo=t.streamInfo,this.mergeStreamInfo(),this.previous=t;var e=this;return t.on("data",function(t){e.processChunk(t)}),t.on("end",function(){e.end()}),t.on("error",function(t){e.error(t)}),this},pause:function(){return!this.isPaused&&!this.isFinished&&(this.isPaused=!0,this.previous&&this.previous.pause(),!0)},resume:function(){if(!this.isPaused||this.isFinished)return!1;var t=this.isPaused=!1;return this.generatedError&&(this.error(this.generatedError),t=!0),this.previous&&this.previous.resume(),!t},flush:function(){},processChunk:function(t){this.push(t)},withStreamInfo:function(t,e){return this.extraStreamInfo[t]=e,this.mergeStreamInfo(),this},mergeStreamInfo:function(){for(var t in this.extraStreamInfo)this.extraStreamInfo.hasOwnProperty(t)&&(this.streamInfo[t]=this.extraStreamInfo[t])},lock:function(){if(this.isLocked)throw new Error("The stream '"+this+"' has already been used.");this.isLocked=!0,this.previous&&this.previous.lock()},toString:function(){var t="Worker "+this.name;return this.previous?this.previous+" -> "+t:t}},e.exports=i},{}],29:[function(t,e,r){"use strict";var h=t("../utils"),n=t("./ConvertWorker"),s=t("./GenericWorker"),u=t("../base64"),i=t("../support"),a=t("../external"),o=null;if(i.nodestream)try{o=t("../nodejs/NodejsStreamOutputAdapter")}catch(t){}function l(t,o){return new a.Promise(function(e,r){var i=[],n=t._internalType,s=t._outputType,a=t._mimeType;t.on("data",function(t,e){i.push(t),o&&o(e)}).on("error",function(t){i=[],r(t)}).on("end",function(){try{var t=function(t,e,r){switch(t){case"blob":return h.newBlob(h.transformTo("arraybuffer",e),r);case"base64":return u.encode(e);default:return h.transformTo(t,e)}}(s,function(t,e){var r,i=0,n=null,s=0;for(r=0;r<e.length;r++)s+=e[r].length;switch(t){case"string":return e.join("");case"array":return Array.prototype.concat.apply([],e);case"uint8array":for(n=new Uint8Array(s),r=0;r<e.length;r++)n.set(e[r],i),i+=e[r].length;return n;case"nodebuffer":return Buffer.concat(e);default:throw new Error("concat : unsupported type '"+t+"'")}}(n,i),a);e(t)}catch(t){r(t)}i=[]}).resume()})}function f(t,e,r){var i=e;switch(e){case"blob":case"arraybuffer":i="uint8array";break;case"base64":i="string"}try{this._internalType=i,this._outputType=e,this._mimeType=r,h.checkSupport(i),this._worker=t.pipe(new n(i)),t.lock()}catch(t){this._worker=new s("error"),this._worker.error(t)}}f.prototype={accumulate:function(t){return l(this,t)},on:function(t,e){var r=this;return"data"===t?this._worker.on(t,function(t){e.call(r,t.data,t.meta)}):this._worker.on(t,function(){h.delay(e,arguments,r)}),this},resume:function(){return h.delay(this._worker.resume,[],this._worker),this},pause:function(){return this._worker.pause(),this},toNodejsStream:function(t){if(h.checkSupport("nodestream"),"nodebuffer"!==this._outputType)throw new Error(this._outputType+" is not supported by this method");return new o(this,{objectMode:"nodebuffer"!==this._outputType},t)}},e.exports=f},{"../base64":1,"../external":6,"../nodejs/NodejsStreamOutputAdapter":13,"../support":30,"../utils":32,"./ConvertWorker":24,"./GenericWorker":28}],30:[function(t,e,r){"use strict";if(r.base64=!0,r.array=!0,r.string=!0,r.arraybuffer="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array,r.nodebuffer="undefined"!=typeof Buffer,r.uint8array="undefined"!=typeof Uint8Array,"undefined"==typeof ArrayBuffer)r.blob=!1;else{var i=new ArrayBuffer(0);try{r.blob=0===new Blob([i],{type:"application/zip"}).size}catch(t){try{var n=new(self.BlobBuilder||self.WebKitBlobBuilder||self.MozBlobBuilder||self.MSBlobBuilder);n.append(i),r.blob=0===n.getBlob("application/zip").size}catch(t){r.blob=!1}}}try{r.nodestream=!!t("readable-stream").Readable}catch(t){r.nodestream=!1}},{"readable-stream":16}],31:[function(t,e,s){"use strict";for(var o=t("./utils"),h=t("./support"),r=t("./nodejsUtils"),i=t("./stream/GenericWorker"),u=new Array(256),n=0;n<256;n++)u[n]=252<=n?6:248<=n?5:240<=n?4:224<=n?3:192<=n?2:1;u[254]=u[254]=1;function a(){i.call(this,"utf-8 decode"),this.leftOver=null}function l(){i.call(this,"utf-8 encode")}s.utf8encode=function(t){return h.nodebuffer?r.newBufferFrom(t,"utf-8"):function(t){var e,r,i,n,s,a=t.length,o=0;for(n=0;n<a;n++)55296==(64512&(r=t.charCodeAt(n)))&&n+1<a&&56320==(64512&(i=t.charCodeAt(n+1)))&&(r=65536+(r-55296<<10)+(i-56320),n++),o+=r<128?1:r<2048?2:r<65536?3:4;for(e=h.uint8array?new Uint8Array(o):new Array(o),n=s=0;s<o;n++)55296==(64512&(r=t.charCodeAt(n)))&&n+1<a&&56320==(64512&(i=t.charCodeAt(n+1)))&&(r=65536+(r-55296<<10)+(i-56320),n++),r<128?e[s++]=r:(r<2048?e[s++]=192|r>>>6:(r<65536?e[s++]=224|r>>>12:(e[s++]=240|r>>>18,e[s++]=128|r>>>12&63),e[s++]=128|r>>>6&63),e[s++]=128|63&r);return e}(t)},s.utf8decode=function(t){return h.nodebuffer?o.transformTo("nodebuffer",t).toString("utf-8"):function(t){var e,r,i,n,s=t.length,a=new Array(2*s);for(e=r=0;e<s;)if((i=t[e++])<128)a[r++]=i;else if(4<(n=u[i]))a[r++]=65533,e+=n-1;else{for(i&=2===n?31:3===n?15:7;1<n&&e<s;)i=i<<6|63&t[e++],n--;1<n?a[r++]=65533:i<65536?a[r++]=i:(i-=65536,a[r++]=55296|i>>10&1023,a[r++]=56320|1023&i)}return a.length!==r&&(a.subarray?a=a.subarray(0,r):a.length=r),o.applyFromCharCode(a)}(t=o.transformTo(h.uint8array?"uint8array":"array",t))},o.inherits(a,i),a.prototype.processChunk=function(t){var e=o.transformTo(h.uint8array?"uint8array":"array",t.data);if(this.leftOver&&this.leftOver.length){if(h.uint8array){var r=e;(e=new Uint8Array(r.length+this.leftOver.length)).set(this.leftOver,0),e.set(r,this.leftOver.length)}else e=this.leftOver.concat(e);this.leftOver=null}var i=function(t,e){var r;for((e=e||t.length)>t.length&&(e=t.length),r=e-1;0<=r&&128==(192&t[r]);)r--;return r<0?e:0===r?e:r+u[t[r]]>e?r:e}(e),n=e;i!==e.length&&(h.uint8array?(n=e.subarray(0,i),this.leftOver=e.subarray(i,e.length)):(n=e.slice(0,i),this.leftOver=e.slice(i,e.length))),this.push({data:s.utf8decode(n),meta:t.meta})},a.prototype.flush=function(){this.leftOver&&this.leftOver.length&&(this.push({data:s.utf8decode(this.leftOver),meta:{}}),this.leftOver=null)},s.Utf8DecodeWorker=a,o.inherits(l,i),l.prototype.processChunk=function(t){this.push({data:s.utf8encode(t.data),meta:t.meta})},s.Utf8EncodeWorker=l},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(t,e,a){"use strict";var o=t("./support"),h=t("./base64"),r=t("./nodejsUtils"),i=t("set-immediate-shim"),u=t("./external");function n(t){return t}function l(t,e){for(var r=0;r<t.length;++r)e[r]=255&t.charCodeAt(r);return e}a.newBlob=function(e,r){a.checkSupport("blob");try{return new Blob([e],{type:r})}catch(t){try{var i=new(self.BlobBuilder||self.WebKitBlobBuilder||self.MozBlobBuilder||self.MSBlobBuilder);return i.append(e),i.getBlob(r)}catch(t){throw new Error("Bug : can't construct the Blob.")}}};var s={stringifyByChunk:function(t,e,r){var i=[],n=0,s=t.length;if(s<=r)return String.fromCharCode.apply(null,t);for(;n<s;)"array"===e||"nodebuffer"===e?i.push(String.fromCharCode.apply(null,t.slice(n,Math.min(n+r,s)))):i.push(String.fromCharCode.apply(null,t.subarray(n,Math.min(n+r,s)))),n+=r;return i.join("")},stringifyByChar:function(t){for(var e="",r=0;r<t.length;r++)e+=String.fromCharCode(t[r]);return e},applyCanBeUsed:{uint8array:function(){try{return o.uint8array&&1===String.fromCharCode.apply(null,new Uint8Array(1)).length}catch(t){return!1}}(),nodebuffer:function(){try{return o.nodebuffer&&1===String.fromCharCode.apply(null,r.allocBuffer(1)).length}catch(t){return!1}}()}};function f(t){var e=65536,r=a.getTypeOf(t),i=!0;if("uint8array"===r?i=s.applyCanBeUsed.uint8array:"nodebuffer"===r&&(i=s.applyCanBeUsed.nodebuffer),i)for(;1<e;)try{return s.stringifyByChunk(t,r,e)}catch(t){e=Math.floor(e/2)}return s.stringifyByChar(t)}function d(t,e){for(var r=0;r<t.length;r++)e[r]=t[r];return e}a.applyFromCharCode=f;var c={};c.string={string:n,array:function(t){return l(t,new Array(t.length))},arraybuffer:function(t){return c.string.uint8array(t).buffer},uint8array:function(t){return l(t,new Uint8Array(t.length))},nodebuffer:function(t){return l(t,r.allocBuffer(t.length))}},c.array={string:f,array:n,arraybuffer:function(t){return new Uint8Array(t).buffer},uint8array:function(t){return new Uint8Array(t)},nodebuffer:function(t){return r.newBufferFrom(t)}},c.arraybuffer={string:function(t){return f(new Uint8Array(t))},array:function(t){return d(new Uint8Array(t),new Array(t.byteLength))},arraybuffer:n,uint8array:function(t){return new Uint8Array(t)},nodebuffer:function(t){return r.newBufferFrom(new Uint8Array(t))}},c.uint8array={string:f,array:function(t){return d(t,new Array(t.length))},arraybuffer:function(t){return t.buffer},uint8array:n,nodebuffer:function(t){return r.newBufferFrom(t)}},c.nodebuffer={string:f,array:function(t){return d(t,new Array(t.length))},arraybuffer:function(t){return c.nodebuffer.uint8array(t).buffer},uint8array:function(t){return d(t,new Uint8Array(t.length))},nodebuffer:n},a.transformTo=function(t,e){if(e=e||"",!t)return e;a.checkSupport(t);var r=a.getTypeOf(e);return c[r][t](e)},a.getTypeOf=function(t){return"string"==typeof t?"string":"[object Array]"===Object.prototype.toString.call(t)?"array":o.nodebuffer&&r.isBuffer(t)?"nodebuffer":o.uint8array&&t instanceof Uint8Array?"uint8array":o.arraybuffer&&t instanceof ArrayBuffer?"arraybuffer":void 0},a.checkSupport=function(t){if(!o[t.toLowerCase()])throw new Error(t+" is not supported by this platform")},a.MAX_VALUE_16BITS=65535,a.MAX_VALUE_32BITS=-1,a.pretty=function(t){var e,r,i="";for(r=0;r<(t||"").length;r++)i+="\\x"+((e=t.charCodeAt(r))<16?"0":"")+e.toString(16).toUpperCase();return i},a.delay=function(t,e,r){i(function(){t.apply(r||null,e||[])})},a.inherits=function(t,e){function r(){}r.prototype=e.prototype,t.prototype=new r},a.extend=function(){var t,e,r={};for(t=0;t<arguments.length;t++)for(e in arguments[t])arguments[t].hasOwnProperty(e)&&void 0===r[e]&&(r[e]=arguments[t][e]);return r},a.prepareContent=function(r,t,i,n,s){return u.Promise.resolve(t).then(function(i){return o.blob&&(i instanceof Blob||-1!==["[object File]","[object Blob]"].indexOf(Object.prototype.toString.call(i)))&&"undefined"!=typeof FileReader?new u.Promise(function(e,r){var t=new FileReader;t.onload=function(t){e(t.target.result)},t.onerror=function(t){r(t.target.error)},t.readAsArrayBuffer(i)}):i}).then(function(t){var e=a.getTypeOf(t);return e?("arraybuffer"===e?t=a.transformTo("uint8array",t):"string"===e&&(s?t=h.decode(t):i&&!0!==n&&(t=function(t){return l(t,o.uint8array?new Uint8Array(t.length):new Array(t.length))}(t))),t):u.Promise.reject(new Error("Can't read the data of '"+r+"'. Is it in a supported JavaScript type (String, Blob, ArrayBuffer, etc) ?"))})}},{"./base64":1,"./external":6,"./nodejsUtils":14,"./support":30,"set-immediate-shim":54}],33:[function(t,e,r){"use strict";var i=t("./reader/readerFor"),n=t("./utils"),s=t("./signature"),a=t("./zipEntry"),o=(t("./utf8"),t("./support"));function h(t){this.files=[],this.loadOptions=t}h.prototype={checkSignature:function(t){if(!this.reader.readAndCheckSignature(t)){this.reader.index-=4;var e=this.reader.readString(4);throw new Error("Corrupted zip or bug: unexpected signature ("+n.pretty(e)+", expected "+n.pretty(t)+")")}},isSignature:function(t,e){var r=this.reader.index;this.reader.setIndex(t);var i=this.reader.readString(4)===e;return this.reader.setIndex(r),i},readBlockEndOfCentral:function(){this.diskNumber=this.reader.readInt(2),this.diskWithCentralDirStart=this.reader.readInt(2),this.centralDirRecordsOnThisDisk=this.reader.readInt(2),this.centralDirRecords=this.reader.readInt(2),this.centralDirSize=this.reader.readInt(4),this.centralDirOffset=this.reader.readInt(4),this.zipCommentLength=this.reader.readInt(2);var t=this.reader.readData(this.zipCommentLength),e=o.uint8array?"uint8array":"array",r=n.transformTo(e,t);this.zipComment=this.loadOptions.decodeFileName(r)},readBlockZip64EndOfCentral:function(){this.zip64EndOfCentralSize=this.reader.readInt(8),this.reader.skip(4),this.diskNumber=this.reader.readInt(4),this.diskWithCentralDirStart=this.reader.readInt(4),this.centralDirRecordsOnThisDisk=this.reader.readInt(8),this.centralDirRecords=this.reader.readInt(8),this.centralDirSize=this.reader.readInt(8),this.centralDirOffset=this.reader.readInt(8),this.zip64ExtensibleData={};for(var t,e,r,i=this.zip64EndOfCentralSize-44;0<i;)t=this.reader.readInt(2),e=this.reader.readInt(4),r=this.reader.readData(e),this.zip64ExtensibleData[t]={id:t,length:e,value:r}},readBlockZip64EndOfCentralLocator:function(){if(this.diskWithZip64CentralDirStart=this.reader.readInt(4),this.relativeOffsetEndOfZip64CentralDir=this.reader.readInt(8),this.disksCount=this.reader.readInt(4),1<this.disksCount)throw new Error("Multi-volumes zip are not supported")},readLocalFiles:function(){var t,e;for(t=0;t<this.files.length;t++)e=this.files[t],this.reader.setIndex(e.localHeaderOffset),this.checkSignature(s.LOCAL_FILE_HEADER),e.readLocalPart(this.reader),e.handleUTF8(),e.processAttributes()},readCentralDir:function(){var t;for(this.reader.setIndex(this.centralDirOffset);this.reader.readAndCheckSignature(s.CENTRAL_FILE_HEADER);)(t=new a({zip64:this.zip64},this.loadOptions)).readCentralPart(this.reader),this.files.push(t);if(this.centralDirRecords!==this.files.length&&0!==this.centralDirRecords&&0===this.files.length)throw new Error("Corrupted zip or bug: expected "+this.centralDirRecords+" records in central dir, got "+this.files.length)},readEndOfCentral:function(){var t=this.reader.lastIndexOfSignature(s.CENTRAL_DIRECTORY_END);if(t<0)throw!this.isSignature(0,s.LOCAL_FILE_HEADER)?new Error("Can't find end of central directory : is this a zip file ? If it is, see https://stuk.github.io/jszip/documentation/howto/read_zip.html"):new Error("Corrupted zip: can't find end of central directory");this.reader.setIndex(t);var e=t;if(this.checkSignature(s.CENTRAL_DIRECTORY_END),this.readBlockEndOfCentral(),this.diskNumber===n.MAX_VALUE_16BITS||this.diskWithCentralDirStart===n.MAX_VALUE_16BITS||this.centralDirRecordsOnThisDisk===n.MAX_VALUE_16BITS||this.centralDirRecords===n.MAX_VALUE_16BITS||this.centralDirSize===n.MAX_VALUE_32BITS||this.centralDirOffset===n.MAX_VALUE_32BITS){if(this.zip64=!0,(t=this.reader.lastIndexOfSignature(s.ZIP64_CENTRAL_DIRECTORY_LOCATOR))<0)throw new Error("Corrupted zip: can't find the ZIP64 end of central directory locator");if(this.reader.setIndex(t),this.checkSignature(s.ZIP64_CENTRAL_DIRECTORY_LOCATOR),this.readBlockZip64EndOfCentralLocator(),!this.isSignature(this.relativeOffsetEndOfZip64CentralDir,s.ZIP64_CENTRAL_DIRECTORY_END)&&(this.relativeOffsetEndOfZip64CentralDir=this.reader.lastIndexOfSignature(s.ZIP64_CENTRAL_DIRECTORY_END),this.relativeOffsetEndOfZip64CentralDir<0))throw new Error("Corrupted zip: can't find the ZIP64 end of central directory");this.reader.setIndex(this.relativeOffsetEndOfZip64CentralDir),this.checkSignature(s.ZIP64_CENTRAL_DIRECTORY_END),this.readBlockZip64EndOfCentral()}var r=this.centralDirOffset+this.centralDirSize;this.zip64&&(r+=20,r+=12+this.zip64EndOfCentralSize);var i=e-r;if(0<i)this.isSignature(e,s.CENTRAL_FILE_HEADER)||(this.reader.zero=i);else if(i<0)throw new Error("Corrupted zip: missing "+Math.abs(i)+" bytes.")},prepareReader:function(t){this.reader=i(t)},load:function(t){this.prepareReader(t),this.readEndOfCentral(),this.readCentralDir(),this.readLocalFiles()}},e.exports=h},{"./reader/readerFor":22,"./signature":23,"./support":30,"./utf8":31,"./utils":32,"./zipEntry":34}],34:[function(t,e,r){"use strict";var i=t("./reader/readerFor"),s=t("./utils"),n=t("./compressedObject"),a=t("./crc32"),o=t("./utf8"),h=t("./compressions"),u=t("./support");function l(t,e){this.options=t,this.loadOptions=e}l.prototype={isEncrypted:function(){return 1==(1&this.bitFlag)},useUTF8:function(){return 2048==(2048&this.bitFlag)},readLocalPart:function(t){var e,r;if(t.skip(22),this.fileNameLength=t.readInt(2),r=t.readInt(2),this.fileName=t.readData(this.fileNameLength),t.skip(r),-1===this.compressedSize||-1===this.uncompressedSize)throw new Error("Bug or corrupted zip : didn't get enough informations from the central directory (compressedSize === -1 || uncompressedSize === -1)");if(null===(e=function(t){for(var e in h)if(h.hasOwnProperty(e)&&h[e].magic===t)return h[e];return null}(this.compressionMethod)))throw new Error("Corrupted zip : compression "+s.pretty(this.compressionMethod)+" unknown (inner file : "+s.transformTo("string",this.fileName)+")");this.decompressed=new n(this.compressedSize,this.uncompressedSize,this.crc32,e,t.readData(this.compressedSize))},readCentralPart:function(t){this.versionMadeBy=t.readInt(2),t.skip(2),this.bitFlag=t.readInt(2),this.compressionMethod=t.readString(2),this.date=t.readDate(),this.crc32=t.readInt(4),this.compressedSize=t.readInt(4),this.uncompressedSize=t.readInt(4);var e=t.readInt(2);if(this.extraFieldsLength=t.readInt(2),this.fileCommentLength=t.readInt(2),this.diskNumberStart=t.readInt(2),this.internalFileAttributes=t.readInt(2),this.externalFileAttributes=t.readInt(4),this.localHeaderOffset=t.readInt(4),this.isEncrypted())throw new Error("Encrypted zip are not supported");t.skip(e),this.readExtraFields(t),this.parseZIP64ExtraField(t),this.fileComment=t.readData(this.fileCommentLength)},processAttributes:function(){this.unixPermissions=null,this.dosPermissions=null;var t=this.versionMadeBy>>8;this.dir=!!(16&this.externalFileAttributes),0==t&&(this.dosPermissions=63&this.externalFileAttributes),3==t&&(this.unixPermissions=this.externalFileAttributes>>16&65535),this.dir||"/"!==this.fileNameStr.slice(-1)||(this.dir=!0)},parseZIP64ExtraField:function(t){if(this.extraFields[1]){var e=i(this.extraFields[1].value);this.uncompressedSize===s.MAX_VALUE_32BITS&&(this.uncompressedSize=e.readInt(8)),this.compressedSize===s.MAX_VALUE_32BITS&&(this.compressedSize=e.readInt(8)),this.localHeaderOffset===s.MAX_VALUE_32BITS&&(this.localHeaderOffset=e.readInt(8)),this.diskNumberStart===s.MAX_VALUE_32BITS&&(this.diskNumberStart=e.readInt(4))}},readExtraFields:function(t){var e,r,i,n=t.index+this.extraFieldsLength;for(this.extraFields||(this.extraFields={});t.index<n;)e=t.readInt(2),r=t.readInt(2),i=t.readData(r),this.extraFields[e]={id:e,length:r,value:i}},handleUTF8:function(){var t=u.uint8array?"uint8array":"array";if(this.useUTF8())this.fileNameStr=o.utf8decode(this.fileName),this.fileCommentStr=o.utf8decode(this.fileComment);else{var e=this.findExtraFieldUnicodePath();if(null!==e)this.fileNameStr=e;else{var r=s.transformTo(t,this.fileName);this.fileNameStr=this.loadOptions.decodeFileName(r)}var i=this.findExtraFieldUnicodeComment();if(null!==i)this.fileCommentStr=i;else{var n=s.transformTo(t,this.fileComment);this.fileCommentStr=this.loadOptions.decodeFileName(n)}}},findExtraFieldUnicodePath:function(){var t=this.extraFields[28789];if(t){var e=i(t.value);return 1!==e.readInt(1)?null:a(this.fileName)!==e.readInt(4)?null:o.utf8decode(e.readData(t.length-5))}return null},findExtraFieldUnicodeComment:function(){var t=this.extraFields[25461];if(t){var e=i(t.value);return 1!==e.readInt(1)?null:a(this.fileComment)!==e.readInt(4)?null:o.utf8decode(e.readData(t.length-5))}return null}},e.exports=l},{"./compressedObject":2,"./compressions":3,"./crc32":4,"./reader/readerFor":22,"./support":30,"./utf8":31,"./utils":32}],35:[function(t,e,r){"use strict";function i(t,e,r){this.name=t,this.dir=r.dir,this.date=r.date,this.comment=r.comment,this.unixPermissions=r.unixPermissions,this.dosPermissions=r.dosPermissions,this._data=e,this._dataBinary=r.binary,this.options={compression:r.compression,compressionOptions:r.compressionOptions}}var s=t("./stream/StreamHelper"),n=t("./stream/DataWorker"),a=t("./utf8"),o=t("./compressedObject"),h=t("./stream/GenericWorker");i.prototype={internalStream:function(t){var e=null,r="string";try{if(!t)throw new Error("No output type specified.");var i="string"===(r=t.toLowerCase())||"text"===r;"binarystring"!==r&&"text"!==r||(r="string"),e=this._decompressWorker();var n=!this._dataBinary;n&&!i&&(e=e.pipe(new a.Utf8EncodeWorker)),!n&&i&&(e=e.pipe(new a.Utf8DecodeWorker))}catch(t){(e=new h("error")).error(t)}return new s(e,r,"")},async:function(t,e){return this.internalStream(t).accumulate(e)},nodeStream:function(t,e){return this.internalStream(t||"nodebuffer").toNodejsStream(e)},_compressWorker:function(t,e){if(this._data instanceof o&&this._data.compression.magic===t.magic)return this._data.getCompressedWorker();var r=this._decompressWorker();return this._dataBinary||(r=r.pipe(new a.Utf8EncodeWorker)),o.createWorkerFrom(r,t,e)},_decompressWorker:function(){return this._data instanceof o?this._data.getContentWorker():this._data instanceof h?this._data:new n(this._data)}};for(var u=["asText","asBinary","asNodeBuffer","asUint8Array","asArrayBuffer"],l=function(){throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.")},f=0;f<u.length;f++)i.prototype[u[f]]=l;e.exports=i},{"./compressedObject":2,"./stream/DataWorker":27,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31}],36:[function(t,l,e){(function(e){"use strict";var r,i,t=e.MutationObserver||e.WebKitMutationObserver;if(t){var n=0,s=new t(u),a=e.document.createTextNode("");s.observe(a,{characterData:!0}),r=function(){a.data=n=++n%2}}else if(e.setImmediate||void 0===e.MessageChannel)r="document"in e&&"onreadystatechange"in e.document.createElement("script")?function(){var t=e.document.createElement("script");t.onreadystatechange=function(){u(),t.onreadystatechange=null,t.parentNode.removeChild(t),t=null},e.document.documentElement.appendChild(t)}:function(){setTimeout(u,0)};else{var o=new e.MessageChannel;o.port1.onmessage=u,r=function(){o.port2.postMessage(0)}}var h=[];function u(){var t,e;i=!0;for(var r=h.length;r;){for(e=h,h=[],t=-1;++t<r;)e[t]();r=h.length}i=!1}l.exports=function(t){1!==h.push(t)||i||r()}}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],37:[function(t,e,r){"use strict";var n=t("immediate");function u(){}var l={},s=["REJECTED"],a=["FULFILLED"],i=["PENDING"];function o(t){if("function"!=typeof t)throw new TypeError("resolver must be a function");this.state=i,this.queue=[],this.outcome=void 0,t!==u&&c(this,t)}function h(t,e,r){this.promise=t,"function"==typeof e&&(this.onFulfilled=e,this.callFulfilled=this.otherCallFulfilled),"function"==typeof r&&(this.onRejected=r,this.callRejected=this.otherCallRejected)}function f(e,r,i){n(function(){var t;try{t=r(i)}catch(t){return l.reject(e,t)}t===e?l.reject(e,new TypeError("Cannot resolve promise with itself")):l.resolve(e,t)})}function d(t){var e=t&&t.then;if(t&&("object"==typeof t||"function"==typeof t)&&"function"==typeof e)return function(){e.apply(t,arguments)}}function c(e,t){var r=!1;function i(t){r||(r=!0,l.reject(e,t))}function n(t){r||(r=!0,l.resolve(e,t))}var s=p(function(){t(n,i)});"error"===s.status&&i(s.value)}function p(t,e){var r={};try{r.value=t(e),r.status="success"}catch(t){r.status="error",r.value=t}return r}(e.exports=o).prototype.finally=function(e){if("function"!=typeof e)return this;var r=this.constructor;return this.then(function(t){return r.resolve(e()).then(function(){return t})},function(t){return r.resolve(e()).then(function(){throw t})})},o.prototype.catch=function(t){return this.then(null,t)},o.prototype.then=function(t,e){if("function"!=typeof t&&this.state===a||"function"!=typeof e&&this.state===s)return this;var r=new this.constructor(u);this.state!==i?f(r,this.state===a?t:e,this.outcome):this.queue.push(new h(r,t,e));return r},h.prototype.callFulfilled=function(t){l.resolve(this.promise,t)},h.prototype.otherCallFulfilled=function(t){f(this.promise,this.onFulfilled,t)},h.prototype.callRejected=function(t){l.reject(this.promise,t)},h.prototype.otherCallRejected=function(t){f(this.promise,this.onRejected,t)},l.resolve=function(t,e){var r=p(d,e);if("error"===r.status)return l.reject(t,r.value);var i=r.value;if(i)c(t,i);else{t.state=a,t.outcome=e;for(var n=-1,s=t.queue.length;++n<s;)t.queue[n].callFulfilled(e)}return t},l.reject=function(t,e){t.state=s,t.outcome=e;for(var r=-1,i=t.queue.length;++r<i;)t.queue[r].callRejected(e);return t},o.resolve=function(t){if(t instanceof this)return t;return l.resolve(new this(u),t)},o.reject=function(t){var e=new this(u);return l.reject(e,t)},o.all=function(t){var r=this;if("[object Array]"!==Object.prototype.toString.call(t))return this.reject(new TypeError("must be an array"));var i=t.length,n=!1;if(!i)return this.resolve([]);var s=new Array(i),a=0,e=-1,o=new this(u);for(;++e<i;)h(t[e],e);return o;function h(t,e){r.resolve(t).then(function(t){s[e]=t,++a!==i||n||(n=!0,l.resolve(o,s))},function(t){n||(n=!0,l.reject(o,t))})}},o.race=function(t){var e=this;if("[object Array]"!==Object.prototype.toString.call(t))return this.reject(new TypeError("must be an array"));var r=t.length,i=!1;if(!r)return this.resolve([]);var n=-1,s=new this(u);for(;++n<r;)a=t[n],e.resolve(a).then(function(t){i||(i=!0,l.resolve(s,t))},function(t){i||(i=!0,l.reject(s,t))});var a;return s}},{immediate:36}],38:[function(t,e,r){"use strict";var i={};(0,t("./lib/utils/common").assign)(i,t("./lib/deflate"),t("./lib/inflate"),t("./lib/zlib/constants")),e.exports=i},{"./lib/deflate":39,"./lib/inflate":40,"./lib/utils/common":41,"./lib/zlib/constants":44}],39:[function(t,e,r){"use strict";var a=t("./zlib/deflate"),o=t("./utils/common"),h=t("./utils/strings"),n=t("./zlib/messages"),s=t("./zlib/zstream"),u=Object.prototype.toString,l=0,f=-1,d=0,c=8;function p(t){if(!(this instanceof p))return new p(t);this.options=o.assign({level:f,method:c,chunkSize:16384,windowBits:15,memLevel:8,strategy:d,to:""},t||{});var e=this.options;e.raw&&0<e.windowBits?e.windowBits=-e.windowBits:e.gzip&&0<e.windowBits&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new s,this.strm.avail_out=0;var r=a.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(r!==l)throw new Error(n[r]);if(e.header&&a.deflateSetHeader(this.strm,e.header),e.dictionary){var i;if(i="string"==typeof e.dictionary?h.string2buf(e.dictionary):"[object ArrayBuffer]"===u.call(e.dictionary)?new Uint8Array(e.dictionary):e.dictionary,(r=a.deflateSetDictionary(this.strm,i))!==l)throw new Error(n[r]);this._dict_set=!0}}function i(t,e){var r=new p(e);if(r.push(t,!0),r.err)throw r.msg||n[r.err];return r.result}p.prototype.push=function(t,e){var r,i,n=this.strm,s=this.options.chunkSize;if(this.ended)return!1;i=e===~~e?e:!0===e?4:0,"string"==typeof t?n.input=h.string2buf(t):"[object ArrayBuffer]"===u.call(t)?n.input=new Uint8Array(t):n.input=t,n.next_in=0,n.avail_in=n.input.length;do{if(0===n.avail_out&&(n.output=new o.Buf8(s),n.next_out=0,n.avail_out=s),1!==(r=a.deflate(n,i))&&r!==l)return this.onEnd(r),!(this.ended=!0);0!==n.avail_out&&(0!==n.avail_in||4!==i&&2!==i)||("string"===this.options.to?this.onData(h.buf2binstring(o.shrinkBuf(n.output,n.next_out))):this.onData(o.shrinkBuf(n.output,n.next_out)))}while((0<n.avail_in||0===n.avail_out)&&1!==r);return 4===i?(r=a.deflateEnd(this.strm),this.onEnd(r),this.ended=!0,r===l):2!==i||(this.onEnd(l),!(n.avail_out=0))},p.prototype.onData=function(t){this.chunks.push(t)},p.prototype.onEnd=function(t){t===l&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=o.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg},r.Deflate=p,r.deflate=i,r.deflateRaw=function(t,e){return(e=e||{}).raw=!0,i(t,e)},r.gzip=function(t,e){return(e=e||{}).gzip=!0,i(t,e)}},{"./utils/common":41,"./utils/strings":42,"./zlib/deflate":46,"./zlib/messages":51,"./zlib/zstream":53}],40:[function(t,e,r){"use strict";var d=t("./zlib/inflate"),c=t("./utils/common"),p=t("./utils/strings"),m=t("./zlib/constants"),i=t("./zlib/messages"),n=t("./zlib/zstream"),s=t("./zlib/gzheader"),_=Object.prototype.toString;function a(t){if(!(this instanceof a))return new a(t);this.options=c.assign({chunkSize:16384,windowBits:0,to:""},t||{});var e=this.options;e.raw&&0<=e.windowBits&&e.windowBits<16&&(e.windowBits=-e.windowBits,0===e.windowBits&&(e.windowBits=-15)),!(0<=e.windowBits&&e.windowBits<16)||t&&t.windowBits||(e.windowBits+=32),15<e.windowBits&&e.windowBits<48&&0==(15&e.windowBits)&&(e.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new n,this.strm.avail_out=0;var r=d.inflateInit2(this.strm,e.windowBits);if(r!==m.Z_OK)throw new Error(i[r]);this.header=new s,d.inflateGetHeader(this.strm,this.header)}function o(t,e){var r=new a(e);if(r.push(t,!0),r.err)throw r.msg||i[r.err];return r.result}a.prototype.push=function(t,e){var r,i,n,s,a,o,h=this.strm,u=this.options.chunkSize,l=this.options.dictionary,f=!1;if(this.ended)return!1;i=e===~~e?e:!0===e?m.Z_FINISH:m.Z_NO_FLUSH,"string"==typeof t?h.input=p.binstring2buf(t):"[object ArrayBuffer]"===_.call(t)?h.input=new Uint8Array(t):h.input=t,h.next_in=0,h.avail_in=h.input.length;do{if(0===h.avail_out&&(h.output=new c.Buf8(u),h.next_out=0,h.avail_out=u),(r=d.inflate(h,m.Z_NO_FLUSH))===m.Z_NEED_DICT&&l&&(o="string"==typeof l?p.string2buf(l):"[object ArrayBuffer]"===_.call(l)?new Uint8Array(l):l,r=d.inflateSetDictionary(this.strm,o)),r===m.Z_BUF_ERROR&&!0===f&&(r=m.Z_OK,f=!1),r!==m.Z_STREAM_END&&r!==m.Z_OK)return this.onEnd(r),!(this.ended=!0);h.next_out&&(0!==h.avail_out&&r!==m.Z_STREAM_END&&(0!==h.avail_in||i!==m.Z_FINISH&&i!==m.Z_SYNC_FLUSH)||("string"===this.options.to?(n=p.utf8border(h.output,h.next_out),s=h.next_out-n,a=p.buf2string(h.output,n),h.next_out=s,h.avail_out=u-s,s&&c.arraySet(h.output,h.output,n,s,0),this.onData(a)):this.onData(c.shrinkBuf(h.output,h.next_out)))),0===h.avail_in&&0===h.avail_out&&(f=!0)}while((0<h.avail_in||0===h.avail_out)&&r!==m.Z_STREAM_END);return r===m.Z_STREAM_END&&(i=m.Z_FINISH),i===m.Z_FINISH?(r=d.inflateEnd(this.strm),this.onEnd(r),this.ended=!0,r===m.Z_OK):i!==m.Z_SYNC_FLUSH||(this.onEnd(m.Z_OK),!(h.avail_out=0))},a.prototype.onData=function(t){this.chunks.push(t)},a.prototype.onEnd=function(t){t===m.Z_OK&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=c.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg},r.Inflate=a,r.inflate=o,r.inflateRaw=function(t,e){return(e=e||{}).raw=!0,o(t,e)},r.ungzip=o},{"./utils/common":41,"./utils/strings":42,"./zlib/constants":44,"./zlib/gzheader":47,"./zlib/inflate":49,"./zlib/messages":51,"./zlib/zstream":53}],41:[function(t,e,r){"use strict";var i="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Int32Array;r.assign=function(t){for(var e=Array.prototype.slice.call(arguments,1);e.length;){var r=e.shift();if(r){if("object"!=typeof r)throw new TypeError(r+"must be non-object");for(var i in r)r.hasOwnProperty(i)&&(t[i]=r[i])}}return t},r.shrinkBuf=function(t,e){return t.length===e?t:t.subarray?t.subarray(0,e):(t.length=e,t)};var n={arraySet:function(t,e,r,i,n){if(e.subarray&&t.subarray)t.set(e.subarray(r,r+i),n);else for(var s=0;s<i;s++)t[n+s]=e[r+s]},flattenChunks:function(t){var e,r,i,n,s,a;for(e=i=0,r=t.length;e<r;e++)i+=t[e].length;for(a=new Uint8Array(i),e=n=0,r=t.length;e<r;e++)s=t[e],a.set(s,n),n+=s.length;return a}},s={arraySet:function(t,e,r,i,n){for(var s=0;s<i;s++)t[n+s]=e[r+s]},flattenChunks:function(t){return[].concat.apply([],t)}};r.setTyped=function(t){t?(r.Buf8=Uint8Array,r.Buf16=Uint16Array,r.Buf32=Int32Array,r.assign(r,n)):(r.Buf8=Array,r.Buf16=Array,r.Buf32=Array,r.assign(r,s))},r.setTyped(i)},{}],42:[function(t,e,r){"use strict";var h=t("./common"),n=!0,s=!0;try{String.fromCharCode.apply(null,[0])}catch(t){n=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(t){s=!1}for(var u=new h.Buf8(256),i=0;i<256;i++)u[i]=252<=i?6:248<=i?5:240<=i?4:224<=i?3:192<=i?2:1;function l(t,e){if(e<65537&&(t.subarray&&s||!t.subarray&&n))return String.fromCharCode.apply(null,h.shrinkBuf(t,e));for(var r="",i=0;i<e;i++)r+=String.fromCharCode(t[i]);return r}u[254]=u[254]=1,r.string2buf=function(t){var e,r,i,n,s,a=t.length,o=0;for(n=0;n<a;n++)55296==(64512&(r=t.charCodeAt(n)))&&n+1<a&&56320==(64512&(i=t.charCodeAt(n+1)))&&(r=65536+(r-55296<<10)+(i-56320),n++),o+=r<128?1:r<2048?2:r<65536?3:4;for(e=new h.Buf8(o),n=s=0;s<o;n++)55296==(64512&(r=t.charCodeAt(n)))&&n+1<a&&56320==(64512&(i=t.charCodeAt(n+1)))&&(r=65536+(r-55296<<10)+(i-56320),n++),r<128?e[s++]=r:(r<2048?e[s++]=192|r>>>6:(r<65536?e[s++]=224|r>>>12:(e[s++]=240|r>>>18,e[s++]=128|r>>>12&63),e[s++]=128|r>>>6&63),e[s++]=128|63&r);return e},r.buf2binstring=function(t){return l(t,t.length)},r.binstring2buf=function(t){for(var e=new h.Buf8(t.length),r=0,i=e.length;r<i;r++)e[r]=t.charCodeAt(r);return e},r.buf2string=function(t,e){var r,i,n,s,a=e||t.length,o=new Array(2*a);for(r=i=0;r<a;)if((n=t[r++])<128)o[i++]=n;else if(4<(s=u[n]))o[i++]=65533,r+=s-1;else{for(n&=2===s?31:3===s?15:7;1<s&&r<a;)n=n<<6|63&t[r++],s--;1<s?o[i++]=65533:n<65536?o[i++]=n:(n-=65536,o[i++]=55296|n>>10&1023,o[i++]=56320|1023&n)}return l(o,i)},r.utf8border=function(t,e){var r;for((e=e||t.length)>t.length&&(e=t.length),r=e-1;0<=r&&128==(192&t[r]);)r--;return r<0?e:0===r?e:r+u[t[r]]>e?r:e}},{"./common":41}],43:[function(t,e,r){"use strict";e.exports=function(t,e,r,i){for(var n=65535&t|0,s=t>>>16&65535|0,a=0;0!==r;){for(r-=a=2e3<r?2e3:r;s=s+(n=n+e[i++]|0)|0,--a;);n%=65521,s%=65521}return n|s<<16|0}},{}],44:[function(t,e,r){"use strict";e.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},{}],45:[function(t,e,r){"use strict";var o=function(){for(var t,e=[],r=0;r<256;r++){t=r;for(var i=0;i<8;i++)t=1&t?3988292384^t>>>1:t>>>1;e[r]=t}return e}();e.exports=function(t,e,r,i){var n=o,s=i+r;t^=-1;for(var a=i;a<s;a++)t=t>>>8^n[255&(t^e[a])];return-1^t}},{}],46:[function(t,e,r){"use strict";var h,d=t("../utils/common"),u=t("./trees"),c=t("./adler32"),p=t("./crc32"),i=t("./messages"),l=0,f=4,m=0,_=-2,g=-1,b=4,n=2,v=8,y=9,s=286,a=30,o=19,w=2*s+1,k=15,x=3,S=258,z=S+x+1,C=42,E=113,A=1,I=2,O=3,B=4;function R(t,e){return t.msg=i[e],e}function T(t){return(t<<1)-(4<t?9:0)}function D(t){for(var e=t.length;0<=--e;)t[e]=0}function F(t){var e=t.state,r=e.pending;r>t.avail_out&&(r=t.avail_out),0!==r&&(d.arraySet(t.output,e.pending_buf,e.pending_out,r,t.next_out),t.next_out+=r,e.pending_out+=r,t.total_out+=r,t.avail_out-=r,e.pending-=r,0===e.pending&&(e.pending_out=0))}function N(t,e){u._tr_flush_block(t,0<=t.block_start?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,F(t.strm)}function U(t,e){t.pending_buf[t.pending++]=e}function P(t,e){t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=255&e}function L(t,e){var r,i,n=t.max_chain_length,s=t.strstart,a=t.prev_length,o=t.nice_match,h=t.strstart>t.w_size-z?t.strstart-(t.w_size-z):0,u=t.window,l=t.w_mask,f=t.prev,d=t.strstart+S,c=u[s+a-1],p=u[s+a];t.prev_length>=t.good_match&&(n>>=2),o>t.lookahead&&(o=t.lookahead);do{if(u[(r=e)+a]===p&&u[r+a-1]===c&&u[r]===u[s]&&u[++r]===u[s+1]){s+=2,r++;do{}while(u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&s<d);if(i=S-(d-s),s=d-S,a<i){if(t.match_start=e,o<=(a=i))break;c=u[s+a-1],p=u[s+a]}}}while((e=f[e&l])>h&&0!=--n);return a<=t.lookahead?a:t.lookahead}function j(t){var e,r,i,n,s,a,o,h,u,l,f=t.w_size;do{if(n=t.window_size-t.lookahead-t.strstart,t.strstart>=f+(f-z)){for(d.arraySet(t.window,t.window,f,f,0),t.match_start-=f,t.strstart-=f,t.block_start-=f,e=r=t.hash_size;i=t.head[--e],t.head[e]=f<=i?i-f:0,--r;);for(e=r=f;i=t.prev[--e],t.prev[e]=f<=i?i-f:0,--r;);n+=f}if(0===t.strm.avail_in)break;if(a=t.strm,o=t.window,h=t.strstart+t.lookahead,u=n,l=void 0,l=a.avail_in,u<l&&(l=u),r=0===l?0:(a.avail_in-=l,d.arraySet(o,a.input,a.next_in,l,h),1===a.state.wrap?a.adler=c(a.adler,o,l,h):2===a.state.wrap&&(a.adler=p(a.adler,o,l,h)),a.next_in+=l,a.total_in+=l,l),t.lookahead+=r,t.lookahead+t.insert>=x)for(s=t.strstart-t.insert,t.ins_h=t.window[s],t.ins_h=(t.ins_h<<t.hash_shift^t.window[s+1])&t.hash_mask;t.insert&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[s+x-1])&t.hash_mask,t.prev[s&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=s,s++,t.insert--,!(t.lookahead+t.insert<x)););}while(t.lookahead<z&&0!==t.strm.avail_in)}function Z(t,e){for(var r,i;;){if(t.lookahead<z){if(j(t),t.lookahead<z&&e===l)return A;if(0===t.lookahead)break}if(r=0,t.lookahead>=x&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+x-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),0!==r&&t.strstart-r<=t.w_size-z&&(t.match_length=L(t,r)),t.match_length>=x)if(i=u._tr_tally(t,t.strstart-t.match_start,t.match_length-x),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=x){for(t.match_length--;t.strstart++,t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+x-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart,0!=--t.match_length;);t.strstart++}else t.strstart+=t.match_length,t.match_length=0,t.ins_h=t.window[t.strstart],t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+1])&t.hash_mask;else i=u._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(i&&(N(t,!1),0===t.strm.avail_out))return A}return t.insert=t.strstart<x-1?t.strstart:x-1,e===f?(N(t,!0),0===t.strm.avail_out?O:B):t.last_lit&&(N(t,!1),0===t.strm.avail_out)?A:I}function W(t,e){for(var r,i,n;;){if(t.lookahead<z){if(j(t),t.lookahead<z&&e===l)return A;if(0===t.lookahead)break}if(r=0,t.lookahead>=x&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+x-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),t.prev_length=t.match_length,t.prev_match=t.match_start,t.match_length=x-1,0!==r&&t.prev_length<t.max_lazy_match&&t.strstart-r<=t.w_size-z&&(t.match_length=L(t,r),t.match_length<=5&&(1===t.strategy||t.match_length===x&&4096<t.strstart-t.match_start)&&(t.match_length=x-1)),t.prev_length>=x&&t.match_length<=t.prev_length){for(n=t.strstart+t.lookahead-x,i=u._tr_tally(t,t.strstart-1-t.prev_match,t.prev_length-x),t.lookahead-=t.prev_length-1,t.prev_length-=2;++t.strstart<=n&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+x-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),0!=--t.prev_length;);if(t.match_available=0,t.match_length=x-1,t.strstart++,i&&(N(t,!1),0===t.strm.avail_out))return A}else if(t.match_available){if((i=u._tr_tally(t,0,t.window[t.strstart-1]))&&N(t,!1),t.strstart++,t.lookahead--,0===t.strm.avail_out)return A}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(i=u._tr_tally(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart<x-1?t.strstart:x-1,e===f?(N(t,!0),0===t.strm.avail_out?O:B):t.last_lit&&(N(t,!1),0===t.strm.avail_out)?A:I}function M(t,e,r,i,n){this.good_length=t,this.max_lazy=e,this.nice_length=r,this.max_chain=i,this.func=n}function H(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=v,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new d.Buf16(2*w),this.dyn_dtree=new d.Buf16(2*(2*a+1)),this.bl_tree=new d.Buf16(2*(2*o+1)),D(this.dyn_ltree),D(this.dyn_dtree),D(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new d.Buf16(k+1),this.heap=new d.Buf16(2*s+1),D(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new d.Buf16(2*s+1),D(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function G(t){var e;return t&&t.state?(t.total_in=t.total_out=0,t.data_type=n,(e=t.state).pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=e.wrap?C:E,t.adler=2===e.wrap?0:1,e.last_flush=l,u._tr_init(e),m):R(t,_)}function K(t){var e=G(t);return e===m&&function(t){t.window_size=2*t.w_size,D(t.head),t.max_lazy_match=h[t.level].max_lazy,t.good_match=h[t.level].good_length,t.nice_match=h[t.level].nice_length,t.max_chain_length=h[t.level].max_chain,t.strstart=0,t.block_start=0,t.lookahead=0,t.insert=0,t.match_length=t.prev_length=x-1,t.match_available=0,t.ins_h=0}(t.state),e}function Y(t,e,r,i,n,s){if(!t)return _;var a=1;if(e===g&&(e=6),i<0?(a=0,i=-i):15<i&&(a=2,i-=16),n<1||y<n||r!==v||i<8||15<i||e<0||9<e||s<0||b<s)return R(t,_);8===i&&(i=9);var o=new H;return(t.state=o).strm=t,o.wrap=a,o.gzhead=null,o.w_bits=i,o.w_size=1<<o.w_bits,o.w_mask=o.w_size-1,o.hash_bits=n+7,o.hash_size=1<<o.hash_bits,o.hash_mask=o.hash_size-1,o.hash_shift=~~((o.hash_bits+x-1)/x),o.window=new d.Buf8(2*o.w_size),o.head=new d.Buf16(o.hash_size),o.prev=new d.Buf16(o.w_size),o.lit_bufsize=1<<n+6,o.pending_buf_size=4*o.lit_bufsize,o.pending_buf=new d.Buf8(o.pending_buf_size),o.d_buf=1*o.lit_bufsize,o.l_buf=3*o.lit_bufsize,o.level=e,o.strategy=s,o.method=r,K(t)}h=[new M(0,0,0,0,function(t,e){var r=65535;for(r>t.pending_buf_size-5&&(r=t.pending_buf_size-5);;){if(t.lookahead<=1){if(j(t),0===t.lookahead&&e===l)return A;if(0===t.lookahead)break}t.strstart+=t.lookahead,t.lookahead=0;var i=t.block_start+r;if((0===t.strstart||t.strstart>=i)&&(t.lookahead=t.strstart-i,t.strstart=i,N(t,!1),0===t.strm.avail_out))return A;if(t.strstart-t.block_start>=t.w_size-z&&(N(t,!1),0===t.strm.avail_out))return A}return t.insert=0,e===f?(N(t,!0),0===t.strm.avail_out?O:B):(t.strstart>t.block_start&&(N(t,!1),t.strm.avail_out),A)}),new M(4,4,8,4,Z),new M(4,5,16,8,Z),new M(4,6,32,32,Z),new M(4,4,16,16,W),new M(8,16,32,32,W),new M(8,16,128,128,W),new M(8,32,128,256,W),new M(32,128,258,1024,W),new M(32,258,258,4096,W)],r.deflateInit=function(t,e){return Y(t,e,v,15,8,0)},r.deflateInit2=Y,r.deflateReset=K,r.deflateResetKeep=G,r.deflateSetHeader=function(t,e){return t&&t.state?2!==t.state.wrap?_:(t.state.gzhead=e,m):_},r.deflate=function(t,e){var r,i,n,s;if(!t||!t.state||5<e||e<0)return t?R(t,_):_;if(i=t.state,!t.output||!t.input&&0!==t.avail_in||666===i.status&&e!==f)return R(t,0===t.avail_out?-5:_);if(i.strm=t,r=i.last_flush,i.last_flush=e,i.status===C)if(2===i.wrap)t.adler=0,U(i,31),U(i,139),U(i,8),i.gzhead?(U(i,(i.gzhead.text?1:0)+(i.gzhead.hcrc?2:0)+(i.gzhead.extra?4:0)+(i.gzhead.name?8:0)+(i.gzhead.comment?16:0)),U(i,255&i.gzhead.time),U(i,i.gzhead.time>>8&255),U(i,i.gzhead.time>>16&255),U(i,i.gzhead.time>>24&255),U(i,9===i.level?2:2<=i.strategy||i.level<2?4:0),U(i,255&i.gzhead.os),i.gzhead.extra&&i.gzhead.extra.length&&(U(i,255&i.gzhead.extra.length),U(i,i.gzhead.extra.length>>8&255)),i.gzhead.hcrc&&(t.adler=p(t.adler,i.pending_buf,i.pending,0)),i.gzindex=0,i.status=69):(U(i,0),U(i,0),U(i,0),U(i,0),U(i,0),U(i,9===i.level?2:2<=i.strategy||i.level<2?4:0),U(i,3),i.status=E);else{var a=v+(i.w_bits-8<<4)<<8;a|=(2<=i.strategy||i.level<2?0:i.level<6?1:6===i.level?2:3)<<6,0!==i.strstart&&(a|=32),a+=31-a%31,i.status=E,P(i,a),0!==i.strstart&&(P(i,t.adler>>>16),P(i,65535&t.adler)),t.adler=1}if(69===i.status)if(i.gzhead.extra){for(n=i.pending;i.gzindex<(65535&i.gzhead.extra.length)&&(i.pending!==i.pending_buf_size||(i.gzhead.hcrc&&i.pending>n&&(t.adler=p(t.adler,i.pending_buf,i.pending-n,n)),F(t),n=i.pending,i.pending!==i.pending_buf_size));)U(i,255&i.gzhead.extra[i.gzindex]),i.gzindex++;i.gzhead.hcrc&&i.pending>n&&(t.adler=p(t.adler,i.pending_buf,i.pending-n,n)),i.gzindex===i.gzhead.extra.length&&(i.gzindex=0,i.status=73)}else i.status=73;if(73===i.status)if(i.gzhead.name){n=i.pending;do{if(i.pending===i.pending_buf_size&&(i.gzhead.hcrc&&i.pending>n&&(t.adler=p(t.adler,i.pending_buf,i.pending-n,n)),F(t),n=i.pending,i.pending===i.pending_buf_size)){s=1;break}s=i.gzindex<i.gzhead.name.length?255&i.gzhead.name.charCodeAt(i.gzindex++):0,U(i,s)}while(0!==s);i.gzhead.hcrc&&i.pending>n&&(t.adler=p(t.adler,i.pending_buf,i.pending-n,n)),0===s&&(i.gzindex=0,i.status=91)}else i.status=91;if(91===i.status)if(i.gzhead.comment){n=i.pending;do{if(i.pending===i.pending_buf_size&&(i.gzhead.hcrc&&i.pending>n&&(t.adler=p(t.adler,i.pending_buf,i.pending-n,n)),F(t),n=i.pending,i.pending===i.pending_buf_size)){s=1;break}s=i.gzindex<i.gzhead.comment.length?255&i.gzhead.comment.charCodeAt(i.gzindex++):0,U(i,s)}while(0!==s);i.gzhead.hcrc&&i.pending>n&&(t.adler=p(t.adler,i.pending_buf,i.pending-n,n)),0===s&&(i.status=103)}else i.status=103;if(103===i.status&&(i.gzhead.hcrc?(i.pending+2>i.pending_buf_size&&F(t),i.pending+2<=i.pending_buf_size&&(U(i,255&t.adler),U(i,t.adler>>8&255),t.adler=0,i.status=E)):i.status=E),0!==i.pending){if(F(t),0===t.avail_out)return i.last_flush=-1,m}else if(0===t.avail_in&&T(e)<=T(r)&&e!==f)return R(t,-5);if(666===i.status&&0!==t.avail_in)return R(t,-5);if(0!==t.avail_in||0!==i.lookahead||e!==l&&666!==i.status){var o=2===i.strategy?function(t,e){for(var r;;){if(0===t.lookahead&&(j(t),0===t.lookahead)){if(e===l)return A;break}if(t.match_length=0,r=u._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,r&&(N(t,!1),0===t.strm.avail_out))return A}return t.insert=0,e===f?(N(t,!0),0===t.strm.avail_out?O:B):t.last_lit&&(N(t,!1),0===t.strm.avail_out)?A:I}(i,e):3===i.strategy?function(t,e){for(var r,i,n,s,a=t.window;;){if(t.lookahead<=S){if(j(t),t.lookahead<=S&&e===l)return A;if(0===t.lookahead)break}if(t.match_length=0,t.lookahead>=x&&0<t.strstart&&(i=a[n=t.strstart-1])===a[++n]&&i===a[++n]&&i===a[++n]){s=t.strstart+S;do{}while(i===a[++n]&&i===a[++n]&&i===a[++n]&&i===a[++n]&&i===a[++n]&&i===a[++n]&&i===a[++n]&&i===a[++n]&&n<s);t.match_length=S-(s-n),t.match_length>t.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=x?(r=u._tr_tally(t,1,t.match_length-x),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(r=u._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),r&&(N(t,!1),0===t.strm.avail_out))return A}return t.insert=0,e===f?(N(t,!0),0===t.strm.avail_out?O:B):t.last_lit&&(N(t,!1),0===t.strm.avail_out)?A:I}(i,e):h[i.level].func(i,e);if(o!==O&&o!==B||(i.status=666),o===A||o===O)return 0===t.avail_out&&(i.last_flush=-1),m;if(o===I&&(1===e?u._tr_align(i):5!==e&&(u._tr_stored_block(i,0,0,!1),3===e&&(D(i.head),0===i.lookahead&&(i.strstart=0,i.block_start=0,i.insert=0))),F(t),0===t.avail_out))return i.last_flush=-1,m}return e!==f?m:i.wrap<=0?1:(2===i.wrap?(U(i,255&t.adler),U(i,t.adler>>8&255),U(i,t.adler>>16&255),U(i,t.adler>>24&255),U(i,255&t.total_in),U(i,t.total_in>>8&255),U(i,t.total_in>>16&255),U(i,t.total_in>>24&255)):(P(i,t.adler>>>16),P(i,65535&t.adler)),F(t),0<i.wrap&&(i.wrap=-i.wrap),0!==i.pending?m:1)},r.deflateEnd=function(t){var e;return t&&t.state?(e=t.state.status)!==C&&69!==e&&73!==e&&91!==e&&103!==e&&e!==E&&666!==e?R(t,_):(t.state=null,e===E?R(t,-3):m):_},r.deflateSetDictionary=function(t,e){var r,i,n,s,a,o,h,u,l=e.length;if(!t||!t.state)return _;if(2===(s=(r=t.state).wrap)||1===s&&r.status!==C||r.lookahead)return _;for(1===s&&(t.adler=c(t.adler,e,l,0)),r.wrap=0,l>=r.w_size&&(0===s&&(D(r.head),r.strstart=0,r.block_start=0,r.insert=0),u=new d.Buf8(r.w_size),d.arraySet(u,e,l-r.w_size,r.w_size,0),e=u,l=r.w_size),a=t.avail_in,o=t.next_in,h=t.input,t.avail_in=l,t.next_in=0,t.input=e,j(r);r.lookahead>=x;){for(i=r.strstart,n=r.lookahead-(x-1);r.ins_h=(r.ins_h<<r.hash_shift^r.window[i+x-1])&r.hash_mask,r.prev[i&r.w_mask]=r.head[r.ins_h],r.head[r.ins_h]=i,i++,--n;);r.strstart=i,r.lookahead=x-1,j(r)}return r.strstart+=r.lookahead,r.block_start=r.strstart,r.insert=r.lookahead,r.lookahead=0,r.match_length=r.prev_length=x-1,r.match_available=0,t.next_in=o,t.input=h,t.avail_in=a,r.wrap=s,m},r.deflateInfo="pako deflate (from Nodeca project)"},{"../utils/common":41,"./adler32":43,"./crc32":45,"./messages":51,"./trees":52}],47:[function(t,e,r){"use strict";e.exports=function(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}},{}],48:[function(t,e,r){"use strict";e.exports=function(t,e){var r,i,n,s,a,o,h,u,l,f,d,c,p,m,_,g,b,v,y,w,k,x,S,z,C;r=t.state,i=t.next_in,z=t.input,n=i+(t.avail_in-5),s=t.next_out,C=t.output,a=s-(e-t.avail_out),o=s+(t.avail_out-257),h=r.dmax,u=r.wsize,l=r.whave,f=r.wnext,d=r.window,c=r.hold,p=r.bits,m=r.lencode,_=r.distcode,g=(1<<r.lenbits)-1,b=(1<<r.distbits)-1;t:do{p<15&&(c+=z[i++]<<p,p+=8,c+=z[i++]<<p,p+=8),v=m[c&g];e:for(;;){if(c>>>=y=v>>>24,p-=y,0===(y=v>>>16&255))C[s++]=65535&v;else{if(!(16&y)){if(0==(64&y)){v=m[(65535&v)+(c&(1<<y)-1)];continue e}if(32&y){r.mode=12;break t}t.msg="invalid literal/length code",r.mode=30;break t}w=65535&v,(y&=15)&&(p<y&&(c+=z[i++]<<p,p+=8),w+=c&(1<<y)-1,c>>>=y,p-=y),p<15&&(c+=z[i++]<<p,p+=8,c+=z[i++]<<p,p+=8),v=_[c&b];r:for(;;){if(c>>>=y=v>>>24,p-=y,!(16&(y=v>>>16&255))){if(0==(64&y)){v=_[(65535&v)+(c&(1<<y)-1)];continue r}t.msg="invalid distance code",r.mode=30;break t}if(k=65535&v,p<(y&=15)&&(c+=z[i++]<<p,(p+=8)<y&&(c+=z[i++]<<p,p+=8)),h<(k+=c&(1<<y)-1)){t.msg="invalid distance too far back",r.mode=30;break t}if(c>>>=y,p-=y,(y=s-a)<k){if(l<(y=k-y)&&r.sane){t.msg="invalid distance too far back",r.mode=30;break t}if(S=d,(x=0)===f){if(x+=u-y,y<w){for(w-=y;C[s++]=d[x++],--y;);x=s-k,S=C}}else if(f<y){if(x+=u+f-y,(y-=f)<w){for(w-=y;C[s++]=d[x++],--y;);if(x=0,f<w){for(w-=y=f;C[s++]=d[x++],--y;);x=s-k,S=C}}}else if(x+=f-y,y<w){for(w-=y;C[s++]=d[x++],--y;);x=s-k,S=C}for(;2<w;)C[s++]=S[x++],C[s++]=S[x++],C[s++]=S[x++],w-=3;w&&(C[s++]=S[x++],1<w&&(C[s++]=S[x++]))}else{for(x=s-k;C[s++]=C[x++],C[s++]=C[x++],C[s++]=C[x++],2<(w-=3););w&&(C[s++]=C[x++],1<w&&(C[s++]=C[x++]))}break}}break}}while(i<n&&s<o);i-=w=p>>3,c&=(1<<(p-=w<<3))-1,t.next_in=i,t.next_out=s,t.avail_in=i<n?n-i+5:5-(i-n),t.avail_out=s<o?o-s+257:257-(s-o),r.hold=c,r.bits=p}},{}],49:[function(t,e,r){"use strict";var I=t("../utils/common"),O=t("./adler32"),B=t("./crc32"),R=t("./inffast"),T=t("./inftrees"),D=1,F=2,N=0,U=-2,P=1,i=852,n=592;function L(t){return(t>>>24&255)+(t>>>8&65280)+((65280&t)<<8)+((255&t)<<24)}function s(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new I.Buf16(320),this.work=new I.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function a(t){var e;return t&&t.state?(e=t.state,t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=1&e.wrap),e.mode=P,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new I.Buf32(i),e.distcode=e.distdyn=new I.Buf32(n),e.sane=1,e.back=-1,N):U}function o(t){var e;return t&&t.state?((e=t.state).wsize=0,e.whave=0,e.wnext=0,a(t)):U}function h(t,e){var r,i;return t&&t.state?(i=t.state,e<0?(r=0,e=-e):(r=1+(e>>4),e<48&&(e&=15)),e&&(e<8||15<e)?U:(null!==i.window&&i.wbits!==e&&(i.window=null),i.wrap=r,i.wbits=e,o(t))):U}function u(t,e){var r,i;return t?(i=new s,(t.state=i).window=null,(r=h(t,e))!==N&&(t.state=null),r):U}var l,f,d=!0;function j(t){if(d){var e;for(l=new I.Buf32(512),f=new I.Buf32(32),e=0;e<144;)t.lens[e++]=8;for(;e<256;)t.lens[e++]=9;for(;e<280;)t.lens[e++]=7;for(;e<288;)t.lens[e++]=8;for(T(D,t.lens,0,288,l,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;T(F,t.lens,0,32,f,0,t.work,{bits:5}),d=!1}t.lencode=l,t.lenbits=9,t.distcode=f,t.distbits=5}function Z(t,e,r,i){var n,s=t.state;return null===s.window&&(s.wsize=1<<s.wbits,s.wnext=0,s.whave=0,s.window=new I.Buf8(s.wsize)),i>=s.wsize?(I.arraySet(s.window,e,r-s.wsize,s.wsize,0),s.wnext=0,s.whave=s.wsize):(i<(n=s.wsize-s.wnext)&&(n=i),I.arraySet(s.window,e,r-i,n,s.wnext),(i-=n)?(I.arraySet(s.window,e,r-i,i,0),s.wnext=i,s.whave=s.wsize):(s.wnext+=n,s.wnext===s.wsize&&(s.wnext=0),s.whave<s.wsize&&(s.whave+=n))),0}r.inflateReset=o,r.inflateReset2=h,r.inflateResetKeep=a,r.inflateInit=function(t){return u(t,15)},r.inflateInit2=u,r.inflate=function(t,e){var r,i,n,s,a,o,h,u,l,f,d,c,p,m,_,g,b,v,y,w,k,x,S,z,C=0,E=new I.Buf8(4),A=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!t||!t.state||!t.output||!t.input&&0!==t.avail_in)return U;12===(r=t.state).mode&&(r.mode=13),a=t.next_out,n=t.output,h=t.avail_out,s=t.next_in,i=t.input,o=t.avail_in,u=r.hold,l=r.bits,f=o,d=h,x=N;t:for(;;)switch(r.mode){case P:if(0===r.wrap){r.mode=13;break}for(;l<16;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if(2&r.wrap&&35615===u){E[r.check=0]=255&u,E[1]=u>>>8&255,r.check=B(r.check,E,2,0),l=u=0,r.mode=2;break}if(r.flags=0,r.head&&(r.head.done=!1),!(1&r.wrap)||(((255&u)<<8)+(u>>8))%31){t.msg="incorrect header check",r.mode=30;break}if(8!=(15&u)){t.msg="unknown compression method",r.mode=30;break}if(l-=4,k=8+(15&(u>>>=4)),0===r.wbits)r.wbits=k;else if(k>r.wbits){t.msg="invalid window size",r.mode=30;break}r.dmax=1<<k,t.adler=r.check=1,r.mode=512&u?10:12,l=u=0;break;case 2:for(;l<16;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if(r.flags=u,8!=(255&r.flags)){t.msg="unknown compression method",r.mode=30;break}if(57344&r.flags){t.msg="unknown header flags set",r.mode=30;break}r.head&&(r.head.text=u>>8&1),512&r.flags&&(E[0]=255&u,E[1]=u>>>8&255,r.check=B(r.check,E,2,0)),l=u=0,r.mode=3;case 3:for(;l<32;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}r.head&&(r.head.time=u),512&r.flags&&(E[0]=255&u,E[1]=u>>>8&255,E[2]=u>>>16&255,E[3]=u>>>24&255,r.check=B(r.check,E,4,0)),l=u=0,r.mode=4;case 4:for(;l<16;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}r.head&&(r.head.xflags=255&u,r.head.os=u>>8),512&r.flags&&(E[0]=255&u,E[1]=u>>>8&255,r.check=B(r.check,E,2,0)),l=u=0,r.mode=5;case 5:if(1024&r.flags){for(;l<16;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}r.length=u,r.head&&(r.head.extra_len=u),512&r.flags&&(E[0]=255&u,E[1]=u>>>8&255,r.check=B(r.check,E,2,0)),l=u=0}else r.head&&(r.head.extra=null);r.mode=6;case 6:if(1024&r.flags&&(o<(c=r.length)&&(c=o),c&&(r.head&&(k=r.head.extra_len-r.length,r.head.extra||(r.head.extra=new Array(r.head.extra_len)),I.arraySet(r.head.extra,i,s,c,k)),512&r.flags&&(r.check=B(r.check,i,c,s)),o-=c,s+=c,r.length-=c),r.length))break t;r.length=0,r.mode=7;case 7:if(2048&r.flags){if(0===o)break t;for(c=0;k=i[s+c++],r.head&&k&&r.length<65536&&(r.head.name+=String.fromCharCode(k)),k&&c<o;);if(512&r.flags&&(r.check=B(r.check,i,c,s)),o-=c,s+=c,k)break t}else r.head&&(r.head.name=null);r.length=0,r.mode=8;case 8:if(4096&r.flags){if(0===o)break t;for(c=0;k=i[s+c++],r.head&&k&&r.length<65536&&(r.head.comment+=String.fromCharCode(k)),k&&c<o;);if(512&r.flags&&(r.check=B(r.check,i,c,s)),o-=c,s+=c,k)break t}else r.head&&(r.head.comment=null);r.mode=9;case 9:if(512&r.flags){for(;l<16;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if(u!==(65535&r.check)){t.msg="header crc mismatch",r.mode=30;break}l=u=0}r.head&&(r.head.hcrc=r.flags>>9&1,r.head.done=!0),t.adler=r.check=0,r.mode=12;break;case 10:for(;l<32;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}t.adler=r.check=L(u),l=u=0,r.mode=11;case 11:if(0===r.havedict)return t.next_out=a,t.avail_out=h,t.next_in=s,t.avail_in=o,r.hold=u,r.bits=l,2;t.adler=r.check=1,r.mode=12;case 12:if(5===e||6===e)break t;case 13:if(r.last){u>>>=7&l,l-=7&l,r.mode=27;break}for(;l<3;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}switch(r.last=1&u,l-=1,3&(u>>>=1)){case 0:r.mode=14;break;case 1:if(j(r),r.mode=20,6!==e)break;u>>>=2,l-=2;break t;case 2:r.mode=17;break;case 3:t.msg="invalid block type",r.mode=30}u>>>=2,l-=2;break;case 14:for(u>>>=7&l,l-=7&l;l<32;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if((65535&u)!=(u>>>16^65535)){t.msg="invalid stored block lengths",r.mode=30;break}if(r.length=65535&u,l=u=0,r.mode=15,6===e)break t;case 15:r.mode=16;case 16:if(c=r.length){if(o<c&&(c=o),h<c&&(c=h),0===c)break t;I.arraySet(n,i,s,c,a),o-=c,s+=c,h-=c,a+=c,r.length-=c;break}r.mode=12;break;case 17:for(;l<14;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if(r.nlen=257+(31&u),u>>>=5,l-=5,r.ndist=1+(31&u),u>>>=5,l-=5,r.ncode=4+(15&u),u>>>=4,l-=4,286<r.nlen||30<r.ndist){t.msg="too many length or distance symbols",r.mode=30;break}r.have=0,r.mode=18;case 18:for(;r.have<r.ncode;){for(;l<3;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}r.lens[A[r.have++]]=7&u,u>>>=3,l-=3}for(;r.have<19;)r.lens[A[r.have++]]=0;if(r.lencode=r.lendyn,r.lenbits=7,S={bits:r.lenbits},x=T(0,r.lens,0,19,r.lencode,0,r.work,S),r.lenbits=S.bits,x){t.msg="invalid code lengths set",r.mode=30;break}r.have=0,r.mode=19;case 19:for(;r.have<r.nlen+r.ndist;){for(;g=(C=r.lencode[u&(1<<r.lenbits)-1])>>>16&255,b=65535&C,!((_=C>>>24)<=l);){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if(b<16)u>>>=_,l-=_,r.lens[r.have++]=b;else{if(16===b){for(z=_+2;l<z;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if(u>>>=_,l-=_,0===r.have){t.msg="invalid bit length repeat",r.mode=30;break}k=r.lens[r.have-1],c=3+(3&u),u>>>=2,l-=2}else if(17===b){for(z=_+3;l<z;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}l-=_,k=0,c=3+(7&(u>>>=_)),u>>>=3,l-=3}else{for(z=_+7;l<z;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}l-=_,k=0,c=11+(127&(u>>>=_)),u>>>=7,l-=7}if(r.have+c>r.nlen+r.ndist){t.msg="invalid bit length repeat",r.mode=30;break}for(;c--;)r.lens[r.have++]=k}}if(30===r.mode)break;if(0===r.lens[256]){t.msg="invalid code -- missing end-of-block",r.mode=30;break}if(r.lenbits=9,S={bits:r.lenbits},x=T(D,r.lens,0,r.nlen,r.lencode,0,r.work,S),r.lenbits=S.bits,x){t.msg="invalid literal/lengths set",r.mode=30;break}if(r.distbits=6,r.distcode=r.distdyn,S={bits:r.distbits},x=T(F,r.lens,r.nlen,r.ndist,r.distcode,0,r.work,S),r.distbits=S.bits,x){t.msg="invalid distances set",r.mode=30;break}if(r.mode=20,6===e)break t;case 20:r.mode=21;case 21:if(6<=o&&258<=h){t.next_out=a,t.avail_out=h,t.next_in=s,t.avail_in=o,r.hold=u,r.bits=l,R(t,d),a=t.next_out,n=t.output,h=t.avail_out,s=t.next_in,i=t.input,o=t.avail_in,u=r.hold,l=r.bits,12===r.mode&&(r.back=-1);break}for(r.back=0;g=(C=r.lencode[u&(1<<r.lenbits)-1])>>>16&255,b=65535&C,!((_=C>>>24)<=l);){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if(g&&0==(240&g)){for(v=_,y=g,w=b;g=(C=r.lencode[w+((u&(1<<v+y)-1)>>v)])>>>16&255,b=65535&C,!(v+(_=C>>>24)<=l);){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}u>>>=v,l-=v,r.back+=v}if(u>>>=_,l-=_,r.back+=_,r.length=b,0===g){r.mode=26;break}if(32&g){r.back=-1,r.mode=12;break}if(64&g){t.msg="invalid literal/length code",r.mode=30;break}r.extra=15&g,r.mode=22;case 22:if(r.extra){for(z=r.extra;l<z;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}r.length+=u&(1<<r.extra)-1,u>>>=r.extra,l-=r.extra,r.back+=r.extra}r.was=r.length,r.mode=23;case 23:for(;g=(C=r.distcode[u&(1<<r.distbits)-1])>>>16&255,b=65535&C,!((_=C>>>24)<=l);){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if(0==(240&g)){for(v=_,y=g,w=b;g=(C=r.distcode[w+((u&(1<<v+y)-1)>>v)])>>>16&255,b=65535&C,!(v+(_=C>>>24)<=l);){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}u>>>=v,l-=v,r.back+=v}if(u>>>=_,l-=_,r.back+=_,64&g){t.msg="invalid distance code",r.mode=30;break}r.offset=b,r.extra=15&g,r.mode=24;case 24:if(r.extra){for(z=r.extra;l<z;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}r.offset+=u&(1<<r.extra)-1,u>>>=r.extra,l-=r.extra,r.back+=r.extra}if(r.offset>r.dmax){t.msg="invalid distance too far back",r.mode=30;break}r.mode=25;case 25:if(0===h)break t;if(c=d-h,r.offset>c){if((c=r.offset-c)>r.whave&&r.sane){t.msg="invalid distance too far back",r.mode=30;break}p=c>r.wnext?(c-=r.wnext,r.wsize-c):r.wnext-c,c>r.length&&(c=r.length),m=r.window}else m=n,p=a-r.offset,c=r.length;for(h<c&&(c=h),h-=c,r.length-=c;n[a++]=m[p++],--c;);0===r.length&&(r.mode=21);break;case 26:if(0===h)break t;n[a++]=r.length,h--,r.mode=21;break;case 27:if(r.wrap){for(;l<32;){if(0===o)break t;o--,u|=i[s++]<<l,l+=8}if(d-=h,t.total_out+=d,r.total+=d,d&&(t.adler=r.check=r.flags?B(r.check,n,d,a-d):O(r.check,n,d,a-d)),d=h,(r.flags?u:L(u))!==r.check){t.msg="incorrect data check",r.mode=30;break}l=u=0}r.mode=28;case 28:if(r.wrap&&r.flags){for(;l<32;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if(u!==(4294967295&r.total)){t.msg="incorrect length check",r.mode=30;break}l=u=0}r.mode=29;case 29:x=1;break t;case 30:x=-3;break t;case 31:return-4;case 32:default:return U}return t.next_out=a,t.avail_out=h,t.next_in=s,t.avail_in=o,r.hold=u,r.bits=l,(r.wsize||d!==t.avail_out&&r.mode<30&&(r.mode<27||4!==e))&&Z(t,t.output,t.next_out,d-t.avail_out)?(r.mode=31,-4):(f-=t.avail_in,d-=t.avail_out,t.total_in+=f,t.total_out+=d,r.total+=d,r.wrap&&d&&(t.adler=r.check=r.flags?B(r.check,n,d,t.next_out-d):O(r.check,n,d,t.next_out-d)),t.data_type=r.bits+(r.last?64:0)+(12===r.mode?128:0)+(20===r.mode||15===r.mode?256:0),(0==f&&0===d||4===e)&&x===N&&(x=-5),x)},r.inflateEnd=function(t){if(!t||!t.state)return U;var e=t.state;return e.window&&(e.window=null),t.state=null,N},r.inflateGetHeader=function(t,e){var r;return t&&t.state?0==(2&(r=t.state).wrap)?U:((r.head=e).done=!1,N):U},r.inflateSetDictionary=function(t,e){var r,i=e.length;return t&&t.state?0!==(r=t.state).wrap&&11!==r.mode?U:11===r.mode&&O(1,e,i,0)!==r.check?-3:Z(t,e,i,i)?(r.mode=31,-4):(r.havedict=1,N):U},r.inflateInfo="pako inflate (from Nodeca project)"},{"../utils/common":41,"./adler32":43,"./crc32":45,"./inffast":48,"./inftrees":50}],50:[function(t,e,r){"use strict";var D=t("../utils/common"),F=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],N=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],U=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],P=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];e.exports=function(t,e,r,i,n,s,a,o){var h,u,l,f,d,c,p,m,_,g=o.bits,b=0,v=0,y=0,w=0,k=0,x=0,S=0,z=0,C=0,E=0,A=null,I=0,O=new D.Buf16(16),B=new D.Buf16(16),R=null,T=0;for(b=0;b<=15;b++)O[b]=0;for(v=0;v<i;v++)O[e[r+v]]++;for(k=g,w=15;1<=w&&0===O[w];w--);if(w<k&&(k=w),0===w)return n[s++]=20971520,n[s++]=20971520,o.bits=1,0;for(y=1;y<w&&0===O[y];y++);for(k<y&&(k=y),b=z=1;b<=15;b++)if(z<<=1,(z-=O[b])<0)return-1;if(0<z&&(0===t||1!==w))return-1;for(B[1]=0,b=1;b<15;b++)B[b+1]=B[b]+O[b];for(v=0;v<i;v++)0!==e[r+v]&&(a[B[e[r+v]]++]=v);if(c=0===t?(A=R=a,19):1===t?(A=F,I-=257,R=N,T-=257,256):(A=U,R=P,-1),b=y,d=s,S=v=E=0,l=-1,f=(C=1<<(x=k))-1,1===t&&852<C||2===t&&592<C)return 1;for(;;){for(p=b-S,_=a[v]<c?(m=0,a[v]):a[v]>c?(m=R[T+a[v]],A[I+a[v]]):(m=96,0),h=1<<b-S,y=u=1<<x;n[d+(E>>S)+(u-=h)]=p<<24|m<<16|_|0,0!==u;);for(h=1<<b-1;E&h;)h>>=1;if(0!==h?(E&=h-1,E+=h):E=0,v++,0==--O[b]){if(b===w)break;b=e[r+a[v]]}if(k<b&&(E&f)!==l){for(0===S&&(S=k),d+=y,z=1<<(x=b-S);x+S<w&&!((z-=O[x+S])<=0);)x++,z<<=1;if(C+=1<<x,1===t&&852<C||2===t&&592<C)return 1;n[l=E&f]=k<<24|x<<16|d-s|0}}return 0!==E&&(n[d+E]=b-S<<24|64<<16|0),o.bits=k,0}},{"../utils/common":41}],51:[function(t,e,r){"use strict";e.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},{}],52:[function(t,e,r){"use strict";var n=t("../utils/common"),o=0,h=1;function i(t){for(var e=t.length;0<=--e;)t[e]=0}var s=0,a=29,u=256,l=u+1+a,f=30,d=19,_=2*l+1,g=15,c=16,p=7,m=256,b=16,v=17,y=18,w=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],k=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],x=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],S=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],z=new Array(2*(l+2));i(z);var C=new Array(2*f);i(C);var E=new Array(512);i(E);var A=new Array(256);i(A);var I=new Array(a);i(I);var O,B,R,T=new Array(f);function D(t,e,r,i,n){this.static_tree=t,this.extra_bits=e,this.extra_base=r,this.elems=i,this.max_length=n,this.has_stree=t&&t.length}function F(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}function N(t){return t<256?E[t]:E[256+(t>>>7)]}function U(t,e){t.pending_buf[t.pending++]=255&e,t.pending_buf[t.pending++]=e>>>8&255}function P(t,e,r){t.bi_valid>c-r?(t.bi_buf|=e<<t.bi_valid&65535,U(t,t.bi_buf),t.bi_buf=e>>c-t.bi_valid,t.bi_valid+=r-c):(t.bi_buf|=e<<t.bi_valid&65535,t.bi_valid+=r)}function L(t,e,r){P(t,r[2*e],r[2*e+1])}function j(t,e){for(var r=0;r|=1&t,t>>>=1,r<<=1,0<--e;);return r>>>1}function Z(t,e,r){var i,n,s=new Array(g+1),a=0;for(i=1;i<=g;i++)s[i]=a=a+r[i-1]<<1;for(n=0;n<=e;n++){var o=t[2*n+1];0!==o&&(t[2*n]=j(s[o]++,o))}}function W(t){var e;for(e=0;e<l;e++)t.dyn_ltree[2*e]=0;for(e=0;e<f;e++)t.dyn_dtree[2*e]=0;for(e=0;e<d;e++)t.bl_tree[2*e]=0;t.dyn_ltree[2*m]=1,t.opt_len=t.static_len=0,t.last_lit=t.matches=0}function M(t){8<t.bi_valid?U(t,t.bi_buf):0<t.bi_valid&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0}function H(t,e,r,i){var n=2*e,s=2*r;return t[n]<t[s]||t[n]===t[s]&&i[e]<=i[r]}function G(t,e,r){for(var i=t.heap[r],n=r<<1;n<=t.heap_len&&(n<t.heap_len&&H(e,t.heap[n+1],t.heap[n],t.depth)&&n++,!H(e,i,t.heap[n],t.depth));)t.heap[r]=t.heap[n],r=n,n<<=1;t.heap[r]=i}function K(t,e,r){var i,n,s,a,o=0;if(0!==t.last_lit)for(;i=t.pending_buf[t.d_buf+2*o]<<8|t.pending_buf[t.d_buf+2*o+1],n=t.pending_buf[t.l_buf+o],o++,0===i?L(t,n,e):(L(t,(s=A[n])+u+1,e),0!==(a=w[s])&&P(t,n-=I[s],a),L(t,s=N(--i),r),0!==(a=k[s])&&P(t,i-=T[s],a)),o<t.last_lit;);L(t,m,e)}function Y(t,e){var r,i,n,s=e.dyn_tree,a=e.stat_desc.static_tree,o=e.stat_desc.has_stree,h=e.stat_desc.elems,u=-1;for(t.heap_len=0,t.heap_max=_,r=0;r<h;r++)0!==s[2*r]?(t.heap[++t.heap_len]=u=r,t.depth[r]=0):s[2*r+1]=0;for(;t.heap_len<2;)s[2*(n=t.heap[++t.heap_len]=u<2?++u:0)]=1,t.depth[n]=0,t.opt_len--,o&&(t.static_len-=a[2*n+1]);for(e.max_code=u,r=t.heap_len>>1;1<=r;r--)G(t,s,r);for(n=h;r=t.heap[1],t.heap[1]=t.heap[t.heap_len--],G(t,s,1),i=t.heap[1],t.heap[--t.heap_max]=r,t.heap[--t.heap_max]=i,s[2*n]=s[2*r]+s[2*i],t.depth[n]=(t.depth[r]>=t.depth[i]?t.depth[r]:t.depth[i])+1,s[2*r+1]=s[2*i+1]=n,t.heap[1]=n++,G(t,s,1),2<=t.heap_len;);t.heap[--t.heap_max]=t.heap[1],function(t,e){var r,i,n,s,a,o,h=e.dyn_tree,u=e.max_code,l=e.stat_desc.static_tree,f=e.stat_desc.has_stree,d=e.stat_desc.extra_bits,c=e.stat_desc.extra_base,p=e.stat_desc.max_length,m=0;for(s=0;s<=g;s++)t.bl_count[s]=0;for(h[2*t.heap[t.heap_max]+1]=0,r=t.heap_max+1;r<_;r++)p<(s=h[2*h[2*(i=t.heap[r])+1]+1]+1)&&(s=p,m++),h[2*i+1]=s,u<i||(t.bl_count[s]++,a=0,c<=i&&(a=d[i-c]),o=h[2*i],t.opt_len+=o*(s+a),f&&(t.static_len+=o*(l[2*i+1]+a)));if(0!==m){do{for(s=p-1;0===t.bl_count[s];)s--;t.bl_count[s]--,t.bl_count[s+1]+=2,t.bl_count[p]--,m-=2}while(0<m);for(s=p;0!==s;s--)for(i=t.bl_count[s];0!==i;)u<(n=t.heap[--r])||(h[2*n+1]!==s&&(t.opt_len+=(s-h[2*n+1])*h[2*n],h[2*n+1]=s),i--)}}(t,e),Z(s,u,t.bl_count)}function X(t,e,r){var i,n,s=-1,a=e[1],o=0,h=7,u=4;for(0===a&&(h=138,u=3),e[2*(r+1)+1]=65535,i=0;i<=r;i++)n=a,a=e[2*(i+1)+1],++o<h&&n===a||(o<u?t.bl_tree[2*n]+=o:0!==n?(n!==s&&t.bl_tree[2*n]++,t.bl_tree[2*b]++):o<=10?t.bl_tree[2*v]++:t.bl_tree[2*y]++,s=n,u=(o=0)===a?(h=138,3):n===a?(h=6,3):(h=7,4))}function V(t,e,r){var i,n,s=-1,a=e[1],o=0,h=7,u=4;for(0===a&&(h=138,u=3),i=0;i<=r;i++)if(n=a,a=e[2*(i+1)+1],!(++o<h&&n===a)){if(o<u)for(;L(t,n,t.bl_tree),0!=--o;);else 0!==n?(n!==s&&(L(t,n,t.bl_tree),o--),L(t,b,t.bl_tree),P(t,o-3,2)):o<=10?(L(t,v,t.bl_tree),P(t,o-3,3)):(L(t,y,t.bl_tree),P(t,o-11,7));s=n,u=(o=0)===a?(h=138,3):n===a?(h=6,3):(h=7,4)}}i(T);var q=!1;function J(t,e,r,i){P(t,(s<<1)+(i?1:0),3),function(t,e,r,i){M(t),i&&(U(t,r),U(t,~r)),n.arraySet(t.pending_buf,t.window,e,r,t.pending),t.pending+=r}(t,e,r,!0)}r._tr_init=function(t){q||(function(){var t,e,r,i,n,s=new Array(g+1);for(i=r=0;i<a-1;i++)for(I[i]=r,t=0;t<1<<w[i];t++)A[r++]=i;for(A[r-1]=i,i=n=0;i<16;i++)for(T[i]=n,t=0;t<1<<k[i];t++)E[n++]=i;for(n>>=7;i<f;i++)for(T[i]=n<<7,t=0;t<1<<k[i]-7;t++)E[256+n++]=i;for(e=0;e<=g;e++)s[e]=0;for(t=0;t<=143;)z[2*t+1]=8,t++,s[8]++;for(;t<=255;)z[2*t+1]=9,t++,s[9]++;for(;t<=279;)z[2*t+1]=7,t++,s[7]++;for(;t<=287;)z[2*t+1]=8,t++,s[8]++;for(Z(z,l+1,s),t=0;t<f;t++)C[2*t+1]=5,C[2*t]=j(t,5);O=new D(z,w,u+1,l,g),B=new D(C,k,0,f,g),R=new D(new Array(0),x,0,d,p)}(),q=!0),t.l_desc=new F(t.dyn_ltree,O),t.d_desc=new F(t.dyn_dtree,B),t.bl_desc=new F(t.bl_tree,R),t.bi_buf=0,t.bi_valid=0,W(t)},r._tr_stored_block=J,r._tr_flush_block=function(t,e,r,i){var n,s,a=0;0<t.level?(2===t.strm.data_type&&(t.strm.data_type=function(t){var e,r=4093624447;for(e=0;e<=31;e++,r>>>=1)if(1&r&&0!==t.dyn_ltree[2*e])return o;if(0!==t.dyn_ltree[18]||0!==t.dyn_ltree[20]||0!==t.dyn_ltree[26])return h;for(e=32;e<u;e++)if(0!==t.dyn_ltree[2*e])return h;return o}(t)),Y(t,t.l_desc),Y(t,t.d_desc),a=function(t){var e;for(X(t,t.dyn_ltree,t.l_desc.max_code),X(t,t.dyn_dtree,t.d_desc.max_code),Y(t,t.bl_desc),e=d-1;3<=e&&0===t.bl_tree[2*S[e]+1];e--);return t.opt_len+=3*(e+1)+5+5+4,e}(t),n=t.opt_len+3+7>>>3,(s=t.static_len+3+7>>>3)<=n&&(n=s)):n=s=r+5,r+4<=n&&-1!==e?J(t,e,r,i):4===t.strategy||s===n?(P(t,2+(i?1:0),3),K(t,z,C)):(P(t,4+(i?1:0),3),function(t,e,r,i){var n;for(P(t,e-257,5),P(t,r-1,5),P(t,i-4,4),n=0;n<i;n++)P(t,t.bl_tree[2*S[n]+1],3);V(t,t.dyn_ltree,e-1),V(t,t.dyn_dtree,r-1)}(t,t.l_desc.max_code+1,t.d_desc.max_code+1,a+1),K(t,t.dyn_ltree,t.dyn_dtree)),W(t),i&&M(t)},r._tr_tally=function(t,e,r){return t.pending_buf[t.d_buf+2*t.last_lit]=e>>>8&255,t.pending_buf[t.d_buf+2*t.last_lit+1]=255&e,t.pending_buf[t.l_buf+t.last_lit]=255&r,t.last_lit++,0===e?t.dyn_ltree[2*r]++:(t.matches++,e--,t.dyn_ltree[2*(A[r]+u+1)]++,t.dyn_dtree[2*N(e)]++),t.last_lit===t.lit_bufsize-1},r._tr_align=function(t){P(t,2,3),L(t,m,z),function(t){16===t.bi_valid?(U(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):8<=t.bi_valid&&(t.pending_buf[t.pending++]=255&t.bi_buf,t.bi_buf>>=8,t.bi_valid-=8)}(t)}},{"../utils/common":41}],53:[function(t,e,r){"use strict";e.exports=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}},{}],54:[function(t,e,r){"use strict";e.exports="function"==typeof setImmediate?setImmediate:function(){var t=[].slice.apply(arguments);t.splice(1,0,0),setTimeout.apply(null,t)}},{}]},{},[10])(10)});
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/script.js b/docs/site/testapidocs/script.js
      new file mode 100644
      index 00000000..ccac782e
      --- /dev/null
      +++ b/docs/site/testapidocs/script.js
      @@ -0,0 +1,132 @@
      +/*
      + * Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved.
      + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
      + *
      + * This code is free software; you can redistribute it and/or modify it
      + * under the terms of the GNU General Public License version 2 only, as
      + * published by the Free Software Foundation.  Oracle designates this
      + * particular file as subject to the "Classpath" exception as provided
      + * by Oracle in the LICENSE file that accompanied this code.
      + *
      + * This code is distributed in the hope that it will be useful, but WITHOUT
      + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
      + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
      + * version 2 for more details (a copy is included in the LICENSE file that
      + * accompanied this code).
      + *
      + * You should have received a copy of the GNU General Public License version
      + * 2 along with this work; if not, write to the Free Software Foundation,
      + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
      + *
      + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
      + * or visit www.oracle.com if you need additional information or have any
      + * questions.
      + */
      +
      +var moduleSearchIndex;
      +var packageSearchIndex;
      +var typeSearchIndex;
      +var memberSearchIndex;
      +var tagSearchIndex;
      +function loadScripts(doc, tag) {
      +    createElem(doc, tag, 'search.js');
      +
      +    createElem(doc, tag, 'module-search-index.js');
      +    createElem(doc, tag, 'package-search-index.js');
      +    createElem(doc, tag, 'type-search-index.js');
      +    createElem(doc, tag, 'member-search-index.js');
      +    createElem(doc, tag, 'tag-search-index.js');
      +}
      +
      +function createElem(doc, tag, path) {
      +    var script = doc.createElement(tag);
      +    var scriptElement = doc.getElementsByTagName(tag)[0];
      +    script.src = pathtoroot + path;
      +    scriptElement.parentNode.insertBefore(script, scriptElement);
      +}
      +
      +function show(tableId, selected, columns) {
      +    if (tableId !== selected) {
      +        document.querySelectorAll('div.' + tableId + ':not(.' + selected + ')')
      +            .forEach(function(elem) {
      +                elem.style.display = 'none';
      +            });
      +    }
      +    document.querySelectorAll('div.' + selected)
      +        .forEach(function(elem, index) {
      +            elem.style.display = '';
      +            var isEvenRow = index % (columns * 2) < columns;
      +            elem.classList.remove(isEvenRow ? oddRowColor : evenRowColor);
      +            elem.classList.add(isEvenRow ? evenRowColor : oddRowColor);
      +        });
      +    updateTabs(tableId, selected);
      +}
      +
      +function updateTabs(tableId, selected) {
      +    document.querySelector('div#' + tableId +' .summary-table')
      +        .setAttribute('aria-labelledby', selected);
      +    document.querySelectorAll('button[id^="' + tableId + '"]')
      +        .forEach(function(tab, index) {
      +            if (selected === tab.id || (tableId === selected && index === 0)) {
      +                tab.className = activeTableTab;
      +                tab.setAttribute('aria-selected', true);
      +                tab.setAttribute('tabindex',0);
      +            } else {
      +                tab.className = tableTab;
      +                tab.setAttribute('aria-selected', false);
      +                tab.setAttribute('tabindex',-1);
      +            }
      +        });
      +}
      +
      +function switchTab(e) {
      +    var selected = document.querySelector('[aria-selected=true]');
      +    if (selected) {
      +        if ((e.keyCode === 37 || e.keyCode === 38) && selected.previousSibling) {
      +            // left or up arrow key pressed: move focus to previous tab
      +            selected.previousSibling.click();
      +            selected.previousSibling.focus();
      +            e.preventDefault();
      +        } else if ((e.keyCode === 39 || e.keyCode === 40) && selected.nextSibling) {
      +            // right or down arrow key pressed: move focus to next tab
      +            selected.nextSibling.click();
      +            selected.nextSibling.focus();
      +            e.preventDefault();
      +        }
      +    }
      +}
      +
      +var updateSearchResults = function() {};
      +
      +function indexFilesLoaded() {
      +    return moduleSearchIndex
      +        && packageSearchIndex
      +        && typeSearchIndex
      +        && memberSearchIndex
      +        && tagSearchIndex;
      +}
      +
      +// Workaround for scroll position not being included in browser history (8249133)
      +document.addEventListener("DOMContentLoaded", function(e) {
      +    var contentDiv = document.querySelector("div.flex-content");
      +    window.addEventListener("popstate", function(e) {
      +        if (e.state !== null) {
      +            contentDiv.scrollTop = e.state;
      +        }
      +    });
      +    window.addEventListener("hashchange", function(e) {
      +        history.replaceState(contentDiv.scrollTop, document.title);
      +    });
      +    contentDiv.addEventListener("scroll", function(e) {
      +        var timeoutID;
      +        if (!timeoutID) {
      +            timeoutID = setTimeout(function() {
      +                history.replaceState(contentDiv.scrollTop, document.title);
      +                timeoutID = null;
      +            }, 100);
      +        }
      +    });
      +    if (!location.hash) {
      +        history.replaceState(contentDiv.scrollTop, document.title);
      +    }
      +});
      diff --git a/docs/site/testapidocs/search.js b/docs/site/testapidocs/search.js
      new file mode 100644
      index 00000000..ef98cea7
      --- /dev/null
      +++ b/docs/site/testapidocs/search.js
      @@ -0,0 +1,354 @@
      +/*
      + * Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
      + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
      + *
      + * This code is free software; you can redistribute it and/or modify it
      + * under the terms of the GNU General Public License version 2 only, as
      + * published by the Free Software Foundation.  Oracle designates this
      + * particular file as subject to the "Classpath" exception as provided
      + * by Oracle in the LICENSE file that accompanied this code.
      + *
      + * This code is distributed in the hope that it will be useful, but WITHOUT
      + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
      + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
      + * version 2 for more details (a copy is included in the LICENSE file that
      + * accompanied this code).
      + *
      + * You should have received a copy of the GNU General Public License version
      + * 2 along with this work; if not, write to the Free Software Foundation,
      + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
      + *
      + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
      + * or visit www.oracle.com if you need additional information or have any
      + * questions.
      + */
      +
      +var noResult = {l: "No results found"};
      +var loading = {l: "Loading search index..."};
      +var catModules = "Modules";
      +var catPackages = "Packages";
      +var catTypes = "Types";
      +var catMembers = "Members";
      +var catSearchTags = "Search Tags";
      +var highlight = "<span class=\"result-highlight\">$&</span>";
      +var searchPattern = "";
      +var fallbackPattern = "";
      +var RANKING_THRESHOLD = 2;
      +var NO_MATCH = 0xffff;
      +var MIN_RESULTS = 3;
      +var MAX_RESULTS = 500;
      +var UNNAMED = "<Unnamed>";
      +function escapeHtml(str) {
      +    return str.replace(/</g, "&lt;").replace(/>/g, "&gt;");
      +}
      +function getHighlightedText(item, matcher, fallbackMatcher) {
      +    var escapedItem = escapeHtml(item);
      +    var highlighted = escapedItem.replace(matcher, highlight);
      +    if (highlighted === escapedItem) {
      +        highlighted = escapedItem.replace(fallbackMatcher, highlight)
      +    }
      +    return highlighted;
      +}
      +function getURLPrefix(ui) {
      +    var urlPrefix="";
      +    var slash = "/";
      +    if (ui.item.category === catModules) {
      +        return ui.item.l + slash;
      +    } else if (ui.item.category === catPackages && ui.item.m) {
      +        return ui.item.m + slash;
      +    } else if (ui.item.category === catTypes || ui.item.category === catMembers) {
      +        if (ui.item.m) {
      +            urlPrefix = ui.item.m + slash;
      +        } else {
      +            $.each(packageSearchIndex, function(index, item) {
      +                if (item.m && ui.item.p === item.l) {
      +                    urlPrefix = item.m + slash;
      +                }
      +            });
      +        }
      +    }
      +    return urlPrefix;
      +}
      +function createSearchPattern(term) {
      +    var pattern = "";
      +    var isWordToken = false;
      +    term.replace(/,\s*/g, ", ").trim().split(/\s+/).forEach(function(w, index) {
      +        if (index > 0) {
      +            // whitespace between identifiers is significant
      +            pattern += (isWordToken && /^\w/.test(w)) ? "\\s+" : "\\s*";
      +        }
      +        var tokens = w.split(/(?=[A-Z,.()<>[\/])/);
      +        for (var i = 0; i < tokens.length; i++) {
      +            var s = tokens[i];
      +            if (s === "") {
      +                continue;
      +            }
      +            pattern += $.ui.autocomplete.escapeRegex(s);
      +            isWordToken =  /\w$/.test(s);
      +            if (isWordToken) {
      +                pattern += "([a-z0-9_$<>\\[\\]]*?)";
      +            }
      +        }
      +    });
      +    return pattern;
      +}
      +function createMatcher(pattern, flags) {
      +    var isCamelCase = /[A-Z]/.test(pattern);
      +    return new RegExp(pattern, flags + (isCamelCase ? "" : "i"));
      +}
      +var watermark = 'Search';
      +$(function() {
      +    var search = $("#search-input");
      +    var reset = $("#reset-button");
      +    search.val('');
      +    search.prop("disabled", false);
      +    reset.prop("disabled", false);
      +    search.val(watermark).addClass('watermark');
      +    search.blur(function() {
      +        if ($(this).val().length === 0) {
      +            $(this).val(watermark).addClass('watermark');
      +        }
      +    });
      +    search.on('click keydown paste', function() {
      +        if ($(this).val() === watermark) {
      +            $(this).val('').removeClass('watermark');
      +        }
      +    });
      +    reset.click(function() {
      +        search.val('').focus();
      +    });
      +    search.focus()[0].setSelectionRange(0, 0);
      +});
      +$.widget("custom.catcomplete", $.ui.autocomplete, {
      +    _create: function() {
      +        this._super();
      +        this.widget().menu("option", "items", "> :not(.ui-autocomplete-category)");
      +    },
      +    _renderMenu: function(ul, items) {
      +        var rMenu = this;
      +        var currentCategory = "";
      +        rMenu.menu.bindings = $();
      +        $.each(items, function(index, item) {
      +            var li;
      +            if (item.category && item.category !== currentCategory) {
      +                ul.append("<li class=\"ui-autocomplete-category\">" + item.category + "</li>");
      +                currentCategory = item.category;
      +            }
      +            li = rMenu._renderItemData(ul, item);
      +            if (item.category) {
      +                li.attr("aria-label", item.category + " : " + item.l);
      +                li.attr("class", "result-item");
      +            } else {
      +                li.attr("aria-label", item.l);
      +                li.attr("class", "result-item");
      +            }
      +        });
      +    },
      +    _renderItem: function(ul, item) {
      +        var label = "";
      +        var matcher = createMatcher(escapeHtml(searchPattern), "g");
      +        var fallbackMatcher = new RegExp(fallbackPattern, "gi")
      +        if (item.category === catModules) {
      +            label = getHighlightedText(item.l, matcher, fallbackMatcher);
      +        } else if (item.category === catPackages) {
      +            label = getHighlightedText(item.l, matcher, fallbackMatcher);
      +        } else if (item.category === catTypes) {
      +            label = (item.p && item.p !== UNNAMED)
      +                    ? getHighlightedText(item.p + "." + item.l, matcher, fallbackMatcher)
      +                    : getHighlightedText(item.l, matcher, fallbackMatcher);
      +        } else if (item.category === catMembers) {
      +            label = (item.p && item.p !== UNNAMED)
      +                    ? getHighlightedText(item.p + "." + item.c + "." + item.l, matcher, fallbackMatcher)
      +                    : getHighlightedText(item.c + "." + item.l, matcher, fallbackMatcher);
      +        } else if (item.category === catSearchTags) {
      +            label = getHighlightedText(item.l, matcher, fallbackMatcher);
      +        } else {
      +            label = item.l;
      +        }
      +        var li = $("<li/>").appendTo(ul);
      +        var div = $("<div/>").appendTo(li);
      +        if (item.category === catSearchTags && item.h) {
      +            if (item.d) {
      +                div.html(label + "<span class=\"search-tag-holder-result\"> (" + item.h + ")</span><br><span class=\"search-tag-desc-result\">"
      +                                + item.d + "</span><br>");
      +            } else {
      +                div.html(label + "<span class=\"search-tag-holder-result\"> (" + item.h + ")</span>");
      +            }
      +        } else {
      +            if (item.m) {
      +                div.html(item.m + "/" + label);
      +            } else {
      +                div.html(label);
      +            }
      +        }
      +        return li;
      +    }
      +});
      +function rankMatch(match, category) {
      +    if (!match) {
      +        return NO_MATCH;
      +    }
      +    var index = match.index;
      +    var input = match.input;
      +    var leftBoundaryMatch = 2;
      +    var periferalMatch = 0;
      +    // make sure match is anchored on a left word boundary
      +    if (index === 0 || /\W/.test(input[index - 1]) || "_" === input[index]) {
      +        leftBoundaryMatch = 0;
      +    } else if ("_" === input[index - 1] || (input[index] === input[index].toUpperCase() && !/^[A-Z0-9_$]+$/.test(input))) {
      +        leftBoundaryMatch = 1;
      +    }
      +    var matchEnd = index + match[0].length;
      +    var leftParen = input.indexOf("(");
      +    var endOfName = leftParen > -1 ? leftParen : input.length;
      +    // exclude peripheral matches
      +    if (category !== catModules && category !== catSearchTags) {
      +        var delim = category === catPackages ? "/" : ".";
      +        if (leftParen > -1 && leftParen < index) {
      +            periferalMatch += 2;
      +        } else if (input.lastIndexOf(delim, endOfName) >= matchEnd) {
      +            periferalMatch += 2;
      +        }
      +    }
      +    var delta = match[0].length === endOfName ? 0 : 1; // rank full match higher than partial match
      +    for (var i = 1; i < match.length; i++) {
      +        // lower ranking if parts of the name are missing
      +        if (match[i])
      +            delta += match[i].length;
      +    }
      +    if (category === catTypes) {
      +        // lower ranking if a type name contains unmatched camel-case parts
      +        if (/[A-Z]/.test(input.substring(matchEnd)))
      +            delta += 5;
      +        if (/[A-Z]/.test(input.substring(0, index)))
      +            delta += 5;
      +    }
      +    return leftBoundaryMatch + periferalMatch + (delta / 200);
      +
      +}
      +function doSearch(request, response) {
      +    var result = [];
      +    searchPattern = createSearchPattern(request.term);
      +    fallbackPattern = createSearchPattern(request.term.toLowerCase());
      +    if (searchPattern === "") {
      +        return this.close();
      +    }
      +    var camelCaseMatcher = createMatcher(searchPattern, "");
      +    var fallbackMatcher = new RegExp(fallbackPattern, "i");
      +
      +    function searchIndexWithMatcher(indexArray, matcher, category, nameFunc) {
      +        if (indexArray) {
      +            var newResults = [];
      +            $.each(indexArray, function (i, item) {
      +                item.category = category;
      +                var ranking = rankMatch(matcher.exec(nameFunc(item)), category);
      +                if (ranking < RANKING_THRESHOLD) {
      +                    newResults.push({ranking: ranking, item: item});
      +                }
      +                return newResults.length <= MAX_RESULTS;
      +            });
      +            return newResults.sort(function(e1, e2) {
      +                return e1.ranking - e2.ranking;
      +            }).map(function(e) {
      +                return e.item;
      +            });
      +        }
      +        return [];
      +    }
      +    function searchIndex(indexArray, category, nameFunc) {
      +        var primaryResults = searchIndexWithMatcher(indexArray, camelCaseMatcher, category, nameFunc);
      +        result = result.concat(primaryResults);
      +        if (primaryResults.length <= MIN_RESULTS && !camelCaseMatcher.ignoreCase) {
      +            var secondaryResults = searchIndexWithMatcher(indexArray, fallbackMatcher, category, nameFunc);
      +            result = result.concat(secondaryResults.filter(function (item) {
      +                return primaryResults.indexOf(item) === -1;
      +            }));
      +        }
      +    }
      +
      +    searchIndex(moduleSearchIndex, catModules, function(item) { return item.l; });
      +    searchIndex(packageSearchIndex, catPackages, function(item) {
      +        return (item.m && request.term.indexOf("/") > -1)
      +            ? (item.m + "/" + item.l) : item.l;
      +    });
      +    searchIndex(typeSearchIndex, catTypes, function(item) {
      +        return request.term.indexOf(".") > -1 ? item.p + "." + item.l : item.l;
      +    });
      +    searchIndex(memberSearchIndex, catMembers, function(item) {
      +        return request.term.indexOf(".") > -1
      +            ? item.p + "." + item.c + "." + item.l : item.l;
      +    });
      +    searchIndex(tagSearchIndex, catSearchTags, function(item) { return item.l; });
      +
      +    if (!indexFilesLoaded()) {
      +        updateSearchResults = function() {
      +            doSearch(request, response);
      +        }
      +        result.unshift(loading);
      +    } else {
      +        updateSearchResults = function() {};
      +    }
      +    response(result);
      +}
      +$(function() {
      +    $("#search-input").catcomplete({
      +        minLength: 1,
      +        delay: 300,
      +        source: doSearch,
      +        response: function(event, ui) {
      +            if (!ui.content.length) {
      +                ui.content.push(noResult);
      +            } else {
      +                $("#search-input").empty();
      +            }
      +        },
      +        autoFocus: true,
      +        focus: function(event, ui) {
      +            return false;
      +        },
      +        position: {
      +            collision: "flip"
      +        },
      +        select: function(event, ui) {
      +            if (ui.item.category) {
      +                var url = getURLPrefix(ui);
      +                if (ui.item.category === catModules) {
      +                    url += "module-summary.html";
      +                } else if (ui.item.category === catPackages) {
      +                    if (ui.item.u) {
      +                        url = ui.item.u;
      +                    } else {
      +                        url += ui.item.l.replace(/\./g, '/') + "/package-summary.html";
      +                    }
      +                } else if (ui.item.category === catTypes) {
      +                    if (ui.item.u) {
      +                        url = ui.item.u;
      +                    } else if (ui.item.p === UNNAMED) {
      +                        url += ui.item.l + ".html";
      +                    } else {
      +                        url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.l + ".html";
      +                    }
      +                } else if (ui.item.category === catMembers) {
      +                    if (ui.item.p === UNNAMED) {
      +                        url += ui.item.c + ".html" + "#";
      +                    } else {
      +                        url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.c + ".html" + "#";
      +                    }
      +                    if (ui.item.u) {
      +                        url += ui.item.u;
      +                    } else {
      +                        url += ui.item.l;
      +                    }
      +                } else if (ui.item.category === catSearchTags) {
      +                    url += ui.item.u;
      +                }
      +                if (top !== window) {
      +                    parent.classFrame.location = pathtoroot + url;
      +                } else {
      +                    window.location.href = pathtoroot + url;
      +                }
      +                $("#search-input").focus();
      +            }
      +        }
      +    });
      +});
      diff --git a/docs/site/testapidocs/src-html/javax/measure/spi/FormatServiceTest.html b/docs/site/testapidocs/src-html/javax/measure/spi/FormatServiceTest.html
      new file mode 100644
      index 00000000..444210e6
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/spi/FormatServiceTest.html
      @@ -0,0 +1,210 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.spi, class: FormatServiceTest">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.spi;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import org.junit.jupiter.api.Test;</span>
      +<span class="source-line-no">033</span><span id="line-33"></span>
      +<span class="source-line-no">034</span><span id="line-34">import static org.junit.jupiter.api.Assertions.*;</span>
      +<span class="source-line-no">035</span><span id="line-35">import static javax.measure.spi.FormatService.FormatType.UNIT_FORMAT;</span>
      +<span class="source-line-no">036</span><span id="line-36"></span>
      +<span class="source-line-no">037</span><span id="line-37">import java.util.HashMap;</span>
      +<span class="source-line-no">038</span><span id="line-38">import java.util.Map;</span>
      +<span class="source-line-no">039</span><span id="line-39">import java.util.Objects;</span>
      +<span class="source-line-no">040</span><span id="line-40">import java.util.Set;</span>
      +<span class="source-line-no">041</span><span id="line-41"></span>
      +<span class="source-line-no">042</span><span id="line-42">import javax.measure.format.QuantityFormat;</span>
      +<span class="source-line-no">043</span><span id="line-43">import javax.measure.format.UnitFormat;</span>
      +<span class="source-line-no">044</span><span id="line-44"></span>
      +<span class="source-line-no">045</span><span id="line-45">/**</span>
      +<span class="source-line-no">046</span><span id="line-46"> * Tests for {@link FormatService}.</span>
      +<span class="source-line-no">047</span><span id="line-47"> */</span>
      +<span class="source-line-no">048</span><span id="line-48">public class FormatServiceTest {</span>
      +<span class="source-line-no">049</span><span id="line-49"></span>
      +<span class="source-line-no">050</span><span id="line-50">    /**</span>
      +<span class="source-line-no">051</span><span id="line-51">     * Tests {@link ServiceProvider#current()} and {@link ServiceProvider#setCurrent(ServiceProvider)}. The getter and setter are tested in a single</span>
      +<span class="source-line-no">052</span><span id="line-52">     * method for avoiding issues with the order in which JUnit executes tests.</span>
      +<span class="source-line-no">053</span><span id="line-53">     */</span>
      +<span class="source-line-no">054</span><span id="line-54">    @Test</span>
      +<span class="source-line-no">055</span><span id="line-55">    public void testGetUnitFormats() {</span>
      +<span class="source-line-no">056</span><span id="line-56">        FormatService service = new TestFormatService();</span>
      +<span class="source-line-no">057</span><span id="line-57">        assertEquals(0, service.getAvailableFormatNames(UNIT_FORMAT).size());</span>
      +<span class="source-line-no">058</span><span id="line-58">    }</span>
      +<span class="source-line-no">059</span><span id="line-59"></span>
      +<span class="source-line-no">060</span><span id="line-60">    /**</span>
      +<span class="source-line-no">061</span><span id="line-61">     * Tests FormatService#FormatType.</span>
      +<span class="source-line-no">062</span><span id="line-62">     */</span>
      +<span class="source-line-no">063</span><span id="line-63">    @Test</span>
      +<span class="source-line-no">064</span><span id="line-64">    public void testTypes() {</span>
      +<span class="source-line-no">065</span><span id="line-65">        assertEquals(2, FormatService.FormatType.values().length);</span>
      +<span class="source-line-no">066</span><span id="line-66">    }</span>
      +<span class="source-line-no">067</span><span id="line-67"></span>
      +<span class="source-line-no">068</span><span id="line-68">    /**</span>
      +<span class="source-line-no">069</span><span id="line-69">     * Test format service.</span>
      +<span class="source-line-no">070</span><span id="line-70">     */</span>
      +<span class="source-line-no">071</span><span id="line-71">    private static final class TestFormatService implements FormatService {</span>
      +<span class="source-line-no">072</span><span id="line-72">        private final Map&lt;String, UnitFormat&gt; unitFormats = new HashMap&lt;&gt;();</span>
      +<span class="source-line-no">073</span><span id="line-73">        private final Map&lt;String, QuantityFormat&gt; quantityFormats = new HashMap&lt;&gt;();</span>
      +<span class="source-line-no">074</span><span id="line-74"></span>
      +<span class="source-line-no">075</span><span id="line-75">        /*</span>
      +<span class="source-line-no">076</span><span id="line-76">         * (non-Javadoc)</span>
      +<span class="source-line-no">077</span><span id="line-77">         *</span>
      +<span class="source-line-no">078</span><span id="line-78">         * @see UnitFormatService#getUnitFormat(String)</span>
      +<span class="source-line-no">079</span><span id="line-79">         */</span>
      +<span class="source-line-no">080</span><span id="line-80">        @Override</span>
      +<span class="source-line-no">081</span><span id="line-81">        public UnitFormat getUnitFormat(String formatName) {</span>
      +<span class="source-line-no">082</span><span id="line-82">            Objects.requireNonNull(formatName, "Format name required");</span>
      +<span class="source-line-no">083</span><span id="line-83">            return unitFormats.get(formatName);</span>
      +<span class="source-line-no">084</span><span id="line-84">        }</span>
      +<span class="source-line-no">085</span><span id="line-85">        </span>
      +<span class="source-line-no">086</span><span id="line-86">        /*</span>
      +<span class="source-line-no">087</span><span id="line-87">         * (non-Javadoc)</span>
      +<span class="source-line-no">088</span><span id="line-88">         *</span>
      +<span class="source-line-no">089</span><span id="line-89">         * @see UnitFormatService#getUnitFormat(String)</span>
      +<span class="source-line-no">090</span><span id="line-90">         */</span>
      +<span class="source-line-no">091</span><span id="line-91">        @Override</span>
      +<span class="source-line-no">092</span><span id="line-92">        public UnitFormat getUnitFormat(String formatName, String variant) {</span>
      +<span class="source-line-no">093</span><span id="line-93">            Objects.requireNonNull(formatName, "Format name required");</span>
      +<span class="source-line-no">094</span><span id="line-94">            return unitFormats.get(formatName);</span>
      +<span class="source-line-no">095</span><span id="line-95">        }</span>
      +<span class="source-line-no">096</span><span id="line-96"></span>
      +<span class="source-line-no">097</span><span id="line-97">        /*</span>
      +<span class="source-line-no">098</span><span id="line-98">         * (non-Javadoc)</span>
      +<span class="source-line-no">099</span><span id="line-99">         *</span>
      +<span class="source-line-no">100</span><span id="line-100">         * @see UnitFormatService#getUnitFormat()</span>
      +<span class="source-line-no">101</span><span id="line-101">         */</span>
      +<span class="source-line-no">102</span><span id="line-102">        @Override</span>
      +<span class="source-line-no">103</span><span id="line-103">        public UnitFormat getUnitFormat() {</span>
      +<span class="source-line-no">104</span><span id="line-104">            return getUnitFormat("");</span>
      +<span class="source-line-no">105</span><span id="line-105">        }</span>
      +<span class="source-line-no">106</span><span id="line-106"></span>
      +<span class="source-line-no">107</span><span id="line-107">        public Set&lt;String&gt; getAvailableFormatNames() {</span>
      +<span class="source-line-no">108</span><span id="line-108">            return getAvailableFormatNames(FormatType.UNIT_FORMAT);</span>
      +<span class="source-line-no">109</span><span id="line-109">        }</span>
      +<span class="source-line-no">110</span><span id="line-110"></span>
      +<span class="source-line-no">111</span><span id="line-111">        @Override</span>
      +<span class="source-line-no">112</span><span id="line-112">        public QuantityFormat getQuantityFormat() {</span>
      +<span class="source-line-no">113</span><span id="line-113">            return getQuantityFormat("");</span>
      +<span class="source-line-no">114</span><span id="line-114">        }</span>
      +<span class="source-line-no">115</span><span id="line-115"></span>
      +<span class="source-line-no">116</span><span id="line-116">        @Override</span>
      +<span class="source-line-no">117</span><span id="line-117">        public QuantityFormat getQuantityFormat(String name) {</span>
      +<span class="source-line-no">118</span><span id="line-118">            Objects.requireNonNull(name, "Format name required");</span>
      +<span class="source-line-no">119</span><span id="line-119">            return quantityFormats.get(name);</span>
      +<span class="source-line-no">120</span><span id="line-120">        }</span>
      +<span class="source-line-no">121</span><span id="line-121"></span>
      +<span class="source-line-no">122</span><span id="line-122">        @Override</span>
      +<span class="source-line-no">123</span><span id="line-123">        public Set&lt;String&gt; getAvailableFormatNames(FormatType type) {</span>
      +<span class="source-line-no">124</span><span id="line-124">            switch (type) {</span>
      +<span class="source-line-no">125</span><span id="line-125">                case QUANTITY_FORMAT:</span>
      +<span class="source-line-no">126</span><span id="line-126">                    return quantityFormats.keySet();</span>
      +<span class="source-line-no">127</span><span id="line-127">                default:</span>
      +<span class="source-line-no">128</span><span id="line-128">                    return unitFormats.keySet();</span>
      +<span class="source-line-no">129</span><span id="line-129">            }</span>
      +<span class="source-line-no">130</span><span id="line-130">        }</span>
      +<span class="source-line-no">131</span><span id="line-131">    }</span>
      +<span class="source-line-no">132</span><span id="line-132">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/spi/ServiceProviderTest.html b/docs/site/testapidocs/src-html/javax/measure/spi/ServiceProviderTest.html
      new file mode 100644
      index 00000000..61bfaacb
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/spi/ServiceProviderTest.html
      @@ -0,0 +1,254 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.spi, class: ServiceProviderTest">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.spi;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import jakarta.inject.Named;</span>
      +<span class="source-line-no">033</span><span id="line-33">import org.junit.jupiter.api.Test;</span>
      +<span class="source-line-no">034</span><span id="line-34"></span>
      +<span class="source-line-no">035</span><span id="line-35">import static org.junit.jupiter.api.Assertions.*;</span>
      +<span class="source-line-no">036</span><span id="line-36"></span>
      +<span class="source-line-no">037</span><span id="line-37">import java.util.Collection;</span>
      +<span class="source-line-no">038</span><span id="line-38"></span>
      +<span class="source-line-no">039</span><span id="line-39">import javax.measure.BinaryPrefix;</span>
      +<span class="source-line-no">040</span><span id="line-40">import javax.measure.MetricPrefix;</span>
      +<span class="source-line-no">041</span><span id="line-41">import javax.measure.Prefix;</span>
      +<span class="source-line-no">042</span><span id="line-42">import javax.measure.Quantity;</span>
      +<span class="source-line-no">043</span><span id="line-43"></span>
      +<span class="source-line-no">044</span><span id="line-44">/**</span>
      +<span class="source-line-no">045</span><span id="line-45"> * Tests for {@link ServiceProvider}.</span>
      +<span class="source-line-no">046</span><span id="line-46"> */</span>
      +<span class="source-line-no">047</span><span id="line-47">public class ServiceProviderTest {</span>
      +<span class="source-line-no">048</span><span id="line-48"></span>
      +<span class="source-line-no">049</span><span id="line-49">    @Test</span>
      +<span class="source-line-no">050</span><span id="line-50">    public void testSetCurrentNull() {</span>
      +<span class="source-line-no">051</span><span id="line-51">        assertThrows(NullPointerException.class, () -&gt; {</span>
      +<span class="source-line-no">052</span><span id="line-52">            ServiceProvider.setCurrent(null);</span>
      +<span class="source-line-no">053</span><span id="line-53">        });</span>
      +<span class="source-line-no">054</span><span id="line-54">    }</span>
      +<span class="source-line-no">055</span><span id="line-55"></span>
      +<span class="source-line-no">056</span><span id="line-56">    /**</span>
      +<span class="source-line-no">057</span><span id="line-57">     * Tests {@link ServiceProvider#current()} and {@link ServiceProvider#setCurrent(ServiceProvider)}. The getter and setter are tested in a single</span>
      +<span class="source-line-no">058</span><span id="line-58">     * method for avoiding issues with the order in which JUnit executes tests.</span>
      +<span class="source-line-no">059</span><span id="line-59">     */</span>
      +<span class="source-line-no">060</span><span id="line-60">    @Test</span>
      +<span class="source-line-no">061</span><span id="line-61">    public void testGetAndSetCurrent() {</span>
      +<span class="source-line-no">062</span><span id="line-62">        assertEquals(0, ServiceProvider.available().size());</span>
      +<span class="source-line-no">063</span><span id="line-63">        try {</span>
      +<span class="source-line-no">064</span><span id="line-64">            ServiceProvider.current();</span>
      +<span class="source-line-no">065</span><span id="line-65">            fail("Expected no ServiceProvider before we set one.");</span>
      +<span class="source-line-no">066</span><span id="line-66">        } catch (IllegalStateException e) {</span>
      +<span class="source-line-no">067</span><span id="line-67">            // This is the expected exception.</span>
      +<span class="source-line-no">068</span><span id="line-68">        }</span>
      +<span class="source-line-no">069</span><span id="line-69">        ServiceProvider testProv = new TestServiceProvider();</span>
      +<span class="source-line-no">070</span><span id="line-70">        assertNull(ServiceProvider.setCurrent(testProv), "Expected no ServiceProvider before we set one.");</span>
      +<span class="source-line-no">071</span><span id="line-71">        assertSame(testProv, ServiceProvider.setCurrent(testProv), "Setting the same ServiceProvider twice should be a no-op.");</span>
      +<span class="source-line-no">072</span><span id="line-72">        assertSame(testProv, ServiceProvider.current());</span>
      +<span class="source-line-no">073</span><span id="line-73">        assertArrayEquals(new ServiceProvider[] { testProv }, ServiceProvider.available().toArray());</span>
      +<span class="source-line-no">074</span><span id="line-74">        assertNotNull(ServiceProvider.of("Dummy ServiceProvider"));</span>
      +<span class="source-line-no">075</span><span id="line-75">    }</span>
      +<span class="source-line-no">076</span><span id="line-76"></span>
      +<span class="source-line-no">077</span><span id="line-77">    /**</span>
      +<span class="source-line-no">078</span><span id="line-78">     * Tests {@link ServiceProvider#getPriority()}.</span>
      +<span class="source-line-no">079</span><span id="line-79">     */</span>
      +<span class="source-line-no">080</span><span id="line-80">    @Test</span>
      +<span class="source-line-no">081</span><span id="line-81">    public void testPriority() {</span>
      +<span class="source-line-no">082</span><span id="line-82">        assertEquals(0, ServiceProvider.current().getPriority());</span>
      +<span class="source-line-no">083</span><span id="line-83">    }</span>
      +<span class="source-line-no">084</span><span id="line-84"></span>
      +<span class="source-line-no">085</span><span id="line-85">    /**</span>
      +<span class="source-line-no">086</span><span id="line-86">     * Tests ServiceProvider#of() by passing null.</span>
      +<span class="source-line-no">087</span><span id="line-87">     */</span>
      +<span class="source-line-no">088</span><span id="line-88">    @Test</span>
      +<span class="source-line-no">089</span><span id="line-89">    public void testOfNull() {</span>
      +<span class="source-line-no">090</span><span id="line-90">        assertThrows(NullPointerException.class, () -&gt; {</span>
      +<span class="source-line-no">091</span><span id="line-91">            @SuppressWarnings("unused")</span>
      +<span class="source-line-no">092</span><span id="line-92">            ServiceProvider dummy = ServiceProvider.of(null);</span>
      +<span class="source-line-no">093</span><span id="line-93">        });</span>
      +<span class="source-line-no">094</span><span id="line-94">    }</span>
      +<span class="source-line-no">095</span><span id="line-95"></span>
      +<span class="source-line-no">096</span><span id="line-96">    /**</span>
      +<span class="source-line-no">097</span><span id="line-97">     * Tests ServiceProvider#of() by passing a non-existing name.</span>
      +<span class="source-line-no">098</span><span id="line-98">     */</span>
      +<span class="source-line-no">099</span><span id="line-99">    @Test</span>
      +<span class="source-line-no">100</span><span id="line-100">    public void testOfNonExistent() {</span>
      +<span class="source-line-no">101</span><span id="line-101">        assertThrows(IllegalArgumentException.class, () -&gt; {</span>
      +<span class="source-line-no">102</span><span id="line-102">            @SuppressWarnings("unused")</span>
      +<span class="source-line-no">103</span><span id="line-103">            ServiceProvider dummy = ServiceProvider.of("ThisServiceProviderWillNeverExistHere");</span>
      +<span class="source-line-no">104</span><span id="line-104">        });</span>
      +<span class="source-line-no">105</span><span id="line-105">    }</span>
      +<span class="source-line-no">106</span><span id="line-106"></span>
      +<span class="source-line-no">107</span><span id="line-107">    @Test</span>
      +<span class="source-line-no">108</span><span id="line-108">    public void testGetMetricPrefixes() {</span>
      +<span class="source-line-no">109</span><span id="line-109">        final ServiceProvider testProv = new TestServiceProvider();</span>
      +<span class="source-line-no">110</span><span id="line-110">        final SystemOfUnitsService service = testProv.getSystemOfUnitsService();</span>
      +<span class="source-line-no">111</span><span id="line-111">        Collection&lt;MetricPrefix&gt; prefixes = service.getPrefixes(MetricPrefix.class);</span>
      +<span class="source-line-no">112</span><span id="line-112">        assertNotNull(prefixes);</span>
      +<span class="source-line-no">113</span><span id="line-113">        assertEquals(24, prefixes.size());</span>
      +<span class="source-line-no">114</span><span id="line-114">    }</span>
      +<span class="source-line-no">115</span><span id="line-115"></span>
      +<span class="source-line-no">116</span><span id="line-116">    @Test</span>
      +<span class="source-line-no">117</span><span id="line-117">    public void testGetBinaryPrefixes() {</span>
      +<span class="source-line-no">118</span><span id="line-118">        final ServiceProvider testProv = new TestServiceProvider();</span>
      +<span class="source-line-no">119</span><span id="line-119">        final SystemOfUnitsService service = testProv.getSystemOfUnitsService();</span>
      +<span class="source-line-no">120</span><span id="line-120">        assertNotNull(service);</span>
      +<span class="source-line-no">121</span><span id="line-121">        Collection&lt;BinaryPrefix&gt; prefixes = service.getPrefixes(BinaryPrefix.class);</span>
      +<span class="source-line-no">122</span><span id="line-122">        assertNotNull(prefixes);</span>
      +<span class="source-line-no">123</span><span id="line-123">        assertEquals(8, prefixes.size());</span>
      +<span class="source-line-no">124</span><span id="line-124">    }</span>
      +<span class="source-line-no">125</span><span id="line-125"></span>
      +<span class="source-line-no">126</span><span id="line-126">    @Test</span>
      +<span class="source-line-no">127</span><span id="line-127">    public void testWrongPrefixType() {</span>
      +<span class="source-line-no">128</span><span id="line-128">        final ServiceProvider testProv = new TestServiceProvider();</span>
      +<span class="source-line-no">129</span><span id="line-129">        final SystemOfUnitsService service = testProv.getSystemOfUnitsService();</span>
      +<span class="source-line-no">130</span><span id="line-130">        assertNotNull(service);</span>
      +<span class="source-line-no">131</span><span id="line-131">        assertThrows(ClassCastException.class, () -&gt; {</span>
      +<span class="source-line-no">132</span><span id="line-132">            @SuppressWarnings({ "unused", "rawtypes", "unchecked" })</span>
      +<span class="source-line-no">133</span><span id="line-133">            Collection&lt;Prefix&gt; prefixes = service.getPrefixes((Class) String.class);</span>
      +<span class="source-line-no">134</span><span id="line-134">        });</span>
      +<span class="source-line-no">135</span><span id="line-135"></span>
      +<span class="source-line-no">136</span><span id="line-136">    }</span>
      +<span class="source-line-no">137</span><span id="line-137"></span>
      +<span class="source-line-no">138</span><span id="line-138">    @Test</span>
      +<span class="source-line-no">139</span><span id="line-139">    public void testWrongEnumType() {</span>
      +<span class="source-line-no">140</span><span id="line-140">        final ServiceProvider testProv = new TestServiceProvider();</span>
      +<span class="source-line-no">141</span><span id="line-141">        final SystemOfUnitsService service = testProv.getSystemOfUnitsService();</span>
      +<span class="source-line-no">142</span><span id="line-142">        assertNotNull(service);</span>
      +<span class="source-line-no">143</span><span id="line-143">        assertThrows(ClassCastException.class, () -&gt; {</span>
      +<span class="source-line-no">144</span><span id="line-144">            @SuppressWarnings({ "unused", "rawtypes", "unchecked" })</span>
      +<span class="source-line-no">145</span><span id="line-145">            Collection&lt;Prefix&gt; prefixes = service.getPrefixes((Class) DummyEnum.class);</span>
      +<span class="source-line-no">146</span><span id="line-146">        });</span>
      +<span class="source-line-no">147</span><span id="line-147">    }</span>
      +<span class="source-line-no">148</span><span id="line-148"></span>
      +<span class="source-line-no">149</span><span id="line-149">    @Named("Dummy ServiceProvider")     // Intentionally use a name different than "TestServiceProvider".</span>
      +<span class="source-line-no">150</span><span id="line-150">    private static final class TestServiceProvider extends ServiceProvider {</span>
      +<span class="source-line-no">151</span><span id="line-151"></span>
      +<span class="source-line-no">152</span><span id="line-152">        @Override</span>
      +<span class="source-line-no">153</span><span id="line-153">        public SystemOfUnitsService getSystemOfUnitsService() {</span>
      +<span class="source-line-no">154</span><span id="line-154">            return new TestSystemOfUnitsService();</span>
      +<span class="source-line-no">155</span><span id="line-155">        }</span>
      +<span class="source-line-no">156</span><span id="line-156"></span>
      +<span class="source-line-no">157</span><span id="line-157">        @Override</span>
      +<span class="source-line-no">158</span><span id="line-158">        public &lt;Q extends Quantity&lt;Q&gt;&gt; QuantityFactory&lt;Q&gt; getQuantityFactory(Class&lt;Q&gt; quantity) {</span>
      +<span class="source-line-no">159</span><span id="line-159">            return null;</span>
      +<span class="source-line-no">160</span><span id="line-160">        }</span>
      +<span class="source-line-no">161</span><span id="line-161"></span>
      +<span class="source-line-no">162</span><span id="line-162">        @Override</span>
      +<span class="source-line-no">163</span><span id="line-163">        public FormatService getFormatService() {</span>
      +<span class="source-line-no">164</span><span id="line-164">            return null;</span>
      +<span class="source-line-no">165</span><span id="line-165">        }</span>
      +<span class="source-line-no">166</span><span id="line-166"></span>
      +<span class="source-line-no">167</span><span id="line-167">        @Override</span>
      +<span class="source-line-no">168</span><span id="line-168">        public String toString() {</span>
      +<span class="source-line-no">169</span><span id="line-169">            return "TestServiceProvider";</span>
      +<span class="source-line-no">170</span><span id="line-170">        }</span>
      +<span class="source-line-no">171</span><span id="line-171">    }</span>
      +<span class="source-line-no">172</span><span id="line-172"></span>
      +<span class="source-line-no">173</span><span id="line-173">    private static enum DummyEnum {</span>
      +<span class="source-line-no">174</span><span id="line-174">        A, B</span>
      +<span class="source-line-no">175</span><span id="line-175">    }</span>
      +<span class="source-line-no">176</span><span id="line-176">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/BinaryPrefixTest.html b/docs/site/testapidocs/src-html/javax/measure/test/BinaryPrefixTest.html
      new file mode 100644
      index 00000000..e7aed9b4
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/BinaryPrefixTest.html
      @@ -0,0 +1,208 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test, class: BinaryPrefixTest">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import javax.measure.Quantity;</span>
      +<span class="source-line-no">033</span><span id="line-33">import javax.measure.Unit;</span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.quantity.Area;</span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.quantity.Length;</span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.quantity.Speed;</span>
      +<span class="source-line-no">037</span><span id="line-37">import javax.measure.quantity.Time;</span>
      +<span class="source-line-no">038</span><span id="line-38">import javax.measure.quantity.Volume;</span>
      +<span class="source-line-no">039</span><span id="line-39">import javax.measure.test.quantity.DistanceQuantity;</span>
      +<span class="source-line-no">040</span><span id="line-40">import javax.measure.test.quantity.TestQuantities;</span>
      +<span class="source-line-no">041</span><span id="line-41">import javax.measure.test.quantity.VolumeQuantity;</span>
      +<span class="source-line-no">042</span><span id="line-42"></span>
      +<span class="source-line-no">043</span><span id="line-43">import org.junit.jupiter.api.Test;</span>
      +<span class="source-line-no">044</span><span id="line-44"></span>
      +<span class="source-line-no">045</span><span id="line-45">import static org.junit.jupiter.api.Assertions.assertEquals;</span>
      +<span class="source-line-no">046</span><span id="line-46">import static org.junit.jupiter.api.Assertions.assertNotNull;</span>
      +<span class="source-line-no">047</span><span id="line-47">import static org.junit.jupiter.api.Assertions.assertNull;</span>
      +<span class="source-line-no">048</span><span id="line-48"></span>
      +<span class="source-line-no">049</span><span id="line-49">import static javax.measure.BinaryPrefix.*;</span>
      +<span class="source-line-no">050</span><span id="line-50">import static javax.measure.test.unit.AreaUnit.*;</span>
      +<span class="source-line-no">051</span><span id="line-51">import static javax.measure.test.unit.DistanceUnit.*;</span>
      +<span class="source-line-no">052</span><span id="line-52">import static javax.measure.test.unit.SpeedUnit.*;</span>
      +<span class="source-line-no">053</span><span id="line-53">import static javax.measure.test.unit.TimeUnit.*;</span>
      +<span class="source-line-no">054</span><span id="line-54">import static javax.measure.test.unit.VolumeUnit.*;</span>
      +<span class="source-line-no">055</span><span id="line-55"></span>
      +<span class="source-line-no">056</span><span id="line-56">public class BinaryPrefixTest {</span>
      +<span class="source-line-no">057</span><span id="line-57">    @Test</span>
      +<span class="source-line-no">058</span><span id="line-58">    public void testKibi() {</span>
      +<span class="source-line-no">059</span><span id="line-59">        final Quantity&lt;Length&gt; m1 = new DistanceQuantity(1, m);</span>
      +<span class="source-line-no">060</span><span id="line-60">        final Unit&lt;Length&gt; km = KIBI(m);</span>
      +<span class="source-line-no">061</span><span id="line-61">        assertEquals("Ki", KIBI.getSymbol());</span>
      +<span class="source-line-no">062</span><span id="line-62">        assertEquals("KIBI", KIBI.getName());</span>
      +<span class="source-line-no">063</span><span id="line-63">        assertEquals(1d, m1.getValue());</span>
      +<span class="source-line-no">064</span><span id="line-64">        assertEquals("m * 1024.0", km.toString());</span>
      +<span class="source-line-no">065</span><span id="line-65">        if (km instanceof TestUnit) {</span>
      +<span class="source-line-no">066</span><span id="line-66">            @SuppressWarnings("rawtypes")</span>
      +<span class="source-line-no">067</span><span id="line-67">            TestUnit testKm = (TestUnit) km;</span>
      +<span class="source-line-no">068</span><span id="line-68">            assertEquals(1024d, testKm.getMultFactor());</span>
      +<span class="source-line-no">069</span><span id="line-69">        }</span>
      +<span class="source-line-no">070</span><span id="line-70">    }</span>
      +<span class="source-line-no">071</span><span id="line-71"></span>
      +<span class="source-line-no">072</span><span id="line-72">    @Test</span>
      +<span class="source-line-no">073</span><span id="line-73">    public void testMebi() {</span>
      +<span class="source-line-no">074</span><span id="line-74">        assertEquals("Mi", MEBI.getSymbol());</span>
      +<span class="source-line-no">075</span><span id="line-75">        assertEquals("MEBI", MEBI.getName());</span>
      +<span class="source-line-no">076</span><span id="line-76">        Quantity&lt;Time&gt; t1 = TestQuantities.getQuantity(1.0, MEBI(s));</span>
      +<span class="source-line-no">077</span><span id="line-77">        assertNotNull(t1);</span>
      +<span class="source-line-no">078</span><span id="line-78">        assertEquals("1.0 s * 1048576.0", t1.toString());</span>
      +<span class="source-line-no">079</span><span id="line-79">    }</span>
      +<span class="source-line-no">080</span><span id="line-80"></span>
      +<span class="source-line-no">081</span><span id="line-81">    @Test</span>
      +<span class="source-line-no">082</span><span id="line-82">    public void testExbi() {</span>
      +<span class="source-line-no">083</span><span id="line-83">        Quantity&lt;Volume&gt; v1 = new VolumeQuantity(1.0, litre);</span>
      +<span class="source-line-no">084</span><span id="line-84">        assertEquals(1d, v1.getValue());</span>
      +<span class="source-line-no">085</span><span id="line-85">        assertEquals("litre * 0.001", v1.getUnit().toString());</span>
      +<span class="source-line-no">086</span><span id="line-86"></span>
      +<span class="source-line-no">087</span><span id="line-87">        Quantity&lt;Volume&gt; v2 = v1.to(EXBI(litre));</span>
      +<span class="source-line-no">088</span><span id="line-88">        assertNull(v2); // TODO temporary workaround</span>
      +<span class="source-line-no">089</span><span id="line-89">    }</span>
      +<span class="source-line-no">090</span><span id="line-90"></span>
      +<span class="source-line-no">091</span><span id="line-91">    @Test</span>
      +<span class="source-line-no">092</span><span id="line-92">    public void testGibi() {</span>
      +<span class="source-line-no">093</span><span id="line-93">        assertEquals("Gi", GIBI.getSymbol());</span>
      +<span class="source-line-no">094</span><span id="line-94">        Quantity&lt;Speed&gt; s1 = TestQuantities.getQuantity(1.0, GIBI(mph));</span>
      +<span class="source-line-no">095</span><span id="line-95">        assertNotNull(s1);</span>
      +<span class="source-line-no">096</span><span id="line-96">        assertEquals("1.0 2779789807058944", s1.toString());</span>
      +<span class="source-line-no">097</span><span id="line-97">    }</span>
      +<span class="source-line-no">098</span><span id="line-98"></span>
      +<span class="source-line-no">099</span><span id="line-99">    @Test</span>
      +<span class="source-line-no">100</span><span id="line-100">    public void testTebi() {</span>
      +<span class="source-line-no">101</span><span id="line-101">        assertEquals("Ti", TEBI.getSymbol());</span>
      +<span class="source-line-no">102</span><span id="line-102">        Quantity&lt;Volume&gt; v1 = TestQuantities.getQuantity(1.0, TEBI(litre));</span>
      +<span class="source-line-no">103</span><span id="line-103">        assertNotNull(v1);</span>
      +<span class="source-line-no">104</span><span id="line-104">        assertEquals("1.0 1099511627.776", v1.toString());</span>
      +<span class="source-line-no">105</span><span id="line-105">    }</span>
      +<span class="source-line-no">106</span><span id="line-106"></span>
      +<span class="source-line-no">107</span><span id="line-107">    @Test</span>
      +<span class="source-line-no">108</span><span id="line-108">    public void testPebi() {</span>
      +<span class="source-line-no">109</span><span id="line-109">        assertEquals("Pi", PEBI.getSymbol());</span>
      +<span class="source-line-no">110</span><span id="line-110">        Quantity&lt;Area&gt; a1 = TestQuantities.getQuantity(1.0, PEBI(acre));</span>
      +<span class="source-line-no">111</span><span id="line-111">        assertNotNull(a1);</span>
      +<span class="source-line-no">112</span><span id="line-112">        assertEquals("1.0 4556516922992099300", a1.toString());</span>
      +<span class="source-line-no">113</span><span id="line-113">    }</span>
      +<span class="source-line-no">114</span><span id="line-114"></span>
      +<span class="source-line-no">115</span><span id="line-115">    @Test</span>
      +<span class="source-line-no">116</span><span id="line-116">    public void testYobi() {</span>
      +<span class="source-line-no">117</span><span id="line-117">        assertEquals("Yi", YOBI.getSymbol());</span>
      +<span class="source-line-no">118</span><span id="line-118">        Quantity&lt;Area&gt; a1 = TestQuantities.getQuantity(1.0, YOBI(acre));</span>
      +<span class="source-line-no">119</span><span id="line-119">        assertNotNull(a1);</span>
      +<span class="source-line-no">120</span><span id="line-120">        assertEquals("1.0 4892522791980404000000000000", a1.toString());</span>
      +<span class="source-line-no">121</span><span id="line-121">    }</span>
      +<span class="source-line-no">122</span><span id="line-122"></span>
      +<span class="source-line-no">123</span><span id="line-123">    @Test</span>
      +<span class="source-line-no">124</span><span id="line-124">    public void testZebi() {</span>
      +<span class="source-line-no">125</span><span id="line-125">        assertEquals("Zi", ZEBI.getSymbol());</span>
      +<span class="source-line-no">126</span><span id="line-126">        Quantity&lt;Area&gt; a1 = TestQuantities.getQuantity(1.0, ZEBI(acre));</span>
      +<span class="source-line-no">127</span><span id="line-127">        assertNotNull(a1);</span>
      +<span class="source-line-no">128</span><span id="line-128">        assertEquals("1.0 4777854289043363500000000", a1.toString());</span>
      +<span class="source-line-no">129</span><span id="line-129">    }</span>
      +<span class="source-line-no">130</span><span id="line-130">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/CalcTripLength.html b/docs/site/testapidocs/src-html/javax/measure/test/CalcTripLength.html
      new file mode 100644
      index 00000000..e63df4d2
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/CalcTripLength.html
      @@ -0,0 +1,140 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test, class: CalcTripLength">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import java.util.LinkedList;</span>
      +<span class="source-line-no">033</span><span id="line-33"></span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.test.quantity.DistanceQuantity;</span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.test.unit.DistanceUnit;</span>
      +<span class="source-line-no">036</span><span id="line-36"></span>
      +<span class="source-line-no">037</span><span id="line-37">/**</span>
      +<span class="source-line-no">038</span><span id="line-38"> * @author paul.morrison</span>
      +<span class="source-line-no">039</span><span id="line-39"> */</span>
      +<span class="source-line-no">040</span><span id="line-40">public class CalcTripLength {</span>
      +<span class="source-line-no">041</span><span id="line-41"></span>
      +<span class="source-line-no">042</span><span id="line-42">    public static void main(String[] argv) {</span>
      +<span class="source-line-no">043</span><span id="line-43"></span>
      +<span class="source-line-no">044</span><span id="line-44">        final DistanceUnit klik = new DistanceUnit("kilometre", DistanceUnit.km, 1.0);</span>
      +<span class="source-line-no">045</span><span id="line-45"></span>
      +<span class="source-line-no">046</span><span id="line-46">        LinkedList&lt;TripLeg&gt; trip = new LinkedList&lt;TripLeg&gt;();</span>
      +<span class="source-line-no">047</span><span id="line-47">        trip.add(new TripLeg("YKK", "NYC", new DistanceQuantity(1200.0, klik)));</span>
      +<span class="source-line-no">048</span><span id="line-48">        trip.add(new TripLeg("NYC", "LAX", new DistanceQuantity(5000.0, DistanceUnit.km)));</span>
      +<span class="source-line-no">049</span><span id="line-49"></span>
      +<span class="source-line-no">050</span><span id="line-50">        DistanceQuantity totDist = new DistanceQuantity(0, klik);</span>
      +<span class="source-line-no">051</span><span id="line-51"></span>
      +<span class="source-line-no">052</span><span id="line-52">        for (TripLeg t : trip) {</span>
      +<span class="source-line-no">053</span><span id="line-53">            totDist = totDist.add(t.getDist());</span>
      +<span class="source-line-no">054</span><span id="line-54">        }</span>
      +<span class="source-line-no">055</span><span id="line-55"></span>
      +<span class="source-line-no">056</span><span id="line-56">        boolean b = totDist.eq(new DistanceQuantity(6200, klik));</span>
      +<span class="source-line-no">057</span><span id="line-57"></span>
      +<span class="source-line-no">058</span><span id="line-58">        System.out.println(totDist.showInUnits(klik, 2));</span>
      +<span class="source-line-no">059</span><span id="line-59">        System.out.println(b ? "true" : "false");</span>
      +<span class="source-line-no">060</span><span id="line-60"></span>
      +<span class="source-line-no">061</span><span id="line-61">    }</span>
      +<span class="source-line-no">062</span><span id="line-62">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/CircleInfo.html b/docs/site/testapidocs/src-html/javax/measure/test/CircleInfo.html
      new file mode 100644
      index 00000000..9676afb4
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/CircleInfo.html
      @@ -0,0 +1,126 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test, class: CircleInfo">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import javax.measure.test.quantity.AreaQuantity;</span>
      +<span class="source-line-no">033</span><span id="line-33">import javax.measure.test.quantity.DistanceQuantity;</span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.test.unit.DistanceUnit;</span>
      +<span class="source-line-no">035</span><span id="line-35"></span>
      +<span class="source-line-no">036</span><span id="line-36">public class CircleInfo {</span>
      +<span class="source-line-no">037</span><span id="line-37"></span>
      +<span class="source-line-no">038</span><span id="line-38">    public static void main(String[] args) {</span>
      +<span class="source-line-no">039</span><span id="line-39">        DistanceQuantity radius = new DistanceQuantity(30, DistanceUnit.cm);</span>
      +<span class="source-line-no">040</span><span id="line-40">        System.out.println("Radius = " + radius);</span>
      +<span class="source-line-no">041</span><span id="line-41">        double mult = 2 * Math.PI;</span>
      +<span class="source-line-no">042</span><span id="line-42">        DistanceQuantity circumference = radius.multiply(mult);</span>
      +<span class="source-line-no">043</span><span id="line-43">        System.out.println("Circumference = " + circumference);</span>
      +<span class="source-line-no">044</span><span id="line-44">        AreaQuantity area = (radius.multiply(radius)).multiply(Math.PI);</span>
      +<span class="source-line-no">045</span><span id="line-45">        System.out.println("Area = " + area);</span>
      +<span class="source-line-no">046</span><span id="line-46">    }</span>
      +<span class="source-line-no">047</span><span id="line-47"></span>
      +<span class="source-line-no">048</span><span id="line-48">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/Conversions.html b/docs/site/testapidocs/src-html/javax/measure/test/Conversions.html
      new file mode 100644
      index 00000000..0880f055
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/Conversions.html
      @@ -0,0 +1,125 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test, class: Conversions">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import javax.measure.test.quantity.DistanceQuantity;</span>
      +<span class="source-line-no">033</span><span id="line-33">import javax.measure.test.unit.DistanceUnit;</span>
      +<span class="source-line-no">034</span><span id="line-34"></span>
      +<span class="source-line-no">035</span><span id="line-35">public class Conversions {</span>
      +<span class="source-line-no">036</span><span id="line-36"></span>
      +<span class="source-line-no">037</span><span id="line-37">    public static void main(String[] args) {</span>
      +<span class="source-line-no">038</span><span id="line-38">        DistanceQuantity length = new DistanceQuantity(30, DistanceUnit.cm);</span>
      +<span class="source-line-no">039</span><span id="line-39">        System.out.println("Length = " + length);</span>
      +<span class="source-line-no">040</span><span id="line-40">        DistanceQuantity l1 = length.convert(DistanceUnit.m);</span>
      +<span class="source-line-no">041</span><span id="line-41">        System.out.println(l1);</span>
      +<span class="source-line-no">042</span><span id="line-42">        DistanceQuantity l2 = length.convert(DistanceUnit.km);</span>
      +<span class="source-line-no">043</span><span id="line-43">        System.out.println(l2);</span>
      +<span class="source-line-no">044</span><span id="line-44">        System.out.println(l2.showInUnits(DistanceUnit.cm, 2));</span>
      +<span class="source-line-no">045</span><span id="line-45">    }</span>
      +<span class="source-line-no">046</span><span id="line-46"></span>
      +<span class="source-line-no">047</span><span id="line-47">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/ConverterTest.html b/docs/site/testapidocs/src-html/javax/measure/test/ConverterTest.html
      new file mode 100644
      index 00000000..5b771f46
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/ConverterTest.html
      @@ -0,0 +1,135 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test, class: ConverterTest">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import static org.junit.jupiter.api.Assertions.*;</span>
      +<span class="source-line-no">033</span><span id="line-33"></span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.UnitConverter;</span>
      +<span class="source-line-no">035</span><span id="line-35"></span>
      +<span class="source-line-no">036</span><span id="line-36">import org.junit.jupiter.api.BeforeEach;</span>
      +<span class="source-line-no">037</span><span id="line-37">import org.junit.jupiter.api.Test;</span>
      +<span class="source-line-no">038</span><span id="line-38"></span>
      +<span class="source-line-no">039</span><span id="line-39">public class ConverterTest {</span>
      +<span class="source-line-no">040</span><span id="line-40">  private UnitConverter sut;</span>
      +<span class="source-line-no">041</span><span id="line-41"></span>
      +<span class="source-line-no">042</span><span id="line-42">  @BeforeEach</span>
      +<span class="source-line-no">043</span><span id="line-43">  public void init() {</span>
      +<span class="source-line-no">044</span><span id="line-44">    sut = TestConverter.IDENTITY;</span>
      +<span class="source-line-no">045</span><span id="line-45">  }</span>
      +<span class="source-line-no">046</span><span id="line-46"></span>
      +<span class="source-line-no">047</span><span id="line-47">  @Test</span>
      +<span class="source-line-no">048</span><span id="line-48">  public void testIdentity() {</span>
      +<span class="source-line-no">049</span><span id="line-49">    assertTrue(sut.isIdentity());</span>
      +<span class="source-line-no">050</span><span id="line-50">  }</span>
      +<span class="source-line-no">051</span><span id="line-51"></span>
      +<span class="source-line-no">052</span><span id="line-52">  @Test</span>
      +<span class="source-line-no">053</span><span id="line-53">  public void testLinear() {</span>
      +<span class="source-line-no">054</span><span id="line-54">    assertTrue(sut.isLinear());</span>
      +<span class="source-line-no">055</span><span id="line-55">  }</span>
      +<span class="source-line-no">056</span><span id="line-56"></span>
      +<span class="source-line-no">057</span><span id="line-57">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/DimensionTest.html b/docs/site/testapidocs/src-html/javax/measure/test/DimensionTest.html
      new file mode 100644
      index 00000000..75402beb
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/DimensionTest.html
      @@ -0,0 +1,162 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test, class: DimensionTest">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import static org.junit.jupiter.api.Assertions.*;</span>
      +<span class="source-line-no">033</span><span id="line-33"></span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.Dimension;</span>
      +<span class="source-line-no">035</span><span id="line-35">import org.junit.jupiter.api.BeforeEach;</span>
      +<span class="source-line-no">036</span><span id="line-36">import org.junit.jupiter.api.Test;</span>
      +<span class="source-line-no">037</span><span id="line-37"></span>
      +<span class="source-line-no">038</span><span id="line-38">public class DimensionTest {</span>
      +<span class="source-line-no">039</span><span id="line-39">    private Dimension sut;</span>
      +<span class="source-line-no">040</span><span id="line-40"></span>
      +<span class="source-line-no">041</span><span id="line-41">    @BeforeEach</span>
      +<span class="source-line-no">042</span><span id="line-42">    public void init() {</span>
      +<span class="source-line-no">043</span><span id="line-43">        sut = TestDimension.getInstance();</span>
      +<span class="source-line-no">044</span><span id="line-44">    }</span>
      +<span class="source-line-no">045</span><span id="line-45"></span>
      +<span class="source-line-no">046</span><span id="line-46">    @Test</span>
      +<span class="source-line-no">047</span><span id="line-47">    public void testGetInstance() {</span>
      +<span class="source-line-no">048</span><span id="line-48">        Dimension dim = TestDimension.getInstance();</span>
      +<span class="source-line-no">049</span><span id="line-49">        assertNotNull(dim);</span>
      +<span class="source-line-no">050</span><span id="line-50">    }</span>
      +<span class="source-line-no">051</span><span id="line-51"></span>
      +<span class="source-line-no">052</span><span id="line-52">    @Test</span>
      +<span class="source-line-no">053</span><span id="line-53">    public void testMultiply() {</span>
      +<span class="source-line-no">054</span><span id="line-54">        Dimension dim = TestDimension.getInstance();</span>
      +<span class="source-line-no">055</span><span id="line-55">        Dimension result = sut.multiply(dim);</span>
      +<span class="source-line-no">056</span><span id="line-56">        assertNotNull(result);</span>
      +<span class="source-line-no">057</span><span id="line-57">    }</span>
      +<span class="source-line-no">058</span><span id="line-58"></span>
      +<span class="source-line-no">059</span><span id="line-59">    @Test</span>
      +<span class="source-line-no">060</span><span id="line-60">    public void testDivide() {</span>
      +<span class="source-line-no">061</span><span id="line-61">        Dimension dim = TestDimension.getInstance();</span>
      +<span class="source-line-no">062</span><span id="line-62">        Dimension result = sut.divide(dim);</span>
      +<span class="source-line-no">063</span><span id="line-63">        assertNotNull(result);</span>
      +<span class="source-line-no">064</span><span id="line-64">    }</span>
      +<span class="source-line-no">065</span><span id="line-65"></span>
      +<span class="source-line-no">066</span><span id="line-66">    @Test</span>
      +<span class="source-line-no">067</span><span id="line-67">    public void testPow() {</span>
      +<span class="source-line-no">068</span><span id="line-68">        Dimension result = sut.pow(2);</span>
      +<span class="source-line-no">069</span><span id="line-69">        assertNotNull(result);</span>
      +<span class="source-line-no">070</span><span id="line-70">    }</span>
      +<span class="source-line-no">071</span><span id="line-71"></span>
      +<span class="source-line-no">072</span><span id="line-72">    @Test</span>
      +<span class="source-line-no">073</span><span id="line-73">    public void testRoot() {</span>
      +<span class="source-line-no">074</span><span id="line-74">        Dimension result = sut.root(2);</span>
      +<span class="source-line-no">075</span><span id="line-75">        assertNotNull(result);</span>
      +<span class="source-line-no">076</span><span id="line-76">    }</span>
      +<span class="source-line-no">077</span><span id="line-77"></span>
      +<span class="source-line-no">078</span><span id="line-78">    @Test</span>
      +<span class="source-line-no">079</span><span id="line-79">    public void testGetProductDimensions() {</span>
      +<span class="source-line-no">080</span><span id="line-80">        assertNotNull(sut.getBaseDimensions());</span>
      +<span class="source-line-no">081</span><span id="line-81">        assertEquals(1, sut.getBaseDimensions().size());</span>
      +<span class="source-line-no">082</span><span id="line-82">    }</span>
      +<span class="source-line-no">083</span><span id="line-83"></span>
      +<span class="source-line-no">084</span><span id="line-84">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/ExceptionsTest.html b/docs/site/testapidocs/src-html/javax/measure/test/ExceptionsTest.html
      new file mode 100644
      index 00000000..95fce4c7
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/ExceptionsTest.html
      @@ -0,0 +1,261 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test, class: ExceptionsTest">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import static org.junit.jupiter.api.Assertions.*;</span>
      +<span class="source-line-no">033</span><span id="line-33"></span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.IncommensurableException;</span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.MeasurementError;</span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.MeasurementException;</span>
      +<span class="source-line-no">037</span><span id="line-37">import javax.measure.UnconvertibleException;</span>
      +<span class="source-line-no">038</span><span id="line-38"></span>
      +<span class="source-line-no">039</span><span id="line-39">import org.junit.jupiter.api.Test;</span>
      +<span class="source-line-no">040</span><span id="line-40"></span>
      +<span class="source-line-no">041</span><span id="line-41">/**</span>
      +<span class="source-line-no">042</span><span id="line-42"> * @author &lt;a href="mailto:werner@uom.technology"&gt;Werner Keil&lt;/a&gt;</span>
      +<span class="source-line-no">043</span><span id="line-43"> * @version 2.0</span>
      +<span class="source-line-no">044</span><span id="line-44"> */</span>
      +<span class="source-line-no">045</span><span id="line-45">public class ExceptionsTest {</span>
      +<span class="source-line-no">046</span><span id="line-46"></span>
      +<span class="source-line-no">047</span><span id="line-47">    @SuppressWarnings("serial")</span>
      +<span class="source-line-no">048</span><span id="line-48">    static class TestException extends MeasurementException {</span>
      +<span class="source-line-no">049</span><span id="line-49">        TestException() {</span>
      +<span class="source-line-no">050</span><span id="line-50">            super();</span>
      +<span class="source-line-no">051</span><span id="line-51">        }</span>
      +<span class="source-line-no">052</span><span id="line-52">    }</span>
      +<span class="source-line-no">053</span><span id="line-53">    </span>
      +<span class="source-line-no">054</span><span id="line-54">    @Test</span>
      +<span class="source-line-no">055</span><span id="line-55">    public void testMeasurementException() {</span>
      +<span class="source-line-no">056</span><span id="line-56">        MeasurementException e = assertThrows(MeasurementException.class, () -&gt; {</span>
      +<span class="source-line-no">057</span><span id="line-57">            throw new TestException();</span>
      +<span class="source-line-no">058</span><span id="line-58">        });</span>
      +<span class="source-line-no">059</span><span id="line-59">        assertNull(e.getMessage());</span>
      +<span class="source-line-no">060</span><span id="line-60">        assertNull(e.getCause());</span>
      +<span class="source-line-no">061</span><span id="line-61">    }</span>
      +<span class="source-line-no">062</span><span id="line-62"></span>
      +<span class="source-line-no">063</span><span id="line-63">    @Test</span>
      +<span class="source-line-no">064</span><span id="line-64">    public void testMeasurementExceptionWithMessage() {</span>
      +<span class="source-line-no">065</span><span id="line-65">        MeasurementException e = assertThrows(MeasurementException.class, () -&gt; {</span>
      +<span class="source-line-no">066</span><span id="line-66">            throw new MeasurementException("error");</span>
      +<span class="source-line-no">067</span><span id="line-67">        });</span>
      +<span class="source-line-no">068</span><span id="line-68"></span>
      +<span class="source-line-no">069</span><span id="line-69">        assertEquals("error", e.getMessage());</span>
      +<span class="source-line-no">070</span><span id="line-70">        assertNull(e.getCause());</span>
      +<span class="source-line-no">071</span><span id="line-71">    }</span>
      +<span class="source-line-no">072</span><span id="line-72"></span>
      +<span class="source-line-no">073</span><span id="line-73">    @Test</span>
      +<span class="source-line-no">074</span><span id="line-74">    public void testMeasurementExceptionWithCause() {</span>
      +<span class="source-line-no">075</span><span id="line-75">        assertThrows(MeasurementException.class, () -&gt; {</span>
      +<span class="source-line-no">076</span><span id="line-76">            throw new MeasurementException(new IllegalArgumentException());</span>
      +<span class="source-line-no">077</span><span id="line-77">        });</span>
      +<span class="source-line-no">078</span><span id="line-78">    }</span>
      +<span class="source-line-no">079</span><span id="line-79"></span>
      +<span class="source-line-no">080</span><span id="line-80">    @Test</span>
      +<span class="source-line-no">081</span><span id="line-81">    public void testMeasurementExceptionWithMessageAndCause() {</span>
      +<span class="source-line-no">082</span><span id="line-82">        Exception cause = new IllegalStateException();</span>
      +<span class="source-line-no">083</span><span id="line-83">        MeasurementException e = assertThrows(MeasurementException.class, () -&gt; {</span>
      +<span class="source-line-no">084</span><span id="line-84">            throw new MeasurementException("state error", cause);</span>
      +<span class="source-line-no">085</span><span id="line-85">        });</span>
      +<span class="source-line-no">086</span><span id="line-86">        assertEquals("state error", e.getMessage());</span>
      +<span class="source-line-no">087</span><span id="line-87">        assertEquals(cause, e.getCause());</span>
      +<span class="source-line-no">088</span><span id="line-88">    }    </span>
      +<span class="source-line-no">089</span><span id="line-89"></span>
      +<span class="source-line-no">090</span><span id="line-90">    @Test</span>
      +<span class="source-line-no">091</span><span id="line-91">    public void testMeasurementError() {</span>
      +<span class="source-line-no">092</span><span id="line-92">        MeasurementError e = assertThrows(MeasurementError.class, () -&gt; {</span>
      +<span class="source-line-no">093</span><span id="line-93">            throw new MeasurementError();</span>
      +<span class="source-line-no">094</span><span id="line-94">        });</span>
      +<span class="source-line-no">095</span><span id="line-95"></span>
      +<span class="source-line-no">096</span><span id="line-96">        assertNull(e.getMessage());</span>
      +<span class="source-line-no">097</span><span id="line-97">        assertNull(e.getCause());</span>
      +<span class="source-line-no">098</span><span id="line-98">    }</span>
      +<span class="source-line-no">099</span><span id="line-99">    </span>
      +<span class="source-line-no">100</span><span id="line-100">    @Test</span>
      +<span class="source-line-no">101</span><span id="line-101">    public void testMeasurementErrorWithMessage() {</span>
      +<span class="source-line-no">102</span><span id="line-102">        MeasurementError e = assertThrows(MeasurementError.class, () -&gt; {</span>
      +<span class="source-line-no">103</span><span id="line-103">            throw new MeasurementError("error");</span>
      +<span class="source-line-no">104</span><span id="line-104">        });</span>
      +<span class="source-line-no">105</span><span id="line-105"></span>
      +<span class="source-line-no">106</span><span id="line-106">        assertEquals("error", e.getMessage());</span>
      +<span class="source-line-no">107</span><span id="line-107">        assertNull(e.getCause());</span>
      +<span class="source-line-no">108</span><span id="line-108">    }</span>
      +<span class="source-line-no">109</span><span id="line-109">    </span>
      +<span class="source-line-no">110</span><span id="line-110">    @Test</span>
      +<span class="source-line-no">111</span><span id="line-111">    public void testMeasurementErrorWithCause() {</span>
      +<span class="source-line-no">112</span><span id="line-112">        MeasurementError e = assertThrows(MeasurementError.class, () -&gt; {</span>
      +<span class="source-line-no">113</span><span id="line-113">            throw new MeasurementError(new TestException());</span>
      +<span class="source-line-no">114</span><span id="line-114">        });</span>
      +<span class="source-line-no">115</span><span id="line-115"></span>
      +<span class="source-line-no">116</span><span id="line-116">        assertNotNull(e.getMessage());</span>
      +<span class="source-line-no">117</span><span id="line-117">        assertEquals("javax.measure.test.ExceptionsTest$TestException", e.getMessage()); </span>
      +<span class="source-line-no">118</span><span id="line-118">        // Throwable stores the toString() of a cause</span>
      +<span class="source-line-no">119</span><span id="line-119">        assertNotNull(e.getCause());</span>
      +<span class="source-line-no">120</span><span id="line-120">    }</span>
      +<span class="source-line-no">121</span><span id="line-121">    </span>
      +<span class="source-line-no">122</span><span id="line-122">    @Test</span>
      +<span class="source-line-no">123</span><span id="line-123">    public void testMeasurementErrorWithMessageAndCause() {</span>
      +<span class="source-line-no">124</span><span id="line-124">        MeasurementError e = assertThrows(MeasurementError.class, () -&gt; {</span>
      +<span class="source-line-no">125</span><span id="line-125">            throw new MeasurementError("error", new TestException());</span>
      +<span class="source-line-no">126</span><span id="line-126">        });</span>
      +<span class="source-line-no">127</span><span id="line-127"></span>
      +<span class="source-line-no">128</span><span id="line-128">        assertNotNull(e.getMessage());</span>
      +<span class="source-line-no">129</span><span id="line-129">        assertEquals("error", e.getMessage()); </span>
      +<span class="source-line-no">130</span><span id="line-130">        assertNotNull(e.getCause());</span>
      +<span class="source-line-no">131</span><span id="line-131">    }</span>
      +<span class="source-line-no">132</span><span id="line-132"></span>
      +<span class="source-line-no">133</span><span id="line-133">    @Test</span>
      +<span class="source-line-no">134</span><span id="line-134">    public void testIncommensurableException() {</span>
      +<span class="source-line-no">135</span><span id="line-135">        IncommensurableException ie = new IncommensurableException("error");</span>
      +<span class="source-line-no">136</span><span id="line-136">        assertEquals("error", ie.getMessage());</span>
      +<span class="source-line-no">137</span><span id="line-137">        assertNull(ie.getCause());</span>
      +<span class="source-line-no">138</span><span id="line-138">    }</span>
      +<span class="source-line-no">139</span><span id="line-139"></span>
      +<span class="source-line-no">140</span><span id="line-140">    @Test</span>
      +<span class="source-line-no">141</span><span id="line-141">    public void testIncommensurableExceptionWithCause() {</span>
      +<span class="source-line-no">142</span><span id="line-142">        Exception cause = new IllegalArgumentException();</span>
      +<span class="source-line-no">143</span><span id="line-143">        IncommensurableException ie = new IncommensurableException(cause);</span>
      +<span class="source-line-no">144</span><span id="line-144">        assertEquals(cause, ie.getCause());</span>
      +<span class="source-line-no">145</span><span id="line-145">    }</span>
      +<span class="source-line-no">146</span><span id="line-146"></span>
      +<span class="source-line-no">147</span><span id="line-147">    @Test</span>
      +<span class="source-line-no">148</span><span id="line-148">    public void testIncommensurableExceptionWithMessageAndCause() {</span>
      +<span class="source-line-no">149</span><span id="line-149">        Exception cause = new IllegalArgumentException();</span>
      +<span class="source-line-no">150</span><span id="line-150">        IncommensurableException ie = new IncommensurableException("yet another error", cause);</span>
      +<span class="source-line-no">151</span><span id="line-151">        assertEquals("yet another error", ie.getMessage());</span>
      +<span class="source-line-no">152</span><span id="line-152">        assertEquals(cause, ie.getCause());</span>
      +<span class="source-line-no">153</span><span id="line-153">    }</span>
      +<span class="source-line-no">154</span><span id="line-154"></span>
      +<span class="source-line-no">155</span><span id="line-155">    @Test</span>
      +<span class="source-line-no">156</span><span id="line-156">    public void testUnconvertibleException() {</span>
      +<span class="source-line-no">157</span><span id="line-157">        UnconvertibleException e = assertThrows(UnconvertibleException.class, () -&gt; {</span>
      +<span class="source-line-no">158</span><span id="line-158">            throw new UnconvertibleException("error");</span>
      +<span class="source-line-no">159</span><span id="line-159">        });</span>
      +<span class="source-line-no">160</span><span id="line-160">        assertEquals("error", e.getMessage());</span>
      +<span class="source-line-no">161</span><span id="line-161">        assertNull(e.getCause());</span>
      +<span class="source-line-no">162</span><span id="line-162">    }</span>
      +<span class="source-line-no">163</span><span id="line-163"></span>
      +<span class="source-line-no">164</span><span id="line-164">    @Test</span>
      +<span class="source-line-no">165</span><span id="line-165">    public void testUnconvertibleExceptionWithCause() {</span>
      +<span class="source-line-no">166</span><span id="line-166">        assertThrows(UnconvertibleException.class, () -&gt; {</span>
      +<span class="source-line-no">167</span><span id="line-167">            Exception cause = new IllegalArgumentException();</span>
      +<span class="source-line-no">168</span><span id="line-168">            UnconvertibleException e = new UnconvertibleException(cause);</span>
      +<span class="source-line-no">169</span><span id="line-169">            assertEquals(cause, e.getCause());</span>
      +<span class="source-line-no">170</span><span id="line-170">            throw e;</span>
      +<span class="source-line-no">171</span><span id="line-171">        });</span>
      +<span class="source-line-no">172</span><span id="line-172">    }</span>
      +<span class="source-line-no">173</span><span id="line-173"></span>
      +<span class="source-line-no">174</span><span id="line-174">    @Test</span>
      +<span class="source-line-no">175</span><span id="line-175">    public void testUnconvertibleExceptionWithMessageAndCause() {</span>
      +<span class="source-line-no">176</span><span id="line-176">        Exception cause = new IllegalStateException();</span>
      +<span class="source-line-no">177</span><span id="line-177">        UnconvertibleException e = assertThrows(UnconvertibleException.class, () -&gt; {</span>
      +<span class="source-line-no">178</span><span id="line-178">            throw new UnconvertibleException("state error", cause);</span>
      +<span class="source-line-no">179</span><span id="line-179">        });</span>
      +<span class="source-line-no">180</span><span id="line-180">        assertEquals("state error", e.getMessage());</span>
      +<span class="source-line-no">181</span><span id="line-181">        assertEquals(cause, e.getCause());</span>
      +<span class="source-line-no">182</span><span id="line-182">    }</span>
      +<span class="source-line-no">183</span><span id="line-183">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/MetricPrefixTest.html b/docs/site/testapidocs/src-html/javax/measure/test/MetricPrefixTest.html
      new file mode 100644
      index 00000000..7d2da0a2
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/MetricPrefixTest.html
      @@ -0,0 +1,352 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test, class: MetricPrefixTest">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import javax.measure.Quantity;</span>
      +<span class="source-line-no">033</span><span id="line-33">import javax.measure.Unit;</span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.quantity.Area;</span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.quantity.Length;</span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.quantity.Mass;</span>
      +<span class="source-line-no">037</span><span id="line-37">import javax.measure.quantity.Speed;</span>
      +<span class="source-line-no">038</span><span id="line-38">import javax.measure.quantity.Time;</span>
      +<span class="source-line-no">039</span><span id="line-39">import javax.measure.quantity.Volume;</span>
      +<span class="source-line-no">040</span><span id="line-40">import javax.measure.test.quantity.DistanceQuantity;</span>
      +<span class="source-line-no">041</span><span id="line-41">import javax.measure.test.quantity.TestQuantities;</span>
      +<span class="source-line-no">042</span><span id="line-42">import javax.measure.test.quantity.VolumeQuantity;</span>
      +<span class="source-line-no">043</span><span id="line-43"></span>
      +<span class="source-line-no">044</span><span id="line-44">import org.junit.jupiter.api.Test;</span>
      +<span class="source-line-no">045</span><span id="line-45"></span>
      +<span class="source-line-no">046</span><span id="line-46">import static org.junit.jupiter.api.Assertions.assertEquals;</span>
      +<span class="source-line-no">047</span><span id="line-47">import static org.junit.jupiter.api.Assertions.assertNull;</span>
      +<span class="source-line-no">048</span><span id="line-48"></span>
      +<span class="source-line-no">049</span><span id="line-49">import static javax.measure.MetricPrefix.*;</span>
      +<span class="source-line-no">050</span><span id="line-50">import static javax.measure.test.unit.AreaUnit.*;</span>
      +<span class="source-line-no">051</span><span id="line-51">import static javax.measure.test.unit.DistanceUnit.*;</span>
      +<span class="source-line-no">052</span><span id="line-52">import static javax.measure.test.unit.MassUnit.*;</span>
      +<span class="source-line-no">053</span><span id="line-53">import static javax.measure.test.unit.SpeedUnit.*;</span>
      +<span class="source-line-no">054</span><span id="line-54">import static javax.measure.test.unit.TimeUnit.*;</span>
      +<span class="source-line-no">055</span><span id="line-55">import static javax.measure.test.unit.VolumeUnit.*;</span>
      +<span class="source-line-no">056</span><span id="line-56"></span>
      +<span class="source-line-no">057</span><span id="line-57">/**</span>
      +<span class="source-line-no">058</span><span id="line-58"> * JUnit tests for the 24 prefixes used in the metric system (decimal multiples and submultiples of units).</span>
      +<span class="source-line-no">059</span><span id="line-59"> * </span>
      +<span class="source-line-no">060</span><span id="line-60"> * @author &lt;a href="mailto:werner@units.tech"&gt;Werner Keil&lt;/a&gt;</span>
      +<span class="source-line-no">061</span><span id="line-61"> * @version 2.2, May 9, 2023</span>
      +<span class="source-line-no">062</span><span id="line-62"> * @since 2.0</span>
      +<span class="source-line-no">063</span><span id="line-63"> */</span>
      +<span class="source-line-no">064</span><span id="line-64">public class MetricPrefixTest {</span>
      +<span class="source-line-no">065</span><span id="line-65">    @Test</span>
      +<span class="source-line-no">066</span><span id="line-66">    public void testAtto() {</span>
      +<span class="source-line-no">067</span><span id="line-67">        assertEquals("a", ATTO.getSymbol());</span>
      +<span class="source-line-no">068</span><span id="line-68">        assertEquals("ATTO", ATTO.getName());</span>
      +<span class="source-line-no">069</span><span id="line-69">        Quantity&lt;Time&gt; t1 = TestQuantities.getQuantity(1.0, ATTO(min));</span>
      +<span class="source-line-no">070</span><span id="line-70">        assertEquals("min * 0.000000000000000060", t1.getUnit().toString());</span>
      +<span class="source-line-no">071</span><span id="line-71">    }</span>
      +<span class="source-line-no">072</span><span id="line-72"></span>
      +<span class="source-line-no">073</span><span id="line-73">    @Test</span>
      +<span class="source-line-no">074</span><span id="line-74">    public void testCenti() {</span>
      +<span class="source-line-no">075</span><span id="line-75">        assertEquals("c", CENTI.getSymbol());</span>
      +<span class="source-line-no">076</span><span id="line-76">        assertEquals("CENTI", CENTI.getName());</span>
      +<span class="source-line-no">077</span><span id="line-77">        Quantity&lt;Length&gt; l1 = TestQuantities.getQuantity(1.0, CENTI(m));</span>
      +<span class="source-line-no">078</span><span id="line-78">        assertEquals("m * 0.01", l1.getUnit().toString());</span>
      +<span class="source-line-no">079</span><span id="line-79">    }</span>
      +<span class="source-line-no">080</span><span id="line-80"></span>
      +<span class="source-line-no">081</span><span id="line-81">    @Test</span>
      +<span class="source-line-no">082</span><span id="line-82">    public void testDeci() {</span>
      +<span class="source-line-no">083</span><span id="line-83">        Quantity&lt;Volume&gt; m1 = new VolumeQuantity(1.0, litre);</span>
      +<span class="source-line-no">084</span><span id="line-84">        assertEquals(1d, m1.getValue());</span>
      +<span class="source-line-no">085</span><span id="line-85">        assertEquals("litre * 0.001", m1.getUnit().toString());</span>
      +<span class="source-line-no">086</span><span id="line-86"></span>
      +<span class="source-line-no">087</span><span id="line-87">        Quantity&lt;Volume&gt; m2 = m1.to(DECI(litre));</span>
      +<span class="source-line-no">088</span><span id="line-88">        assertNull(m2); // TODO temporary workaround</span>
      +<span class="source-line-no">089</span><span id="line-89">    }</span>
      +<span class="source-line-no">090</span><span id="line-90"></span>
      +<span class="source-line-no">091</span><span id="line-91">    @Test</span>
      +<span class="source-line-no">092</span><span id="line-92">    public void testDeca() {</span>
      +<span class="source-line-no">093</span><span id="line-93">        assertEquals("da", DECA.getSymbol());</span>
      +<span class="source-line-no">094</span><span id="line-94">        Quantity&lt;Volume&gt; v1 = TestQuantities.getQuantity(1.0, DECA(litre));</span>
      +<span class="source-line-no">095</span><span id="line-95">        assertEquals("0.01", v1.getUnit().toString());</span>
      +<span class="source-line-no">096</span><span id="line-96">    }</span>
      +<span class="source-line-no">097</span><span id="line-97">    </span>
      +<span class="source-line-no">098</span><span id="line-98">    @Test</span>
      +<span class="source-line-no">099</span><span id="line-99">    public void testDeka() {</span>
      +<span class="source-line-no">100</span><span id="line-100">        assertEquals("da", DECA.getSymbol());</span>
      +<span class="source-line-no">101</span><span id="line-101">        Quantity&lt;Volume&gt; v1 = TestQuantities.getQuantity(1.0, DEKA(litre));</span>
      +<span class="source-line-no">102</span><span id="line-102">        assertEquals("0.01", v1.getUnit().toString());</span>
      +<span class="source-line-no">103</span><span id="line-103">    }</span>
      +<span class="source-line-no">104</span><span id="line-104"></span>
      +<span class="source-line-no">105</span><span id="line-105">    @Test</span>
      +<span class="source-line-no">106</span><span id="line-106">    public void testExa() {</span>
      +<span class="source-line-no">107</span><span id="line-107">        assertEquals("E", EXA.getSymbol());</span>
      +<span class="source-line-no">108</span><span id="line-108">        Quantity&lt;Length&gt; l1 = TestQuantities.getQuantity(1.0, EXA(m));</span>
      +<span class="source-line-no">109</span><span id="line-109">        assertEquals("m * 1000000000000000000", l1.getUnit().toString());</span>
      +<span class="source-line-no">110</span><span id="line-110">    }</span>
      +<span class="source-line-no">111</span><span id="line-111"></span>
      +<span class="source-line-no">112</span><span id="line-112">    @Test</span>
      +<span class="source-line-no">113</span><span id="line-113">    public void testFemto() {</span>
      +<span class="source-line-no">114</span><span id="line-114">        assertEquals("f", FEMTO.getSymbol());</span>
      +<span class="source-line-no">115</span><span id="line-115">        Quantity&lt;Time&gt; t1 = TestQuantities.getQuantity(1.0, FEMTO(s));</span>
      +<span class="source-line-no">116</span><span id="line-116">        assertEquals("s * 0.0000000000000010", t1.getUnit().toString());</span>
      +<span class="source-line-no">117</span><span id="line-117">    }</span>
      +<span class="source-line-no">118</span><span id="line-118"></span>
      +<span class="source-line-no">119</span><span id="line-119">    @Test</span>
      +<span class="source-line-no">120</span><span id="line-120">    public void testGiga() {</span>
      +<span class="source-line-no">121</span><span id="line-121">        assertEquals("G", GIGA.getSymbol());</span>
      +<span class="source-line-no">122</span><span id="line-122">        Quantity&lt;Area&gt; a1 = TestQuantities.getQuantity(1.0, GIGA(acre));</span>
      +<span class="source-line-no">123</span><span id="line-123">        assertEquals("4047000000000", a1.getUnit().toString());</span>
      +<span class="source-line-no">124</span><span id="line-124">    }</span>
      +<span class="source-line-no">125</span><span id="line-125"></span>
      +<span class="source-line-no">126</span><span id="line-126">    @Test</span>
      +<span class="source-line-no">127</span><span id="line-127">    public void testHecto() {</span>
      +<span class="source-line-no">128</span><span id="line-128">        assertEquals("h", HECTO.getSymbol());</span>
      +<span class="source-line-no">129</span><span id="line-129">        Quantity&lt;Volume&gt; v1 = TestQuantities.getQuantity(1.0, HECTO(litre));</span>
      +<span class="source-line-no">130</span><span id="line-130">        assertEquals("0.1", v1.getUnit().toString());</span>
      +<span class="source-line-no">131</span><span id="line-131">    }</span>
      +<span class="source-line-no">132</span><span id="line-132"></span>
      +<span class="source-line-no">133</span><span id="line-133">    @Test</span>
      +<span class="source-line-no">134</span><span id="line-134">    public void testKilo() {</span>
      +<span class="source-line-no">135</span><span id="line-135">        final Quantity&lt;Length&gt; m1 = new DistanceQuantity(1, m);</span>
      +<span class="source-line-no">136</span><span id="line-136">        final Unit&lt;Length&gt; km = KILO(m);</span>
      +<span class="source-line-no">137</span><span id="line-137">        assertEquals("k", KILO.getSymbol());</span>
      +<span class="source-line-no">138</span><span id="line-138">        assertEquals(1d, m1.getValue());</span>
      +<span class="source-line-no">139</span><span id="line-139">        assertEquals("m * 1000.0", km.toString());</span>
      +<span class="source-line-no">140</span><span id="line-140">        if (km instanceof TestUnit) {</span>
      +<span class="source-line-no">141</span><span id="line-141">            @SuppressWarnings("rawtypes")</span>
      +<span class="source-line-no">142</span><span id="line-142">            final TestUnit testKm = (TestUnit) km;</span>
      +<span class="source-line-no">143</span><span id="line-143">            assertEquals(1000d, testKm.getMultFactor());</span>
      +<span class="source-line-no">144</span><span id="line-144">        }</span>
      +<span class="source-line-no">145</span><span id="line-145">    }</span>
      +<span class="source-line-no">146</span><span id="line-146"></span>
      +<span class="source-line-no">147</span><span id="line-147">    @Test</span>
      +<span class="source-line-no">148</span><span id="line-148">    public void testMega() {</span>
      +<span class="source-line-no">149</span><span id="line-149">        assertEquals("M", MEGA.getSymbol());</span>
      +<span class="source-line-no">150</span><span id="line-150">        Quantity&lt;Volume&gt; v1 = TestQuantities.getQuantity(1.0, MEGA(litre));</span>
      +<span class="source-line-no">151</span><span id="line-151">        assertEquals("1000.0", v1.getUnit().toString());</span>
      +<span class="source-line-no">152</span><span id="line-152">    }</span>
      +<span class="source-line-no">153</span><span id="line-153"></span>
      +<span class="source-line-no">154</span><span id="line-154">    @Test</span>
      +<span class="source-line-no">155</span><span id="line-155">    public void testMilli() {</span>
      +<span class="source-line-no">156</span><span id="line-156">        Quantity&lt;Volume&gt; m1 = TestQuantities.getQuantity(10, MILLI(litre));</span>
      +<span class="source-line-no">157</span><span id="line-157">        assertEquals(10d, m1.getValue());</span>
      +<span class="source-line-no">158</span><span id="line-158">        assertEquals("0.0000010", m1.getUnit().toString());</span>
      +<span class="source-line-no">159</span><span id="line-159">    }</span>
      +<span class="source-line-no">160</span><span id="line-160"></span>
      +<span class="source-line-no">161</span><span id="line-161">    @Test</span>
      +<span class="source-line-no">162</span><span id="line-162">    public void testMicro() {</span>
      +<span class="source-line-no">163</span><span id="line-163">        assertEquals("\\u00b5", toUnicode(MICRO.getSymbol().charAt(0)));</span>
      +<span class="source-line-no">164</span><span id="line-164">        assertEquals("\u00b5", MICRO.getSymbol());</span>
      +<span class="source-line-no">165</span><span id="line-165">        Quantity&lt;Length&gt; m1 = TestQuantities.getQuantity(1.0, m);</span>
      +<span class="source-line-no">166</span><span id="line-166">        assertEquals(1d, m1.getValue());</span>
      +<span class="source-line-no">167</span><span id="line-167">        assertEquals("m", m1.getUnit().getSymbol());</span>
      +<span class="source-line-no">168</span><span id="line-168"></span>
      +<span class="source-line-no">169</span><span id="line-169">        Quantity&lt;Length&gt; m2 = m1.to(MICRO(m));</span>
      +<span class="source-line-no">170</span><span id="line-170">        assertNull(m2); // the unit model in the test implementation is only partial, hence null here</span>
      +<span class="source-line-no">171</span><span id="line-171">    }</span>
      +<span class="source-line-no">172</span><span id="line-172"></span>
      +<span class="source-line-no">173</span><span id="line-173">    @Test</span>
      +<span class="source-line-no">174</span><span id="line-174">    public void testNano() {</span>
      +<span class="source-line-no">175</span><span id="line-175">        Quantity&lt;Length&gt; m1 = TestQuantities.getQuantity(1.0, m);</span>
      +<span class="source-line-no">176</span><span id="line-176">        assertEquals(1d, m1.getValue());</span>
      +<span class="source-line-no">177</span><span id="line-177">        assertEquals("m", m1.getUnit().getSymbol());</span>
      +<span class="source-line-no">178</span><span id="line-178"></span>
      +<span class="source-line-no">179</span><span id="line-179">        Quantity&lt;Length&gt; m2 = m1.to(NANO(m));</span>
      +<span class="source-line-no">180</span><span id="line-180">        assertNull(m2); // the unit model in the test implementation is only partial, hence null here</span>
      +<span class="source-line-no">181</span><span id="line-181">    }</span>
      +<span class="source-line-no">182</span><span id="line-182"></span>
      +<span class="source-line-no">183</span><span id="line-183">    @Test</span>
      +<span class="source-line-no">184</span><span id="line-184">    public void testPeta() {</span>
      +<span class="source-line-no">185</span><span id="line-185">        assertEquals("P", PETA.getSymbol());</span>
      +<span class="source-line-no">186</span><span id="line-186">        Quantity&lt;Speed&gt; s1 = TestQuantities.getQuantity(10, PETA(kmh));</span>
      +<span class="source-line-no">187</span><span id="line-187">        assertEquals(10d, s1.getValue());</span>
      +<span class="source-line-no">188</span><span id="line-188">        assertEquals("1000000000000000", s1.getUnit().toString());</span>
      +<span class="source-line-no">189</span><span id="line-189">    }</span>
      +<span class="source-line-no">190</span><span id="line-190"></span>
      +<span class="source-line-no">191</span><span id="line-191">    @Test</span>
      +<span class="source-line-no">192</span><span id="line-192">    public void testPico() {</span>
      +<span class="source-line-no">193</span><span id="line-193">        assertEquals("p", PICO.getSymbol());</span>
      +<span class="source-line-no">194</span><span id="line-194">        Quantity&lt;Volume&gt; v1 = TestQuantities.getQuantity(10, PICO(litre));</span>
      +<span class="source-line-no">195</span><span id="line-195">        assertEquals(10d, v1.getValue());</span>
      +<span class="source-line-no">196</span><span id="line-196">        assertEquals("0.0000000000000010", v1.getUnit().toString());</span>
      +<span class="source-line-no">197</span><span id="line-197">    }</span>
      +<span class="source-line-no">198</span><span id="line-198"></span>
      +<span class="source-line-no">199</span><span id="line-199">    @Test</span>
      +<span class="source-line-no">200</span><span id="line-200">    public void testTera() {</span>
      +<span class="source-line-no">201</span><span id="line-201">        assertEquals("T", TERA.getSymbol());</span>
      +<span class="source-line-no">202</span><span id="line-202">        Quantity&lt;Length&gt; l1 = TestQuantities.getQuantity(10, TERA(m));</span>
      +<span class="source-line-no">203</span><span id="line-203">        assertEquals(10d, l1.getValue());</span>
      +<span class="source-line-no">204</span><span id="line-204">        assertEquals("m * 1000000000000", l1.getUnit().toString());</span>
      +<span class="source-line-no">205</span><span id="line-205">    }</span>
      +<span class="source-line-no">206</span><span id="line-206"></span>
      +<span class="source-line-no">207</span><span id="line-207">    @Test</span>
      +<span class="source-line-no">208</span><span id="line-208">    public void testYocto() {</span>
      +<span class="source-line-no">209</span><span id="line-209">        assertEquals("y", YOCTO.getSymbol());</span>
      +<span class="source-line-no">210</span><span id="line-210">        Quantity&lt;Volume&gt; v1 = TestQuantities.getQuantity(10, YOCTO(litre));</span>
      +<span class="source-line-no">211</span><span id="line-211">        assertEquals(10d, v1.getValue());</span>
      +<span class="source-line-no">212</span><span id="line-212">        assertEquals("0.000000000000000000000000001", v1.getUnit().toString());        </span>
      +<span class="source-line-no">213</span><span id="line-213">    }</span>
      +<span class="source-line-no">214</span><span id="line-214"></span>
      +<span class="source-line-no">215</span><span id="line-215">    @Test</span>
      +<span class="source-line-no">216</span><span id="line-216">    public void testYotta() {</span>
      +<span class="source-line-no">217</span><span id="line-217">        assertEquals("Y", YOTTA.getSymbol());</span>
      +<span class="source-line-no">218</span><span id="line-218">        Quantity&lt;Area&gt; a1 = TestQuantities.getQuantity(10, YOTTA(sqmetre));</span>
      +<span class="source-line-no">219</span><span id="line-219">        assertEquals(10d, a1.getValue());</span>
      +<span class="source-line-no">220</span><span id="line-220">        assertEquals("1000000000000000000000000", a1.getUnit().toString());</span>
      +<span class="source-line-no">221</span><span id="line-221">    }</span>
      +<span class="source-line-no">222</span><span id="line-222"></span>
      +<span class="source-line-no">223</span><span id="line-223">    @Test</span>
      +<span class="source-line-no">224</span><span id="line-224">    public void testZepto() {</span>
      +<span class="source-line-no">225</span><span id="line-225">        assertEquals("z", ZEPTO.getSymbol());</span>
      +<span class="source-line-no">226</span><span id="line-226">        Quantity&lt;Time&gt; t1 = TestQuantities.getQuantity(10, ZEPTO(s));</span>
      +<span class="source-line-no">227</span><span id="line-227">        assertEquals(10d, t1.getValue());</span>
      +<span class="source-line-no">228</span><span id="line-228">        assertEquals("s * 0.000000000000000000001", t1.getUnit().toString());</span>
      +<span class="source-line-no">229</span><span id="line-229">    }</span>
      +<span class="source-line-no">230</span><span id="line-230"></span>
      +<span class="source-line-no">231</span><span id="line-231">    @Test</span>
      +<span class="source-line-no">232</span><span id="line-232">    public void testZetta() {</span>
      +<span class="source-line-no">233</span><span id="line-233">        assertEquals("Z", ZETTA.getSymbol());</span>
      +<span class="source-line-no">234</span><span id="line-234">        Quantity&lt;Length&gt; l1 = TestQuantities.getQuantity(10, ZETTA(m));</span>
      +<span class="source-line-no">235</span><span id="line-235">        assertEquals(10d, l1.getValue());</span>
      +<span class="source-line-no">236</span><span id="line-236">        assertEquals("m * 1000000000000000000000", l1.getUnit().toString());</span>
      +<span class="source-line-no">237</span><span id="line-237">    }</span>
      +<span class="source-line-no">238</span><span id="line-238"></span>
      +<span class="source-line-no">239</span><span id="line-239">    @Test</span>
      +<span class="source-line-no">240</span><span id="line-240">    public void testRonna() {</span>
      +<span class="source-line-no">241</span><span id="line-241">        assertEquals("R", RONNA.getSymbol());</span>
      +<span class="source-line-no">242</span><span id="line-242">        Quantity&lt;Length&gt; l1 = TestQuantities.getQuantity(10, RONNA(m));</span>
      +<span class="source-line-no">243</span><span id="line-243">        assertEquals(10d, l1.getValue());</span>
      +<span class="source-line-no">244</span><span id="line-244">        assertEquals("m * 1000000000000000000000000000", l1.getUnit().toString());</span>
      +<span class="source-line-no">245</span><span id="line-245">    }</span>
      +<span class="source-line-no">246</span><span id="line-246"></span>
      +<span class="source-line-no">247</span><span id="line-247">    @Test</span>
      +<span class="source-line-no">248</span><span id="line-248">    public void testRonto() {</span>
      +<span class="source-line-no">249</span><span id="line-249">        assertEquals("r", RONTO.getSymbol());</span>
      +<span class="source-line-no">250</span><span id="line-250">        Quantity&lt;Length&gt; l1 = TestQuantities.getQuantity(1, RONTO(m));</span>
      +<span class="source-line-no">251</span><span id="line-251">        assertEquals(1d, l1.getValue());</span>
      +<span class="source-line-no">252</span><span id="line-252">        assertEquals("m * 0.000000000000000000000", l1.getUnit().toString());</span>
      +<span class="source-line-no">253</span><span id="line-253">    }</span>
      +<span class="source-line-no">254</span><span id="line-254">    </span>
      +<span class="source-line-no">255</span><span id="line-255">    @Test</span>
      +<span class="source-line-no">256</span><span id="line-256">    public void testQuetta() {</span>
      +<span class="source-line-no">257</span><span id="line-257">        assertEquals("Q", QUETTA.getSymbol());</span>
      +<span class="source-line-no">258</span><span id="line-258">        Quantity&lt;Mass&gt; m1 = TestQuantities.getQuantity(2, QUETTA(g));</span>
      +<span class="source-line-no">259</span><span id="line-259">        assertEquals(2d, m1.getValue());</span>
      +<span class="source-line-no">260</span><span id="line-260">        assertEquals("g * 1000000000000000000000000000", m1.getUnit().toString());</span>
      +<span class="source-line-no">261</span><span id="line-261">    }</span>
      +<span class="source-line-no">262</span><span id="line-262"></span>
      +<span class="source-line-no">263</span><span id="line-263">    @Test</span>
      +<span class="source-line-no">264</span><span id="line-264">    public void testQuecto() {</span>
      +<span class="source-line-no">265</span><span id="line-265">        assertEquals("q", QUECTO.getSymbol());</span>
      +<span class="source-line-no">266</span><span id="line-266">        Quantity&lt;Length&gt; l1 = TestQuantities.getQuantity(1, QUECTO(m));</span>
      +<span class="source-line-no">267</span><span id="line-267">        assertEquals(1d, l1.getValue());</span>
      +<span class="source-line-no">268</span><span id="line-268">        assertEquals("m * 0.000000000000000000000", l1.getUnit().toString());</span>
      +<span class="source-line-no">269</span><span id="line-269">    }</span>
      +<span class="source-line-no">270</span><span id="line-270">    </span>
      +<span class="source-line-no">271</span><span id="line-271">    private static String toUnicode(char ch) {</span>
      +<span class="source-line-no">272</span><span id="line-272">        return String.format("\\u%04x", (int) ch);</span>
      +<span class="source-line-no">273</span><span id="line-273">    }</span>
      +<span class="source-line-no">274</span><span id="line-274">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/TestConverter.Pair.html b/docs/site/testapidocs/src-html/javax/measure/test/TestConverter.Pair.html
      new file mode 100644
      index 00000000..3f6eb24a
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/TestConverter.Pair.html
      @@ -0,0 +1,309 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test, class: TestConverter, class: Pair">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import java.util.ArrayList;</span>
      +<span class="source-line-no">033</span><span id="line-33">import java.util.List;</span>
      +<span class="source-line-no">034</span><span id="line-34"></span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.UnitConverter;</span>
      +<span class="source-line-no">036</span><span id="line-36"></span>
      +<span class="source-line-no">037</span><span id="line-37">/**</span>
      +<span class="source-line-no">038</span><span id="line-38"> * &lt;p&gt;</span>
      +<span class="source-line-no">039</span><span id="line-39"> * Test class for our {@link UnitConverter} implementations.</span>
      +<span class="source-line-no">040</span><span id="line-40"> * &lt;/p&gt;</span>
      +<span class="source-line-no">041</span><span id="line-41"> *</span>
      +<span class="source-line-no">042</span><span id="line-42"> * @author &lt;a href="mailto:werner@uom.technology"&gt;Werner Keil&lt;/a&gt;</span>
      +<span class="source-line-no">043</span><span id="line-43"> * @version 0.8.1, $Date: 2016-02-11 $</span>
      +<span class="source-line-no">044</span><span id="line-44"> */</span>
      +<span class="source-line-no">045</span><span id="line-45">public abstract class TestConverter implements UnitConverter {</span>
      +<span class="source-line-no">046</span><span id="line-46"></span>
      +<span class="source-line-no">047</span><span id="line-47">    /**</span>
      +<span class="source-line-no">048</span><span id="line-48">     * Holds identity converter.</span>
      +<span class="source-line-no">049</span><span id="line-49">     */</span>
      +<span class="source-line-no">050</span><span id="line-50">    public static final TestConverter IDENTITY = new Identity();</span>
      +<span class="source-line-no">051</span><span id="line-51"></span>
      +<span class="source-line-no">052</span><span id="line-52">    /**</span>
      +<span class="source-line-no">053</span><span id="line-53">     * Default constructor.</span>
      +<span class="source-line-no">054</span><span id="line-54">     */</span>
      +<span class="source-line-no">055</span><span id="line-55">    protected TestConverter() {</span>
      +<span class="source-line-no">056</span><span id="line-56">    }</span>
      +<span class="source-line-no">057</span><span id="line-57"></span>
      +<span class="source-line-no">058</span><span id="line-58">    /**</span>
      +<span class="source-line-no">059</span><span id="line-59">     * Concatenates this physics converter with another unit converter. The resulting converter is equivalent to first converting by the specified</span>
      +<span class="source-line-no">060</span><span id="line-60">     * converter (right converter), and then converting by this converter (left converter).</span>
      +<span class="source-line-no">061</span><span id="line-61">     *</span>
      +<span class="source-line-no">062</span><span id="line-62">     * @param that</span>
      +<span class="source-line-no">063</span><span id="line-63">     *          the other converter.</span>
      +<span class="source-line-no">064</span><span id="line-64">     * @return the concatenation of this converter with that converter.</span>
      +<span class="source-line-no">065</span><span id="line-65">     */</span>
      +<span class="source-line-no">066</span><span id="line-66">    public TestConverter concatenate(TestConverter that) {</span>
      +<span class="source-line-no">067</span><span id="line-67">        return (IDENTITY.equals(that)) ? this : new Pair(this, that);</span>
      +<span class="source-line-no">068</span><span id="line-68">    }</span>
      +<span class="source-line-no">069</span><span id="line-69"></span>
      +<span class="source-line-no">070</span><span id="line-70">    public boolean isIdentity() {</span>
      +<span class="source-line-no">071</span><span id="line-71">        return false;</span>
      +<span class="source-line-no">072</span><span id="line-72">    }</span>
      +<span class="source-line-no">073</span><span id="line-73"></span>
      +<span class="source-line-no">074</span><span id="line-74">    @Override</span>
      +<span class="source-line-no">075</span><span id="line-75">    public abstract boolean equals(Object cvtr);</span>
      +<span class="source-line-no">076</span><span id="line-76"></span>
      +<span class="source-line-no">077</span><span id="line-77">    @Override</span>
      +<span class="source-line-no">078</span><span id="line-78">    public abstract int hashCode();</span>
      +<span class="source-line-no">079</span><span id="line-79"></span>
      +<span class="source-line-no">080</span><span id="line-80">    @Override</span>
      +<span class="source-line-no">081</span><span id="line-81">    public abstract TestConverter inverse();</span>
      +<span class="source-line-no">082</span><span id="line-82"></span>
      +<span class="source-line-no">083</span><span id="line-83">    @Override</span>
      +<span class="source-line-no">084</span><span id="line-84">    public UnitConverter concatenate(UnitConverter converter) {</span>
      +<span class="source-line-no">085</span><span id="line-85">        return (IDENTITY.equals(converter)) ? this : new Pair(this, converter);</span>
      +<span class="source-line-no">086</span><span id="line-86">    }</span>
      +<span class="source-line-no">087</span><span id="line-87"></span>
      +<span class="source-line-no">088</span><span id="line-88">    @Override</span>
      +<span class="source-line-no">089</span><span id="line-89">    public List&lt;? extends UnitConverter&gt; getConversionSteps() {</span>
      +<span class="source-line-no">090</span><span id="line-90">        final List&lt;TestConverter&gt; steps = new ArrayList&lt;TestConverter&gt;();</span>
      +<span class="source-line-no">091</span><span id="line-91">        steps.add(this);</span>
      +<span class="source-line-no">092</span><span id="line-92">        return steps;</span>
      +<span class="source-line-no">093</span><span id="line-93">    }</span>
      +<span class="source-line-no">094</span><span id="line-94"></span>
      +<span class="source-line-no">095</span><span id="line-95">    /**</span>
      +<span class="source-line-no">096</span><span id="line-96">     * @throws IllegalArgumentException</span>
      +<span class="source-line-no">097</span><span id="line-97">     *           if the value is &lt;code&gt;null&lt;/code&gt;.</span>
      +<span class="source-line-no">098</span><span id="line-98">     */</span>
      +<span class="source-line-no">099</span><span id="line-99">    public Number convert(Number value) {</span>
      +<span class="source-line-no">100</span><span id="line-100">        if (value != null) {</span>
      +<span class="source-line-no">101</span><span id="line-101">            return convert(value.doubleValue());</span>
      +<span class="source-line-no">102</span><span id="line-102">        } else {</span>
      +<span class="source-line-no">103</span><span id="line-103">            throw new IllegalArgumentException("Value cannot be null");</span>
      +<span class="source-line-no">104</span><span id="line-104">        }</span>
      +<span class="source-line-no">105</span><span id="line-105">    }</span>
      +<span class="source-line-no">106</span><span id="line-106"></span>
      +<span class="source-line-no">107</span><span id="line-107">    public abstract double convert(double value);</span>
      +<span class="source-line-no">108</span><span id="line-108"></span>
      +<span class="source-line-no">109</span><span id="line-109">    /**</span>
      +<span class="source-line-no">110</span><span id="line-110">     * This class represents the identity converter (singleton).</span>
      +<span class="source-line-no">111</span><span id="line-111">     */</span>
      +<span class="source-line-no">112</span><span id="line-112">    private static final class Identity extends TestConverter {</span>
      +<span class="source-line-no">113</span><span id="line-113"></span>
      +<span class="source-line-no">114</span><span id="line-114">        @Override</span>
      +<span class="source-line-no">115</span><span id="line-115">        public boolean isIdentity() {</span>
      +<span class="source-line-no">116</span><span id="line-116">            return true;</span>
      +<span class="source-line-no">117</span><span id="line-117">        }</span>
      +<span class="source-line-no">118</span><span id="line-118"></span>
      +<span class="source-line-no">119</span><span id="line-119">        @Override</span>
      +<span class="source-line-no">120</span><span id="line-120">        public Identity inverse() {</span>
      +<span class="source-line-no">121</span><span id="line-121">            return this;</span>
      +<span class="source-line-no">122</span><span id="line-122">        }</span>
      +<span class="source-line-no">123</span><span id="line-123"></span>
      +<span class="source-line-no">124</span><span id="line-124">        @Override</span>
      +<span class="source-line-no">125</span><span id="line-125">        public double convert(double value) {</span>
      +<span class="source-line-no">126</span><span id="line-126">            return value;</span>
      +<span class="source-line-no">127</span><span id="line-127">        }</span>
      +<span class="source-line-no">128</span><span id="line-128"></span>
      +<span class="source-line-no">129</span><span id="line-129">        @Override</span>
      +<span class="source-line-no">130</span><span id="line-130">        public UnitConverter concatenate(UnitConverter converter) {</span>
      +<span class="source-line-no">131</span><span id="line-131">            return converter;</span>
      +<span class="source-line-no">132</span><span id="line-132">        }</span>
      +<span class="source-line-no">133</span><span id="line-133"></span>
      +<span class="source-line-no">134</span><span id="line-134">        @Override</span>
      +<span class="source-line-no">135</span><span id="line-135">        public boolean equals(Object cvtr) {</span>
      +<span class="source-line-no">136</span><span id="line-136">            return (cvtr instanceof Identity);</span>
      +<span class="source-line-no">137</span><span id="line-137">        }</span>
      +<span class="source-line-no">138</span><span id="line-138"></span>
      +<span class="source-line-no">139</span><span id="line-139">        @Override</span>
      +<span class="source-line-no">140</span><span id="line-140">        public int hashCode() {</span>
      +<span class="source-line-no">141</span><span id="line-141">            return 0;</span>
      +<span class="source-line-no">142</span><span id="line-142">        }</span>
      +<span class="source-line-no">143</span><span id="line-143"></span>
      +<span class="source-line-no">144</span><span id="line-144">        public boolean isLinear() {</span>
      +<span class="source-line-no">145</span><span id="line-145">            return true;</span>
      +<span class="source-line-no">146</span><span id="line-146">        }</span>
      +<span class="source-line-no">147</span><span id="line-147">    }</span>
      +<span class="source-line-no">148</span><span id="line-148"></span>
      +<span class="source-line-no">149</span><span id="line-149">    /**</span>
      +<span class="source-line-no">150</span><span id="line-150">     * This class represents converters made up of two or more separate converters (in matrix notation &lt;code&gt;[pair] = [left] x [right]&lt;/code&gt;).</span>
      +<span class="source-line-no">151</span><span id="line-151">     */</span>
      +<span class="source-line-no">152</span><span id="line-152">    public static final class Pair extends TestConverter {</span>
      +<span class="source-line-no">153</span><span id="line-153"></span>
      +<span class="source-line-no">154</span><span id="line-154">        /**</span>
      +<span class="source-line-no">155</span><span id="line-155">         * Holds the first converter.</span>
      +<span class="source-line-no">156</span><span id="line-156">         */</span>
      +<span class="source-line-no">157</span><span id="line-157">        private final UnitConverter left;</span>
      +<span class="source-line-no">158</span><span id="line-158"></span>
      +<span class="source-line-no">159</span><span id="line-159">        /**</span>
      +<span class="source-line-no">160</span><span id="line-160">         * Holds the second converter.</span>
      +<span class="source-line-no">161</span><span id="line-161">         */</span>
      +<span class="source-line-no">162</span><span id="line-162">        private final UnitConverter right;</span>
      +<span class="source-line-no">163</span><span id="line-163"></span>
      +<span class="source-line-no">164</span><span id="line-164">        /**</span>
      +<span class="source-line-no">165</span><span id="line-165">         * Creates a compound converter resulting from the combined transformation of the specified converters.</span>
      +<span class="source-line-no">166</span><span id="line-166">         *</span>
      +<span class="source-line-no">167</span><span id="line-167">         * @param left</span>
      +<span class="source-line-no">168</span><span id="line-168">         *          the left converter.</span>
      +<span class="source-line-no">169</span><span id="line-169">         * @param right</span>
      +<span class="source-line-no">170</span><span id="line-170">         *          the right converter.</span>
      +<span class="source-line-no">171</span><span id="line-171">         * @throws IllegalArgumentException</span>
      +<span class="source-line-no">172</span><span id="line-172">         *           if either the left or right converter are &lt;code&gt;null&lt;/code&gt;</span>
      +<span class="source-line-no">173</span><span id="line-173">         */</span>
      +<span class="source-line-no">174</span><span id="line-174">        public Pair(UnitConverter left, UnitConverter right) {</span>
      +<span class="source-line-no">175</span><span id="line-175">            this.left = left;</span>
      +<span class="source-line-no">176</span><span id="line-176">            this.right = right;</span>
      +<span class="source-line-no">177</span><span id="line-177">        }</span>
      +<span class="source-line-no">178</span><span id="line-178"></span>
      +<span class="source-line-no">179</span><span id="line-179">        public boolean isLinear() {</span>
      +<span class="source-line-no">180</span><span id="line-180">            return left.isLinear() &amp;&amp; right.isLinear();</span>
      +<span class="source-line-no">181</span><span id="line-181">        }</span>
      +<span class="source-line-no">182</span><span id="line-182"></span>
      +<span class="source-line-no">183</span><span id="line-183">        @Override</span>
      +<span class="source-line-no">184</span><span id="line-184">        public boolean isIdentity() {</span>
      +<span class="source-line-no">185</span><span id="line-185">            return false;</span>
      +<span class="source-line-no">186</span><span id="line-186">        }</span>
      +<span class="source-line-no">187</span><span id="line-187"></span>
      +<span class="source-line-no">188</span><span id="line-188">        @Override</span>
      +<span class="source-line-no">189</span><span id="line-189">        public List&lt;UnitConverter&gt; getConversionSteps() {</span>
      +<span class="source-line-no">190</span><span id="line-190">            final List&lt;UnitConverter&gt; steps = new ArrayList&lt;UnitConverter&gt;();</span>
      +<span class="source-line-no">191</span><span id="line-191">            List&lt;? extends UnitConverter&gt; leftCompound = left.getConversionSteps();</span>
      +<span class="source-line-no">192</span><span id="line-192">            List&lt;? extends UnitConverter&gt; rightCompound = right.getConversionSteps();</span>
      +<span class="source-line-no">193</span><span id="line-193">            steps.addAll(leftCompound);</span>
      +<span class="source-line-no">194</span><span id="line-194">            steps.addAll(rightCompound);</span>
      +<span class="source-line-no">195</span><span id="line-195">            return steps;</span>
      +<span class="source-line-no">196</span><span id="line-196">        }</span>
      +<span class="source-line-no">197</span><span id="line-197"></span>
      +<span class="source-line-no">198</span><span id="line-198">        @Override</span>
      +<span class="source-line-no">199</span><span id="line-199">        public Pair inverse() {</span>
      +<span class="source-line-no">200</span><span id="line-200">            return new Pair(right.inverse(), left.inverse());</span>
      +<span class="source-line-no">201</span><span id="line-201">        }</span>
      +<span class="source-line-no">202</span><span id="line-202"></span>
      +<span class="source-line-no">203</span><span id="line-203">        @Override</span>
      +<span class="source-line-no">204</span><span id="line-204">        public double convert(double value) {</span>
      +<span class="source-line-no">205</span><span id="line-205">            return left.convert(right.convert(value));</span>
      +<span class="source-line-no">206</span><span id="line-206">        }</span>
      +<span class="source-line-no">207</span><span id="line-207"></span>
      +<span class="source-line-no">208</span><span id="line-208">        @Override</span>
      +<span class="source-line-no">209</span><span id="line-209">        public boolean equals(Object cvtr) {</span>
      +<span class="source-line-no">210</span><span id="line-210">            if (this == cvtr)</span>
      +<span class="source-line-no">211</span><span id="line-211">                return true;</span>
      +<span class="source-line-no">212</span><span id="line-212">            if (!(cvtr instanceof Pair))</span>
      +<span class="source-line-no">213</span><span id="line-213">                return false;</span>
      +<span class="source-line-no">214</span><span id="line-214">            Pair that = (Pair) cvtr;</span>
      +<span class="source-line-no">215</span><span id="line-215">            return (this.left.equals(that.left)) &amp;&amp; (this.right.equals(that.right));</span>
      +<span class="source-line-no">216</span><span id="line-216">        }</span>
      +<span class="source-line-no">217</span><span id="line-217"></span>
      +<span class="source-line-no">218</span><span id="line-218">        @Override</span>
      +<span class="source-line-no">219</span><span id="line-219">        public int hashCode() {</span>
      +<span class="source-line-no">220</span><span id="line-220">            return left.hashCode() + right.hashCode();</span>
      +<span class="source-line-no">221</span><span id="line-221">        }</span>
      +<span class="source-line-no">222</span><span id="line-222"></span>
      +<span class="source-line-no">223</span><span id="line-223">        public UnitConverter getLeft() {</span>
      +<span class="source-line-no">224</span><span id="line-224">            return left;</span>
      +<span class="source-line-no">225</span><span id="line-225">        }</span>
      +<span class="source-line-no">226</span><span id="line-226"></span>
      +<span class="source-line-no">227</span><span id="line-227">        public UnitConverter getRight() {</span>
      +<span class="source-line-no">228</span><span id="line-228">            return right;</span>
      +<span class="source-line-no">229</span><span id="line-229">        }</span>
      +<span class="source-line-no">230</span><span id="line-230">    }</span>
      +<span class="source-line-no">231</span><span id="line-231">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/TestConverter.html b/docs/site/testapidocs/src-html/javax/measure/test/TestConverter.html
      new file mode 100644
      index 00000000..628b4638
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/TestConverter.html
      @@ -0,0 +1,309 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test, class: TestConverter">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import java.util.ArrayList;</span>
      +<span class="source-line-no">033</span><span id="line-33">import java.util.List;</span>
      +<span class="source-line-no">034</span><span id="line-34"></span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.UnitConverter;</span>
      +<span class="source-line-no">036</span><span id="line-36"></span>
      +<span class="source-line-no">037</span><span id="line-37">/**</span>
      +<span class="source-line-no">038</span><span id="line-38"> * &lt;p&gt;</span>
      +<span class="source-line-no">039</span><span id="line-39"> * Test class for our {@link UnitConverter} implementations.</span>
      +<span class="source-line-no">040</span><span id="line-40"> * &lt;/p&gt;</span>
      +<span class="source-line-no">041</span><span id="line-41"> *</span>
      +<span class="source-line-no">042</span><span id="line-42"> * @author &lt;a href="mailto:werner@uom.technology"&gt;Werner Keil&lt;/a&gt;</span>
      +<span class="source-line-no">043</span><span id="line-43"> * @version 0.8.1, $Date: 2016-02-11 $</span>
      +<span class="source-line-no">044</span><span id="line-44"> */</span>
      +<span class="source-line-no">045</span><span id="line-45">public abstract class TestConverter implements UnitConverter {</span>
      +<span class="source-line-no">046</span><span id="line-46"></span>
      +<span class="source-line-no">047</span><span id="line-47">    /**</span>
      +<span class="source-line-no">048</span><span id="line-48">     * Holds identity converter.</span>
      +<span class="source-line-no">049</span><span id="line-49">     */</span>
      +<span class="source-line-no">050</span><span id="line-50">    public static final TestConverter IDENTITY = new Identity();</span>
      +<span class="source-line-no">051</span><span id="line-51"></span>
      +<span class="source-line-no">052</span><span id="line-52">    /**</span>
      +<span class="source-line-no">053</span><span id="line-53">     * Default constructor.</span>
      +<span class="source-line-no">054</span><span id="line-54">     */</span>
      +<span class="source-line-no">055</span><span id="line-55">    protected TestConverter() {</span>
      +<span class="source-line-no">056</span><span id="line-56">    }</span>
      +<span class="source-line-no">057</span><span id="line-57"></span>
      +<span class="source-line-no">058</span><span id="line-58">    /**</span>
      +<span class="source-line-no">059</span><span id="line-59">     * Concatenates this physics converter with another unit converter. The resulting converter is equivalent to first converting by the specified</span>
      +<span class="source-line-no">060</span><span id="line-60">     * converter (right converter), and then converting by this converter (left converter).</span>
      +<span class="source-line-no">061</span><span id="line-61">     *</span>
      +<span class="source-line-no">062</span><span id="line-62">     * @param that</span>
      +<span class="source-line-no">063</span><span id="line-63">     *          the other converter.</span>
      +<span class="source-line-no">064</span><span id="line-64">     * @return the concatenation of this converter with that converter.</span>
      +<span class="source-line-no">065</span><span id="line-65">     */</span>
      +<span class="source-line-no">066</span><span id="line-66">    public TestConverter concatenate(TestConverter that) {</span>
      +<span class="source-line-no">067</span><span id="line-67">        return (IDENTITY.equals(that)) ? this : new Pair(this, that);</span>
      +<span class="source-line-no">068</span><span id="line-68">    }</span>
      +<span class="source-line-no">069</span><span id="line-69"></span>
      +<span class="source-line-no">070</span><span id="line-70">    public boolean isIdentity() {</span>
      +<span class="source-line-no">071</span><span id="line-71">        return false;</span>
      +<span class="source-line-no">072</span><span id="line-72">    }</span>
      +<span class="source-line-no">073</span><span id="line-73"></span>
      +<span class="source-line-no">074</span><span id="line-74">    @Override</span>
      +<span class="source-line-no">075</span><span id="line-75">    public abstract boolean equals(Object cvtr);</span>
      +<span class="source-line-no">076</span><span id="line-76"></span>
      +<span class="source-line-no">077</span><span id="line-77">    @Override</span>
      +<span class="source-line-no">078</span><span id="line-78">    public abstract int hashCode();</span>
      +<span class="source-line-no">079</span><span id="line-79"></span>
      +<span class="source-line-no">080</span><span id="line-80">    @Override</span>
      +<span class="source-line-no">081</span><span id="line-81">    public abstract TestConverter inverse();</span>
      +<span class="source-line-no">082</span><span id="line-82"></span>
      +<span class="source-line-no">083</span><span id="line-83">    @Override</span>
      +<span class="source-line-no">084</span><span id="line-84">    public UnitConverter concatenate(UnitConverter converter) {</span>
      +<span class="source-line-no">085</span><span id="line-85">        return (IDENTITY.equals(converter)) ? this : new Pair(this, converter);</span>
      +<span class="source-line-no">086</span><span id="line-86">    }</span>
      +<span class="source-line-no">087</span><span id="line-87"></span>
      +<span class="source-line-no">088</span><span id="line-88">    @Override</span>
      +<span class="source-line-no">089</span><span id="line-89">    public List&lt;? extends UnitConverter&gt; getConversionSteps() {</span>
      +<span class="source-line-no">090</span><span id="line-90">        final List&lt;TestConverter&gt; steps = new ArrayList&lt;TestConverter&gt;();</span>
      +<span class="source-line-no">091</span><span id="line-91">        steps.add(this);</span>
      +<span class="source-line-no">092</span><span id="line-92">        return steps;</span>
      +<span class="source-line-no">093</span><span id="line-93">    }</span>
      +<span class="source-line-no">094</span><span id="line-94"></span>
      +<span class="source-line-no">095</span><span id="line-95">    /**</span>
      +<span class="source-line-no">096</span><span id="line-96">     * @throws IllegalArgumentException</span>
      +<span class="source-line-no">097</span><span id="line-97">     *           if the value is &lt;code&gt;null&lt;/code&gt;.</span>
      +<span class="source-line-no">098</span><span id="line-98">     */</span>
      +<span class="source-line-no">099</span><span id="line-99">    public Number convert(Number value) {</span>
      +<span class="source-line-no">100</span><span id="line-100">        if (value != null) {</span>
      +<span class="source-line-no">101</span><span id="line-101">            return convert(value.doubleValue());</span>
      +<span class="source-line-no">102</span><span id="line-102">        } else {</span>
      +<span class="source-line-no">103</span><span id="line-103">            throw new IllegalArgumentException("Value cannot be null");</span>
      +<span class="source-line-no">104</span><span id="line-104">        }</span>
      +<span class="source-line-no">105</span><span id="line-105">    }</span>
      +<span class="source-line-no">106</span><span id="line-106"></span>
      +<span class="source-line-no">107</span><span id="line-107">    public abstract double convert(double value);</span>
      +<span class="source-line-no">108</span><span id="line-108"></span>
      +<span class="source-line-no">109</span><span id="line-109">    /**</span>
      +<span class="source-line-no">110</span><span id="line-110">     * This class represents the identity converter (singleton).</span>
      +<span class="source-line-no">111</span><span id="line-111">     */</span>
      +<span class="source-line-no">112</span><span id="line-112">    private static final class Identity extends TestConverter {</span>
      +<span class="source-line-no">113</span><span id="line-113"></span>
      +<span class="source-line-no">114</span><span id="line-114">        @Override</span>
      +<span class="source-line-no">115</span><span id="line-115">        public boolean isIdentity() {</span>
      +<span class="source-line-no">116</span><span id="line-116">            return true;</span>
      +<span class="source-line-no">117</span><span id="line-117">        }</span>
      +<span class="source-line-no">118</span><span id="line-118"></span>
      +<span class="source-line-no">119</span><span id="line-119">        @Override</span>
      +<span class="source-line-no">120</span><span id="line-120">        public Identity inverse() {</span>
      +<span class="source-line-no">121</span><span id="line-121">            return this;</span>
      +<span class="source-line-no">122</span><span id="line-122">        }</span>
      +<span class="source-line-no">123</span><span id="line-123"></span>
      +<span class="source-line-no">124</span><span id="line-124">        @Override</span>
      +<span class="source-line-no">125</span><span id="line-125">        public double convert(double value) {</span>
      +<span class="source-line-no">126</span><span id="line-126">            return value;</span>
      +<span class="source-line-no">127</span><span id="line-127">        }</span>
      +<span class="source-line-no">128</span><span id="line-128"></span>
      +<span class="source-line-no">129</span><span id="line-129">        @Override</span>
      +<span class="source-line-no">130</span><span id="line-130">        public UnitConverter concatenate(UnitConverter converter) {</span>
      +<span class="source-line-no">131</span><span id="line-131">            return converter;</span>
      +<span class="source-line-no">132</span><span id="line-132">        }</span>
      +<span class="source-line-no">133</span><span id="line-133"></span>
      +<span class="source-line-no">134</span><span id="line-134">        @Override</span>
      +<span class="source-line-no">135</span><span id="line-135">        public boolean equals(Object cvtr) {</span>
      +<span class="source-line-no">136</span><span id="line-136">            return (cvtr instanceof Identity);</span>
      +<span class="source-line-no">137</span><span id="line-137">        }</span>
      +<span class="source-line-no">138</span><span id="line-138"></span>
      +<span class="source-line-no">139</span><span id="line-139">        @Override</span>
      +<span class="source-line-no">140</span><span id="line-140">        public int hashCode() {</span>
      +<span class="source-line-no">141</span><span id="line-141">            return 0;</span>
      +<span class="source-line-no">142</span><span id="line-142">        }</span>
      +<span class="source-line-no">143</span><span id="line-143"></span>
      +<span class="source-line-no">144</span><span id="line-144">        public boolean isLinear() {</span>
      +<span class="source-line-no">145</span><span id="line-145">            return true;</span>
      +<span class="source-line-no">146</span><span id="line-146">        }</span>
      +<span class="source-line-no">147</span><span id="line-147">    }</span>
      +<span class="source-line-no">148</span><span id="line-148"></span>
      +<span class="source-line-no">149</span><span id="line-149">    /**</span>
      +<span class="source-line-no">150</span><span id="line-150">     * This class represents converters made up of two or more separate converters (in matrix notation &lt;code&gt;[pair] = [left] x [right]&lt;/code&gt;).</span>
      +<span class="source-line-no">151</span><span id="line-151">     */</span>
      +<span class="source-line-no">152</span><span id="line-152">    public static final class Pair extends TestConverter {</span>
      +<span class="source-line-no">153</span><span id="line-153"></span>
      +<span class="source-line-no">154</span><span id="line-154">        /**</span>
      +<span class="source-line-no">155</span><span id="line-155">         * Holds the first converter.</span>
      +<span class="source-line-no">156</span><span id="line-156">         */</span>
      +<span class="source-line-no">157</span><span id="line-157">        private final UnitConverter left;</span>
      +<span class="source-line-no">158</span><span id="line-158"></span>
      +<span class="source-line-no">159</span><span id="line-159">        /**</span>
      +<span class="source-line-no">160</span><span id="line-160">         * Holds the second converter.</span>
      +<span class="source-line-no">161</span><span id="line-161">         */</span>
      +<span class="source-line-no">162</span><span id="line-162">        private final UnitConverter right;</span>
      +<span class="source-line-no">163</span><span id="line-163"></span>
      +<span class="source-line-no">164</span><span id="line-164">        /**</span>
      +<span class="source-line-no">165</span><span id="line-165">         * Creates a compound converter resulting from the combined transformation of the specified converters.</span>
      +<span class="source-line-no">166</span><span id="line-166">         *</span>
      +<span class="source-line-no">167</span><span id="line-167">         * @param left</span>
      +<span class="source-line-no">168</span><span id="line-168">         *          the left converter.</span>
      +<span class="source-line-no">169</span><span id="line-169">         * @param right</span>
      +<span class="source-line-no">170</span><span id="line-170">         *          the right converter.</span>
      +<span class="source-line-no">171</span><span id="line-171">         * @throws IllegalArgumentException</span>
      +<span class="source-line-no">172</span><span id="line-172">         *           if either the left or right converter are &lt;code&gt;null&lt;/code&gt;</span>
      +<span class="source-line-no">173</span><span id="line-173">         */</span>
      +<span class="source-line-no">174</span><span id="line-174">        public Pair(UnitConverter left, UnitConverter right) {</span>
      +<span class="source-line-no">175</span><span id="line-175">            this.left = left;</span>
      +<span class="source-line-no">176</span><span id="line-176">            this.right = right;</span>
      +<span class="source-line-no">177</span><span id="line-177">        }</span>
      +<span class="source-line-no">178</span><span id="line-178"></span>
      +<span class="source-line-no">179</span><span id="line-179">        public boolean isLinear() {</span>
      +<span class="source-line-no">180</span><span id="line-180">            return left.isLinear() &amp;&amp; right.isLinear();</span>
      +<span class="source-line-no">181</span><span id="line-181">        }</span>
      +<span class="source-line-no">182</span><span id="line-182"></span>
      +<span class="source-line-no">183</span><span id="line-183">        @Override</span>
      +<span class="source-line-no">184</span><span id="line-184">        public boolean isIdentity() {</span>
      +<span class="source-line-no">185</span><span id="line-185">            return false;</span>
      +<span class="source-line-no">186</span><span id="line-186">        }</span>
      +<span class="source-line-no">187</span><span id="line-187"></span>
      +<span class="source-line-no">188</span><span id="line-188">        @Override</span>
      +<span class="source-line-no">189</span><span id="line-189">        public List&lt;UnitConverter&gt; getConversionSteps() {</span>
      +<span class="source-line-no">190</span><span id="line-190">            final List&lt;UnitConverter&gt; steps = new ArrayList&lt;UnitConverter&gt;();</span>
      +<span class="source-line-no">191</span><span id="line-191">            List&lt;? extends UnitConverter&gt; leftCompound = left.getConversionSteps();</span>
      +<span class="source-line-no">192</span><span id="line-192">            List&lt;? extends UnitConverter&gt; rightCompound = right.getConversionSteps();</span>
      +<span class="source-line-no">193</span><span id="line-193">            steps.addAll(leftCompound);</span>
      +<span class="source-line-no">194</span><span id="line-194">            steps.addAll(rightCompound);</span>
      +<span class="source-line-no">195</span><span id="line-195">            return steps;</span>
      +<span class="source-line-no">196</span><span id="line-196">        }</span>
      +<span class="source-line-no">197</span><span id="line-197"></span>
      +<span class="source-line-no">198</span><span id="line-198">        @Override</span>
      +<span class="source-line-no">199</span><span id="line-199">        public Pair inverse() {</span>
      +<span class="source-line-no">200</span><span id="line-200">            return new Pair(right.inverse(), left.inverse());</span>
      +<span class="source-line-no">201</span><span id="line-201">        }</span>
      +<span class="source-line-no">202</span><span id="line-202"></span>
      +<span class="source-line-no">203</span><span id="line-203">        @Override</span>
      +<span class="source-line-no">204</span><span id="line-204">        public double convert(double value) {</span>
      +<span class="source-line-no">205</span><span id="line-205">            return left.convert(right.convert(value));</span>
      +<span class="source-line-no">206</span><span id="line-206">        }</span>
      +<span class="source-line-no">207</span><span id="line-207"></span>
      +<span class="source-line-no">208</span><span id="line-208">        @Override</span>
      +<span class="source-line-no">209</span><span id="line-209">        public boolean equals(Object cvtr) {</span>
      +<span class="source-line-no">210</span><span id="line-210">            if (this == cvtr)</span>
      +<span class="source-line-no">211</span><span id="line-211">                return true;</span>
      +<span class="source-line-no">212</span><span id="line-212">            if (!(cvtr instanceof Pair))</span>
      +<span class="source-line-no">213</span><span id="line-213">                return false;</span>
      +<span class="source-line-no">214</span><span id="line-214">            Pair that = (Pair) cvtr;</span>
      +<span class="source-line-no">215</span><span id="line-215">            return (this.left.equals(that.left)) &amp;&amp; (this.right.equals(that.right));</span>
      +<span class="source-line-no">216</span><span id="line-216">        }</span>
      +<span class="source-line-no">217</span><span id="line-217"></span>
      +<span class="source-line-no">218</span><span id="line-218">        @Override</span>
      +<span class="source-line-no">219</span><span id="line-219">        public int hashCode() {</span>
      +<span class="source-line-no">220</span><span id="line-220">            return left.hashCode() + right.hashCode();</span>
      +<span class="source-line-no">221</span><span id="line-221">        }</span>
      +<span class="source-line-no">222</span><span id="line-222"></span>
      +<span class="source-line-no">223</span><span id="line-223">        public UnitConverter getLeft() {</span>
      +<span class="source-line-no">224</span><span id="line-224">            return left;</span>
      +<span class="source-line-no">225</span><span id="line-225">        }</span>
      +<span class="source-line-no">226</span><span id="line-226"></span>
      +<span class="source-line-no">227</span><span id="line-227">        public UnitConverter getRight() {</span>
      +<span class="source-line-no">228</span><span id="line-228">            return right;</span>
      +<span class="source-line-no">229</span><span id="line-229">        }</span>
      +<span class="source-line-no">230</span><span id="line-230">    }</span>
      +<span class="source-line-no">231</span><span id="line-231">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/TestUnit.html b/docs/site/testapidocs/src-html/javax/measure/test/TestUnit.html
      new file mode 100644
      index 00000000..f350d9cf
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/TestUnit.html
      @@ -0,0 +1,337 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test, class: TestUnit">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import java.math.BigDecimal;</span>
      +<span class="source-line-no">033</span><span id="line-33">import java.math.RoundingMode;</span>
      +<span class="source-line-no">034</span><span id="line-34">import java.util.Map;</span>
      +<span class="source-line-no">035</span><span id="line-35">import java.util.Objects;</span>
      +<span class="source-line-no">036</span><span id="line-36"></span>
      +<span class="source-line-no">037</span><span id="line-37">import javax.measure.Dimension;</span>
      +<span class="source-line-no">038</span><span id="line-38">import javax.measure.Quantity;</span>
      +<span class="source-line-no">039</span><span id="line-39">import javax.measure.Unit;</span>
      +<span class="source-line-no">040</span><span id="line-40">import javax.measure.IncommensurableException;</span>
      +<span class="source-line-no">041</span><span id="line-41">import javax.measure.Prefix;</span>
      +<span class="source-line-no">042</span><span id="line-42">import javax.measure.UnconvertibleException;</span>
      +<span class="source-line-no">043</span><span id="line-43">import javax.measure.UnitConverter;</span>
      +<span class="source-line-no">044</span><span id="line-44">import javax.measure.quantity.Dimensionless;</span>
      +<span class="source-line-no">045</span><span id="line-45">import javax.measure.test.function.MultiplyConverter;</span>
      +<span class="source-line-no">046</span><span id="line-46">import javax.measure.test.unit.BaseUnit;</span>
      +<span class="source-line-no">047</span><span id="line-47"></span>
      +<span class="source-line-no">048</span><span id="line-48">/**</span>
      +<span class="source-line-no">049</span><span id="line-49"> * @author Werner Keil</span>
      +<span class="source-line-no">050</span><span id="line-50"> */</span>
      +<span class="source-line-no">051</span><span id="line-51">public abstract class TestUnit&lt;Q extends Quantity&lt;Q&gt;&gt; implements Unit&lt;Q&gt; {</span>
      +<span class="source-line-no">052</span><span id="line-52">    public static final Unit&lt;Dimensionless&gt; ONE = new BaseUnit&lt;Dimensionless&gt;("one");</span>
      +<span class="source-line-no">053</span><span id="line-53"></span>
      +<span class="source-line-no">054</span><span id="line-54">    protected String symbol; // e.g. "A"</span>
      +<span class="source-line-no">055</span><span id="line-55">    protected final String name; // e.g. "Angstrom"</span>
      +<span class="source-line-no">056</span><span id="line-56">    protected BigDecimal multFactor; // e.g. 1E-10</span>
      +<span class="source-line-no">057</span><span id="line-57">    // private double addFactor = 0.0; // used for temperatures</span>
      +<span class="source-line-no">058</span><span id="line-58">    private final Dimension dimension = TestDimension.getInstance();</span>
      +<span class="source-line-no">059</span><span id="line-59"></span>
      +<span class="source-line-no">060</span><span id="line-60">    protected TestUnit() {</span>
      +<span class="source-line-no">061</span><span id="line-61">        name = "";</span>
      +<span class="source-line-no">062</span><span id="line-62">    }</span>
      +<span class="source-line-no">063</span><span id="line-63"></span>
      +<span class="source-line-no">064</span><span id="line-64">    protected TestUnit(String name, double factor) {</span>
      +<span class="source-line-no">065</span><span id="line-65">        this.name = name;</span>
      +<span class="source-line-no">066</span><span id="line-66">        this.multFactor = BigDecimal.valueOf(factor);</span>
      +<span class="source-line-no">067</span><span id="line-67">    }</span>
      +<span class="source-line-no">068</span><span id="line-68"></span>
      +<span class="source-line-no">069</span><span id="line-69">    protected TestUnit(String name) {</span>
      +<span class="source-line-no">070</span><span id="line-70">        this(name, 0);</span>
      +<span class="source-line-no">071</span><span id="line-71">    }</span>
      +<span class="source-line-no">072</span><span id="line-72"></span>
      +<span class="source-line-no">073</span><span id="line-73">    public Unit&lt;Q&gt; shift(double offset) {</span>
      +<span class="source-line-no">074</span><span id="line-74">        return this;</span>
      +<span class="source-line-no">075</span><span id="line-75">    }</span>
      +<span class="source-line-no">076</span><span id="line-76"></span>
      +<span class="source-line-no">077</span><span id="line-77">    @SuppressWarnings({ "unchecked", "rawtypes" })</span>
      +<span class="source-line-no">078</span><span id="line-78">    public Unit&lt;Q&gt; alternate(String symbol) {</span>
      +<span class="source-line-no">079</span><span id="line-79">        return new BaseUnit(symbol);</span>
      +<span class="source-line-no">080</span><span id="line-80">    }</span>
      +<span class="source-line-no">081</span><span id="line-81"></span>
      +<span class="source-line-no">082</span><span id="line-82">    public &lt;T extends Quantity&lt;T&gt;&gt; Unit&lt;T&gt; asType(Class&lt;T&gt; type) throws ClassCastException {</span>
      +<span class="source-line-no">083</span><span id="line-83">        // Unit&lt;T&gt; metricUnit =</span>
      +<span class="source-line-no">084</span><span id="line-84">        // QuantityFactory.getInstance(type).getMetricUnit();</span>
      +<span class="source-line-no">085</span><span id="line-85">        // if ((metricUnit == null) || metricUnit.isCompatible(this))</span>
      +<span class="source-line-no">086</span><span id="line-86">        // return (Unit&lt;T&gt;) this;</span>
      +<span class="source-line-no">087</span><span id="line-87">        // throw new ClassCastException("The unit: " + this //$NON-NLS-1$</span>
      +<span class="source-line-no">088</span><span id="line-88">        // + " is not of parameterized type " + type); //$NON-NLS-1$</span>
      +<span class="source-line-no">089</span><span id="line-89">        return null;</span>
      +<span class="source-line-no">090</span><span id="line-90">    }</span>
      +<span class="source-line-no">091</span><span id="line-91"></span>
      +<span class="source-line-no">092</span><span id="line-92">    public Unit&lt;Q&gt; divide(double divisor) {</span>
      +<span class="source-line-no">093</span><span id="line-93">        return null;</span>
      +<span class="source-line-no">094</span><span id="line-94">    }</span>
      +<span class="source-line-no">095</span><span id="line-95"></span>
      +<span class="source-line-no">096</span><span id="line-96">    public Unit&lt;?&gt; divide(Unit&lt;?&gt; that) {</span>
      +<span class="source-line-no">097</span><span id="line-97">        return null;</span>
      +<span class="source-line-no">098</span><span id="line-98">    }</span>
      +<span class="source-line-no">099</span><span id="line-99"></span>
      +<span class="source-line-no">100</span><span id="line-100">    public UnitConverter getConverterTo(Unit&lt;Q&gt; that) throws UnconvertibleException {</span>
      +<span class="source-line-no">101</span><span id="line-101">        if ((this == that) || this.equals(that))</span>
      +<span class="source-line-no">102</span><span id="line-102">            return TestConverter.IDENTITY; // Shortcut.</span>
      +<span class="source-line-no">103</span><span id="line-103">        Unit&lt;Q&gt; thisSystemUnit = this.getSystemUnit();</span>
      +<span class="source-line-no">104</span><span id="line-104">        Unit&lt;Q&gt; thatSystemUnit = that.getSystemUnit();</span>
      +<span class="source-line-no">105</span><span id="line-105">        if (!thisSystemUnit.equals(thatSystemUnit))</span>
      +<span class="source-line-no">106</span><span id="line-106">            try {</span>
      +<span class="source-line-no">107</span><span id="line-107">                return getConverterToAny(that);</span>
      +<span class="source-line-no">108</span><span id="line-108">            } catch (IncommensurableException e) {</span>
      +<span class="source-line-no">109</span><span id="line-109">                throw new UnconvertibleException(e);</span>
      +<span class="source-line-no">110</span><span id="line-110">            }</span>
      +<span class="source-line-no">111</span><span id="line-111">        UnitConverter thisToSI = this.getSystemConverter();</span>
      +<span class="source-line-no">112</span><span id="line-112">        UnitConverter thatToSI = that.getConverterTo(thatSystemUnit);</span>
      +<span class="source-line-no">113</span><span id="line-113">        return thatToSI.inverse().concatenate(thisToSI);</span>
      +<span class="source-line-no">114</span><span id="line-114">    }</span>
      +<span class="source-line-no">115</span><span id="line-115"></span>
      +<span class="source-line-no">116</span><span id="line-116">    public UnitConverter getConverterToAny(Unit&lt;?&gt; that) throws IncommensurableException, UnconvertibleException {</span>
      +<span class="source-line-no">117</span><span id="line-117">        if (!isCompatible(that))</span>
      +<span class="source-line-no">118</span><span id="line-118">            throw new IncommensurableException(this + " is not compatible with " + that);</span>
      +<span class="source-line-no">119</span><span id="line-119">        TestUnit&lt;?&gt; thatAbstr = (TestUnit&lt;?&gt;) that; // Since both units are</span>
      +<span class="source-line-no">120</span><span id="line-120">        // compatible they must</span>
      +<span class="source-line-no">121</span><span id="line-121">        // be both test</span>
      +<span class="source-line-no">122</span><span id="line-122">        // units.</span>
      +<span class="source-line-no">123</span><span id="line-123">        UnitConverter thisToDimension = this.getSystemConverter();</span>
      +<span class="source-line-no">124</span><span id="line-124">        UnitConverter thatToDimension = thatAbstr.getSystemConverter();</span>
      +<span class="source-line-no">125</span><span id="line-125">        return thatToDimension.inverse().concatenate(thisToDimension);</span>
      +<span class="source-line-no">126</span><span id="line-126">    }</span>
      +<span class="source-line-no">127</span><span id="line-127"></span>
      +<span class="source-line-no">128</span><span id="line-128">    public Dimension getDimension() {</span>
      +<span class="source-line-no">129</span><span id="line-129">        return dimension;</span>
      +<span class="source-line-no">130</span><span id="line-130">    }</span>
      +<span class="source-line-no">131</span><span id="line-131"></span>
      +<span class="source-line-no">132</span><span id="line-132">    public String getName() {</span>
      +<span class="source-line-no">133</span><span id="line-133">        return name;</span>
      +<span class="source-line-no">134</span><span id="line-134">    }</span>
      +<span class="source-line-no">135</span><span id="line-135"></span>
      +<span class="source-line-no">136</span><span id="line-136">    public Map&lt;Unit&lt;?&gt;, Integer&gt; getBaseUnits() {</span>
      +<span class="source-line-no">137</span><span id="line-137">        return null;</span>
      +<span class="source-line-no">138</span><span id="line-138">    }</span>
      +<span class="source-line-no">139</span><span id="line-139"></span>
      +<span class="source-line-no">140</span><span id="line-140">    public String getSymbol() {</span>
      +<span class="source-line-no">141</span><span id="line-141">        return symbol;</span>
      +<span class="source-line-no">142</span><span id="line-142">    }</span>
      +<span class="source-line-no">143</span><span id="line-143"></span>
      +<span class="source-line-no">144</span><span id="line-144">    public Unit&lt;?&gt; inverse() {</span>
      +<span class="source-line-no">145</span><span id="line-145">        return null;</span>
      +<span class="source-line-no">146</span><span id="line-146">    }</span>
      +<span class="source-line-no">147</span><span id="line-147"></span>
      +<span class="source-line-no">148</span><span id="line-148">    public boolean isCompatible(Unit&lt;?&gt; that) {</span>
      +<span class="source-line-no">149</span><span id="line-149">        return false;</span>
      +<span class="source-line-no">150</span><span id="line-150">    }</span>
      +<span class="source-line-no">151</span><span id="line-151">    </span>
      +<span class="source-line-no">152</span><span id="line-152">        @Override</span>
      +<span class="source-line-no">153</span><span id="line-153">        public boolean isEquivalentTo(Unit&lt;Q&gt; that) {</span>
      +<span class="source-line-no">154</span><span id="line-154">                return this.getConverterTo(that).isIdentity();</span>
      +<span class="source-line-no">155</span><span id="line-155">        }</span>
      +<span class="source-line-no">156</span><span id="line-156"></span>
      +<span class="source-line-no">157</span><span id="line-157">    public Unit&lt;Q&gt; multiply(double factor) {</span>
      +<span class="source-line-no">158</span><span id="line-158">        return new BaseUnit&lt;Q&gt;(symbol, multFactor.doubleValue() * factor);</span>
      +<span class="source-line-no">159</span><span id="line-159">    }</span>
      +<span class="source-line-no">160</span><span id="line-160"></span>
      +<span class="source-line-no">161</span><span id="line-161">    public Unit&lt;?&gt; multiply(Unit&lt;?&gt; that) {</span>
      +<span class="source-line-no">162</span><span id="line-162">        return null;</span>
      +<span class="source-line-no">163</span><span id="line-163">    }</span>
      +<span class="source-line-no">164</span><span id="line-164"></span>
      +<span class="source-line-no">165</span><span id="line-165">    public Unit&lt;?&gt; pow(int n) {</span>
      +<span class="source-line-no">166</span><span id="line-166">        return null;</span>
      +<span class="source-line-no">167</span><span id="line-167">    }</span>
      +<span class="source-line-no">168</span><span id="line-168"></span>
      +<span class="source-line-no">169</span><span id="line-169">    public Unit&lt;?&gt; root(int n) {</span>
      +<span class="source-line-no">170</span><span id="line-170">        return null;</span>
      +<span class="source-line-no">171</span><span id="line-171">    }</span>
      +<span class="source-line-no">172</span><span id="line-172"></span>
      +<span class="source-line-no">173</span><span id="line-173">    public abstract Unit&lt;Q&gt; getSystemUnit();</span>
      +<span class="source-line-no">174</span><span id="line-174"></span>
      +<span class="source-line-no">175</span><span id="line-175">    /**</span>
      +<span class="source-line-no">176</span><span id="line-176">     * Returns the converter from this unit to its unscaled {@link #getSystemUnit System Unit} unit.</span>
      +<span class="source-line-no">177</span><span id="line-177">     *</span>
      +<span class="source-line-no">178</span><span id="line-178">     * @return &lt;code&gt;getConverterTo(this.toSystemUnit())&lt;/code&gt;</span>
      +<span class="source-line-no">179</span><span id="line-179">     * @see #getSystemUnit</span>
      +<span class="source-line-no">180</span><span id="line-180">     */</span>
      +<span class="source-line-no">181</span><span id="line-181">    public UnitConverter getSystemConverter() throws UnsupportedOperationException {</span>
      +<span class="source-line-no">182</span><span id="line-182">        return TestConverter.IDENTITY;</span>
      +<span class="source-line-no">183</span><span id="line-183">    }</span>
      +<span class="source-line-no">184</span><span id="line-184"></span>
      +<span class="source-line-no">185</span><span id="line-185">    public Unit&lt;Q&gt; transform(UnitConverter operation) {</span>
      +<span class="source-line-no">186</span><span id="line-186">        if (operation instanceof MultiplyConverter) {</span>
      +<span class="source-line-no">187</span><span id="line-187">            MultiplyConverter mult = (MultiplyConverter) operation;</span>
      +<span class="source-line-no">188</span><span id="line-188">            return this.multiply(mult.getFactor());</span>
      +<span class="source-line-no">189</span><span id="line-189">        } else {</span>
      +<span class="source-line-no">190</span><span id="line-190">            return this;</span>
      +<span class="source-line-no">191</span><span id="line-191">        }</span>
      +<span class="source-line-no">192</span><span id="line-192">    }</span>
      +<span class="source-line-no">193</span><span id="line-193"></span>
      +<span class="source-line-no">194</span><span id="line-194">    @Override</span>
      +<span class="source-line-no">195</span><span id="line-195">    public Unit&lt;Q&gt; prefix(Prefix prefix) {</span>
      +<span class="source-line-no">196</span><span id="line-196">        final MultiplyConverter converter = new MultiplyConverter(</span>
      +<span class="source-line-no">197</span><span id="line-197">                        Math.pow(prefix.getValue().doubleValue(), prefix.getExponent()));</span>
      +<span class="source-line-no">198</span><span id="line-198">        return this.transform(converter);</span>
      +<span class="source-line-no">199</span><span id="line-199">    }</span>
      +<span class="source-line-no">200</span><span id="line-200"></span>
      +<span class="source-line-no">201</span><span id="line-201">    public double getMultFactor() {</span>
      +<span class="source-line-no">202</span><span id="line-202">        return multFactor.doubleValue();</span>
      +<span class="source-line-no">203</span><span id="line-203">    }</span>
      +<span class="source-line-no">204</span><span id="line-204"></span>
      +<span class="source-line-no">205</span><span id="line-205">    @Override</span>
      +<span class="source-line-no">206</span><span id="line-206">    public String toString() {</span>
      +<span class="source-line-no">207</span><span id="line-207">        final StringBuilder sb = new StringBuilder();</span>
      +<span class="source-line-no">208</span><span id="line-208">        if (name != null) {</span>
      +<span class="source-line-no">209</span><span id="line-209">            sb.append(name);</span>
      +<span class="source-line-no">210</span><span id="line-210">        }</span>
      +<span class="source-line-no">211</span><span id="line-211">        if (symbol != null) {</span>
      +<span class="source-line-no">212</span><span id="line-212">            if (sb.length() &gt; 0)</span>
      +<span class="source-line-no">213</span><span id="line-213">                sb.append(' ');</span>
      +<span class="source-line-no">214</span><span id="line-214">            sb.append(symbol);</span>
      +<span class="source-line-no">215</span><span id="line-215">        }</span>
      +<span class="source-line-no">216</span><span id="line-216">        if (multFactor != null &amp;&amp; </span>
      +<span class="source-line-no">217</span><span id="line-217">                        !BigDecimal.ONE.equals(multFactor) &amp;&amp; multFactor.doubleValue()!=1d &amp;&amp; </span>
      +<span class="source-line-no">218</span><span id="line-218">                        !BigDecimal.ONE.equals(multFactor) &amp;&amp; multFactor.doubleValue()!=0d) {</span>
      +<span class="source-line-no">219</span><span id="line-219">            if (sb.length() &gt; 0)</span>
      +<span class="source-line-no">220</span><span id="line-220">                sb.append(" * ");</span>
      +<span class="source-line-no">221</span><span id="line-221">            sb.append(printFactor(multFactor));</span>
      +<span class="source-line-no">222</span><span id="line-222">        }</span>
      +<span class="source-line-no">223</span><span id="line-223">        return sb.toString();</span>
      +<span class="source-line-no">224</span><span id="line-224">    }</span>
      +<span class="source-line-no">225</span><span id="line-225">    </span>
      +<span class="source-line-no">226</span><span id="line-226">        @Override</span>
      +<span class="source-line-no">227</span><span id="line-227">        public Unit&lt;Q&gt; shift(Number offset) {</span>
      +<span class="source-line-no">228</span><span id="line-228">                Objects.requireNonNull(offset);</span>
      +<span class="source-line-no">229</span><span id="line-229">                return shift(offset.doubleValue());</span>
      +<span class="source-line-no">230</span><span id="line-230">        }</span>
      +<span class="source-line-no">231</span><span id="line-231"></span>
      +<span class="source-line-no">232</span><span id="line-232">        @Override</span>
      +<span class="source-line-no">233</span><span id="line-233">        public Unit&lt;Q&gt; multiply(Number multiplier) {</span>
      +<span class="source-line-no">234</span><span id="line-234">                Objects.requireNonNull(multiplier);</span>
      +<span class="source-line-no">235</span><span id="line-235">                return multiply(multiplier.doubleValue());</span>
      +<span class="source-line-no">236</span><span id="line-236">        }</span>
      +<span class="source-line-no">237</span><span id="line-237"></span>
      +<span class="source-line-no">238</span><span id="line-238">        @Override</span>
      +<span class="source-line-no">239</span><span id="line-239">        public Unit&lt;Q&gt; divide(Number divisor) {</span>
      +<span class="source-line-no">240</span><span id="line-240">                Objects.requireNonNull(divisor);</span>
      +<span class="source-line-no">241</span><span id="line-241">                return divide(divisor.doubleValue());</span>
      +<span class="source-line-no">242</span><span id="line-242">        }</span>
      +<span class="source-line-no">243</span><span id="line-243">        </span>
      +<span class="source-line-no">244</span><span id="line-244">        private String printFactor(final BigDecimal x) {    </span>
      +<span class="source-line-no">245</span><span id="line-245">                final int s = x.scale();                </span>
      +<span class="source-line-no">246</span><span id="line-246">                if (s &gt; 40) {</span>
      +<span class="source-line-no">247</span><span id="line-247">                        BigDecimal y = x.setScale(27, RoundingMode.HALF_UP);</span>
      +<span class="source-line-no">248</span><span id="line-248">                        final String result = y.toPlainString();</span>
      +<span class="source-line-no">249</span><span id="line-249">                        return result;                  </span>
      +<span class="source-line-no">250</span><span id="line-250">                } else {</span>
      +<span class="source-line-no">251</span><span id="line-251">                        final String result = x.toPlainString();</span>
      +<span class="source-line-no">252</span><span id="line-252">                        if (result.contains(".")) {                     </span>
      +<span class="source-line-no">253</span><span id="line-253">                                return result.length() &lt; 24 ? result : result.substring(0, 23);</span>
      +<span class="source-line-no">254</span><span id="line-254">                        } else {</span>
      +<span class="source-line-no">255</span><span id="line-255">                                return result;</span>
      +<span class="source-line-no">256</span><span id="line-256">                        }</span>
      +<span class="source-line-no">257</span><span id="line-257">                }</span>
      +<span class="source-line-no">258</span><span id="line-258">        }</span>
      +<span class="source-line-no">259</span><span id="line-259">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/TripLeg.html b/docs/site/testapidocs/src-html/javax/measure/test/TripLeg.html
      new file mode 100644
      index 00000000..f8b0a7d6
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/TripLeg.html
      @@ -0,0 +1,131 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test, class: TripLeg">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import javax.measure.test.quantity.DistanceQuantity;</span>
      +<span class="source-line-no">033</span><span id="line-33"></span>
      +<span class="source-line-no">034</span><span id="line-34">/**</span>
      +<span class="source-line-no">035</span><span id="line-35"> * @author paul.morrison</span>
      +<span class="source-line-no">036</span><span id="line-36"> */</span>
      +<span class="source-line-no">037</span><span id="line-37">public class TripLeg {</span>
      +<span class="source-line-no">038</span><span id="line-38">    @SuppressWarnings("unused")</span>
      +<span class="source-line-no">039</span><span id="line-39">    private String fromAirport;</span>
      +<span class="source-line-no">040</span><span id="line-40">    @SuppressWarnings("unused")</span>
      +<span class="source-line-no">041</span><span id="line-41">    private String toAirport;</span>
      +<span class="source-line-no">042</span><span id="line-42">    private DistanceQuantity distance;</span>
      +<span class="source-line-no">043</span><span id="line-43"></span>
      +<span class="source-line-no">044</span><span id="line-44">    public TripLeg(String fA, String tA, DistanceQuantity dist) {</span>
      +<span class="source-line-no">045</span><span id="line-45">        fromAirport = fA;</span>
      +<span class="source-line-no">046</span><span id="line-46">        toAirport = tA;</span>
      +<span class="source-line-no">047</span><span id="line-47">        distance = dist;</span>
      +<span class="source-line-no">048</span><span id="line-48">    }</span>
      +<span class="source-line-no">049</span><span id="line-49"></span>
      +<span class="source-line-no">050</span><span id="line-50">    public DistanceQuantity getDist() {</span>
      +<span class="source-line-no">051</span><span id="line-51">        return distance;</span>
      +<span class="source-line-no">052</span><span id="line-52">    }</span>
      +<span class="source-line-no">053</span><span id="line-53">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/UnitTest.html b/docs/site/testapidocs/src-html/javax/measure/test/UnitTest.html
      new file mode 100644
      index 00000000..7d8e1129
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/UnitTest.html
      @@ -0,0 +1,210 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test, class: UnitTest">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import static org.junit.jupiter.api.Assertions.*;</span>
      +<span class="source-line-no">033</span><span id="line-33">import static javax.measure.test.EnumUnit.TEST;</span>
      +<span class="source-line-no">034</span><span id="line-34"></span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.Dimension;</span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.UnconvertibleException;</span>
      +<span class="source-line-no">037</span><span id="line-37">import javax.measure.Unit;</span>
      +<span class="source-line-no">038</span><span id="line-38">import javax.measure.UnitConverter;</span>
      +<span class="source-line-no">039</span><span id="line-39">import javax.measure.test.unit.BaseUnit;</span>
      +<span class="source-line-no">040</span><span id="line-40">import javax.measure.test.unit.DistanceUnit;</span>
      +<span class="source-line-no">041</span><span id="line-41"></span>
      +<span class="source-line-no">042</span><span id="line-42">import org.junit.jupiter.api.BeforeEach;</span>
      +<span class="source-line-no">043</span><span id="line-43">import org.junit.jupiter.api.Test;</span>
      +<span class="source-line-no">044</span><span id="line-44"></span>
      +<span class="source-line-no">045</span><span id="line-45">/**</span>
      +<span class="source-line-no">046</span><span id="line-46"> * @author Werner</span>
      +<span class="source-line-no">047</span><span id="line-47"> *</span>
      +<span class="source-line-no">048</span><span id="line-48"> */</span>
      +<span class="source-line-no">049</span><span id="line-49">public class UnitTest {</span>
      +<span class="source-line-no">050</span><span id="line-50">        private static final Number NULL_NUMBER = null;</span>
      +<span class="source-line-no">051</span><span id="line-51">        </span>
      +<span class="source-line-no">052</span><span id="line-52">    @SuppressWarnings("rawtypes")</span>
      +<span class="source-line-no">053</span><span id="line-53">    private Unit sut;</span>
      +<span class="source-line-no">054</span><span id="line-54"></span>
      +<span class="source-line-no">055</span><span id="line-55">    @BeforeEach</span>
      +<span class="source-line-no">056</span><span id="line-56">    public void init() {</span>
      +<span class="source-line-no">057</span><span id="line-57">        sut = TEST;</span>
      +<span class="source-line-no">058</span><span id="line-58">    }</span>
      +<span class="source-line-no">059</span><span id="line-59"></span>
      +<span class="source-line-no">060</span><span id="line-60">    /**</span>
      +<span class="source-line-no">061</span><span id="line-61">     * Test method for {@link javax.measure.test.EnumUnit#getSymbol()}.</span>
      +<span class="source-line-no">062</span><span id="line-62">     */</span>
      +<span class="source-line-no">063</span><span id="line-63">    @Test</span>
      +<span class="source-line-no">064</span><span id="line-64">    public void testGetSymbol() {</span>
      +<span class="source-line-no">065</span><span id="line-65">        assertNotNull(sut.getSymbol());</span>
      +<span class="source-line-no">066</span><span id="line-66">        assertEquals("t", sut.getSymbol());</span>
      +<span class="source-line-no">067</span><span id="line-67">    }</span>
      +<span class="source-line-no">068</span><span id="line-68"></span>
      +<span class="source-line-no">069</span><span id="line-69">    /**</span>
      +<span class="source-line-no">070</span><span id="line-70">     * Test method for {@link javax.measure.test.EnumUnit#getDimension()}.</span>
      +<span class="source-line-no">071</span><span id="line-71">     */</span>
      +<span class="source-line-no">072</span><span id="line-72">    @Test</span>
      +<span class="source-line-no">073</span><span id="line-73">    public void testGetDimension() {</span>
      +<span class="source-line-no">074</span><span id="line-74">        final Dimension dim = TestDimension.getInstance();</span>
      +<span class="source-line-no">075</span><span id="line-75">        assertEquals(dim, sut.getDimension());</span>
      +<span class="source-line-no">076</span><span id="line-76">    }</span>
      +<span class="source-line-no">077</span><span id="line-77"></span>
      +<span class="source-line-no">078</span><span id="line-78">    /**</span>
      +<span class="source-line-no">079</span><span id="line-79">     * Test method for {@link javax.measure.test.EnumUnit#isCompatible(javax.measure.Unit)}.</span>
      +<span class="source-line-no">080</span><span id="line-80">     */</span>
      +<span class="source-line-no">081</span><span id="line-81">    @SuppressWarnings("unchecked")</span>
      +<span class="source-line-no">082</span><span id="line-82">    @Test</span>
      +<span class="source-line-no">083</span><span id="line-83">    public void testIsCompatible() {</span>
      +<span class="source-line-no">084</span><span id="line-84">        assertTrue(sut.isCompatible(TEST));</span>
      +<span class="source-line-no">085</span><span id="line-85">    }</span>
      +<span class="source-line-no">086</span><span id="line-86">    </span>
      +<span class="source-line-no">087</span><span id="line-87">    /**</span>
      +<span class="source-line-no">088</span><span id="line-88">     * Test method for {@link javax.measure.test.EnumUnit#isEquivalentTo(javax.measure.Unit)}.</span>
      +<span class="source-line-no">089</span><span id="line-89">     */</span>
      +<span class="source-line-no">090</span><span id="line-90">    @SuppressWarnings("unchecked")</span>
      +<span class="source-line-no">091</span><span id="line-91">        @Test</span>
      +<span class="source-line-no">092</span><span id="line-92">    public void testIsEquivalentTo() {</span>
      +<span class="source-line-no">093</span><span id="line-93">        assertTrue(sut.isEquivalentTo(TEST));</span>
      +<span class="source-line-no">094</span><span id="line-94">    }</span>
      +<span class="source-line-no">095</span><span id="line-95"></span>
      +<span class="source-line-no">096</span><span id="line-96">    @Test</span>
      +<span class="source-line-no">097</span><span id="line-97">    public void testGetConverterTo() {</span>
      +<span class="source-line-no">098</span><span id="line-98">        assertThrows(UnconvertibleException.class, () -&gt; {</span>
      +<span class="source-line-no">099</span><span id="line-99">            sut = DistanceUnit.m;</span>
      +<span class="source-line-no">100</span><span id="line-100">            @SuppressWarnings("unchecked")</span>
      +<span class="source-line-no">101</span><span id="line-101">            UnitConverter converter = sut.getConverterTo(BaseUnit.ONE);</span>
      +<span class="source-line-no">102</span><span id="line-102">            assertNotNull(converter);</span>
      +<span class="source-line-no">103</span><span id="line-103">        });</span>
      +<span class="source-line-no">104</span><span id="line-104">    }</span>
      +<span class="source-line-no">105</span><span id="line-105">    </span>
      +<span class="source-line-no">106</span><span id="line-106">    @Test</span>
      +<span class="source-line-no">107</span><span id="line-107">    public void testDivideNull() {</span>
      +<span class="source-line-no">108</span><span id="line-108">        assertThrows(NullPointerException.class, () -&gt; {</span>
      +<span class="source-line-no">109</span><span id="line-109">            sut = DistanceUnit.m;          </span>
      +<span class="source-line-no">110</span><span id="line-110">            @SuppressWarnings({ "rawtypes", "unused" })</span>
      +<span class="source-line-no">111</span><span id="line-111">                        Unit result = sut.divide(NULL_NUMBER);</span>
      +<span class="source-line-no">112</span><span id="line-112">        });</span>
      +<span class="source-line-no">113</span><span id="line-113">    }</span>
      +<span class="source-line-no">114</span><span id="line-114">    </span>
      +<span class="source-line-no">115</span><span id="line-115">    @Test</span>
      +<span class="source-line-no">116</span><span id="line-116">    public void testMultiplyNull() {</span>
      +<span class="source-line-no">117</span><span id="line-117">        assertThrows(NullPointerException.class, () -&gt; {</span>
      +<span class="source-line-no">118</span><span id="line-118">            sut = DistanceUnit.m;          </span>
      +<span class="source-line-no">119</span><span id="line-119">            @SuppressWarnings({ "unused", "rawtypes" })</span>
      +<span class="source-line-no">120</span><span id="line-120">                        Unit result = sut.multiply(NULL_NUMBER);</span>
      +<span class="source-line-no">121</span><span id="line-121">        });</span>
      +<span class="source-line-no">122</span><span id="line-122">    }</span>
      +<span class="source-line-no">123</span><span id="line-123">    </span>
      +<span class="source-line-no">124</span><span id="line-124">    @Test</span>
      +<span class="source-line-no">125</span><span id="line-125">    public void testShiftNull() {</span>
      +<span class="source-line-no">126</span><span id="line-126">        assertThrows(NullPointerException.class, () -&gt; {</span>
      +<span class="source-line-no">127</span><span id="line-127">            sut = DistanceUnit.m;          </span>
      +<span class="source-line-no">128</span><span id="line-128">            @SuppressWarnings({ "unused", "rawtypes" })</span>
      +<span class="source-line-no">129</span><span id="line-129">                        Unit result = sut.shift(NULL_NUMBER);</span>
      +<span class="source-line-no">130</span><span id="line-130">        });</span>
      +<span class="source-line-no">131</span><span id="line-131">    }</span>
      +<span class="source-line-no">132</span><span id="line-132">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/format/MeasurementParseTest.html b/docs/site/testapidocs/src-html/javax/measure/test/format/MeasurementParseTest.html
      new file mode 100644
      index 00000000..3b41d72c
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/format/MeasurementParseTest.html
      @@ -0,0 +1,147 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.format, class: MeasurementParseTest">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.format;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import javax.measure.format.MeasurementParseException;</span>
      +<span class="source-line-no">033</span><span id="line-33"></span>
      +<span class="source-line-no">034</span><span id="line-34">import org.junit.jupiter.api.Test;</span>
      +<span class="source-line-no">035</span><span id="line-35">import static org.junit.jupiter.api.Assertions.*;</span>
      +<span class="source-line-no">036</span><span id="line-36"></span>
      +<span class="source-line-no">037</span><span id="line-37">/**</span>
      +<span class="source-line-no">038</span><span id="line-38"> * Measurement Format Tests</span>
      +<span class="source-line-no">039</span><span id="line-39"> */</span>
      +<span class="source-line-no">040</span><span id="line-40">public class MeasurementParseTest {</span>
      +<span class="source-line-no">041</span><span id="line-41"></span>
      +<span class="source-line-no">042</span><span id="line-42">    @Test</span>
      +<span class="source-line-no">043</span><span id="line-43">    public void testExceptionWithMessage() {</span>
      +<span class="source-line-no">044</span><span id="line-44">        assertThrows(MeasurementParseException.class, () -&gt; {</span>
      +<span class="source-line-no">045</span><span id="line-45">            throw new MeasurementParseException("Error");</span>
      +<span class="source-line-no">046</span><span id="line-46">        });</span>
      +<span class="source-line-no">047</span><span id="line-47">    }</span>
      +<span class="source-line-no">048</span><span id="line-48"></span>
      +<span class="source-line-no">049</span><span id="line-49">    @Test</span>
      +<span class="source-line-no">050</span><span id="line-50">    public void testOldExceptionWithMessageDataAndPos() {</span>
      +<span class="source-line-no">051</span><span id="line-51">        assertThrows(MeasurementParseException.class, () -&gt; {</span>
      +<span class="source-line-no">052</span><span id="line-52">            throw new MeasurementParseException("Error", " ", 0);</span>
      +<span class="source-line-no">053</span><span id="line-53">        });</span>
      +<span class="source-line-no">054</span><span id="line-54">    }</span>
      +<span class="source-line-no">055</span><span id="line-55"></span>
      +<span class="source-line-no">056</span><span id="line-56">    @Test</span>
      +<span class="source-line-no">057</span><span id="line-57">    public void testOldExceptionWithMessageAndPos() {</span>
      +<span class="source-line-no">058</span><span id="line-58">        assertThrows(MeasurementParseException.class, () -&gt; {</span>
      +<span class="source-line-no">059</span><span id="line-59">            throw new MeasurementParseException("Error", 0);</span>
      +<span class="source-line-no">060</span><span id="line-60">        });</span>
      +<span class="source-line-no">061</span><span id="line-61">    }</span>
      +<span class="source-line-no">062</span><span id="line-62"></span>
      +<span class="source-line-no">063</span><span id="line-63">    @Test</span>
      +<span class="source-line-no">064</span><span id="line-64">    public void testOldExceptionWithCause() {</span>
      +<span class="source-line-no">065</span><span id="line-65">        assertThrows(MeasurementParseException.class, () -&gt; {</span>
      +<span class="source-line-no">066</span><span id="line-66">            throw new MeasurementParseException(new IllegalArgumentException("Error"));</span>
      +<span class="source-line-no">067</span><span id="line-67">        });</span>
      +<span class="source-line-no">068</span><span id="line-68">    }</span>
      +<span class="source-line-no">069</span><span id="line-69">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/format/QuantityFormatTest.html b/docs/site/testapidocs/src-html/javax/measure/test/format/QuantityFormatTest.html
      new file mode 100644
      index 00000000..1a80bc5a
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/format/QuantityFormatTest.html
      @@ -0,0 +1,182 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.format, class: QuantityFormatTest">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.format;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import static org.junit.jupiter.api.Assertions.*;</span>
      +<span class="source-line-no">033</span><span id="line-33"></span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.Quantity;</span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.format.MeasurementParseException;</span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.format.QuantityFormat;</span>
      +<span class="source-line-no">037</span><span id="line-37">import javax.measure.quantity.Length;</span>
      +<span class="source-line-no">038</span><span id="line-38">import javax.measure.test.quantity.DistanceQuantity;</span>
      +<span class="source-line-no">039</span><span id="line-39">import javax.measure.test.unit.DistanceUnit;</span>
      +<span class="source-line-no">040</span><span id="line-40">import org.junit.jupiter.api.BeforeEach;</span>
      +<span class="source-line-no">041</span><span id="line-41">import org.junit.jupiter.api.Test;</span>
      +<span class="source-line-no">042</span><span id="line-42"></span>
      +<span class="source-line-no">043</span><span id="line-43">/**</span>
      +<span class="source-line-no">044</span><span id="line-44"> * @author &lt;a href="mailto:werner@uom.technology"&gt;Werner Keil&lt;/a&gt;</span>
      +<span class="source-line-no">045</span><span id="line-45"> *</span>
      +<span class="source-line-no">046</span><span id="line-46"> */</span>
      +<span class="source-line-no">047</span><span id="line-47">public class QuantityFormatTest {</span>
      +<span class="source-line-no">048</span><span id="line-48">    @SuppressWarnings("unused")</span>
      +<span class="source-line-no">049</span><span id="line-49">    private Quantity&lt;Length&gt; sut;</span>
      +<span class="source-line-no">050</span><span id="line-50">    private QuantityFormat format;</span>
      +<span class="source-line-no">051</span><span id="line-51"></span>
      +<span class="source-line-no">052</span><span id="line-52">    @BeforeEach</span>
      +<span class="source-line-no">053</span><span id="line-53">    public void init() {</span>
      +<span class="source-line-no">054</span><span id="line-54">        sut = new DistanceQuantity(10, DistanceUnit.m);</span>
      +<span class="source-line-no">055</span><span id="line-55">        format = SimpleTestQuantityFormat.getInstance();</span>
      +<span class="source-line-no">056</span><span id="line-56">    }</span>
      +<span class="source-line-no">057</span><span id="line-57"></span>
      +<span class="source-line-no">058</span><span id="line-58">    @Test</span>
      +<span class="source-line-no">059</span><span id="line-59">    public void testParseSimple() {</span>
      +<span class="source-line-no">060</span><span id="line-60">        Quantity&lt;?&gt; q = format.parse("1 m");</span>
      +<span class="source-line-no">061</span><span id="line-61">        assertNotNull(q);</span>
      +<span class="source-line-no">062</span><span id="line-62">        assertEquals("m", q.getUnit().getSymbol());</span>
      +<span class="source-line-no">063</span><span id="line-63">        assertEquals(1d, q.getValue());</span>
      +<span class="source-line-no">064</span><span id="line-64">    }</span>
      +<span class="source-line-no">065</span><span id="line-65"></span>
      +<span class="source-line-no">066</span><span id="line-66">    @Test</span>
      +<span class="source-line-no">067</span><span id="line-67">    public void testParseIrregularString() {</span>
      +<span class="source-line-no">068</span><span id="line-68">        assertThrows(MeasurementParseException.class, () -&gt; {</span>
      +<span class="source-line-no">069</span><span id="line-69">            Quantity&lt;?&gt; u = format.parse("bl//^--1a");</span>
      +<span class="source-line-no">070</span><span id="line-70">            System.out.println(u);</span>
      +<span class="source-line-no">071</span><span id="line-71">        });</span>
      +<span class="source-line-no">072</span><span id="line-72">    }</span>
      +<span class="source-line-no">073</span><span id="line-73"></span>
      +<span class="source-line-no">074</span><span id="line-74">    @Test</span>
      +<span class="source-line-no">075</span><span id="line-75">    public void testParserException() {</span>
      +<span class="source-line-no">076</span><span id="line-76">        assertThrows(MeasurementParseException.class, () -&gt; {</span>
      +<span class="source-line-no">077</span><span id="line-77">            throw new MeasurementParseException(new IllegalArgumentException());</span>
      +<span class="source-line-no">078</span><span id="line-78">        });</span>
      +<span class="source-line-no">079</span><span id="line-79">    }</span>
      +<span class="source-line-no">080</span><span id="line-80"></span>
      +<span class="source-line-no">081</span><span id="line-81">    @Test</span>
      +<span class="source-line-no">082</span><span id="line-82">    public void testParserExceptionWithPosition() {</span>
      +<span class="source-line-no">083</span><span id="line-83">        MeasurementParseException pe = assertThrows(MeasurementParseException.class, () -&gt; {</span>
      +<span class="source-line-no">084</span><span id="line-84">            throw new MeasurementParseException("test", 1);</span>
      +<span class="source-line-no">085</span><span id="line-85"></span>
      +<span class="source-line-no">086</span><span id="line-86">        });</span>
      +<span class="source-line-no">087</span><span id="line-87">        assertEquals(1, pe.getPosition());</span>
      +<span class="source-line-no">088</span><span id="line-88">        assertEquals("test", pe.getParsedString());</span>
      +<span class="source-line-no">089</span><span id="line-89">    }</span>
      +<span class="source-line-no">090</span><span id="line-90"></span>
      +<span class="source-line-no">091</span><span id="line-91">    @Test</span>
      +<span class="source-line-no">092</span><span id="line-92">    public void testParserExceptionWithNullString() {</span>
      +<span class="source-line-no">093</span><span id="line-93">        MeasurementParseException pe = assertThrows(MeasurementParseException.class, () -&gt; {</span>
      +<span class="source-line-no">094</span><span id="line-94">            throw new MeasurementParseException(null, 0);</span>
      +<span class="source-line-no">095</span><span id="line-95">        });</span>
      +<span class="source-line-no">096</span><span id="line-96">        assertEquals(0, pe.getPosition());</span>
      +<span class="source-line-no">097</span><span id="line-97">        assertNull(pe.getParsedString());</span>
      +<span class="source-line-no">098</span><span id="line-98">    }</span>
      +<span class="source-line-no">099</span><span id="line-99"></span>
      +<span class="source-line-no">100</span><span id="line-100">    @Test</span>
      +<span class="source-line-no">101</span><span id="line-101">    public void testLocalSensitive() {</span>
      +<span class="source-line-no">102</span><span id="line-102">        assertFalse(format.isLocaleSensitive());</span>
      +<span class="source-line-no">103</span><span id="line-103">    }</span>
      +<span class="source-line-no">104</span><span id="line-104">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/format/SimpleTestUnitFormat.html b/docs/site/testapidocs/src-html/javax/measure/test/format/SimpleTestUnitFormat.html
      new file mode 100644
      index 00000000..949b1dcd
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/format/SimpleTestUnitFormat.html
      @@ -0,0 +1,169 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.format, class: SimpleTestUnitFormat">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.format;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import java.io.IOException;</span>
      +<span class="source-line-no">033</span><span id="line-33">import java.util.HashMap;</span>
      +<span class="source-line-no">034</span><span id="line-34">import java.util.Map;</span>
      +<span class="source-line-no">035</span><span id="line-35"></span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.Unit;</span>
      +<span class="source-line-no">037</span><span id="line-37">import javax.measure.format.UnitFormat;</span>
      +<span class="source-line-no">038</span><span id="line-38"></span>
      +<span class="source-line-no">039</span><span id="line-39">/**</span>
      +<span class="source-line-no">040</span><span id="line-40"> * Provides a simple interface for formatting and parsing {@linkplain Unit units}.</span>
      +<span class="source-line-no">041</span><span id="line-41"> *</span>
      +<span class="source-line-no">042</span><span id="line-42"> * @author &lt;a href="mailto:werner@uom.technology"&gt;Werner Keil&lt;/a&gt;</span>
      +<span class="source-line-no">043</span><span id="line-43"> * @version 1.0, February 13, 2021</span>
      +<span class="source-line-no">044</span><span id="line-44"> */</span>
      +<span class="source-line-no">045</span><span id="line-45">public class SimpleTestUnitFormat extends TestUnitFormat {</span>
      +<span class="source-line-no">046</span><span id="line-46">    private final Map&lt;String, String&gt; symbolMap = new HashMap&lt;&gt;();</span>
      +<span class="source-line-no">047</span><span id="line-47"></span>
      +<span class="source-line-no">048</span><span id="line-48">    private static final TestUnitFormat DEFAULT = new SimpleTestUnitFormat();</span>
      +<span class="source-line-no">049</span><span id="line-49"></span>
      +<span class="source-line-no">050</span><span id="line-50">    // /////////////////</span>
      +<span class="source-line-no">051</span><span id="line-51">    // Class methods //</span>
      +<span class="source-line-no">052</span><span id="line-52">    // /////////////////</span>
      +<span class="source-line-no">053</span><span id="line-53"></span>
      +<span class="source-line-no">054</span><span id="line-54">    /**</span>
      +<span class="source-line-no">055</span><span id="line-55">     * Returns the instance for formatting and parsing using case insensitive symbols</span>
      +<span class="source-line-no">056</span><span id="line-56">     @return the default instance</span>
      +<span class="source-line-no">057</span><span id="line-57">     */</span>
      +<span class="source-line-no">058</span><span id="line-58">    public static UnitFormat geInstance() {</span>
      +<span class="source-line-no">059</span><span id="line-59">        return DEFAULT;</span>
      +<span class="source-line-no">060</span><span id="line-60">    }</span>
      +<span class="source-line-no">061</span><span id="line-61"></span>
      +<span class="source-line-no">062</span><span id="line-62">    // ////////////////</span>
      +<span class="source-line-no">063</span><span id="line-63">    // Constructors //</span>
      +<span class="source-line-no">064</span><span id="line-64">    // ////////////////</span>
      +<span class="source-line-no">065</span><span id="line-65">    /**</span>
      +<span class="source-line-no">066</span><span id="line-66">     * Base constructor.</span>
      +<span class="source-line-no">067</span><span id="line-67">     */</span>
      +<span class="source-line-no">068</span><span id="line-68">    private SimpleTestUnitFormat() {</span>
      +<span class="source-line-no">069</span><span id="line-69">    }</span>
      +<span class="source-line-no">070</span><span id="line-70"></span>
      +<span class="source-line-no">071</span><span id="line-71">    // //////////////</span>
      +<span class="source-line-no">072</span><span id="line-72">    // Formatting //</span>
      +<span class="source-line-no">073</span><span id="line-73">    // //////////////</span>
      +<span class="source-line-no">074</span><span id="line-74">    public Appendable format(final Unit&lt;?&gt; unit, final Appendable appendable) throws IOException {</span>
      +<span class="source-line-no">075</span><span id="line-75">        CharSequence symbol;</span>
      +<span class="source-line-no">076</span><span id="line-76">        @SuppressWarnings("unlikely-arg-type")</span>
      +<span class="source-line-no">077</span><span id="line-77">        String mapSymbol = symbolMap.get(unit);</span>
      +<span class="source-line-no">078</span><span id="line-78">        if (mapSymbol != null) {</span>
      +<span class="source-line-no">079</span><span id="line-79">            symbol = mapSymbol;</span>
      +<span class="source-line-no">080</span><span id="line-80">        } else {</span>
      +<span class="source-line-no">081</span><span id="line-81">            throw new IllegalArgumentException("Symbol mapping for unit of type " + //$NON-NLS-1$</span>
      +<span class="source-line-no">082</span><span id="line-82">                unit.getClass().getName() + " has not been set " + //$NON-NLS-1$</span>
      +<span class="source-line-no">083</span><span id="line-83">                "(see UnitFormat.SymbolMap)"); //$NON-NLS-1$</span>
      +<span class="source-line-no">084</span><span id="line-84">        }</span>
      +<span class="source-line-no">085</span><span id="line-85">        appendable.append(symbol);</span>
      +<span class="source-line-no">086</span><span id="line-86">        return appendable;</span>
      +<span class="source-line-no">087</span><span id="line-87">    }</span>
      +<span class="source-line-no">088</span><span id="line-88"></span>
      +<span class="source-line-no">089</span><span id="line-89">    public void label(Unit&lt;?&gt; unit, String label) {</span>
      +<span class="source-line-no">090</span><span id="line-90">    }</span>
      +<span class="source-line-no">091</span><span id="line-91">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/format/UnitFormatTest.html b/docs/site/testapidocs/src-html/javax/measure/test/format/UnitFormatTest.html
      new file mode 100644
      index 00000000..66faafd4
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/format/UnitFormatTest.html
      @@ -0,0 +1,225 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.format, class: UnitFormatTest">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.format;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import static org.junit.jupiter.api.Assertions.*;</span>
      +<span class="source-line-no">033</span><span id="line-33"></span>
      +<span class="source-line-no">034</span><span id="line-34">import java.io.IOException;</span>
      +<span class="source-line-no">035</span><span id="line-35"></span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.Quantity;</span>
      +<span class="source-line-no">037</span><span id="line-37">import javax.measure.Unit;</span>
      +<span class="source-line-no">038</span><span id="line-38">import javax.measure.format.MeasurementParseException;</span>
      +<span class="source-line-no">039</span><span id="line-39">import javax.measure.format.UnitFormat;</span>
      +<span class="source-line-no">040</span><span id="line-40">import javax.measure.quantity.Length;</span>
      +<span class="source-line-no">041</span><span id="line-41">import javax.measure.quantity.Speed;</span>
      +<span class="source-line-no">042</span><span id="line-42">import javax.measure.test.quantity.DistanceQuantity;</span>
      +<span class="source-line-no">043</span><span id="line-43">import javax.measure.test.unit.DistanceUnit;</span>
      +<span class="source-line-no">044</span><span id="line-44">import javax.measure.test.unit.SpeedUnit;</span>
      +<span class="source-line-no">045</span><span id="line-45">import javax.measure.test.unit.TimeUnit;</span>
      +<span class="source-line-no">046</span><span id="line-46"></span>
      +<span class="source-line-no">047</span><span id="line-47">import org.junit.jupiter.api.BeforeEach;</span>
      +<span class="source-line-no">048</span><span id="line-48">import org.junit.jupiter.api.Test;</span>
      +<span class="source-line-no">049</span><span id="line-49"></span>
      +<span class="source-line-no">050</span><span id="line-50">/**</span>
      +<span class="source-line-no">051</span><span id="line-51"> * @author &lt;a href="mailto:werner@uom.technology"&gt;Werner Keil&lt;/a&gt;</span>
      +<span class="source-line-no">052</span><span id="line-52"> *</span>
      +<span class="source-line-no">053</span><span id="line-53"> */</span>
      +<span class="source-line-no">054</span><span id="line-54">public class UnitFormatTest {</span>
      +<span class="source-line-no">055</span><span id="line-55">    private Quantity&lt;Length&gt; sut;</span>
      +<span class="source-line-no">056</span><span id="line-56">    private UnitFormat format;</span>
      +<span class="source-line-no">057</span><span id="line-57"></span>
      +<span class="source-line-no">058</span><span id="line-58">    @BeforeEach</span>
      +<span class="source-line-no">059</span><span id="line-59">    public void init() {</span>
      +<span class="source-line-no">060</span><span id="line-60">        sut = new DistanceQuantity(10, DistanceUnit.m);</span>
      +<span class="source-line-no">061</span><span id="line-61">        format = SimpleTestUnitFormat.getInstance();</span>
      +<span class="source-line-no">062</span><span id="line-62">    }</span>
      +<span class="source-line-no">063</span><span id="line-63"></span>
      +<span class="source-line-no">064</span><span id="line-64">    @Test</span>
      +<span class="source-line-no">065</span><span id="line-65">    public void testFormatKph() {</span>
      +<span class="source-line-no">066</span><span id="line-66">        Unit&lt;Speed&gt; kph = SpeedUnit.kmh;</span>
      +<span class="source-line-no">067</span><span id="line-67">        assertEquals("km/h", kph.toString());</span>
      +<span class="source-line-no">068</span><span id="line-68">    }</span>
      +<span class="source-line-no">069</span><span id="line-69"></span>
      +<span class="source-line-no">070</span><span id="line-70">    @Test</span>
      +<span class="source-line-no">071</span><span id="line-71">    public void testParseSimple() {</span>
      +<span class="source-line-no">072</span><span id="line-72">        assertThrows(MeasurementParseException.class, () -&gt; {</span>
      +<span class="source-line-no">073</span><span id="line-73">            Unit&lt;?&gt; u = format.parse("s");</span>
      +<span class="source-line-no">074</span><span id="line-74">            assertNotNull(u);</span>
      +<span class="source-line-no">075</span><span id="line-75">            assertEquals("s", u.getSymbol());</span>
      +<span class="source-line-no">076</span><span id="line-76">        });</span>
      +<span class="source-line-no">077</span><span id="line-77">    }</span>
      +<span class="source-line-no">078</span><span id="line-78"></span>
      +<span class="source-line-no">079</span><span id="line-79">    @Test</span>
      +<span class="source-line-no">080</span><span id="line-80">    public void testFormatFromQuantity() {</span>
      +<span class="source-line-no">081</span><span id="line-81">        assertThrows(IllegalArgumentException.class, () -&gt; {</span>
      +<span class="source-line-no">082</span><span id="line-82">            final Appendable a = new StringBuilder();</span>
      +<span class="source-line-no">083</span><span id="line-83">            try {</span>
      +<span class="source-line-no">084</span><span id="line-84">                format.format(DistanceUnit.m, a);</span>
      +<span class="source-line-no">085</span><span id="line-85">            } catch (IOException e) {</span>
      +<span class="source-line-no">086</span><span id="line-86">                fail(e.getMessage());</span>
      +<span class="source-line-no">087</span><span id="line-87">            }</span>
      +<span class="source-line-no">088</span><span id="line-88">            assertEquals(DistanceUnit.m, sut.getUnit());</span>
      +<span class="source-line-no">089</span><span id="line-89">            assertEquals("m", a.toString());</span>
      +<span class="source-line-no">090</span><span id="line-90"></span>
      +<span class="source-line-no">091</span><span id="line-91">            final Appendable a2 = new StringBuilder();</span>
      +<span class="source-line-no">092</span><span id="line-92">            @SuppressWarnings("unchecked")</span>
      +<span class="source-line-no">093</span><span id="line-93">            Unit&lt;Speed&gt; v = (Unit&lt;Speed&gt;) sut.getUnit().divide(TimeUnit.s);</span>
      +<span class="source-line-no">094</span><span id="line-94">            try {</span>
      +<span class="source-line-no">095</span><span id="line-95">                format.format(v, a2);</span>
      +<span class="source-line-no">096</span><span id="line-96">            } catch (IOException e) {</span>
      +<span class="source-line-no">097</span><span id="line-97">                fail(e.getMessage());</span>
      +<span class="source-line-no">098</span><span id="line-98">            }</span>
      +<span class="source-line-no">099</span><span id="line-99">            assertEquals("m/s", a2.toString());</span>
      +<span class="source-line-no">100</span><span id="line-100">        });</span>
      +<span class="source-line-no">101</span><span id="line-101"></span>
      +<span class="source-line-no">102</span><span id="line-102">    }</span>
      +<span class="source-line-no">103</span><span id="line-103"></span>
      +<span class="source-line-no">104</span><span id="line-104">    @Test</span>
      +<span class="source-line-no">105</span><span id="line-105">    public void testParseIrregularString() {</span>
      +<span class="source-line-no">106</span><span id="line-106">        assertThrows(MeasurementParseException.class, () -&gt; {</span>
      +<span class="source-line-no">107</span><span id="line-107">            @SuppressWarnings("unused")</span>
      +<span class="source-line-no">108</span><span id="line-108">            Unit&lt;?&gt; u = format.parse("bl//^--1a");</span>
      +<span class="source-line-no">109</span><span id="line-109">        });</span>
      +<span class="source-line-no">110</span><span id="line-110">    }</span>
      +<span class="source-line-no">111</span><span id="line-111"></span>
      +<span class="source-line-no">112</span><span id="line-112">    @Test</span>
      +<span class="source-line-no">113</span><span id="line-113">    public void testParserException() {</span>
      +<span class="source-line-no">114</span><span id="line-114">        assertThrows(MeasurementParseException.class, () -&gt; {</span>
      +<span class="source-line-no">115</span><span id="line-115">            throw new MeasurementParseException(new IllegalArgumentException());</span>
      +<span class="source-line-no">116</span><span id="line-116">        });</span>
      +<span class="source-line-no">117</span><span id="line-117">    }</span>
      +<span class="source-line-no">118</span><span id="line-118"></span>
      +<span class="source-line-no">119</span><span id="line-119">    @Test</span>
      +<span class="source-line-no">120</span><span id="line-120">    public void testParserExceptionWithPosition() {</span>
      +<span class="source-line-no">121</span><span id="line-121">        MeasurementParseException pe = assertThrows(MeasurementParseException.class, () -&gt; {</span>
      +<span class="source-line-no">122</span><span id="line-122">            throw new MeasurementParseException("test", 1);</span>
      +<span class="source-line-no">123</span><span id="line-123">        });</span>
      +<span class="source-line-no">124</span><span id="line-124">        assertEquals(1, pe.getPosition());</span>
      +<span class="source-line-no">125</span><span id="line-125">        assertEquals("test", pe.getParsedString());</span>
      +<span class="source-line-no">126</span><span id="line-126">    }</span>
      +<span class="source-line-no">127</span><span id="line-127"></span>
      +<span class="source-line-no">128</span><span id="line-128">    @Test</span>
      +<span class="source-line-no">129</span><span id="line-129">    public void testParserExceptionWithNullString() {</span>
      +<span class="source-line-no">130</span><span id="line-130">        final MeasurementParseException pe = assertThrows(MeasurementParseException.class, () -&gt; {</span>
      +<span class="source-line-no">131</span><span id="line-131">            throw new MeasurementParseException(null, 0);</span>
      +<span class="source-line-no">132</span><span id="line-132">        });</span>
      +<span class="source-line-no">133</span><span id="line-133">        assertEquals(0, pe.getPosition());</span>
      +<span class="source-line-no">134</span><span id="line-134">        assertNull(pe.getParsedString());</span>
      +<span class="source-line-no">135</span><span id="line-135">    }</span>
      +<span class="source-line-no">136</span><span id="line-136"></span>
      +<span class="source-line-no">137</span><span id="line-137">    @Test</span>
      +<span class="source-line-no">138</span><span id="line-138">    public void testLocalSensitive() {</span>
      +<span class="source-line-no">139</span><span id="line-139">        assertFalse(format.isLocaleSensitive());</span>
      +<span class="source-line-no">140</span><span id="line-140">    }</span>
      +<span class="source-line-no">141</span><span id="line-141"></span>
      +<span class="source-line-no">142</span><span id="line-142">    @Test</span>
      +<span class="source-line-no">143</span><span id="line-143">    public void testMoreLocalSensitive() {</span>
      +<span class="source-line-no">144</span><span id="line-144">        final UnitFormat simple = SimpleTestUnitFormat.getInstance();</span>
      +<span class="source-line-no">145</span><span id="line-145">        assertFalse(simple.isLocaleSensitive());</span>
      +<span class="source-line-no">146</span><span id="line-146">    }</span>
      +<span class="source-line-no">147</span><span id="line-147">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/function/MultiplyConverter.html b/docs/site/testapidocs/src-html/javax/measure/test/function/MultiplyConverter.html
      new file mode 100644
      index 00000000..d702f7b3
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/function/MultiplyConverter.html
      @@ -0,0 +1,226 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.function, class: MultiplyConverter">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.function;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import javax.measure.UnitConverter;</span>
      +<span class="source-line-no">033</span><span id="line-33">import javax.measure.test.TestConverter;</span>
      +<span class="source-line-no">034</span><span id="line-34"></span>
      +<span class="source-line-no">035</span><span id="line-35">import java.util.Objects;</span>
      +<span class="source-line-no">036</span><span id="line-36"></span>
      +<span class="source-line-no">037</span><span id="line-37">/**</span>
      +<span class="source-line-no">038</span><span id="line-38"> * &lt;p&gt;</span>
      +<span class="source-line-no">039</span><span id="line-39"> * This class represents a converter multiplying numeric values by a constant scaling factor (&lt;code&gt;double&lt;/code&gt; based).</span>
      +<span class="source-line-no">040</span><span id="line-40"> * &lt;/p&gt;</span>
      +<span class="source-line-no">041</span><span id="line-41"> *</span>
      +<span class="source-line-no">042</span><span id="line-42"> * @author &lt;a href="mailto:jean-marie@dautelle.com"&gt;Jean-Marie Dautelle&lt;/a&gt;</span>
      +<span class="source-line-no">043</span><span id="line-43"> * @author &lt;a href="mailto:werner@uom.technology"&gt;Werner Keil&lt;/a&gt;</span>
      +<span class="source-line-no">044</span><span id="line-44"> * @version 1.1, June 28, 2019</span>
      +<span class="source-line-no">045</span><span id="line-45"> * @since 2.0</span>
      +<span class="source-line-no">046</span><span id="line-46"> */</span>
      +<span class="source-line-no">047</span><span id="line-47">public final class MultiplyConverter extends TestConverter implements Comparable&lt;UnitConverter&gt; {</span>
      +<span class="source-line-no">048</span><span id="line-48"></span>
      +<span class="source-line-no">049</span><span id="line-49">    /**</span>
      +<span class="source-line-no">050</span><span id="line-50">     * Holds the scale factor.</span>
      +<span class="source-line-no">051</span><span id="line-51">     */</span>
      +<span class="source-line-no">052</span><span id="line-52">    private double factor;</span>
      +<span class="source-line-no">053</span><span id="line-53"></span>
      +<span class="source-line-no">054</span><span id="line-54">    /**</span>
      +<span class="source-line-no">055</span><span id="line-55">     * Creates a multiply converter with the specified scale factor.</span>
      +<span class="source-line-no">056</span><span id="line-56">     *</span>
      +<span class="source-line-no">057</span><span id="line-57">     * @param factor</span>
      +<span class="source-line-no">058</span><span id="line-58">     *          the scaling factor.</span>
      +<span class="source-line-no">059</span><span id="line-59">     * @throws IllegalArgumentException</span>
      +<span class="source-line-no">060</span><span id="line-60">     *           if coefficient is &lt;code&gt;1.0&lt;/code&gt; (would result in identity converter)</span>
      +<span class="source-line-no">061</span><span id="line-61">     */</span>
      +<span class="source-line-no">062</span><span id="line-62">    public MultiplyConverter(double factor) {</span>
      +<span class="source-line-no">063</span><span id="line-63">        if (factor == 1.0)</span>
      +<span class="source-line-no">064</span><span id="line-64">            throw new IllegalArgumentException("Would result in identity converter");</span>
      +<span class="source-line-no">065</span><span id="line-65">        this.factor = factor;</span>
      +<span class="source-line-no">066</span><span id="line-66">    }</span>
      +<span class="source-line-no">067</span><span id="line-67">    </span>
      +<span class="source-line-no">068</span><span id="line-68">    /**</span>
      +<span class="source-line-no">069</span><span id="line-69">     * Creates a multiply converter with the specified scale factor.</span>
      +<span class="source-line-no">070</span><span id="line-70">     *</span>
      +<span class="source-line-no">071</span><span id="line-71">     * @param factor</span>
      +<span class="source-line-no">072</span><span id="line-72">     *          the scaling factor.</span>
      +<span class="source-line-no">073</span><span id="line-73">     * @throws IllegalArgumentException</span>
      +<span class="source-line-no">074</span><span id="line-74">     *           if coefficient is &lt;code&gt;1.0&lt;/code&gt; (would result in identity converter)</span>
      +<span class="source-line-no">075</span><span id="line-75">     */</span>
      +<span class="source-line-no">076</span><span id="line-76">    public MultiplyConverter(Number factor) {</span>
      +<span class="source-line-no">077</span><span id="line-77">        this(factor.doubleValue());</span>
      +<span class="source-line-no">078</span><span id="line-78">    }</span>
      +<span class="source-line-no">079</span><span id="line-79"></span>
      +<span class="source-line-no">080</span><span id="line-80">    /**</span>
      +<span class="source-line-no">081</span><span id="line-81">     * Returns the scale factor of this converter.</span>
      +<span class="source-line-no">082</span><span id="line-82">     *</span>
      +<span class="source-line-no">083</span><span id="line-83">     * @return the scale factor.</span>
      +<span class="source-line-no">084</span><span id="line-84">     */</span>
      +<span class="source-line-no">085</span><span id="line-85">    public double getFactor() {</span>
      +<span class="source-line-no">086</span><span id="line-86">        return factor;</span>
      +<span class="source-line-no">087</span><span id="line-87">    }</span>
      +<span class="source-line-no">088</span><span id="line-88"></span>
      +<span class="source-line-no">089</span><span id="line-89">    @Override</span>
      +<span class="source-line-no">090</span><span id="line-90">    public UnitConverter concatenate(UnitConverter converter) {</span>
      +<span class="source-line-no">091</span><span id="line-91">        if (!(converter instanceof MultiplyConverter))</span>
      +<span class="source-line-no">092</span><span id="line-92">            return super.concatenate(converter);</span>
      +<span class="source-line-no">093</span><span id="line-93">        double newfactor = factor * ((MultiplyConverter) converter).factor;</span>
      +<span class="source-line-no">094</span><span id="line-94">        return newfactor == 1.0 ? IDENTITY : new MultiplyConverter(newfactor);</span>
      +<span class="source-line-no">095</span><span id="line-95">    }</span>
      +<span class="source-line-no">096</span><span id="line-96"></span>
      +<span class="source-line-no">097</span><span id="line-97">    @Override</span>
      +<span class="source-line-no">098</span><span id="line-98">    public MultiplyConverter inverse() {</span>
      +<span class="source-line-no">099</span><span id="line-99">        return new MultiplyConverter(1.0 / factor);</span>
      +<span class="source-line-no">100</span><span id="line-100">    }</span>
      +<span class="source-line-no">101</span><span id="line-101"></span>
      +<span class="source-line-no">102</span><span id="line-102">    @Override</span>
      +<span class="source-line-no">103</span><span id="line-103">    public double convert(double value) {</span>
      +<span class="source-line-no">104</span><span id="line-104">        return value * factor;</span>
      +<span class="source-line-no">105</span><span id="line-105">    }</span>
      +<span class="source-line-no">106</span><span id="line-106"></span>
      +<span class="source-line-no">107</span><span id="line-107">    @Override</span>
      +<span class="source-line-no">108</span><span id="line-108">    public final String toString() {</span>
      +<span class="source-line-no">109</span><span id="line-109">        return MultiplyConverter.class.getSimpleName() + "(" + factor + ")";</span>
      +<span class="source-line-no">110</span><span id="line-110">    }</span>
      +<span class="source-line-no">111</span><span id="line-111"></span>
      +<span class="source-line-no">112</span><span id="line-112">    @Override</span>
      +<span class="source-line-no">113</span><span id="line-113">    public boolean equals(Object obj) {</span>
      +<span class="source-line-no">114</span><span id="line-114">        if (this == obj) {</span>
      +<span class="source-line-no">115</span><span id="line-115">            return true;</span>
      +<span class="source-line-no">116</span><span id="line-116">        }</span>
      +<span class="source-line-no">117</span><span id="line-117">        if (obj instanceof MultiplyConverter) {</span>
      +<span class="source-line-no">118</span><span id="line-118">            MultiplyConverter that = (MultiplyConverter) obj;</span>
      +<span class="source-line-no">119</span><span id="line-119">            return Objects.equals(factor, that.factor);</span>
      +<span class="source-line-no">120</span><span id="line-120">        }</span>
      +<span class="source-line-no">121</span><span id="line-121">        return false;</span>
      +<span class="source-line-no">122</span><span id="line-122">    }</span>
      +<span class="source-line-no">123</span><span id="line-123"></span>
      +<span class="source-line-no">124</span><span id="line-124">    @Override</span>
      +<span class="source-line-no">125</span><span id="line-125">    public int hashCode() {</span>
      +<span class="source-line-no">126</span><span id="line-126">        return Objects.hashCode(factor);</span>
      +<span class="source-line-no">127</span><span id="line-127">    }</span>
      +<span class="source-line-no">128</span><span id="line-128"></span>
      +<span class="source-line-no">129</span><span id="line-129">    @Override</span>
      +<span class="source-line-no">130</span><span id="line-130">    public boolean isLinear() {</span>
      +<span class="source-line-no">131</span><span id="line-131">        return true;</span>
      +<span class="source-line-no">132</span><span id="line-132">    }</span>
      +<span class="source-line-no">133</span><span id="line-133"></span>
      +<span class="source-line-no">134</span><span id="line-134">    public Double getValue() {</span>
      +<span class="source-line-no">135</span><span id="line-135">        return factor;</span>
      +<span class="source-line-no">136</span><span id="line-136">    }</span>
      +<span class="source-line-no">137</span><span id="line-137"></span>
      +<span class="source-line-no">138</span><span id="line-138">    @Override</span>
      +<span class="source-line-no">139</span><span id="line-139">    public int compareTo(UnitConverter o) {</span>
      +<span class="source-line-no">140</span><span id="line-140">        if (this == o) {</span>
      +<span class="source-line-no">141</span><span id="line-141">            return 0;</span>
      +<span class="source-line-no">142</span><span id="line-142">        }</span>
      +<span class="source-line-no">143</span><span id="line-143">        if (o instanceof MultiplyConverter) {</span>
      +<span class="source-line-no">144</span><span id="line-144">            return getValue().compareTo(((MultiplyConverter) o).getValue());</span>
      +<span class="source-line-no">145</span><span id="line-145">        }</span>
      +<span class="source-line-no">146</span><span id="line-146">        return -1;</span>
      +<span class="source-line-no">147</span><span id="line-147">    }</span>
      +<span class="source-line-no">148</span><span id="line-148">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/quantity/AreaQuantity.html b/docs/site/testapidocs/src-html/javax/measure/test/quantity/AreaQuantity.html
      new file mode 100644
      index 00000000..2921fb30
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/quantity/AreaQuantity.html
      @@ -0,0 +1,254 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.quantity, class: AreaQuantity">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.quantity;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import javax.measure.Quantity;</span>
      +<span class="source-line-no">033</span><span id="line-33">import javax.measure.Unit;</span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.quantity.Area;</span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.test.unit.AreaUnit;</span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.test.unit.DistanceUnit;</span>
      +<span class="source-line-no">037</span><span id="line-37">import javax.measure.test.unit.VolumeUnit;</span>
      +<span class="source-line-no">038</span><span id="line-38"></span>
      +<span class="source-line-no">039</span><span id="line-39">/**</span>
      +<span class="source-line-no">040</span><span id="line-40"> * @author Werner Keil</span>
      +<span class="source-line-no">041</span><span id="line-41"> * @version 0.7</span>
      +<span class="source-line-no">042</span><span id="line-42"> */</span>
      +<span class="source-line-no">043</span><span id="line-43">public class AreaQuantity extends TestQuantity&lt;Area&gt; implements Area {</span>
      +<span class="source-line-no">044</span><span id="line-44">    public AreaQuantity() {</span>
      +<span class="source-line-no">045</span><span id="line-45">        super(Area.class);</span>
      +<span class="source-line-no">046</span><span id="line-46">    }</span>
      +<span class="source-line-no">047</span><span id="line-47"></span>
      +<span class="source-line-no">048</span><span id="line-48">    public AreaQuantity(double val, AreaUnit un) {</span>
      +<span class="source-line-no">049</span><span id="line-49">        this();</span>
      +<span class="source-line-no">050</span><span id="line-50">        value = val;</span>
      +<span class="source-line-no">051</span><span id="line-51">        unit = un;</span>
      +<span class="source-line-no">052</span><span id="line-52">        scalar = val * unit.getMultFactor();</span>
      +<span class="source-line-no">053</span><span id="line-53">    }</span>
      +<span class="source-line-no">054</span><span id="line-54"></span>
      +<span class="source-line-no">055</span><span id="line-55">    public AreaQuantity(Number val, Unit u) {</span>
      +<span class="source-line-no">056</span><span id="line-56">        this(val.doubleValue(), (AreaUnit) u);</span>
      +<span class="source-line-no">057</span><span id="line-57">    }</span>
      +<span class="source-line-no">058</span><span id="line-58"></span>
      +<span class="source-line-no">059</span><span id="line-59">    public AreaQuantity add(AreaQuantity d1) {</span>
      +<span class="source-line-no">060</span><span id="line-60">        AreaQuantity dn = new AreaQuantity();</span>
      +<span class="source-line-no">061</span><span id="line-61">        Object o = super.add(dn, this, d1, AreaUnit.REF_UNIT);</span>
      +<span class="source-line-no">062</span><span id="line-62">        return (AreaQuantity) o;</span>
      +<span class="source-line-no">063</span><span id="line-63">    }</span>
      +<span class="source-line-no">064</span><span id="line-64"></span>
      +<span class="source-line-no">065</span><span id="line-65">    public AreaQuantity subtract(AreaQuantity d1) {</span>
      +<span class="source-line-no">066</span><span id="line-66">        AreaQuantity dn = new AreaQuantity();</span>
      +<span class="source-line-no">067</span><span id="line-67">        Object o = super.subtract(dn, this, d1, AreaUnit.REF_UNIT);</span>
      +<span class="source-line-no">068</span><span id="line-68">        return (AreaQuantity) o;</span>
      +<span class="source-line-no">069</span><span id="line-69">    }</span>
      +<span class="source-line-no">070</span><span id="line-70"></span>
      +<span class="source-line-no">071</span><span id="line-71">    public boolean eq(AreaQuantity d1) {</span>
      +<span class="source-line-no">072</span><span id="line-72">        return super.eq(d1);</span>
      +<span class="source-line-no">073</span><span id="line-73">    }</span>
      +<span class="source-line-no">074</span><span id="line-74"></span>
      +<span class="source-line-no">075</span><span id="line-75">    public boolean ne(AreaQuantity d1) {</span>
      +<span class="source-line-no">076</span><span id="line-76">        return super.ne(d1);</span>
      +<span class="source-line-no">077</span><span id="line-77">    }</span>
      +<span class="source-line-no">078</span><span id="line-78"></span>
      +<span class="source-line-no">079</span><span id="line-79">    public boolean gt(AreaQuantity d1) {</span>
      +<span class="source-line-no">080</span><span id="line-80">        return super.gt(d1);</span>
      +<span class="source-line-no">081</span><span id="line-81">    }</span>
      +<span class="source-line-no">082</span><span id="line-82"></span>
      +<span class="source-line-no">083</span><span id="line-83">    public boolean lt(AreaQuantity d1) {</span>
      +<span class="source-line-no">084</span><span id="line-84">        return super.lt(d1);</span>
      +<span class="source-line-no">085</span><span id="line-85">    }</span>
      +<span class="source-line-no">086</span><span id="line-86"></span>
      +<span class="source-line-no">087</span><span id="line-87">    public boolean ge(AreaQuantity d1) {</span>
      +<span class="source-line-no">088</span><span id="line-88">        return super.ge(d1);</span>
      +<span class="source-line-no">089</span><span id="line-89">    }</span>
      +<span class="source-line-no">090</span><span id="line-90"></span>
      +<span class="source-line-no">091</span><span id="line-91">    public boolean le(AreaQuantity d1) {</span>
      +<span class="source-line-no">092</span><span id="line-92">        return super.le(d1);</span>
      +<span class="source-line-no">093</span><span id="line-93">    }</span>
      +<span class="source-line-no">094</span><span id="line-94"></span>
      +<span class="source-line-no">095</span><span id="line-95">    public AreaQuantity multiply(double v) {</span>
      +<span class="source-line-no">096</span><span id="line-96">        return new AreaQuantity(value * v, (AreaUnit) unit);</span>
      +<span class="source-line-no">097</span><span id="line-97">    }</span>
      +<span class="source-line-no">098</span><span id="line-98"></span>
      +<span class="source-line-no">099</span><span id="line-99">    public AreaQuantity divide(double v) {</span>
      +<span class="source-line-no">100</span><span id="line-100">        return new AreaQuantity(value / v, (AreaUnit) unit);</span>
      +<span class="source-line-no">101</span><span id="line-101">    }</span>
      +<span class="source-line-no">102</span><span id="line-102"></span>
      +<span class="source-line-no">103</span><span id="line-103">    // mixed type operations</span>
      +<span class="source-line-no">104</span><span id="line-104"></span>
      +<span class="source-line-no">105</span><span id="line-105">    public DistanceQuantity divide(DistanceQuantity d1) {</span>
      +<span class="source-line-no">106</span><span id="line-106">        AreaQuantity dq0 = convert(AreaUnit.sqmetre);</span>
      +<span class="source-line-no">107</span><span id="line-107">        DistanceQuantity dq1 = d1.convert(DistanceUnit.m);</span>
      +<span class="source-line-no">108</span><span id="line-108">        return new DistanceQuantity(dq0.value / dq1.value, DistanceUnit.m);</span>
      +<span class="source-line-no">109</span><span id="line-109">    }</span>
      +<span class="source-line-no">110</span><span id="line-110"></span>
      +<span class="source-line-no">111</span><span id="line-111">    public VolumeQuantity multiply(DistanceQuantity d1) {</span>
      +<span class="source-line-no">112</span><span id="line-112">        AreaQuantity dq0 = convert(AreaUnit.sqmetre);</span>
      +<span class="source-line-no">113</span><span id="line-113">        DistanceQuantity dq1 = d1.convert(DistanceUnit.m);</span>
      +<span class="source-line-no">114</span><span id="line-114">        return new VolumeQuantity(dq0.value * dq1.value, VolumeUnit.cumetre);</span>
      +<span class="source-line-no">115</span><span id="line-115">    }</span>
      +<span class="source-line-no">116</span><span id="line-116"></span>
      +<span class="source-line-no">117</span><span id="line-117">    public AreaQuantity convert(AreaUnit newUnit) {</span>
      +<span class="source-line-no">118</span><span id="line-118">        return new AreaQuantity(scalar / newUnit.getMultFactor(), newUnit);</span>
      +<span class="source-line-no">119</span><span id="line-119">    }</span>
      +<span class="source-line-no">120</span><span id="line-120"></span>
      +<span class="source-line-no">121</span><span id="line-121">    public String showInUnits(AreaUnit u, int precision) {</span>
      +<span class="source-line-no">122</span><span id="line-122">        return super.showInUnits(u, precision);</span>
      +<span class="source-line-no">123</span><span id="line-123">    }</span>
      +<span class="source-line-no">124</span><span id="line-124"></span>
      +<span class="source-line-no">125</span><span id="line-125">    public Quantity&lt;Area&gt; multiply(Number that) {</span>
      +<span class="source-line-no">126</span><span id="line-126">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">127</span><span id="line-127">        return null;</span>
      +<span class="source-line-no">128</span><span id="line-128">    }</span>
      +<span class="source-line-no">129</span><span id="line-129"></span>
      +<span class="source-line-no">130</span><span id="line-130">    public Quantity&lt;?&gt; divide(Quantity&lt;?&gt; that) {</span>
      +<span class="source-line-no">131</span><span id="line-131">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">132</span><span id="line-132">        return null;</span>
      +<span class="source-line-no">133</span><span id="line-133">    }</span>
      +<span class="source-line-no">134</span><span id="line-134"></span>
      +<span class="source-line-no">135</span><span id="line-135">    public Area to(Unit&lt;Area&gt; unit) {</span>
      +<span class="source-line-no">136</span><span id="line-136">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">137</span><span id="line-137">        return null;</span>
      +<span class="source-line-no">138</span><span id="line-138">    }</span>
      +<span class="source-line-no">139</span><span id="line-139"></span>
      +<span class="source-line-no">140</span><span id="line-140">    public Quantity&lt;Area&gt; subtract(Quantity&lt;Area&gt; that) {</span>
      +<span class="source-line-no">141</span><span id="line-141">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">142</span><span id="line-142">        return null;</span>
      +<span class="source-line-no">143</span><span id="line-143">    }</span>
      +<span class="source-line-no">144</span><span id="line-144"></span>
      +<span class="source-line-no">145</span><span id="line-145">    public Quantity&lt;Area&gt; add(Quantity&lt;Area&gt; that) {</span>
      +<span class="source-line-no">146</span><span id="line-146">        return add((AreaQuantity) that);</span>
      +<span class="source-line-no">147</span><span id="line-147">    }</span>
      +<span class="source-line-no">148</span><span id="line-148"></span>
      +<span class="source-line-no">149</span><span id="line-149">    public Quantity&lt;Area&gt; divide(Number that) {</span>
      +<span class="source-line-no">150</span><span id="line-150">        return divide(that.doubleValue());</span>
      +<span class="source-line-no">151</span><span id="line-151">    }</span>
      +<span class="source-line-no">152</span><span id="line-152"></span>
      +<span class="source-line-no">153</span><span id="line-153">    public Quantity&lt;Area&gt; inverse() {</span>
      +<span class="source-line-no">154</span><span id="line-154">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">155</span><span id="line-155">        return null;</span>
      +<span class="source-line-no">156</span><span id="line-156">    }</span>
      +<span class="source-line-no">157</span><span id="line-157"></span>
      +<span class="source-line-no">158</span><span id="line-158">    public Quantity&lt;?&gt; multiply(Quantity&lt;?&gt; that) {</span>
      +<span class="source-line-no">159</span><span id="line-159">        if (that.getClass().equals(DistanceQuantity.class)) {</span>
      +<span class="source-line-no">160</span><span id="line-160">            return multiply((DistanceQuantity) that);</span>
      +<span class="source-line-no">161</span><span id="line-161">        }</span>
      +<span class="source-line-no">162</span><span id="line-162">        return null;</span>
      +<span class="source-line-no">163</span><span id="line-163">    }</span>
      +<span class="source-line-no">164</span><span id="line-164"></span>
      +<span class="source-line-no">165</span><span id="line-165">    @SuppressWarnings({ "unchecked", "rawtypes" })</span>
      +<span class="source-line-no">166</span><span id="line-166">    public final &lt;T extends Quantity&lt;T&gt;&gt; Quantity&lt;T&gt; asType(Class&lt;T&gt; type) throws ClassCastException {</span>
      +<span class="source-line-no">167</span><span id="line-167">        this.getUnit().asType(type); // Raises ClassCastException is dimension</span>
      +<span class="source-line-no">168</span><span id="line-168">        // mismatches.</span>
      +<span class="source-line-no">169</span><span id="line-169">        return (Quantity) this;</span>
      +<span class="source-line-no">170</span><span id="line-170">    }</span>
      +<span class="source-line-no">171</span><span id="line-171"></span>
      +<span class="source-line-no">172</span><span id="line-172">    @Override</span>
      +<span class="source-line-no">173</span><span id="line-173">    public Quantity&lt;Area&gt; negate() {</span>
      +<span class="source-line-no">174</span><span id="line-174">        return new AreaQuantity(-value, getUnit());</span>
      +<span class="source-line-no">175</span><span id="line-175">    }</span>
      +<span class="source-line-no">176</span><span id="line-176">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/quantity/AreaQuantityTest.html b/docs/site/testapidocs/src-html/javax/measure/test/quantity/AreaQuantityTest.html
      new file mode 100644
      index 00000000..d25d82b9
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/quantity/AreaQuantityTest.html
      @@ -0,0 +1,245 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.quantity, class: AreaQuantityTest">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.quantity;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import static org.junit.jupiter.api.Assertions.assertEquals;</span>
      +<span class="source-line-no">033</span><span id="line-33">import static org.junit.jupiter.api.Assertions.assertNotNull;</span>
      +<span class="source-line-no">034</span><span id="line-34">import static org.junit.jupiter.api.Assertions.assertTrue;</span>
      +<span class="source-line-no">035</span><span id="line-35"></span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.Quantity;</span>
      +<span class="source-line-no">037</span><span id="line-37">import javax.measure.quantity.Volume;</span>
      +<span class="source-line-no">038</span><span id="line-38">import javax.measure.test.unit.AreaUnit;</span>
      +<span class="source-line-no">039</span><span id="line-39">import javax.measure.test.unit.DistanceUnit;</span>
      +<span class="source-line-no">040</span><span id="line-40">import javax.measure.test.unit.VolumeUnit;</span>
      +<span class="source-line-no">041</span><span id="line-41"></span>
      +<span class="source-line-no">042</span><span id="line-42">import org.junit.jupiter.api.BeforeEach;</span>
      +<span class="source-line-no">043</span><span id="line-43">import org.junit.jupiter.api.Test;</span>
      +<span class="source-line-no">044</span><span id="line-44"></span>
      +<span class="source-line-no">045</span><span id="line-45">/**</span>
      +<span class="source-line-no">046</span><span id="line-46"> * @author Werner Keil</span>
      +<span class="source-line-no">047</span><span id="line-47"> */</span>
      +<span class="source-line-no">048</span><span id="line-48">public class AreaQuantityTest {</span>
      +<span class="source-line-no">049</span><span id="line-49"></span>
      +<span class="source-line-no">050</span><span id="line-50">    AreaQuantity area;</span>
      +<span class="source-line-no">051</span><span id="line-51">    AreaUnit m2;</span>
      +<span class="source-line-no">052</span><span id="line-52"></span>
      +<span class="source-line-no">053</span><span id="line-53">    @BeforeEach</span>
      +<span class="source-line-no">054</span><span id="line-54">    public void setUp() {</span>
      +<span class="source-line-no">055</span><span id="line-55">        m2 = AreaUnit.sqmetre;</span>
      +<span class="source-line-no">056</span><span id="line-56">        area = new AreaQuantity(100, m2);</span>
      +<span class="source-line-no">057</span><span id="line-57">    }</span>
      +<span class="source-line-no">058</span><span id="line-58"></span>
      +<span class="source-line-no">059</span><span id="line-59">    @Test</span>
      +<span class="source-line-no">060</span><span id="line-60">    public void testAreaQuantity() {</span>
      +<span class="source-line-no">061</span><span id="line-61">        assertNotNull(area);</span>
      +<span class="source-line-no">062</span><span id="line-62">    }</span>
      +<span class="source-line-no">063</span><span id="line-63"></span>
      +<span class="source-line-no">064</span><span id="line-64">    @Test</span>
      +<span class="source-line-no">065</span><span id="line-65">    public void testAdd() {</span>
      +<span class="source-line-no">066</span><span id="line-66">        AreaQuantity area2 = new AreaQuantity(50, m2);</span>
      +<span class="source-line-no">067</span><span id="line-67">        AreaQuantity result = area.add(area2);</span>
      +<span class="source-line-no">068</span><span id="line-68">        assertEquals(150d, result.scalar);</span>
      +<span class="source-line-no">069</span><span id="line-69">    }</span>
      +<span class="source-line-no">070</span><span id="line-70"></span>
      +<span class="source-line-no">071</span><span id="line-71">    @Test</span>
      +<span class="source-line-no">072</span><span id="line-72">    public void testSubtract() {</span>
      +<span class="source-line-no">073</span><span id="line-73">        AreaQuantity area2 = new AreaQuantity(50, m2);</span>
      +<span class="source-line-no">074</span><span id="line-74">        AreaQuantity result = area.subtract(area2);</span>
      +<span class="source-line-no">075</span><span id="line-75">        assertEquals(50d, result.scalar);</span>
      +<span class="source-line-no">076</span><span id="line-76">    }</span>
      +<span class="source-line-no">077</span><span id="line-77"></span>
      +<span class="source-line-no">078</span><span id="line-78">    @Test</span>
      +<span class="source-line-no">079</span><span id="line-79">    public void testEq() {</span>
      +<span class="source-line-no">080</span><span id="line-80">        AreaQuantity area2 = new AreaQuantity(100, m2);</span>
      +<span class="source-line-no">081</span><span id="line-81">        assertTrue(area2.eq(area));</span>
      +<span class="source-line-no">082</span><span id="line-82">    }</span>
      +<span class="source-line-no">083</span><span id="line-83"></span>
      +<span class="source-line-no">084</span><span id="line-84">    @Test</span>
      +<span class="source-line-no">085</span><span id="line-85">    public void testGt() {</span>
      +<span class="source-line-no">086</span><span id="line-86">        AreaQuantity area2 = new AreaQuantity(120, m2);</span>
      +<span class="source-line-no">087</span><span id="line-87">        assertTrue(area2.gt(area));</span>
      +<span class="source-line-no">088</span><span id="line-88">    }</span>
      +<span class="source-line-no">089</span><span id="line-89"></span>
      +<span class="source-line-no">090</span><span id="line-90">    @Test</span>
      +<span class="source-line-no">091</span><span id="line-91">    public void testLt() {</span>
      +<span class="source-line-no">092</span><span id="line-92">        AreaQuantity area2 = new AreaQuantity(20, m2);</span>
      +<span class="source-line-no">093</span><span id="line-93">        assertTrue(area2.lt(area));</span>
      +<span class="source-line-no">094</span><span id="line-94">    }</span>
      +<span class="source-line-no">095</span><span id="line-95"></span>
      +<span class="source-line-no">096</span><span id="line-96">    @Test</span>
      +<span class="source-line-no">097</span><span id="line-97">    public void testGe() {</span>
      +<span class="source-line-no">098</span><span id="line-98">        AreaQuantity area2 = new AreaQuantity(120, m2);</span>
      +<span class="source-line-no">099</span><span id="line-99">        assertTrue(area2.ge(area));</span>
      +<span class="source-line-no">100</span><span id="line-100">        area2 = new AreaQuantity(100, m2);</span>
      +<span class="source-line-no">101</span><span id="line-101">        assertTrue(area2.ge(area));</span>
      +<span class="source-line-no">102</span><span id="line-102">    }</span>
      +<span class="source-line-no">103</span><span id="line-103"></span>
      +<span class="source-line-no">104</span><span id="line-104">    @Test</span>
      +<span class="source-line-no">105</span><span id="line-105">    public void testLe() {</span>
      +<span class="source-line-no">106</span><span id="line-106">        AreaQuantity area2 = new AreaQuantity(20, m2);</span>
      +<span class="source-line-no">107</span><span id="line-107">        assertTrue(area2.le(area));</span>
      +<span class="source-line-no">108</span><span id="line-108">        area2 = new AreaQuantity(100, m2);</span>
      +<span class="source-line-no">109</span><span id="line-109">        assertTrue(area2.le(area));</span>
      +<span class="source-line-no">110</span><span id="line-110">    }</span>
      +<span class="source-line-no">111</span><span id="line-111"></span>
      +<span class="source-line-no">112</span><span id="line-112">    @Test</span>
      +<span class="source-line-no">113</span><span id="line-113">    public void testMultiplyDouble() {</span>
      +<span class="source-line-no">114</span><span id="line-114">        AreaQuantity result = area.multiply(3d);</span>
      +<span class="source-line-no">115</span><span id="line-115">        assertEquals(300d, result.scalar);</span>
      +<span class="source-line-no">116</span><span id="line-116">    }</span>
      +<span class="source-line-no">117</span><span id="line-117"></span>
      +<span class="source-line-no">118</span><span id="line-118">    @Test</span>
      +<span class="source-line-no">119</span><span id="line-119">    public void testDivideDouble() {</span>
      +<span class="source-line-no">120</span><span id="line-120">        AreaQuantity result = area.divide(10d);</span>
      +<span class="source-line-no">121</span><span id="line-121">        assertEquals(10d, result.scalar);</span>
      +<span class="source-line-no">122</span><span id="line-122">    }</span>
      +<span class="source-line-no">123</span><span id="line-123"></span>
      +<span class="source-line-no">124</span><span id="line-124">    @Test</span>
      +<span class="source-line-no">125</span><span id="line-125">    public void testDivideDistanceQuantity() {</span>
      +<span class="source-line-no">126</span><span id="line-126">        DistanceQuantity distance = new DistanceQuantity(10, DistanceUnit.m);</span>
      +<span class="source-line-no">127</span><span id="line-127">        DistanceQuantity result = area.divide(distance);</span>
      +<span class="source-line-no">128</span><span id="line-128">        assertEquals(10d, result.scalar);</span>
      +<span class="source-line-no">129</span><span id="line-129">    }</span>
      +<span class="source-line-no">130</span><span id="line-130"></span>
      +<span class="source-line-no">131</span><span id="line-131">    @Test</span>
      +<span class="source-line-no">132</span><span id="line-132">    public void testMultiplyDistanceQuantity() {</span>
      +<span class="source-line-no">133</span><span id="line-133">        DistanceQuantity distance = new DistanceQuantity(15, DistanceUnit.m);</span>
      +<span class="source-line-no">134</span><span id="line-134">        VolumeQuantity result = area.multiply(distance);</span>
      +<span class="source-line-no">135</span><span id="line-135">        assertEquals(VolumeUnit.class, result.getUnit().getClass());</span>
      +<span class="source-line-no">136</span><span id="line-136">        assertEquals(VolumeQuantity.class, result.getClass());</span>
      +<span class="source-line-no">137</span><span id="line-137">        assertEquals(Volume.class, result.getType());</span>
      +<span class="source-line-no">138</span><span id="line-138">        assertEquals(1500d, result.getValue());</span>
      +<span class="source-line-no">139</span><span id="line-139">    }</span>
      +<span class="source-line-no">140</span><span id="line-140"></span>
      +<span class="source-line-no">141</span><span id="line-141">    @Test</span>
      +<span class="source-line-no">142</span><span id="line-142">    public void testConvert() {</span>
      +<span class="source-line-no">143</span><span id="line-143">        AreaQuantity result = area.convert(AreaUnit.acre);</span>
      +<span class="source-line-no">144</span><span id="line-144">        assertEquals(100d, result.scalar);</span>
      +<span class="source-line-no">145</span><span id="line-145">    }</span>
      +<span class="source-line-no">146</span><span id="line-146"></span>
      +<span class="source-line-no">147</span><span id="line-147">    @Test</span>
      +<span class="source-line-no">148</span><span id="line-148">    public void testShowInUnits() {</span>
      +<span class="source-line-no">149</span><span id="line-149">        String result = area.showInUnits(AreaUnit.hectare, 2);</span>
      +<span class="source-line-no">150</span><span id="line-150">        assertEquals("0.01 hectare", result);</span>
      +<span class="source-line-no">151</span><span id="line-151">    }</span>
      +<span class="source-line-no">152</span><span id="line-152"></span>
      +<span class="source-line-no">153</span><span id="line-153">    @Test</span>
      +<span class="source-line-no">154</span><span id="line-154">    public void testToSystemUnit() {</span>
      +<span class="source-line-no">155</span><span id="line-155">        assertEquals(area.toSystemUnit(), area.to(area.getUnit().getSystemUnit()));</span>
      +<span class="source-line-no">156</span><span id="line-156">    }</span>
      +<span class="source-line-no">157</span><span id="line-157"></span>
      +<span class="source-line-no">158</span><span id="line-158">    @Test</span>
      +<span class="source-line-no">159</span><span id="line-159">    public void testNegate() {</span>
      +<span class="source-line-no">160</span><span id="line-160">        assertEquals(area.negate().getValue(), -area.getValue().doubleValue());</span>
      +<span class="source-line-no">161</span><span id="line-161">    }</span>
      +<span class="source-line-no">162</span><span id="line-162"></span>
      +<span class="source-line-no">163</span><span id="line-163">    @Test</span>
      +<span class="source-line-no">164</span><span id="line-164">    public void testScale() {</span>
      +<span class="source-line-no">165</span><span id="line-165">        assertEquals(Quantity.Scale.ABSOLUTE, area.getScale());</span>
      +<span class="source-line-no">166</span><span id="line-166">    }</span>
      +<span class="source-line-no">167</span><span id="line-167">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/quantity/CircleInfo.html b/docs/site/testapidocs/src-html/javax/measure/test/quantity/CircleInfo.html
      new file mode 100644
      index 00000000..c75a5cc8
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/quantity/CircleInfo.html
      @@ -0,0 +1,128 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.quantity, class: CircleInfo">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.quantity;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import static javax.measure.test.unit.DistanceUnit.cm;</span>
      +<span class="source-line-no">033</span><span id="line-33"></span>
      +<span class="source-line-no">034</span><span id="line-34">public class CircleInfo {</span>
      +<span class="source-line-no">035</span><span id="line-35"></span>
      +<span class="source-line-no">036</span><span id="line-36">    /**</span>
      +<span class="source-line-no">037</span><span id="line-37">     * @param args arguments</span>
      +<span class="source-line-no">038</span><span id="line-38">     */</span>
      +<span class="source-line-no">039</span><span id="line-39">    public static void main(String[] args) {</span>
      +<span class="source-line-no">040</span><span id="line-40">        DistanceQuantity radius = new DistanceQuantity(30, cm);</span>
      +<span class="source-line-no">041</span><span id="line-41">        System.out.println("Radius = " + radius);</span>
      +<span class="source-line-no">042</span><span id="line-42">        double mult = 2 * Math.PI;</span>
      +<span class="source-line-no">043</span><span id="line-43">        DistanceQuantity circumference = radius.multiply(mult);</span>
      +<span class="source-line-no">044</span><span id="line-44">        System.out.println("Circumference = " + circumference);</span>
      +<span class="source-line-no">045</span><span id="line-45">        AreaQuantity area = (radius.multiply(radius)).multiply(Math.PI);</span>
      +<span class="source-line-no">046</span><span id="line-46">        System.out.println("Area = " + area);</span>
      +<span class="source-line-no">047</span><span id="line-47">        // area.add(radius);</span>
      +<span class="source-line-no">048</span><span id="line-48">    }</span>
      +<span class="source-line-no">049</span><span id="line-49"></span>
      +<span class="source-line-no">050</span><span id="line-50">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/quantity/DistanceQuantity.html b/docs/site/testapidocs/src-html/javax/measure/test/quantity/DistanceQuantity.html
      new file mode 100644
      index 00000000..95d22872
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/quantity/DistanceQuantity.html
      @@ -0,0 +1,274 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.quantity, class: DistanceQuantity">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.quantity;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import javax.measure.Quantity;</span>
      +<span class="source-line-no">033</span><span id="line-33">import javax.measure.Unit;</span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.quantity.Area;</span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.quantity.Length;</span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.test.unit.AreaUnit;</span>
      +<span class="source-line-no">037</span><span id="line-37">import javax.measure.test.unit.DistanceUnit;</span>
      +<span class="source-line-no">038</span><span id="line-38">import javax.measure.test.unit.VolumeUnit;</span>
      +<span class="source-line-no">039</span><span id="line-39"></span>
      +<span class="source-line-no">040</span><span id="line-40">/**</span>
      +<span class="source-line-no">041</span><span id="line-41"> * @author Werner Keil</span>
      +<span class="source-line-no">042</span><span id="line-42"> * @version 0.7</span>
      +<span class="source-line-no">043</span><span id="line-43"> */</span>
      +<span class="source-line-no">044</span><span id="line-44">public class DistanceQuantity extends TestQuantity&lt;Length&gt; implements Length {</span>
      +<span class="source-line-no">045</span><span id="line-45"></span>
      +<span class="source-line-no">046</span><span id="line-46">    public DistanceQuantity(double val, DistanceUnit un) {</span>
      +<span class="source-line-no">047</span><span id="line-47">        this();</span>
      +<span class="source-line-no">048</span><span id="line-48">        value = val;</span>
      +<span class="source-line-no">049</span><span id="line-49">        unit = un;</span>
      +<span class="source-line-no">050</span><span id="line-50">        scalar = val * unit.getMultFactor();</span>
      +<span class="source-line-no">051</span><span id="line-51">    }</span>
      +<span class="source-line-no">052</span><span id="line-52"></span>
      +<span class="source-line-no">053</span><span id="line-53">    public DistanceQuantity(Number val, Unit un) {</span>
      +<span class="source-line-no">054</span><span id="line-54">        this(val.doubleValue(), (DistanceUnit) un);</span>
      +<span class="source-line-no">055</span><span id="line-55">    }</span>
      +<span class="source-line-no">056</span><span id="line-56"></span>
      +<span class="source-line-no">057</span><span id="line-57">    public DistanceQuantity() {</span>
      +<span class="source-line-no">058</span><span id="line-58">        super(Length.class);</span>
      +<span class="source-line-no">059</span><span id="line-59">    }</span>
      +<span class="source-line-no">060</span><span id="line-60"></span>
      +<span class="source-line-no">061</span><span id="line-61">    /*</span>
      +<span class="source-line-no">062</span><span id="line-62">     * Distance(double val) {</span>
      +<span class="source-line-no">063</span><span id="line-63">     *</span>
      +<span class="source-line-no">064</span><span id="line-64">     * value = val; unit = m; // reference Unit scalar = val;</span>
      +<span class="source-line-no">065</span><span id="line-65">     *</span>
      +<span class="source-line-no">066</span><span id="line-66">     * }</span>
      +<span class="source-line-no">067</span><span id="line-67">     */</span>
      +<span class="source-line-no">068</span><span id="line-68">    public DistanceQuantity add(DistanceQuantity d1) {</span>
      +<span class="source-line-no">069</span><span id="line-69">        DistanceQuantity dn = new DistanceQuantity();</span>
      +<span class="source-line-no">070</span><span id="line-70">        Object o = super.add(dn, this, d1, DistanceUnit.REF_UNIT);</span>
      +<span class="source-line-no">071</span><span id="line-71">        return (DistanceQuantity) o;</span>
      +<span class="source-line-no">072</span><span id="line-72">    }</span>
      +<span class="source-line-no">073</span><span id="line-73"></span>
      +<span class="source-line-no">074</span><span id="line-74">    public DistanceQuantity subtract(DistanceQuantity d1) {</span>
      +<span class="source-line-no">075</span><span id="line-75">        DistanceQuantity dn = new DistanceQuantity();</span>
      +<span class="source-line-no">076</span><span id="line-76">        Object o = super.subtract(dn, this, d1, DistanceUnit.REF_UNIT);</span>
      +<span class="source-line-no">077</span><span id="line-77">        return (DistanceQuantity) o;</span>
      +<span class="source-line-no">078</span><span id="line-78">    }</span>
      +<span class="source-line-no">079</span><span id="line-79"></span>
      +<span class="source-line-no">080</span><span id="line-80">    public boolean eq(DistanceQuantity d1) {</span>
      +<span class="source-line-no">081</span><span id="line-81">        return super.eq(d1);</span>
      +<span class="source-line-no">082</span><span id="line-82">    }</span>
      +<span class="source-line-no">083</span><span id="line-83"></span>
      +<span class="source-line-no">084</span><span id="line-84">    public boolean ne(DistanceQuantity d1) {</span>
      +<span class="source-line-no">085</span><span id="line-85">        return super.ne(d1);</span>
      +<span class="source-line-no">086</span><span id="line-86">    }</span>
      +<span class="source-line-no">087</span><span id="line-87"></span>
      +<span class="source-line-no">088</span><span id="line-88">    public boolean gt(DistanceQuantity d1) {</span>
      +<span class="source-line-no">089</span><span id="line-89">        return super.gt(d1);</span>
      +<span class="source-line-no">090</span><span id="line-90">    }</span>
      +<span class="source-line-no">091</span><span id="line-91"></span>
      +<span class="source-line-no">092</span><span id="line-92">    public boolean lt(DistanceQuantity d1) {</span>
      +<span class="source-line-no">093</span><span id="line-93">        return super.lt(d1);</span>
      +<span class="source-line-no">094</span><span id="line-94">    }</span>
      +<span class="source-line-no">095</span><span id="line-95"></span>
      +<span class="source-line-no">096</span><span id="line-96">    public boolean ge(DistanceQuantity d1) {</span>
      +<span class="source-line-no">097</span><span id="line-97">        return super.ge(d1);</span>
      +<span class="source-line-no">098</span><span id="line-98">    }</span>
      +<span class="source-line-no">099</span><span id="line-99"></span>
      +<span class="source-line-no">100</span><span id="line-100">    public boolean le(DistanceQuantity d1) {</span>
      +<span class="source-line-no">101</span><span id="line-101">        return super.le(d1);</span>
      +<span class="source-line-no">102</span><span id="line-102">    }</span>
      +<span class="source-line-no">103</span><span id="line-103"></span>
      +<span class="source-line-no">104</span><span id="line-104">    public DistanceQuantity multiply(double v) {</span>
      +<span class="source-line-no">105</span><span id="line-105">        return new DistanceQuantity(value * v, (DistanceUnit) unit);</span>
      +<span class="source-line-no">106</span><span id="line-106">    }</span>
      +<span class="source-line-no">107</span><span id="line-107"></span>
      +<span class="source-line-no">108</span><span id="line-108">    public DistanceQuantity divide(double v) {</span>
      +<span class="source-line-no">109</span><span id="line-109">        return new DistanceQuantity(value / v, (DistanceUnit) unit);</span>
      +<span class="source-line-no">110</span><span id="line-110">    }</span>
      +<span class="source-line-no">111</span><span id="line-111"></span>
      +<span class="source-line-no">112</span><span id="line-112">    // mixed type operations</span>
      +<span class="source-line-no">113</span><span id="line-113">    public AreaQuantity multiply(DistanceQuantity d1) {</span>
      +<span class="source-line-no">114</span><span id="line-114">        DistanceQuantity dq0 = convert(DistanceUnit.m);</span>
      +<span class="source-line-no">115</span><span id="line-115">        DistanceQuantity dq1 = d1.convert(DistanceUnit.m);</span>
      +<span class="source-line-no">116</span><span id="line-116">        return new AreaQuantity(dq0.value * dq1.value, AreaUnit.sqmetre);</span>
      +<span class="source-line-no">117</span><span id="line-117">    }</span>
      +<span class="source-line-no">118</span><span id="line-118"></span>
      +<span class="source-line-no">119</span><span id="line-119">    public VolumeQuantity multiply(AreaQuantity a1) {</span>
      +<span class="source-line-no">120</span><span id="line-120">        DistanceQuantity dq = convert(DistanceUnit.m);</span>
      +<span class="source-line-no">121</span><span id="line-121">        AreaQuantity aq = a1.convert(AreaUnit.sqmetre);</span>
      +<span class="source-line-no">122</span><span id="line-122">        return new VolumeQuantity(dq.value * aq.value, VolumeUnit.cumetre);</span>
      +<span class="source-line-no">123</span><span id="line-123">    }</span>
      +<span class="source-line-no">124</span><span id="line-124"></span>
      +<span class="source-line-no">125</span><span id="line-125">    // public Speed divide(TimeInterval t1) {</span>
      +<span class="source-line-no">126</span><span id="line-126">    // return new Speed(scalar /</span>
      +<span class="source-line-no">127</span><span id="line-127">    // t1.scalar, Speed.refUnit);</span>
      +<span class="source-line-no">128</span><span id="line-128">    // }</span>
      +<span class="source-line-no">129</span><span id="line-129">    // public TimeInterval divide(Speed s1) {</span>
      +<span class="source-line-no">130</span><span id="line-130">    // return new TimeInterval(scalar /</span>
      +<span class="source-line-no">131</span><span id="line-131">    // s1.scalar, TimeInterval.refUnit);</span>
      +<span class="source-line-no">132</span><span id="line-132">    // }</span>
      +<span class="source-line-no">133</span><span id="line-133"></span>
      +<span class="source-line-no">134</span><span id="line-134">    public DistanceQuantity convert(DistanceUnit newUnit) {</span>
      +<span class="source-line-no">135</span><span id="line-135">        return new DistanceQuantity(scalar / newUnit.getMultFactor(), newUnit);</span>
      +<span class="source-line-no">136</span><span id="line-136">    }</span>
      +<span class="source-line-no">137</span><span id="line-137"></span>
      +<span class="source-line-no">138</span><span id="line-138">    public String showInUnits(DistanceUnit u, int precision) {</span>
      +<span class="source-line-no">139</span><span id="line-139">        return super.showInUnits(u, precision);</span>
      +<span class="source-line-no">140</span><span id="line-140">    }</span>
      +<span class="source-line-no">141</span><span id="line-141"></span>
      +<span class="source-line-no">142</span><span id="line-142">    public Quantity&lt;?&gt; divide(Quantity&lt;?&gt; that) {</span>
      +<span class="source-line-no">143</span><span id="line-143">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">144</span><span id="line-144">        return null;</span>
      +<span class="source-line-no">145</span><span id="line-145">    }</span>
      +<span class="source-line-no">146</span><span id="line-146"></span>
      +<span class="source-line-no">147</span><span id="line-147">    public Quantity&lt;Length&gt; to(Unit&lt;Length&gt; unit) {</span>
      +<span class="source-line-no">148</span><span id="line-148">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">149</span><span id="line-149">        return null;</span>
      +<span class="source-line-no">150</span><span id="line-150">    }</span>
      +<span class="source-line-no">151</span><span id="line-151"></span>
      +<span class="source-line-no">152</span><span id="line-152">    public Quantity&lt;Length&gt; subtract(Quantity&lt;Length&gt; that) {</span>
      +<span class="source-line-no">153</span><span id="line-153">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">154</span><span id="line-154">        return null;</span>
      +<span class="source-line-no">155</span><span id="line-155">    }</span>
      +<span class="source-line-no">156</span><span id="line-156"></span>
      +<span class="source-line-no">157</span><span id="line-157">    public Quantity&lt;Length&gt; add(Quantity&lt;Length&gt; that) {</span>
      +<span class="source-line-no">158</span><span id="line-158">        return add((DistanceQuantity) that);</span>
      +<span class="source-line-no">159</span><span id="line-159">    }</span>
      +<span class="source-line-no">160</span><span id="line-160"></span>
      +<span class="source-line-no">161</span><span id="line-161">    public Quantity&lt;Length&gt; divide(Number that) {</span>
      +<span class="source-line-no">162</span><span id="line-162">        return divide(that.doubleValue());</span>
      +<span class="source-line-no">163</span><span id="line-163">    }</span>
      +<span class="source-line-no">164</span><span id="line-164"></span>
      +<span class="source-line-no">165</span><span id="line-165">    public Quantity&lt;Length&gt; inverse() {</span>
      +<span class="source-line-no">166</span><span id="line-166">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">167</span><span id="line-167">        return null;</span>
      +<span class="source-line-no">168</span><span id="line-168">    }</span>
      +<span class="source-line-no">169</span><span id="line-169"></span>
      +<span class="source-line-no">170</span><span id="line-170">    @Override</span>
      +<span class="source-line-no">171</span><span id="line-171">    public Quantity&lt;Length&gt; negate() {</span>
      +<span class="source-line-no">172</span><span id="line-172">        return new DistanceQuantity(-value, getUnit());</span>
      +<span class="source-line-no">173</span><span id="line-173">    }</span>
      +<span class="source-line-no">174</span><span id="line-174"></span>
      +<span class="source-line-no">175</span><span id="line-175">    public Quantity&lt;Length&gt; multiply(Number that) {</span>
      +<span class="source-line-no">176</span><span id="line-176">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">177</span><span id="line-177">        return null;</span>
      +<span class="source-line-no">178</span><span id="line-178">    }</span>
      +<span class="source-line-no">179</span><span id="line-179"></span>
      +<span class="source-line-no">180</span><span id="line-180">    public Quantity&lt;?&gt; multiply(Quantity&lt;?&gt; that) {</span>
      +<span class="source-line-no">181</span><span id="line-181">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">182</span><span id="line-182">        return null;</span>
      +<span class="source-line-no">183</span><span id="line-183">    }</span>
      +<span class="source-line-no">184</span><span id="line-184"></span>
      +<span class="source-line-no">185</span><span id="line-185">    @SuppressWarnings({ "unchecked", "rawtypes" })</span>
      +<span class="source-line-no">186</span><span id="line-186">    public final &lt;T extends Quantity&lt;T&gt;&gt; Quantity&lt;T&gt; asType(Class&lt;T&gt; type) throws ClassCastException {</span>
      +<span class="source-line-no">187</span><span id="line-187">        this.getUnit().asType(type); // Raises ClassCastException is dimension</span>
      +<span class="source-line-no">188</span><span id="line-188">        // mismatches.</span>
      +<span class="source-line-no">189</span><span id="line-189">        return (Quantity) this;</span>
      +<span class="source-line-no">190</span><span id="line-190">    }</span>
      +<span class="source-line-no">191</span><span id="line-191"></span>
      +<span class="source-line-no">192</span><span id="line-192">    public Area multiply(Length l) {</span>
      +<span class="source-line-no">193</span><span id="line-193">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">194</span><span id="line-194">        return null;</span>
      +<span class="source-line-no">195</span><span id="line-195">    }</span>
      +<span class="source-line-no">196</span><span id="line-196">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/quantity/DistanceQuantityTest.html b/docs/site/testapidocs/src-html/javax/measure/test/quantity/DistanceQuantityTest.html
      new file mode 100644
      index 00000000..d5d08855
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/quantity/DistanceQuantityTest.html
      @@ -0,0 +1,237 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.quantity, class: DistanceQuantityTest">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.quantity;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import static org.junit.jupiter.api.Assertions.assertEquals;</span>
      +<span class="source-line-no">033</span><span id="line-33">import static org.junit.jupiter.api.Assertions.assertNotNull;</span>
      +<span class="source-line-no">034</span><span id="line-34">import static org.junit.jupiter.api.Assertions.assertTrue;</span>
      +<span class="source-line-no">035</span><span id="line-35"></span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.Quantity;</span>
      +<span class="source-line-no">037</span><span id="line-37">import javax.measure.quantity.Area;</span>
      +<span class="source-line-no">038</span><span id="line-38">import javax.measure.test.unit.AreaUnit;</span>
      +<span class="source-line-no">039</span><span id="line-39">import javax.measure.test.unit.DistanceUnit;</span>
      +<span class="source-line-no">040</span><span id="line-40"></span>
      +<span class="source-line-no">041</span><span id="line-41">import org.junit.jupiter.api.BeforeEach;</span>
      +<span class="source-line-no">042</span><span id="line-42">import org.junit.jupiter.api.Test;</span>
      +<span class="source-line-no">043</span><span id="line-43"></span>
      +<span class="source-line-no">044</span><span id="line-44">/**</span>
      +<span class="source-line-no">045</span><span id="line-45"> * @author Werner Keil</span>
      +<span class="source-line-no">046</span><span id="line-46"> */</span>
      +<span class="source-line-no">047</span><span id="line-47">public class DistanceQuantityTest {</span>
      +<span class="source-line-no">048</span><span id="line-48"></span>
      +<span class="source-line-no">049</span><span id="line-49">    DistanceQuantity distance;</span>
      +<span class="source-line-no">050</span><span id="line-50">    DistanceUnit m;</span>
      +<span class="source-line-no">051</span><span id="line-51"></span>
      +<span class="source-line-no">052</span><span id="line-52">    @BeforeEach</span>
      +<span class="source-line-no">053</span><span id="line-53">    public void setUp() {</span>
      +<span class="source-line-no">054</span><span id="line-54">        m = DistanceUnit.m;</span>
      +<span class="source-line-no">055</span><span id="line-55">        distance = new DistanceQuantity(100, m);</span>
      +<span class="source-line-no">056</span><span id="line-56">    }</span>
      +<span class="source-line-no">057</span><span id="line-57"></span>
      +<span class="source-line-no">058</span><span id="line-58">    @Test</span>
      +<span class="source-line-no">059</span><span id="line-59">    public void testAreaQuantity() {</span>
      +<span class="source-line-no">060</span><span id="line-60">        assertNotNull(distance);</span>
      +<span class="source-line-no">061</span><span id="line-61">    }</span>
      +<span class="source-line-no">062</span><span id="line-62"></span>
      +<span class="source-line-no">063</span><span id="line-63">    @Test</span>
      +<span class="source-line-no">064</span><span id="line-64">    public void testAdd() {</span>
      +<span class="source-line-no">065</span><span id="line-65">        DistanceQuantity dist2 = new DistanceQuantity(50, m);</span>
      +<span class="source-line-no">066</span><span id="line-66">        DistanceQuantity result = distance.add(dist2);</span>
      +<span class="source-line-no">067</span><span id="line-67">        assertEquals(150d, result.scalar);</span>
      +<span class="source-line-no">068</span><span id="line-68">    }</span>
      +<span class="source-line-no">069</span><span id="line-69"></span>
      +<span class="source-line-no">070</span><span id="line-70">    @Test</span>
      +<span class="source-line-no">071</span><span id="line-71">    public void testSubtract() {</span>
      +<span class="source-line-no">072</span><span id="line-72">        DistanceQuantity dist2 = new DistanceQuantity(50, m);</span>
      +<span class="source-line-no">073</span><span id="line-73">        DistanceQuantity result = distance.subtract(dist2);</span>
      +<span class="source-line-no">074</span><span id="line-74">        assertEquals(50d, result.scalar);</span>
      +<span class="source-line-no">075</span><span id="line-75">    }</span>
      +<span class="source-line-no">076</span><span id="line-76"></span>
      +<span class="source-line-no">077</span><span id="line-77">    @Test</span>
      +<span class="source-line-no">078</span><span id="line-78">    public void testEq() {</span>
      +<span class="source-line-no">079</span><span id="line-79">        DistanceQuantity dist2 = new DistanceQuantity(100, m);</span>
      +<span class="source-line-no">080</span><span id="line-80">        assertTrue(dist2.eq(distance));</span>
      +<span class="source-line-no">081</span><span id="line-81">    }</span>
      +<span class="source-line-no">082</span><span id="line-82"></span>
      +<span class="source-line-no">083</span><span id="line-83">    @Test</span>
      +<span class="source-line-no">084</span><span id="line-84">    public void testGt() {</span>
      +<span class="source-line-no">085</span><span id="line-85">        DistanceQuantity dist2 = new DistanceQuantity(120, m);</span>
      +<span class="source-line-no">086</span><span id="line-86">        assertTrue(dist2.gt(distance));</span>
      +<span class="source-line-no">087</span><span id="line-87">    }</span>
      +<span class="source-line-no">088</span><span id="line-88"></span>
      +<span class="source-line-no">089</span><span id="line-89">    @Test</span>
      +<span class="source-line-no">090</span><span id="line-90">    public void testLt() {</span>
      +<span class="source-line-no">091</span><span id="line-91">        DistanceQuantity dist2 = new DistanceQuantity(20, m);</span>
      +<span class="source-line-no">092</span><span id="line-92">        assertTrue(dist2.lt(distance));</span>
      +<span class="source-line-no">093</span><span id="line-93">    }</span>
      +<span class="source-line-no">094</span><span id="line-94"></span>
      +<span class="source-line-no">095</span><span id="line-95">    @Test</span>
      +<span class="source-line-no">096</span><span id="line-96">    public void testGe() {</span>
      +<span class="source-line-no">097</span><span id="line-97">        DistanceQuantity dist2 = new DistanceQuantity(120, m);</span>
      +<span class="source-line-no">098</span><span id="line-98">        assertTrue(dist2.ge(distance));</span>
      +<span class="source-line-no">099</span><span id="line-99">        dist2 = new DistanceQuantity(100, m);</span>
      +<span class="source-line-no">100</span><span id="line-100">        assertTrue(dist2.ge(distance));</span>
      +<span class="source-line-no">101</span><span id="line-101">    }</span>
      +<span class="source-line-no">102</span><span id="line-102"></span>
      +<span class="source-line-no">103</span><span id="line-103">    @Test</span>
      +<span class="source-line-no">104</span><span id="line-104">    public void testLe() {</span>
      +<span class="source-line-no">105</span><span id="line-105">        DistanceQuantity dist2 = new DistanceQuantity(20, m);</span>
      +<span class="source-line-no">106</span><span id="line-106">        assertTrue(dist2.le(distance));</span>
      +<span class="source-line-no">107</span><span id="line-107">        dist2 = new DistanceQuantity(100, m);</span>
      +<span class="source-line-no">108</span><span id="line-108">        assertTrue(dist2.le(distance));</span>
      +<span class="source-line-no">109</span><span id="line-109">    }</span>
      +<span class="source-line-no">110</span><span id="line-110"></span>
      +<span class="source-line-no">111</span><span id="line-111">    @Test</span>
      +<span class="source-line-no">112</span><span id="line-112">    public void testMultiplyDouble() {</span>
      +<span class="source-line-no">113</span><span id="line-113">        DistanceQuantity result = distance.multiply(3d);</span>
      +<span class="source-line-no">114</span><span id="line-114">        assertEquals(300d, result.scalar);</span>
      +<span class="source-line-no">115</span><span id="line-115">    }</span>
      +<span class="source-line-no">116</span><span id="line-116"></span>
      +<span class="source-line-no">117</span><span id="line-117">    @Test</span>
      +<span class="source-line-no">118</span><span id="line-118">    public void testDivideDouble() {</span>
      +<span class="source-line-no">119</span><span id="line-119">        DistanceQuantity result = distance.divide(10d);</span>
      +<span class="source-line-no">120</span><span id="line-120">        assertEquals(10d, result.scalar);</span>
      +<span class="source-line-no">121</span><span id="line-121">    }</span>
      +<span class="source-line-no">122</span><span id="line-122"></span>
      +<span class="source-line-no">123</span><span id="line-123">    @Test</span>
      +<span class="source-line-no">124</span><span id="line-124">    public void testMultiplyDistanceQuantity() {</span>
      +<span class="source-line-no">125</span><span id="line-125">        DistanceQuantity dist = new DistanceQuantity(15, DistanceUnit.m);</span>
      +<span class="source-line-no">126</span><span id="line-126">        AreaQuantity result = distance.multiply(dist);</span>
      +<span class="source-line-no">127</span><span id="line-127">        assertEquals(AreaUnit.class, result.getUnit().getClass());</span>
      +<span class="source-line-no">128</span><span id="line-128">        assertEquals(AreaQuantity.class, result.getClass());</span>
      +<span class="source-line-no">129</span><span id="line-129">        assertEquals(Area.class, result.getType());</span>
      +<span class="source-line-no">130</span><span id="line-130">        assertEquals(1500d, result.getValue());</span>
      +<span class="source-line-no">131</span><span id="line-131">    }</span>
      +<span class="source-line-no">132</span><span id="line-132"></span>
      +<span class="source-line-no">133</span><span id="line-133">    @Test</span>
      +<span class="source-line-no">134</span><span id="line-134">    public void testConvert() {</span>
      +<span class="source-line-no">135</span><span id="line-135">        DistanceQuantity result = distance.convert(DistanceUnit.in);</span>
      +<span class="source-line-no">136</span><span id="line-136">        assertEquals(100d, result.scalar);</span>
      +<span class="source-line-no">137</span><span id="line-137">    }</span>
      +<span class="source-line-no">138</span><span id="line-138"></span>
      +<span class="source-line-no">139</span><span id="line-139">    @Test</span>
      +<span class="source-line-no">140</span><span id="line-140">    public void testShowInUnits() {</span>
      +<span class="source-line-no">141</span><span id="line-141">        String result = distance.showInUnits(DistanceUnit.mile, 2);</span>
      +<span class="source-line-no">142</span><span id="line-142">        assertEquals("0.062150403977625855 mile", result);</span>
      +<span class="source-line-no">143</span><span id="line-143">    }</span>
      +<span class="source-line-no">144</span><span id="line-144"></span>
      +<span class="source-line-no">145</span><span id="line-145">    @Test</span>
      +<span class="source-line-no">146</span><span id="line-146">    public void testToSystemUnit() {</span>
      +<span class="source-line-no">147</span><span id="line-147">        assertEquals(distance.toSystemUnit(), distance.to(distance.getUnit().getSystemUnit()));</span>
      +<span class="source-line-no">148</span><span id="line-148">    }</span>
      +<span class="source-line-no">149</span><span id="line-149"></span>
      +<span class="source-line-no">150</span><span id="line-150">    @Test</span>
      +<span class="source-line-no">151</span><span id="line-151">    public void testNegate() {</span>
      +<span class="source-line-no">152</span><span id="line-152">        assertEquals(distance.negate().getValue(), -distance.getValue().doubleValue());</span>
      +<span class="source-line-no">153</span><span id="line-153">    }</span>
      +<span class="source-line-no">154</span><span id="line-154"></span>
      +<span class="source-line-no">155</span><span id="line-155">    @Test</span>
      +<span class="source-line-no">156</span><span id="line-156">    public void testAbsolute() {</span>
      +<span class="source-line-no">157</span><span id="line-157">        assertEquals(Quantity.Scale.ABSOLUTE, distance.getScale());</span>
      +<span class="source-line-no">158</span><span id="line-158">    }</span>
      +<span class="source-line-no">159</span><span id="line-159">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/quantity/TemperatureQuantity.html b/docs/site/testapidocs/src-html/javax/measure/test/quantity/TemperatureQuantity.html
      new file mode 100644
      index 00000000..2a6e95c6
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/quantity/TemperatureQuantity.html
      @@ -0,0 +1,282 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.quantity, class: TemperatureQuantity">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.quantity;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import javax.measure.Quantity;</span>
      +<span class="source-line-no">033</span><span id="line-33">import javax.measure.UnconvertibleException;</span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.Unit;</span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.UnitConverter;</span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.quantity.Temperature;</span>
      +<span class="source-line-no">037</span><span id="line-37">import javax.measure.test.unit.TemperatureUnit;</span>
      +<span class="source-line-no">038</span><span id="line-38"></span>
      +<span class="source-line-no">039</span><span id="line-39">/**</span>
      +<span class="source-line-no">040</span><span id="line-40"> * @author Werner Keil</span>
      +<span class="source-line-no">041</span><span id="line-41"> * @version 1.3, $Date: 2018-12-17 $</span>
      +<span class="source-line-no">042</span><span id="line-42"> */</span>
      +<span class="source-line-no">043</span><span id="line-43">public final class TemperatureQuantity extends TestQuantity&lt;Temperature&gt; implements Temperature {</span>
      +<span class="source-line-no">044</span><span id="line-44"></span>
      +<span class="source-line-no">045</span><span id="line-45">    public TemperatureQuantity(Scale s) {</span>
      +<span class="source-line-no">046</span><span id="line-46">        super(Temperature.class, s);</span>
      +<span class="source-line-no">047</span><span id="line-47">    }</span>
      +<span class="source-line-no">048</span><span id="line-48"></span>
      +<span class="source-line-no">049</span><span id="line-49">    public TemperatureQuantity(double val, TemperatureUnit un) {</span>
      +<span class="source-line-no">050</span><span id="line-50">        this(((TemperatureUnit.KELVIN.equals(un) || TemperatureUnit.RANKINE.equals(un)) ?</span>
      +<span class="source-line-no">051</span><span id="line-51">            Scale.ABSOLUTE : Scale.RELATIVE));</span>
      +<span class="source-line-no">052</span><span id="line-52">        unit = un;</span>
      +<span class="source-line-no">053</span><span id="line-53">        value = val;</span>
      +<span class="source-line-no">054</span><span id="line-54">        if (un != null) {</span>
      +<span class="source-line-no">055</span><span id="line-55">            scalar = val * un.getFactor();</span>
      +<span class="source-line-no">056</span><span id="line-56">        } else</span>
      +<span class="source-line-no">057</span><span id="line-57">            scalar = -1;</span>
      +<span class="source-line-no">058</span><span id="line-58">    }</span>
      +<span class="source-line-no">059</span><span id="line-59"></span>
      +<span class="source-line-no">060</span><span id="line-60">    public TemperatureQuantity(Number val, @SuppressWarnings("rawtypes") Unit u) {</span>
      +<span class="source-line-no">061</span><span id="line-61">        this(val.doubleValue(), (TemperatureUnit) u);</span>
      +<span class="source-line-no">062</span><span id="line-62">    }</span>
      +<span class="source-line-no">063</span><span id="line-63"></span>
      +<span class="source-line-no">064</span><span id="line-64">    public boolean isZero() {</span>
      +<span class="source-line-no">065</span><span id="line-65">        return 0d == (value);</span>
      +<span class="source-line-no">066</span><span id="line-66">    }</span>
      +<span class="source-line-no">067</span><span id="line-67"></span>
      +<span class="source-line-no">068</span><span id="line-68">    public TemperatureQuantity add(TemperatureQuantity d1) {</span>
      +<span class="source-line-no">069</span><span id="line-69">        final TemperatureQuantity dn = new TemperatureQuantity(Double.valueOf(this.value + d1.value), this.unit);</span>
      +<span class="source-line-no">070</span><span id="line-70">        return dn;</span>
      +<span class="source-line-no">071</span><span id="line-71">    }</span>
      +<span class="source-line-no">072</span><span id="line-72"></span>
      +<span class="source-line-no">073</span><span id="line-73">    public TemperatureQuantity subtract(TemperatureQuantity d1) {</span>
      +<span class="source-line-no">074</span><span id="line-74">        final TemperatureQuantity dn = new TemperatureQuantity(this.value - d1.value, this.unit);</span>
      +<span class="source-line-no">075</span><span id="line-75">        return dn;</span>
      +<span class="source-line-no">076</span><span id="line-76">    }</span>
      +<span class="source-line-no">077</span><span id="line-77"></span>
      +<span class="source-line-no">078</span><span id="line-78">    protected boolean eq(TemperatureQuantity dq) {</span>
      +<span class="source-line-no">079</span><span id="line-79">        return dq != null &amp;&amp; dq.getValue().equals(getValue()) &amp;&amp; dq.getUnit().equals(getUnit()) &amp;&amp; dq.getScalar().equals(getScalar());</span>
      +<span class="source-line-no">080</span><span id="line-80">    }</span>
      +<span class="source-line-no">081</span><span id="line-81"></span>
      +<span class="source-line-no">082</span><span id="line-82">    boolean ne(TemperatureQuantity d1) {</span>
      +<span class="source-line-no">083</span><span id="line-83">        return ne((TemperatureQuantity) d1);</span>
      +<span class="source-line-no">084</span><span id="line-84">    }</span>
      +<span class="source-line-no">085</span><span id="line-85"></span>
      +<span class="source-line-no">086</span><span id="line-86">    public TemperatureQuantity divide(double v) {</span>
      +<span class="source-line-no">087</span><span id="line-87">        return new TemperatureQuantity(value / v, unit);</span>
      +<span class="source-line-no">088</span><span id="line-88">    }</span>
      +<span class="source-line-no">089</span><span id="line-89"></span>
      +<span class="source-line-no">090</span><span id="line-90">    protected TemperatureQuantity convert(TemperatureUnit newUnit) {</span>
      +<span class="source-line-no">091</span><span id="line-91">        return new TemperatureQuantity(value / newUnit.getFactor(), newUnit);</span>
      +<span class="source-line-no">092</span><span id="line-92">    }</span>
      +<span class="source-line-no">093</span><span id="line-93"></span>
      +<span class="source-line-no">094</span><span id="line-94">    public Double getScalar() {</span>
      +<span class="source-line-no">095</span><span id="line-95">        return scalar;</span>
      +<span class="source-line-no">096</span><span id="line-96">    }</span>
      +<span class="source-line-no">097</span><span id="line-97"></span>
      +<span class="source-line-no">098</span><span id="line-98">    public String toString(boolean withUnit, boolean withSpace, int precision) {</span>
      +<span class="source-line-no">099</span><span id="line-99">        final StringBuilder sb = new StringBuilder();</span>
      +<span class="source-line-no">100</span><span id="line-100">        sb.append(getValue());</span>
      +<span class="source-line-no">101</span><span id="line-101">        if (withUnit) {</span>
      +<span class="source-line-no">102</span><span id="line-102">            if (withSpace)</span>
      +<span class="source-line-no">103</span><span id="line-103">                sb.append(" ");</span>
      +<span class="source-line-no">104</span><span id="line-104">            sb.append(getUnit().getSymbol());</span>
      +<span class="source-line-no">105</span><span id="line-105">        }</span>
      +<span class="source-line-no">106</span><span id="line-106">        return sb.toString();</span>
      +<span class="source-line-no">107</span><span id="line-107">    }</span>
      +<span class="source-line-no">108</span><span id="line-108"></span>
      +<span class="source-line-no">109</span><span id="line-109">    public Number getValue() {</span>
      +<span class="source-line-no">110</span><span id="line-110">        return value;</span>
      +<span class="source-line-no">111</span><span id="line-111">    }</span>
      +<span class="source-line-no">112</span><span id="line-112"></span>
      +<span class="source-line-no">113</span><span id="line-113">    public Unit&lt;Temperature&gt; getUnit() {</span>
      +<span class="source-line-no">114</span><span id="line-114">        return unit;</span>
      +<span class="source-line-no">115</span><span id="line-115">    }</span>
      +<span class="source-line-no">116</span><span id="line-116"></span>
      +<span class="source-line-no">117</span><span id="line-117">    public Quantity&lt;Temperature&gt; multiply(Number that) {</span>
      +<span class="source-line-no">118</span><span id="line-118">        return new TemperatureQuantity(value * that.doubleValue(), unit);</span>
      +<span class="source-line-no">119</span><span id="line-119">    }</span>
      +<span class="source-line-no">120</span><span id="line-120"></span>
      +<span class="source-line-no">121</span><span id="line-121">    public Quantity&lt;?&gt; multiply(Quantity&lt;?&gt; that) {</span>
      +<span class="source-line-no">122</span><span id="line-122">        return new TemperatureQuantity(value * that.getValue().doubleValue(), unit);</span>
      +<span class="source-line-no">123</span><span id="line-123">    }</span>
      +<span class="source-line-no">124</span><span id="line-124"></span>
      +<span class="source-line-no">125</span><span id="line-125">    public Quantity&lt;Temperature&gt; inverse() {</span>
      +<span class="source-line-no">126</span><span id="line-126">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">127</span><span id="line-127">        return null;</span>
      +<span class="source-line-no">128</span><span id="line-128">    }</span>
      +<span class="source-line-no">129</span><span id="line-129"></span>
      +<span class="source-line-no">130</span><span id="line-130">    /*</span>
      +<span class="source-line-no">131</span><span id="line-131">     * (non-Javadoc)</span>
      +<span class="source-line-no">132</span><span id="line-132">     *</span>
      +<span class="source-line-no">133</span><span id="line-133">     * @see</span>
      +<span class="source-line-no">134</span><span id="line-134">     * Measurement#doubleValue(javax.measure.Unit)</span>
      +<span class="source-line-no">135</span><span id="line-135">     */</span>
      +<span class="source-line-no">136</span><span id="line-136">    protected double doubleValue(Unit&lt;Temperature&gt; unit) {</span>
      +<span class="source-line-no">137</span><span id="line-137">        Unit&lt;Temperature&gt; myUnit = getUnit();</span>
      +<span class="source-line-no">138</span><span id="line-138">        try {</span>
      +<span class="source-line-no">139</span><span id="line-139">            UnitConverter converter = unit.getConverterTo(myUnit);</span>
      +<span class="source-line-no">140</span><span id="line-140">            return converter.convert(getValue().doubleValue());</span>
      +<span class="source-line-no">141</span><span id="line-141">        } catch (UnconvertibleException e) {</span>
      +<span class="source-line-no">142</span><span id="line-142">            throw e;</span>
      +<span class="source-line-no">143</span><span id="line-143">        } // catch (IncommensurableException e) {</span>
      +<span class="source-line-no">144</span><span id="line-144">        // throw new IllegalArgumentException(e.getMessage());</span>
      +<span class="source-line-no">145</span><span id="line-145">        // }</span>
      +<span class="source-line-no">146</span><span id="line-146">    }</span>
      +<span class="source-line-no">147</span><span id="line-147"></span>
      +<span class="source-line-no">148</span><span id="line-148">    public Quantity&lt;Temperature&gt; to(Unit&lt;Temperature&gt; unit) {</span>
      +<span class="source-line-no">149</span><span id="line-149">        if (this.unit.equals(unit)) {</span>
      +<span class="source-line-no">150</span><span id="line-150">            return this;</span>
      +<span class="source-line-no">151</span><span id="line-151">        }</span>
      +<span class="source-line-no">152</span><span id="line-152">        if (unit instanceof TemperatureUnit) {</span>
      +<span class="source-line-no">153</span><span id="line-153">            // final TemperatureUnit asTU = (TemperatureUnit)unit;</span>
      +<span class="source-line-no">154</span><span id="line-154">            // for (TemperatureUnit tu : TemperatureUnit.values()) {</span>
      +<span class="source-line-no">155</span><span id="line-155">            // if (asTU.equals(tu)) {</span>
      +<span class="source-line-no">156</span><span id="line-156">            // return new TemperatureQuantity( asTU)</span>
      +<span class="source-line-no">157</span><span id="line-157">            // }</span>
      +<span class="source-line-no">158</span><span id="line-158">            // }</span>
      +<span class="source-line-no">159</span><span id="line-159">            return convert((TemperatureUnit) unit);</span>
      +<span class="source-line-no">160</span><span id="line-160">        } else {</span>
      +<span class="source-line-no">161</span><span id="line-161">            throw new ArithmeticException("Cannot convert " + this.unit + " to " + unit);</span>
      +<span class="source-line-no">162</span><span id="line-162">        }</span>
      +<span class="source-line-no">163</span><span id="line-163">    }</span>
      +<span class="source-line-no">164</span><span id="line-164"></span>
      +<span class="source-line-no">165</span><span id="line-165">    public boolean eq(TestQuantity&lt;Temperature&gt; dq) {</span>
      +<span class="source-line-no">166</span><span id="line-166">        return eq((TemperatureQuantity) dq);</span>
      +<span class="source-line-no">167</span><span id="line-167">    }</span>
      +<span class="source-line-no">168</span><span id="line-168"></span>
      +<span class="source-line-no">169</span><span id="line-169">    public Quantity&lt;?&gt; divide(Quantity&lt;?&gt; that) {</span>
      +<span class="source-line-no">170</span><span id="line-170">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">171</span><span id="line-171">        return null;</span>
      +<span class="source-line-no">172</span><span id="line-172">    }</span>
      +<span class="source-line-no">173</span><span id="line-173"></span>
      +<span class="source-line-no">174</span><span id="line-174">    public Quantity&lt;Temperature&gt; subtract(Quantity&lt;Temperature&gt; that) {</span>
      +<span class="source-line-no">175</span><span id="line-175">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">176</span><span id="line-176">        return null;</span>
      +<span class="source-line-no">177</span><span id="line-177">    }</span>
      +<span class="source-line-no">178</span><span id="line-178"></span>
      +<span class="source-line-no">179</span><span id="line-179">    public Quantity&lt;Temperature&gt; add(Quantity&lt;Temperature&gt; that) {</span>
      +<span class="source-line-no">180</span><span id="line-180">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">181</span><span id="line-181">        return null;</span>
      +<span class="source-line-no">182</span><span id="line-182">    }</span>
      +<span class="source-line-no">183</span><span id="line-183"></span>
      +<span class="source-line-no">184</span><span id="line-184">    public Quantity&lt;Temperature&gt; divide(Number that) {</span>
      +<span class="source-line-no">185</span><span id="line-185">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">186</span><span id="line-186">        return null;</span>
      +<span class="source-line-no">187</span><span id="line-187">    }</span>
      +<span class="source-line-no">188</span><span id="line-188"></span>
      +<span class="source-line-no">189</span><span id="line-189">    public int compareTo(Quantity&lt;Temperature&gt; o) {</span>
      +<span class="source-line-no">190</span><span id="line-190">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">191</span><span id="line-191">        return 0;</span>
      +<span class="source-line-no">192</span><span id="line-192">    }</span>
      +<span class="source-line-no">193</span><span id="line-193"></span>
      +<span class="source-line-no">194</span><span id="line-194">    @Override</span>
      +<span class="source-line-no">195</span><span id="line-195">    public Quantity&lt;Temperature&gt; negate() {</span>
      +<span class="source-line-no">196</span><span id="line-196">        return new TemperatureQuantity(-value, unit);</span>
      +<span class="source-line-no">197</span><span id="line-197">    }</span>
      +<span class="source-line-no">198</span><span id="line-198"></span>
      +<span class="source-line-no">199</span><span id="line-199">    @Override</span>
      +<span class="source-line-no">200</span><span id="line-200">    public &lt;T extends Quantity&lt;T&gt;&gt; Quantity&lt;T&gt; asType(Class&lt;T&gt; type) throws ClassCastException {</span>
      +<span class="source-line-no">201</span><span id="line-201">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">202</span><span id="line-202">        return null;</span>
      +<span class="source-line-no">203</span><span id="line-203">    }</span>
      +<span class="source-line-no">204</span><span id="line-204">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/quantity/TemperatureQuantityTest.html b/docs/site/testapidocs/src-html/javax/measure/test/quantity/TemperatureQuantityTest.html
      new file mode 100644
      index 00000000..cac8d01b
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/quantity/TemperatureQuantityTest.html
      @@ -0,0 +1,237 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.quantity, class: TemperatureQuantityTest">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.quantity;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import static org.junit.jupiter.api.Assertions.assertEquals;</span>
      +<span class="source-line-no">033</span><span id="line-33">import static org.junit.jupiter.api.Assertions.assertNotNull;</span>
      +<span class="source-line-no">034</span><span id="line-34">import static org.junit.jupiter.api.Assertions.assertTrue;</span>
      +<span class="source-line-no">035</span><span id="line-35"></span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.Quantity;</span>
      +<span class="source-line-no">037</span><span id="line-37">import javax.measure.quantity.Temperature;</span>
      +<span class="source-line-no">038</span><span id="line-38">import javax.measure.test.unit.TemperatureUnit;</span>
      +<span class="source-line-no">039</span><span id="line-39"></span>
      +<span class="source-line-no">040</span><span id="line-40">import org.junit.jupiter.api.BeforeEach;</span>
      +<span class="source-line-no">041</span><span id="line-41">import org.junit.jupiter.api.Test;</span>
      +<span class="source-line-no">042</span><span id="line-42"></span>
      +<span class="source-line-no">043</span><span id="line-43">/**</span>
      +<span class="source-line-no">044</span><span id="line-44"> * @author Werner Keil</span>
      +<span class="source-line-no">045</span><span id="line-45"> */</span>
      +<span class="source-line-no">046</span><span id="line-46">public class TemperatureQuantityTest {</span>
      +<span class="source-line-no">047</span><span id="line-47"></span>
      +<span class="source-line-no">048</span><span id="line-48">    private TemperatureQuantity temp;</span>
      +<span class="source-line-no">049</span><span id="line-49">    private TemperatureUnit k;</span>
      +<span class="source-line-no">050</span><span id="line-50"></span>
      +<span class="source-line-no">051</span><span id="line-51">    @BeforeEach</span>
      +<span class="source-line-no">052</span><span id="line-52">    public void setUp() {</span>
      +<span class="source-line-no">053</span><span id="line-53">        k = TemperatureUnit.KELVIN;</span>
      +<span class="source-line-no">054</span><span id="line-54">        temp = new TemperatureQuantity(100, k);</span>
      +<span class="source-line-no">055</span><span id="line-55">    }</span>
      +<span class="source-line-no">056</span><span id="line-56"></span>
      +<span class="source-line-no">057</span><span id="line-57">    @Test</span>
      +<span class="source-line-no">058</span><span id="line-58">    public void testQuantity() {</span>
      +<span class="source-line-no">059</span><span id="line-59">        assertNotNull(temp);</span>
      +<span class="source-line-no">060</span><span id="line-60">    }</span>
      +<span class="source-line-no">061</span><span id="line-61"></span>
      +<span class="source-line-no">062</span><span id="line-62">    @Test</span>
      +<span class="source-line-no">063</span><span id="line-63">    public void testAdd() {</span>
      +<span class="source-line-no">064</span><span id="line-64">        TemperatureQuantity temp2 = new TemperatureQuantity(50, k);</span>
      +<span class="source-line-no">065</span><span id="line-65">        TemperatureQuantity result = temp.add(temp2);</span>
      +<span class="source-line-no">066</span><span id="line-66">        assertEquals(150d, result.scalar);</span>
      +<span class="source-line-no">067</span><span id="line-67">    }</span>
      +<span class="source-line-no">068</span><span id="line-68"></span>
      +<span class="source-line-no">069</span><span id="line-69">    @Test</span>
      +<span class="source-line-no">070</span><span id="line-70">    public void testSubtract() {</span>
      +<span class="source-line-no">071</span><span id="line-71">        TemperatureQuantity temp2 = new TemperatureQuantity(50, k);</span>
      +<span class="source-line-no">072</span><span id="line-72">        TemperatureQuantity result = temp.subtract(temp2);</span>
      +<span class="source-line-no">073</span><span id="line-73">        assertEquals(50d, result.scalar);</span>
      +<span class="source-line-no">074</span><span id="line-74">    }</span>
      +<span class="source-line-no">075</span><span id="line-75"></span>
      +<span class="source-line-no">076</span><span id="line-76">    @Test</span>
      +<span class="source-line-no">077</span><span id="line-77">    public void testEq() {</span>
      +<span class="source-line-no">078</span><span id="line-78">        TemperatureQuantity temp2 = new TemperatureQuantity(100, k);</span>
      +<span class="source-line-no">079</span><span id="line-79">        assertTrue(temp2.eq(temp));</span>
      +<span class="source-line-no">080</span><span id="line-80">    }</span>
      +<span class="source-line-no">081</span><span id="line-81"></span>
      +<span class="source-line-no">082</span><span id="line-82">    @Test</span>
      +<span class="source-line-no">083</span><span id="line-83">    public void testGt() {</span>
      +<span class="source-line-no">084</span><span id="line-84">        TemperatureQuantity temp2 = new TemperatureQuantity(120, k);</span>
      +<span class="source-line-no">085</span><span id="line-85">        assertTrue(temp2.gt(temp));</span>
      +<span class="source-line-no">086</span><span id="line-86">    }</span>
      +<span class="source-line-no">087</span><span id="line-87"></span>
      +<span class="source-line-no">088</span><span id="line-88">    @Test</span>
      +<span class="source-line-no">089</span><span id="line-89">    public void testLt() {</span>
      +<span class="source-line-no">090</span><span id="line-90">        TemperatureQuantity temp2 = new TemperatureQuantity(20, k);</span>
      +<span class="source-line-no">091</span><span id="line-91">        assertTrue(temp2.lt(temp));</span>
      +<span class="source-line-no">092</span><span id="line-92">    }</span>
      +<span class="source-line-no">093</span><span id="line-93"></span>
      +<span class="source-line-no">094</span><span id="line-94">    @Test</span>
      +<span class="source-line-no">095</span><span id="line-95">    public void testGe() {</span>
      +<span class="source-line-no">096</span><span id="line-96">        TemperatureQuantity temp2 = new TemperatureQuantity(120, k);</span>
      +<span class="source-line-no">097</span><span id="line-97">        assertTrue(temp2.ge(temp));</span>
      +<span class="source-line-no">098</span><span id="line-98">        temp2 = new TemperatureQuantity(100, k);</span>
      +<span class="source-line-no">099</span><span id="line-99">        assertTrue(temp2.ge(temp));</span>
      +<span class="source-line-no">100</span><span id="line-100">    }</span>
      +<span class="source-line-no">101</span><span id="line-101"></span>
      +<span class="source-line-no">102</span><span id="line-102">    @Test</span>
      +<span class="source-line-no">103</span><span id="line-103">    public void testLe() {</span>
      +<span class="source-line-no">104</span><span id="line-104">        TemperatureQuantity temp2 = new TemperatureQuantity(20, k);</span>
      +<span class="source-line-no">105</span><span id="line-105">        assertTrue(temp2.le(temp));</span>
      +<span class="source-line-no">106</span><span id="line-106">        temp2 = new TemperatureQuantity(100, k);</span>
      +<span class="source-line-no">107</span><span id="line-107">        assertTrue(temp2.le(temp));</span>
      +<span class="source-line-no">108</span><span id="line-108">    }</span>
      +<span class="source-line-no">109</span><span id="line-109"></span>
      +<span class="source-line-no">110</span><span id="line-110">    @Test</span>
      +<span class="source-line-no">111</span><span id="line-111">    public void testMultiplyDouble() {</span>
      +<span class="source-line-no">112</span><span id="line-112">        Quantity&lt;Temperature&gt; result = temp.multiply(3d);</span>
      +<span class="source-line-no">113</span><span id="line-113">        assertEquals(300d, result.getValue());</span>
      +<span class="source-line-no">114</span><span id="line-114">    }</span>
      +<span class="source-line-no">115</span><span id="line-115"></span>
      +<span class="source-line-no">116</span><span id="line-116">    @Test</span>
      +<span class="source-line-no">117</span><span id="line-117">    public void testDivideDouble() {</span>
      +<span class="source-line-no">118</span><span id="line-118">        TemperatureQuantity result = temp.divide(10d);</span>
      +<span class="source-line-no">119</span><span id="line-119">        assertEquals(10d, result.scalar);</span>
      +<span class="source-line-no">120</span><span id="line-120">    }</span>
      +<span class="source-line-no">121</span><span id="line-121"></span>
      +<span class="source-line-no">122</span><span id="line-122">    @Test</span>
      +<span class="source-line-no">123</span><span id="line-123">    public void testConvert() {</span>
      +<span class="source-line-no">124</span><span id="line-124">        TemperatureQuantity result = temp.convert(TemperatureUnit.KELVIN);</span>
      +<span class="source-line-no">125</span><span id="line-125">        assertEquals(100d, result.scalar);</span>
      +<span class="source-line-no">126</span><span id="line-126">    }</span>
      +<span class="source-line-no">127</span><span id="line-127"></span>
      +<span class="source-line-no">128</span><span id="line-128">    @Test</span>
      +<span class="source-line-no">129</span><span id="line-129">    public void testToSystemUnit() {</span>
      +<span class="source-line-no">130</span><span id="line-130">        assertEquals(temp.toSystemUnit(), temp.to(temp.getUnit().getSystemUnit()));</span>
      +<span class="source-line-no">131</span><span id="line-131">    }</span>
      +<span class="source-line-no">132</span><span id="line-132"></span>
      +<span class="source-line-no">133</span><span id="line-133">    @Test</span>
      +<span class="source-line-no">134</span><span id="line-134">    public void testNegate() {</span>
      +<span class="source-line-no">135</span><span id="line-135">        assertEquals(temp.negate().getValue(), -temp.getValue().doubleValue());</span>
      +<span class="source-line-no">136</span><span id="line-136">    }</span>
      +<span class="source-line-no">137</span><span id="line-137"></span>
      +<span class="source-line-no">138</span><span id="line-138">    @Test</span>
      +<span class="source-line-no">139</span><span id="line-139">    public void testScale() {</span>
      +<span class="source-line-no">140</span><span id="line-140">        assertEquals(Quantity.Scale.ABSOLUTE, temp.getScale());</span>
      +<span class="source-line-no">141</span><span id="line-141">    }</span>
      +<span class="source-line-no">142</span><span id="line-142"></span>
      +<span class="source-line-no">143</span><span id="line-143">    @Test</span>
      +<span class="source-line-no">144</span><span id="line-144">    public void testLevelCelsius() {</span>
      +<span class="source-line-no">145</span><span id="line-145">        TemperatureQuantity temp2 = new TemperatureQuantity(20, TemperatureUnit.CELSIUS);</span>
      +<span class="source-line-no">146</span><span id="line-146">        assertEquals(Quantity.Scale.RELATIVE, temp2.getScale());</span>
      +<span class="source-line-no">147</span><span id="line-147">    }</span>
      +<span class="source-line-no">148</span><span id="line-148"></span>
      +<span class="source-line-no">149</span><span id="line-149">    @Test</span>
      +<span class="source-line-no">150</span><span id="line-150">    public void testLevelFahrenheit() {</span>
      +<span class="source-line-no">151</span><span id="line-151">        TemperatureQuantity temp2 = new TemperatureQuantity(60, TemperatureUnit.FAHRENHEIT);</span>
      +<span class="source-line-no">152</span><span id="line-152">        assertEquals(Quantity.Scale.RELATIVE, temp2.getScale());</span>
      +<span class="source-line-no">153</span><span id="line-153">    }</span>
      +<span class="source-line-no">154</span><span id="line-154"></span>
      +<span class="source-line-no">155</span><span id="line-155">    @Test</span>
      +<span class="source-line-no">156</span><span id="line-156">    public void testAbsolute() {</span>
      +<span class="source-line-no">157</span><span id="line-157">        assertEquals(Quantity.Scale.ABSOLUTE, temp.getScale());</span>
      +<span class="source-line-no">158</span><span id="line-158">    }</span>
      +<span class="source-line-no">159</span><span id="line-159">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/quantity/TestQuantities.html b/docs/site/testapidocs/src-html/javax/measure/test/quantity/TestQuantities.html
      new file mode 100644
      index 00000000..805ec887
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/quantity/TestQuantities.html
      @@ -0,0 +1,163 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.quantity, class: TestQuantities">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.quantity;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import java.math.BigDecimal;</span>
      +<span class="source-line-no">033</span><span id="line-33">import java.math.BigInteger;</span>
      +<span class="source-line-no">034</span><span id="line-34">import java.util.Objects;</span>
      +<span class="source-line-no">035</span><span id="line-35"></span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.Quantity;</span>
      +<span class="source-line-no">037</span><span id="line-37">import javax.measure.Unit;</span>
      +<span class="source-line-no">038</span><span id="line-38">import javax.measure.test.unit.AreaUnit;</span>
      +<span class="source-line-no">039</span><span id="line-39">import javax.measure.test.unit.DistanceUnit;</span>
      +<span class="source-line-no">040</span><span id="line-40">import javax.measure.test.unit.TimeUnit;</span>
      +<span class="source-line-no">041</span><span id="line-41">import javax.measure.test.unit.VolumeUnit;</span>
      +<span class="source-line-no">042</span><span id="line-42"></span>
      +<span class="source-line-no">043</span><span id="line-43">/**</span>
      +<span class="source-line-no">044</span><span id="line-44"> * Singleton class for accessing {@link Quantity} instances.</span>
      +<span class="source-line-no">045</span><span id="line-45"> *</span>
      +<span class="source-line-no">046</span><span id="line-46"> * @author werner</span>
      +<span class="source-line-no">047</span><span id="line-47"> * @author otaviojava</span>
      +<span class="source-line-no">048</span><span id="line-48"> * @since 1.0</span>
      +<span class="source-line-no">049</span><span id="line-49"> */</span>
      +<span class="source-line-no">050</span><span id="line-50">public final class TestQuantities {</span>
      +<span class="source-line-no">051</span><span id="line-51">    /**</span>
      +<span class="source-line-no">052</span><span id="line-52">     * Private singleton constructor.</span>
      +<span class="source-line-no">053</span><span id="line-53">     */</span>
      +<span class="source-line-no">054</span><span id="line-54">    private TestQuantities() {</span>
      +<span class="source-line-no">055</span><span id="line-55">    }</span>
      +<span class="source-line-no">056</span><span id="line-56"></span>
      +<span class="source-line-no">057</span><span id="line-57">    /**</span>
      +<span class="source-line-no">058</span><span id="line-58">     * Returns the scalar measurement. When the {@link Number} was {@link BigDecimal} or {@link BigInteger} will use DecimalQuantity, when the</span>
      +<span class="source-line-no">059</span><span id="line-59">     * {@link Number} was {@link Double} will DoubleQuantity otherwise NumberQuantity. in the specified unit.</span>
      +<span class="source-line-no">060</span><span id="line-60">     * @param &lt;Q&gt;</span>
      +<span class="source-line-no">061</span><span id="line-61">     *            The type of the quantity.</span>
      +<span class="source-line-no">062</span><span id="line-62">     * @param value</span>
      +<span class="source-line-no">063</span><span id="line-63">     *          the measurement value.</span>
      +<span class="source-line-no">064</span><span id="line-64">     * @param unit</span>
      +<span class="source-line-no">065</span><span id="line-65">     *          the measurement unit.</span>
      +<span class="source-line-no">066</span><span id="line-66">     * @return the corresponding &lt;code&gt;numeric&lt;/code&gt; measurement.</span>
      +<span class="source-line-no">067</span><span id="line-67">     * @throws NullPointerException</span>
      +<span class="source-line-no">068</span><span id="line-68">     *           when value or unit were null</span>
      +<span class="source-line-no">069</span><span id="line-69">     */</span>
      +<span class="source-line-no">070</span><span id="line-70">    @SuppressWarnings("unchecked")</span>
      +<span class="source-line-no">071</span><span id="line-71">    public static &lt;Q extends Quantity&lt;Q&gt;&gt; Quantity&lt;Q&gt; getQuantity(Number value, Unit&lt;Q&gt; unit) {</span>
      +<span class="source-line-no">072</span><span id="line-72">        Objects.requireNonNull(value);</span>
      +<span class="source-line-no">073</span><span id="line-73">        Objects.requireNonNull(unit);</span>
      +<span class="source-line-no">074</span><span id="line-74">        if (AreaUnit.class.isInstance(unit)) {</span>
      +<span class="source-line-no">075</span><span id="line-75">            return (Quantity&lt;Q&gt;) new AreaQuantity(value, unit);</span>
      +<span class="source-line-no">076</span><span id="line-76">        } else if (DistanceUnit.class.isInstance(unit)) {</span>
      +<span class="source-line-no">077</span><span id="line-77">            return (Quantity&lt;Q&gt;) new DistanceQuantity(value, unit);</span>
      +<span class="source-line-no">078</span><span id="line-78">        } else if (TimeUnit.class.isInstance(unit)) {</span>
      +<span class="source-line-no">079</span><span id="line-79">            return (Quantity&lt;Q&gt;) new TimeQuantity(value, unit);</span>
      +<span class="source-line-no">080</span><span id="line-80">        } else if (VolumeUnit.class.isInstance(unit)) {</span>
      +<span class="source-line-no">081</span><span id="line-81">            return (Quantity&lt;Q&gt;) new VolumeQuantity(value, unit);</span>
      +<span class="source-line-no">082</span><span id="line-82">        }</span>
      +<span class="source-line-no">083</span><span id="line-83">        return (Quantity&lt;Q&gt;) new DimensionlessQuantity(value, unit);</span>
      +<span class="source-line-no">084</span><span id="line-84">    }</span>
      +<span class="source-line-no">085</span><span id="line-85">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/quantity/TestQuantity.html b/docs/site/testapidocs/src-html/javax/measure/test/quantity/TestQuantity.html
      new file mode 100644
      index 00000000..acf81055
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/quantity/TestQuantity.html
      @@ -0,0 +1,248 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.quantity, class: TestQuantity">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.quantity;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import javax.measure.Quantity;</span>
      +<span class="source-line-no">033</span><span id="line-33">import javax.measure.Unit;</span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.quantity.Dimensionless;</span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.test.TestUnit;</span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.test.unit.BaseUnit;</span>
      +<span class="source-line-no">037</span><span id="line-37"></span>
      +<span class="source-line-no">038</span><span id="line-38">/**</span>
      +<span class="source-line-no">039</span><span id="line-39"> * @author Werner Keil</span>
      +<span class="source-line-no">040</span><span id="line-40"> * @version 2.0</span>
      +<span class="source-line-no">041</span><span id="line-41"> * @since 1.0</span>
      +<span class="source-line-no">042</span><span id="line-42"> */</span>
      +<span class="source-line-no">043</span><span id="line-43">public abstract class TestQuantity&lt;Q extends Quantity&lt;Q&gt;&gt; implements Quantity&lt;Q&gt;, Comparable&lt;Quantity&lt;Q&gt;&gt; {</span>
      +<span class="source-line-no">044</span><span id="line-44"></span>
      +<span class="source-line-no">045</span><span id="line-45">    @SuppressWarnings("rawtypes")</span>
      +<span class="source-line-no">046</span><span id="line-46">        public static final Quantity&lt;Dimensionless&gt; ONE = new DimensionlessQuantity(1d, (BaseUnit) TestUnit.ONE);</span>
      +<span class="source-line-no">047</span><span id="line-47"></span>
      +<span class="source-line-no">048</span><span id="line-48">    protected double scalar; // value in reference value</span>
      +<span class="source-line-no">049</span><span id="line-49">    protected double value; // value in value (Unit unit)</span>
      +<span class="source-line-no">050</span><span id="line-50">    protected TestUnit&lt;Q&gt; unit; // unit</span>
      +<span class="source-line-no">051</span><span id="line-51">    private final Class&lt;Q&gt; type; // quantity type</span>
      +<span class="source-line-no">052</span><span id="line-52">    private final Scale scale;</span>
      +<span class="source-line-no">053</span><span id="line-53"></span>
      +<span class="source-line-no">054</span><span id="line-54">    protected TestQuantity(Class&lt;Q&gt; type, Scale scale) {</span>
      +<span class="source-line-no">055</span><span id="line-55">        this.type = type;</span>
      +<span class="source-line-no">056</span><span id="line-56">        this.scale = scale;</span>
      +<span class="source-line-no">057</span><span id="line-57">    }</span>
      +<span class="source-line-no">058</span><span id="line-58"></span>
      +<span class="source-line-no">059</span><span id="line-59">    protected TestQuantity(Class&lt;Q&gt; type) {</span>
      +<span class="source-line-no">060</span><span id="line-60">        this(type, Scale.ABSOLUTE);</span>
      +<span class="source-line-no">061</span><span id="line-61">    }</span>
      +<span class="source-line-no">062</span><span id="line-62"></span>
      +<span class="source-line-no">063</span><span id="line-63">    public Class&lt;Q&gt; getType() {</span>
      +<span class="source-line-no">064</span><span id="line-64">        return this.type;</span>
      +<span class="source-line-no">065</span><span id="line-65">    }</span>
      +<span class="source-line-no">066</span><span id="line-66"></span>
      +<span class="source-line-no">067</span><span id="line-67">    public TestQuantity&lt;Q&gt; add(TestQuantity&lt;Q&gt; dn, TestQuantity&lt;Q&gt; d1, TestQuantity&lt;Q&gt; d2, TestUnit&lt;Q&gt; au) {</span>
      +<span class="source-line-no">068</span><span id="line-68">        if (d1.unit == d2.unit) {</span>
      +<span class="source-line-no">069</span><span id="line-69">            dn.unit = d1.unit;</span>
      +<span class="source-line-no">070</span><span id="line-70">            dn.scalar = d1.scalar + d2.scalar;</span>
      +<span class="source-line-no">071</span><span id="line-71">            dn.value = d1.value + d2.value;</span>
      +<span class="source-line-no">072</span><span id="line-72">        } else {</span>
      +<span class="source-line-no">073</span><span id="line-73">            dn.unit = au;</span>
      +<span class="source-line-no">074</span><span id="line-74">            dn.scalar = d1.scalar + d2.scalar;</span>
      +<span class="source-line-no">075</span><span id="line-75">            dn.value = dn.scalar;</span>
      +<span class="source-line-no">076</span><span id="line-76">        }</span>
      +<span class="source-line-no">077</span><span id="line-77">        return dn;</span>
      +<span class="source-line-no">078</span><span id="line-78">    }</span>
      +<span class="source-line-no">079</span><span id="line-79"></span>
      +<span class="source-line-no">080</span><span id="line-80">    public TestQuantity&lt;Q&gt; subtract(TestQuantity&lt;Q&gt; dn, TestQuantity&lt;Q&gt; d1, TestQuantity&lt;Q&gt; d2, TestUnit&lt;Q&gt; au) {</span>
      +<span class="source-line-no">081</span><span id="line-81">        if (d1.unit == d2.unit) {</span>
      +<span class="source-line-no">082</span><span id="line-82">            dn.unit = d1.unit;</span>
      +<span class="source-line-no">083</span><span id="line-83">            dn.scalar = d1.scalar - d2.scalar;</span>
      +<span class="source-line-no">084</span><span id="line-84">            dn.value = d1.value - d2.value;</span>
      +<span class="source-line-no">085</span><span id="line-85">        } else {</span>
      +<span class="source-line-no">086</span><span id="line-86">            dn.unit = au;</span>
      +<span class="source-line-no">087</span><span id="line-87">            dn.scalar = d1.scalar - d2.scalar;</span>
      +<span class="source-line-no">088</span><span id="line-88">            dn.value = dn.scalar;</span>
      +<span class="source-line-no">089</span><span id="line-89">        }</span>
      +<span class="source-line-no">090</span><span id="line-90">        return dn;</span>
      +<span class="source-line-no">091</span><span id="line-91">    }</span>
      +<span class="source-line-no">092</span><span id="line-92"></span>
      +<span class="source-line-no">093</span><span id="line-93">    public boolean eq(TestQuantity&lt;Q&gt; d1) {</span>
      +<span class="source-line-no">094</span><span id="line-94">        return (scalar == d1.scalar);</span>
      +<span class="source-line-no">095</span><span id="line-95">    }</span>
      +<span class="source-line-no">096</span><span id="line-96"></span>
      +<span class="source-line-no">097</span><span id="line-97">    public boolean ne(TestQuantity&lt;Q&gt; d1) {</span>
      +<span class="source-line-no">098</span><span id="line-98">        return (scalar != d1.scalar);</span>
      +<span class="source-line-no">099</span><span id="line-99">    }</span>
      +<span class="source-line-no">100</span><span id="line-100"></span>
      +<span class="source-line-no">101</span><span id="line-101">    public boolean gt(TestQuantity&lt;Q&gt; d1) {</span>
      +<span class="source-line-no">102</span><span id="line-102">        return (scalar &gt; d1.scalar);</span>
      +<span class="source-line-no">103</span><span id="line-103">    }</span>
      +<span class="source-line-no">104</span><span id="line-104"></span>
      +<span class="source-line-no">105</span><span id="line-105">    public boolean lt(TestQuantity&lt;Q&gt; d1) {</span>
      +<span class="source-line-no">106</span><span id="line-106">        return (scalar &lt; d1.scalar);</span>
      +<span class="source-line-no">107</span><span id="line-107">    }</span>
      +<span class="source-line-no">108</span><span id="line-108"></span>
      +<span class="source-line-no">109</span><span id="line-109">    public boolean ge(TestQuantity&lt;Q&gt; d1) {</span>
      +<span class="source-line-no">110</span><span id="line-110">        return (scalar &gt;= d1.scalar);</span>
      +<span class="source-line-no">111</span><span id="line-111">    }</span>
      +<span class="source-line-no">112</span><span id="line-112"></span>
      +<span class="source-line-no">113</span><span id="line-113">    public boolean le(TestQuantity&lt;Q&gt; d1) {</span>
      +<span class="source-line-no">114</span><span id="line-114">        return (scalar &lt;= d1.scalar);</span>
      +<span class="source-line-no">115</span><span id="line-115">    }</span>
      +<span class="source-line-no">116</span><span id="line-116"></span>
      +<span class="source-line-no">117</span><span id="line-117">    @Override</span>
      +<span class="source-line-no">118</span><span id="line-118">    public String toString() {</span>
      +<span class="source-line-no">119</span><span id="line-119">        return (Double.valueOf(value)).toString() + ' ' + String.valueOf(unit);</span>
      +<span class="source-line-no">120</span><span id="line-120">    }</span>
      +<span class="source-line-no">121</span><span id="line-121"></span>
      +<span class="source-line-no">122</span><span id="line-122">    /**</span>
      +<span class="source-line-no">123</span><span id="line-123">     * Compares this quantity to the specified Measurement quantity. The default implementation compares the {@link Quantity#getValue()} of both this</span>
      +<span class="source-line-no">124</span><span id="line-124">     * quantity and the specified Quantity stated in the same unit (this quantity's {@link #getUnit() unit}).</span>
      +<span class="source-line-no">125</span><span id="line-125">     *</span>
      +<span class="source-line-no">126</span><span id="line-126">     * @return a negative integer, zero, or a positive integer as this quantity is less than, equal to, or greater than the specified Quantity</span>
      +<span class="source-line-no">127</span><span id="line-127">     *         quantity.</span>
      +<span class="source-line-no">128</span><span id="line-128">     */</span>
      +<span class="source-line-no">129</span><span id="line-129">    public int compareTo(Quantity&lt;Q&gt; that) {</span>
      +<span class="source-line-no">130</span><span id="line-130">        return Double.compare(value, that.getValue().doubleValue());</span>
      +<span class="source-line-no">131</span><span id="line-131">    }</span>
      +<span class="source-line-no">132</span><span id="line-132"></span>
      +<span class="source-line-no">133</span><span id="line-133">    protected String showInUnits(TestUnit&lt;?&gt; u, int precision) {</span>
      +<span class="source-line-no">134</span><span id="line-134">        double result = scalar / u.getMultFactor();</span>
      +<span class="source-line-no">135</span><span id="line-135"></span>
      +<span class="source-line-no">136</span><span id="line-136">        String str = (Double.valueOf(result)).toString();</span>
      +<span class="source-line-no">137</span><span id="line-137">        char cs[] = str.toCharArray();</span>
      +<span class="source-line-no">138</span><span id="line-138">        int i = 0;</span>
      +<span class="source-line-no">139</span><span id="line-139">        while (i &lt; cs.length &amp;&amp; (cs[i] &gt;= '0' &amp;&amp; cs[i] &lt;= '9' || cs[i] == '.')) {</span>
      +<span class="source-line-no">140</span><span id="line-140">            i++;</span>
      +<span class="source-line-no">141</span><span id="line-141">        }</span>
      +<span class="source-line-no">142</span><span id="line-142">        Double bd = new Double(new String(cs, 0, i));</span>
      +<span class="source-line-no">143</span><span id="line-143">        // BigDecimal bd2 = bd.setScale(precision, RoundingMode.HALF_UP);</span>
      +<span class="source-line-no">144</span><span id="line-144">        // str = bd2.toString();</span>
      +<span class="source-line-no">145</span><span id="line-145">        str = bd.toString();</span>
      +<span class="source-line-no">146</span><span id="line-146"></span>
      +<span class="source-line-no">147</span><span id="line-147">        String exp = "";</span>
      +<span class="source-line-no">148</span><span id="line-148">        if (i &lt; cs.length) {</span>
      +<span class="source-line-no">149</span><span id="line-149">            exp = new String(cs, i, cs.length - i);</span>
      +<span class="source-line-no">150</span><span id="line-150">        }</span>
      +<span class="source-line-no">151</span><span id="line-151">        return str + exp + ' ' + u.getName();</span>
      +<span class="source-line-no">152</span><span id="line-152">    }</span>
      +<span class="source-line-no">153</span><span id="line-153"></span>
      +<span class="source-line-no">154</span><span id="line-154">    public Number getValue() {</span>
      +<span class="source-line-no">155</span><span id="line-155">        return value;</span>
      +<span class="source-line-no">156</span><span id="line-156">    }</span>
      +<span class="source-line-no">157</span><span id="line-157"></span>
      +<span class="source-line-no">158</span><span id="line-158">    public Unit&lt;Q&gt; getUnit() {</span>
      +<span class="source-line-no">159</span><span id="line-159">        return unit;</span>
      +<span class="source-line-no">160</span><span id="line-160">    }</span>
      +<span class="source-line-no">161</span><span id="line-161"></span>
      +<span class="source-line-no">162</span><span id="line-162">    public Scale getScale() {</span>
      +<span class="source-line-no">163</span><span id="line-163">        return scale;</span>
      +<span class="source-line-no">164</span><span id="line-164">    }</span>
      +<span class="source-line-no">165</span><span id="line-165">    </span>
      +<span class="source-line-no">166</span><span id="line-166">    @Override</span>
      +<span class="source-line-no">167</span><span id="line-167">    public boolean isEquivalentTo(Quantity&lt;Q&gt; that) {</span>
      +<span class="source-line-no">168</span><span id="line-168">        return this.compareTo(that) == 0;</span>
      +<span class="source-line-no">169</span><span id="line-169">    }</span>
      +<span class="source-line-no">170</span><span id="line-170">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/quantity/TimeQuantity.html b/docs/site/testapidocs/src-html/javax/measure/test/quantity/TimeQuantity.html
      new file mode 100644
      index 00000000..8c583410
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/quantity/TimeQuantity.html
      @@ -0,0 +1,244 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.quantity, class: TimeQuantity">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.quantity;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import javax.measure.Quantity;</span>
      +<span class="source-line-no">033</span><span id="line-33">import javax.measure.Unit;</span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.quantity.Time;</span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.test.unit.DistanceUnit;</span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.test.unit.TimeUnit;</span>
      +<span class="source-line-no">037</span><span id="line-37"></span>
      +<span class="source-line-no">038</span><span id="line-38">/**</span>
      +<span class="source-line-no">039</span><span id="line-39"> * @author Werner Keil</span>
      +<span class="source-line-no">040</span><span id="line-40"> * @version 0.6</span>
      +<span class="source-line-no">041</span><span id="line-41"> */</span>
      +<span class="source-line-no">042</span><span id="line-42">public class TimeQuantity extends TestQuantity&lt;Time&gt; {</span>
      +<span class="source-line-no">043</span><span id="line-43"></span>
      +<span class="source-line-no">044</span><span id="line-44">    public TimeQuantity(double val, TimeUnit un) {</span>
      +<span class="source-line-no">045</span><span id="line-45">        this();</span>
      +<span class="source-line-no">046</span><span id="line-46">        value = val;</span>
      +<span class="source-line-no">047</span><span id="line-47">        unit = un;</span>
      +<span class="source-line-no">048</span><span id="line-48">        scalar = val * unit.getMultFactor();</span>
      +<span class="source-line-no">049</span><span id="line-49">    }</span>
      +<span class="source-line-no">050</span><span id="line-50"></span>
      +<span class="source-line-no">051</span><span id="line-51">    public TimeQuantity(Number val, @SuppressWarnings("rawtypes") Unit un) {</span>
      +<span class="source-line-no">052</span><span id="line-52">        this(val.doubleValue(), (TimeUnit) un);</span>
      +<span class="source-line-no">053</span><span id="line-53">    }</span>
      +<span class="source-line-no">054</span><span id="line-54"></span>
      +<span class="source-line-no">055</span><span id="line-55">    public TimeQuantity() {</span>
      +<span class="source-line-no">056</span><span id="line-56">        super(Time.class);</span>
      +<span class="source-line-no">057</span><span id="line-57">    }</span>
      +<span class="source-line-no">058</span><span id="line-58"></span>
      +<span class="source-line-no">059</span><span id="line-59">    /*</span>
      +<span class="source-line-no">060</span><span id="line-60">     * Time(double val) {</span>
      +<span class="source-line-no">061</span><span id="line-61">     *</span>
      +<span class="source-line-no">062</span><span id="line-62">     * value = val; unit = m; // reference Unit scalar = val;</span>
      +<span class="source-line-no">063</span><span id="line-63">     *</span>
      +<span class="source-line-no">064</span><span id="line-64">     * }</span>
      +<span class="source-line-no">065</span><span id="line-65">     */</span>
      +<span class="source-line-no">066</span><span id="line-66">    public TimeQuantity add(TimeQuantity d1) {</span>
      +<span class="source-line-no">067</span><span id="line-67">        TimeQuantity dn = new TimeQuantity();</span>
      +<span class="source-line-no">068</span><span id="line-68">        Object o = super.add(dn, this, d1, TimeUnit.REF_UNIT);</span>
      +<span class="source-line-no">069</span><span id="line-69">        return (TimeQuantity) o;</span>
      +<span class="source-line-no">070</span><span id="line-70">    }</span>
      +<span class="source-line-no">071</span><span id="line-71"></span>
      +<span class="source-line-no">072</span><span id="line-72">    public TimeQuantity subtract(TimeQuantity d1) {</span>
      +<span class="source-line-no">073</span><span id="line-73">        TimeQuantity dn = new TimeQuantity();</span>
      +<span class="source-line-no">074</span><span id="line-74">        Object o = super.subtract(dn, this, d1, TimeUnit.REF_UNIT);</span>
      +<span class="source-line-no">075</span><span id="line-75">        return (TimeQuantity) o;</span>
      +<span class="source-line-no">076</span><span id="line-76">    }</span>
      +<span class="source-line-no">077</span><span id="line-77"></span>
      +<span class="source-line-no">078</span><span id="line-78">    public boolean eq(TimeQuantity d1) {</span>
      +<span class="source-line-no">079</span><span id="line-79">        return super.eq(d1);</span>
      +<span class="source-line-no">080</span><span id="line-80">    }</span>
      +<span class="source-line-no">081</span><span id="line-81"></span>
      +<span class="source-line-no">082</span><span id="line-82">    public boolean ne(TimeQuantity d1) {</span>
      +<span class="source-line-no">083</span><span id="line-83">        return super.ne(d1);</span>
      +<span class="source-line-no">084</span><span id="line-84">    }</span>
      +<span class="source-line-no">085</span><span id="line-85"></span>
      +<span class="source-line-no">086</span><span id="line-86">    public boolean gt(TimeQuantity d1) {</span>
      +<span class="source-line-no">087</span><span id="line-87">        return super.gt(d1);</span>
      +<span class="source-line-no">088</span><span id="line-88">    }</span>
      +<span class="source-line-no">089</span><span id="line-89"></span>
      +<span class="source-line-no">090</span><span id="line-90">    public boolean lt(TimeQuantity d1) {</span>
      +<span class="source-line-no">091</span><span id="line-91">        return super.lt(d1);</span>
      +<span class="source-line-no">092</span><span id="line-92">    }</span>
      +<span class="source-line-no">093</span><span id="line-93"></span>
      +<span class="source-line-no">094</span><span id="line-94">    public boolean ge(TimeQuantity d1) {</span>
      +<span class="source-line-no">095</span><span id="line-95">        return super.ge(d1);</span>
      +<span class="source-line-no">096</span><span id="line-96">    }</span>
      +<span class="source-line-no">097</span><span id="line-97"></span>
      +<span class="source-line-no">098</span><span id="line-98">    public boolean le(TimeQuantity d1) {</span>
      +<span class="source-line-no">099</span><span id="line-99">        return super.le(d1);</span>
      +<span class="source-line-no">100</span><span id="line-100">    }</span>
      +<span class="source-line-no">101</span><span id="line-101"></span>
      +<span class="source-line-no">102</span><span id="line-102">    public TimeQuantity multiply(double v) {</span>
      +<span class="source-line-no">103</span><span id="line-103">        return new TimeQuantity(value * v, (TimeUnit) unit);</span>
      +<span class="source-line-no">104</span><span id="line-104">    }</span>
      +<span class="source-line-no">105</span><span id="line-105"></span>
      +<span class="source-line-no">106</span><span id="line-106">    public TimeQuantity divide(double v) {</span>
      +<span class="source-line-no">107</span><span id="line-107">        return new TimeQuantity(value / v, (TimeUnit) unit);</span>
      +<span class="source-line-no">108</span><span id="line-108">    }</span>
      +<span class="source-line-no">109</span><span id="line-109"></span>
      +<span class="source-line-no">110</span><span id="line-110">    public TimeQuantity convert(TimeUnit newUnit) {</span>
      +<span class="source-line-no">111</span><span id="line-111">        return new TimeQuantity(scalar / newUnit.getMultFactor(), newUnit);</span>
      +<span class="source-line-no">112</span><span id="line-112">    }</span>
      +<span class="source-line-no">113</span><span id="line-113"></span>
      +<span class="source-line-no">114</span><span id="line-114">    public String showInUnits(DistanceUnit u, int precision) {</span>
      +<span class="source-line-no">115</span><span id="line-115">        return super.showInUnits(u, precision);</span>
      +<span class="source-line-no">116</span><span id="line-116">    }</span>
      +<span class="source-line-no">117</span><span id="line-117"></span>
      +<span class="source-line-no">118</span><span id="line-118">    public Quantity&lt;?&gt; divide(Quantity&lt;?&gt; that) {</span>
      +<span class="source-line-no">119</span><span id="line-119">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">120</span><span id="line-120">        return null;</span>
      +<span class="source-line-no">121</span><span id="line-121">    }</span>
      +<span class="source-line-no">122</span><span id="line-122"></span>
      +<span class="source-line-no">123</span><span id="line-123">    public Quantity&lt;Time&gt; subtract(Quantity&lt;Time&gt; that) {</span>
      +<span class="source-line-no">124</span><span id="line-124">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">125</span><span id="line-125">        return null;</span>
      +<span class="source-line-no">126</span><span id="line-126">    }</span>
      +<span class="source-line-no">127</span><span id="line-127"></span>
      +<span class="source-line-no">128</span><span id="line-128">    public Quantity&lt;Time&gt; add(Quantity&lt;Time&gt; that) {</span>
      +<span class="source-line-no">129</span><span id="line-129">        return add((TimeQuantity) that);</span>
      +<span class="source-line-no">130</span><span id="line-130">    }</span>
      +<span class="source-line-no">131</span><span id="line-131"></span>
      +<span class="source-line-no">132</span><span id="line-132">    public Quantity&lt;Time&gt; divide(Number that) {</span>
      +<span class="source-line-no">133</span><span id="line-133">        return divide(that.doubleValue());</span>
      +<span class="source-line-no">134</span><span id="line-134">    }</span>
      +<span class="source-line-no">135</span><span id="line-135"></span>
      +<span class="source-line-no">136</span><span id="line-136">    public Quantity&lt;Time&gt; inverse() {</span>
      +<span class="source-line-no">137</span><span id="line-137">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">138</span><span id="line-138">        return null;</span>
      +<span class="source-line-no">139</span><span id="line-139">    }</span>
      +<span class="source-line-no">140</span><span id="line-140"></span>
      +<span class="source-line-no">141</span><span id="line-141">    public Quantity&lt;Time&gt; multiply(Number that) {</span>
      +<span class="source-line-no">142</span><span id="line-142">        return multiply(that.doubleValue());</span>
      +<span class="source-line-no">143</span><span id="line-143">    }</span>
      +<span class="source-line-no">144</span><span id="line-144"></span>
      +<span class="source-line-no">145</span><span id="line-145">    public Quantity&lt;Time&gt; to(Unit&lt;Time&gt; unit) {</span>
      +<span class="source-line-no">146</span><span id="line-146">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">147</span><span id="line-147">        return null;</span>
      +<span class="source-line-no">148</span><span id="line-148">    }</span>
      +<span class="source-line-no">149</span><span id="line-149"></span>
      +<span class="source-line-no">150</span><span id="line-150">    public Quantity&lt;?&gt; multiply(Quantity&lt;?&gt; that) {</span>
      +<span class="source-line-no">151</span><span id="line-151">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">152</span><span id="line-152">        return null;</span>
      +<span class="source-line-no">153</span><span id="line-153">    }</span>
      +<span class="source-line-no">154</span><span id="line-154"></span>
      +<span class="source-line-no">155</span><span id="line-155">    @Override</span>
      +<span class="source-line-no">156</span><span id="line-156">    public Quantity&lt;Time&gt; negate() {</span>
      +<span class="source-line-no">157</span><span id="line-157">        return new TimeQuantity(-value, getUnit());</span>
      +<span class="source-line-no">158</span><span id="line-158">    }</span>
      +<span class="source-line-no">159</span><span id="line-159"></span>
      +<span class="source-line-no">160</span><span id="line-160">    @SuppressWarnings({ "unchecked", "rawtypes" })</span>
      +<span class="source-line-no">161</span><span id="line-161">    public final &lt;T extends Quantity&lt;T&gt;&gt; Quantity&lt;T&gt; asType(Class&lt;T&gt; type) throws ClassCastException {</span>
      +<span class="source-line-no">162</span><span id="line-162">        this.getUnit().asType(type); // Raises ClassCastException is dimension</span>
      +<span class="source-line-no">163</span><span id="line-163">        // mismatches.</span>
      +<span class="source-line-no">164</span><span id="line-164">        return (Quantity) this;</span>
      +<span class="source-line-no">165</span><span id="line-165">    }</span>
      +<span class="source-line-no">166</span><span id="line-166">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/quantity/VolumeQuantity.html b/docs/site/testapidocs/src-html/javax/measure/test/quantity/VolumeQuantity.html
      new file mode 100644
      index 00000000..9ded4ac8
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/quantity/VolumeQuantity.html
      @@ -0,0 +1,252 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.quantity, class: VolumeQuantity">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.quantity;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import javax.measure.Quantity;</span>
      +<span class="source-line-no">033</span><span id="line-33">import javax.measure.Unit;</span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.quantity.Volume;</span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.test.unit.AreaUnit;</span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.test.unit.DistanceUnit;</span>
      +<span class="source-line-no">037</span><span id="line-37">import javax.measure.test.unit.VolumeUnit;</span>
      +<span class="source-line-no">038</span><span id="line-38"></span>
      +<span class="source-line-no">039</span><span id="line-39">/**</span>
      +<span class="source-line-no">040</span><span id="line-40"> * @author Werner Keil</span>
      +<span class="source-line-no">041</span><span id="line-41"> * @version 0.6</span>
      +<span class="source-line-no">042</span><span id="line-42"> */</span>
      +<span class="source-line-no">043</span><span id="line-43">public class VolumeQuantity extends TestQuantity&lt;Volume&gt; {</span>
      +<span class="source-line-no">044</span><span id="line-44">    public VolumeQuantity() {</span>
      +<span class="source-line-no">045</span><span id="line-45">        super(Volume.class);</span>
      +<span class="source-line-no">046</span><span id="line-46">    }</span>
      +<span class="source-line-no">047</span><span id="line-47"></span>
      +<span class="source-line-no">048</span><span id="line-48">    public VolumeQuantity(double val, VolumeUnit un) {</span>
      +<span class="source-line-no">049</span><span id="line-49">        this();</span>
      +<span class="source-line-no">050</span><span id="line-50">        value = val;</span>
      +<span class="source-line-no">051</span><span id="line-51">        unit = un;</span>
      +<span class="source-line-no">052</span><span id="line-52">        scalar = val * unit.getMultFactor();</span>
      +<span class="source-line-no">053</span><span id="line-53">    }</span>
      +<span class="source-line-no">054</span><span id="line-54"></span>
      +<span class="source-line-no">055</span><span id="line-55">    public VolumeQuantity(Number val, Unit un) {</span>
      +<span class="source-line-no">056</span><span id="line-56">        this(val.doubleValue(), (VolumeUnit) un);</span>
      +<span class="source-line-no">057</span><span id="line-57">    }</span>
      +<span class="source-line-no">058</span><span id="line-58"></span>
      +<span class="source-line-no">059</span><span id="line-59">    public VolumeQuantity add(VolumeQuantity d1) {</span>
      +<span class="source-line-no">060</span><span id="line-60">        VolumeQuantity dn = new VolumeQuantity();</span>
      +<span class="source-line-no">061</span><span id="line-61">        Object o = super.add(dn, this, d1, VolumeUnit.REF_UNIT);</span>
      +<span class="source-line-no">062</span><span id="line-62">        return (VolumeQuantity) o;</span>
      +<span class="source-line-no">063</span><span id="line-63">    }</span>
      +<span class="source-line-no">064</span><span id="line-64"></span>
      +<span class="source-line-no">065</span><span id="line-65">    public VolumeQuantity subtract(VolumeQuantity d1) {</span>
      +<span class="source-line-no">066</span><span id="line-66">        VolumeQuantity dn = new VolumeQuantity();</span>
      +<span class="source-line-no">067</span><span id="line-67">        Object o = super.subtract(dn, this, d1, VolumeUnit.REF_UNIT);</span>
      +<span class="source-line-no">068</span><span id="line-68">        return (VolumeQuantity) o;</span>
      +<span class="source-line-no">069</span><span id="line-69">    }</span>
      +<span class="source-line-no">070</span><span id="line-70"></span>
      +<span class="source-line-no">071</span><span id="line-71">    public boolean eq(VolumeQuantity d1) {</span>
      +<span class="source-line-no">072</span><span id="line-72">        return super.eq(d1);</span>
      +<span class="source-line-no">073</span><span id="line-73">    }</span>
      +<span class="source-line-no">074</span><span id="line-74"></span>
      +<span class="source-line-no">075</span><span id="line-75">    public boolean ne(VolumeQuantity d1) {</span>
      +<span class="source-line-no">076</span><span id="line-76">        return super.ne(d1);</span>
      +<span class="source-line-no">077</span><span id="line-77">    }</span>
      +<span class="source-line-no">078</span><span id="line-78"></span>
      +<span class="source-line-no">079</span><span id="line-79">    public boolean gt(VolumeQuantity d1) {</span>
      +<span class="source-line-no">080</span><span id="line-80">        return super.gt(d1);</span>
      +<span class="source-line-no">081</span><span id="line-81">    }</span>
      +<span class="source-line-no">082</span><span id="line-82"></span>
      +<span class="source-line-no">083</span><span id="line-83">    public boolean lt(VolumeQuantity d1) {</span>
      +<span class="source-line-no">084</span><span id="line-84">        return super.lt(d1);</span>
      +<span class="source-line-no">085</span><span id="line-85">    }</span>
      +<span class="source-line-no">086</span><span id="line-86"></span>
      +<span class="source-line-no">087</span><span id="line-87">    public boolean ge(VolumeQuantity d1) {</span>
      +<span class="source-line-no">088</span><span id="line-88">        return super.ge(d1);</span>
      +<span class="source-line-no">089</span><span id="line-89">    }</span>
      +<span class="source-line-no">090</span><span id="line-90"></span>
      +<span class="source-line-no">091</span><span id="line-91">    public boolean le(VolumeQuantity d1) {</span>
      +<span class="source-line-no">092</span><span id="line-92">        return super.le(d1);</span>
      +<span class="source-line-no">093</span><span id="line-93">    }</span>
      +<span class="source-line-no">094</span><span id="line-94"></span>
      +<span class="source-line-no">095</span><span id="line-95">    public VolumeQuantity multiply(double v) {</span>
      +<span class="source-line-no">096</span><span id="line-96">        return new VolumeQuantity(value * v, (VolumeUnit) unit);</span>
      +<span class="source-line-no">097</span><span id="line-97">    }</span>
      +<span class="source-line-no">098</span><span id="line-98"></span>
      +<span class="source-line-no">099</span><span id="line-99">    public VolumeQuantity divide(double v) {</span>
      +<span class="source-line-no">100</span><span id="line-100">        return new VolumeQuantity(value / v, (VolumeUnit) unit);</span>
      +<span class="source-line-no">101</span><span id="line-101">    }</span>
      +<span class="source-line-no">102</span><span id="line-102"></span>
      +<span class="source-line-no">103</span><span id="line-103">    // mixed type operations</span>
      +<span class="source-line-no">104</span><span id="line-104"></span>
      +<span class="source-line-no">105</span><span id="line-105">    public AreaQuantity divide(DistanceQuantity d1) {</span>
      +<span class="source-line-no">106</span><span id="line-106">        VolumeQuantity dq0 = convert(VolumeUnit.cumetre);</span>
      +<span class="source-line-no">107</span><span id="line-107">        DistanceQuantity dq1 = d1.convert(DistanceUnit.m);</span>
      +<span class="source-line-no">108</span><span id="line-108">        return new AreaQuantity(dq0.value / dq1.value, AreaUnit.sqmetre);</span>
      +<span class="source-line-no">109</span><span id="line-109">    }</span>
      +<span class="source-line-no">110</span><span id="line-110"></span>
      +<span class="source-line-no">111</span><span id="line-111">    public DistanceQuantity divide(AreaQuantity a1) {</span>
      +<span class="source-line-no">112</span><span id="line-112">        VolumeQuantity dq0 = convert(VolumeUnit.cumetre);</span>
      +<span class="source-line-no">113</span><span id="line-113">        AreaQuantity dq1 = a1.convert(AreaUnit.sqmetre);</span>
      +<span class="source-line-no">114</span><span id="line-114">        return new DistanceQuantity(dq0.value / dq1.value, DistanceUnit.m);</span>
      +<span class="source-line-no">115</span><span id="line-115">    }</span>
      +<span class="source-line-no">116</span><span id="line-116"></span>
      +<span class="source-line-no">117</span><span id="line-117">    public VolumeQuantity convert(VolumeUnit newUnit) {</span>
      +<span class="source-line-no">118</span><span id="line-118">        return new VolumeQuantity(scalar / newUnit.getMultFactor(), newUnit);</span>
      +<span class="source-line-no">119</span><span id="line-119">    }</span>
      +<span class="source-line-no">120</span><span id="line-120"></span>
      +<span class="source-line-no">121</span><span id="line-121">    public String showInUnits(VolumeUnit u, int precision) {</span>
      +<span class="source-line-no">122</span><span id="line-122">        return super.showInUnits(u, precision);</span>
      +<span class="source-line-no">123</span><span id="line-123">    }</span>
      +<span class="source-line-no">124</span><span id="line-124"></span>
      +<span class="source-line-no">125</span><span id="line-125">    public Quantity&lt;?&gt; divide(Quantity&lt;?&gt; that) {</span>
      +<span class="source-line-no">126</span><span id="line-126">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">127</span><span id="line-127">        return null;</span>
      +<span class="source-line-no">128</span><span id="line-128">    }</span>
      +<span class="source-line-no">129</span><span id="line-129"></span>
      +<span class="source-line-no">130</span><span id="line-130">    public Quantity&lt;Volume&gt; subtract(Quantity&lt;Volume&gt; that) {</span>
      +<span class="source-line-no">131</span><span id="line-131">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">132</span><span id="line-132">        return null;</span>
      +<span class="source-line-no">133</span><span id="line-133">    }</span>
      +<span class="source-line-no">134</span><span id="line-134"></span>
      +<span class="source-line-no">135</span><span id="line-135">    public Quantity&lt;Volume&gt; add(Quantity&lt;Volume&gt; that) {</span>
      +<span class="source-line-no">136</span><span id="line-136">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">137</span><span id="line-137">        return null;</span>
      +<span class="source-line-no">138</span><span id="line-138">    }</span>
      +<span class="source-line-no">139</span><span id="line-139"></span>
      +<span class="source-line-no">140</span><span id="line-140">    public Quantity&lt;Volume&gt; divide(Number that) {</span>
      +<span class="source-line-no">141</span><span id="line-141">        return divide(that.doubleValue());</span>
      +<span class="source-line-no">142</span><span id="line-142">    }</span>
      +<span class="source-line-no">143</span><span id="line-143"></span>
      +<span class="source-line-no">144</span><span id="line-144">    public Quantity&lt;Volume&gt; inverse() {</span>
      +<span class="source-line-no">145</span><span id="line-145">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">146</span><span id="line-146">        return null;</span>
      +<span class="source-line-no">147</span><span id="line-147">    }</span>
      +<span class="source-line-no">148</span><span id="line-148"></span>
      +<span class="source-line-no">149</span><span id="line-149">    public Quantity&lt;Volume&gt; multiply(Number that) {</span>
      +<span class="source-line-no">150</span><span id="line-150">        return multiply(that.doubleValue());</span>
      +<span class="source-line-no">151</span><span id="line-151">    }</span>
      +<span class="source-line-no">152</span><span id="line-152"></span>
      +<span class="source-line-no">153</span><span id="line-153">    public Quantity&lt;Volume&gt; to(Unit&lt;Volume&gt; unit) {</span>
      +<span class="source-line-no">154</span><span id="line-154">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">155</span><span id="line-155">        return null;</span>
      +<span class="source-line-no">156</span><span id="line-156">    }</span>
      +<span class="source-line-no">157</span><span id="line-157"></span>
      +<span class="source-line-no">158</span><span id="line-158">    public Quantity&lt;?&gt; multiply(Quantity&lt;?&gt; that) {</span>
      +<span class="source-line-no">159</span><span id="line-159">        // TODO Auto-generated method stub</span>
      +<span class="source-line-no">160</span><span id="line-160">        return null;</span>
      +<span class="source-line-no">161</span><span id="line-161">    }</span>
      +<span class="source-line-no">162</span><span id="line-162"></span>
      +<span class="source-line-no">163</span><span id="line-163">    @Override</span>
      +<span class="source-line-no">164</span><span id="line-164">    public Quantity&lt;Volume&gt; negate() {</span>
      +<span class="source-line-no">165</span><span id="line-165">        return new VolumeQuantity(-value, getUnit());</span>
      +<span class="source-line-no">166</span><span id="line-166">    }</span>
      +<span class="source-line-no">167</span><span id="line-167"></span>
      +<span class="source-line-no">168</span><span id="line-168">    @SuppressWarnings({ "unchecked", "rawtypes" })</span>
      +<span class="source-line-no">169</span><span id="line-169">    public final &lt;T extends Quantity&lt;T&gt;&gt; Quantity&lt;T&gt; asType(Class&lt;T&gt; type) throws ClassCastException {</span>
      +<span class="source-line-no">170</span><span id="line-170">        this.getUnit().asType(type); // Raises ClassCastException is dimension</span>
      +<span class="source-line-no">171</span><span id="line-171">        // mismatches.</span>
      +<span class="source-line-no">172</span><span id="line-172">        return (Quantity) this;</span>
      +<span class="source-line-no">173</span><span id="line-173">    }</span>
      +<span class="source-line-no">174</span><span id="line-174">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/unit/AreaUnit.html b/docs/site/testapidocs/src-html/javax/measure/test/unit/AreaUnit.html
      new file mode 100644
      index 00000000..4c8c3a26
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/unit/AreaUnit.html
      @@ -0,0 +1,137 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.unit, class: AreaUnit">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.unit;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import java.math.BigDecimal;</span>
      +<span class="source-line-no">033</span><span id="line-33"></span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.Unit;</span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.quantity.Area;</span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.test.TestUnit;</span>
      +<span class="source-line-no">037</span><span id="line-37"></span>
      +<span class="source-line-no">038</span><span id="line-38">/**</span>
      +<span class="source-line-no">039</span><span id="line-39"> * @author Werner Keil</span>
      +<span class="source-line-no">040</span><span id="line-40"> */</span>
      +<span class="source-line-no">041</span><span id="line-41">public class AreaUnit extends TestUnit&lt;Area&gt; {</span>
      +<span class="source-line-no">042</span><span id="line-42"></span>
      +<span class="source-line-no">043</span><span id="line-43">    public static final AreaUnit sqmetre = new AreaUnit("sqmetre", 1.0); // reference</span>
      +<span class="source-line-no">044</span><span id="line-44">    // Unit</span>
      +<span class="source-line-no">045</span><span id="line-45">    public static final AreaUnit REF_UNIT = sqmetre; // reference Unit</span>
      +<span class="source-line-no">046</span><span id="line-46">    public static final AreaUnit sqmile = new AreaUnit("sqmile", 1609.0 * 1609.0);</span>
      +<span class="source-line-no">047</span><span id="line-47">    public static final AreaUnit acre = new AreaUnit("acre", 4047.0);</span>
      +<span class="source-line-no">048</span><span id="line-48">    public static final AreaUnit hectare = new AreaUnit("hectare", 1.0e4);</span>
      +<span class="source-line-no">049</span><span id="line-49"></span>
      +<span class="source-line-no">050</span><span id="line-50">    public AreaUnit(String name2, double convF) {</span>
      +<span class="source-line-no">051</span><span id="line-51">        super(name2);</span>
      +<span class="source-line-no">052</span><span id="line-52">        multFactor = BigDecimal.valueOf(convF);</span>
      +<span class="source-line-no">053</span><span id="line-53">    }</span>
      +<span class="source-line-no">054</span><span id="line-54"></span>
      +<span class="source-line-no">055</span><span id="line-55">    @Override</span>
      +<span class="source-line-no">056</span><span id="line-56">    public Unit&lt;Area&gt; getSystemUnit() {</span>
      +<span class="source-line-no">057</span><span id="line-57">        return REF_UNIT;</span>
      +<span class="source-line-no">058</span><span id="line-58">    }</span>
      +<span class="source-line-no">059</span><span id="line-59">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/unit/BaseUnit.html b/docs/site/testapidocs/src-html/javax/measure/test/unit/BaseUnit.html
      new file mode 100644
      index 00000000..acb4fa56
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/unit/BaseUnit.html
      @@ -0,0 +1,198 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.unit, class: BaseUnit">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.unit;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import javax.measure.Quantity;</span>
      +<span class="source-line-no">033</span><span id="line-33">import javax.measure.Unit;</span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.test.TestUnit;</span>
      +<span class="source-line-no">035</span><span id="line-35"></span>
      +<span class="source-line-no">036</span><span id="line-36">/**</span>
      +<span class="source-line-no">037</span><span id="line-37"> * Building blocks on top of which all others units are created. Base units are always unscaled metric units.</span>
      +<span class="source-line-no">038</span><span id="line-38"> *</span>
      +<span class="source-line-no">039</span><span id="line-39"> * &lt;p&gt;</span>
      +<span class="source-line-no">040</span><span id="line-40"> * When using the standard model (default), all seven base units are dimensionally independent.</span>
      +<span class="source-line-no">041</span><span id="line-41"> * &lt;/p&gt;</span>
      +<span class="source-line-no">042</span><span id="line-42"> *</span>
      +<span class="source-line-no">043</span><span id="line-43"> * @param &lt;Q&gt;</span>
      +<span class="source-line-no">044</span><span id="line-44"> *            The type of the quantity measured by this unit.</span>
      +<span class="source-line-no">045</span><span id="line-45"> *</span>
      +<span class="source-line-no">046</span><span id="line-46"> * @author &lt;a href="mailto:jean-marie@dautelle.com"&gt;Jean-Marie Dautelle&lt;/a&gt;</span>
      +<span class="source-line-no">047</span><span id="line-47"> * @author &lt;a href="mailto:werner@uom.technology"&gt;Werner Keil&lt;/a&gt;</span>
      +<span class="source-line-no">048</span><span id="line-48"> * @version 1.1</span>
      +<span class="source-line-no">049</span><span id="line-49"> * @since 1.0</span>
      +<span class="source-line-no">050</span><span id="line-50"> *</span>
      +<span class="source-line-no">051</span><span id="line-51"> * @see &lt;a href="http://en.wikipedia.org/wiki/SI_base_unit"&gt;Wikipedia: SI base unit&lt;/a&gt;</span>
      +<span class="source-line-no">052</span><span id="line-52"> */</span>
      +<span class="source-line-no">053</span><span id="line-53">public class BaseUnit&lt;Q extends Quantity&lt;Q&gt;&gt; extends TestUnit&lt;Q&gt; {</span>
      +<span class="source-line-no">054</span><span id="line-54">    /**</span>
      +<span class="source-line-no">055</span><span id="line-55">     * Creates a base unit having the specified symbol.</span>
      +<span class="source-line-no">056</span><span id="line-56">     *</span>
      +<span class="source-line-no">057</span><span id="line-57">     * @param symbol</span>
      +<span class="source-line-no">058</span><span id="line-58">     *            the symbol of this base unit. </span>
      +<span class="source-line-no">059</span><span id="line-59">     * @param name the name of this base unit.</span>
      +<span class="source-line-no">060</span><span id="line-60">     * @throws IllegalArgumentException</span>
      +<span class="source-line-no">061</span><span id="line-61">     *             if the specified symbol is associated to a different unit.</span>
      +<span class="source-line-no">062</span><span id="line-62">     */</span>
      +<span class="source-line-no">063</span><span id="line-63">    public BaseUnit(String symbol, String name) {</span>
      +<span class="source-line-no">064</span><span id="line-64">        super(name);</span>
      +<span class="source-line-no">065</span><span id="line-65">        this.symbol = symbol;</span>
      +<span class="source-line-no">066</span><span id="line-66">    }</span>
      +<span class="source-line-no">067</span><span id="line-67"></span>
      +<span class="source-line-no">068</span><span id="line-68">    /**</span>
      +<span class="source-line-no">069</span><span id="line-69">     * Creates a base unit with name and factor</span>
      +<span class="source-line-no">070</span><span id="line-70">     *</span>
      +<span class="source-line-no">071</span><span id="line-71">     * @param factor</span>
      +<span class="source-line-no">072</span><span id="line-72">     *            the factor</span>
      +<span class="source-line-no">073</span><span id="line-73">     * @param name the name of this base unit.</span>
      +<span class="source-line-no">074</span><span id="line-74">     * @throws IllegalArgumentException</span>
      +<span class="source-line-no">075</span><span id="line-75">     *             if the specified symbol is associated to a different unit.</span>
      +<span class="source-line-no">076</span><span id="line-76">     */</span>
      +<span class="source-line-no">077</span><span id="line-77">    public BaseUnit(String name, double factor) {</span>
      +<span class="source-line-no">078</span><span id="line-78">        super(name, factor);</span>
      +<span class="source-line-no">079</span><span id="line-79">    }</span>
      +<span class="source-line-no">080</span><span id="line-80"></span>
      +<span class="source-line-no">081</span><span id="line-81">    /**</span>
      +<span class="source-line-no">082</span><span id="line-82">     * Creates a base unit having the specified symbol.</span>
      +<span class="source-line-no">083</span><span id="line-83">     *</span>
      +<span class="source-line-no">084</span><span id="line-84">     * @param symbol</span>
      +<span class="source-line-no">085</span><span id="line-85">     *            the symbol of this base unit.</span>
      +<span class="source-line-no">086</span><span id="line-86">     * @throws IllegalArgumentException</span>
      +<span class="source-line-no">087</span><span id="line-87">     *             if the specified symbol is associated to a different unit.</span>
      +<span class="source-line-no">088</span><span id="line-88">     */</span>
      +<span class="source-line-no">089</span><span id="line-89">    public BaseUnit(String symbol) {</span>
      +<span class="source-line-no">090</span><span id="line-90">        this(symbol, null);</span>
      +<span class="source-line-no">091</span><span id="line-91">    }</span>
      +<span class="source-line-no">092</span><span id="line-92"></span>
      +<span class="source-line-no">093</span><span id="line-93">    @Override</span>
      +<span class="source-line-no">094</span><span id="line-94">    public String getSymbol() {</span>
      +<span class="source-line-no">095</span><span id="line-95">        return symbol;</span>
      +<span class="source-line-no">096</span><span id="line-96">    }</span>
      +<span class="source-line-no">097</span><span id="line-97"></span>
      +<span class="source-line-no">098</span><span id="line-98">    @Override</span>
      +<span class="source-line-no">099</span><span id="line-99">    public boolean equals(Object obj) {</span>
      +<span class="source-line-no">100</span><span id="line-100">        if (this == obj) {</span>
      +<span class="source-line-no">101</span><span id="line-101">            return true;</span>
      +<span class="source-line-no">102</span><span id="line-102">        }</span>
      +<span class="source-line-no">103</span><span id="line-103">        if (obj instanceof BaseUnit&lt;?&gt;) {</span>
      +<span class="source-line-no">104</span><span id="line-104">            BaseUnit&lt;?&gt; other = (BaseUnit&lt;?&gt;) obj;</span>
      +<span class="source-line-no">105</span><span id="line-105">            return symbol != null &amp;&amp; symbol.equals(other.symbol);</span>
      +<span class="source-line-no">106</span><span id="line-106">        }</span>
      +<span class="source-line-no">107</span><span id="line-107">        return false;</span>
      +<span class="source-line-no">108</span><span id="line-108">    }</span>
      +<span class="source-line-no">109</span><span id="line-109"></span>
      +<span class="source-line-no">110</span><span id="line-110">    @Override</span>
      +<span class="source-line-no">111</span><span id="line-111">    public int hashCode() {</span>
      +<span class="source-line-no">112</span><span id="line-112">        // return Objects.hashCode(symbol);</span>
      +<span class="source-line-no">113</span><span id="line-113">        return 0;</span>
      +<span class="source-line-no">114</span><span id="line-114">    }</span>
      +<span class="source-line-no">115</span><span id="line-115"></span>
      +<span class="source-line-no">116</span><span id="line-116">    @Override</span>
      +<span class="source-line-no">117</span><span id="line-117">    public Unit&lt;Q&gt; getSystemUnit() {</span>
      +<span class="source-line-no">118</span><span id="line-118">        return this;</span>
      +<span class="source-line-no">119</span><span id="line-119">    }</span>
      +<span class="source-line-no">120</span><span id="line-120">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/unit/DistanceUnit.html b/docs/site/testapidocs/src-html/javax/measure/test/unit/DistanceUnit.html
      new file mode 100644
      index 00000000..37d3e94a
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/unit/DistanceUnit.html
      @@ -0,0 +1,145 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.unit, class: DistanceUnit">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.unit;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import java.math.BigDecimal;</span>
      +<span class="source-line-no">033</span><span id="line-33"></span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.Unit;</span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.quantity.Length;</span>
      +<span class="source-line-no">036</span><span id="line-36"></span>
      +<span class="source-line-no">037</span><span id="line-37">/**</span>
      +<span class="source-line-no">038</span><span id="line-38"> * @author Werner Keil</span>
      +<span class="source-line-no">039</span><span id="line-39"> */</span>
      +<span class="source-line-no">040</span><span id="line-40">public class DistanceUnit extends BaseUnit&lt;Length&gt; {</span>
      +<span class="source-line-no">041</span><span id="line-41"></span>
      +<span class="source-line-no">042</span><span id="line-42">    public static final DistanceUnit m = new DistanceUnit("m", 1.0); // reference</span>
      +<span class="source-line-no">043</span><span id="line-43">    // Unit</span>
      +<span class="source-line-no">044</span><span id="line-44">    public static final DistanceUnit REF_UNIT = m; // reference Unit</span>
      +<span class="source-line-no">045</span><span id="line-45">    public static final DistanceUnit in = new DistanceUnit("in", 0.0254);</span>
      +<span class="source-line-no">046</span><span id="line-46">    public static final DistanceUnit km = new DistanceUnit("km", 1.0e+3);</span>
      +<span class="source-line-no">047</span><span id="line-47">    public static final DistanceUnit cm = new DistanceUnit("cm", 1.0e-2);</span>
      +<span class="source-line-no">048</span><span id="line-48">    public static final DistanceUnit mile = new DistanceUnit("mile", 1609.0);</span>
      +<span class="source-line-no">049</span><span id="line-49">    public static final DistanceUnit \u00C5ngstr\u00F6m = new DistanceUnit("\u00C5ngstr\u00F6m", 1.0e-10);</span>
      +<span class="source-line-no">050</span><span id="line-50">    public static final DistanceUnit AU = new DistanceUnit("AU", 1.5e+11);</span>
      +<span class="source-line-no">051</span><span id="line-51">    public static final DistanceUnit parsec = new DistanceUnit("parsec", 3.08e+16);</span>
      +<span class="source-line-no">052</span><span id="line-52"></span>
      +<span class="source-line-no">053</span><span id="line-53">    public DistanceUnit(String name2, double convF) {</span>
      +<span class="source-line-no">054</span><span id="line-54">        super(name2, name2);</span>
      +<span class="source-line-no">055</span><span id="line-55">        multFactor = BigDecimal.valueOf(convF);</span>
      +<span class="source-line-no">056</span><span id="line-56">    }</span>
      +<span class="source-line-no">057</span><span id="line-57"></span>
      +<span class="source-line-no">058</span><span id="line-58">    public DistanceUnit(String name2, DistanceUnit unit, double convF) {</span>
      +<span class="source-line-no">059</span><span id="line-59">        super("", name2);</span>
      +<span class="source-line-no">060</span><span id="line-60">        multFactor = unit.multFactor.multiply(BigDecimal.valueOf(convF));</span>
      +<span class="source-line-no">061</span><span id="line-61">    }</span>
      +<span class="source-line-no">062</span><span id="line-62"></span>
      +<span class="source-line-no">063</span><span id="line-63">    @Override</span>
      +<span class="source-line-no">064</span><span id="line-64">    public Unit&lt;Length&gt; getSystemUnit() {</span>
      +<span class="source-line-no">065</span><span id="line-65">        return REF_UNIT;</span>
      +<span class="source-line-no">066</span><span id="line-66">    }</span>
      +<span class="source-line-no">067</span><span id="line-67">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/unit/MassUnit.html b/docs/site/testapidocs/src-html/javax/measure/test/unit/MassUnit.html
      new file mode 100644
      index 00000000..8fd73015
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/unit/MassUnit.html
      @@ -0,0 +1,132 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.unit, class: MassUnit">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.unit;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import java.math.BigDecimal;</span>
      +<span class="source-line-no">033</span><span id="line-33"></span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.Unit;</span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.quantity.Mass;</span>
      +<span class="source-line-no">036</span><span id="line-36"></span>
      +<span class="source-line-no">037</span><span id="line-37">/**</span>
      +<span class="source-line-no">038</span><span id="line-38"> * @author Werner Keil</span>
      +<span class="source-line-no">039</span><span id="line-39"> */</span>
      +<span class="source-line-no">040</span><span id="line-40">public class MassUnit extends BaseUnit&lt;Mass&gt; {</span>
      +<span class="source-line-no">041</span><span id="line-41">    public static final MassUnit kg = new MassUnit("kg", 1.0); // reference Unit</span>
      +<span class="source-line-no">042</span><span id="line-42">    public static final MassUnit REF_UNIT = kg; // reference Unit</span>
      +<span class="source-line-no">043</span><span id="line-43">    public static final MassUnit g = new MassUnit("g", .001);</span>
      +<span class="source-line-no">044</span><span id="line-44"></span>
      +<span class="source-line-no">045</span><span id="line-45">    public MassUnit(String name2, double convF) {</span>
      +<span class="source-line-no">046</span><span id="line-46">        super(name2, "");</span>
      +<span class="source-line-no">047</span><span id="line-47">        multFactor = BigDecimal.valueOf(convF);</span>
      +<span class="source-line-no">048</span><span id="line-48">    }</span>
      +<span class="source-line-no">049</span><span id="line-49"></span>
      +<span class="source-line-no">050</span><span id="line-50">    @Override</span>
      +<span class="source-line-no">051</span><span id="line-51">    public Unit&lt;Mass&gt; getSystemUnit() {</span>
      +<span class="source-line-no">052</span><span id="line-52">        return REF_UNIT;</span>
      +<span class="source-line-no">053</span><span id="line-53">    }</span>
      +<span class="source-line-no">054</span><span id="line-54">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/unit/SpeedUnit.html b/docs/site/testapidocs/src-html/javax/measure/test/unit/SpeedUnit.html
      new file mode 100644
      index 00000000..b728643a
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/unit/SpeedUnit.html
      @@ -0,0 +1,135 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.unit, class: SpeedUnit">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.unit;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import java.math.BigDecimal;</span>
      +<span class="source-line-no">033</span><span id="line-33"></span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.Unit;</span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.quantity.Speed;</span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.test.TestUnit;</span>
      +<span class="source-line-no">037</span><span id="line-37"></span>
      +<span class="source-line-no">038</span><span id="line-38">/**</span>
      +<span class="source-line-no">039</span><span id="line-39"> * @author Werner Keil</span>
      +<span class="source-line-no">040</span><span id="line-40"> */</span>
      +<span class="source-line-no">041</span><span id="line-41">public class SpeedUnit extends TestUnit&lt;Speed&gt; {</span>
      +<span class="source-line-no">042</span><span id="line-42"></span>
      +<span class="source-line-no">043</span><span id="line-43">    public static final SpeedUnit kmh = new SpeedUnit("km/h", 1.0); // reference</span>
      +<span class="source-line-no">044</span><span id="line-44">    // Unit</span>
      +<span class="source-line-no">045</span><span id="line-45">    public static final SpeedUnit REF_UNIT = kmh; // reference Unit</span>
      +<span class="source-line-no">046</span><span id="line-46">    public static final SpeedUnit mph = new SpeedUnit("sqmile", 1609.0 * 1609.0);</span>
      +<span class="source-line-no">047</span><span id="line-47"></span>
      +<span class="source-line-no">048</span><span id="line-48">    public SpeedUnit(String name2, double convF) {</span>
      +<span class="source-line-no">049</span><span id="line-49">        super(name2);</span>
      +<span class="source-line-no">050</span><span id="line-50">        multFactor = BigDecimal.valueOf(convF);</span>
      +<span class="source-line-no">051</span><span id="line-51">    }</span>
      +<span class="source-line-no">052</span><span id="line-52"></span>
      +<span class="source-line-no">053</span><span id="line-53">    @Override</span>
      +<span class="source-line-no">054</span><span id="line-54">    public Unit&lt;Speed&gt; getSystemUnit() {</span>
      +<span class="source-line-no">055</span><span id="line-55">        return REF_UNIT;</span>
      +<span class="source-line-no">056</span><span id="line-56">    }</span>
      +<span class="source-line-no">057</span><span id="line-57">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/unit/TemperatureUnit.html b/docs/site/testapidocs/src-html/javax/measure/test/unit/TemperatureUnit.html
      new file mode 100644
      index 00000000..89c6ee41
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/unit/TemperatureUnit.html
      @@ -0,0 +1,238 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.unit, class: TemperatureUnit">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.unit;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import javax.measure.Prefix;</span>
      +<span class="source-line-no">033</span><span id="line-33">import javax.measure.Quantity;</span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.Unit;</span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.UnitConverter;</span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.quantity.Temperature;</span>
      +<span class="source-line-no">037</span><span id="line-37">import javax.measure.test.TestUnit;</span>
      +<span class="source-line-no">038</span><span id="line-38"></span>
      +<span class="source-line-no">039</span><span id="line-39">/**</span>
      +<span class="source-line-no">040</span><span id="line-40"> * @author Werner Keil</span>
      +<span class="source-line-no">041</span><span id="line-41"> * @version 0.7, $Date: 2019-02-06 $</span>
      +<span class="source-line-no">042</span><span id="line-42"> */</span>
      +<span class="source-line-no">043</span><span id="line-43">public class TemperatureUnit extends TestUnit&lt;Temperature&gt; {</span>
      +<span class="source-line-no">044</span><span id="line-44">        private static final char DEG = '\u00B0';</span>
      +<span class="source-line-no">045</span><span id="line-45">        /** Kelvin, commonly used in scientific endeavors. */</span>
      +<span class="source-line-no">046</span><span id="line-46">        public static final TemperatureUnit KELVIN = new TemperatureUnit(1d, 0d, null, 273.15d, 373.15d, "K",</span>
      +<span class="source-line-no">047</span><span id="line-47">                        "William Thomson, 1st Baron Kelvin");</span>
      +<span class="source-line-no">048</span><span id="line-48"></span>
      +<span class="source-line-no">049</span><span id="line-49">        /** Rankine, used in scientific endeavors. */</span>
      +<span class="source-line-no">050</span><span id="line-50">        public static final TemperatureUnit RANKINE = new TemperatureUnit(5 / 9, 0d, KELVIN, 491.67d, 671.641d, DEG + "R",</span>
      +<span class="source-line-no">051</span><span id="line-51">                        "William John Macquorn Rankine");</span>
      +<span class="source-line-no">052</span><span id="line-52"></span>
      +<span class="source-line-no">053</span><span id="line-53">        /** Celsius, used by most of the world's population. */</span>
      +<span class="source-line-no">054</span><span id="line-54">        public static final TemperatureUnit CELSIUS = new TemperatureUnit(0d, 273.15d, KELVIN, 0d, 100d, DEG + "C",</span>
      +<span class="source-line-no">055</span><span id="line-55">                        "Anders Celsius");</span>
      +<span class="source-line-no">056</span><span id="line-56"></span>
      +<span class="source-line-no">057</span><span id="line-57">        /** Fahrenheit, commonly used in the United States. */</span>
      +<span class="source-line-no">058</span><span id="line-58">        public static final TemperatureUnit FAHRENHEIT = new TemperatureUnit(0d, 459.67d, RANKINE, 32d, 212d, DEG + "F",</span>
      +<span class="source-line-no">059</span><span id="line-59">                        "Daniel Gabriel Fahrenheit");</span>
      +<span class="source-line-no">060</span><span id="line-60"></span>
      +<span class="source-line-no">061</span><span id="line-61">        /** Units by which this temperature scale is expressed. */</span>
      +<span class="source-line-no">062</span><span id="line-62">        private final String description;</span>
      +<span class="source-line-no">063</span><span id="line-63"></span>
      +<span class="source-line-no">064</span><span id="line-64">        private final double multFactor;</span>
      +<span class="source-line-no">065</span><span id="line-65"></span>
      +<span class="source-line-no">066</span><span id="line-66">        /** Name of person that this temperature scale is named for. */</span>
      +<span class="source-line-no">067</span><span id="line-67">        private final String namedFor;</span>
      +<span class="source-line-no">068</span><span id="line-68"></span>
      +<span class="source-line-no">069</span><span id="line-69">        /**</span>
      +<span class="source-line-no">070</span><span id="line-70">         * Constructor for TemperatureUnit that accepts key characteristics of each</span>
      +<span class="source-line-no">071</span><span id="line-71">         * temperature scale.</span>
      +<span class="source-line-no">072</span><span id="line-72">         * @param rel The temperature unit this is relative to.</span>
      +<span class="source-line-no">073</span><span id="line-73">         * @param newFreezingPoint Freezing point for this temperature scale.</span>
      +<span class="source-line-no">074</span><span id="line-74">         * @param newBoilingPoint  Boiling point for this temperature scale.</span>
      +<span class="source-line-no">075</span><span id="line-75">         * @param newSymbol        Unit symbol for this temperature scale.</span>
      +<span class="source-line-no">076</span><span id="line-76">         * @param newNamedFor      Name of person after which temperature scale was</span>
      +<span class="source-line-no">077</span><span id="line-77">         *                         named.</span>
      +<span class="source-line-no">078</span><span id="line-78">         * @param newMult          new multiplier</span>
      +<span class="source-line-no">079</span><span id="line-79">         * @param shift            the shift factor</span>
      +<span class="source-line-no">080</span><span id="line-80">         */</span>
      +<span class="source-line-no">081</span><span id="line-81">        public TemperatureUnit(double newMult, double shift, final TemperatureUnit rel, double newFreezingPoint,</span>
      +<span class="source-line-no">082</span><span id="line-82">                        double newBoilingPoint, final String newSymbol, final String newNamedFor) {</span>
      +<span class="source-line-no">083</span><span id="line-83">                this.multFactor = newMult;</span>
      +<span class="source-line-no">084</span><span id="line-84">                this.description = newSymbol;</span>
      +<span class="source-line-no">085</span><span id="line-85">                this.namedFor = newNamedFor;</span>
      +<span class="source-line-no">086</span><span id="line-86">        }</span>
      +<span class="source-line-no">087</span><span id="line-87"></span>
      +<span class="source-line-no">088</span><span id="line-88">        public String getSymbol() {</span>
      +<span class="source-line-no">089</span><span id="line-89">                return description;</span>
      +<span class="source-line-no">090</span><span id="line-90">        }</span>
      +<span class="source-line-no">091</span><span id="line-91"></span>
      +<span class="source-line-no">092</span><span id="line-92">        public double getFactor() {</span>
      +<span class="source-line-no">093</span><span id="line-93">                return multFactor;</span>
      +<span class="source-line-no">094</span><span id="line-94">        }</span>
      +<span class="source-line-no">095</span><span id="line-95"></span>
      +<span class="source-line-no">096</span><span id="line-96">        public String getName() {</span>
      +<span class="source-line-no">097</span><span id="line-97">                return namedFor;</span>
      +<span class="source-line-no">098</span><span id="line-98">        }</span>
      +<span class="source-line-no">099</span><span id="line-99"></span>
      +<span class="source-line-no">100</span><span id="line-100">        public Unit&lt;Temperature&gt; getSystemUnit() {</span>
      +<span class="source-line-no">101</span><span id="line-101">                return KELVIN;</span>
      +<span class="source-line-no">102</span><span id="line-102">        }</span>
      +<span class="source-line-no">103</span><span id="line-103"></span>
      +<span class="source-line-no">104</span><span id="line-104">        public static TemperatureUnit getBySymbol(String symbol) {</span>
      +<span class="source-line-no">105</span><span id="line-105">                if (CELSIUS.getSymbol().equals(symbol)) {</span>
      +<span class="source-line-no">106</span><span id="line-106">                        return CELSIUS;</span>
      +<span class="source-line-no">107</span><span id="line-107">                }</span>
      +<span class="source-line-no">108</span><span id="line-108">                if (FAHRENHEIT.getSymbol().equals(symbol)) {</span>
      +<span class="source-line-no">109</span><span id="line-109">                        return FAHRENHEIT;</span>
      +<span class="source-line-no">110</span><span id="line-110">                }</span>
      +<span class="source-line-no">111</span><span id="line-111">                return KELVIN;</span>
      +<span class="source-line-no">112</span><span id="line-112">        }</span>
      +<span class="source-line-no">113</span><span id="line-113"></span>
      +<span class="source-line-no">114</span><span id="line-114">        public boolean isCompatible(Unit&lt;?&gt; that) {</span>
      +<span class="source-line-no">115</span><span id="line-115">                return that instanceof TemperatureUnit;</span>
      +<span class="source-line-no">116</span><span id="line-116">        }</span>
      +<span class="source-line-no">117</span><span id="line-117"></span>
      +<span class="source-line-no">118</span><span id="line-118">        @SuppressWarnings({ "unchecked" })</span>
      +<span class="source-line-no">119</span><span id="line-119">        public final &lt;T extends Quantity&lt;T&gt;&gt; Unit&lt;T&gt; asType(Class&lt;T&gt; type) {</span>
      +<span class="source-line-no">120</span><span id="line-120">                Unit&lt;T&gt; metricUnit = (Unit&lt;T&gt;) getSystemUnit();</span>
      +<span class="source-line-no">121</span><span id="line-121">                if ((metricUnit == null) || metricUnit.isCompatible(this))</span>
      +<span class="source-line-no">122</span><span id="line-122">                        return (Unit&lt;T&gt;) this;</span>
      +<span class="source-line-no">123</span><span id="line-123">                throw new ClassCastException("The unit: " + this //$NON-NLS-1$</span>
      +<span class="source-line-no">124</span><span id="line-124">                                + " is not of parameterized type " + type); //$NON-NLS-1$</span>
      +<span class="source-line-no">125</span><span id="line-125">        }</span>
      +<span class="source-line-no">126</span><span id="line-126"></span>
      +<span class="source-line-no">127</span><span id="line-127">        public Unit&lt;Temperature&gt; multiply(double factor) {</span>
      +<span class="source-line-no">128</span><span id="line-128">                return this;</span>
      +<span class="source-line-no">129</span><span id="line-129">        }</span>
      +<span class="source-line-no">130</span><span id="line-130"></span>
      +<span class="source-line-no">131</span><span id="line-131">        public Unit&lt;?&gt; multiply(Unit&lt;?&gt; that) {</span>
      +<span class="source-line-no">132</span><span id="line-132">                return this;</span>
      +<span class="source-line-no">133</span><span id="line-133">        }</span>
      +<span class="source-line-no">134</span><span id="line-134"></span>
      +<span class="source-line-no">135</span><span id="line-135">        public Unit&lt;?&gt; pow(int n) {</span>
      +<span class="source-line-no">136</span><span id="line-136">                return this;</span>
      +<span class="source-line-no">137</span><span id="line-137">        }</span>
      +<span class="source-line-no">138</span><span id="line-138"></span>
      +<span class="source-line-no">139</span><span id="line-139">        public Unit&lt;?&gt; root(int n) {</span>
      +<span class="source-line-no">140</span><span id="line-140">                return this;</span>
      +<span class="source-line-no">141</span><span id="line-141">        }</span>
      +<span class="source-line-no">142</span><span id="line-142"></span>
      +<span class="source-line-no">143</span><span id="line-143">        public Unit&lt;Temperature&gt; transform(UnitConverter operation) {</span>
      +<span class="source-line-no">144</span><span id="line-144">                return this;</span>
      +<span class="source-line-no">145</span><span id="line-145">        }</span>
      +<span class="source-line-no">146</span><span id="line-146"></span>
      +<span class="source-line-no">147</span><span id="line-147">        public Unit&lt;Temperature&gt; shift(double v) {</span>
      +<span class="source-line-no">148</span><span id="line-148">                return this;</span>
      +<span class="source-line-no">149</span><span id="line-149">        }</span>
      +<span class="source-line-no">150</span><span id="line-150"></span>
      +<span class="source-line-no">151</span><span id="line-151">        public String getDescription() {</span>
      +<span class="source-line-no">152</span><span id="line-152">                return description;</span>
      +<span class="source-line-no">153</span><span id="line-153">        }</span>
      +<span class="source-line-no">154</span><span id="line-154"></span>
      +<span class="source-line-no">155</span><span id="line-155">        @Override</span>
      +<span class="source-line-no">156</span><span id="line-156">        public Unit&lt;Temperature&gt; prefix(Prefix prefix) {</span>
      +<span class="source-line-no">157</span><span id="line-157">                return this.multiply(Math.pow(prefix.getValue().doubleValue(), </span>
      +<span class="source-line-no">158</span><span id="line-158">                                prefix.getExponent()));</span>
      +<span class="source-line-no">159</span><span id="line-159">        }</span>
      +<span class="source-line-no">160</span><span id="line-160">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/unit/TimeUnit.html b/docs/site/testapidocs/src-html/javax/measure/test/unit/TimeUnit.html
      new file mode 100644
      index 00000000..271af58c
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/unit/TimeUnit.html
      @@ -0,0 +1,135 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.unit, class: TimeUnit">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.unit;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import java.math.BigDecimal;</span>
      +<span class="source-line-no">033</span><span id="line-33"></span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.Unit;</span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.quantity.Time;</span>
      +<span class="source-line-no">036</span><span id="line-36"></span>
      +<span class="source-line-no">037</span><span id="line-37">/**</span>
      +<span class="source-line-no">038</span><span id="line-38"> * @author Werner Keil</span>
      +<span class="source-line-no">039</span><span id="line-39"> * @version 0.2</span>
      +<span class="source-line-no">040</span><span id="line-40"> */</span>
      +<span class="source-line-no">041</span><span id="line-41">public class TimeUnit extends BaseUnit&lt;Time&gt; {</span>
      +<span class="source-line-no">042</span><span id="line-42"></span>
      +<span class="source-line-no">043</span><span id="line-43">    public static final TimeUnit s = new TimeUnit("s", 1.0); // reference Unit</span>
      +<span class="source-line-no">044</span><span id="line-44">    public static final TimeUnit REF_UNIT = s; // reference Unit</span>
      +<span class="source-line-no">045</span><span id="line-45">    public static final TimeUnit h = new TimeUnit("h", 60 * 60);</span>
      +<span class="source-line-no">046</span><span id="line-46">    public static final TimeUnit min = new TimeUnit("min", 60);</span>
      +<span class="source-line-no">047</span><span id="line-47"></span>
      +<span class="source-line-no">048</span><span id="line-48">    public TimeUnit(String name2, double convF) {</span>
      +<span class="source-line-no">049</span><span id="line-49">        super(name2, "");</span>
      +<span class="source-line-no">050</span><span id="line-50">        multFactor = BigDecimal.valueOf(convF);</span>
      +<span class="source-line-no">051</span><span id="line-51">    }</span>
      +<span class="source-line-no">052</span><span id="line-52"></span>
      +<span class="source-line-no">053</span><span id="line-53">    @Override</span>
      +<span class="source-line-no">054</span><span id="line-54">    public Unit&lt;Time&gt; getSystemUnit() {</span>
      +<span class="source-line-no">055</span><span id="line-55">        return REF_UNIT;</span>
      +<span class="source-line-no">056</span><span id="line-56">    }</span>
      +<span class="source-line-no">057</span><span id="line-57">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/src-html/javax/measure/test/unit/VolumeUnit.html b/docs/site/testapidocs/src-html/javax/measure/test/unit/VolumeUnit.html
      new file mode 100644
      index 00000000..97178c8e
      --- /dev/null
      +++ b/docs/site/testapidocs/src-html/javax/measure/test/unit/VolumeUnit.html
      @@ -0,0 +1,137 @@
      +<!DOCTYPE HTML>
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (17) -->
      +<title>Source code</title>
      +<meta name="viewport" content="width=device-width, initial-scale=1">
      +<meta name="description" content="source: package: javax.measure.test.unit, class: VolumeUnit">
      +<meta name="generator" content="javadoc/SourceToHTMLConverter">
      +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
      +</head>
      +<body class="source-page">
      +<main role="main">
      +<div class="source-container">
      +<pre><span class="source-line-no">001</span><span id="line-1">/*</span>
      +<span class="source-line-no">002</span><span id="line-2"> * Units of Measurement API</span>
      +<span class="source-line-no">003</span><span id="line-3"> * Copyright (c) 2014-2023, Jean-Marie Dautelle, Werner Keil, Otavio Santana.</span>
      +<span class="source-line-no">004</span><span id="line-4"> *</span>
      +<span class="source-line-no">005</span><span id="line-5"> * All rights reserved.</span>
      +<span class="source-line-no">006</span><span id="line-6"> *</span>
      +<span class="source-line-no">007</span><span id="line-7"> * Redistribution and use in source and binary forms, with or without modification,</span>
      +<span class="source-line-no">008</span><span id="line-8"> * are permitted provided that the following conditions are met:</span>
      +<span class="source-line-no">009</span><span id="line-9"> *</span>
      +<span class="source-line-no">010</span><span id="line-10"> * 1. Redistributions of source code must retain the above copyright notice,</span>
      +<span class="source-line-no">011</span><span id="line-11"> *    this list of conditions and the following disclaimer.</span>
      +<span class="source-line-no">012</span><span id="line-12"> *</span>
      +<span class="source-line-no">013</span><span id="line-13"> * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions</span>
      +<span class="source-line-no">014</span><span id="line-14"> *    and the following disclaimer in the documentation and/or other materials provided with the distribution.</span>
      +<span class="source-line-no">015</span><span id="line-15"> *</span>
      +<span class="source-line-no">016</span><span id="line-16"> * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products</span>
      +<span class="source-line-no">017</span><span id="line-17"> *    derived from this software without specific prior written permission.</span>
      +<span class="source-line-no">018</span><span id="line-18"> *</span>
      +<span class="source-line-no">019</span><span id="line-19"> * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</span>
      +<span class="source-line-no">020</span><span id="line-20"> * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</span>
      +<span class="source-line-no">021</span><span id="line-21"> * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</span>
      +<span class="source-line-no">022</span><span id="line-22"> * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE</span>
      +<span class="source-line-no">023</span><span id="line-23"> * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</span>
      +<span class="source-line-no">024</span><span id="line-24"> * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</span>
      +<span class="source-line-no">025</span><span id="line-25"> * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED</span>
      +<span class="source-line-no">026</span><span id="line-26"> * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</span>
      +<span class="source-line-no">027</span><span id="line-27"> * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</span>
      +<span class="source-line-no">028</span><span id="line-28"> * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</span>
      +<span class="source-line-no">029</span><span id="line-29"> */</span>
      +<span class="source-line-no">030</span><span id="line-30">package javax.measure.test.unit;</span>
      +<span class="source-line-no">031</span><span id="line-31"></span>
      +<span class="source-line-no">032</span><span id="line-32">import java.math.BigDecimal;</span>
      +<span class="source-line-no">033</span><span id="line-33"></span>
      +<span class="source-line-no">034</span><span id="line-34">import javax.measure.Unit;</span>
      +<span class="source-line-no">035</span><span id="line-35">import javax.measure.quantity.Volume;</span>
      +<span class="source-line-no">036</span><span id="line-36">import javax.measure.test.TestUnit;</span>
      +<span class="source-line-no">037</span><span id="line-37"></span>
      +<span class="source-line-no">038</span><span id="line-38">/**</span>
      +<span class="source-line-no">039</span><span id="line-39"> * @author Werner Keil</span>
      +<span class="source-line-no">040</span><span id="line-40"> */</span>
      +<span class="source-line-no">041</span><span id="line-41">public class VolumeUnit extends TestUnit&lt;Volume&gt; {</span>
      +<span class="source-line-no">042</span><span id="line-42">    public static final VolumeUnit cumetre = new VolumeUnit("cumetre", 1.0); // reference</span>
      +<span class="source-line-no">043</span><span id="line-43">    // Unit</span>
      +<span class="source-line-no">044</span><span id="line-44">    public static final VolumeUnit REF_UNIT = cumetre; // reference Unit</span>
      +<span class="source-line-no">045</span><span id="line-45">    public static final VolumeUnit cumile = new VolumeUnit("cumile", 1609.0 * 1609.0 * 1609.0);</span>
      +<span class="source-line-no">046</span><span id="line-46">    public static final VolumeUnit bushel = new VolumeUnit("bushel", 0.03524);</span>
      +<span class="source-line-no">047</span><span id="line-47">    public static final VolumeUnit litre = new VolumeUnit("litre", 0.001);</span>
      +<span class="source-line-no">048</span><span id="line-48">    public static final VolumeUnit cc = new VolumeUnit("cc", 1.0e-6);</span>
      +<span class="source-line-no">049</span><span id="line-49"></span>
      +<span class="source-line-no">050</span><span id="line-50">    public VolumeUnit(String name2, double convF) {</span>
      +<span class="source-line-no">051</span><span id="line-51">        super(name2);</span>
      +<span class="source-line-no">052</span><span id="line-52">        multFactor = BigDecimal.valueOf(convF);</span>
      +<span class="source-line-no">053</span><span id="line-53">    }</span>
      +<span class="source-line-no">054</span><span id="line-54"></span>
      +<span class="source-line-no">055</span><span id="line-55">    @Override</span>
      +<span class="source-line-no">056</span><span id="line-56">    public Unit&lt;Volume&gt; getSystemUnit() {</span>
      +<span class="source-line-no">057</span><span id="line-57">        return REF_UNIT;</span>
      +<span class="source-line-no">058</span><span id="line-58">    }</span>
      +<span class="source-line-no">059</span><span id="line-59">}</span>
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +</pre>
      +</div>
      +</main>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/stylesheet.css b/docs/site/testapidocs/stylesheet.css
      new file mode 100644
      index 00000000..93810d9a
      --- /dev/null
      +++ b/docs/site/testapidocs/stylesheet.css
      @@ -0,0 +1,869 @@
      +/*
      + * Javadoc style sheet
      + */
      +
      +@import url('resources/fonts/dejavu.css');
      +
      +/*
      + * Styles for individual HTML elements.
      + *
      + * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular
      + * HTML element throughout the page.
      + */
      +
      +body {
      +    background-color:#ffffff;
      +    color:#353833;
      +    font-family:'DejaVu Sans', Arial, Helvetica, sans-serif;
      +    font-size:14px;
      +    margin:0;
      +    padding:0;
      +    height:100%;
      +    width:100%;
      +}
      +iframe {
      +    margin:0;
      +    padding:0;
      +    height:100%;
      +    width:100%;
      +    overflow-y:scroll;
      +    border:none;
      +}
      +a:link, a:visited {
      +    text-decoration:none;
      +    color:#4A6782;
      +}
      +a[href]:hover, a[href]:focus {
      +    text-decoration:none;
      +    color:#bb7a2a;
      +}
      +a[name] {
      +    color:#353833;
      +}
      +pre {
      +    font-family:'DejaVu Sans Mono', monospace;
      +    font-size:14px;
      +}
      +h1 {
      +    font-size:20px;
      +}
      +h2 {
      +    font-size:18px;
      +}
      +h3 {
      +    font-size:16px;
      +}
      +h4 {
      +    font-size:15px;
      +}
      +h5 {
      +    font-size:14px;
      +}
      +h6 {
      +    font-size:13px;
      +}
      +ul {
      +    list-style-type:disc;
      +}
      +code, tt {
      +    font-family:'DejaVu Sans Mono', monospace;
      +}
      +:not(h1, h2, h3, h4, h5, h6) > code,
      +:not(h1, h2, h3, h4, h5, h6) > tt {
      +    font-size:14px;
      +    padding-top:4px;
      +    margin-top:8px;
      +    line-height:1.4em;
      +}
      +dt code {
      +    font-family:'DejaVu Sans Mono', monospace;
      +    font-size:14px;
      +    padding-top:4px;
      +}
      +.summary-table dt code {
      +    font-family:'DejaVu Sans Mono', monospace;
      +    font-size:14px;
      +    vertical-align:top;
      +    padding-top:4px;
      +}
      +sup {
      +    font-size:8px;
      +}
      +button {
      +    font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif;
      +    font-size: 14px;
      +}
      +/*
      + * Styles for HTML generated by javadoc.
      + *
      + * These are style classes that are used by the standard doclet to generate HTML documentation.
      + */
      +
      +/*
      + * Styles for document title and copyright.
      + */
      +.clear {
      +    clear:both;
      +    height:0;
      +    overflow:hidden;
      +}
      +.about-language {
      +    float:right;
      +    padding:0 21px 8px 8px;
      +    font-size:11px;
      +    margin-top:-9px;
      +    height:2.9em;
      +}
      +.legal-copy {
      +    margin-left:.5em;
      +}
      +.tab {
      +    background-color:#0066FF;
      +    color:#ffffff;
      +    padding:8px;
      +    width:5em;
      +    font-weight:bold;
      +}
      +/*
      + * Styles for navigation bar.
      + */
      +@media screen {
      +    .flex-box {
      +        position:fixed;
      +        display:flex;
      +        flex-direction:column;
      +        height: 100%;
      +        width: 100%;
      +    }
      +    .flex-header {
      +        flex: 0 0 auto;
      +    }
      +    .flex-content {
      +        flex: 1 1 auto;
      +        overflow-y: auto;
      +    }
      +}
      +.top-nav {
      +    background-color:#4D7A97;
      +    color:#FFFFFF;
      +    float:left;
      +    padding:0;
      +    width:100%;
      +    clear:right;
      +    min-height:2.8em;
      +    padding-top:10px;
      +    overflow:hidden;
      +    font-size:12px;
      +}
      +.sub-nav {
      +    background-color:#dee3e9;
      +    float:left;
      +    width:100%;
      +    overflow:hidden;
      +    font-size:12px;
      +}
      +.sub-nav div {
      +    clear:left;
      +    float:left;
      +    padding:0 0 5px 6px;
      +    text-transform:uppercase;
      +}
      +.sub-nav .nav-list {
      +    padding-top:5px;
      +}
      +ul.nav-list {
      +    display:block;
      +    margin:0 25px 0 0;
      +    padding:0;
      +}
      +ul.sub-nav-list {
      +    float:left;
      +    margin:0 25px 0 0;
      +    padding:0;
      +}
      +ul.nav-list li {
      +    list-style:none;
      +    float:left;
      +    padding: 5px 6px;
      +    text-transform:uppercase;
      +}
      +.sub-nav .nav-list-search {
      +    float:right;
      +    margin:0 0 0 0;
      +    padding:5px 6px;
      +    clear:none;
      +}
      +.nav-list-search label {
      +    position:relative;
      +    right:-16px;
      +}
      +ul.sub-nav-list li {
      +    list-style:none;
      +    float:left;
      +    padding-top:10px;
      +}
      +.top-nav a:link, .top-nav a:active, .top-nav a:visited {
      +    color:#FFFFFF;
      +    text-decoration:none;
      +    text-transform:uppercase;
      +}
      +.top-nav a:hover {
      +    text-decoration:none;
      +    color:#bb7a2a;
      +    text-transform:uppercase;
      +}
      +.nav-bar-cell1-rev {
      +    background-color:#F8981D;
      +    color:#253441;
      +    margin: auto 5px;
      +}
      +.skip-nav {
      +    position:absolute;
      +    top:auto;
      +    left:-9999px;
      +    overflow:hidden;
      +}
      +/*
      + * Hide navigation links and search box in print layout
      + */
      +@media print {
      +    ul.nav-list, div.sub-nav  {
      +        display:none;
      +    }
      +}
      +/*
      + * Styles for page header and footer.
      + */
      +.title {
      +    color:#2c4557;
      +    margin:10px 0;
      +}
      +.sub-title {
      +    margin:5px 0 0 0;
      +}
      +.header ul {
      +    margin:0 0 15px 0;
      +    padding:0;
      +}
      +.header ul li, .footer ul li {
      +    list-style:none;
      +    font-size:13px;
      +}
      +/*
      + * Styles for headings.
      + */
      +body.class-declaration-page .summary h2,
      +body.class-declaration-page .details h2,
      +body.class-use-page  h2,
      +body.module-declaration-page  .block-list h2 {
      +    font-style: italic;
      +    padding:0;
      +    margin:15px 0;
      +}
      +body.class-declaration-page .summary h3,
      +body.class-declaration-page .details h3,
      +body.class-declaration-page .summary .inherited-list h2 {
      +    background-color:#dee3e9;
      +    border:1px solid #d0d9e0;
      +    margin:0 0 6px -8px;
      +    padding:7px 5px;
      +}
      +/*
      + * Styles for page layout containers.
      + */
      +main {
      +    clear:both;
      +    padding:10px 20px;
      +    position:relative;
      +}
      +dl.notes > dt {
      +    font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif;
      +    font-size:12px;
      +    font-weight:bold;
      +    margin:10px 0 0 0;
      +    color:#4E4E4E;
      +}
      +dl.notes > dd {
      +    margin:5px 10px 10px 0;
      +    font-size:14px;
      +    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
      +}
      +dl.name-value > dt {
      +    margin-left:1px;
      +    font-size:1.1em;
      +    display:inline;
      +    font-weight:bold;
      +}
      +dl.name-value > dd {
      +    margin:0 0 0 1px;
      +    font-size:1.1em;
      +    display:inline;
      +}
      +/*
      + * Styles for lists.
      + */
      +li.circle {
      +    list-style:circle;
      +}
      +ul.horizontal li {
      +    display:inline;
      +    font-size:0.9em;
      +}
      +div.inheritance {
      +    margin:0;
      +    padding:0;
      +}
      +div.inheritance div.inheritance {
      +    margin-left:2em;
      +}
      +ul.block-list,
      +ul.details-list,
      +ul.member-list,
      +ul.summary-list {
      +    margin:10px 0 10px 0;
      +    padding:0;
      +}
      +ul.block-list > li,
      +ul.details-list > li,
      +ul.member-list > li,
      +ul.summary-list > li {
      +    list-style:none;
      +    margin-bottom:15px;
      +    line-height:1.4;
      +}
      +.summary-table dl, .summary-table dl dt, .summary-table dl dd {
      +    margin-top:0;
      +    margin-bottom:1px;
      +}
      +ul.see-list, ul.see-list-long {
      +    padding-left: 0;
      +    list-style: none;
      +}
      +ul.see-list li {
      +    display: inline;
      +}
      +ul.see-list li:not(:last-child):after,
      +ul.see-list-long li:not(:last-child):after {
      +    content: ", ";
      +    white-space: pre-wrap;
      +}
      +/*
      + * Styles for tables.
      + */
      +.summary-table, .details-table {
      +    width:100%;
      +    border-spacing:0;
      +    border-left:1px solid #EEE;
      +    border-right:1px solid #EEE;
      +    border-bottom:1px solid #EEE;
      +    padding:0;
      +}
      +.caption {
      +    position:relative;
      +    text-align:left;
      +    background-repeat:no-repeat;
      +    color:#253441;
      +    font-weight:bold;
      +    clear:none;
      +    overflow:hidden;
      +    padding:0;
      +    padding-top:10px;
      +    padding-left:1px;
      +    margin:0;
      +    white-space:pre;
      +}
      +.caption a:link, .caption a:visited {
      +    color:#1f389c;
      +}
      +.caption a:hover,
      +.caption a:active {
      +    color:#FFFFFF;
      +}
      +.caption span {
      +    white-space:nowrap;
      +    padding-top:5px;
      +    padding-left:12px;
      +    padding-right:12px;
      +    padding-bottom:7px;
      +    display:inline-block;
      +    float:left;
      +    background-color:#F8981D;
      +    border: none;
      +    height:16px;
      +}
      +div.table-tabs {
      +    padding:10px 0 0 1px;
      +    margin:0;
      +}
      +div.table-tabs > button {
      +   border: none;
      +   cursor: pointer;
      +   padding: 5px 12px 7px 12px;
      +   font-weight: bold;
      +   margin-right: 3px;
      +}
      +div.table-tabs > button.active-table-tab {
      +   background: #F8981D;
      +   color: #253441;
      +}
      +div.table-tabs > button.table-tab {
      +   background: #4D7A97;
      +   color: #FFFFFF;
      +}
      +.two-column-summary {
      +    display: grid;
      +    grid-template-columns: minmax(15%, max-content) minmax(15%, auto);
      +}
      +.three-column-summary {
      +    display: grid;
      +    grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, auto);
      +}
      +.four-column-summary {
      +    display: grid;
      +    grid-template-columns: minmax(10%, max-content) minmax(10%, max-content) minmax(10%, max-content) minmax(10%, auto);
      +}
      +@media screen and (max-width: 600px) {
      +    .two-column-summary {
      +        display: grid;
      +        grid-template-columns: 1fr;
      +    }
      +}
      +@media screen and (max-width: 800px) {
      +    .three-column-summary {
      +        display: grid;
      +        grid-template-columns: minmax(10%, max-content) minmax(25%, auto);
      +    }
      +    .three-column-summary .col-last {
      +        grid-column-end: span 2;
      +    }
      +}
      +@media screen and (max-width: 1000px) {
      +    .four-column-summary {
      +        display: grid;
      +        grid-template-columns: minmax(15%, max-content) minmax(15%, auto);
      +    }
      +}
      +.summary-table > div, .details-table > div {
      +    text-align:left;
      +    padding: 8px 3px 3px 7px;
      +}
      +.col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name {
      +    vertical-align:top;
      +    padding-right:0;
      +    padding-top:8px;
      +    padding-bottom:3px;
      +}
      +.table-header {
      +    background:#dee3e9;
      +    font-weight: bold;
      +}
      +.col-first, .col-first {
      +    font-size:13px;
      +}
      +.col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last {
      +    font-size:13px;
      +}
      +.col-first, .col-second, .col-constructor-name {
      +    vertical-align:top;
      +    overflow: auto;
      +}
      +.col-last {
      +    white-space:normal;
      +}
      +.col-first a:link, .col-first a:visited,
      +.col-second a:link, .col-second a:visited,
      +.col-first a:link, .col-first a:visited,
      +.col-second a:link, .col-second a:visited,
      +.col-constructor-name a:link, .col-constructor-name a:visited,
      +.col-summary-item-name a:link, .col-summary-item-name a:visited,
      +.constant-values-container a:link, .constant-values-container a:visited,
      +.all-classes-container a:link, .all-classes-container a:visited,
      +.all-packages-container a:link, .all-packages-container a:visited {
      +    font-weight:bold;
      +}
      +.table-sub-heading-color {
      +    background-color:#EEEEFF;
      +}
      +.even-row-color, .even-row-color .table-header {
      +    background-color:#FFFFFF;
      +}
      +.odd-row-color, .odd-row-color .table-header {
      +    background-color:#EEEEEF;
      +}
      +/*
      + * Styles for contents.
      + */
      +.deprecated-content {
      +    margin:0;
      +    padding:10px 0;
      +}
      +div.block {
      +    font-size:14px;
      +    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
      +}
      +.col-last div {
      +    padding-top:0;
      +}
      +.col-last a {
      +    padding-bottom:3px;
      +}
      +.module-signature,
      +.package-signature,
      +.type-signature,
      +.member-signature {
      +    font-family:'DejaVu Sans Mono', monospace;
      +    font-size:14px;
      +    margin:14px 0;
      +    white-space: pre-wrap;
      +}
      +.module-signature,
      +.package-signature,
      +.type-signature {
      +    margin-top: 0;
      +}
      +.member-signature .type-parameters-long,
      +.member-signature .parameters,
      +.member-signature .exceptions {
      +    display: inline-block;
      +    vertical-align: top;
      +    white-space: pre;
      +}
      +.member-signature .type-parameters {
      +    white-space: normal;
      +}
      +/*
      + * Styles for formatting effect.
      + */
      +.source-line-no {
      +    color:green;
      +    padding:0 30px 0 0;
      +}
      +h1.hidden {
      +    visibility:hidden;
      +    overflow:hidden;
      +    font-size:10px;
      +}
      +.block {
      +    display:block;
      +    margin:0 10px 5px 0;
      +    color:#474747;
      +}
      +.deprecated-label, .descfrm-type-label, .implementation-label, .member-name-label, .member-name-link,
      +.module-label-in-package, .module-label-in-type, .override-specify-label, .package-label-in-type,
      +.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label {
      +    font-weight:bold;
      +}
      +.deprecation-comment, .help-footnote, .preview-comment {
      +    font-style:italic;
      +}
      +.deprecation-block {
      +    font-size:14px;
      +    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
      +    border-style:solid;
      +    border-width:thin;
      +    border-radius:10px;
      +    padding:10px;
      +    margin-bottom:10px;
      +    margin-right:10px;
      +    display:inline-block;
      +}
      +.preview-block {
      +    font-size:14px;
      +    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
      +    border-style:solid;
      +    border-width:thin;
      +    border-radius:10px;
      +    padding:10px;
      +    margin-bottom:10px;
      +    margin-right:10px;
      +    display:inline-block;
      +}
      +div.block div.deprecation-comment {
      +    font-style:normal;
      +}
      +/*
      + * Styles specific to HTML5 elements.
      + */
      +main, nav, header, footer, section {
      +    display:block;
      +}
      +/*
      + * Styles for javadoc search.
      + */
      +.ui-autocomplete-category {
      +    font-weight:bold;
      +    font-size:15px;
      +    padding:7px 0 7px 3px;
      +    background-color:#4D7A97;
      +    color:#FFFFFF;
      +}
      +.result-item {
      +    font-size:13px;
      +}
      +.ui-autocomplete {
      +    max-height:85%;
      +    max-width:65%;
      +    overflow-y:scroll;
      +    overflow-x:scroll;
      +    white-space:nowrap;
      +    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
      +}
      +ul.ui-autocomplete {
      +    position:fixed;
      +    z-index:999999;
      +    background-color: #FFFFFF;
      +}
      +ul.ui-autocomplete  li {
      +    float:left;
      +    clear:both;
      +    width:100%;
      +}
      +.result-highlight {
      +    font-weight:bold;
      +}
      +.ui-autocomplete .result-item {
      +    font-size: inherit;
      +}
      +#search-input {
      +    background-image:url('resources/glass.png');
      +    background-size:13px;
      +    background-repeat:no-repeat;
      +    background-position:2px 3px;
      +    padding-left:20px;
      +    position:relative;
      +    right:-18px;
      +    width:400px;
      +}
      +#reset-button {
      +    background-color: rgb(255,255,255);
      +    background-image:url('resources/x.png');
      +    background-position:center;
      +    background-repeat:no-repeat;
      +    background-size:12px;
      +    border:0 none;
      +    width:16px;
      +    height:16px;
      +    position:relative;
      +    left:-4px;
      +    top:-4px;
      +    font-size:0px;
      +}
      +.watermark {
      +    color:#545454;
      +}
      +.search-tag-desc-result {
      +    font-style:italic;
      +    font-size:11px;
      +}
      +.search-tag-holder-result {
      +    font-style:italic;
      +    font-size:12px;
      +}
      +.search-tag-result:target {
      +    background-color:yellow;
      +}
      +.module-graph span {
      +    display:none;
      +    position:absolute;
      +}
      +.module-graph:hover span {
      +    display:block;
      +    margin: -100px 0 0 100px;
      +    z-index: 1;
      +}
      +.inherited-list {
      +    margin: 10px 0 10px 0;
      +}
      +section.class-description {
      +    line-height: 1.4;
      +}
      +.summary section[class$="-summary"], .details section[class$="-details"],
      +.class-uses .detail, .serialized-class-details {
      +    padding: 0px 20px 5px 10px;
      +    border: 1px solid #ededed;
      +    background-color: #f8f8f8;
      +}
      +.inherited-list, section[class$="-details"] .detail {
      +    padding:0 0 5px 8px;
      +    background-color:#ffffff;
      +    border:none;
      +}
      +.vertical-separator {
      +    padding: 0 5px;
      +}
      +ul.help-section-list {
      +    margin: 0;
      +}
      +ul.help-subtoc > li {
      +  display: inline-block;
      +  padding-right: 5px;
      +  font-size: smaller;
      +}
      +ul.help-subtoc > li::before {
      +  content: "\2022" ;
      +  padding-right:2px;
      +}
      +span.help-note {
      +    font-style: italic;
      +}
      +/*
      + * Indicator icon for external links.
      + */
      +main a[href*="://"]::after {
      +    content:"";
      +    display:inline-block;
      +    background-image:url('data:image/svg+xml; utf8, \
      +      <svg xmlns="http://www.w3.org/2000/svg" width="768" height="768">\
      +        <path d="M584 664H104V184h216V80H0v688h688V448H584zM384 0l132 \
      +        132-240 240 120 120 240-240 132 132V0z" fill="%234a6782"/>\
      +      </svg>');
      +    background-size:100% 100%;
      +    width:7px;
      +    height:7px;
      +    margin-left:2px;
      +    margin-bottom:4px;
      +}
      +main a[href*="://"]:hover::after,
      +main a[href*="://"]:focus::after {
      +    background-image:url('data:image/svg+xml; utf8, \
      +      <svg xmlns="http://www.w3.org/2000/svg" width="768" height="768">\
      +        <path d="M584 664H104V184h216V80H0v688h688V448H584zM384 0l132 \
      +        132-240 240 120 120 240-240 132 132V0z" fill="%23bb7a2a"/>\
      +      </svg>');
      +}
      +
      +/*
      + * Styles for user-provided tables.
      + *
      + * borderless:
      + *      No borders, vertical margins, styled caption.
      + *      This style is provided for use with existing doc comments.
      + *      In general, borderless tables should not be used for layout purposes.
      + *
      + * plain:
      + *      Plain borders around table and cells, vertical margins, styled caption.
      + *      Best for small tables or for complex tables for tables with cells that span
      + *      rows and columns, when the "striped" style does not work well.
      + *
      + * striped:
      + *      Borders around the table and vertical borders between cells, striped rows,
      + *      vertical margins, styled caption.
      + *      Best for tables that have a header row, and a body containing a series of simple rows.
      + */
      +
      +table.borderless,
      +table.plain,
      +table.striped {
      +    margin-top: 10px;
      +    margin-bottom: 10px;
      +}
      +table.borderless > caption,
      +table.plain > caption,
      +table.striped > caption {
      +    font-weight: bold;
      +    font-size: smaller;
      +}
      +table.borderless th, table.borderless td,
      +table.plain th, table.plain td,
      +table.striped th, table.striped td {
      +    padding: 2px 5px;
      +}
      +table.borderless,
      +table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th,
      +table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td {
      +    border: none;
      +}
      +table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr {
      +    background-color: transparent;
      +}
      +table.plain {
      +    border-collapse: collapse;
      +    border: 1px solid black;
      +}
      +table.plain > thead > tr, table.plain > tbody tr, table.plain > tr {
      +    background-color: transparent;
      +}
      +table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th,
      +table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td {
      +    border: 1px solid black;
      +}
      +table.striped {
      +    border-collapse: collapse;
      +    border: 1px solid black;
      +}
      +table.striped > thead {
      +    background-color: #E3E3E3;
      +}
      +table.striped > thead > tr > th, table.striped > thead > tr > td {
      +    border: 1px solid black;
      +}
      +table.striped > tbody > tr:nth-child(even) {
      +    background-color: #EEE
      +}
      +table.striped > tbody > tr:nth-child(odd) {
      +    background-color: #FFF
      +}
      +table.striped > tbody > tr > th, table.striped > tbody > tr > td {
      +    border-left: 1px solid black;
      +    border-right: 1px solid black;
      +}
      +table.striped > tbody > tr > th {
      +    font-weight: normal;
      +}
      +/**
      + * Tweak font sizes and paddings for small screens.
      + */
      +@media screen and (max-width: 1050px) {
      +    #search-input {
      +        width: 300px;
      +    }
      +}
      +@media screen and (max-width: 800px) {
      +    #search-input {
      +        width: 200px;
      +    }
      +    .top-nav,
      +    .bottom-nav {
      +        font-size: 11px;
      +        padding-top: 6px;
      +    }
      +    .sub-nav {
      +        font-size: 11px;
      +    }
      +    .about-language {
      +        padding-right: 16px;
      +    }
      +    ul.nav-list li,
      +    .sub-nav .nav-list-search {
      +        padding: 6px;
      +    }
      +    ul.sub-nav-list li {
      +        padding-top: 5px;
      +    }
      +    main {
      +        padding: 10px;
      +    }
      +    .summary section[class$="-summary"], .details section[class$="-details"],
      +    .class-uses .detail, .serialized-class-details {
      +        padding: 0 8px 5px 8px;
      +    }
      +    body {
      +        -webkit-text-size-adjust: none;
      +    }
      +}
      +@media screen and (max-width: 500px) {
      +    #search-input {
      +        width: 150px;
      +    }
      +    .top-nav,
      +    .bottom-nav {
      +        font-size: 10px;
      +    }
      +    .sub-nav {
      +        font-size: 10px;
      +    }
      +    .about-language {
      +        font-size: 10px;
      +        padding-right: 12px;
      +    }
      +}
      diff --git a/docs/site/testapidocs/system-properties.html b/docs/site/testapidocs/system-properties.html
      new file mode 100644
      index 00000000..2a4a1908
      --- /dev/null
      +++ b/docs/site/testapidocs/system-properties.html
      @@ -0,0 +1,108 @@
      +<!DOCTYPE HTML>
      +<!-- NewPage -->
      +<html lang="en">
      +<head>
      +<!-- Generated by javadoc (14.0.2) on Sun Jun 06 17:13:41 CEST 2021 -->
      +<title>System Properties (Units of Measurement API 2.1.3-SNAPSHOT Test API)</title>
      +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      +<meta name="dc.created" content="2021-06-06">
      +<meta name="description" content="system properties">
      +<meta name="generator" content="javadoc/SystemPropertiesWriter">
      +<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
      +<link rel="stylesheet" type="text/css" href="script-dir/jquery-ui.css" title="Style">
      +<script type="text/javascript" src="script.js"></script>
      +<script type="text/javascript" src="script-dir/jszip/dist/jszip.min.js"></script>
      +<script type="text/javascript" src="script-dir/jszip-utils/dist/jszip-utils.min.js"></script>
      +<!--[if IE]>
      +<script type="text/javascript" src="script-dir/jszip-utils/dist/jszip-utils-ie.min.js"></script>
      +<![endif]-->
      +<script type="text/javascript" src="script-dir/jquery-3.4.1.js"></script>
      +<script type="text/javascript" src="script-dir/jquery-ui.js"></script>
      +</head>
      +<body class="system-properties">
      +<script type="text/javascript">var pathtoroot = "./";
      +loadScripts(document, 'script');</script>
      +<noscript>
      +<div>JavaScript is disabled on your browser.</div>
      +</noscript>
      +<header role="banner">
      +<nav role="navigation">
      +<!-- ========= START OF TOP NAVBAR ======= -->
      +<div class="topNav"><a id="navbar.top">
      +<!--   -->
      +</a>
      +<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
      +<a id="navbar.top.firstrow">
      +<!--   -->
      +</a>
      +<ul class="navList" title="Navigation">
      +<li><a href="index.html">Overview</a></li>
      +<li>Package</li>
      +<li>Class</li>
      +<li>Use</li>
      +<li><a href="overview-tree.html">Tree</a></li>
      +<li><a href="deprecated-list.html">Deprecated</a></li>
      +<li><a href="index-all.html">Index</a></li>
      +<li><a href="help-doc.html">Help</a></li>
      +</ul>
      +</div>
      +<div class="subNav">
      +<div class="navListSearch"><label for="search">SEARCH:</label>
      +<input type="text" id="search" value="search" disabled="disabled">
      +<input type="reset" id="reset" value="reset" disabled="disabled">
      +</div>
      +</div>
      +<!-- ========= END OF TOP NAVBAR ========= -->
      +<div class="skipNav"><a id="skip.navbar.top">
      +<!--   -->
      +</a></div>
      +</nav>
      +</header>
      +<main role="main">
      +<div class="header">
      +<h1 title="System Properties" class="title">System Properties</h1>
      +</div>
      +<div class="systemPropertiesContainer">
      +<div class="systemPropertiesSummary">
      +<table>
      +<caption><span>System Properties Summary</span><span class="tabEnd">&nbsp;</span></caption>
      +<thead>
      +<tr>
      +<th class="colFirst" scope="col">Property</th>
      +<th class="colLast" scope="col">Referenced In</th>
      +</tr>
      +</thead>
      +</table>
      +</div>
      +</div>
      +</main>
      +<footer role="contentinfo">
      +<nav role="navigation">
      +<!-- ======= START OF BOTTOM NAVBAR ====== -->
      +<div class="bottomNav"><a id="navbar.bottom">
      +<!--   -->
      +</a>
      +<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
      +<a id="navbar.bottom.firstrow">
      +<!--   -->
      +</a>
      +<ul class="navList" title="Navigation">
      +<li><a href="index.html">Overview</a></li>
      +<li>Package</li>
      +<li>Class</li>
      +<li>Use</li>
      +<li><a href="overview-tree.html">Tree</a></li>
      +<li><a href="deprecated-list.html">Deprecated</a></li>
      +<li><a href="index-all.html">Index</a></li>
      +<li><a href="help-doc.html">Help</a></li>
      +</ul>
      +</div>
      +<a id="skip.navbar.bottom">
      +<!--   -->
      +</a>
      +<!-- ======== END OF BOTTOM NAVBAR ======= -->
      +</nav>
      +<p class="legalCopy"><small>Copyright &#169; 2014&#x2013;2021 <a href="http://unitsofmeasurement.github.io">Jean-Marie Dautelle, Werner Keil, Otavio Santana</a>. All rights reserved.</small></p>
      +</footer>
      +</body>
      +</html>
      diff --git a/docs/site/testapidocs/tag-search-index.js b/docs/site/testapidocs/tag-search-index.js
      new file mode 100644
      index 00000000..0367dae6
      --- /dev/null
      +++ b/docs/site/testapidocs/tag-search-index.js
      @@ -0,0 +1 @@
      +tagSearchIndex = [];updateSearchResults();
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/type-search-index.js b/docs/site/testapidocs/type-search-index.js
      new file mode 100644
      index 00000000..c9e22661
      --- /dev/null
      +++ b/docs/site/testapidocs/type-search-index.js
      @@ -0,0 +1 @@
      +typeSearchIndex = [{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"javax.measure.test.quantity","l":"AreaQuantity"},{"p":"javax.measure.test.quantity","l":"AreaQuantityTest"},{"p":"javax.measure.test.unit","l":"AreaUnit"},{"p":"javax.measure.test.unit","l":"BaseUnit"},{"p":"javax.measure.test","l":"BinaryPrefixTest"},{"p":"javax.measure.test","l":"CalcTripLength"},{"p":"javax.measure.test","l":"CircleInfo"},{"p":"javax.measure.test.quantity","l":"CircleInfo"},{"p":"javax.measure.test","l":"Conversions"},{"p":"javax.measure.test","l":"ConverterTest"},{"p":"javax.measure.test","l":"DimensionTest"},{"p":"javax.measure.test.quantity","l":"DistanceQuantity"},{"p":"javax.measure.test.quantity","l":"DistanceQuantityTest"},{"p":"javax.measure.test.unit","l":"DistanceUnit"},{"p":"javax.measure.test","l":"ExceptionsTest"},{"p":"javax.measure.spi","l":"FormatServiceTest"},{"p":"javax.measure.test.unit","l":"MassUnit"},{"p":"javax.measure.test.format","l":"MeasurementParseTest"},{"p":"javax.measure.test","l":"MetricPrefixTest"},{"p":"javax.measure.test.function","l":"MultiplyConverter"},{"p":"javax.measure.test","l":"TestConverter.Pair"},{"p":"javax.measure.test.format","l":"QuantityFormatTest"},{"p":"javax.measure.spi","l":"ServiceProviderTest"},{"p":"javax.measure.test.format","l":"SimpleTestUnitFormat"},{"p":"javax.measure.test.unit","l":"SpeedUnit"},{"p":"javax.measure.test.quantity","l":"TemperatureQuantity"},{"p":"javax.measure.test.quantity","l":"TemperatureQuantityTest"},{"p":"javax.measure.test.unit","l":"TemperatureUnit"},{"p":"javax.measure.test","l":"TestConverter"},{"p":"javax.measure.test.quantity","l":"TestQuantities"},{"p":"javax.measure.test.quantity","l":"TestQuantity"},{"p":"javax.measure.test","l":"TestUnit"},{"p":"javax.measure.test.quantity","l":"TimeQuantity"},{"p":"javax.measure.test.unit","l":"TimeUnit"},{"p":"javax.measure.test","l":"TripLeg"},{"p":"javax.measure.test.format","l":"UnitFormatTest"},{"p":"javax.measure.test","l":"UnitTest"},{"p":"javax.measure.test.quantity","l":"VolumeQuantity"},{"p":"javax.measure.test.unit","l":"VolumeUnit"}];updateSearchResults();
      \ No newline at end of file
      diff --git a/docs/site/testapidocs/type-search-index.zip b/docs/site/testapidocs/type-search-index.zip
      new file mode 100644
      index 00000000..6b656642
      Binary files /dev/null and b/docs/site/testapidocs/type-search-index.zip differ
      diff --git a/docs/stylesheets/github-light.css b/docs/stylesheets/github-light.css
      new file mode 100644
      index 00000000..872a6f4b
      --- /dev/null
      +++ b/docs/stylesheets/github-light.css
      @@ -0,0 +1,116 @@
      +/*
      +   Copyright 2014 GitHub Inc.
      +
      +   Licensed under the Apache License, Version 2.0 (the "License");
      +   you may not use this file except in compliance with the License.
      +   You may obtain a copy of the License at
      +
      +       http://www.apache.org/licenses/LICENSE-2.0
      +
      +   Unless required by applicable law or agreed to in writing, software
      +   distributed under the License is distributed on an "AS IS" BASIS,
      +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      +   See the License for the specific language governing permissions and
      +   limitations under the License.
      +
      +*/
      +
      +.pl-c /* comment */ {
      +  color: #969896;
      +}
      +
      +.pl-c1      /* constant, markup.raw, meta.diff.header, meta.module-reference, meta.property-name, support, support.constant, support.variable, variable.other.constant */,
      +.pl-s .pl-v /* string variable */ {
      +  color: #0086b3;
      +}
      +
      +.pl-e  /* entity */,
      +.pl-en /* entity.name */ {
      +  color: #795da3;
      +}
      +
      +.pl-s .pl-s1 /* string source */,
      +.pl-smi      /* storage.modifier.import, storage.modifier.package, storage.type.java, variable.other, variable.parameter.function */ {
      +  color: #333;
      +}
      +
      +.pl-ent /* entity.name.tag */ {
      +  color: #63a35c;
      +}
      +
      +.pl-k /* keyword, storage, storage.type */ {
      +  color: #a71d5d;
      +}
      +
      +.pl-pds              /* punctuation.definition.string, string.regexp.character-class */,
      +.pl-s                /* string */,
      +.pl-s .pl-pse .pl-s1 /* string punctuation.section.embedded source */,
      +.pl-sr               /* string.regexp */,
      +.pl-sr .pl-cce       /* string.regexp constant.character.escape */,
      +.pl-sr .pl-sra       /* string.regexp string.regexp.arbitrary-repitition */,
      +.pl-sr .pl-sre       /* string.regexp source.ruby.embedded */ {
      +  color: #183691;
      +}
      +
      +.pl-v /* variable */ {
      +  color: #ed6a43;
      +}
      +
      +.pl-id /* invalid.deprecated */ {
      +  color: #b52a1d;
      +}
      +
      +.pl-ii /* invalid.illegal */ {
      +  background-color: #b52a1d;
      +  color: #f8f8f8;
      +}
      +
      +.pl-sr .pl-cce /* string.regexp constant.character.escape */ {
      +  color: #63a35c;
      +  font-weight: bold;
      +}
      +
      +.pl-ml /* markup.list */ {
      +  color: #693a17;
      +}
      +
      +.pl-mh        /* markup.heading */,
      +.pl-mh .pl-en /* markup.heading entity.name */,
      +.pl-ms        /* meta.separator */ {
      +  color: #1d3e81;
      +  font-weight: bold;
      +}
      +
      +.pl-mq /* markup.quote */ {
      +  color: #008080;
      +}
      +
      +.pl-mi /* markup.italic */ {
      +  color: #333;
      +  font-style: italic;
      +}
      +
      +.pl-mb /* markup.bold */ {
      +  color: #333;
      +  font-weight: bold;
      +}
      +
      +.pl-md /* markup.deleted, meta.diff.header.from-file */ {
      +  background-color: #ffecec;
      +  color: #bd2c00;
      +}
      +
      +.pl-mi1 /* markup.inserted, meta.diff.header.to-file */ {
      +  background-color: #eaffea;
      +  color: #55a532;
      +}
      +
      +.pl-mdr /* meta.diff.range */ {
      +  color: #795da3;
      +  font-weight: bold;
      +}
      +
      +.pl-mo /* meta.output */ {
      +  color: #1d3e81;
      +}
      +
      diff --git a/docs/stylesheets/styles.css b/docs/stylesheets/styles.css
      new file mode 100644
      index 00000000..ff32137d
      --- /dev/null
      +++ b/docs/stylesheets/styles.css
      @@ -0,0 +1,255 @@
      +@import url(https://fonts.googleapis.com/css?family=Lato:300italic,700italic,300,700);
      +
      +body {
      +  padding:50px;
      +  font:14px/1.5 Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
      +  color:#777;
      +  font-weight:300;
      +}
      +
      +h1, h2, h3, h4, h5, h6 {
      +  color:#222;
      +  margin:0 0 20px;
      +}
      +
      +p, ul, ol, table, pre, dl {
      +  margin:0 0 20px;
      +}
      +
      +h1, h2, h3 {
      +  line-height:1.1;
      +}
      +
      +h1 {
      +  font-size:28px;
      +}
      +
      +h2 {
      +  color:#393939;
      +}
      +
      +h3, h4, h5, h6 {
      +  color:#494949;
      +}
      +
      +a {
      +  color:#39c;
      +  font-weight:400;
      +  text-decoration:none;
      +}
      +
      +a small {
      +  font-size:11px;
      +  color:#777;
      +  margin-top:-0.6em;
      +  display:block;
      +}
      +
      +.wrapper {
      +  width:860px;
      +  margin:0 auto;
      +}
      +
      +blockquote {
      +  border-left:1px solid #e5e5e5;
      +  margin:0;
      +  padding:0 0 0 20px;
      +  font-style:italic;
      +}
      +
      +code, pre {
      +  font-family:Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal;
      +  color:#333;
      +  font-size:12px;
      +}
      +
      +pre {
      +  padding:8px 15px;
      +  background: #f8f8f8;
      +  border-radius:5px;
      +  border:1px solid #e5e5e5;
      +  overflow-x: auto;
      +}
      +
      +table {
      +  width:100%;
      +  border-collapse:collapse;
      +}
      +
      +th, td {
      +  text-align:left;
      +  padding:5px 10px;
      +  border-bottom:1px solid #e5e5e5;
      +}
      +
      +dt {
      +  color:#444;
      +  font-weight:700;
      +}
      +
      +th {
      +  color:#444;
      +}
      +
      +img {
      +  max-width:100%;
      +}
      +
      +header {
      +  width:270px;
      +  float:left;
      +  position:fixed;
      +}
      +
      +header ul {
      +  list-style:none;
      +  height:40px;
      +
      +  padding:0;
      +
      +  background: #eee;
      +  background: -moz-linear-gradient(top, #f8f8f8 0%, #dddddd 100%);
      +  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#dddddd));
      +  background: -webkit-linear-gradient(top, #f8f8f8 0%,#dddddd 100%);
      +  background: -o-linear-gradient(top, #f8f8f8 0%,#dddddd 100%);
      +  background: -ms-linear-gradient(top, #f8f8f8 0%,#dddddd 100%);
      +  background: linear-gradient(top, #f8f8f8 0%,#dddddd 100%);
      +
      +  border-radius:5px;
      +  border:1px solid #d2d2d2;
      +  box-shadow:inset #fff 0 1px 0, inset rgba(0,0,0,0.03) 0 -1px 0;
      +  width:270px;
      +}
      +
      +header li {
      +  width:89px;
      +  float:left;
      +  border-right:1px solid #d2d2d2;
      +  height:40px;
      +}
      +
      +header ul a {
      +  line-height:1;
      +  font-size:11px;
      +  color:#999;
      +  display:block;
      +  text-align:center;
      +  padding-top:6px;
      +  height:40px;
      +}
      +
      +strong {
      +  color:#222;
      +  font-weight:700;
      +}
      +
      +header ul li + li {
      +  width:88px;
      +  border-left:1px solid #fff;
      +}
      +
      +header ul li + li + li {
      +  border-right:none;
      +  width:89px;
      +}
      +
      +header ul a strong {
      +  font-size:14px;
      +  display:block;
      +  color:#222;
      +}
      +
      +section {
      +  width:500px;
      +  float:right;
      +  padding-bottom:50px;
      +}
      +
      +small {
      +  font-size:11px;
      +}
      +
      +hr {
      +  border:0;
      +  background:#e5e5e5;
      +  height:1px;
      +  margin:0 0 20px;
      +}
      +
      +footer {
      +  width:270px;
      +  float:left;
      +  position:fixed;
      +  bottom:50px;
      +}
      +
      +@media print, screen and (max-width: 960px) {
      +
      +  div.wrapper {
      +    width:auto;
      +    margin:0;
      +  }
      +
      +  header, section, footer {
      +    float:none;
      +    position:static;
      +    width:auto;
      +  }
      +
      +  header {
      +    padding-right:320px;
      +  }
      +
      +  section {
      +    border:1px solid #e5e5e5;
      +    border-width:1px 0;
      +    padding:20px 0;
      +    margin:0 0 20px;
      +  }
      +
      +  header a small {
      +    display:inline;
      +  }
      +
      +  header ul {
      +    position:absolute;
      +    right:50px;
      +    top:52px;
      +  }
      +}
      +
      +@media print, screen and (max-width: 720px) {
      +  body {
      +    word-wrap:break-word;
      +  }
      +
      +  header {
      +    padding:0;
      +  }
      +
      +  header ul, header p.view {
      +    position:static;
      +  }
      +
      +  pre, code {
      +    word-wrap:normal;
      +  }
      +}
      +
      +@media print, screen and (max-width: 480px) {
      +  body {
      +    padding:15px;
      +  }
      +
      +  header ul {
      +    display:none;
      +  }
      +}
      +
      +@media print {
      +  body {
      +    padding:0.4in;
      +    font-size:12pt;
      +    color:#444;
      +  }
      +}
      diff --git a/docs/tags/California.html b/docs/tags/California.html
      new file mode 100644
      index 00000000..7096eabe
      --- /dev/null
      +++ b/docs/tags/California.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #California</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">March 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>23 - <a href="2017/devoxxus17.html">DevoXX US 2017</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/Frankfurt.html b/docs/tags/Frankfurt.html
      new file mode 100644
      index 00000000..75f250e0
      --- /dev/null
      +++ b/docs/tags/Frankfurt.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #Frankfurt</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">December 2013</h4>
      +              <ul>
      +                <li>
      +                  <p>18 - <a href="2013/first-post.html">Pecha Kucha Night</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/SanJose.html b/docs/tags/SanJose.html
      new file mode 100644
      index 00000000..8819fb15
      --- /dev/null
      +++ b/docs/tags/SanJose.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #SanJose</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">March 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>23 - <a href="2017/devoxxus17.html">DevoXX US 2017</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/anniversary.html b/docs/tags/anniversary.html
      new file mode 100644
      index 00000000..6f2baa69
      --- /dev/null
      +++ b/docs/tags/anniversary.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #anniversary</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">December 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>13 - <a href="2016/jsr275-100k.html">100-Thousandth Download of JSR 275 exceeded</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/antwerp.html b/docs/tags/antwerp.html
      new file mode 100644
      index 00000000..9ce8b7d6
      --- /dev/null
      +++ b/docs/tags/antwerp.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #antwerp</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">November 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/devoxxbe15.html">DevoXX BE 2015</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/apache.html b/docs/tags/apache.html
      new file mode 100644
      index 00000000..0af9168f
      --- /dev/null
      +++ b/docs/tags/apache.html
      @@ -0,0 +1,172 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #apache</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">November 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>24 - <a href="2017/sis08.html">Apache SIS 0.8</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">October 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>10 - <a href="2015/apache-on-mars.html">Data Quality on Mars - Apache BigData Europe 2015</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/award.html b/docs/tags/award.html
      new file mode 100644
      index 00000000..8aee0574
      --- /dev/null
      +++ b/docs/tags/award.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #award</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">October 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2015/javaone15-jcpaward.html">JavaOne 2015, JCP Award</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/be.html b/docs/tags/be.html
      new file mode 100644
      index 00000000..9488855a
      --- /dev/null
      +++ b/docs/tags/be.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #be</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">November 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/devoxxbe15.html">DevoXX BE 2015</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/belgium.html b/docs/tags/belgium.html
      new file mode 100644
      index 00000000..5eab1492
      --- /dev/null
      +++ b/docs/tags/belgium.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #belgium</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">November 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/devoxxbe15.html">DevoXX BE 2015</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/bintray.html b/docs/tags/bintray.html
      new file mode 100644
      index 00000000..07525655
      --- /dev/null
      +++ b/docs/tags/bintray.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #bintray</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">December 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>13 - <a href="2016/jsr275-100k.html">100-Thousandth Download of JSR 275 exceeded</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/blog.html b/docs/tags/blog.html
      new file mode 100644
      index 00000000..da43bf9e
      --- /dev/null
      +++ b/docs/tags/blog.html
      @@ -0,0 +1,163 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Parts <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 363</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-api">Specification (API)</a></li>
      +                    <li><a href="http://www.unitsofmeasurement.org/jsr-363/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <!--- li class="nav-header">Sandbox</li>
      +                    <li><a href="shelter.html">Shelter</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Info and Links</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>
      +                    <li><a href="https://unitsofmeasurement.java.net">JSR 363 Project on Java.net</a></li>
      +                    <li><a href="http://www.unitsofmeasurement.org/jsr-363/index.html">JSR 363 Maven Site</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="http://www.unitsofmeasurement.org">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +                <li><a href="/pages/calendar.html">Calendar</a></li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #blog</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">December 2013</h4>
      +              <ul>
      +                <li>
      +                  <p>18 - <a href="\2013\first-post.html">Pecha Kucha Night</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2014 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.2.1</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/bof.html b/docs/tags/bof.html
      new file mode 100644
      index 00000000..4640a642
      --- /dev/null
      +++ b/docs/tags/bof.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #bof</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">September 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>20 - <a href="2016/javaone16-f2f.html">JavaOne 2016</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/devoxx.html b/docs/tags/devoxx.html
      new file mode 100644
      index 00000000..9819da45
      --- /dev/null
      +++ b/docs/tags/devoxx.html
      @@ -0,0 +1,178 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #devoxx</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">March 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>23 - <a href="2017/devoxxus17.html">DevoXX US 2017</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">November 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/devoxxbe15.html">DevoXX BE 2015</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">March 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/fanta4.html">Fantastic Four vs The League of Extraordinary Developers</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/download.html b/docs/tags/download.html
      new file mode 100644
      index 00000000..030637c0
      --- /dev/null
      +++ b/docs/tags/download.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #download</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">December 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>13 - <a href="2016/jsr275-100k.html">100-Thousandth Download of JSR 275 exceeded</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/dwx.html b/docs/tags/dwx.html
      new file mode 100644
      index 00000000..8b22a635
      --- /dev/null
      +++ b/docs/tags/dwx.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #dwx</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">March 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/fanta4.html">Fantastic Four vs The League of Extraordinary Developers</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/ec.html b/docs/tags/ec.html
      new file mode 100644
      index 00000000..2f618864
      --- /dev/null
      +++ b/docs/tags/ec.html
      @@ -0,0 +1,196 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #ec</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">January 2018</h4>
      +              <ul>
      +                <li>
      +                  <p>08 - <a href="2018/accepted20.html">JSR 385 Accepted</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">January 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>26 - <a href="2016/jan16-f2f.html">EG F2F during JCP EC F2F in Rio de Janeiro</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">October 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2015/javaone15-jcpaward.html">JavaOne 2015, JCP Award</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">January 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>14 - <a href="2015/jan15-f2f.html">EG F2F during JCP EC F2F in San Jose</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">April 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>07 - <a href="2014/accepted.html">JSR 363 Accepted</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">March 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>11 - <a href="2014/cr.html">Creation Review</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/eclipse.html b/docs/tags/eclipse.html
      new file mode 100644
      index 00000000..e838f8fe
      --- /dev/null
      +++ b/docs/tags/eclipse.html
      @@ -0,0 +1,178 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #eclipse</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">December 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>31 - <a href="2017/uomo07.html">Eclipse UOMo 0.7</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">August 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2014/edct_tmf14.html">Eclipse DemoCamp and Maker Faire Trondheim 2014</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">June 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>17 - <a href="2014/ecf14.html">EclipseCon France</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/edr.html b/docs/tags/edr.html
      new file mode 100644
      index 00000000..a6bb8144
      --- /dev/null
      +++ b/docs/tags/edr.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #edr</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">December 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>29 - <a href="2014/edr.html">Early Draft</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/embedded.html b/docs/tags/embedded.html
      new file mode 100644
      index 00000000..d1991a2e
      --- /dev/null
      +++ b/docs/tags/embedded.html
      @@ -0,0 +1,172 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #embedded</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">November 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/devoxxbe15.html">DevoXX BE 2015</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">March 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/fanta4.html">Fantastic Four vs The League of Extraordinary Developers</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/fab.html b/docs/tags/fab.html
      new file mode 100644
      index 00000000..6f3297f8
      --- /dev/null
      +++ b/docs/tags/fab.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #fab</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">September 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>13 - <a href="2016/final.html">Final Release</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/final.html b/docs/tags/final.html
      new file mode 100644
      index 00000000..c6b44223
      --- /dev/null
      +++ b/docs/tags/final.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #final</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">September 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>13 - <a href="2016/final.html">Final Release</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/france.html b/docs/tags/france.html
      new file mode 100644
      index 00000000..18b86e26
      --- /dev/null
      +++ b/docs/tags/france.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #france</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">June 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>17 - <a href="2014/ecf14.html">EclipseCon France</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/germany.html b/docs/tags/germany.html
      new file mode 100644
      index 00000000..6383f992
      --- /dev/null
      +++ b/docs/tags/germany.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #germany</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">March 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/fanta4.html">Fantastic Four vs The League of Extraordinary Developers</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/health.html b/docs/tags/health.html
      new file mode 100644
      index 00000000..0f21b837
      --- /dev/null
      +++ b/docs/tags/health.html
      @@ -0,0 +1,172 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #health</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">February 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2015/smw15.html">Social Media Week 2015</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">August 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2014/edct_tmf14.html">Eclipse DemoCamp and Maker Faire Trondheim 2014</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/hitchbot.html b/docs/tags/hitchbot.html
      new file mode 100644
      index 00000000..13f14ac1
      --- /dev/null
      +++ b/docs/tags/hitchbot.html
      @@ -0,0 +1,172 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #hitchbot</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">August 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>02 - <a href="2015/rip-hitchbot.html">R.I.P., hitchBOT</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">February 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2015/smw15.html">Social Media Week 2015</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/implementation.html b/docs/tags/implementation.html
      new file mode 100644
      index 00000000..55322ca4
      --- /dev/null
      +++ b/docs/tags/implementation.html
      @@ -0,0 +1,178 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #implementation</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">December 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>31 - <a href="2017/uomo07.html">Eclipse UOMo 0.7</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">November 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>24 - <a href="2017/sis08.html">Apache SIS 0.8</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">August 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2017/taste_of_indriya.html">A Taste of Indriya</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/indriya.html b/docs/tags/indriya.html
      new file mode 100644
      index 00000000..7a02889b
      --- /dev/null
      +++ b/docs/tags/indriya.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #indriya</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">August 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2017/taste_of_indriya.html">A Taste of Indriya</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/ioe.html b/docs/tags/ioe.html
      new file mode 100644
      index 00000000..a5ab9944
      --- /dev/null
      +++ b/docs/tags/ioe.html
      @@ -0,0 +1,172 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #ioe</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">August 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>02 - <a href="2015/rip-hitchbot.html">R.I.P., hitchBOT</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">February 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2015/smw15.html">Social Media Week 2015</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/iot.html b/docs/tags/iot.html
      new file mode 100644
      index 00000000..317f69d8
      --- /dev/null
      +++ b/docs/tags/iot.html
      @@ -0,0 +1,235 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #iot</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">March 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>23 - <a href="2017/devoxxus17.html">DevoXX US 2017</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">September 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>13 - <a href="2016/final.html">Final Release</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">July 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>19 - <a href="2016/pfd.html">Proposed Final Draft</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">November 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>18 - <a href="2015/pr.html">Public Review</a></p>
      +                </li>
      +                <li>
      +                  <p>15 - <a href="2015/devoxxbe15.html">DevoXX BE 2015</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">August 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>02 - <a href="2015/rip-hitchbot.html">R.I.P., hitchBOT</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">March 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/fanta4.html">Fantastic Four vs The League of Extraordinary Developers</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">February 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2015/smw15.html">Social Media Week 2015</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">December 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>29 - <a href="2014/edr.html">Early Draft</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">August 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2014/edct_tmf14.html">Eclipse DemoCamp and Maker Faire Trondheim 2014</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">June 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>17 - <a href="2014/ecf14.html">EclipseCon France</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">April 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>09 - <a href="2014/iotday.html">World IoT Day</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">December 2013</h4>
      +              <ul>
      +                <li>
      +                  <p>18 - <a href="2013/first-post.html">Pecha Kucha Night</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/java.html b/docs/tags/java.html
      new file mode 100644
      index 00000000..68b30ebf
      --- /dev/null
      +++ b/docs/tags/java.html
      @@ -0,0 +1,328 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #java</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">January 2018</h4>
      +              <ul>
      +                <li>
      +                  <p>08 - <a href="2018/accepted20.html">JSR 385 Accepted</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">December 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>31 - <a href="2017/uomo07.html">Eclipse UOMo 0.7</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">November 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>24 - <a href="2017/sis08.html">Apache SIS 0.8</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">August 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2017/taste_of_indriya.html">A Taste of Indriya</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">March 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>23 - <a href="2017/devoxxus17.html">DevoXX US 2017</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">December 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>13 - <a href="2016/jsr275-100k.html">100-Thousandth Download of JSR 275 exceeded</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">September 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>20 - <a href="2016/javaone16-f2f.html">JavaOne 2016</a></p>
      +                </li>
      +                <li>
      +                  <p>13 - <a href="2016/final.html">Final Release</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">August 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2016/javaone16-announce.html">JavaOne 2016 Announcement</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">July 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>19 - <a href="2016/pfd.html">Proposed Final Draft</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">January 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>26 - <a href="2016/jan16-f2f.html">EG F2F during JCP EC F2F in Rio de Janeiro</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">November 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>18 - <a href="2015/pr.html">Public Review</a></p>
      +                </li>
      +                <li>
      +                  <p>15 - <a href="2015/devoxxbe15.html">DevoXX BE 2015</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">October 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2015/javaone15-jcpaward.html">JavaOne 2015, JCP Award</a></p>
      +                </li>
      +                <li>
      +                  <p>10 - <a href="2015/apache-on-mars.html">Data Quality on Mars - Apache BigData Europe 2015</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">September 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/profilage.html">Profiling JSR 363</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">March 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/fanta4.html">Fantastic Four vs The League of Extraordinary Developers</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">February 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2015/smw15.html">Social Media Week 2015</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">January 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>14 - <a href="2015/jan15-f2f.html">EG F2F during JCP EC F2F in San Jose</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">December 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>29 - <a href="2014/edr.html">Early Draft</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">October 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>02 - <a href="2014/javaone14-f2f.html">JavaOne 2014</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">August 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2014/edct_tmf14.html">Eclipse DemoCamp and Maker Faire Trondheim 2014</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">June 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>17 - <a href="2014/ecf14.html">EclipseCon France</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">May 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>14 - <a href="2014/may14-f2f.html">First EG F2F during JCP EC F2F in London</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">April 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>09 - <a href="2014/iotday.html">World IoT Day</a></p>
      +                </li>
      +                <li>
      +                  <p>07 - <a href="2014/accepted.html">JSR 363 Accepted</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">March 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2014/nh_jugs.html">NightHacking at JUGS</a></p>
      +                </li>
      +                <li>
      +                  <p>26 - <a href="2014/nh_javaland.html">JavaLand</a></p>
      +                </li>
      +                <li>
      +                  <p>11 - <a href="2014/cr.html">Creation Review</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">January 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>24 - <a href="2014/second-post.html">JCP EC F2F at Oracle HQ</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">December 2013</h4>
      +              <ul>
      +                <li>
      +                  <p>18 - <a href="2013/first-post.html">Pecha Kucha Night</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/javaone.html b/docs/tags/javaone.html
      new file mode 100644
      index 00000000..cb011644
      --- /dev/null
      +++ b/docs/tags/javaone.html
      @@ -0,0 +1,184 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #javaone</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">September 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>20 - <a href="2016/javaone16-f2f.html">JavaOne 2016</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">August 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2016/javaone16-announce.html">JavaOne 2016 Announcement</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">October 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2015/javaone15-jcpaward.html">JavaOne 2015, JCP Award</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">October 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>02 - <a href="2014/javaone14-f2f.html">JavaOne 2014</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/jcp.html b/docs/tags/jcp.html
      new file mode 100644
      index 00000000..6b37a002
      --- /dev/null
      +++ b/docs/tags/jcp.html
      @@ -0,0 +1,268 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #jcp</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">January 2018</h4>
      +              <ul>
      +                <li>
      +                  <p>08 - <a href="2018/accepted20.html">JSR 385 Accepted</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">August 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2017/taste_of_indriya.html">A Taste of Indriya</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">September 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>20 - <a href="2016/javaone16-f2f.html">JavaOne 2016</a></p>
      +                </li>
      +                <li>
      +                  <p>13 - <a href="2016/final.html">Final Release</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">August 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2016/javaone16-announce.html">JavaOne 2016 Announcement</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">July 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>19 - <a href="2016/pfd.html">Proposed Final Draft</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">January 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>26 - <a href="2016/jan16-f2f.html">EG F2F during JCP EC F2F in Rio de Janeiro</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">November 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>18 - <a href="2015/pr.html">Public Review</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">October 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2015/javaone15-jcpaward.html">JavaOne 2015, JCP Award</a></p>
      +                </li>
      +                <li>
      +                  <p>10 - <a href="2015/apache-on-mars.html">Data Quality on Mars - Apache BigData Europe 2015</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">September 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/profilage.html">Profiling JSR 363</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">January 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>14 - <a href="2015/jan15-f2f.html">EG F2F during JCP EC F2F in San Jose</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">December 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>29 - <a href="2014/edr.html">Early Draft</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">October 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>02 - <a href="2014/javaone14-f2f.html">JavaOne 2014</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">May 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>14 - <a href="2014/may14-f2f.html">First EG F2F during JCP EC F2F in London</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">April 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>07 - <a href="2014/accepted.html">JSR 363 Accepted</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">March 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2014/nh_jugs.html">NightHacking at JUGS</a></p>
      +                </li>
      +                <li>
      +                  <p>26 - <a href="2014/nh_javaland.html">JavaLand</a></p>
      +                </li>
      +                <li>
      +                  <p>11 - <a href="2014/cr.html">Creation Review</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">January 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>24 - <a href="2014/second-post.html">JCP EC F2F at Oracle HQ</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/jsr.html b/docs/tags/jsr.html
      new file mode 100644
      index 00000000..54f50a0a
      --- /dev/null
      +++ b/docs/tags/jsr.html
      @@ -0,0 +1,214 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #jsr</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">December 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>31 - <a href="2017/uomo07.html">Eclipse UOMo 0.7</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">November 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>24 - <a href="2017/sis08.html">Apache SIS 0.8</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">August 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2017/taste_of_indriya.html">A Taste of Indriya</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">December 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>13 - <a href="2016/jsr275-100k.html">100-Thousandth Download of JSR 275 exceeded</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">September 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>13 - <a href="2016/final.html">Final Release</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">July 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>19 - <a href="2016/pfd.html">Proposed Final Draft</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">November 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>18 - <a href="2015/pr.html">Public Review</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">September 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/profilage.html">Profiling JSR 363</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">December 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>29 - <a href="2014/edr.html">Early Draft</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/jug.html b/docs/tags/jug.html
      new file mode 100644
      index 00000000..bd87ff27
      --- /dev/null
      +++ b/docs/tags/jug.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #jug</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">March 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2014/nh_jugs.html">NightHacking at JUGS</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/london.html b/docs/tags/london.html
      new file mode 100644
      index 00000000..efdc93f0
      --- /dev/null
      +++ b/docs/tags/london.html
      @@ -0,0 +1,172 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #london</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">March 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/fanta4.html">Fantastic Four vs The League of Extraordinary Developers</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">May 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>14 - <a href="2014/may14-f2f.html">First EG F2F during JCP EC F2F in London</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/m2m.html b/docs/tags/m2m.html
      new file mode 100644
      index 00000000..ed40dcab
      --- /dev/null
      +++ b/docs/tags/m2m.html
      @@ -0,0 +1,223 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #m2m</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">March 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>23 - <a href="2017/devoxxus17.html">DevoXX US 2017</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">September 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>13 - <a href="2016/final.html">Final Release</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">July 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>19 - <a href="2016/pfd.html">Proposed Final Draft</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">November 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>18 - <a href="2015/pr.html">Public Review</a></p>
      +                </li>
      +                <li>
      +                  <p>15 - <a href="2015/devoxxbe15.html">DevoXX BE 2015</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">March 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/fanta4.html">Fantastic Four vs The League of Extraordinary Developers</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">February 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2015/smw15.html">Social Media Week 2015</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">December 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>29 - <a href="2014/edr.html">Early Draft</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">August 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2014/edct_tmf14.html">Eclipse DemoCamp and Maker Faire Trondheim 2014</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">June 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>17 - <a href="2014/ecf14.html">EclipseCon France</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">April 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>09 - <a href="2014/iotday.html">World IoT Day</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/makerfaire.html b/docs/tags/makerfaire.html
      new file mode 100644
      index 00000000..64ff80b9
      --- /dev/null
      +++ b/docs/tags/makerfaire.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #makerfaire</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">August 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2014/edct_tmf14.html">Eclipse DemoCamp and Maker Faire Trondheim 2014</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/norway.html b/docs/tags/norway.html
      new file mode 100644
      index 00000000..8b144fa7
      --- /dev/null
      +++ b/docs/tags/norway.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #norway</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">August 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2014/edct_tmf14.html">Eclipse DemoCamp and Maker Faire Trondheim 2014</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/pechakucha.html b/docs/tags/pechakucha.html
      new file mode 100644
      index 00000000..d7b471d4
      --- /dev/null
      +++ b/docs/tags/pechakucha.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #pechakucha</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">December 2013</h4>
      +              <ul>
      +                <li>
      +                  <p>18 - <a href="2013/first-post.html">Pecha Kucha Night</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/pfd.html b/docs/tags/pfd.html
      new file mode 100644
      index 00000000..2e5d0b43
      --- /dev/null
      +++ b/docs/tags/pfd.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #pfd</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">July 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>19 - <a href="2016/pfd.html">Proposed Final Draft</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/pr.html b/docs/tags/pr.html
      new file mode 100644
      index 00000000..9fc8e8ff
      --- /dev/null
      +++ b/docs/tags/pr.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #pr</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">November 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>18 - <a href="2015/pr.html">Public Review</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/profiles.html b/docs/tags/profiles.html
      new file mode 100644
      index 00000000..da55872b
      --- /dev/null
      +++ b/docs/tags/profiles.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #profiles</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">September 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/profilage.html">Profiling JSR 363</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/q2.html b/docs/tags/q2.html
      new file mode 100644
      index 00000000..dfef9b57
      --- /dev/null
      +++ b/docs/tags/q2.html
      @@ -0,0 +1,163 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Parts <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 363</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-api">Specification (API)</a></li>
      +                    <li><a href="http://www.unitsofmeasurement.org/jsr-363/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <!--- li class="nav-header">Sandbox</li>
      +                    <li><a href="shelter.html">Shelter</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Info and Links</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>
      +                    <li><a href="https://unitsofmeasurement.java.net">JSR 363 Project on Java.net</a></li>
      +                    <li><a href="http://www.unitsofmeasurement.org/jsr-363/index.html">JSR 363 Maven Site</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="http://www.unitsofmeasurement.org">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +                <li><a href="/pages/calendar.html">Calendar</a></li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #q2</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">August 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="\2014\edct_tmf14.html">Eclipse DemoCamp and Maker Faire Trondheim 2014</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2014 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.2.1</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/qs.html b/docs/tags/qs.html
      new file mode 100644
      index 00000000..685e34e4
      --- /dev/null
      +++ b/docs/tags/qs.html
      @@ -0,0 +1,172 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #qs</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">February 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2015/smw15.html">Social Media Week 2015</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">August 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2014/edct_tmf14.html">Eclipse DemoCamp and Maker Faire Trondheim 2014</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/ri.html b/docs/tags/ri.html
      new file mode 100644
      index 00000000..abb8fd14
      --- /dev/null
      +++ b/docs/tags/ri.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #ri</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">August 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2017/taste_of_indriya.html">A Taste of Indriya</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/science.html b/docs/tags/science.html
      new file mode 100644
      index 00000000..8c54faba
      --- /dev/null
      +++ b/docs/tags/science.html
      @@ -0,0 +1,172 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #science</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">August 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2014/edct_tmf14.html">Eclipse DemoCamp and Maker Faire Trondheim 2014</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">June 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>17 - <a href="2014/ecf14.html">EclipseCon France</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/sis.html b/docs/tags/sis.html
      new file mode 100644
      index 00000000..718557c4
      --- /dev/null
      +++ b/docs/tags/sis.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #sis</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">November 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>24 - <a href="2017/sis08.html">Apache SIS 0.8</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/smw.html b/docs/tags/smw.html
      new file mode 100644
      index 00000000..bca5b3b7
      --- /dev/null
      +++ b/docs/tags/smw.html
      @@ -0,0 +1,172 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #smw</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">August 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>02 - <a href="2015/rip-hitchbot.html">R.I.P., hitchBOT</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">February 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2015/smw15.html">Social Media Week 2015</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/social.html b/docs/tags/social.html
      new file mode 100644
      index 00000000..2bca1cf7
      --- /dev/null
      +++ b/docs/tags/social.html
      @@ -0,0 +1,172 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #social</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">August 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>02 - <a href="2015/rip-hitchbot.html">R.I.P., hitchBOT</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">February 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2015/smw15.html">Social Media Week 2015</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/uk.html b/docs/tags/uk.html
      new file mode 100644
      index 00000000..ae598784
      --- /dev/null
      +++ b/docs/tags/uk.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #uk</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">March 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/fanta4.html">Fantastic Four vs The League of Extraordinary Developers</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/units.html b/docs/tags/units.html
      new file mode 100644
      index 00000000..b653491b
      --- /dev/null
      +++ b/docs/tags/units.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #units</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">December 2013</h4>
      +              <ul>
      +                <li>
      +                  <p>18 - <a href="2013/first-post.html">Pecha Kucha Night</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/uomo.html b/docs/tags/uomo.html
      new file mode 100644
      index 00000000..5850654d
      --- /dev/null
      +++ b/docs/tags/uomo.html
      @@ -0,0 +1,166 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #uomo</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">December 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>31 - <a href="2017/uomo07.html">Eclipse UOMo 0.7</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/us.html b/docs/tags/us.html
      new file mode 100644
      index 00000000..30db8681
      --- /dev/null
      +++ b/docs/tags/us.html
      @@ -0,0 +1,190 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #us</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">March 2017</h4>
      +              <ul>
      +                <li>
      +                  <p>23 - <a href="2017/devoxxus17.html">DevoXX US 2017</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">September 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>20 - <a href="2016/javaone16-f2f.html">JavaOne 2016</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">August 2016</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2016/javaone16-announce.html">JavaOne 2016 Announcement</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">October 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2015/javaone15-jcpaward.html">JavaOne 2015, JCP Award</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">October 2014</h4>
      +              <ul>
      +                <li>
      +                  <p>02 - <a href="2014/javaone14-f2f.html">JavaOne 2014</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/docs/tags/wearable.html b/docs/tags/wearable.html
      new file mode 100644
      index 00000000..69c0c90d
      --- /dev/null
      +++ b/docs/tags/wearable.html
      @@ -0,0 +1,178 @@
      +<!DOCTYPE html>
      +<html lang="en">
      +  <head>
      +    <title>
      +    Units of Measurement
      +    </title>
      +    <meta charset="utf-8">
      +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      +    <meta name="author" content="keilw">
      +    <meta name="description" content="Static blog generated with JBake">
      +
      +    <!-- Style -->
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
      +    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.css">
      +    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
      +    <link rel="stylesheet" href="/css/base.css">
      +
      +    <!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
      +    <!--[if lt IE 9]>
      +      <script src="/js/html5shiv.js"></script>
      +    <![endif]-->
      +
      +    <!-- Fav icon -->
      +    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
      +    <link rel="icon" href="/img/favicon.ico" type="image/x-icon">
      +  </head>
      +  <body>      
      +    <nav class="navbar navbar-default navbar-fixed-top " role="navigation">
      +      <div class="container">
      +        <!-- Brand and toggle get grouped for better mobile display -->
      +        <div class="navbar-header">
      +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
      +            <span class="sr-only">Toggle navigation</span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +            <span class="icon-bar"></span>
      +          </button>
      +          <a class="navbar-brand" href="/">Units of Measurement</a>
      +        </div>
      +        
      +        <!-- Collect the nav links, forms, and other content for toggling -->
      +        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      +          <ul class="nav navbar-nav">
      +            <li><a href="/pages/about.html">About</a></li>
      +            <!--li><a href="/pages/contact.html">Contact</a></li-->
      +            <li><a href="/pages/calendar.html">Calendar</a></li>
      +            <li class="dropdown">
      +                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Links <b class="caret"></b></a>
      +                  <ul class="dropdown-menu">
      +                    <li class="nav-header">JSR 385</li>
      +                    <li><a href="https://docs.google.com/document/d/12KhosAFriGCczBs6gwtJJDfg_QlANT92_lhxUWO2gCY">Specification</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api">API</a></li>
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site/apidocs/index.html">JavaDoc (API)</a></li>
      +                    <li class="divider"></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-ri">Reference Implementation</a></li>
      +                    <li><a href="https://unitsofmeasurement.gitbooks.io/unit-ri-userguide/content/">RI User Guide</a></li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-tck">TCK (Technical Compatibility Kit)</a></li>
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Extensions</li>
      +                    <li><a href="https://github.com/unitsofmeasurement/unit-lib">Units Libraries</a></li>
      +                    <li><a href="http://uom.si">SI Units</a></li>
      +                 <!---    li class="nav-header">Sandbox</li>
      +                    <li><a href="sandbox.html">Sandbox</a></li -->
      +                    <li class="divider"></li>
      +                    <li class="nav-header">Additional Information</li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=385">JSR 385 Detail Page</a></li>  
      +                    <li><a href="http://unitsofmeasurement.github.io/unit-api/site">Maven Site</a></li>
      +                    <li><a href="https://bintray.com/unitsofmeasurement">Units of Measurement on Bintray</a></li>
      +                    <li><a href="http://jcp.org/en/jsr/detail?id=363">JSR 363 Detail Page</a></li>  
      +                    <li><a href="https://github.com/unitsofmeasurement/uom-legacy">Unit API 0.6</a></li></li>
      +                  </ul>
      +                </li>
      +          </ul>
      +        
      +        <!-- Right navigation -->
      +        <ul class="nav navbar-nav navbar-right">
      +          <li><a href="/archive.html"><i class="fa fa-list"></i> Archive</a></li>
      +          <li><a href="/feed.xml" title="Rss"><i class="fa fa-rss"></i> Feed</a></li>
      +        </ul>
      +        <!-- Right navigation end -->
      +
      +      </div><!-- /.navbar-collapse -->
      +      </div><!-- /.container-fluid -->
      +    </nav><!-- /.navbar -->
      +
      +    <!-- Begin page content -->
      +    <div class="container">
      +
      +	    <div class="row">
      +          <div class="col-md-9">
      +
      +            <article>
      +			  <h2>Tag #wearable</h2>
      +			  <hr>
      +              <h4 class="well well-sm tag-month">November 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/devoxxbe15.html">DevoXX BE 2015</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">March 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>15 - <a href="2015/fanta4.html">Fantastic Four vs The League of Extraordinary Developers</a></p>
      +                </li>
      +              </ul>
      +			  <h4 class="well well-sm tag-month">February 2015</h4>
      +              <ul>
      +                <li>
      +                  <p>28 - <a href="2015/smw15.html">Social Media Week 2015</a></p>
      +                </li>
      +              </ul>
      +		    </article>
      +
      +	      </div> <!-- /.col-md -->
      +      <div id="sidebar" class="col-md-3">
      +        <aside>
      +          <section>
      +            <div class="panel panel-primary">
      +              <div class="panel-heading">
      +                <i class="fa fa-users fa-lg panel-title"> Social</i>
      +              </div>
      +              <div class="list-group sidebar-list">
      +                  <a href="https://github.com/unitsofmeasurement" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-github-square fa-2x social-icon"></i> github
      +                  </a>
      +                  <a href="https://twitter.com/UnitAPI" target="_blank" class="list-group-item sidebar-list-item">
      +                    <i class="fa fa-twitter-square fa-2x social-icon"></i> twitter
      +                  </a>
      +              </div>
      +            </div>
      +          </section>
      +        </aside>
      +      </div>
      +        </div> <!-- /.row -->
      +
      +
      +      </div><!-- /.container -->
      +
      +    <footer>
      +      <div class="container">
      +        <hr>
      +        <div class="row">
      +          <div class="col-xs-10">
      +            <p class="text-muted credit">&copy; Units of Measurement project 2017 | Mixed with <a href="http://getbootstrap.com/">Bootstrap v3.1.1</a> | Baked with <a href="http://jbake.org">JBake v2.5.0</a> | <i title="Linux" class="fa fa-linux"></i></p>
      +          </div>
      +          <div class="col-xs-2 gotop">
      +            <a href="#"><i class="fa fa-arrow-circle-up"> top</i></a>
      +          </div>
      +        </div>
      +      </div>
      +    </footer>
      +
      +    <!-- Placed at the end of the document so the pages load faster -->
      +    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
      +    <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/gist-embed/1.6/gist-embed.min.js"></script>
      +    
      +    <script src="//cdnjs.cloudflare.com/ajax/libs/prettify/r298/prettify.min.js"></script>
      +    <script type="text/javascript">
      +      <!-- load prettify only when needed -->
      +      $(document).ready(function(){
      +        var prettify = false;
      +        var classToAdd = 'prettyprint snippet';
      +        $("pre > code").each(function() {
      +          $("pre > code").parent().addClass(classToAdd);
      +          prettify = true;
      +        });
      +        if(prettify) {
      +          prettyPrint();
      +        }
      +      });
      +    </script>
      +
      +
      +  </body>
      +</html>
      +
      diff --git a/pom.xml b/pom.xml
      index 4e462c1c..53e1e978 100644
      --- a/pom.xml
      +++ b/pom.xml
      @@ -1,1096 +1,1055 @@
       <project xmlns="http://maven.apache.org/POM/4.0.0"
      -	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      -	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      -	<modelVersion>4.0.0</modelVersion>
      -	<groupId>javax.measure</groupId>
      -	<artifactId>unit-api</artifactId>
      -	<version>2.0-SNAPSHOT</version>
      -	<name>Units of Measurement API</name>
      -	<packaging>bundle</packaging>
      -	<url>http://unitsofmeasurement.github.io/unit-api/</url>
      -	<description>Units of Measurement Standard - This JSR specifies Java packages for modeling and working with measurement values, quantities and their corresponding units.</description>
      -	<organization>
      -		<name>Jean-Marie Dautelle, Werner Keil, Otavio Santana</name>
      -		<url>http://unitsofmeasurement.github.io</url>
      -	</organization>
      -	<inceptionYear>2014</inceptionYear>
      -	<licenses>
      -		<license>
      -			<name>BSD</name>
      -			<url>LICENSE</url>
      -			<distribution>manual</distribution>
      -		</license>
      -	</licenses>
      -	<parent>
      -		<groupId>org.sonatype.oss</groupId>
      -		<artifactId>oss-parent</artifactId>
      -		<version>9</version>
      -	</parent>
      +         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      +         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      +    <modelVersion>4.0.0</modelVersion>
      +    <groupId>javax.measure</groupId>
      +    <artifactId>unit-api</artifactId>
      +    <name>Units of Measurement API</name>
      +    <packaging>bundle</packaging>
      +    <version>2.2.1-SNAPSHOT</version>
      +    <url>https://unitsofmeasurement.github.io/unit-api/</url>
      +    <description>Units of Measurement Standard - This JSR specifies Java
      +        packages for modeling and working with measurement values, quantities
      +        and their corresponding units.</description>
      +    <organization>
      +        <name>Jean-Marie Dautelle, Werner Keil, Otavio Santana</name>
      +        <url>http://unitsofmeasurement.github.io</url>
      +    </organization>
      +    <inceptionYear>2014</inceptionYear>
      +    <licenses>
      +        <license>
      +            <name>BSD 3-Clause</name>
      +            <url>LICENSE</url>
      +            <distribution>manual</distribution>
      +        </license>
      +    </licenses>
      +    <parent>
      +        <groupId>tech.uom</groupId>
      +        <artifactId>uom-parent</artifactId>
      +        <version>2.2.5-SNAPSHOT</version>
      +    </parent>
       
      -	<!-- Issue managements and mailing lists. -->
      -	<issueManagement>
      -		<system>GitHub</system>
      -		<url>https://github.com/unitsofmeasurement/unit-api/issues</url>
      -	</issueManagement>
      -	<ciManagement>
      -		<system>CircleCI</system>
      -		<url>https://circleci.com/gh/unitsofmeasurement/unit-api</url>
      -	</ciManagement>
      +    <!-- Issue managements and mailing lists. -->
      +    <issueManagement>
      +        <system>GitHub</system>
      +        <url>https://github.com/unitsofmeasurement/unit-api/issues</url>
      +    </issueManagement>
      +    <ciManagement>
      +        <system>CircleCI</system>
      +        <url>https://circleci.com/gh/unitsofmeasurement/unit-api</url>
      +    </ciManagement>
       
      -	<mailingLists>
      -		<mailingList>
      -			<name>Units-Dev</name>
      -			<subscribe>http://groups.google.com/group/units-dev/subscribe</subscribe>
      -			<post>units-dev@googlegroups.com</post>
      -		</mailingList>
      -		<mailingList>
      -			<name>Units-Users</name>
      -			<subscribe>http://groups.google.com/group/units-users/subscribe</subscribe>
      -			<post>units-users@googlegroups.com</post>
      -		</mailingList>
      -	</mailingLists>
      -	<scm>
      -		<connection>scm:git:git@github.com:unitsofmeasurement/unit-api.git</connection>
      -		<developerConnection>scm:git:git@github.com:unitsofmeasurement/unit-api.git</developerConnection>
      -		<url>https://github.com/unitsofmeasurement/unit-api</url>
      -	</scm>
      +    <mailingLists>
      +        <mailingList>
      +            <name>Units-Dev</name>
      +            <subscribe>https://groups.google.com/group/units-dev/subscribe</subscribe>
      +            <post>units-dev@googlegroups.com</post>
      +        </mailingList>
      +        <mailingList>
      +            <name>Units-Users</name>
      +            <subscribe>https://groups.google.com/group/units-users/subscribe</subscribe>
      +            <post>units-users@googlegroups.com</post>
      +        </mailingList>
      +    </mailingLists>
      +    <scm>
      +        <connection>scm:git:git@github.com:unitsofmeasurement/unit-api.git</connection>
      +        <developerConnection>
      +            scm:git:git@github.com:unitsofmeasurement/unit-api.git</developerConnection>
      +        <url>https://github.com/unitsofmeasurement/unit-api</url>
      +    </scm>
       
      -	<!-- Build Settings -->
      -	<properties>
      -		<basedir>.</basedir>
      -		<sourceEncoding>UTF-8</sourceEncoding> <!-- in Maven 3. -->
      -		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      -		<project.reporting.outputEncoding>${sourceEncoding}</project.reporting.outputEncoding>
      -		<jdkVersion>8</jdkVersion>
      -		<jdkOptionalVersion>9</jdkOptionalVersion>
      -		<project.build.javaVersion>${jdkVersion}</project.build.javaVersion>
      -		<maven.compile.targetLevel>${jdkVersion}</maven.compile.targetLevel>
      -		<maven.compile.sourceLevel>${jdkVersion}</maven.compile.sourceLevel>
      -		<additionalparam>-Xdoclint:none</additionalparam>
      -		<thisYear>2019</thisYear>
      +    <!-- Build Settings -->
      +    <properties>
      +        <basedir>.</basedir>
      +        <sourceEncoding>UTF-8</sourceEncoding> <!-- in Maven 3. -->
      +        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      +        <project.reporting.outputEncoding>${sourceEncoding}</project.reporting.outputEncoding>
      +        <jdkVersion>8</jdkVersion>
      +        <jdkOptionalVersion>9</jdkOptionalVersion>
      +        <project.build.javaVersion>${jdkVersion}</project.build.javaVersion>
      +        <maven.compile.targetLevel>${jdkVersion}</maven.compile.targetLevel>
      +        <maven.compile.sourceLevel>${jdkVersion}</maven.compile.sourceLevel>
      +        <additionalparam>-Xdoclint:none</additionalparam>
      +        <thisYear>2025</thisYear>
       
      -		<!-- Plugins -->
      -		<felix.version>3.4.0</felix.version>
      -		<github.maven.version>0.12</github.maven.version>
      -		<github.global.server>github</github.global.server>
      -		<maven.resources.version>3.1.0</maven.resources.version>
      -		<maven.compile.version>3.8.0</maven.compile.version>
      -		<maven.site.version>3.7.1</maven.site.version>
      -		<maven.jar.version>3.1.0</maven.jar.version>
      -		<maven.javadoc.version>3.0.1</maven.javadoc.version>
      -		<maven.surefire.version>2.22.1</maven.surefire.version>
      -		<maven.surefire-report.version>2.22.1</maven.surefire-report.version>
      -		<jacoco.plugin.version>0.8.3</jacoco.plugin.version>
      -		<junit.jupiter.version>5.3.2</junit.jupiter.version>
      -	</properties>
      +        <!-- Plugins -->
      +        <github.maven.version>0.12</github.maven.version>
      +        <github.global.server>github</github.global.server>
      +      	<sonatype.central.snapshotsUrl>https://central.sonatype.com/repository/maven-snapshots/</sonatype.central.snapshotsUrl>
       
      -	<!-- Developers and Contributors -->
      -	<developers>
      -		<developer>
      -			<id>dautelle</id>
      -			<name>Jean-Marie Dautelle</name>
      -			<email>jean-marie@dautelle.com</email>
      -			<organization>Airbus</organization>
      -			<organizationUrl>http://www.airbus.com</organizationUrl>
      -			<timezone>+1</timezone>
      -			<roles>
      -				<role>Architect</role>
      -				<role>Java Developer</role>
      -				<role>Spec Lead</role>
      -			</roles>
      -		</developer>
      -		<developer>
      -			<id>keilw</id>
      -			<name>Werner Keil</name>
      -			<email>werner.keil@gmx.net</email>
      -			<organization>Creative Arts &amp; Technologies</organization>
      -			<organizationUrl>http://www.catmedia.us</organizationUrl>
      -			<timezone>+1</timezone>
      -			<roles>
      -				<role>Architect</role>
      -				<role>Java Developer</role>
      -				<role>Spec Lead</role>
      -			</roles>
      -		</developer>
      -		<developer>
      -			<id>otaviojava</id>
      -			<name>Otávio Gonçalves de Santana</name>
      -			<email>otaviopolianasantana@gmail.com</email>
      -			<organization>Individual / SouJava</organization>
      -			<timezone>-5</timezone>
      -			<roles>
      -				<role>Expert</role>
      -				<role>Java Developer</role>
      -				<role>Spec Lead</role>
      -			</roles>
      -		</developer>
      -		<developer>
      -			<id>desruisseaux</id>
      -			<name>Martin Desruisseaux</name>
      -			<email>martin.desruisseaux@geomatys.com</email>
      -			<organization>Geomatys</organization>
      -			<organizationUrl>http://www.geomatys.com</organizationUrl>
      -			<timezone>+1</timezone>
      -			<roles>
      -				<role>Expert</role>
      -				<role>Java Developer</role>
      -				<role>Architect</role>
      -			</roles>
      -		</developer>
      -		<developer>
      -			<id>thodorisbais</id>
      -			<name>Thodoris Bais</name>
      -			<email>thodoris.bais@gmail.com</email>
      -			<organization>Individual / Utrecht JUG</organization>
      -			<timezone>+1</timezone>
      -			<roles>
      -				<role>Expert</role>
      -				<role>Java Developer</role>
      -			</roles>
      -		</developer>
      -		<developer>
      -			<id>Daniel-Dos</id>
      -			<name>Daniel Dias</name>
      -			<email>daniel.dias.analistati@gmail.com</email>
      -			<organization>Individual / SouJava</organization>
      -			<timezone>-5</timezone>
      -			<roles>
      -				<role>Expert</role>
      -				<role>Java Developer</role>
      -			</roles>
      -		</developer>
      -		<developer>
      -			<id>jhg023</id>
      -			<name>Jacob Glickman</name>
      -			<organization>Individual</organization>
      -			<timezone>-4</timezone>
      -			<roles>
      -				<role>Expert</role>
      -				<role>Java Developer</role>
      -			</roles>
      -		</developer>
      -		<developer>
      -			<id>magesh678</id>
      -			<name>Magesh Kasthuri</name>
      -			<organization>Individual</organization>
      -			<timezone>+4</timezone>
      -			<roles>
      -				<role>Expert</role>
      -				<role>Java Developer</role>
      -			</roles>
      -		</developer>
      -	</developers>
      -	<contributors>
      -		<contributor>
      -			<name>Filip Van Laenen</name>
      -			<email>fvl@computas.com</email>
      -			<organization>Computas</organization>
      -			<timezone>+1</timezone>
      -			<roles>
      -				<role>Contributor</role>
      -			</roles>
      -		</contributor>
      -		<contributor>
      -			<name>Mads Opheim</name>
      -			<organization>Computas</organization>
      -			<timezone>+1</timezone>
      -			<roles>
      -				<role>Contributor</role>
      -			</roles>
      -		</contributor>
      -		<contributor>
      -			<name>Nathan Scott</name>
      -			<email>nathans@redhat.com</email>
      -			<organization>Red Hat</organization>
      -			<timezone>+10</timezone>
      -			<roles>
      -				<role>Contributor</role>
      -			</roles>
      -		</contributor>
      -		<contributor>
      -			<!-- id>duckasteroid</id -->
      -			<name>Chris Senior</name>
      -			<email>christopher.senior@gmail.com</email>
      -			<organization>Snap-on Inc.</organization>
      -			<roles>
      -				<role>Java Developer</role>
      -			</roles>
      -		</contributor>
      -		<contributor>
      -			<!-- id>leomrlima</id -->
      -			<name>Leonardo de Moura Rocha Lima</name>
      -			<email>llima@v2com.mobi</email>
      -			<organization>V2COM</organization>
      -			<organizationUrl>http://www.v2com.mobi/</organizationUrl>
      -			<timezone>-5</timezone>
      -			<roles>
      -				<role>Architect</role>
      -				<role>Java Developer</role>
      -			</roles>
      -		</contributor>
      -		<contributor>
      -			<!-- id>eralmas7</id -->
      -			<name>Almas Shaikh</name>
      -			<email>eralmas7@yahoo.com</email>
      -			<organization>Individual / JP Morgan</organization>
      -			<timezone>+5.5</timezone>
      -			<roles>
      -				<role>Test Engineer</role>
      -			</roles>
      -		</contributor>
      -		<contributor>
      -			<!-- id>rajmahendra</id -->
      -			<name>Rajmahendra Hegde</name>
      -			<email>rajmahendra@gmail.com</email>
      -			<organization>JUG Chennai</organization>
      -			<timezone>+5.5</timezone>
      -			<roles>
      -				<role>Java Developer</role>
      -			</roles>
      -		</contributor>
      -		<contributor>
      -			<!-- id>karen_legrand</id -->
      -			<name>Karen Legrand</name>
      -			<email>karen.legrand@iem.com</email>
      -			<organization>Innovation Emergency Management (IEM)</organization>
      -			<organizationUrl>http://www.iem.com</organizationUrl>
      -			<timezone>-5</timezone>
      -			<roles>
      -				<role>Java Developer</role>
      -			</roles>
      -		</contributor>
      -		<contributor>
      -			<!-- id>mohamed-taman</id -->
      -			<name>Mohamed Mahmoud Taman</name>
      -			<email>mohamed.taman@gmail.com</email>
      -			<organization>Individual / Morocco JUG</organization>
      -			<timezone>+2</timezone>
      -			<roles>
      -				<role>Java Developer</role>
      -			</roles>
      -		</contributor>
      -		<contributor>
      -			<name>Daniel Leuck</name>
      -			<email>dan@ikayzo.com</email>
      -			<organization>Ikayzo</organization>
      -			<timezone>-9</timezone>
      -			<roles>
      -				<role>Supporter</role>
      -			</roles>
      -		</contributor>
      -		<contributor>
      -			<name>Eric Russell</name>
      -			<email>eric-r@northwestern.edu</email>
      -			<timezone>-5</timezone>
      -			<roles>
      -				<role>Supporter</role>
      -			</roles>
      -		</contributor>
      -		<contributor>
      -			<name>John Paul Morrison</name>
      -			<organization>J.P. Morrison Enterprises, Ltd.</organization>
      -			<timezone>-5</timezone>
      -			<roles>
      -				<role>Supporter</role>
      -			</roles>
      -		</contributor>
      -		<contributor>
      -			<name>Michael Gruebsch</name>
      -			<email>michael@mkm-rabis.de</email>
      -			<roles>
      -				<role>Supporter</role>
      -			</roles>
      -			<timezone>+1</timezone>
      -		</contributor>
      -	</contributors>
      +        <!--Exclude the files here -->
      +        <sonar.exclusions>
      +            src/main/java/javax/measure/BinaryPrefix.java,src/main/java/javax/measure/MetricPrefix.java</sonar.exclusions>
      +    </properties>
       
      -	<build>
      -		<pluginManagement>
      -			<plugins>
      -				<plugin>
      -					<groupId>org.apache.maven.plugins</groupId>
      -					<artifactId>maven-compiler-plugin</artifactId>
      -					<version>${maven.compile.version}</version>
      -				</plugin>
      -				<plugin>
      -					<groupId>org.apache.maven.plugins</groupId>
      -					<artifactId>maven-antrun-plugin</artifactId>
      -					<version>1.8</version>
      -				</plugin>
      +    <!-- Developers and Contributors -->
      +    <developers>
      +        <developer>
      +            <id>dautelle</id>
      +            <name>Jean-Marie Dautelle</name>
      +            <email>jean-marie@dautelle.com</email>
      +            <organization>Airbus</organization>
      +            <organizationUrl>http://www.airbus.com</organizationUrl>
      +            <timezone>+1</timezone>
      +            <roles>
      +                <role>Architect</role>
      +                <role>Java Developer</role>
      +                <role>Spec Lead</role>
      +            </roles>
      +        </developer>
      +        <developer>
      +            <id>keilw</id>
      +            <name>Werner Keil</name>
      +            <email>werner.keil@gmx.net</email>
      +            <organization>CATMedia</organization>
      +            <organizationUrl>http://www.catmedia.us</organizationUrl>
      +            <timezone>+1</timezone>
      +            <roles>
      +                <role>Architect</role>
      +                <role>Java Developer</role>
      +                <role>Spec Lead</role>
      +            </roles>
      +        </developer>
      +        <developer>
      +            <id>otaviojava</id>
      +            <name>Otávio Gonçalves de Santana</name>
      +            <email>otaviopolianasantana@gmail.com</email>
      +            <organization>Individual / SouJava</organization>
      +            <timezone>0</timezone>
      +            <roles>
      +                <role>Expert</role>
      +                <role>Java Developer</role>
      +                <role>Spec Lead</role>
      +            </roles>
      +        </developer>
      +        <developer>
      +            <id>desruisseaux</id>
      +            <name>Martin Desruisseaux</name>
      +            <email>martin.desruisseaux@geomatys.com</email>
      +            <organization>Geomatys</organization>
      +            <organizationUrl>http://www.geomatys.com</organizationUrl>
      +            <timezone>+1</timezone>
      +            <roles>
      +                <role>Expert</role>
      +                <role>Java Developer</role>
      +                <role>Architect</role>
      +            </roles>
      +        </developer>
      +        <developer>
      +            <id>thodorisbais</id>
      +            <name>Thodoris Bais</name>
      +            <email>thodoris.bais@gmail.com</email>
      +            <organization>Individual / Utrecht JUG</organization>
      +            <timezone>+1</timezone>
      +            <roles>
      +                <role>Expert</role>
      +                <role>Java Developer</role>
      +            </roles>
      +        </developer>
      +        <developer>
      +            <id>Daniel-Dos</id>
      +            <name>Daniel Dias</name>
      +            <email>daniel.dias.analistati@gmail.com</email>
      +            <organization>Individual / SouJava</organization>
      +            <timezone>-5</timezone>
      +            <roles>
      +                <role>Expert</role>
      +                <role>Java Developer</role>
      +            </roles>
      +        </developer>
      +        <developer>
      +            <id>jhg023</id>
      +            <name>Jacob Glickman</name>
      +            <organization>Individual</organization>
      +            <timezone>-4</timezone>
      +            <roles>
      +                <role>Expert</role>
      +                <role>Java Developer</role>
      +            </roles>
      +        </developer>
      +        <developer>
      +            <id>magesh678</id>
      +            <name>Magesh Kasthuri</name>
      +            <organization>Individual</organization>
      +            <timezone>+4</timezone>
      +            <roles>
      +                <role>Expert</role>
      +                <role>Java Developer</role>
      +            </roles>
      +        </developer>
      +        <developer>
      +            <id>mohalmo</id>
      +            <name>Mohammed Al-Moayed</name>
      +            <organization>Individual</organization>
      +            <timezone>+2</timezone>
      +            <roles>
      +                <role>Expert</role>
      +                <role>Java Developer</role>
      +            </roles>
      +        </developer>
      +    </developers>
      +    <contributors>
      +        <contributor>
      +            <name>Andi Huber</name>
      +            <organization>Individual</organization>
      +            <timezone>+1</timezone>
      +            <roles>
      +                <role>Contributor</role>
      +            </roles>
      +        </contributor>
      +        <contributor>
      +            <name>Filip Van Laenen</name>
      +            <email>fvl@computas.com</email>
      +            <organization>Computas</organization>
      +            <timezone>+1</timezone>
      +            <roles>
      +                <role>Contributor</role>
      +            </roles>
      +        </contributor>
      +        <contributor>
      +            <name>Mads Opheim</name>
      +            <organization>Computas</organization>
      +            <timezone>+1</timezone>
      +            <roles>
      +                <role>Contributor</role>
      +            </roles>
      +        </contributor>
      +        <contributor>
      +            <name>Matthijs Thoolen</name>
      +            <organization>Utrecht Java User Group</organization>
      +            <timezone>+1</timezone>
      +            <roles>
      +                <role>Contributor</role>
      +            </roles>
      +        </contributor>
      +        <contributor>
      +            <name>Anakar Parida</name>
      +            <organization>Individual</organization>
      +            <timezone>+5.5</timezone>
      +            <roles>
      +                <role>Contributor</role>
      +            </roles>
      +        </contributor>
      +        <contributor>
      +            <name>Rustam Mehmandarov</name>
      +            <organization>Individual</organization>
      +            <timezone>+3</timezone>
      +            <roles>
      +                <role>Contributor</role>
      +            </roles>
      +        </contributor>
      +        <contributor>
      +            <name>Nathan Scott</name>
      +            <email>nathans@redhat.com</email>
      +            <organization>Red Hat</organization>
      +            <timezone>+10</timezone>
      +            <roles>
      +                <role>Contributor Emeritus</role>
      +            </roles>
      +        </contributor>
      +        <contributor>
      +            <!-- id>duckasteroid</id -->
      +            <name>Chris Senior</name>
      +            <email>christopher.senior@gmail.com</email>
      +            <organization>Snap-on Inc.</organization>
      +            <roles>
      +                <role>Expert Emeritus</role>
      +            </roles>
      +        </contributor>
      +        <contributor>
      +            <!-- id>leomrlima</id -->
      +            <name>Leonardo de Moura Rocha Lima</name>
      +            <email>llima@v2com.mobi</email>
      +            <organization>V2COM</organization>
      +            <organizationUrl>http://www.v2com.mobi/</organizationUrl>
      +            <timezone>-5</timezone>
      +            <roles>
      +                <role>Expert Emeritus</role>
      +                <role>Java Developer</role>
      +            </roles>
      +        </contributor>
      +        <contributor>
      +            <!-- id>eralmas7</id -->
      +            <name>Almas Shaikh</name>
      +            <email>eralmas7@yahoo.com</email>
      +            <organization>Individual / JP Morgan</organization>
      +            <timezone>+5.5</timezone>
      +            <roles>
      +                <role>Test Engineer</role>
      +            </roles>
      +        </contributor>
      +        <contributor>
      +            <!-- id>rajmahendra</id -->
      +            <name>Rajmahendra Hegde</name>
      +            <email>rajmahendra@gmail.com</email>
      +            <organization>JUG Chennai</organization>
      +            <timezone>+5.5</timezone>
      +            <roles>
      +                <role>Expert Emeritus</role>
      +            </roles>
      +        </contributor>
      +        <contributor>
      +            <!-- id>karen_legrand</id -->
      +            <name>Karen Legrand</name>
      +            <email>karen.legrand@iem.com</email>
      +            <organization>Innovation Emergency Management (IEM)</organization>
      +            <organizationUrl>http://www.iem.com</organizationUrl>
      +            <timezone>-5</timezone>
      +            <roles>
      +                <role>Expert Emeritus</role>
      +            </roles>
      +        </contributor>
      +        <contributor>
      +            <!-- id>mohamed-taman</id -->
      +            <name>Mohamed Mahmoud Taman</name>
      +            <email>mohamed.taman@gmail.com</email>
      +            <organization>Individual / Morocco JUG</organization>
      +            <timezone>+2</timezone>
      +            <roles>
      +                <role>Expert Emeritus</role>
      +            </roles>
      +        </contributor>
      +        <contributor>
      +            <name>Daniel Leuck</name>
      +            <email>dan@ikayzo.com</email>
      +            <organization>Ikayzo</organization>
      +            <timezone>-9</timezone>
      +            <roles>
      +                <role>Supporter</role>
      +            </roles>
      +        </contributor>
      +        <contributor>
      +            <name>Eric Russell</name>
      +            <email>eric-r@northwestern.edu</email>
      +            <timezone>-5</timezone>
      +            <roles>
      +                <role>Supporter</role>
      +            </roles>
      +        </contributor>
      +        <contributor>
      +            <name>John Paul Morrison</name>
      +            <organization>J.P. Morrison Enterprises, Ltd.</organization>
      +            <timezone>-5</timezone>
      +            <roles>
      +                <role>Supporter</role>
      +            </roles>
      +        </contributor>
      +        <contributor>
      +            <name>Michael Gruebsch</name>
      +            <email>michael@mkm-rabis.de</email>
      +            <roles>
      +                <role>Supporter</role>
      +            </roles>
      +            <timezone>+1</timezone>
      +        </contributor>
      +    </contributors>
       
      -				<!-- License -->
      -				<plugin>
      -					<groupId>com.mycila</groupId>
      -					<artifactId>license-maven-plugin</artifactId>
      -					<version>3.0</version>
      -					<executions>
      -						<execution>
      -							<goals>
      -								<goal>check</goal>
      -							</goals>
      -						</execution>
      -					</executions>
      -				</plugin>
      +    <build>
      +        <pluginManagement>
      +            <plugins>
      +                <plugin>
      +                    <groupId>org.apache.maven.plugins</groupId>
      +                    <artifactId>maven-compiler-plugin</artifactId>
      +                    <version>${maven.compiler.version}</version>
      +                </plugin>
      +                <plugin>
      +                    <groupId>org.apache.maven.plugins</groupId>
      +                    <artifactId>maven-antrun-plugin</artifactId>
      +                    <version>3.1.0</version>
      +                </plugin>
       
      -				<!-- Format -->
      -				<plugin>
      -					<groupId>net.revelc.code</groupId>
      -					<artifactId>formatter-maven-plugin</artifactId>
      -					<version>0.5.2</version>
      -				</plugin>
      +                <!-- Format -->
      +                <plugin>
      +                    <groupId>net.revelc.code</groupId>
      +                    <artifactId>formatter-maven-plugin</artifactId>
      +                    <version>0.5.2</version>
      +                </plugin>
      +                
      +                 <plugin>
      +        			<groupId>org.sonarsource.scanner.maven</groupId>
      +        			<artifactId>sonar-maven-plugin</artifactId>
      +        			<version>5.5.0.6356</version>
      +      			</plugin>
      +      			<!-- Source: https://mvnrepository.com/artifact/org.sonarsource.scanner.maven/sonar-maven-plugin -->
      +            </plugins>            
      +        </pluginManagement>
       
      -				<!--This plugin's configuration is used to store Eclipse m2e settings 
      -					only. It has no influence on the Maven build itself. -->
      -				<plugin>
      -					<groupId>org.eclipse.m2e</groupId>
      -					<artifactId>lifecycle-mapping</artifactId>
      -					<version>1.0.0</version>
      -					<configuration>
      -						<lifecycleMappingMetadata>
      -							<pluginExecutions>
      -								<pluginExecution>
      -									<pluginExecutionFilter>
      -										<groupId>org.jacoco</groupId>
      -										<artifactId>
      -											jacoco-maven-plugin
      -										</artifactId>
      -										<versionRange>
      -											[0.7.1.201405082137,)
      -										</versionRange>
      -										<goals>
      -											<goal>prepare-agent</goal>
      -										</goals>
      -									</pluginExecutionFilter>
      -									<action>
      -										<ignore></ignore>
      -									</action>
      -								</pluginExecution>
      -								<pluginExecution>
      -									<pluginExecutionFilter>
      -										<groupId>
      -											net.revelc.code
      -										</groupId>
      -										<artifactId>
      -											formatter-maven-plugin
      -										</artifactId>
      -										<versionRange>
      -											[0.5.2,)
      -										</versionRange>
      -										<goals>
      -											<goal>format</goal>
      -										</goals>
      -									</pluginExecutionFilter>
      -									<action>
      -										<ignore></ignore>
      -									</action>
      -								</pluginExecution>
      -							</pluginExecutions>
      -						</lifecycleMappingMetadata>
      -					</configuration>
      -				</plugin>
      -			</plugins>
      -		</pluginManagement>
      +        <plugins>
      +            <!-- Compilation -->
      +            <plugin>
      +                <groupId>org.apache.maven.plugins</groupId>
      +                <artifactId>maven-compiler-plugin</artifactId>
      +                <configuration>
      +                    <release>${maven.compile.targetLevel}</release>
      +                </configuration>
      +            </plugin>
      +            <plugin>
      +                <groupId>org.apache.maven.plugins</groupId>
      +                <artifactId>maven-antrun-plugin</artifactId>
      +                <executions>
      +                    <execution>
      +                        <phase>prepare-package</phase>
      +                        <goals>
      +                            <goal>run</goal>
      +                        </goals>
      +                        <configuration>
      +                            <target>
      +                                <mkdir
      +                                    dir="${project.build.directory}/classes/META-INF/versions/${jdkOptionalVersion}" />
      +                                <javac
      +                                    destdir="${project.build.directory}/classes/META-INF/versions/${jdkOptionalVersion}"
      +                                    srcdir="${project.basedir}/src/main/jdk${jdkOptionalVersion}"
      +                                    includeAntRuntime="false">
      +                                    <compilerarg
      +                                        line="--release=${jdkOptionalVersion} --patch-module java.measure=${project.build.directory}/classes" />
      +                                </javac>
      +                            </target>
      +                        </configuration>
      +                    </execution>
      +                </executions>
      +            </plugin>
       
      -		<plugins>
      -			<!-- Compilation -->
      -			<plugin>
      -				<groupId>org.apache.maven.plugins</groupId>
      -				<artifactId>maven-compiler-plugin</artifactId>
      -				<configuration>
      -					<release>${maven.compile.targetLevel}</release>
      -				</configuration>
      -			</plugin>
      -			<plugin>
      -				<groupId>org.apache.maven.plugins</groupId>
      -				<artifactId>maven-antrun-plugin</artifactId>
      -				<executions>
      -					<execution>
      -						<phase>prepare-package</phase>
      -						<goals>
      -							<goal>run</goal>
      -						</goals>
      -						<configuration>
      -							<target>
      -								<mkdir
      -									dir="${project.build.directory}/classes/META-INF/versions/${jdkOptionalVersion}" />
      -								<javac
      -									destdir="${project.build.directory}/classes/META-INF/versions/${jdkOptionalVersion}"
      -									srcdir="${project.basedir}/src/main/jdk${jdkOptionalVersion}"
      -									includeAntRuntime="false">
      +            <!-- Need to specificy at least 2.22.0 for JUnit 5 -->
      +            <plugin>
      +                <groupId>org.apache.maven.plugins</groupId>
      +                <artifactId>maven-surefire-plugin</artifactId>
      +                <configuration>
      +                    <forkCount>1.5C</forkCount>
      +                </configuration>
      +            </plugin>
       
      -									<!-- TODO: use release attribute instead after next plugin release. 
      -										https://issues.apache.org/jira/browse/MANTRUN-214 -->
      -									<compilerarg
      -										line="--release=${jdkOptionalVersion} --patch-module java.measure=${project.build.directory}/classes" />
      -								</javac>
      -							</target>
      -						</configuration>
      -					</execution>
      -				</executions>
      -			</plugin>
      +            <!-- Coverage -->
      +            <plugin>
      +                <groupId>org.jacoco</groupId>
      +                <artifactId>jacoco-maven-plugin</artifactId>
      +                <configuration>
      +                    <excludes>
      +                        <exclude>META-INF/versions/**</exclude>
      +                    </excludes>
      +                </configuration>
      +                <executions>
      +                    <execution>
      +                        <id>pre-unit-test</id>
      +                        <goals>
      +                            <goal>prepare-agent</goal>
      +                        </goals>
      +                    </execution>
      +                    <execution>
      +                        <id>post-unit-test</id>
      +                        <phase>test</phase>
      +                        <goals>
      +                            <goal>report</goal>
      +                            <goal>check</goal>
      +                        </goals>
      +                        <configuration>
      +                            <rules>
      +                                <rule>
      +                                    <element>BUNDLE</element>
      +                                    <limits>
      +                                        <limit
      +                                            implementation="org.jacoco.report.check.Limit">
      +                                            <counter>INSTRUCTION</counter>
      +                                            <value>COVEREDRATIO</value>
      +                                            <minimum>0.5</minimum>
      +                                        </limit>
      +                                        <limit>
      +                                            <counter>COMPLEXITY</counter>
      +                                            <value>COVEREDRATIO</value>
      +                                            <minimum>0.5</minimum>
      +                                        </limit>
      +                                    </limits>
      +                                </rule>
      +                            </rules>
      +                        </configuration>
      +                    </execution>
      +                </executions>
      +            </plugin>
       
      -			<!-- Need to specificy at least 2.22.0 for JUnit 5 -->
      -			<plugin>
      -				<groupId>org.apache.maven.plugins</groupId>
      -				<artifactId>maven-surefire-plugin</artifactId>
      -				<version>${maven.surefire.version}</version>
      -			</plugin>
      +            <plugin>
      +                <groupId>org.eluder.coveralls</groupId>
      +                <artifactId>coveralls-maven-plugin</artifactId>
      +                <version>4.3.0</version>
      +                <dependencies>
      +                    <dependency>
      +                        <groupId>javax.xml.bind</groupId>
      +                        <artifactId>jaxb-api</artifactId>
      +                        <version>2.2.3</version>
      +                    </dependency>
      +                </dependencies>
      +                <configuration>
      +                    <repoToken>${env.COVERALLS_REPO_TOKEN}</repoToken>
      +                </configuration>
      +            </plugin>
       
      -			<!-- Coverage -->
      -			<plugin>
      -				<groupId>org.jacoco</groupId>
      -				<artifactId>jacoco-maven-plugin</artifactId>
      -				<version>${jacoco.plugin.version}</version>
      -				<configuration>
      -					<excludes>
      -						<exclude>META-INF/versions/**</exclude>
      -					</excludes>
      -				</configuration>
      -				<executions>
      -					<execution>
      -						<id>pre-unit-test</id>
      -						<goals>
      -							<goal>prepare-agent</goal>
      -						</goals>
      -					</execution>
      -					<execution>
      -						<id>post-unit-test</id>
      -						<phase>test</phase>
      -						<goals>
      -							<goal>report</goal>
      -							<goal>check</goal>
      -						</goals>
      -						<configuration>
      -							<rules>
      -								<rule>
      -									<element>BUNDLE</element>
      -									<limits>
      -										<limit implementation="org.jacoco.report.check.Limit">
      -											<counter>INSTRUCTION</counter>
      -											<value>COVEREDRATIO</value>
      -											<minimum>0.5</minimum>
      -										</limit>
      -										<limit>
      -											<counter>COMPLEXITY</counter>
      -											<value>COVEREDRATIO</value>
      -											<minimum>0.5</minimum>
      -										</limit>
      -									</limits>
      -								</rule>
      -							</rules>
      -						</configuration>
      -					</execution>
      -				</executions>
      -			</plugin>
      +            <!-- Attach Sources -->
      +            <plugin>
      +                <groupId>org.apache.maven.plugins</groupId>
      +                <artifactId>maven-source-plugin</artifactId>
      +                <executions>
      +                    <execution>
      +                        <id>attach-sources</id>
      +                        <phase>package</phase>
      +                        <goals>
      +                            <goal>jar-no-fork</goal>
      +                        </goals>
      +                    </execution>
      +                </executions>
      +            </plugin>
       
      -			<plugin>
      -				<groupId>org.eluder.coveralls</groupId>
      -				<artifactId>coveralls-maven-plugin</artifactId>
      -				<version>4.3.0</version>
      -				<dependencies>
      -					<dependency>
      -						<groupId>javax.xml.bind</groupId>
      -						<artifactId>jaxb-api</artifactId>
      -						<version>2.2.3</version>
      -					</dependency>
      -				</dependencies>
      -				<configuration>
      -					<repoToken>${env.COVERALLS_REPO_TOKEN}</repoToken>
      -				</configuration>
      -			</plugin>
      +            <plugin>
      +                <groupId>org.apache.maven.plugins</groupId>
      +                <artifactId>maven-javadoc-plugin</artifactId>
      +                <executions>
      +                    <execution>
      +                        <id>attach-javadocs</id>
      +                        <goals>
      +                            <goal>jar</goal>
      +                        </goals>
      +                    </execution>
      +                </executions>
      +                <configuration>
      +                    <!-- Workaround for https://github.com/unitsofmeasurement/unit-api/issues/220 -->
      +                    <source>8</source>
      +                </configuration>
      +            </plugin>
       
      -			<!-- Attach Sources -->
      -			<plugin>
      -				<groupId>org.apache.maven.plugins</groupId>
      -				<artifactId>maven-source-plugin</artifactId>
      -				<version>3.0.1</version>
      -				<executions>
      -					<execution>
      -						<id>attach-sources</id>
      -						<phase>package</phase>
      -						<goals>
      -							<goal>jar-no-fork</goal>
      -						</goals>
      -					</execution>
      -				</executions>
      -			</plugin>
      +            <!-- JAR packaging -->
      +            <plugin>
      +                <groupId>org.apache.maven.plugins</groupId>
      +                <artifactId>maven-jar-plugin</artifactId>
      +                <configuration>
      +                    <archive>
      +                        <manifest>
      +                            <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
      +                        </manifest>
      +                        <manifestEntries>
      +                            <Specification-Title>${project.name}</Specification-Title>
      +                            <Specification-Version>${project.version}</Specification-Version>
      +                            <Specification-Vendor>${project.organization.name}</Specification-Vendor>
      +                            <Automatic-Module-Name>java.measure</Automatic-Module-Name>
      +                            <Multi-Release>true</Multi-Release>
      +                        </manifestEntries>
      +                        <addMavenDescriptor>false</addMavenDescriptor>
      +                    </archive>
      +                </configuration>
       
      -			<plugin>
      -				<groupId>org.apache.maven.plugins</groupId>
      -				<artifactId>maven-javadoc-plugin</artifactId>
      -				<version>${maven.javadoc.version}</version>
      -				<executions>
      -					<execution>
      -						<id>attach-javadocs</id>
      -						<goals>
      -							<goal>jar</goal>
      -						</goals>
      -					</execution>
      -				</executions>
      -				<configuration>
      -					<detectLinks>true</detectLinks>
      -					<keywords>true</keywords>
      -					<linksource>true</linksource>
      -					<failOnError>false</failOnError>
      -					<source>${maven.compile.sourceLevel}</source>
      -					<verbose>true</verbose>
      -					<tags>
      -						<tag>
      -							<name>apiNote</name>
      -							<placement>a</placement>
      -							<head>API Note:</head>
      -						</tag>
      -						<tag>
      -							<name>implSpec</name>
      -							<placement>a</placement>
      -							<head>Implementation Requirements:</head>
      -						</tag>
      -					</tags>
      -				</configuration>
      -			</plugin>
      +                <executions>
      +                    <execution>
      +                        <goals>
      +                            <goal>test-jar</goal>
      +                        </goals>
      +                    </execution>
      +                </executions>
      +            </plugin>
       
      -			<!-- JAR packaging -->
      -			<plugin>
      -				<groupId>org.apache.maven.plugins</groupId>
      -				<artifactId>maven-jar-plugin</artifactId>
      -				<version>${maven.jar.version}</version>
      -				<configuration>
      -					<archive>
      -						<manifest>
      -							<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
      -						</manifest>
      -						<manifestEntries>
      -							<Specification-Title>${project.name}</Specification-Title>
      -							<Specification-Version>${project.version}</Specification-Version>
      -							<Specification-Vendor>${project.organization.name}</Specification-Vendor>
      -							<Implementation-Vendor>Unit-API contributors</Implementation-Vendor>
      -							<Implementation-URL>http://unitsofmeasurement.github.io</Implementation-URL>
      -							<Automatic-Module-Name>java.measure</Automatic-Module-Name>
      -							<Multi-Release>true</Multi-Release>
      -						</manifestEntries>
      -						<addMavenDescriptor>false</addMavenDescriptor>
      -					</archive>
      -				</configuration>
      +            <!-- Packaging (OSGi bundle) -->
      +            <plugin>
      +                <groupId>org.apache.felix</groupId>
      +                <artifactId>maven-bundle-plugin</artifactId>
      +                <extensions>true</extensions>
      +                <configuration>
      +                    <instructions>
      +                        <Import-Package>
      +                            !jakarta.annotation,!jakarta.inject,!javax.annotation,!javax.inject,*</Import-Package>
      +                    </instructions>
      +                </configuration>
      +            </plugin>
       
      -				<executions>
      -					<execution>
      -						<goals>
      -							<goal>test-jar</goal>
      -						</goals>
      -					</execution>
      -				</executions>
      -			</plugin>
      +            <!-- Resources -->
      +            <plugin>
      +                <groupId>org.apache.maven.plugins</groupId>
      +                <artifactId>maven-resources-plugin</artifactId>
      +                <configuration>
      +                    <encoding>${project.build.sourceEncoding}</encoding>
      +                </configuration>
      +            </plugin>
       
      -			<!-- Packaging (OSGi bundle) -->
      -			<plugin>
      -				<groupId>org.apache.felix</groupId>
      -				<artifactId>maven-bundle-plugin</artifactId>
      -				<version>${felix.version}</version>
      -				<extensions>true</extensions>
      -			</plugin>
      +            <!-- Maven License Plugin -->
      +            <plugin>
      +                <groupId>com.mycila</groupId>
      +                <artifactId>license-maven-plugin</artifactId>
      +                <configuration>
      +                    <licenseSets>
      +                        <licenseSet>
      +                            <header>src/main/config/header.txt</header>
      +                            <properties>
      +                                <owner>${project.organization.name}</owner>
      +                                <currentYear>${thisYear}</currentYear>
      +                            </properties>
      +                            <excludes>
      +                                <exclude>.editorconfig</exclude>
      +                                <exclude>.gitattributes</exclude>
      +                                <exclude>.github/**</exclude>
      +                                <exclude>.circleci/**</exclude>
      +                                <exclude>**/LICENSE</exclude>
      +                                <exclude>**/README</exclude>
      +                                <exclude>**/pom.xml</exclude>
      +                                <exclude>**/settings.xml</exclude>
      +                                <exclude>docs/**</exclude>
      +                                <exclude>src/test/resources/**</exclude>
      +                                <exclude>src/main/resources/**</exclude>
      +                                <exclude>src/main/config/**</exclude>
      +                                <exclude>src/main/emf/**</exclude>
      +                                <exclude>src/site/**</exclude>
      +                                <exclude>src/etc/**</exclude>
      +                                <exclude>*.css</exclude>
      +                                <exclude>*.jpg</exclude>
      +                                <exclude>*.png</exclude>
      +                                <exclude>*.yml</exclude>
      +                            </excludes>
      +                            <headerDefinitions>
      +                                <headerDefinition>src/main/config/headers.xml</headerDefinition>
      +                            </headerDefinitions>
      +                        </licenseSet>
      +                    </licenseSets>
      +                    <mapping>
      +                        <java>JAVA_STYLE</java>
      +                    </mapping>
      +                </configuration>
      +            </plugin>
       
      -			<!-- Resources -->
      -			<plugin>
      -				<groupId>org.apache.maven.plugins</groupId>
      -				<artifactId>maven-resources-plugin</artifactId>
      -				<version>${maven.resources.version}</version>
      -				<configuration>
      -					<encoding>${project.build.sourceEncoding}</encoding>
      -				</configuration>
      -			</plugin>
      +            <!-- Maven Code Formatter -->
      +            <plugin>
      +                <groupId>net.revelc.code</groupId>
      +                <artifactId>formatter-maven-plugin</artifactId>
      +                <configuration>
      +                    <configFile>
      +                        ${project.basedir}/src/main/config/eclipse-formatter-config.xml
      +                    </configFile>
      +                </configuration>
      +                <executions>
      +                    <execution>
      +                        <goals>
      +                            <goal>format</goal>
      +                        </goals>
      +                    </execution>
      +                </executions>
      +            </plugin>
       
      -			<!-- ======================================================= -->
      -			<!-- Maven License Plugin -->
      -			<!-- ======================================================= -->
      -			<plugin>
      -				<groupId>com.mycila</groupId>
      -				<artifactId>license-maven-plugin</artifactId>
      -				<configuration>
      -					<header>src/main/config/header.txt</header>
      -					<properties>
      -						<owner>${project.organization.name}</owner>
      -						<currentYear>${thisYear}</currentYear>
      -					</properties>
      -					<excludes>
      -						<exclude>.editorconfig</exclude>
      -						<exclude>.gitattributes</exclude>
      -						<exclude>.circleci/**</exclude>
      -						<exclude>**/LICENSE</exclude>
      -						<exclude>**/README</exclude>
      -						<exclude>**/pom.xml</exclude>
      -						<exclude>**/settings.xml</exclude>
      -						<exclude>src/test/resources/**</exclude>
      -						<exclude>src/main/resources/**</exclude>
      -						<exclude>src/main/config/**</exclude>
      -						<exclude>src/main/emf/**</exclude>
      -						<exclude>src/site/**</exclude>
      -						<exclude>src/etc/**</exclude>
      -						<exclude>*.css</exclude>
      -						<exclude>*.jpg</exclude>
      -						<exclude>*.png</exclude>
      -						<exclude>*.yml</exclude>
      -					</excludes>
      -					<headerDefinitions>
      -						<headerDefinition>src/main/config/headers.xml</headerDefinition>
      -					</headerDefinitions>
      -					<mapping>
      -						<java>JAVA_STYLE</java>
      -					</mapping>
      -				</configuration>
      -			</plugin>
      +            <!-- Maven web site -->
      +            <plugin>
      +                <groupId>org.apache.maven.plugins</groupId>
      +                <artifactId>maven-site-plugin</artifactId>
      +            </plugin>
      +            
      +        	<plugin>
      +	          <groupId>org.sonatype.central</groupId>
      +	          <artifactId>central-publishing-maven-plugin</artifactId>
      +	          <extensions>true</extensions>
      +	          <configuration>
      +	             <publishingServerId>central</publishingServerId>
      +	             <centralSnapshotsUrl>${sonatype.central.snapshotsUrl}</centralSnapshotsUrl>
      +	             <autoPublish>true</autoPublish>
      +	             <waitUntil>published</waitUntil>
      +	          </configuration>
      +	        </plugin>
      +        </plugins>
      +    </build>
       
      -			<!-- ======================================================= -->
      -			<!-- Maven Code Formatter -->
      -			<!-- ======================================================= -->
      -			<plugin>
      -				<groupId>net.revelc.code</groupId>
      -				<artifactId>formatter-maven-plugin</artifactId>
      -				<configuration>
      -					<configFile>${project.basedir}/src/main/config/eclipse-formatter-config.xml</configFile>
      -				</configuration>
      -				<executions>
      -					<execution>
      -						<goals>
      -							<goal>format</goal>
      -						</goals>
      -					</execution>
      -				</executions>
      -			</plugin>
      +    <reporting>
      +        <plugins>
      +            <plugin>
      +                <groupId>org.apache.maven.plugins</groupId>
      +                <artifactId>maven-project-info-reports-plugin</artifactId>
      +                <version>3.1.0</version>
      +                <reportSets>
      +                    <reportSet>
      +                        <reports>
      +                            <report>index</report>
      +                            <report>summary</report>
      +                            <report>licenses</report>
      +                            <report>scm</report>
      +                            <report>ci-management</report>
      +                            <report>team</report>
      +                            <report>mailing-lists</report>
      +                            <report>issue-management</report>
      +                        </reports>
      +                    </reportSet>
      +                </reportSets>
      +            </plugin>
       
      -			<!-- Maven web site -->
      -			<plugin>
      -				<groupId>org.apache.maven.plugins</groupId>
      -				<artifactId>maven-site-plugin</artifactId>
      -				<version>${maven.site.version}</version>
      -			</plugin>
      -		</plugins>
      -	</build>
      +            <!-- Javadoc generation -->
      +            <plugin>
      +                <groupId>org.apache.maven.plugins</groupId>
      +                <artifactId>maven-javadoc-plugin</artifactId>
      +                <version>${maven.javadoc.version}</version>
      +                <configuration>
      +                    <source>${maven.compile.sourceLevel}</source>
      +                    <encoding>${project.build.sourceEncoding}</encoding>
      +                    <docencoding>${project.reporting.outputEncoding}</docencoding>
      +                    <charset>${project.reporting.outputEncoding}</charset>
      +                    <locale>en</locale>
      +                    <detectJavaApiLink>false</detectJavaApiLink>
      +                    <noqualifier>all</noqualifier>
      +                    <quiet>true</quiet>
      +                    <keywords>true</keywords>
      +                    <links>
      +                        <link>http://docs.oracle.com/javase/11/docs/api/</link>
      +                    </links>
      +                </configuration>
      +            </plugin>
       
      -	<reporting>
      -		<plugins>
      -			<plugin>
      -				<groupId>org.apache.maven.plugins</groupId>
      -				<artifactId>maven-project-info-reports-plugin</artifactId>
      -				<version>3.0.0</version>
      -				<reportSets>
      -					<reportSet>
      -						<reports>
      -							<report>index</report>
      -							<report>summary</report>
      -							<report>licenses</report>
      -							<report>scm</report>
      -							<report>ci-management</report>
      -							<report>team</report>
      -							<report>mailing-lists</report>
      -							<report>issue-management</report>
      +            <!-- Code analysis -->
      +            <plugin>
      +                <groupId>org.apache.maven.plugins</groupId>
      +                <artifactId>maven-pmd-plugin</artifactId>
      +                <version>3.13.0</version>
      +                <configuration>
      +                    <sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
      +                </configuration>
      +            </plugin>
       
      -						</reports>
      -					</reportSet>
      -				</reportSets>
      -			</plugin>
      +            <!-- Report on test results -->
      +            <plugin>
      +                <groupId>org.apache.maven.plugins</groupId>
      +                <artifactId>maven-surefire-report-plugin</artifactId>
      +                <version>${maven.surefire-report.version}</version>
      +            </plugin>
       
      -			<!-- Javadoc generation -->
      -			<plugin>
      -				<groupId>org.apache.maven.plugins</groupId>
      -				<artifactId>maven-javadoc-plugin</artifactId>
      -				<version>${maven.javadoc.version}</version>
      -				<configuration>
      -					<source>${maven.compile.sourceLevel}</source>
      -					<encoding>${project.build.sourceEncoding}</encoding>
      -					<docencoding>${project.reporting.outputEncoding}</docencoding>
      -					<charset>${project.reporting.outputEncoding}</charset>
      -					<locale>en</locale>
      -					<noqualifier>all</noqualifier>
      -					<quiet>true</quiet>
      -					<keywords>true</keywords>
      -					<links>
      -						<link>http://docs.oracle.com/javase/8/docs/api/</link>
      -					</links>
      -				</configuration>
      -			</plugin>
      +            <!-- Static analysis for occurrences of bug patterns -->
      +            <plugin>
      +                <groupId>com.github.spotbugs</groupId>
      +                <artifactId>spotbugs-maven-plugin</artifactId>
      +            </plugin>
      +        </plugins>
      +    </reporting>
       
      -			<!-- Code analysis -->
      -			<plugin>
      -				<groupId>org.apache.maven.plugins</groupId>
      -				<artifactId>maven-pmd-plugin</artifactId>
      -				<version>3.8</version>
      -				<configuration>
      -					<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
      -				</configuration>
      -			</plugin>
      +    <!-- Deployment to public servers -->
      +    <distributionManagement>
      +        <!--
      +        <repository>
      +            <id>ossrh</id>
      +            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
      +        </repository>
      +        <snapshotRepository>
      +            <id>ossrh</id>
      +            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
      +        </snapshotRepository>
      +        -->
      +        <site>
      +            <id>JSR-385</id>
      +            <name>JSR-385 Maven reports</name>
      +            <url>file:///var/www/www.unitsofmeasurement.github.io/unit-api</url>
      +            <!-- No longer active, just a placeholder! -->
      +        </site>
      +    </distributionManagement>
       
      -			<!-- Report on test results -->
      -			<plugin>
      -				<groupId>org.apache.maven.plugins</groupId>
      -				<artifactId>maven-surefire-report-plugin</artifactId>
      -				<version>${maven.surefire-report.version}</version>
      -			</plugin>
      +    <dependencies>
      +        <dependency>
      +            <groupId>org.junit.jupiter</groupId>
      +            <artifactId>junit-jupiter-api</artifactId>
      +            <version>${junit.jupiter.version}</version>
      +            <scope>test</scope>
      +        </dependency>
      +        <dependency>
      +            <groupId>org.junit.jupiter</groupId>
      +            <artifactId>junit-jupiter-engine</artifactId>
      +            <version>${junit.jupiter.version}</version>
      +            <scope>test</scope>
      +        </dependency>
      +        <dependency>
      +            <groupId>jakarta.inject</groupId>
      +            <artifactId>jakarta.inject-api</artifactId>
      +            <scope>test</scope>
      +        </dependency>
      +    </dependencies>
       
      -			<!-- Static analysis for occurrences of bug patterns -->
      -			<plugin>
      -				<groupId>org.codehaus.mojo</groupId>
      -				<artifactId>findbugs-maven-plugin</artifactId>
      -				<version>3.0.5</version>
      -			</plugin>
      -			<!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> 
      -				<version>3.0.0</version> <configuration> <configLocation>src/main/config/checkstyle.xml</configLocation> 
      -				</configuration> </plugin> -->
      -		</plugins>
      -	</reporting>
      +    <!-- Additional repositories -->
      +    <!-- Helps to resolve Parent POM and Snapshot artifacts -->
      +    <repositories>
      +        <repository>
      +            <snapshots>
      +                <enabled>true</enabled>
      +            </snapshots>
      +            <id>central-snapshot</id>
      +            <name>Central Snapshots</name>
      +            <url>https://central.sonatype.com/repository/maven-snapshots/</url>
      +        </repository>       
      +    </repositories>
       
      -	<!-- Deployment to public servers -->
      -	<distributionManagement>
      -		<repository>
      -			<id>bintray-release</id>
      -			<name>oss-jfrog-artifactory-release</name>
      -			<url>https://oss.jfrog.org/artifactory/oss-release-local</url>
      -		</repository>
      -		<snapshotRepository>
      -			<id>bintray-snapshot</id>
      -			<name>oss-jfrog-artifactory-snapshot</name>
      -			<url>https://oss.jfrog.org/artifactory/oss-snapshot-local</url>
      -		</snapshotRepository>
      -		<site>
      -			<id>JSR-385</id>
      -			<name>JSR-385 Maven reports</name>
      -			<url>file:///var/www/www.unitsofmeasurement.github.io/jsr-385</url>
      -			<!-- No longer active, just a placeholder! -->
      -		</site>
      -	</distributionManagement>
      +    <profiles>
      +        <!-- Individual JARs -->
      +        <profile>
      +            <id>base-jar</id>
      +            <!-- This profile builds only the base (root level) elements into a separate JAR file -->
      +            <activation>
      +                <activeByDefault>false</activeByDefault>
      +            </activation>
      +            <build>
      +                <plugins>
      +                    <plugin>
      +                        <groupId>org.apache.maven.plugins</groupId>
      +                        <artifactId>maven-antrun-plugin</artifactId>
      +                        <executions>
      +                            <execution>
      +                                <phase>prepare-package</phase>
      +                                <goals>
      +                                    <goal>run</goal>
      +                                </goals>
      +                                <configuration>
      +                                    <target>
      +                                        <mkdir
      +                                            dir="${project.build.directory}/classes/META-INF/versions/${jdkOptionalVersion}" />
      +                                        <javac
      +                                            destdir="${project.build.directory}/classes/META-INF/versions/${jdkOptionalVersion}"
      +                                            srcdir="${project.basedir}/src/etc/modules/base/jdk${jdkOptionalVersion}"
      +                                            includeAntRuntime="false">
      +                                            <compilerarg
      +                                                line="--release=${jdkOptionalVersion} --patch-module java.measure.base=${project.build.directory}/classes" />
      +                                        </javac>
      +                                    </target>
      +                                </configuration>
      +                            </execution>
      +                        </executions>
      +                    </plugin>
       
      -	<dependencies>
      -		<dependency>
      -			<groupId>org.junit.jupiter</groupId>
      -			<artifactId>junit-jupiter-api</artifactId>
      -			<version>${junit.jupiter.version}</version>
      -			<scope>test</scope>
      -		</dependency>
      -		<dependency>
      -			<groupId>org.junit.jupiter</groupId>
      -			<artifactId>junit-jupiter-engine</artifactId>
      -			<version>${junit.jupiter.version}</version>
      -			<scope>test</scope>
      -		</dependency>
      -	</dependencies>
      +                    <plugin>
      +                        <artifactId>maven-jar-plugin</artifactId>
      +                        <configuration>
      +                            <archive>
      +                                <manifest>
      +                                    <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
      +                                </manifest>
      +                                <manifestEntries>
      +                                    <Specification-Title>${project.name}</Specification-Title>
      +                                    <Specification-Version>${project.version}</Specification-Version>
      +                                    <Specification-Vendor>
      +                                        ${project.organization.name}</Specification-Vendor>
      +                                    <Automatic-Module-Name>java.measure.base</Automatic-Module-Name>
      +                                    <Multi-Release>true</Multi-Release>
      +                                </manifestEntries>
      +                                <addMavenDescriptor>false</addMavenDescriptor>
      +                            </archive>
      +                        </configuration>
      +                        <executions>
      +                            <execution>
      +                                <id>base-jar</id>
      +                                <goals>
      +                                    <goal>jar</goal>
      +                                </goals>
      +                                <configuration>
      +                                    <classifier>base</classifier>
      +                                    <excludes>
      +                                        <exclude>javax/measure/format/**</exclude>
      +                                        <exclude>javax/measure/quantity/**</exclude>
      +                                        <exclude>javax/measure/spi/**</exclude>
      +                                    </excludes>
      +                                </configuration>
      +                            </execution>
      +                        </executions>
      +                    </plugin>
      +                </plugins>
      +            </build>
      +        </profile>
       
      -	<profiles>
      -		<!-- Individual JARs -->
      -		<profile>
      -			<id>base-jar</id>
      -			<!-- This profile builds only the base (root level) elements into a separate 
      -				-base.jar file -->
      -			<activation>
      -				<activeByDefault>false</activeByDefault>
      -			</activation>
      -			<build>
      -				<plugins>
      -					<!-- plugin>
      -						<groupId>org.codehaus.mojo</groupId>
      -						<artifactId>build-helper-maven-plugin</artifactId>
      -						<version>1.7</version>
      -						<executions>
      -							<execution>
      -								<id>add-source</id>
      -								<phase>generate-sources</phase>
      -								<goals>
      -									<goal>add-source</goal>
      -								</goals>
      -								<configuration>
      -									<sources>
      -										<source>src/etc/modules/core/jdk9</source>
      -									</sources>
      -								</configuration>
      -							</execution>
      -						</executions>
      -					</plugin -->
      -				<plugin>
      -					<groupId>org.apache.maven.plugins</groupId>
      -					<artifactId>maven-antrun-plugin</artifactId>
      -					<executions>
      -						<execution>
      -							<phase>prepare-package</phase>
      -							<goals>
      -								<goal>run</goal>
      -							</goals>
      -							<configuration>
      -								<target>
      -									<mkdir
      -										dir="${project.build.directory}/classes/META-INF/versions/${jdkOptionalVersion}" />
      -									<javac
      -										destdir="${project.build.directory}/classes/META-INF/versions/${jdkOptionalVersion}"
      -										srcdir="${project.basedir}/src/etc/modules/core/jdk${jdkOptionalVersion}"
      -										includeAntRuntime="false">
      -	
      -										<!-- TODO: use release attribute instead after next plugin release. 
      -											https://issues.apache.org/jira/browse/MANTRUN-214 -->
      -										<compilerarg
      -											line="--release=${jdkOptionalVersion} --patch-module java.measure.base=${project.build.directory}/classes" />
      -									</javac>
      -								</target>
      -							</configuration>
      -						</execution>
      -					</executions>
      -				</plugin>
      -						
      -				<plugin>
      -						<artifactId>maven-jar-plugin</artifactId>
      -						<configuration>
      -							<archive>
      -								<manifest>
      -									<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
      -								</manifest>
      -								<manifestEntries>
      -									<Specification-Title>${project.name}</Specification-Title>
      -									<Specification-Version>${project.version}</Specification-Version>
      -									<Specification-Vendor>${project.organization.name}</Specification-Vendor>
      -									<Implementation-Vendor>Unit-API contributors</Implementation-Vendor>
      -									<Implementation-URL>http://unitsofmeasurement.github.io</Implementation-URL>
      -									<Automatic-Module-Name>java.measure.base</Automatic-Module-Name>
      -									<Multi-Release>true</Multi-Release>
      -								</manifestEntries>
      -								<addMavenDescriptor>false</addMavenDescriptor>
      -							</archive>
      -						</configuration>
      -						<executions>
      -							<execution>
      -								<id>base-jar</id>
      -								<goals>
      -									<goal>jar</goal>
      -								</goals>
      -								<configuration>
      -									<classifier>base</classifier>
      -									<excludes>
      -										<exclude>javax/measure/format/**</exclude>
      -										<exclude>javax/measure/quantity/**</exclude>
      -										<exclude>javax/measure/spi/**</exclude>
      -									</excludes>
      -								</configuration>
      -							</execution>
      -						</executions>
      -					</plugin>
      -				</plugins>
      -			</build>
      -		</profile>
      +        <profile>
      +            <id>format-jar</id>
      +            <!-- This profile builds (optional) format elements into separate JAR files -->
      +            <build>
      +                <plugins>
      +                    <plugin>
      +                        <artifactId>maven-jar-plugin</artifactId>
      +                        <version>${maven.jar.version}</version>
      +                        <configuration>
      +                            <archive>
      +                                <manifest>
      +                                    <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
      +                                </manifest>
      +                                <manifestEntries>
      +                                    <Specification-Title>${project.name}</Specification-Title>
      +                                    <Specification-Version>${project.version}</Specification-Version>
      +                                    <Specification-Vendor>
      +                                        ${project.organization.name}</Specification-Vendor>
      +                                    <Automatic-Module-Name>java.measure.format</Automatic-Module-Name>
      +                                    <Multi-Release>false</Multi-Release>
      +                                </manifestEntries>
      +                                <addMavenDescriptor>false</addMavenDescriptor>
      +                            </archive>
      +                        </configuration>
      +                        <executions>
      +                            <execution>
      +                                <id>format-jar</id>
      +                                <goals>
      +                                    <goal>jar</goal>
      +                                </goals>
      +                                <configuration>
      +                                    <classifier>format</classifier>
      +                                    <includes>
      +                                        <include>javax/measure/format/**</include>
      +                                    </includes>
      +                                </configuration>
      +                            </execution>
      +                        </executions>
      +                    </plugin>
      +                </plugins>
      +            </build>
      +        </profile>
       
      -		<profile>
      -			<id>format-jar</id>
      -			<!-- This profile builds (optional) format elements into separate JAR 
      -				files -->
      -			<build>
      -				<plugins>
      -					<plugin>
      -						<artifactId>maven-jar-plugin</artifactId>
      -						<version>${maven.jar.version}</version>
      -						<executions>
      -							<execution>
      -								<id>format-jar</id>
      -								<goals>
      -									<goal>jar</goal>
      -								</goals>
      -								<configuration>
      -									<classifier>format</classifier>
      -								</configuration>
      -							</execution>
      -						</executions>
      -					</plugin>
      -				</plugins>
      -			</build>
      -		</profile>
      +        <profile>
      +            <id>quantity-jar</id>
      +            <!-- This profile builds (optional) quantities into separate JAR files -->
      +            <build>
      +                <plugins>
      +                    <plugin>
      +                        <artifactId>maven-jar-plugin</artifactId>
      +                        <version>${maven.jar.version}</version>
      +                        <configuration>
      +                            <archive>
      +                                <manifest>
      +                                    <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
      +                                </manifest>
      +                                <manifestEntries>
      +                                    <Specification-Title>${project.name}</Specification-Title>
      +                                    <Specification-Version>${project.version}</Specification-Version>
      +                                    <Specification-Vendor>
      +                                        ${project.organization.name}</Specification-Vendor>
      +                                    <Automatic-Module-Name>java.measure.quantity</Automatic-Module-Name>
      +                                    <Multi-Release>false</Multi-Release>
      +                                </manifestEntries>
      +                                <addMavenDescriptor>false</addMavenDescriptor>
      +                            </archive>
      +                        </configuration>
      +                        <executions>
      +                            <execution>
      +                                <id>quanity-jar</id>
      +                                <goals>
      +                                    <goal>jar</goal>
      +                                </goals>
      +                                <configuration>
      +                                    <classifier>quantity</classifier>
      +                                    <includes>
      +                                        <include>javax/measure/quantity/**</include>
      +                                    </includes>
      +                                </configuration>
      +                            </execution>
      +                        </executions>
      +                    </plugin>
      +                </plugins>
      +            </build>
      +        </profile>
       
      -		<profile>
      -			<id>quantity-jar</id>
      -			<!-- This profile builds (optional) quantities into separate JAR files -->
      -			<build>
      -				<plugins>
      -					<plugin>
      -						<artifactId>maven-jar-plugin</artifactId>
      -						<version>${maven.jar.version}</version>
      -						<executions>
      -							<execution>
      -								<id>quanity-jar</id>
      -								<goals>
      -									<goal>jar</goal>
      -								</goals>
      -								<configuration>
      -									<classifier>quantity</classifier>
      -									<includes>
      -										<include>javax/measure/quantity/**</include>
      -									</includes>
      -								</configuration>
      -							</execution>
      -						</executions>
      -					</plugin>
      -				</plugins>
      -			</build>
      -		</profile>
      +        <profile>
      +            <id>spi-jar</id>
      +            <!-- This profile builds (optional) SPI into separate JAR files -->
      +            <build>
      +                <plugins>
      +                    <plugin>
      +                        <artifactId>maven-jar-plugin</artifactId>
      +                        <version>${maven.jar.version}</version>
      +                        <configuration>
      +                            <archive>
      +                                <manifest>
      +                                    <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
      +                                </manifest>
      +                                <manifestEntries>
      +                                    <Specification-Title>${project.name}</Specification-Title>
      +                                    <Specification-Version>${project.version}</Specification-Version>
      +                                    <Specification-Vendor>
      +                                        ${project.organization.name}</Specification-Vendor>
      +                                    <Automatic-Module-Name>java.measure.spi</Automatic-Module-Name>
      +                                    <Multi-Release>false</Multi-Release>
      +                                </manifestEntries>
      +                                <addMavenDescriptor>false</addMavenDescriptor>
      +                            </archive>
      +                        </configuration>
      +                        <executions>
      +                            <execution>
      +                                <id>spi-jar</id>
      +                                <goals>
      +                                    <goal>jar</goal>
      +                                </goals>
      +                                <configuration>
      +                                    <classifier>spi</classifier>
      +                                    <includes>
      +                                        <include>javax/measure/spi/**</include>
      +                                    </includes>
      +                                </configuration>
      +                            </execution>
      +                        </executions>
      +                    </plugin>
      +                </plugins>
      +            </build>
      +        </profile>
       
      -		<profile>
      -			<id>spi-jar</id>
      -			<!-- This profile builds (optional) SPI into separate JAR files -->
      -			<build>
      -				<plugins>
      -					<plugin>
      -						<artifactId>maven-jar-plugin</artifactId>
      -						<version>${maven.jar.version}</version>
      -						<executions>
      -							<execution>
      -								<id>spi-jar</id>
      -								<goals>
      -									<goal>jar</goal>
      -								</goals>
      -								<configuration>
      -									<classifier>spi</classifier>
      -									<includes>
      -										<include>javax/measure/spi/**</include>
      -									</includes>
      -								</configuration>
      -							</execution>
      -						</executions>
      -					</plugin>
      -				</plugins>
      -			</build>
      -		</profile>
      +        <!-- Documentation -->
      +        <profile>
      +            <id>documentation</id>
      +            <build>
      +                <plugins>
      +                    <plugin>
      +                        <groupId>org.asciidoctor</groupId>
      +                        <artifactId>asciidoctor-maven-plugin</artifactId>
      +                        <executions>
      +                            <execution>
      +                                <id>output-html</id>
      +                                <phase>generate-resources</phase>
      +                                <goals>
      +                                    <goal>process-asciidoc</goal>
      +                                </goals>
      +                                <configuration>
      +                                    <outputDirectory>target/docs</outputDirectory>
      +                                    <sourceHighlighter>highlightjs</sourceHighlighter> <!--
      +									coderay -->
      +                                    <backend>html</backend>
      +                                    <embedAssets>true</embedAssets>
      +                                    <imagesDir>src/main/asciidoc/images</imagesDir>
      +                                </configuration>
      +                            </execution>
      +                        </executions>
      +                    </plugin>
      +                </plugins>
      +            </build>
      +        </profile>
       
      -		<!-- Profile JARs -->
      -		<profile>
      -			<id>format-profile</id>
      -			<!-- This profile builds the Format Profile (base+format) into a separate 
      -				jar file -->
      -			<activation>
      -				<activeByDefault>false</activeByDefault>
      -			</activation>
      -			<build>
      -				<plugins>
      -					<plugin>
      -						<artifactId>maven-jar-plugin</artifactId>
      -						<version>${maven.jar.version}</version>
      -						<executions>
      -							<execution>
      -								<id>format-profile-jar</id>
      -								<goals>
      -									<goal>jar</goal>
      -								</goals>
      -								<configuration>
      -									<classifier>format-profile</classifier>
      -									<excludes>
      -										<exclude>javax/measure/quantity/**</exclude>
      -										<exclude>javax/measure/spi/**</exclude>
      -									</excludes>
      -								</configuration>
      -							</execution>
      -						</executions>
      -					</plugin>
      -				</plugins>
      -			</build>
      -		</profile>
      +        <profile>
      +            <id>localCopySite</id>
      +            <!-- Locally copies the "site" into the GitHub pages folder  -->
      +            <build>
      +                <plugins>
      +                    <plugin>
      +                        <artifactId>maven-resources-plugin</artifactId>
      +                        <executions>
      +                            <execution>
      +                                <id>copy-resources</id>
      +                                <phase>site</phase>
      +                                <goals>
      +                                    <goal>copy-resources</goal>
      +                                </goals>
      +                                <configuration>
      +                                    <outputDirectory>${basedir}/docs/site</outputDirectory>
      +                                    <resources>
      +                                        <resource>
      +                                            <directory>target/site</directory>
      +                                            <filtering>false</filtering>
      +                                        </resource>
      +                                    </resources>
      +                                </configuration>
      +                            </execution>
      +                        </executions>
      +                    </plugin>
      +                </plugins>
      +            </build>
      +        </profile>
       
      -		<profile>
      -			<id>spi-profile</id>
      -			<!-- This profile builds the SPI Profile (base+format+spi) into a separate 
      -				jar file -->
      -			<activation>
      -				<activeByDefault>false</activeByDefault>
      -			</activation>
      -			<build>
      -				<plugins>
      -					<plugin>
      -						<artifactId>maven-jar-plugin</artifactId>
      -						<version>${maven.jar.version}</version>
      -						<executions>
      -							<execution>
      -								<id>base-jar</id>
      -								<goals>
      -									<goal>jar</goal>
      -								</goals>
      -								<configuration>
      -									<classifier>spi-profile</classifier>
      -									<excludes>
      -										<exclude>javax/measure/quantity/**</exclude>
      -									</excludes>
      -								</configuration>
      -							</execution>
      -						</executions>
      -					</plugin>
      -				</plugins>
      -			</build>
      -		</profile>
      -
      -		<profile>
      -			<id>documentation</id>
      -			<build>
      -				<plugins>
      -					<plugin>
      -						<groupId>org.asciidoctor</groupId>
      -						<artifactId>asciidoctor-maven-plugin</artifactId>
      -						<executions>
      -							<execution>
      -								<id>output-html</id>
      -								<phase>generate-resources</phase>
      -								<goals>
      -									<goal>process-asciidoc</goal>
      -								</goals>
      -								<configuration>
      -									<outputDirectory>target/docs</outputDirectory>
      -									<sourceHighlighter>highlightjs</sourceHighlighter> <!-- coderay -->
      -									<backend>html</backend>
      -									<embedAssets>true</embedAssets>
      -									<imagesDir>arc/main/asciidoc/images</imagesDir>
      -								</configuration>
      -							</execution>
      -						</executions>
      -					</plugin>
      -				</plugins>
      -			</build>
      -		</profile>
      -
      -		<profile>
      -			<id>brokenGitHubSite</id>
      -			<build>
      -				<plugins>
      -					<!-- ======================================================= -->
      -					<!-- GitHub Plugin -->
      -					<!-- ======================================================= -->
      -					<!-- This plugin seems permanently broken, will remove it to profile -->
      -					<plugin>
      -						<groupId>com.github.github</groupId>
      -						<artifactId>site-maven-plugin</artifactId>
      -						<version>${github.maven.version}</version>
      -						<configuration>
      -							<!-- must match the server's id -->
      -							<server>github</server>
      -							<message>Building site for ${project.version}</message>
      -						</configuration>
      -						<executions>
      -							<execution>
      -								<goals>
      -									<goal>site</goal>
      -								</goals>
      -								<phase>site-deploy</phase>
      -								<configuration>
      -									<path>site</path>
      -									<merge>true</merge>
      -									<!-- <outputDirectory>${project.build.directory}/mvn-repo</outputDirectory> -->
      -									<repositoryName>unit-api</repositoryName>
      -									<repositoryOwner>unitsofmeasurement</repositoryOwner>
      -								</configuration>
      -							</execution>
      -						</executions>
      -					</plugin>
      -				</plugins>
      -			</build>
      -		</profile>
      -
      -		<profile>
      -			<id>sonar</id>
      -			<activation>
      -				<activeByDefault>true</activeByDefault>
      -			</activation>
      -			<properties>
      -				<sonar.host.url>https://sonarcloud.io</sonar.host.url>
      -				<sonar.projectKey>${env.SONARCLOUD_PROJECT_KEY}</sonar.projectKey>
      -				<sonar.login>${env.SONARCLOUD_LOGIN}</sonar.login>
      -				<sonar.organization>${env.SONARCLOUD_ORG}</sonar.organization>
      -			</properties>
      -		</profile>
      -	</profiles>
      +        <profile>
      +            <id>sonar</id>
      +            <activation>
      +                <activeByDefault>true</activeByDefault>
      +            </activation>
      +            <properties>
      +                <sonar.host.url>https://sonarcloud.io</sonar.host.url>
      +                <sonar.projectKey>${env.SONARCLOUD_PROJECT_KEY}</sonar.projectKey>
      +                <sonar.login>${env.SONARCLOUD_LOGIN}</sonar.login>
      +                <sonar.organization>${env.SONARCLOUD_ORG}</sonar.organization>
      +                <sourceEncoding>UTF-8</sourceEncoding> <!-- in Maven 3. -->
      +                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      +                <project.reporting.outputEncoding>${sourceEncoding}</project.reporting.outputEncoding>
      +                <jdkVersion>8</jdkVersion>
      +                <jdkOptionalVersion>9</jdkOptionalVersion>
      +                <project.build.javaVersion>${jdkVersion}</project.build.javaVersion>
      +                <maven.compile.targetLevel>${jdkVersion}</maven.compile.targetLevel>
      +                <maven.compile.sourceLevel>${jdkVersion}</maven.compile.sourceLevel>
      +            </properties>
      +        </profile>
      +    </profiles>
       </project>
      diff --git a/settings.xml b/settings.xml
      index c1bc0de0..4a3c4aec 100644
      --- a/settings.xml
      +++ b/settings.xml
      @@ -3,12 +3,7 @@
           xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
           <servers>
               <server>
      -            <id>bintray-snapshot</id>
      -            <username>${env.CI_DEPLOY_USERNAME}</username>
      -            <password>${env.CI_DEPLOY_PASSWORD}</password>
      -        </server>
      -        <server>
      -            <id>bintray-release</id>
      +            <id>central</id>
                   <username>${env.CI_DEPLOY_USERNAME}</username>
                   <password>${env.CI_DEPLOY_PASSWORD}</password>
               </server>
      diff --git a/src/etc/modules/core/.gitignore b/src/etc/modules/base/.gitignore
      similarity index 100%
      rename from src/etc/modules/core/.gitignore
      rename to src/etc/modules/base/.gitignore
      diff --git a/src/etc/modules/core/jdk9/module-info.java b/src/etc/modules/base/jdk9/module-info.java
      similarity index 100%
      rename from src/etc/modules/core/jdk9/module-info.java
      rename to src/etc/modules/base/jdk9/module-info.java
      diff --git a/src/etc/modules/core/pom.xml b/src/etc/modules/base/pom.xml
      similarity index 100%
      rename from src/etc/modules/core/pom.xml
      rename to src/etc/modules/base/pom.xml
      diff --git a/src/etc/modules/format/jdk9/module-info.java b/src/etc/modules/format/jdk9/module-info.java
      new file mode 100644
      index 00000000..a0dd7535
      --- /dev/null
      +++ b/src/etc/modules/format/jdk9/module-info.java
      @@ -0,0 +1,34 @@
      +/*
      + * Units of Measurement API
      + * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + *
      + * All rights reserved.
      + *
      + * Redistribution and use in source and binary forms, with or without modification,
      + * are permitted provided that the following conditions are met:
      + *
      + * 1. Redistributions of source code must retain the above copyright notice,
      + *    this list of conditions and the following disclaimer.
      + *
      + * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
      + *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
      + *
      + * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
      + *    derived from this software without specific prior written permission.
      + *
      + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
      + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
      + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
      + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
      + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
      + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      + */
      +module java.measure.format {
      +    exports javax.measure.format;
      +    
      +    requires java.measure.base;
      +}
      diff --git a/src/etc/modules/service/.gitignore b/src/etc/modules/service/.gitignore
      deleted file mode 100644
      index c329a096..00000000
      --- a/src/etc/modules/service/.gitignore
      +++ /dev/null
      @@ -1,4 +0,0 @@
      -/.settings
      -/target
      -.classpath
      -.project
      \ No newline at end of file
      diff --git a/src/etc/modules/service/pom.xml b/src/etc/modules/service/pom.xml
      deleted file mode 100644
      index f4e32d2b..00000000
      --- a/src/etc/modules/service/pom.xml
      +++ /dev/null
      @@ -1,51 +0,0 @@
      -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      -  <modelVersion>4.0.0</modelVersion>
      -  <parent>
      -    <groupId>javax.measure</groupId>
      -    <artifactId>unit-api-parent</artifactId>
      -    <version>0.5</version>
      -  </parent>
      -  <packaging>bundle</packaging>
      -  <artifactId>unit-api-service</artifactId>
      -   <dependencies>
      -    <dependency>
      -        <groupId>javax.measure</groupId>
      -        <artifactId>unit-api-core</artifactId>
      -        <version>${jsr.version}</version>
      -    </dependency>
      -    <dependency>
      -        <groupId>javax.measure</groupId>
      -        <artifactId>unit-api-util</artifactId>
      -        <version>${jsr.version}</version>
      -    </dependency>
      -    <dependency>
      -        <groupId>javax.measure</groupId>
      -        <artifactId>unit-api-format</artifactId>
      -        <version>${jsr.version}</version>
      -    </dependency>
      -    <dependency>
      -        <groupId>junit</groupId>
      -        <artifactId>junit</artifactId>
      -        <scope>test</scope>
      -    </dependency>
      -   </dependencies>
      -   <build>
      -    <plugins>
      -            <!-- ======================================================= -->
      -            <!--     Packaging (OSGi bundle)                             -->
      -            <!-- ======================================================= -->
      -            <plugin>
      -                <groupId>org.apache.felix</groupId>
      -                <artifactId>maven-bundle-plugin</artifactId>
      -                <configuration>
      -                    <instructions>
      -                        <Export-Package>javax.measure.spi.*</Export-Package>
      -                        <Private-Package>!*</Private-Package>
      -                    </instructions>
      -                </configuration>
      -            </plugin>
      -    </plugins>
      -  </build>
      -   <name>Unit-API Service</name>
      -   <description>[OPTIONAL] Service / SPI</description>
      -</project>
      diff --git a/src/etc/modules/shaded/.gitignore b/src/etc/modules/shaded/.gitignore
      deleted file mode 100644
      index 71018fd2..00000000
      --- a/src/etc/modules/shaded/.gitignore
      +++ /dev/null
      @@ -1,2 +0,0 @@
      -/target
      -/dependency-reduced-pom.xml
      diff --git a/src/etc/modules/shaded/pom.xml b/src/etc/modules/shaded/pom.xml
      deleted file mode 100644
      index 64236b38..00000000
      --- a/src/etc/modules/shaded/pom.xml
      +++ /dev/null
      @@ -1,53 +0,0 @@
      -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      -    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      -    <modelVersion>4.0.0</modelVersion>
      -    <parent>
      -        <groupId>javax.measure</groupId>
      -        <artifactId>unit-api-parent</artifactId>
      -        <version>0.5</version>
      -    </parent>
      -    <artifactId>unit-api</artifactId>
      -
      -    <dependencies>
      -        <dependency>
      -            <groupId>javax.measure</groupId>
      -            <artifactId>unit-api-core</artifactId>
      -        </dependency>
      -        <dependency>
      -            <groupId>javax.measure</groupId>
      -            <artifactId>unit-api-format</artifactId>
      -        </dependency>
      -        <dependency>
      -            <groupId>javax.measure</groupId>
      -            <artifactId>unit-api-quantity</artifactId>
      -        </dependency>
      -        <dependency>
      -            <groupId>javax.measure</groupId>
      -            <artifactId>unit-api-util</artifactId>
      -        </dependency>
      -        <dependency>
      -            <groupId>javax.measure</groupId>
      -            <artifactId>unit-api-service</artifactId>
      -        </dependency>
      -    </dependencies>
      -
      -    <build>
      -        <plugins>
      -            <plugin>
      -                <groupId>org.apache.maven.plugins</groupId>
      -                <artifactId>maven-shade-plugin</artifactId>
      -                <version>2.2</version>
      -                <executions>
      -                    <execution>
      -                        <phase>package</phase>
      -                        <goals>
      -                            <goal>shade</goal>
      -                        </goals>
      -                    </execution>
      -                </executions>
      -            </plugin>
      -        </plugins>
      -    </build>
      -    <description>This is a single JAR distribution of the Units of Measurement API</description>
      -    <name>Unit-API</name>
      -</project>
      diff --git a/src/etc/modules/util/.gitignore b/src/etc/modules/util/.gitignore
      deleted file mode 100644
      index 26fc0118..00000000
      --- a/src/etc/modules/util/.gitignore
      +++ /dev/null
      @@ -1,5 +0,0 @@
      -/target
      -/.settings
      -/bin
      -/.classpath
      -/.project
      diff --git a/src/etc/modules/util/pom.xml b/src/etc/modules/util/pom.xml
      deleted file mode 100644
      index 1b7132a1..00000000
      --- a/src/etc/modules/util/pom.xml
      +++ /dev/null
      @@ -1,48 +0,0 @@
      -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      -    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      -    <modelVersion>4.0.0</modelVersion>
      -    <parent>
      -        <groupId>javax.measure</groupId>
      -        <artifactId>unit-api-parent</artifactId>
      -        <version>0.5</version>
      -    </parent>
      -    <artifactId>unit-api-util</artifactId>
      -    <name>Unit-API Utilities</name>
      -    <packaging>bundle</packaging>
      -    <description>[OPTIONAL] Provides common utilities such as range, data aging and unit systems.</description>
      -    <dependencies>
      -        <dependency>
      -            <groupId>javax.measure</groupId>
      -            <artifactId>unit-api-core</artifactId>
      -        </dependency>
      -        <dependency>
      -            <groupId>javax.measure</groupId>
      -            <artifactId>unit-api-core</artifactId>
      -            <version>${jsr.version}</version>
      -            <type>test-jar</type>
      -            <scope>test</scope>
      -        </dependency>
      -        <dependency>
      -            <groupId>junit</groupId>
      -            <artifactId>junit</artifactId>
      -            <scope>test</scope>
      -        </dependency>
      -    </dependencies>
      -    <build>
      -        <plugins>
      -            <!-- ======================================================= -->
      -            <!-- Packaging (OSGi bundle) -->
      -            <!-- ======================================================= -->
      -            <plugin>
      -                <groupId>org.apache.felix</groupId>
      -                <artifactId>maven-bundle-plugin</artifactId>
      -                <configuration>
      -                    <instructions>
      -                        <Export-Package>javax.measure.util.*</Export-Package>
      -                        <Private-Package>!*</Private-Package>
      -                    </instructions>
      -                </configuration>
      -            </plugin>
      -        </plugins>
      -    </build>
      -</project>
      diff --git a/src/main/README.md b/src/main/README.md
      new file mode 100644
      index 00000000..a6e4b0e9
      --- /dev/null
      +++ b/src/main/README.md
      @@ -0,0 +1,3 @@
      +Note
      +========
      +`jdk11` is currently unused. It may be enabled if the toolchain plugin already in place for the RI Indriya and other modules was used here, too.
      \ No newline at end of file
      diff --git a/src/main/config/unit-api clean install.launch b/src/main/config/unit-api clean install.launch
      index 65119d06..a182e3b0 100644
      --- a/src/main/config/unit-api clean install.launch	
      +++ b/src/main/config/unit-api clean install.launch	
      @@ -1,22 +1,27 @@
       <?xml version="1.0" encoding="UTF-8" standalone="no"?>
       <launchConfiguration type="org.eclipse.m2e.Maven2LaunchConfigurationType">
      -<booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/>
      -<stringAttribute key="M2_GOALS" value="clean install"/>
      -<booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
      -<booleanAttribute key="M2_OFFLINE" value="false"/>
      -<stringAttribute key="M2_PROFILES" value=""/>
      -<listAttribute key="M2_PROPERTIES"/>
      -<stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
      -<booleanAttribute key="M2_SKIP_TESTS" value="false"/>
      -<intAttribute key="M2_THREADS" value="1"/>
      -<booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
      -<stringAttribute key="M2_USER_SETTINGS" value=""/>
      -<booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
      -<stringAttribute key="org.eclipse.debug.core.ATTR_REFRESH_SCOPE" value="${project}"/>
      -<stringAttribute key="org.eclipse.debug.ui.ATTR_CONSOLE_ENCODING" value="UTF-8"/>
      -<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
      -<listEntry value="org.eclipse.debug.ui.launchGroup.run"/>
      -</listAttribute>
      -<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-9"/>
      -<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:/unit-api}"/>
      +    <intAttribute key="M2_COLORS" value="0"/>
      +    <booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/>
      +    <stringAttribute key="M2_GOALS" value="clean install"/>
      +    <booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
      +    <booleanAttribute key="M2_OFFLINE" value="false"/>
      +    <stringAttribute key="M2_PROFILES" value=""/>
      +    <listAttribute key="M2_PROPERTIES"/>
      +    <stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
      +    <booleanAttribute key="M2_SKIP_TESTS" value="false"/>
      +    <intAttribute key="M2_THREADS" value="1"/>
      +    <booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
      +    <stringAttribute key="M2_USER_SETTINGS" value=""/>
      +    <booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
      +    <booleanAttribute key="org.eclipse.debug.core.ATTR_FORCE_SYSTEM_CONSOLE_ENCODING" value="false"/>
      +    <stringAttribute key="org.eclipse.debug.core.ATTR_REFRESH_SCOPE" value="${project}"/>
      +    <stringAttribute key="org.eclipse.debug.ui.ATTR_CONSOLE_ENCODING" value="UTF-8"/>
      +    <listAttribute key="org.eclipse.debug.ui.favoriteGroups">
      +        <listEntry value="org.eclipse.debug.ui.launchGroup.run"/>
      +    </listAttribute>
      +    <booleanAttribute key="org.eclipse.jdt.launching.ATTR_ATTR_USE_ARGFILE" value="false"/>
      +    <booleanAttribute key="org.eclipse.jdt.launching.ATTR_SHOW_CODEDETAILS_IN_EXCEPTION_MESSAGES" value="true"/>
      +    <booleanAttribute key="org.eclipse.jdt.launching.ATTR_USE_CLASSPATH_ONLY_JAR" value="false"/>
      +    <stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17/"/>
      +    <stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:/unit-api}"/>
       </launchConfiguration>
      diff --git a/src/main/config/unit-api license-format.launch b/src/main/config/unit-api license-format.launch
      index 755acc91..d737985d 100644
      --- a/src/main/config/unit-api license-format.launch	
      +++ b/src/main/config/unit-api license-format.launch	
      @@ -1,19 +1,24 @@
       <?xml version="1.0" encoding="UTF-8" standalone="no"?>
       <launchConfiguration type="org.eclipse.m2e.Maven2LaunchConfigurationType">
      -<booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/>
      -<stringAttribute key="M2_GOALS" value="license:format"/>
      -<booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
      -<booleanAttribute key="M2_OFFLINE" value="false"/>
      -<stringAttribute key="M2_PROFILES" value=""/>
      -<listAttribute key="M2_PROPERTIES"/>
      -<stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
      -<booleanAttribute key="M2_SKIP_TESTS" value="false"/>
      -<intAttribute key="M2_THREADS" value="1"/>
      -<booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
      -<stringAttribute key="M2_USER_SETTINGS" value=""/>
      -<booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
      -<stringAttribute key="org.eclipse.debug.core.ATTR_REFRESH_SCOPE" value="${project}"/>
      -<stringAttribute key="org.eclipse.debug.ui.ATTR_CONSOLE_ENCODING" value="UTF-8"/>
      -<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
      -<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:/unit-api}"/>
      +    <intAttribute key="M2_COLORS" value="0"/>
      +    <booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/>
      +    <stringAttribute key="M2_GOALS" value="license:format"/>
      +    <booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
      +    <booleanAttribute key="M2_OFFLINE" value="false"/>
      +    <stringAttribute key="M2_PROFILES" value=""/>
      +    <listAttribute key="M2_PROPERTIES"/>
      +    <stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
      +    <booleanAttribute key="M2_SKIP_TESTS" value="false"/>
      +    <intAttribute key="M2_THREADS" value="1"/>
      +    <booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
      +    <stringAttribute key="M2_USER_SETTINGS" value=""/>
      +    <booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
      +    <booleanAttribute key="org.eclipse.debug.core.ATTR_FORCE_SYSTEM_CONSOLE_ENCODING" value="false"/>
      +    <stringAttribute key="org.eclipse.debug.core.ATTR_REFRESH_SCOPE" value="${project}"/>
      +    <stringAttribute key="org.eclipse.debug.ui.ATTR_CONSOLE_ENCODING" value="UTF-8"/>
      +    <booleanAttribute key="org.eclipse.jdt.launching.ATTR_ATTR_USE_ARGFILE" value="false"/>
      +    <booleanAttribute key="org.eclipse.jdt.launching.ATTR_SHOW_CODEDETAILS_IN_EXCEPTION_MESSAGES" value="true"/>
      +    <booleanAttribute key="org.eclipse.jdt.launching.ATTR_USE_CLASSPATH_ONLY_JAR" value="false"/>
      +    <stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17/"/>
      +    <stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:/unit-api}"/>
       </launchConfiguration>
      diff --git a/src/main/config/unit-api site.launch b/src/main/config/unit-api site.launch
      index 5740e0af..9813c088 100644
      --- a/src/main/config/unit-api site.launch	
      +++ b/src/main/config/unit-api site.launch	
      @@ -1,18 +1,23 @@
       <?xml version="1.0" encoding="UTF-8" standalone="no"?>
       <launchConfiguration type="org.eclipse.m2e.Maven2LaunchConfigurationType">
      -<booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/>
      -<stringAttribute key="M2_GOALS" value="site:site"/>
      -<booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
      -<booleanAttribute key="M2_OFFLINE" value="false"/>
      -<stringAttribute key="M2_PROFILES" value=""/>
      -<listAttribute key="M2_PROPERTIES"/>
      -<stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
      -<booleanAttribute key="M2_SKIP_TESTS" value="false"/>
      -<intAttribute key="M2_THREADS" value="1"/>
      -<booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
      -<stringAttribute key="M2_USER_SETTINGS" value=""/>
      -<booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
      -<stringAttribute key="org.eclipse.debug.ui.ATTR_CONSOLE_ENCODING" value="UTF-8"/>
      -<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-9"/>
      -<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:/unit-api}"/>
      +    <intAttribute key="M2_COLORS" value="0"/>
      +    <booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/>
      +    <stringAttribute key="M2_GOALS" value="site:site"/>
      +    <booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
      +    <booleanAttribute key="M2_OFFLINE" value="false"/>
      +    <stringAttribute key="M2_PROFILES" value=""/>
      +    <listAttribute key="M2_PROPERTIES"/>
      +    <stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
      +    <booleanAttribute key="M2_SKIP_TESTS" value="false"/>
      +    <intAttribute key="M2_THREADS" value="1"/>
      +    <booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
      +    <stringAttribute key="M2_USER_SETTINGS" value=""/>
      +    <booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
      +    <booleanAttribute key="org.eclipse.debug.core.ATTR_FORCE_SYSTEM_CONSOLE_ENCODING" value="false"/>
      +    <stringAttribute key="org.eclipse.debug.ui.ATTR_CONSOLE_ENCODING" value="UTF-8"/>
      +    <booleanAttribute key="org.eclipse.jdt.launching.ATTR_ATTR_USE_ARGFILE" value="false"/>
      +    <booleanAttribute key="org.eclipse.jdt.launching.ATTR_SHOW_CODEDETAILS_IN_EXCEPTION_MESSAGES" value="true"/>
      +    <booleanAttribute key="org.eclipse.jdt.launching.ATTR_USE_CLASSPATH_ONLY_JAR" value="false"/>
      +    <stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17/"/>
      +    <stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:/unit-api}"/>
       </launchConfiguration>
      diff --git a/src/main/emf/model.notation b/src/main/emf/model.notation
      index e7102205..a096e759 100644
      --- a/src/main/emf/model.notation
      +++ b/src/main/emf/model.notation
      @@ -1,5 +1,5 @@
       <?xml version="1.0" encoding="UTF-8"?>
      -<xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:css="http://www.eclipse.org/papyrus/infra/gmfdiag/css" xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.2/notation" xmlns:style="http://www.eclipse.org/papyrus/infra/gmfdiag/style" xmlns:style_1="http://www.eclipse.org/papyrus/infra/viewpoints/policy/style" xmlns:uml="http://www.eclipse.org/uml2/5.0.0/UML">
      +<xmi:XMI xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:css="http://www.eclipse.org/papyrus/infra/gmfdiag/css" xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.3/notation" xmlns:style="http://www.eclipse.org/papyrus/infra/gmfdiag/style" xmlns:style_1="http://www.eclipse.org/papyrus/infra/viewpoints/policy/style" xmlns:uml="http://www.eclipse.org/uml2/5.0.0/UML">
         <css:ModelStyleSheets xmi:id="_VJEAwHY5EeSqtc-Sb9aJnA"/>
         <notation:Diagram xmi:id="_WshiIHY6EeSqtc-Sb9aJnA" type="PapyrusUMLClassDiagram" name="UnitFormat" measurementUnit="Pixel">
           <children xmi:type="notation:Shape" xmi:id="_DgM4kIfpEeWSAJVqrs5hGQ" type="Interface_Shape">
      @@ -643,115 +643,131 @@
           </edges>
         </notation:Diagram>
         <notation:Diagram xmi:id="_WLEJIHLjEeilgvRHPaOOsg" type="PapyrusUMLClassDiagram" name="Unit" measurementUnit="Pixel">
      -    <children xmi:type="notation:Shape" xmi:id="_fCv7gHLjEeilgvRHPaOOsg" type="Interface_Shape">
      -      <children xmi:type="notation:DecorationNode" xmi:id="_fC1bEHLjEeilgvRHPaOOsg" type="Interface_NameLabel"/>
      -      <children xmi:type="notation:DecorationNode" xmi:id="_fC1bEXLjEeilgvRHPaOOsg" type="Interface_FloatingNameLabel">
      -        <layoutConstraint xmi:type="notation:Location" xmi:id="_fC1bEnLjEeilgvRHPaOOsg" y="15"/>
      -      </children>
      -      <children xmi:type="notation:BasicCompartment" xmi:id="_fC2CIHLjEeilgvRHPaOOsg" visible="false" type="Interface_AttributeCompartment">
      -        <styles xmi:type="notation:TitleStyle" xmi:id="_fC2CIXLjEeilgvRHPaOOsg"/>
      -        <styles xmi:type="notation:SortingStyle" xmi:id="_fC2CInLjEeilgvRHPaOOsg"/>
      -        <styles xmi:type="notation:FilteringStyle" xmi:id="_fC2CI3LjEeilgvRHPaOOsg"/>
      -        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_fC2CJHLjEeilgvRHPaOOsg"/>
      -      </children>
      -      <children xmi:type="notation:BasicCompartment" xmi:id="_fC2CJXLjEeilgvRHPaOOsg" type="Interface_OperationCompartment">
      -        <children xmi:type="notation:Shape" xmi:id="_iGvQ8HLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      +    <children xmi:type="notation:Shape" xmi:id="_MI2JgHQ9EemkGNry2_5b9w" type="Interface_Shape">
      +      <children xmi:type="notation:DecorationNode" xmi:id="_MI2wkHQ9EemkGNry2_5b9w" type="Interface_NameLabel"/>
      +      <children xmi:type="notation:DecorationNode" xmi:id="_MI3XoHQ9EemkGNry2_5b9w" type="Interface_FloatingNameLabel">
      +        <layoutConstraint xmi:type="notation:Location" xmi:id="_MI3XoXQ9EemkGNry2_5b9w" y="15"/>
      +      </children>
      +      <children xmi:type="notation:BasicCompartment" xmi:id="_MI3XonQ9EemkGNry2_5b9w" visible="false" type="Interface_AttributeCompartment">
      +        <styles xmi:type="notation:TitleStyle" xmi:id="_MI3Xo3Q9EemkGNry2_5b9w"/>
      +        <styles xmi:type="notation:SortingStyle" xmi:id="_MI3XpHQ9EemkGNry2_5b9w"/>
      +        <styles xmi:type="notation:FilteringStyle" xmi:id="_MI3XpXQ9EemkGNry2_5b9w"/>
      +        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_MI3XpnQ9EemkGNry2_5b9w"/>
      +      </children>
      +      <children xmi:type="notation:BasicCompartment" xmi:id="_MI3Xp3Q9EemkGNry2_5b9w" type="Interface_OperationCompartment">
      +        <children xmi:type="notation:Shape" xmi:id="_PblFkHQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
                 <element xmi:type="uml:Operation" href="model.uml#_f7ir4XY5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iGvQ8XLjEeilgvRHPaOOsg"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_PblFkXQ9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iGwfEHLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      +        <children xmi:type="notation:Shape" xmi:id="_PblFknQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
                 <element xmi:type="uml:Operation" href="model.uml#_f7ir5XY5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iGwfEXLjEeilgvRHPaOOsg"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_PblFk3Q9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iGxGIHLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      +        <children xmi:type="notation:Shape" xmi:id="_PblsoHQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
                 <element xmi:type="uml:Operation" href="model.uml#_f7ir6HY5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iGxGIXLjEeilgvRHPaOOsg"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_PblsoXQ9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iGy7UHLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      +        <children xmi:type="notation:Shape" xmi:id="_PblsonQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
                 <element xmi:type="uml:Operation" href="model.uml#_f7ir63Y5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iGy7UXLjEeilgvRHPaOOsg"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_Pblso3Q9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iGziYHLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      +        <children xmi:type="notation:Shape" xmi:id="_PblspHQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
                 <element xmi:type="uml:Operation" href="model.uml#_f7ir7nY5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iGziYXLjEeilgvRHPaOOsg"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_PblspXQ9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iG0JcHLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      +        <children xmi:type="notation:Shape" xmi:id="_PblspnQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_f71m1XY5EeSqtc-Sb9aJnA"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_Pblsp3Q9EemkGNry2_5b9w"/>
      +        </children>
      +        <children xmi:type="notation:Shape" xmi:id="_PbmTsHQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
                 <element xmi:type="uml:Operation" href="model.uml#_f7ir8XY5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iG0JcXLjEeilgvRHPaOOsg"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_PbmTsXQ9EemkGNry2_5b9w"/>
      +        </children>
      +        <children xmi:type="notation:Shape" xmi:id="_kqzIQCRREeu_9PA9SBtI_Q" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_cXMTUCRREeu_9PA9SBtI_Q"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_kqzIQSRREeu_9PA9SBtI_Q"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iG0wgHLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      +        <children xmi:type="notation:Shape" xmi:id="_PbmTsnQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
                 <element xmi:type="uml:Operation" href="model.uml#_f7ir9nY5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iG0wgXLjEeilgvRHPaOOsg"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_PbmTs3Q9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iG1XkHLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      +        <children xmi:type="notation:Shape" xmi:id="_PbmTtHQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
                 <element xmi:type="uml:Operation" href="model.uml#_f7sc4XY5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iG1XkXLjEeilgvRHPaOOsg"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_PbmTtXQ9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iG1-oHLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      +        <children xmi:type="notation:Shape" xmi:id="_Pbm6wHQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
                 <element xmi:type="uml:Operation" href="model.uml#_f7sc5nY5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iG1-oXLjEeilgvRHPaOOsg"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_Pbm6wXQ9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iG2lsHLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      +        <children xmi:type="notation:Shape" xmi:id="_Pbm6wnQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
                 <element xmi:type="uml:Operation" href="model.uml#_f7sc6nY5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iG2lsXLjEeilgvRHPaOOsg"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_Pbm6w3Q9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iG_IkHLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      -          <element xmi:type="uml:Operation" href="model.uml#_f7_X1XY5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iG_IkXLjEeilgvRHPaOOsg"/>
      +        <children xmi:type="notation:Shape" xmi:id="_Pbm6xHQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_f71m2HY5EeSqtc-Sb9aJnA"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_Pbm6xXQ9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iG3MwHLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      -          <element xmi:type="uml:Operation" href="model.uml#_f7sc73Y5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iG3MwXLjEeilgvRHPaOOsg"/>
      +        <children xmi:type="notation:Shape" xmi:id="_Pbm6xnQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_BCQ2oHQ9EemkGNry2_5b9w"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_Pbm6x3Q9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iG4a4HLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      -          <element xmi:type="uml:Operation" href="model.uml#_f7sc83Y5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iG4a4XLjEeilgvRHPaOOsg"/>
      +        <children xmi:type="notation:Shape" xmi:id="_Pbnh0HQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_f71m3HY5EeSqtc-Sb9aJnA"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_Pbnh0XQ9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iG4a4nLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      -          <element xmi:type="uml:Operation" href="model.uml#_f71m0XY5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iG4a43LjEeilgvRHPaOOsg"/>
      +        <children xmi:type="notation:Shape" xmi:id="_Pbnh0nQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_f7sc83Y5EeSqtc-Sb9aJnA"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_Pbnh03Q9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iG5pAHLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      -          <element xmi:type="uml:Operation" href="model.uml#_f71m1XY5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iG5pAXLjEeilgvRHPaOOsg"/>
      +        <children xmi:type="notation:Shape" xmi:id="_Pbnh1HQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_5kUJQHQ6EemkGNry2_5b9w"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_Pbnh1XQ9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iG5pAnLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      -          <element xmi:type="uml:Operation" href="model.uml#_f71m2HY5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iG5pA3LjEeilgvRHPaOOsg"/>
      +        <children xmi:type="notation:Shape" xmi:id="_Pbnh1nQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_f71m0XY5EeSqtc-Sb9aJnA"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_Pbnh13Q9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iG6QEHLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      -          <element xmi:type="uml:Operation" href="model.uml#_f71m3HY5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iG6QEXLjEeilgvRHPaOOsg"/>
      +        <children xmi:type="notation:Shape" xmi:id="_PboI4HQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_f71m5HY5EeSqtc-Sb9aJnA"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_PboI4XQ9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iG8FQHLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      +        <children xmi:type="notation:Shape" xmi:id="_PboI4nQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
                 <element xmi:type="uml:Operation" href="model.uml#_f71m4HY5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iG8FQXLjEeilgvRHPaOOsg"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_PboI43Q9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iG96cHLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      -          <element xmi:type="uml:Operation" href="model.uml#_f71m5HY5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iG96cXLjEeilgvRHPaOOsg"/>
      +        <children xmi:type="notation:Shape" xmi:id="_PboI5HQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_f7sc73Y5EeSqtc-Sb9aJnA"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_PboI5XQ9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_iG-hgHLjEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      -          <element xmi:type="uml:Operation" href="model.uml#_f7_X0nY5EeSqtc-Sb9aJnA"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_iG-hgXLjEeilgvRHPaOOsg"/>
      +        <children xmi:type="notation:Shape" xmi:id="_Pbov8HQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_GCKxEHQ7EemkGNry2_5b9w"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_Pbov8XQ9EemkGNry2_5b9w"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_YRWOQHLlEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      +        <children xmi:type="notation:Shape" xmi:id="_Pbov8nQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
                 <element xmi:type="uml:Operation" href="model.uml#_YROScHLlEeilgvRHPaOOsg"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_YRWOQXLlEeilgvRHPaOOsg"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_Pbov83Q9EemkGNry2_5b9w"/>
      +        </children>
      +        <children xmi:type="notation:Shape" xmi:id="_Pbov9HQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_f7_X1XY5EeSqtc-Sb9aJnA"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_Pbov9XQ9EemkGNry2_5b9w"/>
      +        </children>
      +        <children xmi:type="notation:Shape" xmi:id="_PbpXAHQ9EemkGNry2_5b9w" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_f7_X0nY5EeSqtc-Sb9aJnA"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_PbpXAXQ9EemkGNry2_5b9w"/>
               </children>
      -        <styles xmi:type="notation:TitleStyle" xmi:id="_fC2CJnLjEeilgvRHPaOOsg"/>
      -        <styles xmi:type="notation:SortingStyle" xmi:id="_fC2CJ3LjEeilgvRHPaOOsg"/>
      -        <styles xmi:type="notation:FilteringStyle" xmi:id="_fC2CKHLjEeilgvRHPaOOsg"/>
      -        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_fC2CKXLjEeilgvRHPaOOsg"/>
      +        <styles xmi:type="notation:TitleStyle" xmi:id="_MI3XqHQ9EemkGNry2_5b9w"/>
      +        <styles xmi:type="notation:SortingStyle" xmi:id="_MI3XqXQ9EemkGNry2_5b9w"/>
      +        <styles xmi:type="notation:FilteringStyle" xmi:id="_MI3XqnQ9EemkGNry2_5b9w"/>
      +        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_MI3Xq3Q9EemkGNry2_5b9w"/>
             </children>
      -      <children xmi:type="notation:BasicCompartment" xmi:id="_fC2CKnLjEeilgvRHPaOOsg" visible="false" type="Interface_NestedClassifierCompartment">
      -        <styles xmi:type="notation:TitleStyle" xmi:id="_fC2CK3LjEeilgvRHPaOOsg"/>
      -        <styles xmi:type="notation:SortingStyle" xmi:id="_fC2CLHLjEeilgvRHPaOOsg"/>
      -        <styles xmi:type="notation:FilteringStyle" xmi:id="_fC2CLXLjEeilgvRHPaOOsg"/>
      -        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_fC2CLnLjEeilgvRHPaOOsg"/>
      +      <children xmi:type="notation:BasicCompartment" xmi:id="_MI3XrHQ9EemkGNry2_5b9w" visible="false" type="Interface_NestedClassifierCompartment">
      +        <styles xmi:type="notation:TitleStyle" xmi:id="_MI3XrXQ9EemkGNry2_5b9w"/>
      +        <styles xmi:type="notation:SortingStyle" xmi:id="_MI3XrnQ9EemkGNry2_5b9w"/>
      +        <styles xmi:type="notation:FilteringStyle" xmi:id="_MI3Xr3Q9EemkGNry2_5b9w"/>
      +        <layoutConstraint xmi:type="notation:Bounds" xmi:id="_MI3XsHQ9EemkGNry2_5b9w"/>
             </children>
             <element xmi:type="uml:Interface" href="model.uml#_f7Zh8HY5EeSqtc-Sb9aJnA"/>
      -      <layoutConstraint xmi:type="notation:Bounds" xmi:id="_fCv7gXLjEeilgvRHPaOOsg" x="60" y="20"/>
      +      <layoutConstraint xmi:type="notation:Bounds" xmi:id="_MI2JgXQ9EemkGNry2_5b9w" x="40" y="40" height="441"/>
           </children>
           <styles xmi:type="notation:StringValueStyle" xmi:id="_WLEJIXLjEeilgvRHPaOOsg" name="diagram_compatibility_version" stringValue="1.4.0"/>
           <styles xmi:type="notation:DiagramStyle" xmi:id="_WLEJInLjEeilgvRHPaOOsg"/>
      @@ -801,13 +817,9 @@
                 <element xmi:type="uml:Operation" href="model.uml#_CgZx83WcEeSrSaxu8IGQmg"/>
                 <layoutConstraint xmi:type="notation:Location" xmi:id="_PrvYc3LnEeilgvRHPaOOsg"/>
               </children>
      -        <children xmi:type="notation:Shape" xmi:id="_PrvYdHLnEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      -          <element xmi:type="uml:Operation" href="model.uml#_CgZx93WcEeSrSaxu8IGQmg"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_PrvYdXLnEeilgvRHPaOOsg"/>
      -        </children>
      -        <children xmi:type="notation:Shape" xmi:id="_PrvYdnLnEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      -          <element xmi:type="uml:Operation" href="model.uml#_Cgf4h3WcEeSrSaxu8IGQmg"/>
      -          <layoutConstraint xmi:type="notation:Location" xmi:id="_PrvYd3LnEeilgvRHPaOOsg"/>
      +        <children xmi:type="notation:Shape" xmi:id="_ePXC8CReEeu_9PA9SBtI_Q" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_V38FACReEeu_9PA9SBtI_Q"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_ePXC8SReEeu_9PA9SBtI_Q"/>
               </children>
               <children xmi:type="notation:Shape" xmi:id="_Prv_gHLnEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
                 <element xmi:type="uml:Operation" href="model.uml#_Cgf4i3WcEeSrSaxu8IGQmg"/>
      @@ -817,19 +829,43 @@
                 <element xmi:type="uml:Operation" href="model.uml#_Cgf4jnWcEeSrSaxu8IGQmg"/>
                 <layoutConstraint xmi:type="notation:Location" xmi:id="_Prv_g3LnEeilgvRHPaOOsg"/>
               </children>
      +        <children xmi:type="notation:Shape" xmi:id="_kWmY8F_vEem_1YACnEtC1w" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_YDCVkF_vEem_1YACnEtC1w"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_kWmY8V_vEem_1YACnEtC1w"/>
      +        </children>
      +        <children xmi:type="notation:Shape" xmi:id="_PrvYdnLnEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_Cgf4h3WcEeSrSaxu8IGQmg"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_PrvYd3LnEeilgvRHPaOOsg"/>
      +        </children>
      +        <children xmi:type="notation:Shape" xmi:id="_PrvYdHLnEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_CgZx93WcEeSrSaxu8IGQmg"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_PrvYdXLnEeilgvRHPaOOsg"/>
      +        </children>
      +        <children xmi:type="notation:Shape" xmi:id="_YhE1ACRfEeu_9PA9SBtI_Q" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_TlvjcCRfEeu_9PA9SBtI_Q"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_YhE1ASRfEeu_9PA9SBtI_Q"/>
      +        </children>
               <styles xmi:type="notation:TitleStyle" xmi:id="_MK8LOXLnEeilgvRHPaOOsg"/>
               <styles xmi:type="notation:SortingStyle" xmi:id="_MK8LOnLnEeilgvRHPaOOsg"/>
               <styles xmi:type="notation:FilteringStyle" xmi:id="_MK8LO3LnEeilgvRHPaOOsg"/>
               <layoutConstraint xmi:type="notation:Bounds" xmi:id="_MK8LPHLnEeilgvRHPaOOsg"/>
             </children>
      -      <children xmi:type="notation:BasicCompartment" xmi:id="_MK8LPXLnEeilgvRHPaOOsg" visible="false" type="Interface_NestedClassifierCompartment">
      +      <children xmi:type="notation:BasicCompartment" xmi:id="_MK8LPXLnEeilgvRHPaOOsg" type="Interface_NestedClassifierCompartment">
      +        <eAnnotations xmi:type="ecore:EAnnotation" xmi:id="_J99RQF_vEem_1YACnEtC1w" source="PapyrusCSSForceValue">
      +          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_J99RQV_vEem_1YACnEtC1w" key="visible" value="true"/>
      +          <details xmi:type="ecore:EStringToStringMapEntry" xmi:id="_S0_jYF_vEem_1YACnEtC1w" key="collapsed" value="true"/>
      +        </eAnnotations>
      +        <children xmi:type="notation:Shape" xmi:id="_Ll6tkF_vEem_1YACnEtC1w" type="Enumeration_InterfaceNestedClassifierLabel">
      +          <element xmi:type="uml:Enumeration" href="model.uml#_8vfr4F_uEem_1YACnEtC1w"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_Ll6tkV_vEem_1YACnEtC1w"/>
      +        </children>
               <styles xmi:type="notation:TitleStyle" xmi:id="_MK8LPnLnEeilgvRHPaOOsg"/>
               <styles xmi:type="notation:SortingStyle" xmi:id="_MK8LP3LnEeilgvRHPaOOsg"/>
               <styles xmi:type="notation:FilteringStyle" xmi:id="_MK8LQHLnEeilgvRHPaOOsg"/>
               <layoutConstraint xmi:type="notation:Bounds" xmi:id="_MK8LQXLnEeilgvRHPaOOsg"/>
             </children>
             <element xmi:type="uml:Interface" href="model.uml#_CgTrQ3WcEeSrSaxu8IGQmg"/>
      -      <layoutConstraint xmi:type="notation:Bounds" xmi:id="_MK7kIXLnEeilgvRHPaOOsg" x="20" y="20"/>
      +      <layoutConstraint xmi:type="notation:Bounds" xmi:id="_MK7kIXLnEeilgvRHPaOOsg" x="20" y="20" width="301" height="301"/>
           </children>
           <styles xmi:type="notation:StringValueStyle" xmi:id="_KLDXEXLnEeilgvRHPaOOsg" name="diagram_compatibility_version" stringValue="1.4.0"/>
           <styles xmi:type="notation:DiagramStyle" xmi:id="_KLDXEnLnEeilgvRHPaOOsg"/>
      @@ -851,6 +887,10 @@
               <layoutConstraint xmi:type="notation:Bounds" xmi:id="_eStsF3LrEeilgvRHPaOOsg"/>
             </children>
             <children xmi:type="notation:BasicCompartment" xmi:id="_eStsGHLrEeilgvRHPaOOsg" type="Interface_OperationCompartment">
      +        <children xmi:type="notation:Shape" xmi:id="_ZHDXcJ3hEem65Yu6xvelSQ" type="Operation_InterfaceOperationLabel">
      +          <element xmi:type="uml:Operation" href="model.uml#_H_1-4J3hEem65Yu6xvelSQ"/>
      +          <layoutConstraint xmi:type="notation:Location" xmi:id="_ZHDXcZ3hEem65Yu6xvelSQ"/>
      +        </children>
               <children xmi:type="notation:Shape" xmi:id="_hWxS8HLrEeilgvRHPaOOsg" type="Operation_InterfaceOperationLabel">
                 <element xmi:type="uml:Operation" href="model.uml#_Ru1Y8HLkEeilgvRHPaOOsg"/>
                 <layoutConstraint xmi:type="notation:Location" xmi:id="_hWxS8XLrEeilgvRHPaOOsg"/>
      @@ -875,7 +915,7 @@
               <layoutConstraint xmi:type="notation:Bounds" xmi:id="_eStsIXLrEeilgvRHPaOOsg"/>
             </children>
             <element xmi:type="uml:Interface" href="model.uml#_il06sHC0EeiPSP_DaMvzsA"/>
      -      <layoutConstraint xmi:type="notation:Bounds" xmi:id="_eStFAXLrEeilgvRHPaOOsg" x="20" y="20" width="161" height="101"/>
      +      <layoutConstraint xmi:type="notation:Bounds" xmi:id="_eStFAXLrEeilgvRHPaOOsg" x="20" y="20" width="161" height="121"/>
           </children>
           <styles xmi:type="notation:StringValueStyle" xmi:id="_cm6RkXLrEeilgvRHPaOOsg" name="diagram_compatibility_version" stringValue="1.4.0"/>
           <styles xmi:type="notation:DiagramStyle" xmi:id="_cm6RknLrEeilgvRHPaOOsg"/>
      diff --git a/src/main/emf/model.uml b/src/main/emf/model.uml
      index dc1bc360..4564e109 100644
      --- a/src/main/emf/model.uml
      +++ b/src/main/emf/model.uml
      @@ -38,6 +38,10 @@
        * @version 0.23, Date: 2014-11-26
        </body>
                 </ownedComment>
      +          <nestedClassifier xmi:type="uml:Enumeration" xmi:id="_8vfr4F_uEem_1YACnEtC1w" name="Scale">
      +            <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_BwncYF_vEem_1YACnEtC1w" name="ABSOLUTE"/>
      +            <ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="_DqiycF_vEem_1YACnEtC1w" name="RELATIVE"/>
      +          </nestedClassifier>
                 <ownedOperation xmi:type="uml:Operation" xmi:id="_CgTrRXWcEeSrSaxu8IGQmg" name="add">
                   <ownedComment xmi:type="uml:Comment" xmi:id="_CgTrRnWcEeSrSaxu8IGQmg">
                     <body>
      @@ -201,6 +205,38 @@
                   </ownedComment>
                   <ownedParameter xmi:type="uml:Parameter" xmi:id="_Cgf4kHWcEeSrSaxu8IGQmg" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
                 </ownedOperation>
      +          <ownedOperation xmi:type="uml:Operation" xmi:id="_YDCVkF_vEem_1YACnEtC1w" name="getScale">
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_zfN94F_vEem_1YACnEtC1w" type="_8vfr4F_uEem_1YACnEtC1w" direction="return"/>
      +          </ownedOperation>
      +          <ownedOperation xmi:type="uml:Operation" xmi:id="_V38FACReEeu_9PA9SBtI_Q" name="isEquivalentTo">
      +            <ownedComment xmi:type="uml:Comment" xmi:id="_V38FASReEeu_9PA9SBtI_Q">
      +              <body>
      +	 * Returns the product of this {@code Quantity} with the one specified.
      +	 *
      +	 * @throws ClassCastException if the type of an element
      +     *         in the specified operation is incompatible with this
      +     *         quantity
      +     *         (&lt;a href=&quot;#optional-restrictions&quot;>optional&lt;/a>)
      +	 *
      +	 * @param that
      +	 *            the {@code Quantity} multiplier.
      +	 * @return &lt;code>this * that&lt;/code>.
      +	 </body>
      +            </ownedComment>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_V38FAiReEeu_9PA9SBtI_Q" type="_f7ir83Y5EeSqtc-Sb9aJnA" direction="return"/>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_V38FAyReEeu_9PA9SBtI_Q" name="multiplier" type="_CgTrQ3WcEeSrSaxu8IGQmg"/>
      +          </ownedOperation>
      +          <ownedOperation xmi:type="uml:Operation" xmi:id="_TlvjcCRfEeu_9PA9SBtI_Q" name="toSystemUnit">
      +            <ownedComment xmi:type="uml:Comment" xmi:id="_TlvjcSRfEeu_9PA9SBtI_Q">
      +              <body>
      +     * Returns this {@code Quantity} converted into another (compatible) {@code Unit}.
      +     *
      +     * @param unit
      +     * @return the converted result.
      +     </body>
      +            </ownedComment>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_TlvjciRfEeu_9PA9SBtI_Q" type="_CgTrQ3WcEeSrSaxu8IGQmg" direction="return"/>
      +          </ownedOperation>
               </packagedElement>
               <packagedElement xmi:type="uml:Interface" xmi:id="_f7Zh8HY5EeSqtc-Sb9aJnA" name="Unit">
                 <ownedComment xmi:type="uml:Comment" xmi:id="_f7ir4HY5EeSqtc-Sb9aJnA">
      @@ -296,6 +332,16 @@
                   </ownedComment>
                   <ownedParameter xmi:type="uml:Parameter" xmi:id="_f7ir8HY5EeSqtc-Sb9aJnA" type="_f682CnY5EeSqtc-Sb9aJnA" direction="return"/>
                 </ownedOperation>
      +          <ownedOperation xmi:type="uml:Operation" xmi:id="_f71m1XY5EeSqtc-Sb9aJnA" name="inverse">
      +            <ownedComment xmi:type="uml:Comment" xmi:id="_f71m1nY5EeSqtc-Sb9aJnA">
      +              <body>
      +     * Returns the inverse of this unit.
      +     *
      +     * @return {@code 1 / this}
      +     </body>
      +            </ownedComment>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f71m13Y5EeSqtc-Sb9aJnA" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
      +          </ownedOperation>
                 <ownedOperation xmi:type="uml:Operation" xmi:id="_f7ir8XY5EeSqtc-Sb9aJnA" name="isCompatible">
                   <ownedComment xmi:type="uml:Comment" xmi:id="_f7ir8nY5EeSqtc-Sb9aJnA">
                     <body xsi:nil="true"/>
      @@ -358,20 +404,46 @@
                   <ownedParameter xmi:type="uml:Parameter" xmi:id="_f7sc7HY5EeSqtc-Sb9aJnA" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
                   <ownedParameter xmi:type="uml:Parameter" xmi:id="_f7sc7XY5EeSqtc-Sb9aJnA" name="symbol" type="_f7ir43Y5EeSqtc-Sb9aJnA"/>
                 </ownedOperation>
      -          <ownedOperation xmi:type="uml:Operation" xmi:id="_f7sc73Y5EeSqtc-Sb9aJnA" name="shift">
      -            <ownedComment xmi:type="uml:Comment" xmi:id="_f7sc8HY5EeSqtc-Sb9aJnA">
      +          <ownedOperation xmi:type="uml:Operation" xmi:id="_f71m2HY5EeSqtc-Sb9aJnA" name="divide_double">
      +            <ownedComment xmi:type="uml:Comment" xmi:id="_f71m2XY5EeSqtc-Sb9aJnA">
                     <body xsi:nil="true"/>
                   </ownedComment>
      -            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f7sc8XY5EeSqtc-Sb9aJnA" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
      -            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f7sc8nY5EeSqtc-Sb9aJnA" name="offset" type="_f7sc7nY5EeSqtc-Sb9aJnA"/>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f71m2nY5EeSqtc-Sb9aJnA" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f71m23Y5EeSqtc-Sb9aJnA" name="divisor" type="_f7sc7nY5EeSqtc-Sb9aJnA"/>
                 </ownedOperation>
      -          <ownedOperation xmi:type="uml:Operation" xmi:id="_f7sc83Y5EeSqtc-Sb9aJnA" name="multiply">
      +          <ownedOperation xmi:type="uml:Operation" xmi:id="_BCQ2oHQ9EemkGNry2_5b9w" name="divide_num">
      +            <ownedComment xmi:type="uml:Comment" xmi:id="_BCQ2oXQ9EemkGNry2_5b9w">
      +              <body xsi:nil="true"/>
      +            </ownedComment>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_BCQ2onQ9EemkGNry2_5b9w" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_BCQ2o3Q9EemkGNry2_5b9w" name="divisor" type="_CgZx5nWcEeSrSaxu8IGQmg"/>
      +          </ownedOperation>
      +          <ownedOperation xmi:type="uml:Operation" xmi:id="_f71m3HY5EeSqtc-Sb9aJnA" name="divide">
      +            <ownedComment xmi:type="uml:Comment" xmi:id="_f71m3XY5EeSqtc-Sb9aJnA">
      +              <body>
      +     * Returns the quotient of this unit with the one specified.
      +     *
      +     * @param  that the unit divisor.
      +     * @return {@code this / that}
      +     </body>
      +            </ownedComment>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f71m3nY5EeSqtc-Sb9aJnA" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f71m33Y5EeSqtc-Sb9aJnA" name="divisor" type="_f7Zh8HY5EeSqtc-Sb9aJnA"/>
      +          </ownedOperation>
      +          <ownedOperation xmi:type="uml:Operation" xmi:id="_f7sc83Y5EeSqtc-Sb9aJnA" name="multiply_double">
                   <ownedComment xmi:type="uml:Comment" xmi:id="_f7sc9HY5EeSqtc-Sb9aJnA">
                     <body xsi:nil="true"/>
                   </ownedComment>
                   <ownedParameter xmi:type="uml:Parameter" xmi:id="_f7sc9XY5EeSqtc-Sb9aJnA" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
                   <ownedParameter xmi:type="uml:Parameter" xmi:id="_f71m0HY5EeSqtc-Sb9aJnA" name="multiplier" type="_f7sc7nY5EeSqtc-Sb9aJnA"/>
                 </ownedOperation>
      +          <ownedOperation xmi:type="uml:Operation" xmi:id="_5kUJQHQ6EemkGNry2_5b9w" name="multiply_num">
      +            <ownedComment xmi:type="uml:Comment" xmi:id="_5kUJQXQ6EemkGNry2_5b9w">
      +              <body xsi:nil="true"/>
      +            </ownedComment>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_5kUJQnQ6EemkGNry2_5b9w" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_5kUJQ3Q6EemkGNry2_5b9w" name="multiplier" type="_CgZx5nWcEeSrSaxu8IGQmg"/>
      +          </ownedOperation>
                 <ownedOperation xmi:type="uml:Operation" xmi:id="_f71m0XY5EeSqtc-Sb9aJnA" name="multiply">
                   <ownedComment xmi:type="uml:Comment" xmi:id="_f71m0nY5EeSqtc-Sb9aJnA">
                     <body>
      @@ -384,34 +456,17 @@
                   <ownedParameter xmi:type="uml:Parameter" xmi:id="_f71m03Y5EeSqtc-Sb9aJnA" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
                   <ownedParameter xmi:type="uml:Parameter" xmi:id="_f71m1HY5EeSqtc-Sb9aJnA" name="multiplier" type="_f7Zh8HY5EeSqtc-Sb9aJnA"/>
                 </ownedOperation>
      -          <ownedOperation xmi:type="uml:Operation" xmi:id="_f71m1XY5EeSqtc-Sb9aJnA" name="inverse">
      -            <ownedComment xmi:type="uml:Comment" xmi:id="_f71m1nY5EeSqtc-Sb9aJnA">
      -              <body>
      -     * Returns the inverse of this unit.
      -     *
      -     * @return {@code 1 / this}
      -     </body>
      -            </ownedComment>
      -            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f71m13Y5EeSqtc-Sb9aJnA" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
      -          </ownedOperation>
      -          <ownedOperation xmi:type="uml:Operation" xmi:id="_f71m2HY5EeSqtc-Sb9aJnA" name="divide">
      -            <ownedComment xmi:type="uml:Comment" xmi:id="_f71m2XY5EeSqtc-Sb9aJnA">
      -              <body xsi:nil="true"/>
      -            </ownedComment>
      -            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f71m2nY5EeSqtc-Sb9aJnA" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
      -            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f71m23Y5EeSqtc-Sb9aJnA" name="divisor" type="_f7sc7nY5EeSqtc-Sb9aJnA"/>
      -          </ownedOperation>
      -          <ownedOperation xmi:type="uml:Operation" xmi:id="_f71m3HY5EeSqtc-Sb9aJnA" name="divide">
      -            <ownedComment xmi:type="uml:Comment" xmi:id="_f71m3XY5EeSqtc-Sb9aJnA">
      +          <ownedOperation xmi:type="uml:Operation" xmi:id="_f71m5HY5EeSqtc-Sb9aJnA" name="pow">
      +            <ownedComment xmi:type="uml:Comment" xmi:id="_f71m5XY5EeSqtc-Sb9aJnA">
                     <body>
      -     * Returns the quotient of this unit with the one specified.
      +     * Returns a unit equals to this unit raised to an exponent.
            *
      -     * @param  that the unit divisor.
      -     * @return {@code this / that}
      +     * @param  n the exponent.
      +     * @return the result of raising this unit to the exponent.
            </body>
                   </ownedComment>
      -            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f71m3nY5EeSqtc-Sb9aJnA" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
      -            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f71m33Y5EeSqtc-Sb9aJnA" name="divisor" type="_f7Zh8HY5EeSqtc-Sb9aJnA"/>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f7_X0HY5EeSqtc-Sb9aJnA" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f7_X0XY5EeSqtc-Sb9aJnA" name="n" type="_f6zFDHY5EeSqtc-Sb9aJnA"/>
                 </ownedOperation>
                 <ownedOperation xmi:type="uml:Operation" xmi:id="_f71m4HY5EeSqtc-Sb9aJnA" name="root">
                   <ownedComment xmi:type="uml:Comment" xmi:id="_f71m4XY5EeSqtc-Sb9aJnA">
      @@ -427,8 +482,22 @@
                   <ownedParameter xmi:type="uml:Parameter" xmi:id="_f71m4nY5EeSqtc-Sb9aJnA" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
                   <ownedParameter xmi:type="uml:Parameter" xmi:id="_f71m43Y5EeSqtc-Sb9aJnA" name="n" type="_f6zFDHY5EeSqtc-Sb9aJnA"/>
                 </ownedOperation>
      -          <ownedOperation xmi:type="uml:Operation" xmi:id="_f71m5HY5EeSqtc-Sb9aJnA" name="pow">
      -            <ownedComment xmi:type="uml:Comment" xmi:id="_f71m5XY5EeSqtc-Sb9aJnA">
      +          <ownedOperation xmi:type="uml:Operation" xmi:id="_f7sc73Y5EeSqtc-Sb9aJnA" name="shift">
      +            <ownedComment xmi:type="uml:Comment" xmi:id="_f7sc8HY5EeSqtc-Sb9aJnA">
      +              <body xsi:nil="true"/>
      +            </ownedComment>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f7sc8XY5EeSqtc-Sb9aJnA" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f7sc8nY5EeSqtc-Sb9aJnA" name="offset" type="_f7sc7nY5EeSqtc-Sb9aJnA"/>
      +          </ownedOperation>
      +          <ownedOperation xmi:type="uml:Operation" xmi:id="_GCKxEHQ7EemkGNry2_5b9w" name="shift_num">
      +            <ownedComment xmi:type="uml:Comment" xmi:id="_GCKxEXQ7EemkGNry2_5b9w">
      +              <body xsi:nil="true"/>
      +            </ownedComment>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_GCKxEnQ7EemkGNry2_5b9w" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_GCKxE3Q7EemkGNry2_5b9w" name="offset" type="_CgZx5nWcEeSrSaxu8IGQmg"/>
      +          </ownedOperation>
      +          <ownedOperation xmi:type="uml:Operation" xmi:id="_YROScHLlEeilgvRHPaOOsg" name="prefix">
      +            <ownedComment xmi:type="uml:Comment" xmi:id="_YROScXLlEeilgvRHPaOOsg">
                     <body>
            * Returns a unit equals to this unit raised to an exponent.
            *
      @@ -436,23 +505,8 @@
            * @return the result of raising this unit to the exponent.
            </body>
                   </ownedComment>
      -            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f7_X0HY5EeSqtc-Sb9aJnA" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
      -            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f7_X0XY5EeSqtc-Sb9aJnA" name="n" type="_f6zFDHY5EeSqtc-Sb9aJnA"/>
      -          </ownedOperation>
      -          <ownedOperation xmi:type="uml:Operation" xmi:id="_f7_X0nY5EeSqtc-Sb9aJnA" name="toString">
      -            <ownedComment xmi:type="uml:Comment" xmi:id="_f7_X03Y5EeSqtc-Sb9aJnA">
      -              <body>
      -     * Returns a string representation of this unit. The string representation may
      -     * be the unit {@linkplain #getSymbol() symbol}, or may be some representation
      -     * of {@linkplain #getBaseUnits() base units}, multiplication factor and
      -     * offset if any. The string may be localized at implementation choice.
      -     *
      -     * @return the (eventually localized) string representation of this unit.
      -     *
      -     * @see #getSymbol()
      -     </body>
      -            </ownedComment>
      -            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f7_X1HY5EeSqtc-Sb9aJnA" type="_f7ir43Y5EeSqtc-Sb9aJnA" direction="return"/>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_YROScnLlEeilgvRHPaOOsg" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_YROSc3LlEeilgvRHPaOOsg" name="prefix" type="_il06sHC0EeiPSP_DaMvzsA"/>
                 </ownedOperation>
                 <ownedOperation xmi:type="uml:Operation" xmi:id="_f7_X1XY5EeSqtc-Sb9aJnA" name="transform">
                   <ownedComment xmi:type="uml:Comment" xmi:id="_f7_X1nY5EeSqtc-Sb9aJnA">
      @@ -472,17 +526,27 @@
                   <ownedParameter xmi:type="uml:Parameter" xmi:id="_f7_X13Y5EeSqtc-Sb9aJnA" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
                   <ownedParameter xmi:type="uml:Parameter" xmi:id="_f7_X2HY5EeSqtc-Sb9aJnA" name="converter" type="_f8JI0HY5EeSqtc-Sb9aJnA"/>
                 </ownedOperation>
      -          <ownedOperation xmi:type="uml:Operation" xmi:id="_YROScHLlEeilgvRHPaOOsg" name="prefix">
      -            <ownedComment xmi:type="uml:Comment" xmi:id="_YROScXLlEeilgvRHPaOOsg">
      +          <ownedOperation xmi:type="uml:Operation" xmi:id="_f7_X0nY5EeSqtc-Sb9aJnA" name="toString">
      +            <ownedComment xmi:type="uml:Comment" xmi:id="_f7_X03Y5EeSqtc-Sb9aJnA">
                     <body>
      -     * Returns a unit equals to this unit raised to an exponent.
      +     * Returns a string representation of this unit. The string representation may
      +     * be the unit {@linkplain #getSymbol() symbol}, or may be some representation
      +     * of {@linkplain #getBaseUnits() base units}, multiplication factor and
      +     * offset if any. The string may be localized at implementation choice.
            *
      -     * @param  n the exponent.
      -     * @return the result of raising this unit to the exponent.
      +     * @return the (eventually localized) string representation of this unit.
      +     *
      +     * @see #getSymbol()
            </body>
                   </ownedComment>
      -            <ownedParameter xmi:type="uml:Parameter" xmi:id="_YROScnLlEeilgvRHPaOOsg" type="_f7Zh8HY5EeSqtc-Sb9aJnA" direction="return"/>
      -            <ownedParameter xmi:type="uml:Parameter" xmi:id="_YROSc3LlEeilgvRHPaOOsg" name="prefix" type="_il06sHC0EeiPSP_DaMvzsA"/>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_f7_X1HY5EeSqtc-Sb9aJnA" type="_f7ir43Y5EeSqtc-Sb9aJnA" direction="return"/>
      +          </ownedOperation>
      +          <ownedOperation xmi:type="uml:Operation" xmi:id="_cXMTUCRREeu_9PA9SBtI_Q" name="isEquivalentTo">
      +            <ownedComment xmi:type="uml:Comment" xmi:id="_cXMTUSRREeu_9PA9SBtI_Q">
      +              <body xsi:nil="true"/>
      +            </ownedComment>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_cXMTUiRREeu_9PA9SBtI_Q" type="_f7ir83Y5EeSqtc-Sb9aJnA" direction="return"/>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_cXMTUyRREeu_9PA9SBtI_Q" name="that" type="_f7Zh8HY5EeSqtc-Sb9aJnA"/>
                 </ownedOperation>
               </packagedElement>
               <packagedElement xmi:type="uml:Interface" xmi:id="_f6zFAHY5EeSqtc-Sb9aJnA" name="Dimension">
      @@ -565,7 +629,7 @@
                 </ownedOperation>
               </packagedElement>
               <packagedElement xmi:type="uml:Interface" xmi:id="_il06sHC0EeiPSP_DaMvzsA" name="Prefix">
      -          <ownedOperation xmi:type="uml:Operation" xmi:id="_Ru1Y8HLkEeilgvRHPaOOsg" name="getSymbol">
      +          <ownedOperation xmi:type="uml:Operation" xmi:id="_Ru1Y8HLkEeilgvRHPaOOsg" name="getName">
                   <ownedComment xmi:type="uml:Comment" xmi:id="_Ru1Y8XLkEeilgvRHPaOOsg">
                     <body>
            * Returns the symbol (if any) of this unit.
      @@ -580,8 +644,23 @@
                   </ownedComment>
                   <ownedParameter xmi:type="uml:Parameter" xmi:id="_Ru1Y8nLkEeilgvRHPaOOsg" type="_f7ir43Y5EeSqtc-Sb9aJnA" direction="return"/>
                 </ownedOperation>
      -          <ownedOperation xmi:type="uml:Operation" xmi:id="_qCJL0HLkEeilgvRHPaOOsg" name="getBase">
      -            <ownedParameter xmi:type="uml:Parameter" xmi:id="_ue7gMHLkEeilgvRHPaOOsg" name="int" type="_f6zFDHY5EeSqtc-Sb9aJnA" direction="return"/>
      +          <ownedOperation xmi:type="uml:Operation" xmi:id="_H_1-4J3hEem65Yu6xvelSQ" name="getSymbol">
      +            <ownedComment xmi:type="uml:Comment" xmi:id="_H_1-4Z3hEem65Yu6xvelSQ">
      +              <body>
      +     * Returns the symbol (if any) of this unit.
      +     * This method returns {@code null} if this unit has no specific symbol associated with.
      +     *
      +     * @return this unit symbol, or {@code null} if this unit has not
      +     *         specific symbol associated with (e.g. product of units).
      +     *
      +     * @see #toString()
      +     * @see UnitFormat
      +     </body>
      +            </ownedComment>
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_H_1-4p3hEem65Yu6xvelSQ" type="_f7ir43Y5EeSqtc-Sb9aJnA" direction="return"/>
      +          </ownedOperation>
      +          <ownedOperation xmi:type="uml:Operation" xmi:id="_qCJL0HLkEeilgvRHPaOOsg" name="getValue">
      +            <ownedParameter xmi:type="uml:Parameter" xmi:id="_ue7gMHLkEeilgvRHPaOOsg" name="int" type="_CgZx5nWcEeSrSaxu8IGQmg" direction="return"/>
                 </ownedOperation>
                 <ownedOperation xmi:type="uml:Operation" xmi:id="_AP61kHLlEeilgvRHPaOOsg" name="getExponent">
                   <ownedParameter xmi:type="uml:Parameter" xmi:id="_AP7coHLlEeilgvRHPaOOsg" name="int" type="_f6zFDHY5EeSqtc-Sb9aJnA" direction="return"/>
      @@ -1148,7 +1227,7 @@
                   <ownedOperation xmi:type="uml:Operation" xmi:id="_VjF_fnY7EeSqtc-Sb9aJnA" name="getUnitFormat">
                     <ownedComment xmi:type="uml:Comment" xmi:id="_VjF_f3Y7EeSqtc-Sb9aJnA">
                       <body>
      -     * Returns the default &lt;a href=&quot;http://www.unitsofmeasure.org/&quot;>UCUM&lt;/a>
      +     * Returns the default &lt;a href=&quot;http://www.ucum.org/&quot;>UCUM&lt;/a>
            * unit format.
            *
            * @return &lt;code>getUnitFormat(&quot;UCUM&quot;)&lt;/code>
      @@ -2090,7 +2169,7 @@
                   <ownedOperation xmi:type="uml:Operation" xmi:id="_fLXNAXonEeS9Gr9yPtn_zA" name="toString" visibility="public">
                     <ownedComment xmi:type="uml:Comment" xmi:id="_fLXNAnonEeS9Gr9yPtn_zA">
                       <body>
      -	 * Returns the standard &lt;a href=&quot;http://unitsofmeasure.org/&quot;>UCUM&lt;/a>
      +	 * Returns the standard &lt;a href=&quot;http://ucum.org/&quot;>UCUM&lt;/a>
       	 * representation of this physics unit. The string produced for a given unit
       	 * is always the same; it is not affected by the locale. It can be used as a
       	 * canonical string representation for exchanging units, or as a key for a
      diff --git a/src/main/java/javax/measure/BinaryPrefix.java b/src/main/java/javax/measure/BinaryPrefix.java
      index e72f5c07..606e8414 100644
      --- a/src/main/java/javax/measure/BinaryPrefix.java
      +++ b/src/main/java/javax/measure/BinaryPrefix.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -30,10 +30,33 @@
       package javax.measure;
       
       /**
      - * Provides support for common binary prefixes to be used by units.
      + * Provides support for common binary prefixes to be used by units. For example:
      + * <pre>
      + * {@code import static systems.uom.unicode.CLDR.*;  // Static import (from Unicode System).
      + * import static javax.measure.BinaryPrefix.*; // Static import.
      + * import javax.measure.*;
      + * import systems.uom.quantity.Information; // (from Systems Quantities)
      + * ...
      + * Unit<Information> MEBIT  = MEBI(BIT);
      + * Unit<Information> GIBYTE = GIBI(BYTE);} 
      + * </pre>
      + * You could also apply <code>Unit.prefix</code>:
      + * <pre>
      + * {@code ...
      + * Unit<Information> MEBIT  = BIT.prefix(MEBI);
      + * Unit<Information> GIBYTE = BYTE.prefix(GIBI);}
      + * </pre>
      + * 
      + * <p>
      + * <b>Do not use ordinal() to obtain the numeric representation of BinaryPrefix. Use getValue() and getExponent() instead.</b>
      + * </p>
      + * 
      + * <dl>
      + * <dt><span class="strong">Implementation Requirements</span></dt><dd>This is an immutable and thread-safe enum.</dd>
      + * </dl> 
        *
        * @author <a href="mailto:werner@units.tech">Werner Keil</a>
      - * @version 1.5, March 20, 2019
      + * @version 2.3, October 31, 2023
        * @see <a href="https://en.wikipedia.org/wiki/Binary_prefix">Wikipedia: Binary Prefix</a>
        * @since 2.0
        */
      @@ -88,7 +111,7 @@ private BinaryPrefix(String symbol, int exponent) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.multiply(1024)</code>.
      +     * @return <code>unit.prefix(1024)</code>.
            */
           public static <Q extends Quantity<Q>> Unit<Q> KIBI(Unit<Q> unit) {
               return unit.prefix(KIBI);
      @@ -101,7 +124,7 @@ public static <Q extends Quantity<Q>> Unit<Q> KIBI(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.multiply(1048576)</code>.
      +     * @return <code>unit.prefix(1024<sup>2</sup>)</code>.
            */
           public static <Q extends Quantity<Q>> Unit<Q> MEBI(Unit<Q> unit) {
               return unit.prefix(MEBI);
      @@ -114,7 +137,7 @@ public static <Q extends Quantity<Q>> Unit<Q> MEBI(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.multiply(1073741824)</code>.
      +     * @return <code>unit.prefix(1024<sup>3</sup>)</code>.
            */
           public static <Q extends Quantity<Q>> Unit<Q> GIBI(Unit<Q> unit) {
               return unit.prefix(GIBI);
      @@ -127,7 +150,7 @@ public static <Q extends Quantity<Q>> Unit<Q> GIBI(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.multiply(1099511627776L)</code>.
      +     * @return <code>unit.prefix(1024<sup>4</sup>)</code>.
            */
           public static <Q extends Quantity<Q>> Unit<Q> TEBI(Unit<Q> unit) {
               return unit.prefix(TEBI);
      @@ -140,7 +163,7 @@ public static <Q extends Quantity<Q>> Unit<Q> TEBI(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.multiply(1125899906842624L)</code>.
      +     * @return <code>unit.prefix(1024<sup>5</sup>)</code>.
            */
           public static <Q extends Quantity<Q>> Unit<Q> PEBI(Unit<Q> unit) {
               return unit.prefix(PEBI);
      @@ -153,7 +176,7 @@ public static <Q extends Quantity<Q>> Unit<Q> PEBI(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.multiply(1152921504606846976L)</code>.
      +     * @return <code>unit.prefix(1024<sup>6</sup>)</code>.
            */
           public static <Q extends Quantity<Q>> Unit<Q> EXBI(Unit<Q> unit) {
               return unit.prefix(EXBI);
      @@ -166,7 +189,7 @@ public static <Q extends Quantity<Q>> Unit<Q> EXBI(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.multiply(1152921504606846976d)</code>.
      +     * @return <code>unit.prefix(1024<sup>7</sup>)</code>.
            */
           public static <Q extends Quantity<Q>> Unit<Q> ZEBI(Unit<Q> unit) {
               return unit.prefix(ZEBI);
      @@ -179,7 +202,7 @@ public static <Q extends Quantity<Q>> Unit<Q> ZEBI(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.multiply(1208925819614629174706176d)</code>.
      +     * @return <code>unit.prefix(1024<sup>8</sup>)</code>.
            */
           public static <Q extends Quantity<Q>> Unit<Q> YOBI(Unit<Q> unit) {
               return unit.prefix(YOBI);
      @@ -196,15 +219,15 @@ public String getSymbol() {
           }
       
           /**
      -     * Base part of the associated factor in base^exponent representation.
      +     * Base part of the associated factor in {@code base^exponent} representation. For binary prefix, this is always 1024.
            */
           @Override
      -    public int getBase() {
      +    public Integer getValue() {
               return 1024;
           }
       
           /**
      -     * Exponent part of the associated factor in base^exponent representation.
      +     * Exponent part of the associated factor in {@code base^exponent} representation.
            */
           @Override
           public int getExponent() {
      diff --git a/src/main/java/javax/measure/Dimension.java b/src/main/java/javax/measure/Dimension.java
      index 34725a6b..c10a4ac5 100644
      --- a/src/main/java/javax/measure/Dimension.java
      +++ b/src/main/java/javax/measure/Dimension.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/IncommensurableException.java b/src/main/java/javax/measure/IncommensurableException.java
      index 1a4a581b..9f804599 100644
      --- a/src/main/java/javax/measure/IncommensurableException.java
      +++ b/src/main/java/javax/measure/IncommensurableException.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/spi/UnitFormatService.java b/src/main/java/javax/measure/MeasurementError.java
      similarity index 52%
      rename from src/main/java/javax/measure/spi/UnitFormatService.java
      rename to src/main/java/javax/measure/MeasurementError.java
      index c62c3bfb..a44d2174 100644
      --- a/src/main/java/javax/measure/spi/UnitFormatService.java
      +++ b/src/main/java/javax/measure/MeasurementError.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -27,50 +27,63 @@
        * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
        * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
        */
      -package javax.measure.spi;
      -
      -import java.util.Set;
      -
      -import javax.measure.format.UnitFormat;
      +package javax.measure;
       
       /**
      - * This interface represent the service to obtain {@link UnitFormat} instances.<br>
      - * <br>
      - * <b>Note:</b> This parent interface remains separate for backward-compatibility, it will be merged into {@link FormatService} in a future version.
      + * This error is used to indicate serious problems with creating, retrieving and manipulating units of measurement objects.
        *
      - * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      + * <dl>
      + * <dt><span class="strong">Implementation Requirements:</span></dt>
      + * <dd>This class is intended for use in a single thread. Exception thrown when errors occur during Units of Measurement operations.</dd>
      + * </dl>
      + * 
        * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      - * @version 1.2.2, March 11, 2019
      - * @since 1.0
      + * @version 2.2, Feb 3, 2021
      + * @since 2.1
        */
      -public interface UnitFormatService {
      +public class MeasurementError extends Error {
       
           /**
      -     * Returns the default unit format.
      -     *
      -     * It is up to implementations what to consider a suitable default. For some (locale-sensitive) implementations it may be a unit format based on
      -     * {@code Locale.current()} while others may return {@code getUnitFormat("Simple")} or {@code getUnitFormat("ISO")}.
      -     *
      -     * @return the default {@link UnitFormat} implementation.
      +	 * 
      +	 */
      +    private static final long serialVersionUID = -412360965273525777L;
      +
      +    /**
      +     * Constructs a {@code MeasurementError} with no detail message.
            */
      -    UnitFormat getUnitFormat();
      +    public MeasurementError() {
      +        super();
      +    }
       
           /**
      -     * Returns the unit format having the specified name or {@code null} if none.
      +     * Constructs a {@code MeasurementError} with the specified detail message.
            *
      -     * For example {@code getUnitFormat("Simple")} to return a simple {@link UnitFormat} implementation.
      +     * @param message
      +     *            the detail message.
      +     */
      +    public MeasurementError(final String message) {
      +        super(message);
      +    }
      +
      +    /**
      +     * Constructs a {@code MeasurementError} with the given cause.
            *
      -     * @param name
      -     *          the name of the format.
      -     * @return the corresponding unit format.
      +     * @param cause
      +     *            the cause of this exception, or {@code null} if none.
            */
      -    UnitFormat getUnitFormat(String name);
      +    public MeasurementError(final Throwable cause) {
      +        super(cause);
      +    }
       
           /**
      -     * Gets a list with available format names for this format service.
      +     * Constructs a {@code MeasurementError} with the specified detail message and cause.
            *
      -     * @return list of available formats, never null.
      -     * @deprecated use in FormatService instead.
      +     * @param message
      +     *            the detail message.
      +     * @param cause
      +     *            the cause, may be {@code null}
            */
      -    Set<String> getAvailableFormatNames();
      +    public MeasurementError(final String message, final Throwable cause) {
      +        super(message, cause);
      +    }
       }
      diff --git a/src/main/java/javax/measure/MeasurementException.java b/src/main/java/javax/measure/MeasurementException.java
      index 32971a04..f397195f 100644
      --- a/src/main/java/javax/measure/MeasurementException.java
      +++ b/src/main/java/javax/measure/MeasurementException.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -40,10 +40,13 @@
        * This exception is used to indicate problems with creating, retrieving and manipulating units of measurement objects.
        * </p>
        *
      - * implSpec This class is intended for use in a single thread. Exception thrown when errors occur during Units of Measurement operations.
      + * <dl>
      + * <dt><span class="strong">Implementation Requirements:</span></dt>
      + * <dd>This class is intended for use in a single thread. Exception thrown when errors occur during Units of Measurement operations.</dd>
      + * </dl>
        *
        * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      - * @version 1.0, Aug 8, 2016
      + * @version 2.0, Jul 4, 2020
        * @since 1.0
        */
       public class MeasurementException extends RuntimeException {
      diff --git a/src/main/java/javax/measure/MetricPrefix.java b/src/main/java/javax/measure/MetricPrefix.java
      index e76dfa8f..13dd782e 100644
      --- a/src/main/java/javax/measure/MetricPrefix.java
      +++ b/src/main/java/javax/measure/MetricPrefix.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -30,27 +30,44 @@
       package javax.measure;
       
       /**
      - * Provides support for the 20 prefixes used in the metric system (decimal multiples and submultiples of units). For example:
      + * Provides support for the 24 prefixes used in the metric system (decimal multiples and submultiples of units). For example:
        *
        * <pre>
      - * {@code
      - *     import static tech.units.indriya.unit.Units.*;  // Static import.
      - *     import static javax.measure.MetricPrefix.*; // Static import.
      - *     import javax.measure.*;
      - *     import javax.measure.quantity.*;
      - *     ...
      - *     Unit<Pressure> HECTOPASCAL = HECTO(PASCAL);
      - *     Unit<Length> KILOMETRE = KILO(METRE);}
      + * {@code import static tech.units.indriya.unit.Units.*;  // Static import (from the RI).
      + * import static javax.measure.MetricPrefix.*; // Static import.
      + * import javax.measure.*;
      + * import javax.measure.quantity.*;
      + * ...
      + * Unit<Pressure> HECTOPASCAL = HECTO(PASCAL);
      + * Unit<Length> KILOMETRE = KILO(METRE);} 
        * </pre>
      - *
      - * @see <a href="http://en.wikipedia.org/wiki/Metric_prefix">Wikipedia: Metric Prefix</a>
      + * You could also apply <code>Unit.prefix</code>:
      + * <pre>
      + * {@code ...
      + * Unit<Pressure> HECTOPASCAL = PASCAL.prefix(HECTO);
      + * Unit<Length> KILOMETRE = METRE.prefix(KILO);}
      + * </pre>
      + * 
      + * <p>
      + * <b>Do not use ordinal() to obtain the numeric representation of MetricPrefix. Use getValue() and getExponent() instead.</b>
      + * </p>
      + * 
      + * <dl>
      + * <dt><span class="strong">Implementation Requirements</span></dt><dd>This is an immutable and thread-safe enum.</dd>
      + * </dl>
      + * 
      + * @see <a href="https://en.wikipedia.org/wiki/Metric_prefix">Wikipedia: Metric Prefix</a>
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
        * @author <a href="mailto:werner@units.tech">Werner Keil</a>
      - * @version 1.10, March 20, 2019
      + * @version 2.4, October 31, 2023
        * @since 2.0
        */
       public enum MetricPrefix implements Prefix {
      -    /** Prefix for 10<sup>24</sup>. */
      +	/** Prefix for 10<sup>30</sup>. */
      +    QUETTA("Q", 30),
      +	/** Prefix for 10<sup>27</sup>. */
      +    RONNA("R", 27),
      +	/** Prefix for 10<sup>24</sup>. */
           YOTTA("Y", 24),
           /** Prefix for 10<sup>21</sup>. */
           ZETTA("Z", 21),
      @@ -60,25 +77,37 @@ public enum MetricPrefix implements Prefix {
           PETA("P", 15),
           /** Prefix for 10<sup>12</sup>. */
           TERA("T", 12),
      -    /** Prefix for 10<sup>9</sup>. */
      +    /** Prefix for 10<sup>9</sup>.
      +     * @see <a href="https://en.wikipedia.org/wiki/Giga-">Wikipedia: Giga</a>  
      +     */
           GIGA("G", 9),
      -    /** Prefix for 10<sup>6</sup>. */
      +    /** Prefix for 10<sup>6</sup>. 
      +     * @see <a href="https://en.wikipedia.org/wiki/Mega-">Wikipedia: Mega</a> */
           MEGA("M", 6),
      -    /** Prefix for 10<sup>3</sup>. */
      +    /** Prefix for 10<sup>3</sup>.
      +     * @see <a href="https://en.wikipedia.org/wiki/Kilo-">Wikipedia: Kilo</a> 
      +     */
           KILO("k", 3),
      -    /** Prefix for 10<sup>2</sup>. */
      +    /** Prefix for 10<sup>2</sup>. 
      +     * @see <a href="https://en.wikipedia.org/wiki/Hecto-">Wikipedia: Hecto</a> */
           HECTO("h", 2),
      -    /** Prefix for 10<sup>1</sup>. */
      -    DEKA("da", 1),
      -    /** Prefix for 10<sup>-1</sup>. */
      +    /** Prefix for 10<sup>1</sup>. 
      +     * @see <a href="https://en.wikipedia.org/wiki/Deca-">Wikipedia: Deca</a> */
      +    DECA("da", 1),
      +    /** Prefix for 10<sup>-1</sup>. 
      +     * @see <a href="https://en.wikipedia.org/wiki/Deci-">Wikipedia: Deci</a> */
           DECI("d", -1),
      -    /** Prefix for 10<sup>-2</sup>. */
      +    /** Prefix for 10<sup>-2</sup>.
      +     * @see <a href="https://en.wikipedia.org/wiki/Centi-">Wikipedia: Centi</a> */     
           CENTI("c", -2),
      -    /** Prefix for 10<sup>-3</sup>. */
      +    /** Prefix for 10<sup>-3</sup>.
      +     * @see <a href="https://en.wikipedia.org/wiki/Milli-">Wikipedia: Milli</a> */
           MILLI("m", -3),
      -    /** Prefix for 10<sup>-6</sup>. */
      -    MICRO("µ", -6),
      -    /** Prefix for 10<sup>-9</sup>. */
      +    /** Prefix for 10<sup>-6</sup>.
      +     * @see <a href="https://en.wikipedia.org/wiki/Micro-">Wikipedia: Micro</a> */
      +    MICRO("\u00b5", -6),
      +    /** Prefix for 10<sup>-9</sup>.
      +     * @see <a href="https://en.wikipedia.org/wiki/Nano-">Wikipedia: Nano</a> */
           NANO("n", -9),
           /** Prefix for 10<sup>-12</sup>. */
           PICO("p", -12),
      @@ -89,7 +118,11 @@ public enum MetricPrefix implements Prefix {
           /** Prefix for 10<sup>-21</sup>. */
           ZEPTO("z", -21),
           /** Prefix for 10<sup>-24</sup>. */
      -    YOCTO("y", -24);
      +    YOCTO("y", -24),
      +	/** Prefix for 10<sup>-27</sup>. */
      +    RONTO("r", -27),
      +    /** Prefix for 10<sup>-30</sup>. */
      +    QUECTO("q", -30);
       
           /**
            * The symbol of this prefix, as returned by {@link #getSymbol}.
      @@ -116,6 +149,34 @@ private MetricPrefix(String symbol, int exponent) {
               this.symbol = symbol;
               this.exponent = exponent;
           }
      +    
      +    /**
      +     * Returns the specified unit multiplied by the factor <code>10<sup>30</sup></code>
      +     *
      +     * @param <Q>
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return <code>unit.prefix(1e30)</code>.
      +     * @see #QUETTA
      +     */
      +    public static <Q extends Quantity<Q>> Unit<Q> QUETTA(Unit<Q> unit) {
      +        return unit.prefix(QUETTA);
      +    }
      +    
      +    /**
      +     * Returns the specified unit multiplied by the factor <code>10<sup>27</sup></code>
      +     *
      +     * @param <Q>
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return <code>unit.prefix(1e27)</code>.
      +     * @see #RONNA
      +     */
      +    public static <Q extends Quantity<Q>> Unit<Q> RONNA(Unit<Q> unit) {
      +        return unit.prefix(RONNA);
      +    }
       
           /**
            * Returns the specified unit multiplied by the factor <code>10<sup>24</sup></code>
      @@ -124,7 +185,8 @@ private MetricPrefix(String symbol, int exponent) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e24)</code>.
      +     * @return <code>unit.prefix(1e24)</code>.
      +     * @see #YOTTA
            */
           public static <Q extends Quantity<Q>> Unit<Q> YOTTA(Unit<Q> unit) {
               return unit.prefix(YOTTA);
      @@ -137,7 +199,8 @@ public static <Q extends Quantity<Q>> Unit<Q> YOTTA(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e21)</code>.
      +     * @return <code>unit.prefix(1e21)</code>.
      +     * @see #ZETTA
            */
           public static <Q extends Quantity<Q>> Unit<Q> ZETTA(Unit<Q> unit) {
               return unit.prefix(ZETTA);
      @@ -150,7 +213,8 @@ public static <Q extends Quantity<Q>> Unit<Q> ZETTA(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e18)</code>.
      +     * @return <code>unit.prefix(1e18)</code>.
      +     * @see #EXA
            */
           public static <Q extends Quantity<Q>> Unit<Q> EXA(Unit<Q> unit) {
               return unit.prefix(EXA);
      @@ -163,7 +227,8 @@ public static <Q extends Quantity<Q>> Unit<Q> EXA(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e15)</code>.
      +     * @return <code>unit.prefix(1e15)</code>.
      +     * @see #PETA
            */
           public static <Q extends Quantity<Q>> Unit<Q> PETA(Unit<Q> unit) {
               return unit.prefix(PETA);
      @@ -176,7 +241,8 @@ public static <Q extends Quantity<Q>> Unit<Q> PETA(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e12)</code>.
      +     * @return <code>unit.prefix(1e12)</code>.
      +     * @see #TERA
            */
           public static <Q extends Quantity<Q>> Unit<Q> TERA(Unit<Q> unit) {
               return unit.prefix(TERA);
      @@ -189,7 +255,8 @@ public static <Q extends Quantity<Q>> Unit<Q> TERA(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e9)</code>.
      +     * @return <code>unit.prefix(1e9)</code>.
      +     * @see #GIGA
            */
           public static <Q extends Quantity<Q>> Unit<Q> GIGA(Unit<Q> unit) {
               return unit.prefix(GIGA);
      @@ -202,7 +269,8 @@ public static <Q extends Quantity<Q>> Unit<Q> GIGA(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e6)</code>.
      +     * @return <code>unit.prefix(1e6)</code>.
      +     * @see #MEGA
            */
           public static <Q extends Quantity<Q>> Unit<Q> MEGA(Unit<Q> unit) {
               return unit.prefix(MEGA);
      @@ -215,7 +283,8 @@ public static <Q extends Quantity<Q>> Unit<Q> MEGA(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e3)</code>.
      +     * @return <code>unit.prefix(1e3)</code>.
      +     * @see #KILO
            */
           public static <Q extends Quantity<Q>> Unit<Q> KILO(Unit<Q> unit) {
               return unit.prefix(KILO);
      @@ -228,7 +297,8 @@ public static <Q extends Quantity<Q>> Unit<Q> KILO(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e2)</code>.
      +     * @return <code>unit.prefix(1e2)</code>.
      +     * @see #HECTO
            */
           public static <Q extends Quantity<Q>> Unit<Q> HECTO(Unit<Q> unit) {
               return unit.prefix(HECTO);
      @@ -241,10 +311,25 @@ public static <Q extends Quantity<Q>> Unit<Q> HECTO(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e1)</code>.
      +     * @return <code>unit.prefix(1e1)</code>.
      +     * @see #DECA
      +     */
      +    public static <Q extends Quantity<Q>> Unit<Q> DECA(Unit<Q> unit) {
      +        return unit.prefix(DECA);
      +    }
      +    
      +    /**
      +     * US alias for <code>DECA</code>.
      +     *
      +     * @param <Q>
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return <code>unit.prefix(1e1)</code>.
      +     * @see #DECA
            */
           public static <Q extends Quantity<Q>> Unit<Q> DEKA(Unit<Q> unit) {
      -        return unit.prefix(DEKA);
      +        return unit.prefix(DECA);
           }
       
           /**
      @@ -254,7 +339,8 @@ public static <Q extends Quantity<Q>> Unit<Q> DEKA(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e-1)</code>.
      +     * @return <code>unit.prefix(1e-1)</code>.
      +     * @see #DECI 
            */
           public static <Q extends Quantity<Q>> Unit<Q> DECI(Unit<Q> unit) {
               return unit.prefix(DECI);
      @@ -267,7 +353,8 @@ public static <Q extends Quantity<Q>> Unit<Q> DECI(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e-2)</code>.
      +     * @return <code>unit.prefix(1e-2)</code>.
      +     * @see #CENTI
            */
           public static <Q extends Quantity<Q>> Unit<Q> CENTI(Unit<Q> unit) {
               return unit.prefix(CENTI);
      @@ -280,7 +367,8 @@ public static <Q extends Quantity<Q>> Unit<Q> CENTI(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e-3)</code>.
      +     * @return <code>unit.prefix(1e-3)</code>.
      +     * @see #MILLI
            */
           public static <Q extends Quantity<Q>> Unit<Q> MILLI(Unit<Q> unit) {
               return unit.prefix(MILLI);
      @@ -293,7 +381,8 @@ public static <Q extends Quantity<Q>> Unit<Q> MILLI(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e-6)</code>.
      +     * @return <code>unit.prefix(1e-6)</code>.
      +     * @see #MICRO 
            */
           public static <Q extends Quantity<Q>> Unit<Q> MICRO(Unit<Q> unit) {
               return unit.prefix(MICRO);
      @@ -306,7 +395,8 @@ public static <Q extends Quantity<Q>> Unit<Q> MICRO(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e-9)</code>.
      +     * @return <code>unit.prefix(1e-9)</code>.
      +     * @see #NANO 
            */
           public static <Q extends Quantity<Q>> Unit<Q> NANO(Unit<Q> unit) {
               return unit.prefix(NANO);
      @@ -319,7 +409,8 @@ public static <Q extends Quantity<Q>> Unit<Q> NANO(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e-12)</code>.
      +     * @return <code>unit.prefix(1e-12)</code>.
      +     * @see #PICO
            */
           public static <Q extends Quantity<Q>> Unit<Q> PICO(Unit<Q> unit) {
               return unit.prefix(PICO);
      @@ -332,7 +423,8 @@ public static <Q extends Quantity<Q>> Unit<Q> PICO(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e-15)</code>.
      +     * @return <code>unit.prefix(1e-15)</code>.
      +     * @see #FEMTO
            */
           public static <Q extends Quantity<Q>> Unit<Q> FEMTO(Unit<Q> unit) {
               return unit.prefix(FEMTO);
      @@ -345,7 +437,8 @@ public static <Q extends Quantity<Q>> Unit<Q> FEMTO(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e-18)</code>.
      +     * @return <code>unit.prefix(1e-18)</code>.
      +     * @see #ATTO 
            */
           public static <Q extends Quantity<Q>> Unit<Q> ATTO(Unit<Q> unit) {
               return unit.prefix(ATTO);
      @@ -358,7 +451,8 @@ public static <Q extends Quantity<Q>> Unit<Q> ATTO(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e-21)</code>.
      +     * @return <code>unit.prefix(1e-21)</code>.
      +     * #see ZEPTO
            */
           public static <Q extends Quantity<Q>> Unit<Q> ZEPTO(Unit<Q> unit) {
               return unit.prefix(ZEPTO);
      @@ -371,12 +465,41 @@ public static <Q extends Quantity<Q>> Unit<Q> ZEPTO(Unit<Q> unit) {
            *          type of the quantity measured by the unit.
            * @param unit
            *          any unit.
      -     * @return <code>unit.times(1e-24)</code>.
      +     * @return <code>unit.prefix(1e-24)</code>.
      +     * @see #YOCTO
            */
           public static <Q extends Quantity<Q>> Unit<Q> YOCTO(Unit<Q> unit) {
               return unit.prefix(YOCTO);
           }
      +    
      +    /**
      +     * Returns the specified unit multiplied by the factor <code>10<sup>-27</sup></code>
      +     *
      +     * @param <Q>
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return <code>unit.prefix(1e-27)</code>.
      +     * @see #RONTO
      +     */
      +    public static <Q extends Quantity<Q>> Unit<Q> RONTO(Unit<Q> unit) {
      +        return unit.prefix(RONTO);
      +    }
       
      +    /**
      +     * Returns the specified unit multiplied by the factor <code>10<sup>-30</sup></code>
      +     *
      +     * @param <Q>
      +     *          type of the quantity measured by the unit.
      +     * @param unit
      +     *          any unit.
      +     * @return <code>unit.prefix(1e-30)</code>.
      +     * @see #QUECTO
      +     */
      +    public static <Q extends Quantity<Q>> Unit<Q> QUECTO(Unit<Q> unit) {
      +        return unit.prefix(QUECTO);
      +    }
      +    
           /**
            * Returns the symbol of this prefix.
            *
      @@ -388,15 +511,15 @@ public String getSymbol() {
           }
       
           /**
      -     * Base part of the associated factor in base^exponent representation. For metric prefix, this is always 10.
      +     * Base part of the associated factor in {@code base^exponent} representation. For metric prefix, this is always 10.
            */
           @Override
      -    public int getBase() {
      +    public Integer getValue() {
               return 10;
           }
       
           /**
      -     * Exponent part of the associated factor in base^exponent representation.
      +     * Exponent part of the associated factor in {@code base^exponent} representation.
            */
           @Override
           public int getExponent() {
      diff --git a/src/main/java/javax/measure/Prefix.java b/src/main/java/javax/measure/Prefix.java
      index 31c3fedb..0be9fe69 100644
      --- a/src/main/java/javax/measure/Prefix.java
      +++ b/src/main/java/javax/measure/Prefix.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -32,12 +32,18 @@
       /**
        * A unit prefix is a specifier or mnemonic that is prepended to units of measurement to indicate multiples or fractions of the units.
        *
      - * @see <a href="http://en.wikipedia.org/wiki/Unit_prefix">Wikipedia: Unit Prefix</a>
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      - * @version 1.0, 2018-08-08
      + * @see <a href="https://en.wikipedia.org/wiki/Unit_prefix">Wikipedia: Unit Prefix</a>
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      + * @version 1.4, April 3, 2023
        * @since 2.0
        */
       public interface Prefix {
      +    /**
      +     * Returns the name of this prefix.
      +     *
      +     * @return this prefix name, not {@code null}.
      +     */
      +    String getName();
       
           /**
            * Returns the symbol of this prefix.
      @@ -47,23 +53,18 @@ public interface Prefix {
           public String getSymbol();
       
           /**
      -     * Base part of the associated factor in base^exponent representation.
      -     *
      -     * @return the base part of this prefix.
      +     * Returns the value of this prefix. If the {@code exponent} is different from {@code 1}, this value is the {@code base} part of the associated
      +     * factor in {@code base^exponent} representation.
      +     * 
      +     * @return The prefix value.
            */
      -    public int getBase();
      +    Number getValue();
       
           /**
      -     * Exponent part of the associated factor in base^exponent representation.
      +     * Exponent part of the associated factor in {@code base^exponent} representation. For different factors, e.g. rational numbers like {@code 1/4}
      +     * the exponent is always {@code 1}.
            *
            * @return the exponent part of this prefix.
            */
      -    public int getExponent();
      -
      -    /**
      -     * Returns the name of this prefix.
      -     *
      -     * @return this prefix name, not {@code null}.
      -     */
      -    String getName();
      -}
      +    int getExponent();
      +}
      \ No newline at end of file
      diff --git a/src/main/java/javax/measure/Quantity.java b/src/main/java/javax/measure/Quantity.java
      index c0758f5c..cb00127c 100644
      --- a/src/main/java/javax/measure/Quantity.java
      +++ b/src/main/java/javax/measure/Quantity.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -39,7 +39,9 @@
        * thermometer = ... {@literal Vector3D<Speed>} aircraftSpeed = ... </code>
        * </p>
        *
      - * <h3>Arithmetic operations</h3>
      + * <dl>
      + * <dt><span class="strong">Arithmetic operations</span></dt>
      + * </dl> 
        * This interface defines some arithmetic operations between {@code Quantity}
        * instances. All implementations shall produce <em>equivalent</em> results for
        * the same operation applied on equivalent quantities. Two quantities are
      @@ -67,13 +69,15 @@
        * conversion between quantity unit and system unit is only a
        * {@linkplain UnitConverter#isLinear() scale factor}. However this is not
        * the case for conversions applying an offset or more complex formula.
      - * For example 2°C + 1°C = 274.15°C, not 3°C. This counter-intuitive result
      + * For example 2°C + 1°C = 276.15°C, not 3°C. This counter-intuitive result
        * is essential for preserving algebra laws like associativity, and is also
        * the expected result from a thermodynamic point of view.</p>
        *
      - * apiNote This interface places no restrictions on the mutability of
      + * <dl>
      + * <dt><span class="strong">API Note:</span></dt><dd>This interface places no restrictions on the mutability of
        *          implementations, however immutability is strongly recommended. All
      - *          implementations must be {@link Comparable}.
      + *          implementations must be {@link Comparable}.</dd>
      + * </dl>
        *
        * @param <Q>
        *            The type of the quantity.
      @@ -87,19 +91,27 @@
        * @see <a href="http://en.wikipedia.org/wiki/Quantity">Wikipedia: Quantity</a>
        * @see <a href="http://martinfowler.com/eaaDev/quantity.html">Martin Fowler -
        *      Quantity</a>
      - * @version 1.9.1, December 18, 2018
      + * @version 2.6, October 3, 2024
        * @since 1.0
        */
       public interface Quantity<Q extends Quantity<Q>> {
           
          /**
      -    * The scale of a {@code Quantity}, either {@code absolute} or {@code relative}.
      +    * The scale of a {@link Quantity}, either {@code ABSOLUTE} or {@code RELATIVE}.
           *
           * @since 2.0
           * @see <a href="https://en.wikipedia.org/wiki/Absolute_scale">Wikipedia: Absolute scale</a>
           */
           public static enum Scale {
      -        ABSOLUTE, RELATIVE
      +    	/** 
      +    	 * Absolute scale
      +    	 * @see <a href="https://en.wikipedia.org/wiki/Absolute_scale">Wikipedia: Absolute scale</a> 
      +    	 */
      +        ABSOLUTE, 
      +        /** 
      +         * Relative scale 
      +    	 */
      +        RELATIVE
           }
              
           /**
      @@ -196,8 +208,10 @@ public static enum Scale {
            * {@code Unit}.
            *
            * @param unit
      -     *            the {@code Unit} to convert to.
      -     * @return the converted result.
      +     *            the {@code Unit unit} in which the returned quantity is stated.
      +     * @return this quantity or a new quantity equivalent to this quantity stated in the specified unit.
      +     * @throws ArithmeticException
      +     *             if the result is inexact and the quotient has a non-terminating decimal expansion.
            */
           Quantity<Q> to(Unit<Q> unit);
       
      @@ -284,4 +298,19 @@ default Quantity<Q> toSystemUnit() {
            * @see <a href="https://en.wikipedia.org/wiki/Absolute_scale">Wikipedia: Absolute scale</a>
            */
           Scale getScale();
      +    
      +    /**
      +     * Compares two instances of {@code Quantity <Q>}, performing the conversion of units if necessary.
      +     *
      +     * @param that
      +     *          the {@code quantity<Q>} to be compared with this instance.
      +     * @return {@code true} if {@code that \u2261 this}.
      +     * @throws NullPointerException
      +     *           if the quantity is null
      +     *           
      +     * @see <a href= "https://dictionary.cambridge.org/dictionary/english/equivalent">Cambridge Dictionary: equivalent</a>
      +     * @see <a href= "https://www.lexico.com/en/definition/equivalent">LEXICO: equivalent</a>
      +     * @since 2.1       
      +     */
      +    boolean isEquivalentTo(Quantity<Q> that);
       }
      diff --git a/src/main/java/javax/measure/UnconvertibleException.java b/src/main/java/javax/measure/UnconvertibleException.java
      index b8c056b0..c36bda3c 100644
      --- a/src/main/java/javax/measure/UnconvertibleException.java
      +++ b/src/main/java/javax/measure/UnconvertibleException.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/Unit.java b/src/main/java/javax/measure/Unit.java
      index 6b45338c..a9d66e8f 100644
      --- a/src/main/java/javax/measure/Unit.java
      +++ b/src/main/java/javax/measure/Unit.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -67,7 +67,7 @@
        * @author <a href="mailto:steve@unidata.ucar.edu">Steve Emmerson</a>
        * @author <a href="mailto:martin.desruisseaux@geomatys.com">Martin Desruisseaux</a>
        * @author <a href="mailto:werner@units.tech">Werner Keil</a>
      - * @version 1.5, March 23, 2019
      + * @version 2.5, October 3, 2024
        * @since 1.0
        *
        * @see <a href="http://en.wikipedia.org/wiki/Units_of_measurement">Wikipedia: Units of measurement</a>
      @@ -135,12 +135,13 @@ public interface Unit<Q extends Quantity<Q>> {
           Map<? extends Unit<?>, Integer> getBaseUnits();
       
           /**
      -     * Indicates if this unit is compatible with the unit specified. Units don't need to be equals to be compatible. For example (assuming {@code ONE}
      -     * is a dimensionless unit):
      +     * Indicates if this unit is compatible with the unit specified. Units don't need to be equal to be compatible. For example (assuming {@code ONE}
      +     * is a dimensionless unit):<br>
            *
            * <code>
            *     RADIAN.equals(ONE) == false<br>
            *     RADIAN.isCompatible(ONE) == true<br>
      +     *     RADIAN.isEquivalentTo(ONE) <b>doesn't compile</b><br>
            * </code>
            *
            * @param that
      @@ -151,9 +152,29 @@ public interface Unit<Q extends Quantity<Q>> {
            */
           boolean isCompatible(Unit<?> that);
       
      +    /**
      +     * Indicates if this unit represents the same quantity than the given unit, ignoring name and symbols.
      +     * Two units are equivalent if the {@linkplain #getConverterTo(Unit) conversion} between them is identity.
      +     *
      +     * <p>
      +     * Unlike {@link #isCompatible(Unit)} an equivalence check requires both units to be strictly type-compatible,
      +     * because it makes no sense to compare e.g. {@code gram} and {@code mm} for equivalence.
      +     * By contrast, the compatibility check can works across different quantity types.
      +     * </p>
      +     *
      +     * @param that the {@code Unit<Q>} to be compared with this instance.
      +     * @return {@code true} if {@code that \u2261 this}.
      +     * @throws NullPointerException if the unit is null
      +     *
      +     * @see <a href= "https://dictionary.cambridge.org/dictionary/english/equivalent">Cambridge Dictionary: equivalent</a>
      +     * @see <a href= "https://www.lexico.com/en/definition/equivalent">LEXICO: equivalent</a>
      +     * @since 2.1
      +     */
      +    boolean isEquivalentTo(Unit<Q> that);
      +
           /**
            * Casts this unit to a parameterized unit of specified nature or throw a {@code ClassCastException} if the dimension of the specified quantity and
      -     * this unit's dimension do not match. For example:
      +     * this unit's dimension do not match. For example:<br>
            *
            * <code>
            *      {@literal Unit<Speed>} C = METRE.multiply(299792458).divide(SECOND).asType(Speed.class);
      @@ -175,7 +196,7 @@ public interface Unit<Q extends Quantity<Q>> {
            *
            * @param that
            *          the unit of same type to which to convert the numeric values.
      -     * @return the converter from this unit to {@code that} unit.
      +     * @return the converter from this unit to <code>that</code> unit.
            * @throws UnconvertibleException
            *           if a converter cannot be constructed.
            *
      @@ -195,7 +216,7 @@ public interface Unit<Q extends Quantity<Q>> {
            *          the unit to which to convert the numeric values.
            * @return the converter from this unit to {@code that} unit.
            * @throws IncommensurableException
      -     *           if this unit is not {@linkplain #isCompatible(Unit) compatible} with {@code that} unit.
      +     *           if this unit is not {@linkplain #isCompatible(Unit) compatible} with {@code that}.
            * @throws UnconvertibleException
            *           if a converter cannot be constructed.
            *
      @@ -234,7 +255,25 @@ public interface Unit<Q extends Quantity<Q>> {
       
           /**
            * Returns the result of setting the origin of the scale of measurement to the given value. The returned unit is convertible with all units that are
      -     * convertible with this unit. For example the following code:
      +     * convertible with this unit. For example the following code:<br>
      +     *
      +     * <code>
      +     *    CELSIUS = KELVIN.shift(273.15);
      +     * </code>
      +     *
      +     * creates a new unit where 0°C (the origin of the new unit) is equals to 273.15 K. Converting from the old unit to the new one is equivalent to
      +     * <em>subtracting</em> the offset to the value in the old unit.
      +     *
      +     * @param offset
      +     *          the offset added (expressed in this unit).
      +     * @return this unit offset by the specified value.
      +     * @since 2.0
      +     */
      +    Unit<Q> shift(Number offset);
      +
      +    /**
      +     * Returns the result of setting the origin of the scale of measurement to the given value. The returned unit is convertible with all units that are
      +     * convertible with this unit. For example the following code:<br>
            *
            * <code>
            *    CELSIUS = KELVIN.shift(273.15);
      @@ -251,10 +290,25 @@ public interface Unit<Q extends Quantity<Q>> {
       
           /**
            * Returns the result of multiplying this unit by the specified factor. If the factor is an integer value, the multiplication is exact
      -     * (recommended). For example:
      +     * (recommended). For example:<br>
            *
            * <code>
      -     *    FOOT = METRE.multiply(3048).divide(10000); // Exact definition.
      +     *    FOOT = METRE.multiply(3048).divide(10000); // Exact definition.<br>
      +     *    ELECTRON_MASS = KILOGRAM.multiply(9.10938188e-31); // Approximation.
      +     * </code>
      +     *
      +     * @param multiplier
      +     *          the multiplier
      +     * @return this unit scaled by the specified multiplier.
      +     * @since 2.0
      +     */
      +    Unit<Q> multiply(Number multiplier);
      +
      +    /**
      +     * Returns the result of multiplying this unit by the specified factor. For example:<br>
      +     *
      +     * <code>
      +     *    FOOT = METRE.multiply(3048).divide(10000); // Exact definition.<br>
            *    ELECTRON_MASS = KILOGRAM.multiply(9.10938188e-31); // Approximation.
            * </code>
            *
      @@ -282,7 +336,7 @@ public interface Unit<Q extends Quantity<Q>> {
           Unit<?> inverse();
       
           /**
      -     * Returns the result of dividing this unit by an approximate divisor. If the factor is an integer value, the division is exact. For example:
      +     * Returns the result of dividing this unit by a divisor. If the factor is an integer value, the division is exact. For example:<br>
            *
            * <code>
            *    GRAM = KILOGRAM.divide(1000); // Exact definition.
      @@ -291,6 +345,20 @@ public interface Unit<Q extends Quantity<Q>> {
            * @param divisor
            *          the divisor value.
            * @return this unit divided by the specified divisor.
      +     * @since 2.0
      +     */
      +    Unit<Q> divide(Number divisor);
      +
      +    /**
      +     * Returns the result of dividing this unit by an approximate divisor. For example:<br>
      +     *
      +     * <code>
      +     *    GRAM = KILOGRAM.divide(1000d);
      +     * </code>
      +     *
      +     * @param divisor
      +     *          the divisor value.
      +     * @return this unit divided by the specified divisor.
            */
           Unit<Q> divide(double divisor);
       
      @@ -363,19 +431,4 @@ public interface Unit<Q extends Quantity<Q>> {
            * @since 2.0
            */
           Unit<Q> prefix(Prefix prefix);
      -    
      -    /**
      -     * Returns the combination of this unit with the specified unit. Mixed
      -     * units can be used for formatting purposes, with an adequate list or array of {@link Number numbers} in {@link  Quantity} expressions or as a target unit specification for unit conversions.<br><br>Examples of mixed
      -     * units:<br><code> 
      -     *     Unit<Length> FOOT_INCH = FOOT.mix(INCH);<br>
      -     *     Unit<Time> HOUR_MINUTE_SECOND = HOUR.mix(MINUTE).mix(SECOND);
      -     * </code>
      -     * 
      -     * @param that
      -     *            the other unit to mix with this unit.
      -     * @return the corresponding mixed unit.
      -     * @since 2.0
      -     */
      -    Unit<Q> mix(Unit<Q> that);
       }
      diff --git a/src/main/java/javax/measure/UnitConverter.java b/src/main/java/javax/measure/UnitConverter.java
      index 486549aa..46517412 100644
      --- a/src/main/java/javax/measure/UnitConverter.java
      +++ b/src/main/java/javax/measure/UnitConverter.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -44,7 +44,7 @@
        *         Desruisseaux</a>
        * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
        * @author <a href="mailto:ahuber@apache.org">Andi Huber</a>
      - * @version 1.3, March 11, 2019
      + * @version 1.5, October 3, 2024
        * @since 1.0
        *
        * @see Unit
      @@ -67,7 +67,7 @@ public interface UnitConverter {
            * a <a href="https://en.wikipedia.org/wiki/Linear_map">linear map (wikipedia)</a> from a one-dimensional 
            * vector space (a scalar) to a one-dimensional vector space. Typically from 'R' to 'R', with 'R' the 
            * real numbers.  
      -     * 
      +     *
            * <p>
            * Given such a 'linear' converter 'A', let 'u', 'v' and 'r' be arbitrary numbers, then the following 
            * must hold by definition: 
      @@ -76,7 +76,6 @@ public interface UnitConverter {
            * <li>{@code A(u + v) == A(u) + A(v)}</li>
            * <li>{@code A(r * u) == r * A(u)}</li>
            * </ul>
      -     * </p>
            *
            * <p>
            * Given a second 'linear' converter 'B', commutativity of composition follows by above definition:
      @@ -87,17 +86,18 @@ public interface UnitConverter {
            * 
            * In other words, two 'linear' converters do have the property that {@code A(B(u)) == B(A(u))}, meaning 
            * for 'A' and 'B' the order of their composition does not matter. Expressed as Java code:
      -     * </p>
      +     *
            * <p>
            *{@code A.concatenate(B).convert(u) == B.concatenate(A).convert(u)}
            * </p>
      -     * <p>
      +     * 
            * Note: For composing UnitConverters see also {@link UnitConverter#concatenate(UnitConverter)}.
      -     * </p>
            *
            * @return {@code true} if this converter represents a linear transformation; 
            * {@code false} otherwise.
      -     * 
      +     *  
      +     * @see <a href="https://en.wikipedia.org/wiki/Linear_map"> Wikipedia: Linear map</a>
      +     * @see <a href="https://en.wikipedia.org/wiki/Conversion_of_units#Limitations"> Wikipedia: Conversion of units - Limitations</a>
            */
           boolean isLinear();
       
      diff --git a/src/main/java/javax/measure/format/MeasurementParseException.java b/src/main/java/javax/measure/format/MeasurementParseException.java
      index 6dfd95a7..c6014c22 100644
      --- a/src/main/java/javax/measure/format/MeasurementParseException.java
      +++ b/src/main/java/javax/measure/format/MeasurementParseException.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/format/ParserException.java b/src/main/java/javax/measure/format/ParserException.java
      deleted file mode 100644
      index c8b1eac3..00000000
      --- a/src/main/java/javax/measure/format/ParserException.java
      +++ /dev/null
      @@ -1,81 +0,0 @@
      -/*
      - * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      - *
      - * All rights reserved.
      - *
      - * Redistribution and use in source and binary forms, with or without modification,
      - * are permitted provided that the following conditions are met:
      - *
      - * 1. Redistributions of source code must retain the above copyright notice,
      - *    this list of conditions and the following disclaimer.
      - *
      - * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
      - *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
      - *
      - * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
      - *    derived from this software without specific prior written permission.
      - *
      - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
      - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
      - * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
      - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
      - * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
      - * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      - */
      -package javax.measure.format;
      -
      -/**
      - * Signals that an error has been reached unexpectedly while parsing.
      - *
      - * @author Werner Keil
      - * @version 1.2, October 7, 2018
      - * @since 1.0
      - * @deprecated Use {@link MeasurementParseException}, this exception will be removed in a future version, it is here for backward compatibility only.
      - */
      -@Deprecated
      -public class ParserException extends MeasurementParseException {
      -
      -    private static final long serialVersionUID = -3179553925611520368L;
      -
      -    /**
      -     * Constructs a ParserException with the specified detail message, parsed text and index. A detail message is a String that describes this
      -     * particular exception.
      -     *
      -     * @param message
      -     *            the detail message
      -     * @param parsedData
      -     *            the parsed text, should not be null
      -     * @param position
      -     *            the position where the error was found while parsing.
      -     */
      -    public ParserException(String message, CharSequence parsedData, int position) {
      -        super(message, parsedData, position);
      -    }
      -
      -    /**
      -     * Constructs a ParserException with the parsed text and offset. A detail message is a String that describes this particular exception.
      -     *
      -     * @param parsedData
      -     *            the parsed text, should not be null
      -     * @param position
      -     *            the position where the error is found while parsing.
      -     */
      -    public ParserException(CharSequence parsedData, int position) {
      -        super(parsedData, position);
      -    }
      -
      -    /**
      -     * Constructs a ParserException with the specified cause.
      -     *
      -     * @param cause
      -     *            the root cause
      -     */
      -    public ParserException(Throwable cause) {
      -        super(cause);
      -    }
      -}
      diff --git a/src/main/java/javax/measure/format/QuantityFormat.java b/src/main/java/javax/measure/format/QuantityFormat.java
      index 43bc5dcc..ee0ae5b9 100644
      --- a/src/main/java/javax/measure/format/QuantityFormat.java
      +++ b/src/main/java/javax/measure/format/QuantityFormat.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -37,14 +37,16 @@
       /**
        * Formats instances of {@link Quantity}.
        *
      - * <h3><a id="synchronization">Synchronization</a></h3>
      + * <dl>
      + * <dt><span class="strong"><a id="synchronization">Synchronization</a></span></dt>
      + * </dl>
        * Instances of this class are not required to be thread-safe. It is recommended to use separate format instances for each thread. If multiple threads
        * access a format concurrently, it must be synchronized externally.
        *
        * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
        * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
        *
      - * @version 0.9, 22 Feb, 2019
      + * @version 1.1, 20 May, 2023
        * @since 2.0
        *
        * @see Quantity
      @@ -82,18 +84,22 @@ public interface QuantityFormat {
            * @param pos
            *          a ParsePosition object holding the current parsing index and error parsing index information as described above.
            * @return the quantity parsed from the specified character sub-sequence.
      -     * @throws IllegalArgumentException
      +     * @throws MeasurementParseException
            *           if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
            */
      -    public Quantity<?> parse(CharSequence csq, ParsePosition pos) throws IllegalArgumentException, MeasurementParseException;
      +    public Quantity<?> parse(CharSequence csq, ParsePosition pos) throws MeasurementParseException;
       
           /**
      -     * Parses a portion of the specified {@code CharSequence} from the specified position to produce a {@link Quantity}.
      +     * Parses the specified {@code CharSequence} to produce a {@link Quantity}.
      +     * <p>
      +     * The parse must complete normally and parse the entire text. If the parse completes without reading the entire length of the text, an exception
      +     * is thrown. If any other problem occurs during parsing, an exception is thrown.
      +     * </p>
            *
            * @param csq
            *          the {@code CharSequence} to parse.
            * @return the quantity parsed from the specified character sub-sequence.
      -     * @throws IllegalArgumentException
      +     * @throws MeasurementParseException
            *           if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
            */
           public Quantity<?> parse(CharSequence csq) throws MeasurementParseException;
      diff --git a/src/main/java/javax/measure/format/UnitFormat.java b/src/main/java/javax/measure/format/UnitFormat.java
      index c6782bfd..495b60f2 100644
      --- a/src/main/java/javax/measure/format/UnitFormat.java
      +++ b/src/main/java/javax/measure/format/UnitFormat.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -37,16 +37,18 @@
       /**
        * Formats instances of {@link Unit} to a {@link String} or {@link Appendable} and parses a {@link CharSequence} to a {@link Unit}.
        *
      - * <h1><a id="synchronization">Synchronization</a></h1>
      + * <dl>
      + * <dt><span class="strong"><a id="synchronization">Synchronization</a></span></dt>
      + * </dl>
        * <p>
        * Instances of this class are not required to be thread-safe. It is recommended to use separate format instances for each thread. If multiple threads
        * access a format concurrently, it must be synchronized externally.
      - * <p>
      + * </p>
        *
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
        * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
        *
      - * @version 1.3.2, November 3, 2018
      + * @version 2.2, May 20, 2023
        * @since 1.0
        *
        * @see Unit
      @@ -75,9 +77,9 @@ public interface UnitFormat {
           String format(Unit<?> unit);
       
           /**
      -     * Attaches a system-wide label to the specified unit.
      +     * Attaches a system-wide label to the specified {@link Unit}.
            * <p>
      -     * If the specified label is already associated to a unit the previous association can be discarded or ignored. Depending on the
      +     * This method overrides the previous unit's label (e.g. label from unit database or unit system) as units may only have one label. Depending on the
            * {@link UnitFormat} implementation, this call may be ignored if the particular unit already has a label.
            * </p>
            * If a {@link UnitFormat} implementation is explicitly <b>immutable</b>, similar to e.g. the result of <code>Collections.unmodifiableList()</code>,
      @@ -122,18 +124,18 @@ default boolean isLocaleSensitive() {
            * @param pos
            *            a ParsePosition object holding the current parsing index and error parsing index information as described above.
            * @return the unit parsed from the specified character sub-sequence.
      -     * @throws IllegalArgumentException
      +     * @throws MeasurementParseException
            *             if any problem occurs while parsing the specified character sequence (e.g. illegal syntax).
            * @since 2.0
            */
      -    Unit<?> parse(CharSequence csq, ParsePosition pos) throws IllegalArgumentException, MeasurementParseException;
      +    Unit<?> parse(CharSequence csq, ParsePosition pos) throws MeasurementParseException;
       
           /**
            * Parses the text into an instance of {@link Unit}.
            * <p>
            * The parse must complete normally and parse the entire text. If the parse completes without reading the entire length of the text, an exception
            * is thrown. If any other problem occurs during parsing, an exception is thrown.
      -     * <p>
      +     * </p>
            *
            * @param csq
            *            the {@code CharSequence} to parse.
      diff --git a/src/main/java/javax/measure/format/package-info.java b/src/main/java/javax/measure/format/package-info.java
      index c07aea5f..07049405 100644
      --- a/src/main/java/javax/measure/format/package-info.java
      +++ b/src/main/java/javax/measure/format/package-info.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -29,8 +29,8 @@
        */
       /**
        * [OPTIONAL] Provides Formatting and Parsing functionality for units, quantities, dimensions or their textual representation.
      - * @author  <a href="mailto:units@catmedia.us">Werner Keil</a>
      - * @version 1.0, August 11, 2016
      + * @author  <a href="mailto:werner@uom.technology">Werner Keil</a>
      + * @version 2.0, July 7, 2019
        * @since 1.0
        */
       package javax.measure.format;
      diff --git a/src/main/java/javax/measure/package-info.java b/src/main/java/javax/measure/package-info.java
      index 431d3597..f7db0ebe 100644
      --- a/src/main/java/javax/measure/package-info.java
      +++ b/src/main/java/javax/measure/package-info.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/Acceleration.java b/src/main/java/javax/measure/quantity/Acceleration.java
      index 376e3a07..79ffde65 100644
      --- a/src/main/java/javax/measure/quantity/Acceleration.java
      +++ b/src/main/java/javax/measure/quantity/Acceleration.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -35,8 +35,8 @@
        * Rate of change of velocity with respect to time. The metric system unit for this quantity is "m/s²" (metre per square second).
        *
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      - * @version 1.1
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      + * @version 1.2
        * @since 1.0
        * @see <a href="https://en.wikipedia.org/wiki/Acceleration">Wikipedia: Acceleration</a>
        *
      diff --git a/src/main/java/javax/measure/quantity/AmountOfSubstance.java b/src/main/java/javax/measure/quantity/AmountOfSubstance.java
      index adefbdba..8fa937ba 100644
      --- a/src/main/java/javax/measure/quantity/AmountOfSubstance.java
      +++ b/src/main/java/javax/measure/quantity/AmountOfSubstance.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -47,15 +47,18 @@
        * Inverting this relation gives an exact expression for the mole in terms of the defining constant NA:
        *
        * 1 mol = 6.02214076 × 10²³ / Nₐ
      - *
      + * <br>
      + * <dl>
      + * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
      + * </dl>
      + * 
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      - * @version 1.3
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      + * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
      + * @version 2.1
        * @since 1.0
        *
        * @see <a href="http://en.wikipedia.org/wiki/Amount_of_substance">Wikipedia: Amount of Substance</a>
      - *
      - * apiNote SI Base Unit
        */
       public interface AmountOfSubstance extends Quantity<AmountOfSubstance> {
       }
      diff --git a/src/main/java/javax/measure/quantity/Angle.java b/src/main/java/javax/measure/quantity/Angle.java
      index 6ef29493..f314e23f 100644
      --- a/src/main/java/javax/measure/quantity/Angle.java
      +++ b/src/main/java/javax/measure/quantity/Angle.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -33,18 +33,20 @@
       
       /**
        * Figure formed by two lines diverging from a common point. The metric system unit for this quantity is "rad" (radian).
      - *
      + * <br>
      + * <dl>
      + * <dt><span class="strong">API Note:</span></dt><dd>SI Derived Unit with special name and symbol</dd>
      + * </dl>
      + * 
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
        * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      - * @version 1.2
      + * @version 2.0
        * @since 1.0
        *
        * @see <a href="http://en.wikipedia.org/wiki/Angle">Wikipedia: Angle</a>
        *
        * @see SolidAngle
        * @see Length
      - *
      - * apiNote SI Derived Unit with special name and symbol
        */
       public interface Angle extends Quantity<Angle> {
       }
      diff --git a/src/main/java/javax/measure/quantity/Area.java b/src/main/java/javax/measure/quantity/Area.java
      index fc331191..e74b6415 100644
      --- a/src/main/java/javax/measure/quantity/Area.java
      +++ b/src/main/java/javax/measure/quantity/Area.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -33,16 +33,19 @@
       
       /**
        * Extent of a planar region or of the surface of a solid measured in square units. The metric system unit for this quantity is "m²" (square metre).
      - *
      + * <br>
      + * <dl>
      + * <dt><span class="strong">API Note:</span></dt><dd>SI Derived Unit</dd>
      + * </dl>
      + * 
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @version 1.2
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      + * @version 2.0
        * @since 1.0
        *
        * @see Length
        * @see Volume
        * @see Pressure
      - *
      - * apiNote SI Derived Unit
        */
       public interface Area extends Quantity<Area> {
       }
      diff --git a/src/main/java/javax/measure/quantity/CatalyticActivity.java b/src/main/java/javax/measure/quantity/CatalyticActivity.java
      index a2b5f13f..733b7e31 100644
      --- a/src/main/java/javax/measure/quantity/CatalyticActivity.java
      +++ b/src/main/java/javax/measure/quantity/CatalyticActivity.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/Dimensionless.java b/src/main/java/javax/measure/quantity/Dimensionless.java
      index af5ef3eb..3f135a4d 100644
      --- a/src/main/java/javax/measure/quantity/Dimensionless.java
      +++ b/src/main/java/javax/measure/quantity/Dimensionless.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/ElectricCapacitance.java b/src/main/java/javax/measure/quantity/ElectricCapacitance.java
      index 409703dd..d3d8d308 100644
      --- a/src/main/java/javax/measure/quantity/ElectricCapacitance.java
      +++ b/src/main/java/javax/measure/quantity/ElectricCapacitance.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/ElectricCharge.java b/src/main/java/javax/measure/quantity/ElectricCharge.java
      index a32edbd2..302d4a1f 100644
      --- a/src/main/java/javax/measure/quantity/ElectricCharge.java
      +++ b/src/main/java/javax/measure/quantity/ElectricCharge.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/ElectricConductance.java b/src/main/java/javax/measure/quantity/ElectricConductance.java
      index ad645ca5..8d5ccd59 100644
      --- a/src/main/java/javax/measure/quantity/ElectricConductance.java
      +++ b/src/main/java/javax/measure/quantity/ElectricConductance.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/ElectricCurrent.java b/src/main/java/javax/measure/quantity/ElectricCurrent.java
      index 77f3df80..abc0671e 100644
      --- a/src/main/java/javax/measure/quantity/ElectricCurrent.java
      +++ b/src/main/java/javax/measure/quantity/ElectricCurrent.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -44,15 +44,19 @@
        * and ∆νCs:
        *
        * 1 A = (e / 1.602 176 634 × 10⁻¹⁹) s⁻¹
      - *
      + * <br>
      + * <dl>
      + * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
      + * </dl>
      + * 
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @version 1.1
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      + * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
      + * @version 2.1
        * @since 1.0
      - *
      + * @see <a href="https://en.wikipedia.org/wiki/Electric_current">Wikipedia: Electric Current</a>
        * @see ElectricCharge
        * @see Time
      - *
      - * apiNote SI Base Unit
        */
       public interface ElectricCurrent extends Quantity<ElectricCurrent> {
       }
      diff --git a/src/main/java/javax/measure/quantity/ElectricInductance.java b/src/main/java/javax/measure/quantity/ElectricInductance.java
      index 54723c35..e034fa92 100644
      --- a/src/main/java/javax/measure/quantity/ElectricInductance.java
      +++ b/src/main/java/javax/measure/quantity/ElectricInductance.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/ElectricPotential.java b/src/main/java/javax/measure/quantity/ElectricPotential.java
      index 15022bc6..6ca15939 100644
      --- a/src/main/java/javax/measure/quantity/ElectricPotential.java
      +++ b/src/main/java/javax/measure/quantity/ElectricPotential.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/ElectricResistance.java b/src/main/java/javax/measure/quantity/ElectricResistance.java
      index b638fa8a..4d13a594 100644
      --- a/src/main/java/javax/measure/quantity/ElectricResistance.java
      +++ b/src/main/java/javax/measure/quantity/ElectricResistance.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/Energy.java b/src/main/java/javax/measure/quantity/Energy.java
      index 2c55fff4..b7886926 100644
      --- a/src/main/java/javax/measure/quantity/Energy.java
      +++ b/src/main/java/javax/measure/quantity/Energy.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/Force.java b/src/main/java/javax/measure/quantity/Force.java
      index f31d4a99..2ac932f0 100644
      --- a/src/main/java/javax/measure/quantity/Force.java
      +++ b/src/main/java/javax/measure/quantity/Force.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/Frequency.java b/src/main/java/javax/measure/quantity/Frequency.java
      index a36066cd..53953ce3 100644
      --- a/src/main/java/javax/measure/quantity/Frequency.java
      +++ b/src/main/java/javax/measure/quantity/Frequency.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/Illuminance.java b/src/main/java/javax/measure/quantity/Illuminance.java
      index a8dcd262..9e434105 100644
      --- a/src/main/java/javax/measure/quantity/Illuminance.java
      +++ b/src/main/java/javax/measure/quantity/Illuminance.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/Length.java b/src/main/java/javax/measure/quantity/Length.java
      index 9dab0e53..0ca6757f 100644
      --- a/src/main/java/javax/measure/quantity/Length.java
      +++ b/src/main/java/javax/measure/quantity/Length.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -44,19 +44,23 @@
        * gives an exact expression for the metre in terms of the defining constants c and ∆νCs:
        *
        * 1 m = (c / 299 792 458)s = 9 192 631 770 c / 299 792 458 ∆νCs ≈ 30.663 319 c / ∆νCs
      + * <br>
      + * <dl>
      + * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
      + * </dl>
        * 
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      - * @version 1.3
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      + * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
      + * @version 2.1
        * @since 1.0
      - *
      + * 
      + * @see <a href="https://en.wikipedia.org/wiki/Length">Wikipedia: Length</a>
        * @see Area
        * @see Volume
        * @see Angle
        * @see SolidAngle
        * @see Speed
      - *
      - * apiNote SI Base Unit
        */
       public interface Length extends Quantity<Length> {
       }
      diff --git a/src/main/java/javax/measure/quantity/LuminousFlux.java b/src/main/java/javax/measure/quantity/LuminousFlux.java
      index 813fab3a..cc04f31a 100644
      --- a/src/main/java/javax/measure/quantity/LuminousFlux.java
      +++ b/src/main/java/javax/measure/quantity/LuminousFlux.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/LuminousIntensity.java b/src/main/java/javax/measure/quantity/LuminousIntensity.java
      index 6ac36bf4..9a5782ca 100644
      --- a/src/main/java/javax/measure/quantity/LuminousIntensity.java
      +++ b/src/main/java/javax/measure/quantity/LuminousIntensity.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -46,13 +46,18 @@
        * for the candela in terms of the defining constants Kcd, h and ∆νCs:
        *
        * 1 cd = (Kcd / 683) kg m² s⁻³ sr⁻¹
      - *
      + * <br>
      + * <dl>
      + * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
      + * </dl>
      + * 
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      - * @version 1.2
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      + * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
      + * @version 2.1
        * @since 1.0
      - *
      - * apiNote SI Base Unit
      + * 
      + * @see <a href="https://en.wikipedia.org/wiki/Luminous_intensity">Wikipedia: Luminous intensity</a>
        */
       public interface LuminousIntensity extends Quantity<LuminousIntensity> {
       }
      diff --git a/src/main/java/javax/measure/quantity/MagneticFlux.java b/src/main/java/javax/measure/quantity/MagneticFlux.java
      index 9b363d00..6171a5e6 100644
      --- a/src/main/java/javax/measure/quantity/MagneticFlux.java
      +++ b/src/main/java/javax/measure/quantity/MagneticFlux.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/MagneticFluxDensity.java b/src/main/java/javax/measure/quantity/MagneticFluxDensity.java
      index 6fcb79eb..6c78da10 100644
      --- a/src/main/java/javax/measure/quantity/MagneticFluxDensity.java
      +++ b/src/main/java/javax/measure/quantity/MagneticFluxDensity.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/Mass.java b/src/main/java/javax/measure/quantity/Mass.java
      index 2a7bfdcc..d2428e7b 100644
      --- a/src/main/java/javax/measure/quantity/Mass.java
      +++ b/src/main/java/javax/measure/quantity/Mass.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -45,15 +45,19 @@
        * h, ∆νCs and c:
        *
        * 1 kg = (h / 6.626 070 15 × 10⁻³⁴) m⁻² s
      + * <br>
      + * <dl>
      + * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
      + * </dl>
        *
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      - * @version 1.2
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      + * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
      + * @version 2.0
        * @since 1.0
        *
      + * @see <a href="https://en.wikipedia.org/wiki/Mass">Wikipedia: Mass</a>
        * @see RadiationDoseAbsorbed
      - *
      - * apiNote SI Base Unit
        */
       public interface Mass extends Quantity<Mass> {
       }
      diff --git a/src/main/java/javax/measure/quantity/Power.java b/src/main/java/javax/measure/quantity/Power.java
      index 06b45ba3..128a014d 100644
      --- a/src/main/java/javax/measure/quantity/Power.java
      +++ b/src/main/java/javax/measure/quantity/Power.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/Pressure.java b/src/main/java/javax/measure/quantity/Pressure.java
      index 04c49e74..7671dc91 100644
      --- a/src/main/java/javax/measure/quantity/Pressure.java
      +++ b/src/main/java/javax/measure/quantity/Pressure.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/RadiationDoseAbsorbed.java b/src/main/java/javax/measure/quantity/RadiationDoseAbsorbed.java
      index d521d3e2..c89ba688 100644
      --- a/src/main/java/javax/measure/quantity/RadiationDoseAbsorbed.java
      +++ b/src/main/java/javax/measure/quantity/RadiationDoseAbsorbed.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/quantity/RadiationDoseEffective.java b/src/main/java/javax/measure/quantity/RadiationDoseEffective.java
      index 67bafe98..6bc52e06 100644
      --- a/src/main/java/javax/measure/quantity/RadiationDoseEffective.java
      +++ b/src/main/java/javax/measure/quantity/RadiationDoseEffective.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -36,8 +36,9 @@
        * (Sievert).
        *
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @version 1.0
      + * @version 1.1
        * @since 1.0
      + * @see <a href="https://en.wikipedia.org/wiki/Effective_dose_(radiation)">Wikipedia: Effective dose (radiation)</a> 
        */
       public interface RadiationDoseEffective extends Quantity<RadiationDoseEffective> {
       }
      diff --git a/src/main/java/javax/measure/quantity/Radioactivity.java b/src/main/java/javax/measure/quantity/Radioactivity.java
      index 33caa740..d46dbd36 100644
      --- a/src/main/java/javax/measure/quantity/Radioactivity.java
      +++ b/src/main/java/javax/measure/quantity/Radioactivity.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -35,7 +35,7 @@
        * Radioactive activity. The metric system unit for this quantity is "Bq" (Becquerel).
        *
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
        * @author Martin Desruisseaux
        * @version 1.2
        * @since 1.0
      diff --git a/src/main/java/javax/measure/quantity/SolidAngle.java b/src/main/java/javax/measure/quantity/SolidAngle.java
      index 3fa5604a..afa714f4 100644
      --- a/src/main/java/javax/measure/quantity/SolidAngle.java
      +++ b/src/main/java/javax/measure/quantity/SolidAngle.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -35,8 +35,8 @@
        * Angle formed by three or more planes intersecting at a common point. The metric system unit for this quantity is "sr" (steradian).
        *
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      - * @version 1.2
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      + * @version 1.3
        * @since 1.0
        *
        * @see Angle
      diff --git a/src/main/java/javax/measure/quantity/Speed.java b/src/main/java/javax/measure/quantity/Speed.java
      index 9299affe..2ec5eadb 100644
      --- a/src/main/java/javax/measure/quantity/Speed.java
      +++ b/src/main/java/javax/measure/quantity/Speed.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -40,7 +40,7 @@
        * </p>
        *
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
        * @version 1.2
        * @since 1.0
        *
      diff --git a/src/main/java/javax/measure/quantity/Temperature.java b/src/main/java/javax/measure/quantity/Temperature.java
      index d99ebc88..fc067ad4 100644
      --- a/src/main/java/javax/measure/quantity/Temperature.java
      +++ b/src/main/java/javax/measure/quantity/Temperature.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -44,12 +44,18 @@
        * ∆νCs:
        *
        * 1 K = (1.380 649 / k) × 10⁻²³ kg m² s⁻²
      - *
      + * <br>
      + * <dl>
      + * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
      + * </dl>
      + * 
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @version 1.1
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      + * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
      + * @version 2.1
        * @since 1.0
        *
      - * apiNote SI Base Unit
      + * @see <a href="https://en.wikipedia.org/wiki/Temperature">Wikipedia: Temperature</a>
        */
       public interface Temperature extends Quantity<Temperature> {
       }
      diff --git a/src/main/java/javax/measure/quantity/Time.java b/src/main/java/javax/measure/quantity/Time.java
      index 55050c07..65847d41 100644
      --- a/src/main/java/javax/measure/quantity/Time.java
      +++ b/src/main/java/javax/measure/quantity/Time.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -43,9 +43,14 @@
        * gives an expression for the unit second in terms of the defining constant ∆νCs:
        *
        * 1 Hz = ∆νCs / 9 192 631 770  or  1 s = 9 192 631 770 / ∆νCs
      - *
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      - * @version 1.6
      + * <br>
      + * <dl>
      + * <dt><span class="strong">API Note:</span></dt><dd>SI Base Unit</dd>
      + * </dl>
      + * 
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      + * @author <a href="mailto:thodoris.bais@gmail.com">Thodoris Bais</a>
      + * @version 2.1
        * @since 1.0
        *
        * @see Frequency
      @@ -54,8 +59,6 @@
        * @see ElectricCurrent
        * @see Power
        * @see <a href="https://en.wikipedia.org/wiki/Unit_of_time">Wikipedia: Unit of time</a>
      - *
      - * apiNote SI Base Unit
        */
       public interface Time extends Quantity<Time> {
       }
      diff --git a/src/main/java/javax/measure/quantity/Volume.java b/src/main/java/javax/measure/quantity/Volume.java
      index 4e657562..b20cb72d 100644
      --- a/src/main/java/javax/measure/quantity/Volume.java
      +++ b/src/main/java/javax/measure/quantity/Volume.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -35,8 +35,8 @@
        * Amount of space occupied by a three-dimensional object or region of space. The metric system unit for this quantity is "m³" (cubic metre).
        *
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      - * @version 1.2
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      + * @version 1.3
        * @since 1.0
        *
        * @see Length
      diff --git a/src/main/java/javax/measure/quantity/package-info.java b/src/main/java/javax/measure/quantity/package-info.java
      index 594ee79c..54538983 100644
      --- a/src/main/java/javax/measure/quantity/package-info.java
      +++ b/src/main/java/javax/measure/quantity/package-info.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -70,9 +70,11 @@
        * <p>This package holds only the quantities required by the metric system.</p>
        *
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      - * @version 2.6
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      + * @version 2.8
        * @since 1.0
      + * @see <a href="https://en.wikipedia.org/wiki/International_System_of_Units">Wikipedia: International System of Units</a>
      + * @see <a href="https://en.wikipedia.org/wiki/2019_redefinition_of_the_SI_base_units">Wikipedia: 2019 redefinition of the SI base units</a>
        */
       package javax.measure.quantity;
       
      diff --git a/src/main/java/javax/measure/spi/FormatService.java b/src/main/java/javax/measure/spi/FormatService.java
      index 2a3cdfe6..2a4b62c1 100644
      --- a/src/main/java/javax/measure/spi/FormatService.java
      +++ b/src/main/java/javax/measure/spi/FormatService.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -35,16 +35,20 @@
       import javax.measure.format.UnitFormat;
       
       /**
      - * This interface represent the service to obtain instances of {@link UnitFormat} and {@link QuantityFormat}.
      + * This interface represents the service to obtain instances of {@link UnitFormat} and {@link QuantityFormat}.
        *
        * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      - * @version 1.0.1, November 9, 2018
      + * @version 2.3, May 20, 2023
        * @since 2.0
        */
      -public interface FormatService extends UnitFormatService {
      +public interface FormatService {
       
      +	/** The type of format, either a {@link UnitFormat} or {@link QuantityFormat} */
           public static enum FormatType {
      -        UNIT_FORMAT, QUANTITY_FORMAT
      +        /** Format of type {@link UnitFormat} */
      +    	UNIT_FORMAT, 
      +    	/** Format of type {@link QuantityFormat} */
      +    	QUANTITY_FORMAT
           }
       
           /**
      @@ -68,6 +72,42 @@ public static enum FormatType {
            */
           QuantityFormat getQuantityFormat(String name);
       
      +    /**
      +     * Returns the default unit format.
      +     *
      +     * It is up to implementations what to consider a suitable default. For some (locale-sensitive) implementations it may be a unit format based on
      +     * {@code Locale.current()} while others may return {@code getUnitFormat("Simple")} or {@code getUnitFormat("ISO")}.
      +     *
      +     * @return the default {@link UnitFormat} implementation.
      +     */
      +    UnitFormat getUnitFormat();
      +
      +    /**
      +     * Returns the unit format having the specified name or {@code null} if none.
      +     *
      +     * For example {@code getUnitFormat("Simple")} to return a simple {@link UnitFormat} implementation.
      +     *
      +     * @param name
      +     *          the name of the format.
      +     * @return the corresponding unit format.
      +     */
      +    UnitFormat getUnitFormat(String name);
      +    
      +    /**
      +     * Returns the unit format having the specified name or {@code null} if none.
      +     *
      +     * For example {@code getUnitFormat("Simple")} to return a simple {@link UnitFormat} implementation.<br>
      +     * The variant is an arbitrary value to allow a variation of a {@link UnitFormat}, 
      +     * for example <code>UTF</code> vs. <code>ASCII</code> encoding of the simple <code>UnitFormat</code> 
      +     * or <code>case sensitive</code> vs. <code>case insensitive</code> <a href="https://ucum.org/ucum.html">UCUM</a> format.
      +     * <p>If no variant is applicable, the <code>UnitFormat</code> matching the name only is returned.</p> 
      +     * @param name
      +     *          the name of the format.
      +     * @param variant any arbitrary value used to indicate a variation of a <code>UnitFormat</code>.
      +     * @return the corresponding unit format.
      +     */
      +    UnitFormat getUnitFormat(String name, String variant);
      +    
           /**
            * Gets a list with available format names of a given type for this format service.
            *
      diff --git a/src/main/java/javax/measure/spi/QuantityFactory.java b/src/main/java/javax/measure/spi/QuantityFactory.java
      index 9ca2a531..a9fabe96 100644
      --- a/src/main/java/javax/measure/spi/QuantityFactory.java
      +++ b/src/main/java/javax/measure/spi/QuantityFactory.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/spi/ServiceProvider.java b/src/main/java/javax/measure/spi/ServiceProvider.java
      index 9bddc5af..14b14ba9 100644
      --- a/src/main/java/javax/measure/spi/ServiceProvider.java
      +++ b/src/main/java/javax/measure/spi/ServiceProvider.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -56,7 +56,7 @@
        * All the methods in this class are safe to use by multiple concurrent threads.
        * </p>
        *
      - * @version 1.6, January 20, 2019
      + * @version 2.3, May 19, 2023
        * @author Werner Keil
        * @author Martin Desruisseaux
        * @since 1.0
      @@ -66,18 +66,30 @@ public abstract class ServiceProvider {
            * Class name of JSR-330 annotation for naming a service provider.
            * We use reflection for keeping JSR-330 an optional dependency.
            */
      -    private static final String NAMED_ANNOTATION = "javax.inject.Named";
      +    private static final String LEGACY_NAMED_ANNOTATION = "javax.inject.Named";
       
           /**
            * Class name of JSR-250 annotation for assigning a priority level to a service provider.
            * We use reflection for keeping JSR-250 an optional dependency.
            */
      -    private static final String PRIORITY_ANNOTATION = "javax.annotation.Priority";
      +    private static final String LEGACY_PRIORITY_ANNOTATION = "javax.annotation.Priority";
      +
      +    /**
      +     * Class name of Jakarta Dependency Injection annotation for naming a service provider.
      +     * We use reflection for keeping Jakata Injection an optional dependency.
      +     */
      +    private static final String NAMED_ANNOTATION = "jakarta.inject.Named";
      +
      +    /**
      +     * Class name of Jakarta Common Annotation for assigning a priority level to a service provider.
      +     * We use reflection for keeping Jakarta Annotations an optional dependency.
      +     */
      +    private static final String PRIORITY_ANNOTATION = "jakarta.annotation.Priority";
       
           /**
            * The current service provider, or {@code null} if not yet determined.
            *
      -     * <p>IMPLEMENTATION NOTE: We do not cache a list of all service providers because that list depends
      +     * <p>Implementation Note: We do not cache a list of all service providers because that list depends
            * indirectly on the thread invoking the {@link #available()} method. More specifically, it depends
            * on the context class loader. Furthermore caching the {@code ServiceProvider}s can be a source of
            * memory leaks. See {@link ServiceLoader#load(Class)} API note for reference.</p>
      @@ -94,9 +106,10 @@ protected ServiceProvider() {
            * Allows to define a priority for a registered {@code ServiceProvider} instance.
            * When multiple providers are registered in the system, the provider with the highest priority value is taken.
            *
      -     * <p>If the {@value #PRIORITY_ANNOTATION} annotation (from JSR-250) is present on the {@code ServiceProvider}
      -     * implementation class, then that annotation is taken and this {@code getPriority()} method is ignored.
      -     * Otherwise – if the {@code Priority} annotation is absent – this method is used as a fallback.</p>
      +     * <p>If the {@value #PRIORITY_ANNOTATION} annotation (from Jakarta Annotations)
      +     * or {@value #LEGACY_PRIORITY_ANNOTATION} annotation (from JSR-250) is present on the {@code ServiceProvider}
      +     * implementation class, then that annotation (first if both were present) is taken and this {@code getPriority()} method is ignored.
      +     * Otherwise – if a {@code Priority} annotation is absent – this method is used as a fallback.</p>
            *
            * @return the provider's priority (default is 0).
            */
      @@ -111,15 +124,6 @@ public int getPriority() {
            */
           public abstract SystemOfUnitsService getSystemOfUnitsService();
       
      -    /**
      -     * Returns the service to obtain a {@link UnitFormat}, or {@code null} if none.
      -     *
      -     * @return the service to obtain a {@link UnitFormat}, or {@code null}.
      -     * @deprecated Use {@link #getFormatService()}. This method will be removed in a future version, it is here for backward compatibility only.
      -     */
      -    @Deprecated
      -    public abstract UnitFormatService getUnitFormatService();
      -
           /**
            * Returns the service to obtain {@link UnitFormat} and {@link QuantityFormat} or {@code null} if none.
            *
      @@ -152,16 +156,28 @@ private static final class Selector implements Predicate<ServiceProvider>, Compa
               private final String toSearch;
       
               /**
      -         * Class of the {@value #NAMED_ANNOTATION} and {@value #PRIORITY_ANNOTATION} annotations to search,
      -         * or {@code null} if those classes are not on the classpath.
      +         * The {@code value()} method in the {@value #NAMED_ANNOTATION} annotation,
      +         * or {@code null} if that class is not on the classpath.
      +         */
      +        private final Method nameGetter;
      +
      +        /**
      +         * The {@code value()} method in the {@value #PRIORITY_ANNOTATION} annotation,
      +         * or {@code null} if that class is not on the classpath.
                */
      -        private Class<? extends Annotation> nameAnnotation, priorityAnnotation;
      +        private final Method priorityGetter;
       
               /**
      -         * The {@code value()} method in the {@code *Annotation} class,
      -         * or {@code null} if those classes are not on the classpath.
      +         * The {@code value()} method in the {@value #LEGACY_NAMED_ANNOTATION} annotation,
      +         * or {@code null} if that class is not on the classpath.
                */
      -        private Method nameGetter, priorityGetter;
      +        private final Method legacyNameGetter;
      +
      +        /**
      +         * The {@code value()} method in the {@value #LEGACY_PRIORITY_ANNOTATION} annotation,
      +         * or {@code null} if that class is not on the classpath.
      +         */
      +        private final Method legacyPriorityGetter;
       
               /**
                * Creates a new filter and comparator for a stream of service providers.
      @@ -171,42 +187,73 @@ private static final class Selector implements Predicate<ServiceProvider>, Compa
               Selector(String name) {
                   toSearch = name;
                   try {
      -                if (name != null) try {
      -                    nameAnnotation = Class.forName(NAMED_ANNOTATION).asSubclass(Annotation.class);
      -                    nameGetter = nameAnnotation.getMethod("value", (Class[]) null);
      -                } catch (ClassNotFoundException e) {
      -                    // Ignore since JSR-330 is an optional dependency.
      -                }
      -                try {
      -                    priorityAnnotation = Class.forName(PRIORITY_ANNOTATION).asSubclass(Annotation.class);
      -                    priorityGetter = priorityAnnotation.getMethod("value", (Class[]) null);
      -                } catch (ClassNotFoundException e) {
      -                    // Ignore since JSR-250 is an optional dependency.
      +                if (name != null) {
      +                    nameGetter       = getValueMethod(NAMED_ANNOTATION);
      +                    legacyNameGetter = getValueMethod(LEGACY_NAMED_ANNOTATION);
      +                } else {
      +                    nameGetter       = null;
      +                    legacyNameGetter = null;
                       }
      +                priorityGetter       = getValueMethod(PRIORITY_ANNOTATION);
      +                legacyPriorityGetter = getValueMethod(LEGACY_PRIORITY_ANNOTATION);
                   } catch (NoSuchMethodException e) {
                       // Should never happen since value() is a standard public method of those annotations.
      -                throw new ServiceConfigurationError("Can not get annotation value", e);
      +                throw new ServiceConfigurationError("Cannot get annotation value", e);
                   }
               }
       
               /**
      -         * Returns {@code true} if the given service provider has the name we are looking for.
      -         * This method shall be invoked only if a non-null name has been specified to the constructor.
      -         * This method looks for the {@value #NAMED_ANNOTATION} annotation, and if none are found fallbacks on
      -         * {@link ServiceProvider#toString()}.
      +         * Returns the {@code value()} method in the given annotation class.
      +         *
      +         * @param  classname  name of the class from which to get the {@code value()} method.
      +         * @return the {@code value()} method, or {@code null} if the annotation class was not found.
                */
      -        @Override
      -        public boolean test(ServiceProvider provider) {
      -            Object value = null;
      -            if (nameGetter != null) {
      -                Annotation a = provider.getClass().getAnnotation(nameAnnotation);
      +        private static Method getValueMethod(final String classname) throws NoSuchMethodException {
      +            try {
      +                return Class.forName(classname).getMethod("value", (Class[]) null);
      +            } catch (ClassNotFoundException e) {
      +                // Ignore because JSR-330, JSR-250 and Jakarta are optional dependencies.
      +                return null;
      +            }
      +        }
      +
      +        /**
      +         * Invokes the {@code value()} method on the annotation of the given class.
      +         * The annotation on which to invoke the method is given by {@link Method#getDeclaringClass()}.
      +         *
      +         * @param  provider   class of the provider on which to invoke annotation {@code value()}.
      +         * @param  getter     the preferred  {@code value()} method to invoke, or {@code null}.
      +         * @param  fallback   an alternative {@code value()} method to invoke, or {@code null}.
      +         * @return the value, or {@code null} if none.
      +         */
      +        private static Object getValue(final Class<?> provider, Method getter, Method fallback) {
      +            if (getter == null) {
      +                getter = fallback;
      +                fallback = null;
      +            }
      +            while (getter != null) {
      +                final Annotation a = provider.getAnnotation(getter.getDeclaringClass().asSubclass(Annotation.class));
                       if (a != null) try {
      -                    value = nameGetter.invoke(a, (Object[]) null);
      +                    return getter.invoke(a, (Object[]) null);
                       } catch (IllegalAccessException | InvocationTargetException e) {
                           // Should never happen since value() is a public method and should not throw exception.
      -                    throw new ServiceConfigurationError("Can not get annotation value", e);
      +                    throw new ServiceConfigurationError("Cannot get annotation value", e);
                       }
      +                getter = fallback;
      +                fallback = null;
                   }
      +            return null;
      +        }
      +
      +        /**
      +         * Returns {@code true} if the given service provider has the name we are looking for.
      +         * This method shall be invoked only if a non-null name has been specified to the constructor.
      +         * This method looks for the {@value #NAMED_ANNOTATION} and {@value #LEGACY_NAMED_ANNOTATION}
      +         * annotations in that order, and if none are found fallbacks on {@link ServiceProvider#toString()}.
      +         */
      +        @Override
      +        public boolean test(final ServiceProvider provider) {
      +            Object value = getValue(provider.getClass(), nameGetter, legacyNameGetter);
                   if (value == null) {
                       value = provider.toString();
                   }
      @@ -215,18 +262,13 @@ public boolean test(ServiceProvider provider) {
       
               /**
                * Returns the priority of the given service provider.
      -         * This method looks for the {@value #PRIORITY_ANNOTATION} annotation,
      -         * and if none are found fallbacks on {@link ServiceProvider#getPriority()}.
      +         * This method looks for the {@value #PRIORITY_ANNOTATION} and {@value #LEGACY_PRIORITY_ANNOTATION}
      +         * annotations in that order, and if none are found falls back on {@link ServiceProvider#getPriority()}.
                */
      -        private int priority(ServiceProvider provider) {
      -            if (priorityGetter != null) {
      -                Annotation a = provider.getClass().getAnnotation(priorityAnnotation);
      -                if (a != null) try {
      -                    return (Integer) priorityGetter.invoke(a, (Object[]) null);
      -                } catch (IllegalAccessException | InvocationTargetException e) {
      -                    // Should never happen since value() is a public method and should not throw exception.
      -                    throw new ServiceConfigurationError("Can not get annotation value", e);
      -                }
      +        private int priority(final ServiceProvider provider) {
      +            Object value = getValue(provider.getClass(), priorityGetter, legacyPriorityGetter);
      +            if (value != null) {
      +                return (Integer) value;
                   }
                   return provider.getPriority();
               }
      @@ -237,7 +279,7 @@ private int priority(ServiceProvider provider) {
                */
               @Override
               public int compare(final ServiceProvider p1, final ServiceProvider p2) {
      -            return Integer.compare(priority(p1), priority(p2));
      +            return Integer.compare(priority(p2), priority(p1)); // reverse order, higher number first.
               }
       
               /**
      @@ -264,14 +306,7 @@ private Stream<ServiceProvider> stream() {
            */
           public static final List<ServiceProvider> available() {
               ArrayList<ServiceProvider> providers = new Selector(null).stream().collect(Collectors.toCollection(ArrayList::new));
      -        /*
      -         * Get the current service provider. If no provider has been set yet, set it now for
      -         * consistency with the contract saying that the first item is the current provider.
      -         */
      -        ServiceProvider first = current.get();
      -        if (first == null && !providers.isEmpty()) {
      -            first = setDefault(providers.get(0));
      -        }
      +        final ServiceProvider first = current.get();
               /*
                * Make sure that 'first' is the first item in the 'providers' list. If that item appears
                * somewhere else, we have to remove the second occurrence for avoiding duplicated elements.
      @@ -296,8 +331,10 @@ public static final List<ServiceProvider> available() {
           /**
            * Returns the {@link ServiceProvider} with the specified name.
            * The given name must match the name of at least one service provider available in the current thread's
      -     * context class loader. The service provider names are the values of {@value #NAMED_ANNOTATION} annotations
      -     * when present, or the value of {@link #toString()} method for providers without {@code Named} annotation.
      +     * context class loader.
      +     * The service provider names are the values of {@value #NAMED_ANNOTATION} (from Jakarta Annotations) or
      +     * {@value #LEGACY_NAMED_ANNOTATION} (from JSR-330) annotations when present (first if both were present),
      +     * or the value of {@link #toString()} method for providers without {@code Named} annotation.
            *
            * <p>Implementors are encouraged to provide an {@code Named} annotation or to override {@link #toString()}
            * and use a unique enough name, e.g. the class name or other distinct attributes.
      @@ -325,7 +362,7 @@ public static ServiceProvider of(String name) {
               if (first.isPresent()) {
                   return first.get();
               } else {
      -            throw new IllegalArgumentException("No measurement ServiceProvider " + name + " found .");
      +            throw new IllegalArgumentException("No Measurement ServiceProvider " + name + " found .");
               }
           }
       
      @@ -350,29 +387,12 @@ public static final ServiceProvider current() {
                   if (first.isPresent()) {
                       p = first.get();
                   } else {
      -                throw new IllegalStateException("No measurement ServiceProvider found.");
      +                throw new IllegalStateException("No Measurement ServiceProvider found.");
                   }
      -            p = setDefault(p);
               }
               return p;
           }
       
      -    /**
      -     * Sets the given provider as the current one if and only if no other provider are currently set.
      -     * If another provider is already set, that other provider is returned.
      -     *
      -     * @param  provider  the provider to set by default if no other provider is currently set.
      -     * @return the current provider, which is the specified {@code provider} if no other provider
      -     *         was set before this method call.
      -     */
      -    private static ServiceProvider setDefault(ServiceProvider provider) {
      -        while (!current.compareAndSet(null, provider)) {
      -            final ServiceProvider c = current.get();
      -            if (c != null) return c;
      -        }
      -        return provider;
      -    }
      -
           /**
            * Replaces the current {@link ServiceProvider}.
            *
      diff --git a/src/main/java/javax/measure/spi/SystemOfUnits.java b/src/main/java/javax/measure/spi/SystemOfUnits.java
      index 1d2363dd..19f9e19e 100644
      --- a/src/main/java/javax/measure/spi/SystemOfUnits.java
      +++ b/src/main/java/javax/measure/spi/SystemOfUnits.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/main/java/javax/measure/spi/SystemOfUnitsService.java b/src/main/java/javax/measure/spi/SystemOfUnitsService.java
      index e77faea8..47ff8123 100644
      --- a/src/main/java/javax/measure/spi/SystemOfUnitsService.java
      +++ b/src/main/java/javax/measure/spi/SystemOfUnitsService.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -47,18 +47,18 @@
        * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
        * @author <a href="mailto:martin.desruisseaux@geomatys.com">Martin
        *         Desruisseaux</a>
      - * @version 1.7, October 7, 2018
      + * @version 1.8, April 3, 2023
        * @since 1.0
        *
        * @see <a href=
      - *      "http://en.wikipedia.org/wiki/International_System_of_Units">Wikipedia:
      + *      "https://en.wikipedia.org/wiki/International_System_of_Units">Wikipedia:
        *      International System of Units</a>
        */
       public interface SystemOfUnitsService {
       
           /**
            * Returns the default {@link SystemOfUnits system of units}. Depending on the
      -     * implementation this may be the <a href="http://en.wikipedia.org/wiki/International_System_of_Units">International
      +     * implementation this may be the <a href="https://en.wikipedia.org/wiki/International_System_of_Units">International
            * System of Units</a> or another default system.
            *
            * @return the default system of units.
      diff --git a/src/main/java/javax/measure/spi/package-info.java b/src/main/java/javax/measure/spi/package-info.java
      index cb762e41..d5e59475 100644
      --- a/src/main/java/javax/measure/spi/package-info.java
      +++ b/src/main/java/javax/measure/spi/package-info.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -31,10 +31,9 @@
        * [OPTIONAL] The Units of Measurement SPI. Provides services for units, quantities, unit systems and formatters/parsers.
        *
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @author  <a href="mailto:units@catmedia.us">Werner Keil</a>
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
        * @author <a href="mailto:martin.desruisseaux@geomatys.com">Martin Desruisseaux</a>
      - * @version 1.0, August 11, 2016
      + * @version 2.0, July 7, 2019
        * @since 1.0
        */
      -package javax.measure.spi;
      -
      +package javax.measure.spi;
      \ No newline at end of file
      diff --git a/src/main/jdk9/javax/measure/spi/ServiceProvider.java b/src/main/jdk9/javax/measure/spi/ServiceProvider.java
      index e786992a..91911fdd 100644
      --- a/src/main/jdk9/javax/measure/spi/ServiceProvider.java
      +++ b/src/main/jdk9/javax/measure/spi/ServiceProvider.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -43,7 +43,6 @@
       import java.util.function.Predicate;
       import java.util.stream.Collectors;
       import java.util.stream.Stream;
      -import java.util.stream.StreamSupport;
       import javax.measure.Quantity;
       import javax.measure.format.QuantityFormat;
       import javax.measure.format.UnitFormat;
      @@ -54,7 +53,7 @@
        * All the methods in this class are safe to use by multiple concurrent threads.
        * </p>
        *
      - * @version 1.6, January 20, 2019
      + * @version 2.2, November 16, 2020
        * @author Werner Keil
        * @author Martin Desruisseaux
        * @since 1.0
      @@ -64,18 +63,30 @@ public abstract class ServiceProvider {
            * Class name of JSR-330 annotation for naming a service provider.
            * We use reflection for keeping JSR-330 an optional dependency.
            */
      -    private static final String NAMED_ANNOTATION = "javax.inject.Named";
      +    private static final String LEGACY_NAMED_ANNOTATION = "javax.inject.Named";
       
           /**
            * Class name of JSR-250 annotation for assigning a priority level to a service provider.
            * We use reflection for keeping JSR-250 an optional dependency.
            */
      -    private static final String PRIORITY_ANNOTATION = "javax.annotation.Priority";
      +    private static final String LEGACY_PRIORITY_ANNOTATION = "javax.annotation.Priority";
      +
      +    /**
      +     * Class name of Jakarta Dependency Injection annotation for naming a service provider.
      +     * We use reflection for keeping Jakata Injection an optional dependency.
      +     */
      +    private static final String NAMED_ANNOTATION = "jakarta.inject.Named";
      +
      +    /**
      +     * Class name of Jakarta Common Annotation for assigning a priority level to a service provider.
      +     * We use reflection for keeping Jakarta Annotations an optional dependency.
      +     */
      +    private static final String PRIORITY_ANNOTATION = "jakarta.annotation.Priority";
       
           /**
            * The current service provider, or {@code null} if not yet determined.
            *
      -     * <p>IMPLEMENTATION NOTE: We do not cache a list of all service providers because that list depends
      +     * <p>Implementation Note: We do not cache a list of all service providers because that list depends
            * indirectly on the thread invoking the {@link #available()} method. More specifically, it depends
            * on the context class loader. Furthermore caching the {@code ServiceProvider}s can be a source of
            * memory leaks. See {@link ServiceLoader#load(Class)} API note for reference.</p>
      @@ -92,9 +103,10 @@ protected ServiceProvider() {
            * Allows to define a priority for a registered {@code ServiceProvider} instance.
            * When multiple providers are registered in the system, the provider with the highest priority value is taken.
            *
      -     * <p>If the {@value #PRIORITY_ANNOTATION} annotation (from JSR-250) is present on the {@code ServiceProvider}
      -     * implementation class, then that annotation is taken and this {@code getPriority()} method is ignored.
      -     * Otherwise – if the {@code Priority} annotation is absent – this method is used as a fallback.</p>
      +     * <p>If the {@value #PRIORITY_ANNOTATION} annotation (from Jakarta Annotations)
      +     * or {@value #LEGACY_PRIORITY_ANNOTATION} annotation (from JSR-250) is present on the {@code ServiceProvider}
      +     * implementation class, then that annotation (first if both were present) is taken and this {@code getPriority()} method is ignored.
      +     * Otherwise – if a {@code Priority} annotation is absent – this method is used as a fallback.</p>
            *
            * @return the provider's priority (default is 0).
            */
      @@ -109,15 +121,6 @@ public int getPriority() {
            */
           public abstract SystemOfUnitsService getSystemOfUnitsService();
       
      -    /**
      -     * Returns the service to obtain a {@link UnitFormat}, or {@code null} if none.
      -     *
      -     * @return the service to obtain a {@link UnitFormat}, or {@code null}.
      -     * @deprecated Use {@link #getFormatService()}. This method will be removed in a future version, it is here for backward compatibility only.
      -     */
      -    @Deprecated(forRemoval=true)
      -    public abstract UnitFormatService getUnitFormatService();
      -
           /**
            * Returns the service to obtain {@link UnitFormat} and {@link QuantityFormat} or {@code null} if none.
            *
      @@ -143,23 +146,37 @@ public int getPriority() {
            * but the filter task shall be used only if the name to search is non-null.
            * The comparator is used in all cases, for sorting providers with higher priority first.
            */
      -    private static final class Selector implements Predicate<ServiceProvider>, Comparator<ServiceProvider> {
      +    private static final class Selector implements Predicate<ServiceLoader.Provider<ServiceProvider>>,
      +            Comparator<ServiceLoader.Provider<ServiceProvider>>
      +    {
               /**
                * The name of the provider to search, or {@code null} if no filtering by name is applied.
                */
               private final String toSearch;
       
               /**
      -         * Class of the {@value #NAMED_ANNOTATION} and {@value #PRIORITY_ANNOTATION} annotations to search,
      -         * or {@code null} if those classes are not on the classpath.
      +         * The {@code value()} method in the {@value #NAMED_ANNOTATION} annotation,
      +         * or {@code null} if that class is not on the classpath.
                */
      -        private Class<? extends Annotation> nameAnnotation, priorityAnnotation;
      +        private final Method nameGetter;
       
               /**
      -         * The {@code value()} method in the {@code *Annotation} class,
      -         * or {@code null} if those classes are not on the classpath.
      +         * The {@code value()} method in the {@value #PRIORITY_ANNOTATION} annotation,
      +         * or {@code null} if that class is not on the classpath.
                */
      -        private Method nameGetter, priorityGetter;
      +        private final Method priorityGetter;
      +
      +        /**
      +         * The {@code value()} method in the {@value #LEGACY_NAMED_ANNOTATION} annotation,
      +         * or {@code null} if that class is not on the classpath.
      +         */
      +        private final Method legacyNameGetter;
      +
      +        /**
      +         * The {@code value()} method in the {@value #LEGACY_PRIORITY_ANNOTATION} annotation,
      +         * or {@code null} if that class is not on the classpath.
      +         */
      +        private final Method legacyPriorityGetter;
       
               /**
                * Creates a new filter and comparator for a stream of service providers.
      @@ -169,64 +186,102 @@ private static final class Selector implements Predicate<ServiceProvider>, Compa
               Selector(String name) {
                   toSearch = name;
                   try {
      -                if (name != null) try {
      -                    nameAnnotation = Class.forName(NAMED_ANNOTATION).asSubclass(Annotation.class);
      -                    nameGetter = nameAnnotation.getMethod("value", (Class[]) null);
      -                } catch (ClassNotFoundException e) {
      -                    // Ignore since JSR-330 is an optional dependency.
      -                }
      -                try {
      -                    priorityAnnotation = Class.forName(PRIORITY_ANNOTATION).asSubclass(Annotation.class);
      -                    priorityGetter = priorityAnnotation.getMethod("value", (Class[]) null);
      -                } catch (ClassNotFoundException e) {
      -                    // Ignore since JSR-250 is an optional dependency.
      +                if (name != null) {
      +                    nameGetter       = getValueMethod(NAMED_ANNOTATION);
      +                    legacyNameGetter = getValueMethod(LEGACY_NAMED_ANNOTATION);
      +                } else {
      +                    nameGetter       = null;
      +                    legacyNameGetter = null;
                       }
      +                priorityGetter       = getValueMethod(PRIORITY_ANNOTATION);
      +                legacyPriorityGetter = getValueMethod(LEGACY_PRIORITY_ANNOTATION);
                   } catch (NoSuchMethodException e) {
                       // Should never happen since value() is a standard public method of those annotations.
      -                throw new ServiceConfigurationError("Can not get annotation value", e);
      +                throw new ServiceConfigurationError("Cannot get annotation value", e);
                   }
               }
       
               /**
      -         * Returns {@code true} if the given service provider has the name we are looking for.
      -         * This method shall be invoked only if a non-null name has been specified to the constructor.
      -         * This method looks for the {@value #NAMED_ANNOTATION} annotation, and if none are found fallbacks on
      -         * {@link ServiceProvider#toString()}.
      +         * Returns the {@code value()} method in the given annotation class.
      +         *
      +         * @param  classname  name of the class from which to get the {@code value()} method.
      +         * @return the {@code value()} method, or {@code null} if the annotation class was not found.
                */
      -        @Override
      -        public boolean test(ServiceProvider provider) {
      -            Object value = null;
      -            if (nameGetter != null) {
      -                Annotation a = provider.getClass().getAnnotation(nameAnnotation);
      +        private static Method getValueMethod(final String classname) throws NoSuchMethodException {
      +            try {
      +                return Class.forName(classname).getMethod("value", (Class[]) null);
      +            } catch (ClassNotFoundException e) {
      +                // Ignore because JSR-330, JSR-250 and Jakarta are optional dependencies.
      +                return null;
      +            }
      +        }
      +
      +        /**
      +         * Invokes the {@code value()} method on the annotation of the given class.
      +         * The annotation on which to invoke the method is given by {@link Method#getDeclaringClass()}.
      +         *
      +         * @param  provider   class of the provider on which to invoke annotation {@code value()}.
      +         * @param  getter     the preferred  {@code value()} method to invoke, or {@code null}.
      +         * @param  fallback   an alternative {@code value()} method to invoke, or {@code null}.
      +         * @return the value, or {@code null} if none.
      +         */
      +        private static Object getValue(final Class<?> provider, Method getter, Method fallback) {
      +            if (getter == null) {
      +                getter = fallback;
      +                fallback = null;
      +            }
      +            while (getter != null) {
      +                final Annotation a = provider.getAnnotation(getter.getDeclaringClass().asSubclass(Annotation.class));
                       if (a != null) try {
      -                    value = nameGetter.invoke(a, (Object[]) null);
      +                    return getter.invoke(a, (Object[]) null);
                       } catch (IllegalAccessException | InvocationTargetException e) {
                           // Should never happen since value() is a public method and should not throw exception.
      -                    throw new ServiceConfigurationError("Can not get annotation value", e);
      +                    throw new ServiceConfigurationError("Cannot get annotation value", e);
                       }
      +                getter = fallback;
      +                fallback = null;
                   }
      +            return null;
      +        }
      +
      +        /**
      +         * Returns {@code true} if the given service provider has the name we are looking for.
      +         * This method shall be invoked only if a non-null name has been specified to the constructor.
      +         * This method looks for the {@value #NAMED_ANNOTATION} and {@value #LEGACY_NAMED_ANNOTATION}
      +         * annotations in that order, and if none are found fallbacks on {@link ServiceProvider#toString()}.
      +         */
      +        public boolean test(final ServiceProvider provider) {
      +            Object value = getValue(provider.getClass(), nameGetter, legacyNameGetter);
                   if (value == null) {
                       value = provider.toString();
                   }
                   return toSearch.equals(value);
               }
       
      +        /**
      +         * Same test than {@link #test(ServiceProvider)} but applied on a service provider with deferred instantiation.
      +         */
      +        @Override
      +        public boolean test(final ServiceLoader.Provider<ServiceProvider> provider) {
      +            Object value = getValue(provider.type(), nameGetter, legacyNameGetter);
      +            if (value == null) {
      +                value = provider.get().toString();
      +            }
      +            return toSearch.equals(value);
      +        }
      +
      +
               /**
                * Returns the priority of the given service provider.
      -         * This method looks for the {@value #PRIORITY_ANNOTATION} annotation,
      -         * and if none are found fallbacks on {@link ServiceProvider#getPriority()}.
      +         * This method looks for the {@value #PRIORITY_ANNOTATION} and {@value #LEGACY_PRIORITY_ANNOTATION}
      +         * annotations in that order, and if none are found falls back on {@link ServiceProvider#getPriority()}.
                */
      -        private int priority(ServiceProvider provider) {
      -            if (priorityGetter != null) {
      -                Annotation a = provider.getClass().getAnnotation(priorityAnnotation);
      -                if (a != null) try {
      -                    return (Integer) priorityGetter.invoke(a, (Object[]) null);
      -                } catch (IllegalAccessException | InvocationTargetException e) {
      -                    // Should never happen since value() is a public method and should not throw exception.
      -                    throw new ServiceConfigurationError("Can not get annotation value", e);
      -                }
      +        private int priority(final ServiceLoader.Provider<ServiceProvider> provider) {
      +            Object value = getValue(provider.type(), priorityGetter, legacyPriorityGetter);
      +            if (value != null) {
      +                return (Integer) value;
                   }
      -            return provider.getPriority();
      +            return provider.get().getPriority();
               }
       
               /**
      @@ -234,8 +289,8 @@ private int priority(ServiceProvider provider) {
                * The priority of each provider is determined as documented by {@link ServiceProvider#getPriority()}.
                */
               @Override
      -        public int compare(final ServiceProvider p1, final ServiceProvider p2) {
      -            return Integer.compare(priority(p1), priority(p2));
      +        public int compare(final ServiceLoader.Provider<ServiceProvider> p1, final ServiceLoader.Provider<ServiceProvider> p2) {
      +            return Integer.compare(priority(p2), priority(p1)); // reverse order, higher number first.
               }
       
               /**
      @@ -244,11 +299,11 @@ public int compare(final ServiceProvider p1, final ServiceProvider p2) {
                * which itself depends on which thread is invoking this method.
                */
               private Stream<ServiceProvider> stream() {
      -            Stream<ServiceProvider> stream = StreamSupport.stream(ServiceLoader.load(ServiceProvider.class).spliterator(), false);
      +            Stream<ServiceLoader.Provider<ServiceProvider>> stream = ServiceLoader.load(ServiceProvider.class).stream();
                   if (toSearch != null) {
                       stream = stream.filter(this);
                   }
      -            return stream.sorted(this);
      +            return stream.sorted(this).map(ServiceLoader.Provider::get);
               }
           }
       
      @@ -262,14 +317,7 @@ private Stream<ServiceProvider> stream() {
            */
           public static final List<ServiceProvider> available() {
               ArrayList<ServiceProvider> providers = new Selector(null).stream().collect(Collectors.toCollection(ArrayList::new));
      -        /*
      -         * Get the current service provider. If no provider has been set yet, set it now for
      -         * consistency with the contract saying that the first item is the current provider.
      -         */
      -        ServiceProvider first = current.get();
      -        if (first == null && !providers.isEmpty()) {
      -            first = setDefault(providers.get(0));
      -        }
      +        final ServiceProvider first = current.get();
               /*
                * Make sure that 'first' is the first item in the 'providers' list. If that item appears
                * somewhere else, we have to remove the second occurrence for avoiding duplicated elements.
      @@ -294,8 +342,10 @@ public static final List<ServiceProvider> available() {
           /**
            * Returns the {@link ServiceProvider} with the specified name.
            * The given name must match the name of at least one service provider available in the current thread's
      -     * context class loader. The service provider names are the values of {@value #NAMED_ANNOTATION} annotations
      -     * when present, or the value of {@link #toString()} method for providers without {@code Named} annotation.
      +     * context class loader.
      +     * The service provider names are the values of {@value #NAMED_ANNOTATION} (from Jakarta Annotations) or
      +     * {@value #LEGACY_NAMED_ANNOTATION} (from JSR-330) annotations when present (first if both were present),
      +     * or the value of {@link #toString()} method for providers without {@code Named} annotation.
            *
            * <p>Implementors are encouraged to provide an {@code Named} annotation or to override {@link #toString()}
            * and use a unique enough name, e.g. the class name or other distinct attributes.
      @@ -323,7 +373,7 @@ public static ServiceProvider of(String name) {
               if (first.isPresent()) {
                   return first.get();
               } else {
      -            throw new IllegalArgumentException("No measurement ServiceProvider " + name + " found .");
      +            throw new IllegalArgumentException("No Measurement ServiceProvider " + name + " found .");
               }
           }
       
      @@ -348,29 +398,12 @@ public static final ServiceProvider current() {
                   if (first.isPresent()) {
                       p = first.get();
                   } else {
      -                throw new IllegalStateException("No measurement ServiceProvider found.");
      +                throw new IllegalStateException("No Measurement ServiceProvider found.");
                   }
      -            p = setDefault(p);
               }
               return p;
           }
       
      -    /**
      -     * Sets the given provider as the current one if and only if no other provider are currently set.
      -     * If another provider is already set, that other provider is returned.
      -     *
      -     * @param  provider  the provider to set by default if no other provider is currently set.
      -     * @return the current provider, which is the specified {@code provider} if no other provider
      -     *         was set before this method call.
      -     */
      -    private static ServiceProvider setDefault(ServiceProvider provider) {
      -        while (!current.compareAndSet(null, provider)) {
      -            final ServiceProvider c = current.get();
      -            if (c != null) return c;
      -        }
      -        return provider;
      -    }
      -
           /**
            * Replaces the current {@link ServiceProvider}.
            *
      diff --git a/src/main/jdk9/module-info.java b/src/main/jdk9/module-info.java
      index ad3833ee..9327ec04 100644
      --- a/src/main/jdk9/module-info.java
      +++ b/src/main/jdk9/module-info.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -33,11 +33,5 @@
           exports javax.measure.quantity;
           exports javax.measure.spi;
       
      -    uses javax.measure.format.QuantityFormat;
      -    uses javax.measure.format.UnitFormat;
      -    uses javax.measure.spi.FormatService;
      -    uses javax.measure.spi.QuantityFactory;
           uses javax.measure.spi.ServiceProvider;
      -    uses javax.measure.spi.SystemOfUnitsService;
      -    uses javax.measure.spi.UnitFormatService;
       }
      diff --git a/src/site/apt/index.apt b/src/site/apt/index.apt
      index acbaad50..1d5655a0 100644
      --- a/src/site/apt/index.apt
      +++ b/src/site/apt/index.apt
      @@ -4,21 +4,21 @@
                           -----------------------------------------------------
                           Jean-Marie Dautelle, Werner Keil, Otavio Santana
                           -----------------------------------------------------
      -                    2019-01-28
      +                    2023-05-20
                           -----------------------------------------------------
       
       
       The Units of Measurement API for Java
       
      -[./images/duke.png] Logo
      +[./images/duke.png]
       
         Units of Measurement Standard - This JSR specifies Java packages for modeling and working with measurement values,
         quantities and their corresponding units.
       
      -  Copyright 2014-2019 Jean-Marie Dautelle, Werner Keil, Otavio Santana
      +  Copyright 2014-2023 Jean-Marie Dautelle, Werner Keil, Otavio Santana
         All rights reserved. 
       
      -  See {{{./license.html}license}} for details.
      +  See {{{./licenses.html}licenses}} for details.
       
       * The project
       
      @@ -33,7 +33,6 @@ The Units of Measurement API for Java
       
           * {{{./apidocs/index.html}Browse javadoc}}
       
      -    * {{{https://bintray.com/unitsofmeasurement/downloads}Presentation material}} (e.g. slides, draft specification)
      +    * {{{httpS://unitsofmeasurement.github.io/pages/references.html}References}} (e.g. slides, draft specification)
       
           * {{{https://circleci.com/gh/unitsofmeasurement/unit-api/}Snapshot builds}}
      -
      diff --git a/src/site/resources/images/AbstractSystemOfUnits.PNG b/src/site/resources/images/AbstractSystemOfUnits.PNG
      new file mode 100644
      index 00000000..49379b7f
      Binary files /dev/null and b/src/site/resources/images/AbstractSystemOfUnits.PNG differ
      diff --git a/src/site/resources/images/Dimension.PNG b/src/site/resources/images/Dimension.PNG
      new file mode 100644
      index 00000000..3a9cae5e
      Binary files /dev/null and b/src/site/resources/images/Dimension.PNG differ
      diff --git a/src/site/resources/images/Measurement.PNG b/src/site/resources/images/Measurement.PNG
      new file mode 100644
      index 00000000..cda3edeb
      Binary files /dev/null and b/src/site/resources/images/Measurement.PNG differ
      diff --git a/src/site/resources/images/Prefix.PNG b/src/site/resources/images/Prefix.PNG
      new file mode 100644
      index 00000000..5ffb3b3e
      Binary files /dev/null and b/src/site/resources/images/Prefix.PNG differ
      diff --git a/src/site/resources/images/Quantity.PNG b/src/site/resources/images/Quantity.PNG
      new file mode 100644
      index 00000000..5bd03d22
      Binary files /dev/null and b/src/site/resources/images/Quantity.PNG differ
      diff --git a/src/site/resources/images/QuantityFactory.PNG b/src/site/resources/images/QuantityFactory.PNG
      new file mode 100644
      index 00000000..1e1e460e
      Binary files /dev/null and b/src/site/resources/images/QuantityFactory.PNG differ
      diff --git a/src/site/resources/images/QuantityFormat.PNG b/src/site/resources/images/QuantityFormat.PNG
      new file mode 100644
      index 00000000..e41a53c7
      Binary files /dev/null and b/src/site/resources/images/QuantityFormat.PNG differ
      diff --git a/src/site/resources/images/Range.PNG b/src/site/resources/images/Range.PNG
      new file mode 100644
      index 00000000..e33e9c47
      Binary files /dev/null and b/src/site/resources/images/Range.PNG differ
      diff --git a/src/site/resources/images/SystemOfUnits.PNG b/src/site/resources/images/SystemOfUnits.PNG
      new file mode 100644
      index 00000000..fb66b9bd
      Binary files /dev/null and b/src/site/resources/images/SystemOfUnits.PNG differ
      diff --git a/src/site/resources/images/Unit.PNG b/src/site/resources/images/Unit.PNG
      new file mode 100644
      index 00000000..6a1652c2
      Binary files /dev/null and b/src/site/resources/images/Unit.PNG differ
      diff --git a/src/site/resources/images/UnitFormat.PNG b/src/site/resources/images/UnitFormat.PNG
      new file mode 100644
      index 00000000..91abd810
      Binary files /dev/null and b/src/site/resources/images/UnitFormat.PNG differ
      diff --git a/src/test/java/javax/measure/spi/FormatServiceTest.java b/src/test/java/javax/measure/spi/FormatServiceTest.java
      index c51834af..5f98f5db 100644
      --- a/src/test/java/javax/measure/spi/FormatServiceTest.java
      +++ b/src/test/java/javax/measure/spi/FormatServiceTest.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -32,6 +32,7 @@
       import org.junit.jupiter.api.Test;
       
       import static org.junit.jupiter.api.Assertions.*;
      +import static javax.measure.spi.FormatService.FormatType.UNIT_FORMAT;
       
       import java.util.HashMap;
       import java.util.Map;
      @@ -51,9 +52,9 @@ public class FormatServiceTest {
            * method for avoiding issues with the order in which JUnit executes tests.
            */
           @Test
      -    public void testGetDefault() {
      +    public void testGetUnitFormats() {
               FormatService service = new TestFormatService();
      -        assertEquals(0, service.getAvailableFormatNames().size());
      +        assertEquals(0, service.getAvailableFormatNames(UNIT_FORMAT).size());
           }
       
           /**
      @@ -81,6 +82,17 @@ public UnitFormat getUnitFormat(String formatName) {
                   Objects.requireNonNull(formatName, "Format name required");
                   return unitFormats.get(formatName);
               }
      +        
      +        /*
      +         * (non-Javadoc)
      +         *
      +         * @see UnitFormatService#getUnitFormat(String)
      +         */
      +        @Override
      +        public UnitFormat getUnitFormat(String formatName, String variant) {
      +            Objects.requireNonNull(formatName, "Format name required");
      +            return unitFormats.get(formatName);
      +        }
       
               /*
                * (non-Javadoc)
      diff --git a/src/test/java/javax/measure/spi/ServiceProviderTest.java b/src/test/java/javax/measure/spi/ServiceProviderTest.java
      index 621fbd53..cce15a1d 100644
      --- a/src/test/java/javax/measure/spi/ServiceProviderTest.java
      +++ b/src/test/java/javax/measure/spi/ServiceProviderTest.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -29,6 +29,7 @@
        */
       package javax.measure.spi;
       
      +import jakarta.inject.Named;
       import org.junit.jupiter.api.Test;
       
       import static org.junit.jupiter.api.Assertions.*;
      @@ -70,7 +71,7 @@ public void testGetAndSetCurrent() {
               assertSame(testProv, ServiceProvider.setCurrent(testProv), "Setting the same ServiceProvider twice should be a no-op.");
               assertSame(testProv, ServiceProvider.current());
               assertArrayEquals(new ServiceProvider[] { testProv }, ServiceProvider.available().toArray());
      -        assertNotNull(ServiceProvider.of("TestServiceProvider"));
      +        assertNotNull(ServiceProvider.of("Dummy ServiceProvider"));
           }
       
           /**
      @@ -109,7 +110,7 @@ public void testGetMetricPrefixes() {
               final SystemOfUnitsService service = testProv.getSystemOfUnitsService();
               Collection<MetricPrefix> prefixes = service.getPrefixes(MetricPrefix.class);
               assertNotNull(prefixes);
      -        assertEquals(20, prefixes.size());
      +        assertEquals(24, prefixes.size());
           }
       
           @Test
      @@ -145,6 +146,7 @@ public void testWrongEnumType() {
               });
           }
       
      +    @Named("Dummy ServiceProvider")     // Intentionally use a name different than "TestServiceProvider".
           private static final class TestServiceProvider extends ServiceProvider {
       
               @Override
      @@ -152,11 +154,6 @@ public SystemOfUnitsService getSystemOfUnitsService() {
                   return new TestSystemOfUnitsService();
               }
       
      -        @Override
      -        public UnitFormatService getUnitFormatService() {
      -            return null;
      -        }
      -
               @Override
               public <Q extends Quantity<Q>> QuantityFactory<Q> getQuantityFactory(Class<Q> quantity) {
                   return null;
      diff --git a/src/test/java/javax/measure/spi/TestSystemOfUnitsService.java b/src/test/java/javax/measure/spi/TestSystemOfUnitsService.java
      index 50c6d0be..93a34bcb 100644
      --- a/src/test/java/javax/measure/spi/TestSystemOfUnitsService.java
      +++ b/src/test/java/javax/measure/spi/TestSystemOfUnitsService.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -34,8 +34,8 @@
       import java.util.concurrent.ConcurrentHashMap;
       
       /**
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      - * @version 0.8, April 20, 2018
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      + * @version 1.0, July 7, 2019
        * @since 2.0
        */
       class TestSystemOfUnitsService implements SystemOfUnitsService {
      diff --git a/src/test/java/javax/measure/test/BinaryPrefixTest.java b/src/test/java/javax/measure/test/BinaryPrefixTest.java
      index be3eb6d9..a62b0298 100644
      --- a/src/test/java/javax/measure/test/BinaryPrefixTest.java
      +++ b/src/test/java/javax/measure/test/BinaryPrefixTest.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -93,7 +93,7 @@ public void testGibi() {
               assertEquals("Gi", GIBI.getSymbol());
               Quantity<Speed> s1 = TestQuantities.getQuantity(1.0, GIBI(mph));
               assertNotNull(s1);
      -        assertEquals("1.0 2.779789807058944E15", s1.toString());
      +        assertEquals("1.0 2779789807058944", s1.toString());
           }
       
           @Test
      @@ -101,7 +101,7 @@ public void testTebi() {
               assertEquals("Ti", TEBI.getSymbol());
               Quantity<Volume> v1 = TestQuantities.getQuantity(1.0, TEBI(litre));
               assertNotNull(v1);
      -        assertEquals("1.0 1.099511627776E9", v1.toString());
      +        assertEquals("1.0 1099511627.776", v1.toString());
           }
       
           @Test
      @@ -109,7 +109,7 @@ public void testPebi() {
               assertEquals("Pi", PEBI.getSymbol());
               Quantity<Area> a1 = TestQuantities.getQuantity(1.0, PEBI(acre));
               assertNotNull(a1);
      -        assertEquals("1.0 4.5565169229920993E18", a1.toString());
      +        assertEquals("1.0 4556516922992099300", a1.toString());
           }
       
           @Test
      @@ -117,7 +117,7 @@ public void testYobi() {
               assertEquals("Yi", YOBI.getSymbol());
               Quantity<Area> a1 = TestQuantities.getQuantity(1.0, YOBI(acre));
               assertNotNull(a1);
      -        assertEquals("1.0 4.892522791980404E27", a1.toString());
      +        assertEquals("1.0 4892522791980404000000000000", a1.toString());
           }
       
           @Test
      @@ -125,6 +125,6 @@ public void testZebi() {
               assertEquals("Zi", ZEBI.getSymbol());
               Quantity<Area> a1 = TestQuantities.getQuantity(1.0, ZEBI(acre));
               assertNotNull(a1);
      -        assertEquals("1.0 4.7778542890433635E24", a1.toString());
      +        assertEquals("1.0 4777854289043363500000000", a1.toString());
           }
       }
      diff --git a/src/test/java/javax/measure/test/CalcTripLength.java b/src/test/java/javax/measure/test/CalcTripLength.java
      index fed4cd14..4dc35567 100644
      --- a/src/test/java/javax/measure/test/CalcTripLength.java
      +++ b/src/test/java/javax/measure/test/CalcTripLength.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/CircleInfo.java b/src/test/java/javax/measure/test/CircleInfo.java
      index 6d2f80e9..12fe5d54 100644
      --- a/src/test/java/javax/measure/test/CircleInfo.java
      +++ b/src/test/java/javax/measure/test/CircleInfo.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/Conversions.java b/src/test/java/javax/measure/test/Conversions.java
      index b6046384..479c6351 100644
      --- a/src/test/java/javax/measure/test/Conversions.java
      +++ b/src/test/java/javax/measure/test/Conversions.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/ConverterTest.java b/src/test/java/javax/measure/test/ConverterTest.java
      index 19cad6e9..f7bd7591 100644
      --- a/src/test/java/javax/measure/test/ConverterTest.java
      +++ b/src/test/java/javax/measure/test/ConverterTest.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/DimensionTest.java b/src/test/java/javax/measure/test/DimensionTest.java
      index f6da24a2..1e866ae7 100644
      --- a/src/test/java/javax/measure/test/DimensionTest.java
      +++ b/src/test/java/javax/measure/test/DimensionTest.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/EnumUnit.java b/src/test/java/javax/measure/test/EnumUnit.java
      index 4e7a5c40..a55a03eb 100644
      --- a/src/test/java/javax/measure/test/EnumUnit.java
      +++ b/src/test/java/javax/measure/test/EnumUnit.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -30,6 +30,7 @@
       package javax.measure.test;
       
       import java.util.Map;
      +import java.util.Objects;
       
       import javax.measure.Dimension;
       import javax.measure.IncommensurableException;
      @@ -37,7 +38,7 @@
       import javax.measure.UnconvertibleException;
       import javax.measure.Unit;
       import javax.measure.UnitConverter;
      -import javax.measure.test.unit.MultiplyConverter;
      +import javax.measure.test.function.MultiplyConverter;
       
       /**
        * @author Werner Keil
      @@ -73,6 +74,10 @@ public Map getBaseUnits() {
           public boolean isCompatible(Unit that) {
               return (this.equals(that));
           }
      +    
      +    public boolean isEquivalentTo(Unit that) {
      +        return (this.equals(that));
      +    }
       
           public Unit asType(Class type) throws ClassCastException {
               // TODO Auto-generated method stub
      @@ -142,13 +147,26 @@ public String getName() {
       
           @Override
           public Unit prefix(Prefix prefix) {
      -        final MultiplyConverter converter = new MultiplyConverter(Math.pow(prefix.getBase(), prefix.getExponent()));
      +        final MultiplyConverter converter = new MultiplyConverter(
      +        		Math.pow(prefix.getValue().doubleValue(), prefix.getExponent()));
               return this.transform(converter);
           }
       
      -    @Override
      -    public Unit mix(Unit that) {
      -        // TODO Auto-generated method stub
      -        return null;
      -    }
      +	@Override
      +	public Unit shift(Number offset) {
      +		Objects.requireNonNull(offset);
      +		return multiply(offset.doubleValue());
      +	}
      +
      +	@Override
      +	public Unit multiply(Number multiplier) {
      +		Objects.requireNonNull(multiplier);
      +		return multiply(multiplier.doubleValue());
      +	}
      +
      +	@Override
      +	public Unit divide(Number divisor) {
      +		Objects.requireNonNull(divisor);
      +		return divide(divisor.doubleValue());
      +	}
       }
      diff --git a/src/test/java/javax/measure/test/ExceptionsTest.java b/src/test/java/javax/measure/test/ExceptionsTest.java
      index ea30d794..0b236588 100644
      --- a/src/test/java/javax/measure/test/ExceptionsTest.java
      +++ b/src/test/java/javax/measure/test/ExceptionsTest.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -32,14 +32,15 @@
       import static org.junit.jupiter.api.Assertions.*;
       
       import javax.measure.IncommensurableException;
      +import javax.measure.MeasurementError;
       import javax.measure.MeasurementException;
       import javax.measure.UnconvertibleException;
       
       import org.junit.jupiter.api.Test;
       
       /**
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      - * @version 1.1
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      + * @version 2.0
        */
       public class ExceptionsTest {
       
      @@ -49,9 +50,18 @@ static class TestException extends MeasurementException {
                   super();
               }
           }
      -
      +    
           @Test
           public void testMeasurementException() {
      +        MeasurementException e = assertThrows(MeasurementException.class, () -> {
      +            throw new TestException();
      +        });
      +        assertNull(e.getMessage());
      +        assertNull(e.getCause());
      +    }
      +
      +    @Test
      +    public void testMeasurementExceptionWithMessage() {
               MeasurementException e = assertThrows(MeasurementException.class, () -> {
                   throw new MeasurementException("error");
               });
      @@ -75,16 +85,50 @@ public void testMeasurementExceptionWithMessageAndCause() {
               });
               assertEquals("state error", e.getMessage());
               assertEquals(cause, e.getCause());
      -    }
      +    }    
       
           @Test
      -    public void testDefaultConstructor() {
      -        MeasurementException e = assertThrows(MeasurementException.class, () -> {
      -            throw new TestException();
      +    public void testMeasurementError() {
      +        MeasurementError e = assertThrows(MeasurementError.class, () -> {
      +            throw new MeasurementError();
               });
      +
               assertNull(e.getMessage());
               assertNull(e.getCause());
           }
      +    
      +    @Test
      +    public void testMeasurementErrorWithMessage() {
      +        MeasurementError e = assertThrows(MeasurementError.class, () -> {
      +            throw new MeasurementError("error");
      +        });
      +
      +        assertEquals("error", e.getMessage());
      +        assertNull(e.getCause());
      +    }
      +    
      +    @Test
      +    public void testMeasurementErrorWithCause() {
      +        MeasurementError e = assertThrows(MeasurementError.class, () -> {
      +            throw new MeasurementError(new TestException());
      +        });
      +
      +        assertNotNull(e.getMessage());
      +        assertEquals("javax.measure.test.ExceptionsTest$TestException", e.getMessage()); 
      +        // Throwable stores the toString() of a cause
      +        assertNotNull(e.getCause());
      +    }
      +    
      +    @Test
      +    public void testMeasurementErrorWithMessageAndCause() {
      +        MeasurementError e = assertThrows(MeasurementError.class, () -> {
      +            throw new MeasurementError("error", new TestException());
      +        });
      +
      +        assertNotNull(e.getMessage());
      +        assertEquals("error", e.getMessage()); 
      +        assertNotNull(e.getCause());
      +    }
       
           @Test
           public void testIncommensurableException() {
      diff --git a/src/test/java/javax/measure/test/MetricPrefixTest.java b/src/test/java/javax/measure/test/MetricPrefixTest.java
      index 158b64e0..78ed386c 100644
      --- a/src/test/java/javax/measure/test/MetricPrefixTest.java
      +++ b/src/test/java/javax/measure/test/MetricPrefixTest.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -33,6 +33,7 @@
       import javax.measure.Unit;
       import javax.measure.quantity.Area;
       import javax.measure.quantity.Length;
      +import javax.measure.quantity.Mass;
       import javax.measure.quantity.Speed;
       import javax.measure.quantity.Time;
       import javax.measure.quantity.Volume;
      @@ -48,17 +49,25 @@
       import static javax.measure.MetricPrefix.*;
       import static javax.measure.test.unit.AreaUnit.*;
       import static javax.measure.test.unit.DistanceUnit.*;
      +import static javax.measure.test.unit.MassUnit.*;
       import static javax.measure.test.unit.SpeedUnit.*;
       import static javax.measure.test.unit.TimeUnit.*;
       import static javax.measure.test.unit.VolumeUnit.*;
       
      +/**
      + * JUnit tests for the 24 prefixes used in the metric system (decimal multiples and submultiples of units).
      + * 
      + * @author <a href="mailto:werner@units.tech">Werner Keil</a>
      + * @version 2.2, May 9, 2023
      + * @since 2.0
      + */
       public class MetricPrefixTest {
           @Test
           public void testAtto() {
               assertEquals("a", ATTO.getSymbol());
               assertEquals("ATTO", ATTO.getName());
               Quantity<Time> t1 = TestQuantities.getQuantity(1.0, ATTO(min));
      -        assertEquals("min * 6.0E-17", t1.getUnit().toString());
      +        assertEquals("min * 0.000000000000000060", t1.getUnit().toString());
           }
       
           @Test
      @@ -79,9 +88,16 @@ public void testDeci() {
               assertNull(m2); // TODO temporary workaround
           }
       
      +    @Test
      +    public void testDeca() {
      +        assertEquals("da", DECA.getSymbol());
      +        Quantity<Volume> v1 = TestQuantities.getQuantity(1.0, DECA(litre));
      +        assertEquals("0.01", v1.getUnit().toString());
      +    }
      +    
           @Test
           public void testDeka() {
      -        assertEquals("da", DEKA.getSymbol());
      +        assertEquals("da", DECA.getSymbol());
               Quantity<Volume> v1 = TestQuantities.getQuantity(1.0, DEKA(litre));
               assertEquals("0.01", v1.getUnit().toString());
           }
      @@ -90,21 +106,21 @@ public void testDeka() {
           public void testExa() {
               assertEquals("E", EXA.getSymbol());
               Quantity<Length> l1 = TestQuantities.getQuantity(1.0, EXA(m));
      -        assertEquals("m * 1.0E18", l1.getUnit().toString());
      +        assertEquals("m * 1000000000000000000", l1.getUnit().toString());
           }
       
           @Test
           public void testFemto() {
               assertEquals("f", FEMTO.getSymbol());
               Quantity<Time> t1 = TestQuantities.getQuantity(1.0, FEMTO(s));
      -        assertEquals("s * 1.0E-15", t1.getUnit().toString());
      +        assertEquals("s * 0.0000000000000010", t1.getUnit().toString());
           }
       
           @Test
           public void testGiga() {
               assertEquals("G", GIGA.getSymbol());
               Quantity<Area> a1 = TestQuantities.getQuantity(1.0, GIGA(acre));
      -        assertEquals("4.047E12", a1.getUnit().toString());
      +        assertEquals("4047000000000", a1.getUnit().toString());
           }
       
           @Test
      @@ -139,7 +155,7 @@ public void testMega() {
           public void testMilli() {
               Quantity<Volume> m1 = TestQuantities.getQuantity(10, MILLI(litre));
               assertEquals(10d, m1.getValue());
      -        assertEquals("1.0E-6", m1.getUnit().toString());
      +        assertEquals("0.0000010", m1.getUnit().toString());
           }
       
           @Test
      @@ -151,7 +167,7 @@ public void testMicro() {
               assertEquals("m", m1.getUnit().getSymbol());
       
               Quantity<Length> m2 = m1.to(MICRO(m));
      -        assertNull(m2); // TODO temporary workaround
      +        assertNull(m2); // the unit model in the test implementation is only partial, hence null here
           }
       
           @Test
      @@ -161,7 +177,7 @@ public void testNano() {
               assertEquals("m", m1.getUnit().getSymbol());
       
               Quantity<Length> m2 = m1.to(NANO(m));
      -        assertNull(m2); // TODO temporary workaround
      +        assertNull(m2); // the unit model in the test implementation is only partial, hence null here
           }
       
           @Test
      @@ -169,7 +185,7 @@ public void testPeta() {
               assertEquals("P", PETA.getSymbol());
               Quantity<Speed> s1 = TestQuantities.getQuantity(10, PETA(kmh));
               assertEquals(10d, s1.getValue());
      -        assertEquals("1.0E15", s1.getUnit().toString());
      +        assertEquals("1000000000000000", s1.getUnit().toString());
           }
       
           @Test
      @@ -177,7 +193,7 @@ public void testPico() {
               assertEquals("p", PICO.getSymbol());
               Quantity<Volume> v1 = TestQuantities.getQuantity(10, PICO(litre));
               assertEquals(10d, v1.getValue());
      -        assertEquals("1.0E-15", v1.getUnit().toString());
      +        assertEquals("0.0000000000000010", v1.getUnit().toString());
           }
       
           @Test
      @@ -185,7 +201,7 @@ public void testTera() {
               assertEquals("T", TERA.getSymbol());
               Quantity<Length> l1 = TestQuantities.getQuantity(10, TERA(m));
               assertEquals(10d, l1.getValue());
      -        assertEquals("m * 1.0E12", l1.getUnit().toString());
      +        assertEquals("m * 1000000000000", l1.getUnit().toString());
           }
       
           @Test
      @@ -193,7 +209,7 @@ public void testYocto() {
               assertEquals("y", YOCTO.getSymbol());
               Quantity<Volume> v1 = TestQuantities.getQuantity(10, YOCTO(litre));
               assertEquals(10d, v1.getValue());
      -        assertEquals("9.999999999999999E-28", v1.getUnit().toString());
      +        assertEquals("0.000000000000000000000000001", v1.getUnit().toString());        
           }
       
           @Test
      @@ -201,7 +217,7 @@ public void testYotta() {
               assertEquals("Y", YOTTA.getSymbol());
               Quantity<Area> a1 = TestQuantities.getQuantity(10, YOTTA(sqmetre));
               assertEquals(10d, a1.getValue());
      -        assertEquals("1.0E24", a1.getUnit().toString());
      +        assertEquals("1000000000000000000000000", a1.getUnit().toString());
           }
       
           @Test
      @@ -209,7 +225,7 @@ public void testZepto() {
               assertEquals("z", ZEPTO.getSymbol());
               Quantity<Time> t1 = TestQuantities.getQuantity(10, ZEPTO(s));
               assertEquals(10d, t1.getValue());
      -        assertEquals("s * 1.0E-21", t1.getUnit().toString());
      +        assertEquals("s * 0.000000000000000000001", t1.getUnit().toString());
           }
       
           @Test
      @@ -217,9 +233,41 @@ public void testZetta() {
               assertEquals("Z", ZETTA.getSymbol());
               Quantity<Length> l1 = TestQuantities.getQuantity(10, ZETTA(m));
               assertEquals(10d, l1.getValue());
      -        assertEquals("m * 1.0E21", l1.getUnit().toString());
      +        assertEquals("m * 1000000000000000000000", l1.getUnit().toString());
           }
       
      +    @Test
      +    public void testRonna() {
      +        assertEquals("R", RONNA.getSymbol());
      +        Quantity<Length> l1 = TestQuantities.getQuantity(10, RONNA(m));
      +        assertEquals(10d, l1.getValue());
      +        assertEquals("m * 1000000000000000000000000000", l1.getUnit().toString());
      +    }
      +
      +    @Test
      +    public void testRonto() {
      +        assertEquals("r", RONTO.getSymbol());
      +        Quantity<Length> l1 = TestQuantities.getQuantity(1, RONTO(m));
      +        assertEquals(1d, l1.getValue());
      +        assertEquals("m * 0.000000000000000000000", l1.getUnit().toString());
      +    }
      +    
      +    @Test
      +    public void testQuetta() {
      +        assertEquals("Q", QUETTA.getSymbol());
      +        Quantity<Mass> m1 = TestQuantities.getQuantity(2, QUETTA(g));
      +        assertEquals(2d, m1.getValue());
      +        assertEquals("g * 1000000000000000000000000000", m1.getUnit().toString());
      +    }
      +
      +    @Test
      +    public void testQuecto() {
      +        assertEquals("q", QUECTO.getSymbol());
      +        Quantity<Length> l1 = TestQuantities.getQuantity(1, QUECTO(m));
      +        assertEquals(1d, l1.getValue());
      +        assertEquals("m * 0.000000000000000000000", l1.getUnit().toString());
      +    }
      +    
           private static String toUnicode(char ch) {
               return String.format("\\u%04x", (int) ch);
           }
      diff --git a/src/test/java/javax/measure/test/TestConverter.java b/src/test/java/javax/measure/test/TestConverter.java
      index c303da72..074ac253 100644
      --- a/src/test/java/javax/measure/test/TestConverter.java
      +++ b/src/test/java/javax/measure/test/TestConverter.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -39,7 +39,7 @@
        * Test class for our {@link UnitConverter} implementations.
        * </p>
        *
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
        * @version 0.8.1, $Date: 2016-02-11 $
        */
       public abstract class TestConverter implements UnitConverter {
      diff --git a/src/test/java/javax/measure/test/TestDimension.java b/src/test/java/javax/measure/test/TestDimension.java
      index 20825e94..2f31833c 100644
      --- a/src/test/java/javax/measure/test/TestDimension.java
      +++ b/src/test/java/javax/measure/test/TestDimension.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/TestUnit.java b/src/test/java/javax/measure/test/TestUnit.java
      index 156cd3a4..aa7f9770 100644
      --- a/src/test/java/javax/measure/test/TestUnit.java
      +++ b/src/test/java/javax/measure/test/TestUnit.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -29,7 +29,10 @@
        */
       package javax.measure.test;
       
      +import java.math.BigDecimal;
      +import java.math.RoundingMode;
       import java.util.Map;
      +import java.util.Objects;
       
       import javax.measure.Dimension;
       import javax.measure.Quantity;
      @@ -39,9 +42,8 @@
       import javax.measure.UnconvertibleException;
       import javax.measure.UnitConverter;
       import javax.measure.quantity.Dimensionless;
      +import javax.measure.test.function.MultiplyConverter;
       import javax.measure.test.unit.BaseUnit;
      -import javax.measure.test.unit.MixedUnit;
      -import javax.measure.test.unit.MultiplyConverter;
       
       /**
        * @author Werner Keil
      @@ -51,7 +53,7 @@ public abstract class TestUnit<Q extends Quantity<Q>> implements Unit<Q> {
       
           protected String symbol; // e.g. "A"
           protected final String name; // e.g. "Angstrom"
      -    protected double multFactor; // e.g. 1E-10
      +    protected BigDecimal multFactor; // e.g. 1E-10
           // private double addFactor = 0.0; // used for temperatures
           private final Dimension dimension = TestDimension.getInstance();
       
      @@ -61,7 +63,7 @@ protected TestUnit() {
       
           protected TestUnit(String name, double factor) {
               this.name = name;
      -        this.multFactor = factor;
      +        this.multFactor = BigDecimal.valueOf(factor);
           }
       
           protected TestUnit(String name) {
      @@ -114,7 +116,7 @@ public UnitConverter getConverterTo(Unit<Q> that) throws UnconvertibleException
           public UnitConverter getConverterToAny(Unit<?> that) throws IncommensurableException, UnconvertibleException {
               if (!isCompatible(that))
                   throw new IncommensurableException(this + " is not compatible with " + that);
      -        TestUnit thatAbstr = (TestUnit) that; // Since both units are
      +        TestUnit<?> thatAbstr = (TestUnit<?>) that; // Since both units are
               // compatible they must
               // be both test
               // units.
      @@ -146,9 +148,14 @@ public Unit<?> inverse() {
           public boolean isCompatible(Unit<?> that) {
               return false;
           }
      +    
      +	@Override
      +	public boolean isEquivalentTo(Unit<Q> that) {
      +		return this.getConverterTo(that).isIdentity();
      +	}
       
           public Unit<Q> multiply(double factor) {
      -        return new BaseUnit(symbol, multFactor * factor);
      +        return new BaseUnit<Q>(symbol, multFactor.doubleValue() * factor);
           }
       
           public Unit<?> multiply(Unit<?> that) {
      @@ -186,12 +193,13 @@ public Unit<Q> transform(UnitConverter operation) {
       
           @Override
           public Unit<Q> prefix(Prefix prefix) {
      -        final MultiplyConverter converter = new MultiplyConverter(Math.pow(prefix.getBase(), prefix.getExponent()));
      +        final MultiplyConverter converter = new MultiplyConverter(
      +        		Math.pow(prefix.getValue().doubleValue(), prefix.getExponent()));
               return this.transform(converter);
           }
       
           public double getMultFactor() {
      -        return multFactor;
      +        return multFactor.doubleValue();
           }
       
           @Override
      @@ -205,16 +213,47 @@ public String toString() {
                       sb.append(' ');
                   sb.append(symbol);
               }
      -        if (multFactor != 0 && multFactor != 1) {
      +        if (multFactor != null && 
      +        		!BigDecimal.ONE.equals(multFactor) && multFactor.doubleValue()!=1d && 
      +        		!BigDecimal.ONE.equals(multFactor) && multFactor.doubleValue()!=0d) {
                   if (sb.length() > 0)
                       sb.append(" * ");
      -            sb.append(String.valueOf(getMultFactor()));
      +            sb.append(printFactor(multFactor));
               }
               return sb.toString();
           }
           
      -    @Override
      -    public Unit<Q> mix(Unit<Q> that) {
      -        return new MixedUnit(this, that);
      -    }
      +	@Override
      +	public Unit<Q> shift(Number offset) {
      +		Objects.requireNonNull(offset);
      +		return shift(offset.doubleValue());
      +	}
      +
      +	@Override
      +	public Unit<Q> multiply(Number multiplier) {
      +		Objects.requireNonNull(multiplier);
      +		return multiply(multiplier.doubleValue());
      +	}
      +
      +	@Override
      +	public Unit<Q> divide(Number divisor) {
      +		Objects.requireNonNull(divisor);
      +		return divide(divisor.doubleValue());
      +	}
      +	
      +	private String printFactor(final BigDecimal x) {    
      +		final int s = x.scale();		
      +		if (s > 40) {
      +			BigDecimal y = x.setScale(27, RoundingMode.HALF_UP);
      +			final String result = y.toPlainString();
      +			return result;			
      +		} else {
      +			final String result = x.toPlainString();
      +			if (result.contains(".")) {			
      +				return result.length() < 24 ? result : result.substring(0, 23);
      +			} else {
      +				return result;
      +			}
      +		}
      +	}
       }
      diff --git a/src/test/java/javax/measure/test/TripLeg.java b/src/test/java/javax/measure/test/TripLeg.java
      index d1340b96..6ee7d1d9 100644
      --- a/src/test/java/javax/measure/test/TripLeg.java
      +++ b/src/test/java/javax/measure/test/TripLeg.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/UnitTest.java b/src/test/java/javax/measure/test/UnitTest.java
      index 1efadb77..d6133bea 100644
      --- a/src/test/java/javax/measure/test/UnitTest.java
      +++ b/src/test/java/javax/measure/test/UnitTest.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -47,6 +47,8 @@
        *
        */
       public class UnitTest {
      +	private static final Number NULL_NUMBER = null;
      +	
           @SuppressWarnings("rawtypes")
           private Unit sut;
       
      @@ -81,6 +83,15 @@ public void testGetDimension() {
           public void testIsCompatible() {
               assertTrue(sut.isCompatible(TEST));
           }
      +    
      +    /**
      +     * Test method for {@link javax.measure.test.EnumUnit#isEquivalentTo(javax.measure.Unit)}.
      +     */
      +    @SuppressWarnings("unchecked")
      +	@Test
      +    public void testIsEquivalentTo() {
      +        assertTrue(sut.isEquivalentTo(TEST));
      +    }
       
           @Test
           public void testGetConverterTo() {
      @@ -91,4 +102,31 @@ public void testGetConverterTo() {
                   assertNotNull(converter);
               });
           }
      +    
      +    @Test
      +    public void testDivideNull() {
      +        assertThrows(NullPointerException.class, () -> {
      +            sut = DistanceUnit.m;          
      +            @SuppressWarnings({ "rawtypes", "unused" })
      +			Unit result = sut.divide(NULL_NUMBER);
      +        });
      +    }
      +    
      +    @Test
      +    public void testMultiplyNull() {
      +        assertThrows(NullPointerException.class, () -> {
      +            sut = DistanceUnit.m;          
      +            @SuppressWarnings({ "unused", "rawtypes" })
      +			Unit result = sut.multiply(NULL_NUMBER);
      +        });
      +    }
      +    
      +    @Test
      +    public void testShiftNull() {
      +        assertThrows(NullPointerException.class, () -> {
      +            sut = DistanceUnit.m;          
      +            @SuppressWarnings({ "unused", "rawtypes" })
      +			Unit result = sut.shift(NULL_NUMBER);
      +        });
      +    }
       }
      diff --git a/src/test/java/javax/measure/test/format/MeasurementParseTest.java b/src/test/java/javax/measure/test/format/MeasurementParseTest.java
      index 0d8d553e..8285f2bf 100644
      --- a/src/test/java/javax/measure/test/format/MeasurementParseTest.java
      +++ b/src/test/java/javax/measure/test/format/MeasurementParseTest.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -30,7 +30,6 @@
       package javax.measure.test.format;
       
       import javax.measure.format.MeasurementParseException;
      -import javax.measure.format.ParserException;
       
       import org.junit.jupiter.api.Test;
       import static org.junit.jupiter.api.Assertions.*;
      @@ -49,22 +48,22 @@ public void testExceptionWithMessage() {
       
           @Test
           public void testOldExceptionWithMessageDataAndPos() {
      -        assertThrows(ParserException.class, () -> {
      -            throw new ParserException("Error", " ", 0);
      +        assertThrows(MeasurementParseException.class, () -> {
      +            throw new MeasurementParseException("Error", " ", 0);
               });
           }
       
           @Test
           public void testOldExceptionWithMessageAndPos() {
      -        assertThrows(ParserException.class, () -> {
      -            throw new ParserException("Error", 0);
      +        assertThrows(MeasurementParseException.class, () -> {
      +            throw new MeasurementParseException("Error", 0);
               });
           }
       
           @Test
           public void testOldExceptionWithCause() {
      -        assertThrows(ParserException.class, () -> {
      -            throw new ParserException(new IllegalArgumentException("Error"));
      +        assertThrows(MeasurementParseException.class, () -> {
      +            throw new MeasurementParseException(new IllegalArgumentException("Error"));
               });
           }
       }
      diff --git a/src/test/java/javax/measure/test/format/QuantityFormatTest.java b/src/test/java/javax/measure/test/format/QuantityFormatTest.java
      index f3fc4473..16aab7e2 100644
      --- a/src/test/java/javax/measure/test/format/QuantityFormatTest.java
      +++ b/src/test/java/javax/measure/test/format/QuantityFormatTest.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -41,7 +41,7 @@
       import org.junit.jupiter.api.Test;
       
       /**
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
        *
        */
       public class QuantityFormatTest {
      @@ -52,7 +52,7 @@ public class QuantityFormatTest {
           @BeforeEach
           public void init() {
               sut = new DistanceQuantity(10, DistanceUnit.m);
      -        format = DefaultTestQuantityFormat.getInstance();
      +        format = SimpleTestQuantityFormat.getInstance();
           }
       
           @Test
      diff --git a/src/test/java/javax/measure/test/format/DefaultTestQuantityFormat.java b/src/test/java/javax/measure/test/format/SimpleTestQuantityFormat.java
      similarity index 94%
      rename from src/test/java/javax/measure/test/format/DefaultTestQuantityFormat.java
      rename to src/test/java/javax/measure/test/format/SimpleTestQuantityFormat.java
      index 58a7a720..dababd06 100644
      --- a/src/test/java/javax/measure/test/format/DefaultTestQuantityFormat.java
      +++ b/src/test/java/javax/measure/test/format/SimpleTestQuantityFormat.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -41,10 +41,11 @@
       import javax.measure.test.quantity.TestQuantities;
       
       /**
      - * Holds standard implementation
      + * Holds a simple standard implementation
      + * @version 1.0
        */
       @SuppressWarnings("rawtypes")
      -class DefaultTestQuantityFormat extends TestQuantityFormat {
      +class SimpleTestQuantityFormat extends TestQuantityFormat {
       
           /**
            * Returns the Quantity format for the default locale.
      @@ -52,7 +53,7 @@ class DefaultTestQuantityFormat extends TestQuantityFormat {
            * @return the locale format.
            */
           public static QuantityFormat getInstance() {
      -        return new DefaultTestQuantityFormat();
      +        return new SimpleTestQuantityFormat();
           }
       
           @Override
      diff --git a/src/test/java/javax/measure/test/format/SimpleTestUnitFormat.java b/src/test/java/javax/measure/test/format/SimpleTestUnitFormat.java
      index b4887dca..2a032f2a 100644
      --- a/src/test/java/javax/measure/test/format/SimpleTestUnitFormat.java
      +++ b/src/test/java/javax/measure/test/format/SimpleTestUnitFormat.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -39,8 +39,8 @@
       /**
        * Provides a simple interface for formatting and parsing {@linkplain Unit units}.
        *
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      - * @version 0.7
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      + * @version 1.0, February 13, 2021
        */
       public class SimpleTestUnitFormat extends TestUnitFormat {
           private final Map<String, String> symbolMap = new HashMap<>();
      @@ -88,8 +88,4 @@ public Appendable format(final Unit<?> unit, final Appendable appendable) throws
       
           public void label(Unit<?> unit, String label) {
           }
      -
      -    public boolean isLocaleSensitive() {
      -        return false;
      -    }
       }
      diff --git a/src/test/java/javax/measure/test/format/TestQuantityFormat.java b/src/test/java/javax/measure/test/format/TestQuantityFormat.java
      index 5bddca93..ab9013d7 100644
      --- a/src/test/java/javax/measure/test/format/TestQuantityFormat.java
      +++ b/src/test/java/javax/measure/test/format/TestQuantityFormat.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -44,7 +44,7 @@
        * </p>
        *
        * @author <a href="mailto:Quantitys@catmedia.us">Werner Keil</a>
      - * @version 0.2
      + * @version 1.0
        *
        */
       abstract class TestQuantityFormat implements QuantityFormat {
      diff --git a/src/test/java/javax/measure/test/format/TestUnitFormat.java b/src/test/java/javax/measure/test/format/TestUnitFormat.java
      index 64d46854..13edd13d 100644
      --- a/src/test/java/javax/measure/test/format/TestUnitFormat.java
      +++ b/src/test/java/javax/measure/test/format/TestUnitFormat.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -53,7 +53,7 @@
        * </p>
        *
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
        * @version 1.1
        *
        */
      diff --git a/src/test/java/javax/measure/test/format/UnitFormatTest.java b/src/test/java/javax/measure/test/format/UnitFormatTest.java
      index 44a46008..0cad8599 100644
      --- a/src/test/java/javax/measure/test/format/UnitFormatTest.java
      +++ b/src/test/java/javax/measure/test/format/UnitFormatTest.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -48,7 +48,7 @@
       import org.junit.jupiter.api.Test;
       
       /**
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
        *
        */
       public class UnitFormatTest {
      diff --git a/src/test/java/javax/measure/test/format/package-info.java b/src/test/java/javax/measure/test/format/package-info.java
      index b1cec9cd..fae14434 100644
      --- a/src/test/java/javax/measure/test/format/package-info.java
      +++ b/src/test/java/javax/measure/test/format/package-info.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -27,9 +27,6 @@
        * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
        * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
        */
      -/**
      - *
      - */
       /**
        * @author Werner
        *
      diff --git a/src/test/java/javax/measure/test/unit/MultiplyConverter.java b/src/test/java/javax/measure/test/function/MultiplyConverter.java
      similarity index 88%
      rename from src/test/java/javax/measure/test/unit/MultiplyConverter.java
      rename to src/test/java/javax/measure/test/function/MultiplyConverter.java
      index 8fe85cff..5e405c6d 100644
      --- a/src/test/java/javax/measure/test/unit/MultiplyConverter.java
      +++ b/src/test/java/javax/measure/test/function/MultiplyConverter.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -27,7 +27,7 @@
        * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
        * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
        */
      -package javax.measure.test.unit;
      +package javax.measure.test.function;
       
       import javax.measure.UnitConverter;
       import javax.measure.test.TestConverter;
      @@ -40,8 +40,8 @@
        * </p>
        *
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      - * @version 1.0, March 28, 2018
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
      + * @version 1.1, June 28, 2019
        * @since 2.0
        */
       public final class MultiplyConverter extends TestConverter implements Comparable<UnitConverter> {
      @@ -64,6 +64,18 @@ public MultiplyConverter(double factor) {
                   throw new IllegalArgumentException("Would result in identity converter");
               this.factor = factor;
           }
      +    
      +    /**
      +     * Creates a multiply converter with the specified scale factor.
      +     *
      +     * @param factor
      +     *          the scaling factor.
      +     * @throws IllegalArgumentException
      +     *           if coefficient is <code>1.0</code> (would result in identity converter)
      +     */
      +    public MultiplyConverter(Number factor) {
      +    	this(factor.doubleValue());
      +    }
       
           /**
            * Returns the scale factor of this converter.
      diff --git a/src/test/java/javax/measure/test/package-info.java b/src/test/java/javax/measure/test/package-info.java
      index 90afae05..f9b2a3ce 100644
      --- a/src/test/java/javax/measure/test/package-info.java
      +++ b/src/test/java/javax/measure/test/package-info.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/quantity/AreaQuantity.java b/src/test/java/javax/measure/test/quantity/AreaQuantity.java
      index 5da2c450..5c444f73 100644
      --- a/src/test/java/javax/measure/test/quantity/AreaQuantity.java
      +++ b/src/test/java/javax/measure/test/quantity/AreaQuantity.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/quantity/AreaQuantityTest.java b/src/test/java/javax/measure/test/quantity/AreaQuantityTest.java
      index b70811d5..6fd10a1f 100644
      --- a/src/test/java/javax/measure/test/quantity/AreaQuantityTest.java
      +++ b/src/test/java/javax/measure/test/quantity/AreaQuantityTest.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/quantity/CircleInfo.java b/src/test/java/javax/measure/test/quantity/CircleInfo.java
      index bbde6d34..1c081669 100644
      --- a/src/test/java/javax/measure/test/quantity/CircleInfo.java
      +++ b/src/test/java/javax/measure/test/quantity/CircleInfo.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/quantity/DimensionlessQuantity.java b/src/test/java/javax/measure/test/quantity/DimensionlessQuantity.java
      index f7fad2dd..457216ba 100644
      --- a/src/test/java/javax/measure/test/quantity/DimensionlessQuantity.java
      +++ b/src/test/java/javax/measure/test/quantity/DimensionlessQuantity.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/quantity/DistanceQuantity.java b/src/test/java/javax/measure/test/quantity/DistanceQuantity.java
      index 9353ba4e..c3810d72 100644
      --- a/src/test/java/javax/measure/test/quantity/DistanceQuantity.java
      +++ b/src/test/java/javax/measure/test/quantity/DistanceQuantity.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/quantity/DistanceQuantityTest.java b/src/test/java/javax/measure/test/quantity/DistanceQuantityTest.java
      index e7ddefc6..62b58c57 100644
      --- a/src/test/java/javax/measure/test/quantity/DistanceQuantityTest.java
      +++ b/src/test/java/javax/measure/test/quantity/DistanceQuantityTest.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/quantity/TemperatureQuantity.java b/src/test/java/javax/measure/test/quantity/TemperatureQuantity.java
      index 1510eb38..b710117a 100644
      --- a/src/test/java/javax/measure/test/quantity/TemperatureQuantity.java
      +++ b/src/test/java/javax/measure/test/quantity/TemperatureQuantity.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/quantity/TemperatureQuantityTest.java b/src/test/java/javax/measure/test/quantity/TemperatureQuantityTest.java
      index 7f82a521..51c32f0a 100644
      --- a/src/test/java/javax/measure/test/quantity/TemperatureQuantityTest.java
      +++ b/src/test/java/javax/measure/test/quantity/TemperatureQuantityTest.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/quantity/TestQuantities.java b/src/test/java/javax/measure/test/quantity/TestQuantities.java
      index 9f44f23b..f7b516a7 100644
      --- a/src/test/java/javax/measure/test/quantity/TestQuantities.java
      +++ b/src/test/java/javax/measure/test/quantity/TestQuantities.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/quantity/TestQuantity.java b/src/test/java/javax/measure/test/quantity/TestQuantity.java
      index ac50d9de..d68c1be6 100644
      --- a/src/test/java/javax/measure/test/quantity/TestQuantity.java
      +++ b/src/test/java/javax/measure/test/quantity/TestQuantity.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -37,11 +37,13 @@
       
       /**
        * @author Werner Keil
      + * @version 2.0
        * @since 1.0
        */
       public abstract class TestQuantity<Q extends Quantity<Q>> implements Quantity<Q>, Comparable<Quantity<Q>> {
       
      -    public static final Quantity<Dimensionless> ONE = new DimensionlessQuantity(1d, (BaseUnit) TestUnit.ONE);
      +    @SuppressWarnings("rawtypes")
      +	public static final Quantity<Dimensionless> ONE = new DimensionlessQuantity(1d, (BaseUnit) TestUnit.ONE);
       
           protected double scalar; // value in reference value
           protected double value; // value in value (Unit unit)
      @@ -123,8 +125,6 @@ public String toString() {
            *
            * @return a negative integer, zero, or a positive integer as this quantity is less than, equal to, or greater than the specified Quantity
            *         quantity.
      -     * @return <code>Double.compare(this.doubleValue(getUnit()),
      -     *         that.doubleValue(getUnit()))</code>
            */
           public int compareTo(Quantity<Q> that) {
               return Double.compare(value, that.getValue().doubleValue());
      @@ -162,4 +162,9 @@ public Unit<Q> getUnit() {
           public Scale getScale() {
               return scale;
           }
      +    
      +    @Override
      +    public boolean isEquivalentTo(Quantity<Q> that) {
      +        return this.compareTo(that) == 0;
      +    }
       }
      diff --git a/src/test/java/javax/measure/test/quantity/TimeQuantity.java b/src/test/java/javax/measure/test/quantity/TimeQuantity.java
      index abc2106d..7fdba9df 100644
      --- a/src/test/java/javax/measure/test/quantity/TimeQuantity.java
      +++ b/src/test/java/javax/measure/test/quantity/TimeQuantity.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/quantity/VolumeQuantity.java b/src/test/java/javax/measure/test/quantity/VolumeQuantity.java
      index 236e1fca..0b281b43 100644
      --- a/src/test/java/javax/measure/test/quantity/VolumeQuantity.java
      +++ b/src/test/java/javax/measure/test/quantity/VolumeQuantity.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      diff --git a/src/test/java/javax/measure/test/unit/AreaUnit.java b/src/test/java/javax/measure/test/unit/AreaUnit.java
      index a7db1242..eb3010a7 100644
      --- a/src/test/java/javax/measure/test/unit/AreaUnit.java
      +++ b/src/test/java/javax/measure/test/unit/AreaUnit.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -29,6 +29,8 @@
        */
       package javax.measure.test.unit;
       
      +import java.math.BigDecimal;
      +
       import javax.measure.Unit;
       import javax.measure.quantity.Area;
       import javax.measure.test.TestUnit;
      @@ -47,7 +49,7 @@ public class AreaUnit extends TestUnit<Area> {
       
           public AreaUnit(String name2, double convF) {
               super(name2);
      -        multFactor = convF;
      +        multFactor = BigDecimal.valueOf(convF);
           }
       
           @Override
      diff --git a/src/test/java/javax/measure/test/unit/BaseUnit.java b/src/test/java/javax/measure/test/unit/BaseUnit.java
      index 0be6c6eb..5d2b6a74 100644
      --- a/src/test/java/javax/measure/test/unit/BaseUnit.java
      +++ b/src/test/java/javax/measure/test/unit/BaseUnit.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -44,7 +44,7 @@
        *            The type of the quantity measured by this unit.
        *
        * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @author <a href="mailto:units@catmedia.us">Werner Keil</a>
      + * @author <a href="mailto:werner@uom.technology">Werner Keil</a>
        * @version 1.1
        * @since 1.0
        *
      diff --git a/src/test/java/javax/measure/test/unit/DistanceUnit.java b/src/test/java/javax/measure/test/unit/DistanceUnit.java
      index 3a24b8cf..69333e17 100644
      --- a/src/test/java/javax/measure/test/unit/DistanceUnit.java
      +++ b/src/test/java/javax/measure/test/unit/DistanceUnit.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -29,6 +29,8 @@
        */
       package javax.measure.test.unit;
       
      +import java.math.BigDecimal;
      +
       import javax.measure.Unit;
       import javax.measure.quantity.Length;
       
      @@ -50,12 +52,12 @@ public class DistanceUnit extends BaseUnit<Length> {
       
           public DistanceUnit(String name2, double convF) {
               super(name2, name2);
      -        multFactor = convF;
      +        multFactor = BigDecimal.valueOf(convF);
           }
       
           public DistanceUnit(String name2, DistanceUnit unit, double convF) {
               super("", name2);
      -        multFactor = unit.multFactor * convF;
      +        multFactor = unit.multFactor.multiply(BigDecimal.valueOf(convF));
           }
       
           @Override
      diff --git a/src/test/java/javax/measure/test/unit/MassUnit.java b/src/test/java/javax/measure/test/unit/MassUnit.java
      new file mode 100644
      index 00000000..9f2a9112
      --- /dev/null
      +++ b/src/test/java/javax/measure/test/unit/MassUnit.java
      @@ -0,0 +1,54 @@
      +/*
      + * Units of Measurement API
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + *
      + * All rights reserved.
      + *
      + * Redistribution and use in source and binary forms, with or without modification,
      + * are permitted provided that the following conditions are met:
      + *
      + * 1. Redistributions of source code must retain the above copyright notice,
      + *    this list of conditions and the following disclaimer.
      + *
      + * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
      + *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
      + *
      + * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
      + *    derived from this software without specific prior written permission.
      + *
      + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
      + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
      + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
      + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
      + * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
      + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      + */
      +package javax.measure.test.unit;
      +
      +import java.math.BigDecimal;
      +
      +import javax.measure.Unit;
      +import javax.measure.quantity.Mass;
      +
      +/**
      + * @author Werner Keil
      + */
      +public class MassUnit extends BaseUnit<Mass> {
      +    public static final MassUnit kg = new MassUnit("kg", 1.0); // reference Unit
      +    public static final MassUnit REF_UNIT = kg; // reference Unit
      +    public static final MassUnit g = new MassUnit("g", .001);
      +
      +    public MassUnit(String name2, double convF) {
      +        super(name2, "");
      +        multFactor = BigDecimal.valueOf(convF);
      +    }
      +
      +    @Override
      +    public Unit<Mass> getSystemUnit() {
      +        return REF_UNIT;
      +    }
      +}
      \ No newline at end of file
      diff --git a/src/test/java/javax/measure/test/unit/MixedUnit.java b/src/test/java/javax/measure/test/unit/MixedUnit.java
      deleted file mode 100644
      index ad2523ea..00000000
      --- a/src/test/java/javax/measure/test/unit/MixedUnit.java
      +++ /dev/null
      @@ -1,140 +0,0 @@
      -/*
      - * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      - *
      - * All rights reserved.
      - *
      - * Redistribution and use in source and binary forms, with or without modification,
      - * are permitted provided that the following conditions are met:
      - *
      - * 1. Redistributions of source code must retain the above copyright notice,
      - *    this list of conditions and the following disclaimer.
      - *
      - * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
      - *    and the following disclaimer in the documentation and/or other materials provided with the distribution.
      - *
      - * 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
      - *    derived from this software without specific prior written permission.
      - *
      - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
      - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
      - * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
      - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
      - * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
      - * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      - */
      -package javax.measure.test.unit;
      -
      -import javax.measure.UnitConverter;
      -import javax.measure.test.TestUnit;
      -
      -import javax.measure.Dimension;
      -import javax.measure.Quantity;
      -import javax.measure.Unit;
      -
      -/**
      - * <p>
      - * This class represents multi-radix units (such as "hour:min:sec" or "ft, in"). Instances of this class are created using the {@link Unit#mix
      - * Unit.mix} method.
      - * </p>
      - * 
      - * <p>
      - * Examples of mixed units:<code> Unit<Time> HOUR_MINUTE_SECOND = HOUR.mix(MINUTE).mix(SECOND); <br>Unit<Length> FOOT_INCH =
      - * FOOT.mix(INCH); </code>
      - * </p>
      - *
      - * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a>
      - * @author <a href="mailto:werner@units.tech">Werner Keil</a>
      - * @version 1.9, March 20, 2019
      - * @since 2.0
      - */
      -public final class MixedUnit<Q extends Quantity<Q>> extends TestUnit<Q> {
      -
      -  /**
      -   * Holds the upper unit.
      -   */
      -  private final Unit<Q> upper;
      -
      -  /**
      -   * Holds the lower unit.
      -   */
      -  private final Unit<Q> lower;
      -
      -  /**
      -   * Creates a mixed unit from the specified units.
      -   *
      -   * @param up
      -   *          the upper unit.
      -   * @param low
      -   *          the lower unit(s)
      -   * @throws IllegalArgumentException
      -   *           if both units do not the same system unit.
      -   */
      -  public MixedUnit(Unit<Q> up, Unit<Q> low) {
      -    if (!up.getSystemUnit().equals(low.getSystemUnit()))
      -      throw new IllegalArgumentException("Both units do not have the same system unit");
      -    upper = up;
      -    lower = low;
      -  }
      -
      -  /**
      -   * Returns the lower unit of this mixed unit.
      -   *
      -   * @return the lower unit.
      -   */
      -  public Unit<Q> getLower() {
      -    return lower;
      -  }
      -
      -  /**
      -   * Returns the upper unit of this mixed unit.
      -   *
      -   * @return the upper unit.
      -   */
      -  public Unit<Q> getUpper() {
      -    return upper;
      -  }
      -
      -  /**
      -   * Indicates if this mixed unit is considered equals to the specified object (both are mixed units with same composing units in the same
      -   * order).
      -   *
      -   * @param obj
      -   *          the object to compare for equality.
      -   * @return <code>true</code> if <code>this</code> and <code>obj</code> are considered equal; <code>false</code>otherwise.
      -   */
      -  public boolean equals(Object obj) {
      -    if (this == obj) {
      -      return true;
      -    }
      -    if (obj instanceof MixedUnit) {
      -      MixedUnit<?> thatUnit = (MixedUnit<?>) obj;
      -      return this.upper.equals(thatUnit.upper) && this.lower.equals(thatUnit.lower);
      -    }
      -    return super.equals(obj);
      -  }
      -
      -  @Override
      -  public int hashCode() {
      -    return upper.hashCode() ^ lower.hashCode();
      -  }
      -
      -  @Override
      -  public UnitConverter getSystemConverter() {
      -    return ((TestUnit<?>) lower).getSystemConverter();
      -  }
      -
      -  @Override
      -  public Unit<Q> getSystemUnit() {
      -    return lower.getSystemUnit();
      -  }
      -
      -  @Override
      -  public Dimension getDimension() {
      -    return lower.getDimension();
      -  }
      -}
      diff --git a/src/test/java/javax/measure/test/unit/SpeedUnit.java b/src/test/java/javax/measure/test/unit/SpeedUnit.java
      index 490c756e..cdb4b0e0 100644
      --- a/src/test/java/javax/measure/test/unit/SpeedUnit.java
      +++ b/src/test/java/javax/measure/test/unit/SpeedUnit.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -29,6 +29,8 @@
        */
       package javax.measure.test.unit;
       
      +import java.math.BigDecimal;
      +
       import javax.measure.Unit;
       import javax.measure.quantity.Speed;
       import javax.measure.test.TestUnit;
      @@ -45,7 +47,7 @@ public class SpeedUnit extends TestUnit<Speed> {
       
           public SpeedUnit(String name2, double convF) {
               super(name2);
      -        multFactor = convF;
      +        multFactor = BigDecimal.valueOf(convF);
           }
       
           @Override
      diff --git a/src/test/java/javax/measure/test/unit/TemperatureUnit.java b/src/test/java/javax/measure/test/unit/TemperatureUnit.java
      index 56a78d5a..169d6ae7 100644
      --- a/src/test/java/javax/measure/test/unit/TemperatureUnit.java
      +++ b/src/test/java/javax/measure/test/unit/TemperatureUnit.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -41,118 +41,120 @@
        * @version 0.7, $Date: 2019-02-06 $
        */
       public class TemperatureUnit extends TestUnit<Temperature> {
      -    private static final char DEG = '\u00B0';
      -    /** Kelvin, commonly used in scientific endeavors. */
      -    public static final TemperatureUnit KELVIN = new TemperatureUnit(1d, 0d, null, 273.15d, 373.15d, "K", "William Thomson, 1st Baron Kelvin");
      -
      -    /** Rankine, used in scientific endeavors. */
      -    public static final TemperatureUnit RANKINE = new TemperatureUnit(5 / 9, 0d, KELVIN, 491.67d, 671.641d, DEG + "R",
      -        "William John Macquorn Rankine");
      -
      -    /** Celsius, used by most of the world's population. */
      -    public static final TemperatureUnit CELSIUS = new TemperatureUnit(0d, 273.15d, KELVIN, 0d, 100d, DEG + "C", "Anders Celsius");
      -
      -    /** Fahrenheit, commonly used in the United States. */
      -    public static final TemperatureUnit FAHRENHEIT = new TemperatureUnit(0d, 459.67d, RANKINE, 32d, 212d, DEG + "F", "Daniel Gabriel Fahrenheit");
      -
      -    /** Units by which this temperature scale is expressed. */
      -    private final String description;
      -
      -    private final double multFactor;
      -
      -    /** Name of person that this temperature scale is named for. */
      -    private final String namedFor;
      -
      -    /**
      -     * Constructor for TemperatureUnit that accepts key characteristics of each temperature scale.
      -     *
      -     * @param newFreezingPoint
      -     *            Freezing point for this temperature scale.
      -     * @param newBoilingPoint
      -     *            Boiling point for this temperature scale.
      -     * @param newSymbol
      -     *            Unit symbol for this temperature scale.
      -     * @param newNamedFor
      -     *            Name of person after which temperature scale was named.
      -     *  @param newMult new multiplier
      -     *  @param shift the shift factor
      -     */
      -    public TemperatureUnit(double newMult, double shift, final TemperatureUnit rel, double newFreezingPoint, double newBoilingPoint,
      -                           final String newSymbol, final String newNamedFor) {
      -        this.multFactor = newMult;
      -        this.description = newSymbol;
      -        this.namedFor = newNamedFor;
      -    }
      -
      -    public String getSymbol() {
      -        return description;
      -    }
      -
      -    public double getFactor() {
      -        return multFactor;
      -    }
      -
      -    public String getName() {
      -        return namedFor;
      -    }
      -
      -    public Unit<Temperature> getSystemUnit() {
      -        return KELVIN;
      -    }
      -
      -    public static TemperatureUnit getBySymbol(String symbol) {
      -        if (CELSIUS.getSymbol().equals(symbol)) {
      -            return CELSIUS;
      -        }
      -        if (FAHRENHEIT.getSymbol().equals(symbol)) {
      -            return FAHRENHEIT;
      -        }
      -        return KELVIN;
      -    }
      -
      -    public boolean isCompatible(Unit<?> that) {
      -        return that instanceof TemperatureUnit;
      -    }
      -
      -    @SuppressWarnings({ "unchecked" })
      -    public final <T extends Quantity<T>> Unit<T> asType(Class<T> type) {
      -        Unit<T> metricUnit = (Unit<T>) getSystemUnit();
      -        if ((metricUnit == null) || metricUnit.isCompatible(this))
      -            return (Unit<T>) this;
      -        throw new ClassCastException("The unit: " + this //$NON-NLS-1$
      -            + " is not of parameterized type " + type); //$NON-NLS-1$
      -    }
      -
      -    public Unit<Temperature> multiply(double factor) {
      -        return this;
      -    }
      -
      -    public Unit<?> multiply(Unit<?> that) {
      -        return this;
      -    }
      -
      -    public Unit<?> pow(int n) {
      -        return this;
      -    }
      -
      -    public Unit<?> root(int n) {
      -        return this;
      -    }
      -
      -    public Unit<Temperature> transform(UnitConverter operation) {
      -        return this;
      -    }
      -
      -    public Unit<Temperature> shift(double v) {
      -        return this;
      -    }
      -
      -    public String getDescription() {
      -        return description;
      -    }
      -
      -    @Override
      -    public Unit<Temperature> prefix(Prefix prefix) {
      -        return this.multiply(Math.pow(prefix.getBase(), prefix.getExponent()));
      -    }
      +	private static final char DEG = '\u00B0';
      +	/** Kelvin, commonly used in scientific endeavors. */
      +	public static final TemperatureUnit KELVIN = new TemperatureUnit(1d, 0d, null, 273.15d, 373.15d, "K",
      +			"William Thomson, 1st Baron Kelvin");
      +
      +	/** Rankine, used in scientific endeavors. */
      +	public static final TemperatureUnit RANKINE = new TemperatureUnit(5 / 9, 0d, KELVIN, 491.67d, 671.641d, DEG + "R",
      +			"William John Macquorn Rankine");
      +
      +	/** Celsius, used by most of the world's population. */
      +	public static final TemperatureUnit CELSIUS = new TemperatureUnit(0d, 273.15d, KELVIN, 0d, 100d, DEG + "C",
      +			"Anders Celsius");
      +
      +	/** Fahrenheit, commonly used in the United States. */
      +	public static final TemperatureUnit FAHRENHEIT = new TemperatureUnit(0d, 459.67d, RANKINE, 32d, 212d, DEG + "F",
      +			"Daniel Gabriel Fahrenheit");
      +
      +	/** Units by which this temperature scale is expressed. */
      +	private final String description;
      +
      +	private final double multFactor;
      +
      +	/** Name of person that this temperature scale is named for. */
      +	private final String namedFor;
      +
      +	/**
      +	 * Constructor for TemperatureUnit that accepts key characteristics of each
      +	 * temperature scale.
      +	 * @param rel The temperature unit this is relative to.
      +	 * @param newFreezingPoint Freezing point for this temperature scale.
      +	 * @param newBoilingPoint  Boiling point for this temperature scale.
      +	 * @param newSymbol        Unit symbol for this temperature scale.
      +	 * @param newNamedFor      Name of person after which temperature scale was
      +	 *                         named.
      +	 * @param newMult          new multiplier
      +	 * @param shift            the shift factor
      +	 */
      +	public TemperatureUnit(double newMult, double shift, final TemperatureUnit rel, double newFreezingPoint,
      +			double newBoilingPoint, final String newSymbol, final String newNamedFor) {
      +		this.multFactor = newMult;
      +		this.description = newSymbol;
      +		this.namedFor = newNamedFor;
      +	}
      +
      +	public String getSymbol() {
      +		return description;
      +	}
      +
      +	public double getFactor() {
      +		return multFactor;
      +	}
      +
      +	public String getName() {
      +		return namedFor;
      +	}
      +
      +	public Unit<Temperature> getSystemUnit() {
      +		return KELVIN;
      +	}
      +
      +	public static TemperatureUnit getBySymbol(String symbol) {
      +		if (CELSIUS.getSymbol().equals(symbol)) {
      +			return CELSIUS;
      +		}
      +		if (FAHRENHEIT.getSymbol().equals(symbol)) {
      +			return FAHRENHEIT;
      +		}
      +		return KELVIN;
      +	}
      +
      +	public boolean isCompatible(Unit<?> that) {
      +		return that instanceof TemperatureUnit;
      +	}
      +
      +	@SuppressWarnings({ "unchecked" })
      +	public final <T extends Quantity<T>> Unit<T> asType(Class<T> type) {
      +		Unit<T> metricUnit = (Unit<T>) getSystemUnit();
      +		if ((metricUnit == null) || metricUnit.isCompatible(this))
      +			return (Unit<T>) this;
      +		throw new ClassCastException("The unit: " + this //$NON-NLS-1$
      +				+ " is not of parameterized type " + type); //$NON-NLS-1$
      +	}
      +
      +	public Unit<Temperature> multiply(double factor) {
      +		return this;
      +	}
      +
      +	public Unit<?> multiply(Unit<?> that) {
      +		return this;
      +	}
      +
      +	public Unit<?> pow(int n) {
      +		return this;
      +	}
      +
      +	public Unit<?> root(int n) {
      +		return this;
      +	}
      +
      +	public Unit<Temperature> transform(UnitConverter operation) {
      +		return this;
      +	}
      +
      +	public Unit<Temperature> shift(double v) {
      +		return this;
      +	}
      +
      +	public String getDescription() {
      +		return description;
      +	}
      +
      +	@Override
      +	public Unit<Temperature> prefix(Prefix prefix) {
      +		return this.multiply(Math.pow(prefix.getValue().doubleValue(), 
      +				prefix.getExponent()));
      +	}
       }
      diff --git a/src/test/java/javax/measure/test/unit/TimeUnit.java b/src/test/java/javax/measure/test/unit/TimeUnit.java
      index 34223188..069e75bf 100644
      --- a/src/test/java/javax/measure/test/unit/TimeUnit.java
      +++ b/src/test/java/javax/measure/test/unit/TimeUnit.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -29,6 +29,8 @@
        */
       package javax.measure.test.unit;
       
      +import java.math.BigDecimal;
      +
       import javax.measure.Unit;
       import javax.measure.quantity.Time;
       
      @@ -45,7 +47,7 @@ public class TimeUnit extends BaseUnit<Time> {
       
           public TimeUnit(String name2, double convF) {
               super(name2, "");
      -        multFactor = convF;
      +        multFactor = BigDecimal.valueOf(convF);
           }
       
           @Override
      diff --git a/src/test/java/javax/measure/test/unit/VolumeUnit.java b/src/test/java/javax/measure/test/unit/VolumeUnit.java
      index dd091f75..5f58b91b 100644
      --- a/src/test/java/javax/measure/test/unit/VolumeUnit.java
      +++ b/src/test/java/javax/measure/test/unit/VolumeUnit.java
      @@ -1,6 +1,6 @@
       /*
        * Units of Measurement API
      - * Copyright (c) 2014-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
      + * Copyright (c) 2014-2025, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
        *
        * All rights reserved.
        *
      @@ -29,6 +29,8 @@
        */
       package javax.measure.test.unit;
       
      +import java.math.BigDecimal;
      +
       import javax.measure.Unit;
       import javax.measure.quantity.Volume;
       import javax.measure.test.TestUnit;
      @@ -47,7 +49,7 @@ public class VolumeUnit extends TestUnit<Volume> {
       
           public VolumeUnit(String name2, double convF) {
               super(name2);
      -        multFactor = convF;
      +        multFactor = BigDecimal.valueOf(convF);
           }
       
           @Override