diff --git a/Neos.Neos/Classes/Controller/Module/Management/HistoryController.php b/Neos.Neos/Classes/Controller/Module/Management/HistoryController.php deleted file mode 100644 index b6fdedf6ec9..00000000000 --- a/Neos.Neos/Classes/Controller/Module/Management/HistoryController.php +++ /dev/null @@ -1,93 +0,0 @@ -eventRepository->findRelevantEventsByWorkspace($offset, $limit + 1, 'live')->toArray(); - - $nextPage = null; - if (count($events) > $limit) { - $events = array_slice($events, 0, $limit); - - $nextPage = $this - ->controllerContext - ->getUriBuilder() - ->setCreateAbsoluteUri(true) - ->uriFor('Index', ['offset' => $offset + $limit], 'History', 'Neos.Neos'); - } - - $eventsByDate = []; - foreach ($events as $event) { - /* @var $event Event */ - $day = $event->getTimestamp()->format('Y-m-d'); - if (!isset($eventsByDate[$day])) { - $eventsByDate[$day] = new EventsOnDate($event->getTimestamp()); - } - - /* @var $eventsOnThisDay EventsOnDate */ - $eventsOnThisDay = $eventsByDate[$day]; - $eventsOnThisDay->add($event); - } - - $this->view->assignMultiple([ - 'eventsByDate' => $eventsByDate, - 'nextPage' => $nextPage - ]); - } - - /** - * Simply sets the Fusion path pattern on the view. - * - * @param ViewInterface $view - * @return void - */ - protected function initializeView(ViewInterface $view) - { - parent::initializeView($view); - /** @var FusionView $view */ - $view->setFusionPathPattern('resource://Neos.Neos/Private/Fusion/Backend/History'); - } -} diff --git a/Neos.Neos/Classes/EventLog/Domain/Model/Event.php b/Neos.Neos/Classes/EventLog/Domain/Model/Event.php deleted file mode 100644 index dc3aa8fde4a..00000000000 --- a/Neos.Neos/Classes/EventLog/Domain/Model/Event.php +++ /dev/null @@ -1,191 +0,0 @@ - - */ - protected $data = []; - - /** - * The parent event, if exists. E.g. if a "move node" operation triggered a bunch of other events, or a "publish" - * - * @var Event - * @phpstan-var ?self - * @ORM\ManyToOne(inversedBy="childEvents") - */ - protected $parentEvent; - - /** - * Child events, of this event - * - * @var ArrayCollection<\Neos\Neos\EventLog\Domain\Model\Event> - * @phpstan-var ArrayCollection - * @codingStandardsIgnoreStart - * @ORM\OneToMany(targetEntity="\Neos\Neos\EventLog\Domain\Model\Event", mappedBy="parentEvent", cascade={"persist"}) - * @codingStandardsIgnoreEnd - */ - protected $childEvents; - - /** - * Create a new event - * - * @param string $eventType - * @param array $data - * @param string $user - * @param Event $parentEvent - */ - public function __construct($eventType, $data, $user = null, Event $parentEvent = null) - { - $this->timestamp = new \DateTime(); - $this->eventType = $eventType; - $this->data = $data; - $this->accountIdentifier = $user; - $this->parentEvent = $parentEvent; - - $this->childEvents = new ArrayCollection(); - - $this->parentEvent?->addChildEvent($this); - } - - /** - * Return the type of this event - * - * @return string - */ - public function getEventType() - { - return $this->eventType; - } - - /** - * Return the timestamp of this event - * - * @return \DateTime - */ - public function getTimestamp() - { - return $this->timestamp; - } - - /** - * Return the payload of this event - * - * @return array - */ - public function getData(): array - { - return $this->data; - } - - /** - * Return the identifier of the account (if any) which triggered this event - * - * @return ?string - */ - public function getAccountIdentifier() - { - return $this->accountIdentifier; - } - - /** - * Return the parent event (if any) - */ - public function getParentEvent(): ?Event - { - return $this->parentEvent; - } - - /** - * Return the child events (if any) - * - * @return ArrayCollection - */ - public function getChildEvents(): ArrayCollection - { - return $this->childEvents; - } - - /** - * Add a new child event. Is called from the child event's constructor. - * - * @param Event $childEvent - * @return void - */ - public function addChildEvent(Event $childEvent) - { - $this->childEvents->add($childEvent); - } -} diff --git a/Neos.Neos/Classes/EventLog/Domain/Model/EventsOnDate.php b/Neos.Neos/Classes/EventLog/Domain/Model/EventsOnDate.php deleted file mode 100644 index 4e7c33190e2..00000000000 --- a/Neos.Neos/Classes/EventLog/Domain/Model/EventsOnDate.php +++ /dev/null @@ -1,63 +0,0 @@ - - */ - protected $events = []; - - /** - * @param \DateTime $day - */ - public function __construct(\DateTime $day) - { - $this->day = $day; - } - - /** - * add another event to this group - */ - public function add(Event $event): void - { - $this->events[] = $event; - } - - /** - * @return array - */ - public function getEvents() - { - return $this->events; - } - - /** - * @return \DateTime - */ - public function getDay() - { - return $this->day; - } -} diff --git a/Neos.Neos/Classes/EventLog/Domain/Model/NodeEvent.php b/Neos.Neos/Classes/EventLog/Domain/Model/NodeEvent.php deleted file mode 100644 index 02d1e3ada4d..00000000000 --- a/Neos.Neos/Classes/EventLog/Domain/Model/NodeEvent.php +++ /dev/null @@ -1,283 +0,0 @@ - - */ - protected $dimension; - - /** - * MD5 hash of the content dimensions - * - * @var string - * @ORM\Column(length=32) - */ - protected $dimensionsHash; - - /** - * @Flow\Inject - * @var UserService - */ - protected $userService; - - /** - * @Flow\Inject - * @var PersistenceManagerInterface - */ - protected $persistenceManager; - - /** - * @Flow\Inject - * @var SiteRepository - */ - protected $siteRepository; - - /** - * Return name of the workspace where the node event happened - * - * @return string - */ - public function getWorkspaceName() - { - return $this->workspaceName; - } - - /** - * @return bool - */ - public function isDocumentEvent() - { - return $this->documentNodeIdentifier === $this->nodeIdentifier; - } - - /** - * Return the node identifier of the closest parent document node related to this event - * - * @return string - */ - public function getDocumentNodeIdentifier() - { - return $this->documentNodeIdentifier; - } - - /** - * Return the node identifier of the node this event relates to - * - * @return string - */ - public function getNodeIdentifier() - { - return $this->nodeIdentifier; - } - - /** - * Set the "context node" this operation was working on. - * - * @param Node $node - * @return void - */ - /*public function setNode(Node $node) - { - $dimensionsArray = $node->getContext()->getDimensions(); - - $this->nodeIdentifier = $node->getIdentifier(); - $this->workspaceName = $node->getContext()->getWorkspaceName(); - $this->dimension = $dimensionsArray; - $this->dimensionsHash = Utility::sortDimensionValueArrayAndReturnDimensionsHash($dimensionsArray); - - $context = $node->getContext(); - if ($context instanceof ContentContext && $context->getCurrentSite() !== null) { - $siteIdentifier = $this->persistenceManager->getIdentifierByObject($context->getCurrentSite()); - } else { - $siteIdentifier = null; - } - $this->data = Arrays::arrayMergeRecursiveOverrule($this->data, [ - 'nodeContextPath' => $node->get(), - 'nodeLabel' => $node->getLabel(), - 'nodeType' => $node->nodeType->getName(), - 'site' => $siteIdentifier - ]); - - $node = self::getClosestAggregateNode($node); - - if ($node !== null) { - $this->documentNodeIdentifier = $node->getIdentifier(); - $this->data = Arrays::arrayMergeRecursiveOverrule($this->data, [ - 'documentNodeContextPath' => $node->getContextPath(), - 'documentNodeLabel' => $node->getLabel(), - 'documentNodeType' => $node->nodeType->getName() - ]); - } - }*/ - - /** - * Override the workspace name. *MUST* be called after setNode(), else it won't have an effect. - * - * @param string $workspaceName - * @return void - */ - public function setWorkspaceName($workspaceName) - { - $this->workspaceName = $workspaceName; - } - - /** - * Returns the closest aggregate node of the given node - * - * @param Node $node - * @return Node - */ - /*public static function getClosestAggregateNode(Node $node) - { - while ($node !== null && !$node->nodeType->isAggregate()) { - $node = $node->getParent(); - } - return $node; - }*/ - - /** - * Returns the closest document node, if it can be resolved. - * - * It might happen that, if this event refers to a node contained in a site which is not available anymore, - * Doctrine's proxy class of the Site domain model will fail with an EntityNotFoundException. We catch this - * case and return NULL. - * - * @return Node - */ - /*public function getDocumentNode() - { - try { - $context = $this->contextFactory->create([ - 'workspaceName' => $this->userService->getPersonalWorkspaceName(), - 'dimensions' => $this->dimension, - 'currentSite' => $this->getCurrentSite(), - 'invisibleContentShown' => true - ]); - return $context->getNodeByIdentifier($this->documentNodeIdentifier); - } catch (EntityNotFoundException $e) { - return null; - } - }*/ - - /** - * Returns the node this even refers to, if it can be resolved. - * - * It might happen that, if this event refers to a node contained in a site which is not available anymore, - * Doctrine's proxy class of the Site domain model will fail with an EntityNotFoundException. We catch this - * case and return NULL. - * - * @return Node - */ - /*public function getNode() - { - try { - $context = $this->contextFactory->create([ - 'workspaceName' => $this->userService->getPersonalWorkspaceName(), - 'dimensions' => $this->dimension, - 'currentSite' => $this->getCurrentSite(), - 'invisibleContentShown' => true - ]); - return $context->getNodeByIdentifier($this->nodeIdentifier); - } catch (EntityNotFoundException $e) { - return null; - } - }*/ - - /** - * Prevents invalid calls to the site repository in case the site data property is not available. - * - * @return null|object - */ - protected function getCurrentSite() - { - if (!isset($this->data['site'])) { - return null; - } - - return $this->siteRepository->findByIdentifier($this->data['site']); - } - - /** - * @return string - */ - public function __toString() - { - return sprintf('NodeEvent[%s, %s]', $this->eventType, $this->nodeIdentifier); - } - - /** - * @return string - */ - public function getDimensionsHash(): string - { - return $this->dimensionsHash; - } -} diff --git a/Neos.Neos/Classes/EventLog/Domain/Repository/EventRepository.php b/Neos.Neos/Classes/EventLog/Domain/Repository/EventRepository.php deleted file mode 100644 index 6aa769ea8c4..00000000000 --- a/Neos.Neos/Classes/EventLog/Domain/Repository/EventRepository.php +++ /dev/null @@ -1,110 +0,0 @@ - - */ - protected $defaultOrderings = [ - 'uid' => QueryInterface::ORDER_ASCENDING - ]; - - /** - * Find all events which are "top-level" and in a given workspace (or are not NodeEvents) - * - * @param integer $offset - * @param integer $limit - * @param string $workspaceName - * @return QueryResultInterface - * @throws PropertyNotAccessibleException - */ - public function findRelevantEventsByWorkspace($offset, $limit, $workspaceName) - { - $query = $this->prepareRelevantEventsQuery(); - $query->getQueryBuilder()->select('DISTINCT e'); - $query->getQueryBuilder() - ->andWhere('e NOT INSTANCE OF ' . NodeEvent::class . ' OR e IN (SELECT nodeevent.uid FROM ' - . NodeEvent::class - . ' nodeevent WHERE nodeevent.workspaceName = :workspaceName AND nodeevent.parentEvent IS NULL)') - ->setParameter('workspaceName', $workspaceName); - $query->getQueryBuilder()->setFirstResult($offset); - $query->getQueryBuilder()->setMaxResults($limit); - - return $query->execute(); - } - - /** - * Find all events which are "top-level", i.e. do not have a parent event. - * - * @param integer $offset - * @param integer $limit - * @return QueryResultInterface - * @throws PropertyNotAccessibleException - */ - public function findRelevantEvents($offset, $limit) - { - $query = $this->prepareRelevantEventsQuery(); - - $query->getQueryBuilder()->setFirstResult($offset); - $query->getQueryBuilder()->setMaxResults($limit); - - return $query->execute(); - } - - /** - * @return \Neos\Flow\Persistence\Doctrine\Query - */ - protected function prepareRelevantEventsQuery() - { - $query = $this->createQuery(); - $queryBuilder = $query->getQueryBuilder(); - - $queryBuilder->andWhere( - $queryBuilder->expr()->isNull('e.parentEvent') - ); - - $queryBuilder->orderBy('e.uid', 'DESC'); - - return $query; - } - - /** - * Remove all events without checking foreign keys. Needed for clearing the table during tests. - * - * @return void - */ - public function removeAll(): void - { - $classMetaData = $this->entityManager->getClassMetadata($this->getEntityClassName()); - $connection = $this->entityManager->getConnection(); - $databasePlatform = $connection->getDatabasePlatform(); - $truncateTableQuery = $databasePlatform->getTruncateTableSql($classMetaData->getTableName()); - $connection->executeStatement($truncateTableQuery); - } -} diff --git a/Neos.Neos/Classes/EventLog/Domain/Service/EventEmittingService.php b/Neos.Neos/Classes/EventLog/Domain/Service/EventEmittingService.php deleted file mode 100644 index 8b4dfce5515..00000000000 --- a/Neos.Neos/Classes/EventLog/Domain/Service/EventEmittingService.php +++ /dev/null @@ -1,208 +0,0 @@ - - */ - protected $eventContext = []; - - protected ?string $currentUsername = null; - - /** - * @Flow\Inject - * @var EventRepository - */ - protected $eventRepository; - - /** - * @Flow\Inject - * @var UserService - */ - protected $userDomainService; - - /** - * @Flow\InjectConfiguration("eventLog.enabled") - * @var bool - */ - protected $enabled; - - /** - * @return boolean true if the event log is enabled and events should be captured - */ - public function isEnabled() - { - return (bool)$this->enabled; - } - - /** - * Convenience method for generating an event and directly adding it afterwards to persistence. - * - * @param string $eventType - * @param array $data - * @param string $eventClassName - * @throws Exception - * @return Event - */ - public function emit($eventType, array $data, $eventClassName = Event::class) - { - if (!$this->isEnabled()) { - throw new Exception('Event log not enabled', 1418464933); - } - - $event = $this->generate($eventType, $data, $eventClassName); - $this->add($event); - - return $event; - } - - /** - * Generates a new event, without persisting it yet. - * - * Note: Make sure to call add($event) afterwards. - * - * @param string $eventType - * @param array $data - * @param string $eventClassName - * @return Event - * @see emit() - */ - public function generate($eventType, array $data, $eventClassName = Event::class) - { - $this->initializeCurrentUsername(); - /** @var Event $event */ - $event = new $eventClassName($eventType, $data, $this->currentUsername, $this->getCurrentContext()); - $this->lastGeneratedEvent = $event; - - return $event; - } - - /** - * Add the passed event (which has been generated by generate()) to persistence. - * - * This only happens for top-level-events. All events which are attached to some parent event are persisted - * together with the parent. - * - * @param Event $nodeEvent - * @throws Exception - * @return void - * @see emit() - */ - public function add(Event $nodeEvent) - { - if (!$this->isEnabled()) { - throw new Exception('Event log not enabled', 1418464935); - } - - if ($nodeEvent->getParentEvent() === null) { - $this->eventRepository->add($nodeEvent); - } - } - - /** - * Push the last-generated event onto the context, - * nesting all further generated events underneath the top-level one. - * - * @return void - */ - public function pushContext() - { - if ($this->lastGeneratedEvent === null) { - throw new \InvalidArgumentException( - 'pushContext() can only be called directly after an invocation of emit().', - 1415353980 - ); - } - - $this->eventContext[] = $this->lastGeneratedEvent; - } - - /** - * Remove an element from the context stack. Is the reverse operation to pushContext(). - * - * @return void - */ - public function popContext() - { - if (count($this->eventContext) > 0) { - array_pop($this->eventContext); - } else { - throw new \InvalidArgumentException( - 'popContext() can only be called if the context has been pushed beforehand.', - 1415354224 - ); - } - } - - /** - * The current context-event or NULL if none exists currently. - * - * @return Event|NULL - */ - protected function getCurrentContext() - { - if (count($this->eventContext) > 0) { - return end($this->eventContext); - } else { - return null; - } - } - - /** - * Try to set the current username emitting the events, if possible - * - * @return void - */ - protected function initializeCurrentUsername() - { - if (!is_null($this->currentUsername)) { - return; - } - - $currentUser = $this->userDomainService->getCurrentUser(); - if (!$currentUser instanceof User) { - return; - } - - $this->currentUsername = $this->userDomainService->getUsername($currentUser); - } -} diff --git a/Neos.Neos/Classes/EventLog/Integrations/AbstractIntegrationService.php b/Neos.Neos/Classes/EventLog/Integrations/AbstractIntegrationService.php deleted file mode 100644 index be96f2310f2..00000000000 --- a/Neos.Neos/Classes/EventLog/Integrations/AbstractIntegrationService.php +++ /dev/null @@ -1,27 +0,0 @@ - - */ - protected $changedNodes = []; - - /** - * @var array - */ - protected $currentNodeAddEvents = []; - - /** - * @var boolean - */ - protected $currentlyCopying = false; - - /** - * @var integer - */ - protected $currentlyMoving = 0; - - /** - * @var integer - */ - protected $currentlyAdopting = 0; - - /** - * @var array - */ - protected $scheduledNodeEventUpdates = []; - - /** - * React on the Doctrine preFlush event and trigger the respective internal node events - * - * @return void - */ - /*public function preFlush() - { - $this->generateNodeEvents(); - }*/ - - /** - * Emit a "Node Added" event - * - * @return void - */ - /*public function beforeNodeCreate() - { - if (!$this->eventEmittingService->isEnabled()) { - return; - } - - $nodeEvent = $this->eventEmittingService->generate(self::NODE_ADDED, [], NodeEvent::class); - $this->currentNodeAddEvents[] = $nodeEvent; - $this->eventEmittingService->pushContext($nodeEvent); - }*/ - - /** - * Add the created node to the previously created "Added Node" event - * - * @param Node $node - * @return void - */ - /*public function afterNodeCreate(Node $node) - { - if (!$this->eventEmittingService->isEnabled()) { - return; - } - - $nodeEvent = array_pop($this->currentNodeAddEvents); - $nodeEvent->setNode($node); - $this->eventEmittingService->popContext(); - $this->eventEmittingService->add($nodeEvent); - }*/ - - /** - * Emit a "Node Updated" event - * - * @param Node $node - * @return void - */ - /*public function nodeUpdated(Node $node) - { - if (!$this->eventEmittingService->isEnabled()) { - return; - } - - if (!isset($this->changedNodes[$node->getContextPath()])) { - $this->changedNodes[$node->getContextPath()] = ['node' => $node]; - } - }*/ - - /** - * Emit an event when node properties have been changed - * - * @param Node $node - * @param $propertyName - * @param $oldValue - * @param $value - * @return void - */ - /*public function beforeNodePropertyChange(Node $node, $propertyName, $oldValue, $value) - { - if (!$this->eventEmittingService->isEnabled()) { - return; - } - - if (count($this->currentNodeAddEvents) > 0) { - // add is currently running, during that; we do not want any update events - return; - } - if ($oldValue === $value) { - return; - } - if (!isset($this->changedNodes[$node->getContextPath()])) { - $this->changedNodes[$node->getContextPath()] = ['node' => $node]; - } - if (!isset($this->changedNodes[$node->getContextPath()]['oldLabel'])) { - $this->changedNodes[$node->getContextPath()]['oldLabel'] = $node->getLabel(); - } - - $this->changedNodes[$node->getContextPath()]['old'][$propertyName] = $oldValue; - $this->changedNodes[$node->getContextPath()]['new'][$propertyName] = $value; - }*/ - - /** - * Add the new label to a previously created node property changed event - * - * @param Node $node - * @param $propertyName - * @param $oldValue - * @param $value - * @return void - */ - /*public function nodePropertyChanged(Node $node, $propertyName, $oldValue, $value) - { - if (!$this->eventEmittingService->isEnabled()) { - return; - } - - if ($oldValue === $value) { - return; - } - - $this->changedNodes[$node->getContextPath()]['newLabel'] = $node->getLabel(); - $this->changedNodes[$node->getContextPath()]['node'] = $node; - }*/ - - /** - * Emits a "Node Removed" event - * - * @param Node $node - * @return void - */ - /*public function nodeRemoved(Node $node) - { - if (!$this->eventEmittingService->isEnabled()) { - return; - } - - $nodeEvent = $this->eventEmittingService->emit(self::NODE_REMOVED, [], NodeEvent::class); - $nodeEvent->setNode($node); - }*/ - - /** - * @param Node $node - * @param Workspace $targetWorkspace - * @return void - */ - /*public function beforeNodePublishing(Node $node, Workspace $targetWorkspace) - { - }*/ - - /** - * Emits a "Node Copy" event - * - * @param Node $sourceNode - * @param Node $targetParentNode - * @return void - * @throws \Exception - */ - /*public function beforeNodeCopy(Node $sourceNode, Node $targetParentNode) - { - if (!$this->eventEmittingService->isEnabled()) { - return; - } - - if ($this->currentlyCopying) { - throw new \Exception('TODO: already copying...'); - } - - $this->currentlyCopying = true; - - $nodeEvent = $this->eventEmittingService->emit(self::NODE_COPY, [ - 'copiedInto' => $targetParentNode->getContextPath() - ], NodeEvent::class); - $nodeEvent->setNode($sourceNode); - $this->eventEmittingService->pushContext(); - }*/ - - /** - * @param Node $copiedNode - * @param Node $targetParentNode - * @return void - * @throws \Exception - */ - /*public function afterNodeCopy(Node $copiedNode, Node $targetParentNode) - { - if (!$this->eventEmittingService->isEnabled()) { - return; - } - - if ($this->currentlyCopying === false) { - throw new \Exception('TODO: copying not started'); - } - $this->currentlyCopying = false; - $this->eventEmittingService->popContext(); - }*/ - - /** - * Emits a "Node Move" event - * - * @param Node $movedNode - * @param Node $referenceNode - * @param integer $moveOperation - */ - /*public function beforeNodeMove(Node $movedNode, Node $referenceNode, $moveOperation) - { - if (!$this->eventEmittingService->isEnabled()) { - return; - } - - $this->currentlyMoving += 1; - - $nodeEvent = $this->eventEmittingService->emit(self::NODE_MOVE, [ - 'referenceNode' => $referenceNode->getContextPath(), - 'moveOperation' => $moveOperation - ], NodeEvent::class); - $nodeEvent->setNode($movedNode); - $this->eventEmittingService->pushContext(); - }*/ - - /** - * @param Node $movedNode - * @param Node $referenceNode - * @param integer $moveOperation - * @return void - * @throws \Exception - */ - /*public function afterNodeMove(Node $movedNode, Node $referenceNode, $moveOperation) - { - if (!$this->eventEmittingService->isEnabled()) { - return; - } - - if ($this->currentlyMoving === 0) { - throw new \Exception('TODO: moving not started'); - } - - $this->currentlyMoving -= 1; - $this->eventEmittingService->popContext(); - }*/ - - /** - * Emits a "Node Adopt" event - * - * @param Node $node - * @param Context $context - * @param $recursive - * @return void - */ - /*public function beforeAdoptNode(Node $node, Context $context, $recursive) - { - if (!$this->eventEmittingService->isEnabled()) { - return; - } - - if ($this->currentlyAdopting === 0) { - $nodeEvent = $this->eventEmittingService->emit(self::NODE_ADOPT, [ - 'targetWorkspace' => $context->getWorkspaceName(), - 'targetDimensions' => $context->getTargetDimensions(), - 'recursive' => $recursive - ], NodeEvent::class); - $nodeEvent->setNode($node); - $this->eventEmittingService->pushContext(); - } - - $this->currentlyAdopting++; - }*/ - - /** - * @param Node $node - * @param Context $context - * @param $recursive - * @return void - */ - /*public function afterAdoptNode(Node $node, Context $context, $recursive) - { - if (!$this->eventEmittingService->isEnabled()) { - return; - } - - $this->currentlyAdopting--; - if ($this->currentlyAdopting === 0) { - $this->eventEmittingService->popContext(); - } - }*/ - - /** - * @return void - */ - /*public function generateNodeEvents() - { - if (!$this->eventEmittingService->isEnabled()) { - return; - } - - if (count($this->currentNodeAddEvents) > 0) { - return; - } - - foreach ($this->changedNodes as $nodePath => $data) { - $node = $data['node']; - unset($data['node']); - if (isset($data['oldLabel']) && isset($data['newLabel'])) { - if ($data['oldLabel'] !== $data['newLabel']) { - $nodeEvent = $this->eventEmittingService->emit( - self::NODE_LABEL_CHANGED, - ['oldLabel' => $data['oldLabel'], 'newLabel' => $data['newLabel']], - NodeEvent::class - ); - $nodeEvent->setNode($node); - } - unset($data['oldLabel']); - unset($data['newLabel']); - } - - if (!empty($data)) { - $nodeEvent = $this->eventEmittingService->emit(self::NODE_UPDATED, $data, NodeEvent::class); - $nodeEvent->setNode($node); - } - } - - $this->changedNodes = []; - }*/ - - /** - * @param Node $node - * @param Workspace $targetWorkspace - * @return void - */ - public function afterNodePublishing(Node $node, Workspace $targetWorkspace) - { - if (!$this->eventEmittingService->isEnabled()) { - return; - } - - $subgraph = $this->contentRepositoryRegistry->subgraphForNode($node); - $documentNode = $node; - while ($documentNode !== null && !$this->getNodeType($documentNode)->isAggregate()) { - $documentNode = $subgraph->findParentNode($documentNode->nodeAggregateId); - } - - if ($documentNode === null) { - return; - } - $contentRepository = $this->contentRepositoryRegistry->get( - $node->subgraphIdentity->contentRepositoryId - ); - $nodeAddressFactory = NodeAddressFactory::create($contentRepository); - $nodeAddress = $nodeAddressFactory->createFromNode($node); - $documentNodeAddress = $nodeAddressFactory->createFromNode($documentNode); - - $this->scheduledNodeEventUpdates[$documentNodeAddress->serializeForUri()] = [ - 'workspaceName' => $nodeAddress->workspaceName, - 'nestedNodeIdentifiersWhichArePublished' => [], - 'targetWorkspace' => $targetWorkspace->workspaceName, - 'documentNode' => $documentNode - ]; - - $this->scheduledNodeEventUpdates[$documentNodeAddress->serializeForUri()] - ['nestedNodeIdentifiersWhichArePublished'][] = $node->nodeAggregateId; - } - - /** - * Binds events to a Node.Published event for each document node published - * - * @return void - */ - /*public function updateEventsAfterPublish() - { - if (!$this->eventEmittingService->isEnabled()) { - return; - } - - $entityManager = $this->entityManager; - - foreach ($this->scheduledNodeEventUpdates as $documentPublish) { - $nodeEvent = $this->eventEmittingService->emit(self::DOCUMENT_PUBLISHED, [], NodeEvent::class); - $nodeEvent->setNode($documentPublish['documentNode']); - $nodeEvent->setWorkspaceName($documentPublish['targetWorkspace']); - $this->persistenceManager->allowObject($nodeEvent); - $this->persistenceManager->persistAll(true); - - $parentEventIdentifier = $this->persistenceManager->getIdentifierByObject($nodeEvent); - - $qb = $entityManager->createQueryBuilder(); - $qb->update(NodeEvent::class, 'e') - ->set('e.parentEvent', ':parentEventIdentifier') - ->setParameter('parentEventIdentifier', $parentEventIdentifier) - ->where('e.parentEvent IS NULL') - ->andWhere('e.workspaceName = :workspaceName') - ->setParameter('workspaceName', $documentPublish['workspaceName']) - ->andWhere('e.documentNodeIdentifier = :documentNodeIdentifier') - ->setParameter('documentNodeIdentifier', $documentPublish['documentNode']->getIdentifier()) - ->andWhere('e.eventType != :publishedEventType') - ->setParameter('publishedEventType', self::DOCUMENT_PUBLISHED) - ->getQuery()->execute(); - } - - $this->scheduledNodeEventUpdates = []; - - }*/ - - /** - * @return void - */ - public function reset() - { - $this->changedNodes = []; - $this->scheduledNodeEventUpdates = []; - $this->currentlyAdopting = 0; - $this->currentlyCopying = false; - $this->currentNodeAddEvents = []; - } -} diff --git a/Neos.Neos/Classes/EventLog/Integrations/EntityIntegrationService.php b/Neos.Neos/Classes/EventLog/Integrations/EntityIntegrationService.php deleted file mode 100644 index 857a2c9fac6..00000000000 --- a/Neos.Neos/Classes/EventLog/Integrations/EntityIntegrationService.php +++ /dev/null @@ -1,141 +0,0 @@ - - */ - protected $monitorEntitiesSetting; - - /** - * Dummy method which is called in a prePersist signal. - * If we remove that, this object is never instantiated and thus cannot hook into the Doctrine EntityManager. - * - * @return void - */ - public function dummyMethodToEnsureInstanceExists() - { - // intentionally empty - } - - /** - * Record events for entity changes. - * - * Note: this method is registered as an Doctrine event listener in the settings of this package. - * - * TODO: Update/Delete of Entities - * - * @param OnFlushEventArgs $eventArgs - * @return void - * @throws Exception - */ - public function onFlush(OnFlushEventArgs $eventArgs) - { - if (!$this->eventEmittingService->isEnabled()) { - return; - } - - $entityManager = $eventArgs->getEntityManager(); - $unitOfWork = $entityManager->getUnitOfWork(); - - foreach ($unitOfWork->getScheduledEntityInsertions() as $entity) { - $className = get_class($entity); - if (isset($this->monitorEntitiesSetting[$className])) { - $entityMonitoringConfiguration = $this->monitorEntitiesSetting[$className]; - - if (isset($entityMonitoringConfiguration['events']['created'])) { - $data = []; - foreach ($entityMonitoringConfiguration['data'] as $key => $eelExpression) { - $data[$key] = Utility::evaluateEelExpression( - $eelExpression, - $this->eelEvaluator, - ['entity' => $entity] - ); - } - - $event = $this->eventEmittingService->emit( - $entityMonitoringConfiguration['events']['created'], - $data - ); - $unitOfWork->computeChangeSet($entityManager->getClassMetadata(Event::class), $event); - } - } - } - - foreach ($unitOfWork->getScheduledEntityDeletions() as $entity) { - $className = get_class($entity); - if (isset($this->monitorEntitiesSetting[$className])) { - $entityMonitoringConfiguration = $this->monitorEntitiesSetting[$className]; - - if (isset($entityMonitoringConfiguration['events']['deleted'])) { - $data = []; - foreach ($entityMonitoringConfiguration['data'] as $key => $eelExpression) { - $data[$key] = Utility::evaluateEelExpression( - $eelExpression, - $this->eelEvaluator, - ['entity' => $entity] - ); - } - - $event = $this->eventEmittingService->emit( - $entityMonitoringConfiguration['events']['deleted'], - $data - ); - $unitOfWork->computeChangeSet($entityManager->getClassMetadata(Event::class), $event); - } - } - } - } - - /** - * @param array $monitorEntitiesSetting - * @return void - */ - public function setMonitorEntitiesSetting($monitorEntitiesSetting) - { - $this->monitorEntitiesSetting = $monitorEntitiesSetting; - } -} diff --git a/Neos.Neos/Configuration/Policy.yaml b/Neos.Neos/Configuration/Policy.yaml index 004c42eee77..6fb5d917727 100644 --- a/Neos.Neos/Configuration/Policy.yaml +++ b/Neos.Neos/Configuration/Policy.yaml @@ -154,10 +154,6 @@ privilegeTargets: label: General access to the workspace module matcher: 'management/workspaces' - 'Neos.Neos:Backend.Module.Management.History': - label: General access to the history module - matcher: 'management/history' - 'Neos.Neos:Backend.Module.Administration': label: General access to the administration module matcher: 'administration' @@ -293,19 +289,15 @@ roles: privilegeTarget: 'Neos.Neos:Backend.Module.Management.Workspaces' permission: GRANT - - - privilegeTarget: 'Neos.Neos:Backend.Module.Management.History' - permission: GRANT - 'Neos.Neos:RestrictedEditor': label: Restricted Editor - description: Grants access to the content, media, workspace and history module. The user is allowed to publish to internal workspaces. + description: Grants access to the content, media, and workspace module. The user is allowed to publish to internal workspaces. parentRoles: ['Neos.Neos:AbstractEditor'] 'Neos.Neos:Editor': label: Editor - description: Grants access to the content, media, workspace and history module. The user is allowed to publish to the live workspace. + description: Grants access to the content, media, and workspace module. The user is allowed to publish to the live workspace. parentRoles: ['Neos.Neos:AbstractEditor', 'Neos.Neos:LivePublisher'] 'Neos.Neos:UserManager': diff --git a/Neos.Neos/Configuration/Settings.yaml b/Neos.Neos/Configuration/Settings.yaml index edbc123e2cb..4f45714082b 100755 --- a/Neos.Neos/Configuration/Settings.yaml +++ b/Neos.Neos/Configuration/Settings.yaml @@ -328,12 +328,6 @@ Neos: description: 'Neos.Neos:Modules:workspaces.description' icon: fas fa-th-large mainStylesheet: 'Lite' - history: - label: 'Neos.Neos:Modules:history.label' - controller: 'Neos\Neos\Controller\Module\Management\HistoryController' - description: 'Neos.Neos:Modules:history.description' - icon: fas fa-calendar-alt - mainStylesheet: 'Lite' administration: label: 'Neos.Neos:Modules:administration.label' controller: 'Neos\Neos\Controller\Module\AdministrationController' @@ -394,18 +388,6 @@ Neos: icon: fas fa-user mainStylesheet: 'Lite' - # Settings for the Neos Event Log (** DO NOT USE, NO PUBLIC API YET **) - eventLog: - enabled: false - monitorEntities: - Neos\Flow\Security\Account: - events: - created: Account.Created - deleted: Account.Deleted - data: - accountIdentifier: '${entity.accountIdentifier}' - authenticationProviderName: '${entity.authenticationProviderName}' - name: '${entity.party.name.fullName}' transliterationRules: da: Å: Aa @@ -468,14 +450,6 @@ Neos: session: name: Neos_Session - persistence: - doctrine: - eventListeners: - Neos\Neos\EventLog\Integrations\EntityIntegrationService: - events: - - onFlush - listener: Neos\Neos\EventLog\Integrations\EntityIntegrationService - error: exceptionHandler: renderingGroups: diff --git a/Neos.Neos/Configuration/Testing/Behat/Settings.yaml b/Neos.Neos/Configuration/Testing/Behat/Settings.yaml index ceccd786d8d..50d05027e29 100644 --- a/Neos.Neos/Configuration/Testing/Behat/Settings.yaml +++ b/Neos.Neos/Configuration/Testing/Behat/Settings.yaml @@ -1,5 +1 @@ - -Neos: - Neos: - eventLog: - enabled: true +# Behat settings diff --git a/Neos.Neos/Configuration/Testing/Settings.yaml b/Neos.Neos/Configuration/Testing/Settings.yaml index 59558ff8a17..ca3ba18cf4f 100644 --- a/Neos.Neos/Configuration/Testing/Settings.yaml +++ b/Neos.Neos/Configuration/Testing/Settings.yaml @@ -1,8 +1,6 @@ Neos: Neos: - eventLog: - enabled: false userInterface: inspector: dataTypes: diff --git a/Neos.Neos/Documentation/References/Signals/Neos.rst b/Neos.Neos/Documentation/References/Signals/Neos.rst index 3c63a9bcfd7..172d5bd3552 100644 --- a/Neos.Neos/Documentation/References/Signals/Neos.rst +++ b/Neos.Neos/Documentation/References/Signals/Neos.rst @@ -393,27 +393,6 @@ before passing it on to further rendering -.. _`Neos Signals Reference: HistoryController (``Neos\Neos\Controller\Module\Management\HistoryController``)`: - -HistoryController (``Neos\Neos\Controller\Module\Management\HistoryController``) --------------------------------------------------------------------------------- - -This class contains the following signals. - -viewResolved -^^^^^^^^^^^^ - -Autogenerated Proxy Method - -Emit that the view is resolved. The passed ViewInterface reference, -gives the possibility to add variables to the view, -before passing it on to further rendering - - - - - - .. _`Neos Signals Reference: ImpersonateController (``Neos\Neos\Controller\Backend\ImpersonateController``)`: ImpersonateController (``Neos\Neos\Controller\Backend\ImpersonateController``) diff --git a/Neos.Neos/Migrations/Mysql/Version20231012072631.php b/Neos.Neos/Migrations/Mysql/Version20231012072631.php new file mode 100644 index 00000000000..0bfc08bc314 --- /dev/null +++ b/Neos.Neos/Migrations/Mysql/Version20231012072631.php @@ -0,0 +1,36 @@ +abortIf( + !$this->connection->getDatabasePlatform() instanceof \Doctrine\DBAL\Platforms\MariaDb1027Platform, + "Migration can only be executed safely on '\Doctrine\DBAL\Platforms\MariaDb1027Platform'." + ); + + $this->addSql('DROP TABLE IF EXISTS neos_neos_eventlog_domain_model_event'); + } + + public function down(Schema $schema): void + { + $this->abortIf( + !$this->connection->getDatabasePlatform() instanceof \Doctrine\DBAL\Platforms\MariaDb1027Platform, + "Migration can only be executed safely on '\Doctrine\DBAL\Platforms\MariaDb1027Platform'." + ); + + $this->addSql('CREATE TABLE neos_neos_eventlog_domain_model_event (parentevent int(10) unsigned DEFAULT NULL, timestamp datetime NOT NULL, uid int(10) unsigned NOT NULL AUTO_INCREMENT, eventtype varchar(255) NOT NULL, accountidentifier varchar(255) DEFAULT NULL, data longtext NOT NULL COMMENT \'(DC2Type:flow_json_array)\', dtype varchar(255) NOT NULL, nodeidentifier varchar(255) DEFAULT NULL, documentnodeidentifier varchar(255) DEFAULT NULL, workspacename varchar(255) DEFAULT NULL, dimension longtext DEFAULT NULL COMMENT \'(DC2Type:array)\', dimensionshash varchar(32) DEFAULT NULL, PRIMARY KEY (uid), KEY eventtype (eventtype), KEY IDX_D6DBC30A5B684C08 (parentevent), KEY documentnodeidentifier (documentnodeidentifier), KEY dimensionshash (dimensionshash), KEY workspacename_parentevent (`workspacename`,`parentevent`), CONSTRAINT `FK_30AB3A75B684C08` FOREIGN KEY (`parentevent`) REFERENCES `neos_neos_eventlog_domain_model_event` (`uid`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci'); + } +} diff --git a/Neos.Neos/Resources/Private/Fusion/Backend/History/Root.fusion b/Neos.Neos/Resources/Private/Fusion/Backend/History/Root.fusion deleted file mode 100644 index c857f50544a..00000000000 --- a/Neos.Neos/Resources/Private/Fusion/Backend/History/Root.fusion +++ /dev/null @@ -1,140 +0,0 @@ -include: resource://Neos.Fusion/Private/Fusion/Root.fusion - -Neos.Neos.Module.Management.HistoryController.index = Neos.Fusion:Template { - templatePath = 'resource://Neos.Neos/Private/Templates/Module/Management/History/Index.html' - eventsByDate = ${eventsByDate} - nextPage = ${nextPage} - - eventRenderer = Neos.Neos:History.EventRenderer -} - -prototype(Neos.Neos:History.EventRenderer) < prototype(Neos.Fusion:Case) { - nodeEvent { - condition = ${event.eventType == 'Node.Published'} - type = 'Neos.Neos:History.NodeEventRenderer' - } - - accountCreatedEvent { - condition = ${event.eventType == 'Account.Created'} - type = 'Neos.Neos:History.AccountCreatedEvent' - } - accountDeletedEvent { - condition = ${event.eventType == 'Account.Deleted'} - type = 'Neos.Neos:History.AccountDeletedEvent' - } -} - -# -# Node events -# - -prototype(Neos.Neos:History.NodeEventRenderer) < prototype(Neos.Fusion:Join) { - @context.documentEventsByType = ${Neos.Array.groupBy(Neos.Array.filter(event.childEvents, 'documentEvent'), 'eventType')} - @context.contentEventsByType = ${Neos.Array.groupBy(Neos.Array.filterNegated(event.childEvents, 'documentEvent'), 'eventType')} - - documentEvents = Neos.Fusion:Loop { - items = ${documentEventsByType} - itemName = 'eventsOfMatchedType' - - itemRenderer = Neos.Fusion:Case { - default { - condition = true - type = ${'Neos.Neos:History.PublishedNode.' + Array.first(eventsOfMatchedType).eventType} - } - } - } - - contentEvents = Neos.Neos:History.PublishedNode.ContentChanged { - subEventType = ${Array.first(Array.first(contentEventsByType)).eventType} - @if.hasContentEvents = ${Array.length(contentEventsByType) > 0} - } -} - -prototype(Neos.Neos:History.PublishedNode.AbstractSubEvent) < prototype(Neos.Fusion:Template) { - templatePath = 'resource://Neos.Neos/Private/Templates/Module/Management/History/Index.html' - sectionName = 'eventElement' - - subEventType = ${Array.first(eventsOfMatchedType).eventType} - event = ${event} - linkedNode = Neos.Fusion:Template { - templatePath = 'resource://Neos.Neos/Private/Templates/Module/Management/History/NodeLink.html' - event = ${event} - @process.trim = ${String.trim(value)} - } - user = Neos.Fusion:Template { - templatePath = 'resource://Neos.Neos/Private/Templates/Module/Management/History/User.html' - event = ${event} - @process.trim = ${String.trim(value)} - } - -} - -prototype(Neos.Neos:History.PublishedNode.Node.Adopt) < prototype(Neos.Neos:History.PublishedNode.AbstractSubEvent) { - descriptionTranslationId = 'history.eventDescription.node.adopted' - descriptionTranslationArguments = ${[this.user, Neos.Rendering.renderDimensions(Array.first(eventsOfMatchedType).data.targetDimensions), I18n.translate(Neos.Rendering.labelForNodeType(event.data.nodeType)), this.linkedNode]} -} - -prototype(Neos.Neos:History.PublishedNode.Node.LabelChanged) < prototype(Neos.Neos:History.PublishedNode.AbstractSubEvent) { - descriptionTranslationId = 'history.eventDescription.node.renamed' - descriptionTranslationArguments = ${[this.user, I18n.translate(Neos.Rendering.labelForNodeType(event.data.nodeType)), Array.first(eventsOfMatchedType).data.oldLabel, this.linkedNode]} -} - -prototype(Neos.Neos:History.PublishedNode.Node.Added) < prototype(Neos.Neos:History.PublishedNode.AbstractSubEvent) { - descriptionTranslationId = 'history.eventDescription.node.added' - descriptionTranslationArguments = ${[this.user, I18n.translate(Neos.Rendering.labelForNodeType(event.data.nodeType)), this.linkedNode]} -} - -prototype(Neos.Neos:History.PublishedNode.Node.Removed) < prototype(Neos.Neos:History.PublishedNode.AbstractSubEvent) { - descriptionTranslationId = 'history.eventDescription.node.removed' - descriptionTranslationArguments = ${[this.user, I18n.translate(Neos.Rendering.labelForNodeType(event.data.nodeType)), this.linkedNode]} -} - -prototype(Neos.Neos:History.PublishedNode.Node.Copy) < prototype(Neos.Neos:History.PublishedNode.AbstractSubEvent) { - descriptionTranslationId = 'history.eventDescription.node.copied' - descriptionTranslationArguments = ${[this.user, I18n.translate(Neos.Rendering.labelForNodeType(event.data.nodeType)), this.linkedNode]} -} - -prototype(Neos.Neos:History.PublishedNode.Node.Move) < prototype(Neos.Neos:History.PublishedNode.AbstractSubEvent) { - descriptionTranslationId = 'history.eventDescription.node.moved' - descriptionTranslationArguments = ${[this.user, I18n.translate(Neos.Rendering.labelForNodeType(event.data.nodeType)), this.linkedNode]} -} - -prototype(Neos.Neos:History.PublishedNode.Node.Updated) < prototype(Neos.Neos:History.PublishedNode.AbstractSubEvent) { - descriptionTranslationId = 'history.eventDescription.node.changed' - descriptionTranslationArguments = ${[this.user, I18n.translate(Neos.Rendering.labelForNodeType(event.data.nodeType)), this.linkedNode]} -} - -prototype(Neos.Neos:History.PublishedNode.ContentChanged) < prototype(Neos.Neos:History.PublishedNode.AbstractSubEvent) { - descriptionTranslationId = 'history.eventDescription.node.changedContent' - descriptionTranslationArguments = ${[this.user, I18n.translate(Neos.Rendering.labelForNodeType(event.data.nodeType)), this.linkedNode]} -} - -prototype(Neos.Neos:History.PublishedNode.MissingEvent) < prototype(Neos.Neos:History.PublishedNode.AbstractSubEvent) { - descriptionTranslationArguments = ${[this.user]} -} - -# -# Account events -# - -prototype(Neos.Neos:History.AbstractAccountEvent) < prototype(Neos.Fusion:Template) { - templatePath = 'resource://Neos.Neos/Private/Templates/Module/Management/History/Index.html' - sectionName = 'eventElement' - - user = Neos.Fusion:Template { - templatePath = 'resource://Neos.Neos/Private/Templates/Module/Management/History/User.html' - event = ${event} - } - - event = ${event} - descriptionTranslationArguments = ${[this.user, event.data.accountIdentifier, event.data.name]} -} - -prototype(Neos.Neos:History.AccountCreatedEvent) < prototype(Neos.Neos:History.AbstractAccountEvent) { - descriptionTranslationId = 'history.eventDescription.account.created' -} - -prototype(Neos.Neos:History.AccountDeletedEvent) < prototype(Neos.Neos:History.AbstractAccountEvent) { - descriptionTranslationId = 'history.eventDescription.account.deleted' -} - diff --git a/Neos.Neos/Resources/Private/Styles/Modules/Management/_History.scss b/Neos.Neos/Resources/Private/Styles/Modules/Management/_History.scss deleted file mode 100644 index 972a593916d..00000000000 --- a/Neos.Neos/Resources/Private/Styles/Modules/Management/_History.scss +++ /dev/null @@ -1,129 +0,0 @@ -&.neos-module-management-history { - $dateSize: $unit * 2; - - .neos-history-events-divider { - margin: 0; - padding: 0; - border: 2px solid $grayMedium; - } - - .neos-history { - max-width: 1000px; - margin: 0 auto; - } - - .neos-history-day { - .neos-history-date { - margin-left: 50%; - - .neos-history-date-inner { - text-align: center; - line-height: $dateSize; - overflow: hidden; - - border-radius: 50%; - width: $dateSize; - height: $dateSize; - background: $blueDark; - margin-left: -(($dateSize/2)+2); - font-size: 100%; - border: solid 4px $grayMedium; - } - } - - .neos-history-events { - width: 50%; - padding-top: $unit / 2; - - &::after { - border: 1px solid rgba(0, 0, 0, 0); - content: ""; - clear: both; - } - .neos-history-event { - text-align: left; - clear: both; - position: relative; - padding-top: $relatedMargin; - padding-right: $defaultMargin; - - &::after { - border: 1px solid rgba(0, 0, 0, 0); - content: ""; - clear: both; - } - - .neos-history-event-user { - border-radius: 50%; - width: $unit; - height: $unit; - background: $blueDark; - overflow: hidden; - text-align: center; - line-height: $unit; - float: left; - border: 4px solid $grayMedium; - margin-right: 20px; - } - - .neos-history-event-time { - } - - .neos-history-event-description { - padding: 5px; - margin-right: 20px; - - a { - text-decoration: underline; - } - } - } - } - } - - .neos-history-day:nth-child(even) { - .neos-history-events { - &.neos-history-alignment { - text-align: right; - border-right: 4px solid $grayMedium; - - .neos-history-event-time { - float: right; - margin-right: 10px; - width: 65px; - text-align: right; - } - } - } - } - .neos-history-day:nth-child(odd) { - .neos-history-events { - &.neos-history-alignment { - text-align: left; - margin-left: 50%; - border-left: 4px solid $grayMedium; - - .neos-history-event-time { - float: left; - margin-left: 10px; - width: 65px; - text-align: left; - } - } - } - } - - .neos-history-group { - .neos-history-group-user { - } - } - - .loadMore { - text-align: center; - - button { - margin-top: 25px; - margin-bottom: 25px; - } - } -} diff --git a/Neos.Neos/Resources/Private/Styles/Modules/_Modules.scss b/Neos.Neos/Resources/Private/Styles/Modules/_Modules.scss index 97c637d2be6..1d568f26222 100755 --- a/Neos.Neos/Resources/Private/Styles/Modules/_Modules.scss +++ b/Neos.Neos/Resources/Private/Styles/Modules/_Modules.scss @@ -2,7 +2,6 @@ @import "Administration/Configuration"; @import "Administration/Packages"; @import "Administration/Sites"; - @import "Management/History"; @import "Management/Workspaces"; @include font; diff --git a/Neos.Neos/Resources/Private/Templates/Module/Management/History/Index.html b/Neos.Neos/Resources/Private/Templates/Module/Management/History/Index.html deleted file mode 100644 index 552056fc2a0..00000000000 --- a/Neos.Neos/Resources/Private/Templates/Module/Management/History/Index.html +++ /dev/null @@ -1,84 +0,0 @@ -{namespace neos=Neos\Neos\ViewHelpers} -{namespace ts=Neos\Fusion\ViewHelpers} - -
- {neos:backend.translate(id: 'history.messages.hereIsWhatHappenedRecentlyInNeos', source: 'Modules')} - - - -
-
-
{eventsOnSingleDay.day -> f:format.date(format: 'M d')} -
-
-
-
- - - -
-
-
-
- -

{neos:backend.translate(id: 'history.messages.emptyHistory', source: 'Modules')}

-
-
-
- - -
-
{event.timestamp -> f:format.date(format: 'H:i')}
-
- {event.accountIdentifier -> neos:backend.userInitials()} -
-
- {neos:backend.translate(id: descriptionTranslationId, source: 'Modules', arguments: descriptionTranslationArguments) -> f:format.raw()} -
-
-
- - -
- -
-
- - diff --git a/Neos.Neos/Resources/Private/Templates/Module/Management/History/NodeLink.html b/Neos.Neos/Resources/Private/Templates/Module/Management/History/NodeLink.html deleted file mode 100644 index afa4dda4f7d..00000000000 --- a/Neos.Neos/Resources/Private/Templates/Module/Management/History/NodeLink.html +++ /dev/null @@ -1,5 +0,0 @@ -{namespace neos=Neos\Neos\ViewHelpers} - - {event.data.nodeLabel} - {event.data.nodeLabel} - diff --git a/Neos.Neos/Resources/Private/Templates/Module/Management/History/User.html b/Neos.Neos/Resources/Private/Templates/Module/Management/History/User.html deleted file mode 100644 index 31c3f617a37..00000000000 --- a/Neos.Neos/Resources/Private/Templates/Module/Management/History/User.html +++ /dev/null @@ -1,2 +0,0 @@ -{namespace neos=Neos\Neos\ViewHelpers} -{event.accountIdentifier -> neos:backend.userInitials(format: 'fullFirstName')} diff --git a/Neos.Neos/Resources/Private/Translations/ar/Modules.xlf b/Neos.Neos/Resources/Private/Translations/ar/Modules.xlf index 541292d6964..53ee93e5eb0 100644 --- a/Neos.Neos/Resources/Private/Translations/ar/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/ar/Modules.xlf @@ -261,70 +261,6 @@ All changes from workspace "{0}" have been discarded. تم تجاهل كافة التغييرات في فضاء العمل "{0}". - - History - التاريخ - - - This module provides an overview of all relevant events affecting this Neos installation. - هذه الوحدة توفر لمحة عامة عن جميع الأحداث ذات الصلة التي تؤثر على هذا التثبيت لنيوس. - - - Here's what happened recently in Neos - هنا ما حدث مؤخرا في نيوس - - - There have not been recorded any events yet which could be displayed in this history. - أنه لم يتم تسجيل أية أحداث بعد الذي يمكن أن يتم عرضها في هذا التاريخ. - - - {0} created the {1} "{2}". - {0} انشأ ال{1} "{2}". - - - {0} removed the {1} "{2}". - {0} ازال ال{1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - قام {0} بإنشاء المتغير {1} من {2} "{3}". - - - {0} modified the {1} "{2}". - {0} قام بتغيير {1} "{2}". - - - {0} moved the {1} "{2}". - {0} قام بنقل {1} "{2}". - - - {0} copied the {1} "{2}". - {0} قام بنسخ {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} أعادت تسمية {1} "{2}" إلى"{3}". - - - {0} modified content on the {1} "{2}". - {0} مُحتوى مُعدّل على {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} إنشاء مستخدم جديد "{1}" ل {2}. - - - {0} deleted the account "{1}" of {2}. - {0} حذف الحساب "{1}" من {2}. - - - Load More - تحميل المزيد - - - This node has been removed in the meantime - تم إزالة هذه العقدة في الوقت نفسه - Administration diff --git a/Neos.Neos/Resources/Private/Translations/cs/Modules.xlf b/Neos.Neos/Resources/Private/Translations/cs/Modules.xlf index 49b0e68b1fa..533c2fe2a02 100644 --- a/Neos.Neos/Resources/Private/Translations/cs/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/cs/Modules.xlf @@ -261,70 +261,6 @@ All changes from workspace "{0}" have been discarded. All changes from workspace "{0}" have been discarded. - - History - Historie - - - This module provides an overview of all relevant events affecting this Neos installation. - This module provides an overview of all relevant events affecting this Neos installation. - - - Here's what happened recently in Neos - Here's what happened recently in Neos - - - There have not been recorded any events yet which could be displayed in this history. - There have not been recorded any events yet which could be displayed in this history. - - - {0} created the {1} "{2}". - {0} vytvořil {1} "{2}". - - - {0} removed the {1} "{2}". - {0} odebrán {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} vytvořil variantu {1} z {2} "{3}". - - - {0} modified the {1} "{2}". - {0} změněn {1} "{2}". - - - {0} moved the {1} "{2}". - {0} přesunut {1} "{2}". - - - {0} copied the {1} "{2}". - {0} zkopírováno {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} přejmenováno {1} "{2}" na "{3}". - - - {0} modified content on the {1} "{2}". - {0} změněný obsah na {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} created a new user "{1}" for {2}. - - - {0} deleted the account "{1}" of {2}. - {0} deleted the account "{1}" of {2}. - - - Load More - Load More - - - This node has been removed in the meantime - This node has been removed in the meantime - Administration diff --git a/Neos.Neos/Resources/Private/Translations/da/Modules.xlf b/Neos.Neos/Resources/Private/Translations/da/Modules.xlf index a39138d60dc..6d3a4b20a17 100644 --- a/Neos.Neos/Resources/Private/Translations/da/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/da/Modules.xlf @@ -261,70 +261,6 @@ All changes from workspace "{0}" have been discarded. Alle ændringer fra arbejdsrummet "{0}" er blevet kasseret. - - History - Historik - - - This module provides an overview of all relevant events affecting this Neos installation. - Dette modul giver et overblik over alle relevante begivenheder, der påvirker denne Neos installation. - - - Here's what happened recently in Neos - Her er, hvad der er sket for nyligt i Neos: - - - There have not been recorded any events yet which could be displayed in this history. - Der er endnu ikke registreret nogen begivenheder, der kunne vises i denne historik. - - - {0} created the {1} "{2}". - {0} oprettede {1} {2}. - - - {0} removed the {1} "{2}". - {0} fjernede {1} {2}. - - - {0} created the variant {1} of the {2} "{3}". - {0} oprettede varianten {1} af {2} {3}. - - - {0} modified the {1} "{2}". - {0} ændrede {1} "{2}". - - - {0} moved the {1} "{2}". - {0} flyttede {1} "{2}". - - - {0} copied the {1} "{2}". - {0} kopierede {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} omdøbte {1} "{2}" til "{3}". - - - {0} modified content on the {1} "{2}". - {0} ændrede indhold på {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} oprettede en ny bruger "{1}" til {2}. - - - {0} deleted the account "{1}" of {2}. - {0} slettede kontoen "{1}" fra {2}. - - - Load More - Indlæs flere - - - This node has been removed in the meantime - Dette element er blevet fjernet i mellemtiden - Administration diff --git a/Neos.Neos/Resources/Private/Translations/de/Modules.xlf b/Neos.Neos/Resources/Private/Translations/de/Modules.xlf index cf68c41c3c2..9ca71770fb7 100644 --- a/Neos.Neos/Resources/Private/Translations/de/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/de/Modules.xlf @@ -271,70 +271,6 @@ Select all current changes Alle aktuellen Änderungen auswählen - - History - Verlauf - - - This module provides an overview of all relevant events affecting this Neos installation. - Dieses Modul bietet einen Überblick über alle relevanten Ereignisse die diese Neos-Installation betreffen. - - - Here's what happened recently in Neos - Dies ist kürzlich in Neos geschehen: - - - There have not been recorded any events yet which could be displayed in this history. - Es wurden noch keine Ereignisse aufgezeichnet die in diesem Verlauf dargestellt werden könnten. - - - {0} created the {1} "{2}". - {0} hat {1} "{2}" erstellt. - - - {0} removed the {1} "{2}". - {0} hat {1} "{2}" entfernt. - - - {0} created the variant {1} of the {2} "{3}". - {0} hat die Variante {1} von {2} "{3}" erstellt. - - - {0} modified the {1} "{2}". - {0} hat {1} "{2}" bearbeitet. - - - {0} moved the {1} "{2}". - {0} hat {1} "{2}" verschoben. - - - {0} copied the {1} "{2}". - {0} hat {1} "{2}" kopiert. - - - {0} renamed the {1} "{2}" to "{3}". - {0} hat {1} "{2}" zu "{3}" umbenannt. - - - {0} modified content on the {1} "{2}". - {0} hat den Inhalt von {1} "{2}" bearbeitet. - - - {0} created a new user "{1}" for {2}. - {0} hat einen neuen Benutzer "{1}" für {2} angelegt. - - - {0} deleted the account "{1}" of {2}. - {0} hat den Benutzer "{1}" von {2} gelöscht. - - - Load More - Mehr laden - - - This node has been removed in the meantime - Dieser Node wurde in der Zwischenzeit entfernt - Administration diff --git a/Neos.Neos/Resources/Private/Translations/el/Modules.xlf b/Neos.Neos/Resources/Private/Translations/el/Modules.xlf index 3e2925aa27e..30fd517c90b 100644 --- a/Neos.Neos/Resources/Private/Translations/el/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/el/Modules.xlf @@ -261,70 +261,6 @@ All changes from workspace "{0}" have been discarded. All changes from workspace "{0}" have been discarded. - - History - History - - - This module provides an overview of all relevant events affecting this Neos installation. - This module provides an overview of all relevant events affecting this Neos installation. - - - Here's what happened recently in Neos - Here's what happened recently in Neos - - - There have not been recorded any events yet which could be displayed in this history. - There have not been recorded any events yet which could be displayed in this history. - - - {0} created the {1} "{2}". - {0} created the {1} "{2}". - - - {0} removed the {1} "{2}". - {0} removed the {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} created the variant {1} of the {2} "{3}". - - - {0} modified the {1} "{2}". - {0} modified the {1} "{2}". - - - {0} moved the {1} "{2}". - {0} moved the {1} "{2}". - - - {0} copied the {1} "{2}". - {0} copied the {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} renamed the {1} "{2}" to "{3}". - - - {0} modified content on the {1} "{2}". - {0} modified content on the {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} created a new user "{1}" for {2}. - - - {0} deleted the account "{1}" of {2}. - {0} deleted the account "{1}" of {2}. - - - Load More - Load More - - - This node has been removed in the meantime - This node has been removed in the meantime - Administration diff --git a/Neos.Neos/Resources/Private/Translations/en/Modules.xlf b/Neos.Neos/Resources/Private/Translations/en/Modules.xlf index 6ffc7f45715..4d6370aa8fc 100755 --- a/Neos.Neos/Resources/Private/Translations/en/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/en/Modules.xlf @@ -206,55 +206,6 @@ Select all current changes - - History - - - This module provides an overview of all relevant events affecting this Neos installation. - - - Here's what happened recently in Neos - - - There have not been recorded any events yet which could be displayed in this history. - - - {0} created the {1} "{2}". - - - {0} removed the {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - - - {0} modified the {1} "{2}". - - - {0} moved the {1} "{2}". - - - {0} copied the {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - - - {0} modified content on the {1} "{2}". - - - {0} created a new user "{1}" for {2}. - - - {0} deleted the account "{1}" of {2}. - - - Load More - - - This node has been removed in the meantime - - Administration diff --git a/Neos.Neos/Resources/Private/Translations/es/Modules.xlf b/Neos.Neos/Resources/Private/Translations/es/Modules.xlf index 376457f4275..81af8328326 100644 --- a/Neos.Neos/Resources/Private/Translations/es/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/es/Modules.xlf @@ -259,70 +259,6 @@ All changes from workspace "{0}" have been discarded. Todos los cambios del espacio de trabajo "{0}" han sido descartados. - - History - Historial - - - This module provides an overview of all relevant events affecting this Neos installation. - Este módulo proporciona una visión general de todos los eventos relevantes que afectan a esta instalación de Neos. - - - Here's what happened recently in Neos - Esto es lo que ocurrió recientemente en Neos - - - There have not been recorded any events yet which could be displayed in this history. - Aún no se ha registrado ningún evento que podamos mostrar en esta historia. - - - {0} created the {1} "{2}". - {0} Creado el {1} "{2}". - - - {0} removed the {1} "{2}". - {0} eliminó el {1}"{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} creó la variante {1} del {2} "{3}". - - - {0} modified the {1} "{2}". - {0} modificado el {1} "{2}". - - - {0} moved the {1} "{2}". - {0} movió el {1} "{2}". - - - {0} copied the {1} "{2}". - {0} ha copiado el {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} renombró el {1} "{2}" a "{3}". - - - {0} modified content on the {1} "{2}". - {0} modificó contenido el {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} creó un nuevo usuario "{1}" para {2}. - - - {0} deleted the account "{1}" of {2}. - {0} borró la cuenta "{1}" de {2}. - - - Load More - Cargar más - - - This node has been removed in the meantime - Mientras tanto, este nodo ha sido eliminado - Administration @@ -868,8 +804,8 @@ The inter dimensional fallback graph displays all possible fallbacks (displayed as edges) between subgraphs (content dimension value combinations, displayed as nodes). Primary fallbacks are marked blue and always visible, while lower priority fallbacks are shown on mouseover. The higher the priority the higher the opacity. Click on one of the nodes to only see its fallbacks and variants. Click again to remove the filter. - El gráfico de respaldo interdimensional muestra todos los posibles respaldos (mostrados como bordes) entre subgráficos (combinaciones de valores de dimensión de contenido, mostrados como nodos). -Los recursos alternativos primarios están marcados en azul y siempre visibles, mientras que los recursos alternativos de menor prioridad se muestran al pasar el mouse. Cuanto mayor sea la prioridad, mayor será la opacidad. + El gráfico de respaldo interdimensional muestra todos los posibles respaldos (mostrados como bordes) entre subgráficos (combinaciones de valores de dimensión de contenido, mostrados como nodos). +Los recursos alternativos primarios están marcados en azul y siempre visibles, mientras que los recursos alternativos de menor prioridad se muestran al pasar el mouse. Cuanto mayor sea la prioridad, mayor será la opacidad. Haga clic en uno de los nodos para ver solo sus alternativas y variantes. Haga clic de nuevo para eliminar el filtro. diff --git a/Neos.Neos/Resources/Private/Translations/fi/Modules.xlf b/Neos.Neos/Resources/Private/Translations/fi/Modules.xlf index d4b09996635..f18714c2aec 100644 --- a/Neos.Neos/Resources/Private/Translations/fi/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/fi/Modules.xlf @@ -261,70 +261,6 @@ All changes from workspace "{0}" have been discarded. Kaikki työtilan "{0}" muutokset on hylätty. - - History - Historia - - - This module provides an overview of all relevant events affecting this Neos installation. - Tämä moduuli näyttää kaikki tämän Neos-asennuksen tapahtumat. - - - Here's what happened recently in Neos - Neosin viimeisimmät tapahtumat - - - There have not been recorded any events yet which could be displayed in this history. - Historiassa ei vielä ole tapahtumia. - - - {0} created the {1} "{2}". - {0} loi {1} {2}. - - - {0} removed the {1} "{2}". - {0} poisti {1} {2}. - - - {0} created the variant {1} of the {2} "{3}". - {0} loi muunnoksen {1} {2} {3}:sta. - - - {0} modified the {1} "{2}". - {0} muokkasi {1} "{2}". - - - {0} moved the {1} "{2}". - {0} siirsi {1} "{2}". - - - {0} copied the {1} "{2}". - {0} kopioi {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} nimesi {1} "{2}" uudelleen "{3}":ksi. - - - {0} modified content on the {1} "{2}". - {0} muokkasi sisältöä {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} loi uuden käyttäjän "{1}" {2}:lle. - - - {0} deleted the account "{1}" of {2}. - {0} poisti tilin "{1}" {2}:sta. - - - Load More - Lataa lisää - - - This node has been removed in the meantime - Solmu on poistettu - Administration diff --git a/Neos.Neos/Resources/Private/Translations/fr/Modules.xlf b/Neos.Neos/Resources/Private/Translations/fr/Modules.xlf index c469c027789..48dd2eb9250 100644 --- a/Neos.Neos/Resources/Private/Translations/fr/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/fr/Modules.xlf @@ -261,70 +261,6 @@ All changes from workspace "{0}" have been discarded. Toutes les modifications d'espace de travail « {0} » ont été ignorées. - - History - Historique - - - This module provides an overview of all relevant events affecting this Neos installation. - Ce module donne un aperçu de tous les événements pertinents qui touchent votre site. - - - Here's what happened recently in Neos - Voici ce qui s'est passé récemment dans Neos: - - - There have not been recorded any events yet which could be displayed in this history. - Aucun événement n'a été enregistré qui peut être affiché dans le module d'historique. - - - {0} created the {1} "{2}". - {0} a créé le {1} "{2}". - - - {0} removed the {1} "{2}". - {0} a supprimé le {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} a créé la variante {1} de {2} "{3}". - - - {0} modified the {1} "{2}". - {0} a modifié la {1} "{2}". - - - {0} moved the {1} "{2}". - {0} a déplacé {1} "{2}". - - - {0} copied the {1} "{2}". - {0} a copié le {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} a renommé le {1} "{2}" en "{3}". - - - {0} modified content on the {1} "{2}". - {0} a modifié le contenu de {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} a créé un nouvel utilisateur "{1}" pour {2}. - - - {0} deleted the account "{1}" of {2}. - {0} a supprimé un utilisateur "{1}" de {2}. - - - Load More - Plus de résultats - - - This node has been removed in the meantime - Ce nœud a été supprimé dans l'intervalle - Administration diff --git a/Neos.Neos/Resources/Private/Translations/hu/Modules.xlf b/Neos.Neos/Resources/Private/Translations/hu/Modules.xlf index a3cc012a8cb..d2c87170899 100644 --- a/Neos.Neos/Resources/Private/Translations/hu/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/hu/Modules.xlf @@ -261,70 +261,6 @@ All changes from workspace "{0}" have been discarded. Minden változás a munkafelületen "{0}" el lett vetve. - - History - Előzmények - - - This module provides an overview of all relevant events affecting this Neos installation. - Ez a modul áttekintést ad az összes fontos eseményről, amely befolyásolja a Neos telepítést. - - - Here's what happened recently in Neos - Itt van, ami nemrégiben történt a Neos-on - - - There have not been recorded any events yet which could be displayed in this history. - Nincs még felvett eseméyn, ami megjeleníthető lenne az előzményekben. - - - {0} created the {1} "{2}". - {0} létrehozta {1} "{2}". - - - {0} removed the {1} "{2}". - {0} eltávolította {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} létrehozta a változatot {1} a {2} "{3}". - - - {0} modified the {1} "{2}". - {0} módosult {1} "{2}". - - - {0} moved the {1} "{2}". - {0} mozgatta {1} "{2}". - - - {0} copied the {1} "{2}". - {0} másolta {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} átnevezte {1} "{2}" "{3}"-ra. - - - {0} modified content on the {1} "{2}". - {0} megváltoztatta a tartalmat {1} "{2}"-re. - - - {0} created a new user "{1}" for {2}. - {0} létrehozott egy új felhasználót "{1}" {2}. - - - {0} deleted the account "{1}" of {2}. - {0} törölt egy felhasználót "{1}" {2}. - - - Load More - Többet - - - This node has been removed in the meantime - Ezt a csomópontot idő közben eltávolították - Administration diff --git a/Neos.Neos/Resources/Private/Translations/id_ID/Modules.xlf b/Neos.Neos/Resources/Private/Translations/id_ID/Modules.xlf index 9ce46436820..f3f44591232 100644 --- a/Neos.Neos/Resources/Private/Translations/id_ID/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/id_ID/Modules.xlf @@ -257,70 +257,6 @@ All changes from workspace "{0}" have been discarded. Semua perubahan dari ruang kerja " {0} " telah dibuang. - - History - Sejarah - - - This module provides an overview of all relevant events affecting this Neos installation. - Modul ini memberikan gambaran umum tentang semua peristiwa yang relevan yang mempengaruhi pemasangan Neos ini. - - - Here's what happened recently in Neos - Inilah yang terjadi baru-baru ini di Neos - - - There have not been recorded any events yet which could be displayed in this history. - Belum ada rekaman acara yang bisa ditampilkan dalam sejarah ini. - - - {0} created the {1} "{2}". - {0} membuat {1} "{2}". - - - {0} removed the {1} "{2}". - {0} menghapus {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} membuat varian {1} dari {2} "{3}". - - - {0} modified the {1} "{2}". - {0} mengubah {1} "{2}". - - - {0} moved the {1} "{2}". - {0} memindah {1} "{2}". - - - {0} copied the {1} "{2}". - {0} menyalin {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} mengganti nama {1} "{2}" menjadi "{3}". - - - {0} modified content on the {1} "{2}". - {0} mengubah konten pada {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} membuat pengguna baru "{1}" untuk {2}. - - - {0} deleted the account "{1}" of {2}. - {0} dihapus account "{1}" dari {2}. - - - Load More - Muat lagi - - - This node has been removed in the meantime - Node ini telah dihapus sementara - Administration diff --git a/Neos.Neos/Resources/Private/Translations/it/Modules.xlf b/Neos.Neos/Resources/Private/Translations/it/Modules.xlf index 873d0b1e42f..5f65ffd2d69 100644 --- a/Neos.Neos/Resources/Private/Translations/it/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/it/Modules.xlf @@ -261,70 +261,6 @@ All changes from workspace "{0}" have been discarded. Tutte le modifiche dallo spazio di lavoro "{0}" sono state scartate. - - History - Cronologia - - - This module provides an overview of all relevant events affecting this Neos installation. - Questo modulo fornisce una panoramica di tutti gli eventi rilevanti che riguardano questa installazione di Neos. - - - Here's what happened recently in Neos - Ecco cosa è successo recentemente in Neos: - - - There have not been recorded any events yet which could be displayed in this history. - Non sono ancora stati registrati eventi che potrebbero essere visualizzati in questa cronologia. - - - {0} created the {1} "{2}". - {0} creato il {1} "{2}". - - - {0} removed the {1} "{2}". - {0} rimosso il {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} creata la variante {1} delle {2} "{3}". - - - {0} modified the {1} "{2}". - {0} modificato il {1} "{2}". - - - {0} moved the {1} "{2}". - {0} spostato il {1} "{2}". - - - {0} copied the {1} "{2}". - {0} copiato il {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} rinominati {1} "{2}" a "{3}". - - - {0} modified content on the {1} "{2}". - {0} modificato il contenuto su {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} ha creato un nuovo utente "{1}" per {2}. - - - {0} deleted the account "{1}" of {2}. - {0} ha eliminato l'account "{1}" di {2}. - - - Load More - Carica Altro - - - This node has been removed in the meantime - Questo nodo è stato rimosso nel mentre - Administration diff --git a/Neos.Neos/Resources/Private/Translations/ja/Modules.xlf b/Neos.Neos/Resources/Private/Translations/ja/Modules.xlf index 3007b437440..0580d4512a9 100644 --- a/Neos.Neos/Resources/Private/Translations/ja/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/ja/Modules.xlf @@ -257,70 +257,6 @@ All changes from workspace "{0}" have been discarded. All changes from workspace "{0}" have been discarded. - - History - History - - - This module provides an overview of all relevant events affecting this Neos installation. - This module provides an overview of all relevant events affecting this Neos installation. - - - Here's what happened recently in Neos - Here's what happened recently in Neos - - - There have not been recorded any events yet which could be displayed in this history. - There have not been recorded any events yet which could be displayed in this history. - - - {0} created the {1} "{2}". - {0} created the {1} "{2}". - - - {0} removed the {1} "{2}". - {0} removed the {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} created the variant {1} of the {2} "{3}". - - - {0} modified the {1} "{2}". - {0} modified the {1} "{2}". - - - {0} moved the {1} "{2}". - {0} moved the {1} "{2}". - - - {0} copied the {1} "{2}". - {0} copied the {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} renamed the {1} "{2}" to "{3}". - - - {0} modified content on the {1} "{2}". - {0} modified content on the {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} created a new user "{1}" for {2}. - - - {0} deleted the account "{1}" of {2}. - {0} deleted the account "{1}" of {2}. - - - Load More - Load More - - - This node has been removed in the meantime - This node has been removed in the meantime - Administration diff --git a/Neos.Neos/Resources/Private/Translations/km/Modules.xlf b/Neos.Neos/Resources/Private/Translations/km/Modules.xlf index 9720515c350..067bd8763ab 100644 --- a/Neos.Neos/Resources/Private/Translations/km/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/km/Modules.xlf @@ -258,70 +258,6 @@ All changes from workspace "{0}" have been discarded. ការផ្លាស់ប្តូរទាំងអស់ពីតំបន់ធ្វើការ "{0}" ត្រូវបានបោះបង់។ - - History - ប្រវត្តិ - - - This module provides an overview of all relevant events affecting this Neos installation. - ម៉ូឌុលមួយនេះ ផ្តល់នូវទិដ្ឋភាពទូទៅនៃព្រឹត្តិការណ៍ពាក់ព័ន្ធទាំងអស់ប៉ះពាល់ពីការដំឡើង Neos។ - - - Here's what happened recently in Neos - នេះ​គឺ​ជា​អ្វី​ដែល​កើត​ឡើង​ថ្មីៗ​អំពី​ Neos - - - There have not been recorded any events yet which could be displayed in this history. - មិនត្រូវបានកត់ត្រាព្រឹត្តិការណ៍​​​​​​​ដែលអាចត្រូវបានបង្ហាញនៅក្នុងប្រវត្តិសាស្រ្តនេះនៅឡើយទេ។ - - - {0} created the {1} "{2}". - {0} created the {1} "{2}". - - - {0} removed the {1} "{2}". - {0} removed the {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} created the variant {1} of the {2} "{3}". - - - {0} modified the {1} "{2}". - {0} modified the {1} "{2}". - - - {0} moved the {1} "{2}". - {0} moved the {1} "{2}". - - - {0} copied the {1} "{2}". - {0} copied the {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} renamed the {1} "{2}" to "{3}". - - - {0} modified content on the {1} "{2}". - {0} modified content on the {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} បាន​បង្កើត​អ្នក​ប្រើ​ប្រាស់​ថ្មី "{1}" ដើម្បី {2}។ - - - {0} deleted the account "{1}" of {2}. - {0} បាន​លុប​គណនី "{1}" នៃ {2}។ - - - Load More - ទាញយកបន្ថែមទៀត - - - This node has been removed in the meantime - ថ្នាំងនេះត្រូវបានយកចេញនៅក្នុងពេលតំណាលគ្នានេះ - Administration diff --git a/Neos.Neos/Resources/Private/Translations/lv/Modules.xlf b/Neos.Neos/Resources/Private/Translations/lv/Modules.xlf index 45ca75c3b56..158f9996f23 100644 --- a/Neos.Neos/Resources/Private/Translations/lv/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/lv/Modules.xlf @@ -261,70 +261,6 @@ All changes from workspace "{0}" have been discarded. Visas izmaiņas no darba virsmas "{0}" ir atceltas. - - History - Vēsture - - - This module provides an overview of all relevant events affecting this Neos installation. - Šis modulis sniedz apskatu par visām darbībām, kas ietekmē šo Neos instalāciju. - - - Here's what happened recently in Neos - Lūk, kas nesen notika Neos - - - There have not been recorded any events yet which could be displayed in this history. - Nav reģistrētu notikumu, ko varētu parādīt šajā vēsturē. - - - {0} created the {1} "{2}". - {0} izveidoja {1} {2}. - - - {0} removed the {1} "{2}". - {0} izdzēsa {1} {2}. - - - {0} created the variant {1} of the {2} "{3}". - {0} izveidoja versiju {1} no {2} {3}. - - - {0} modified the {1} "{2}". - {0} modificēja {1} "{2}". - - - {0} moved the {1} "{2}". - {0} pārvietoja {1} {2}. - - - {0} copied the {1} "{2}". - {0} nokopēja {1} {2}. - - - {0} renamed the {1} "{2}" to "{3}". - {0} pārdēvēja {1} "{2}" uz "{3}". - - - {0} modified content on the {1} "{2}". - {0} izmainīja saturu {1} {2}. - - - {0} created a new user "{1}" for {2}. - {0} izveidoja jaunu lietotāju "{1}" {2}. - - - {0} deleted the account "{1}" of {2}. - {0} izdzēsa kontu "{1}" {2}. - - - Load More - Ielādēt vairāk - - - This node has been removed in the meantime - Šis mezgls šobrīd tiek izņemts - Administration diff --git a/Neos.Neos/Resources/Private/Translations/nl/Modules.xlf b/Neos.Neos/Resources/Private/Translations/nl/Modules.xlf index 6b1e54d89d4..6dca8302eda 100644 --- a/Neos.Neos/Resources/Private/Translations/nl/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/nl/Modules.xlf @@ -259,70 +259,6 @@ All changes from workspace "{0}" have been discarded. Alle wijzigingen van workspace "{0}" zijn ongedaan gemaakt. - - History - Geschiedenis - - - This module provides an overview of all relevant events affecting this Neos installation. - Deze module biedt een overzicht van alle relevante gebeurtenissen op het gebied van deze Neos-installatie. - - - Here's what happened recently in Neos - Hier is wat er onlangs is gebeurd in Neos - - - There have not been recorded any events yet which could be displayed in this history. - Er zijn nog geen gebeurtenissen die kunnen worden weergegeven in deze geschiedenis. - - - {0} created the {1} "{2}". - {0} heeft de {1} "{2} " gemaakt. - - - {0} removed the {1} "{2}". - {0} verwijderde de {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} heeft de variant {1} van de {2} "{3} " gemaakt. - - - {0} modified the {1} "{2}". - {0} wijzigde de {1} "{2}". - - - {0} moved the {1} "{2}". - {0} verplaatste de {1} "{2}". - - - {0} copied the {1} "{2}". - {0} kopieerde de {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} heeft de naam {1} "{2}" gewijzigd naar "{3}". - - - {0} modified content on the {1} "{2}". - {0} heeft de inhoud van de {1} "{2} " gewijzigd. - - - {0} created a new user "{1}" for {2}. - {0} heeft een nieuwe gebruiker "{1}" gemaakt voor {2}. - - - {0} deleted the account "{1}" of {2}. - {0} heeft het account "{1}" verwijderd van {2}. - - - Load More - Meer laden - - - This node has been removed in the meantime - Intussen werd deze node verwijders - Administration diff --git a/Neos.Neos/Resources/Private/Translations/no/Modules.xlf b/Neos.Neos/Resources/Private/Translations/no/Modules.xlf index 09eef96229b..82cbb61d3e6 100644 --- a/Neos.Neos/Resources/Private/Translations/no/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/no/Modules.xlf @@ -261,70 +261,6 @@ All changes from workspace "{0}" have been discarded. Alle endringer fra arbeidsområdet "{0}" er forkastet. - - History - Historikk - - - This module provides an overview of all relevant events affecting this Neos installation. - Denne modulen gir en oversikt over alle relevante hendelser som påvirker Neos-installasjonen. - - - Here's what happened recently in Neos - Her er det som nylig skjedde i Neos: - - - There have not been recorded any events yet which could be displayed in this history. - Det er ikke ennå registrert noen hendelser som kan vises i denne historikken. - - - {0} created the {1} "{2}". - {0} opprettet {1} "{2}". - - - {0} removed the {1} "{2}". - {0} fjernet {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} opprettet variant {1} av {2} "{3}". - - - {0} modified the {1} "{2}". - {0} endret {1} "{2}". - - - {0} moved the {1} "{2}". - {0} flyttet {1} "{2}". - - - {0} copied the {1} "{2}". - {0} kopierte {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} renamed the {1} "{2}" to "{3}". - - - {0} modified content on the {1} "{2}". - {0} modified content on the {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} opprettet en ny bruker "{1}" for {2}. - - - {0} deleted the account "{1}" of {2}. - {0} slettet kontoen "{1}" av {2}. - - - Load More - Last inn mer - - - This node has been removed in the meantime - This node has been removed in the meantime - Administration diff --git a/Neos.Neos/Resources/Private/Translations/pl/Modules.xlf b/Neos.Neos/Resources/Private/Translations/pl/Modules.xlf index 60e33a6a719..21edd2516aa 100644 --- a/Neos.Neos/Resources/Private/Translations/pl/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/pl/Modules.xlf @@ -261,70 +261,6 @@ All changes from workspace "{0}" have been discarded. Wszystkie zmiany z obszaru roboczego "{0}" zostały odrzucone. - - History - Historia - - - This module provides an overview of all relevant events affecting this Neos installation. - Ten moduł zawiera przegląd wszystkich istotnych zdarzeń wpływających na działanie tej instalacji Neos. - - - Here's what happened recently in Neos - Oto co wydarzyło się ostatnio w Neos - - - There have not been recorded any events yet which could be displayed in this history. - Nie zarejestrowano żadnych zdarzeń, które mogłyby być wyświetlone w tej historii. - - - {0} created the {1} "{2}". - {0} utworzył {1} "{2}". - - - {0} removed the {1} "{2}". - {0} usunął {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} utworzył wariant {1} z {2} "{3}". - - - {0} modified the {1} "{2}". - {0} zmodyfikował {1} "{2}". - - - {0} moved the {1} "{2}". - {0} przeniósł {1} "{2}". - - - {0} copied the {1} "{2}". - {0} skopiował {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} zmienił nazwę {1} "{2}" na "{3}". - - - {0} modified content on the {1} "{2}". - {0} zmodyfikował zawartość na {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} utworzył nowego użytkownika "{1}" dla {2}. - - - {0} deleted the account "{1}" of {2}. - {0} usunął konto "{1}" z {2}. - - - Load More - Załaduj więcej - - - This node has been removed in the meantime - Ten węzeł został usunięty w międzyczasie - Administration diff --git a/Neos.Neos/Resources/Private/Translations/pt/Modules.xlf b/Neos.Neos/Resources/Private/Translations/pt/Modules.xlf index 4f4f1bf2894..f7625c747e3 100644 --- a/Neos.Neos/Resources/Private/Translations/pt/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/pt/Modules.xlf @@ -259,70 +259,6 @@ All changes from workspace "{0}" have been discarded. Todas as alterações do espaço de trabalho "{0}" foram descartadas. - - History - Histórico - - - This module provides an overview of all relevant events affecting this Neos installation. - Este módulo fornece uma visão geral de todos os eventos relevantes que afetam esta instalação do Neos. - - - Here's what happened recently in Neos - Aqui está o que aconteceu recentemente no Neos: - - - There have not been recorded any events yet which could be displayed in this history. - Não foram registrados quaisquer eventos que poderiam ser exibido neste histórico ainda. - - - {0} created the {1} "{2}". - {0} criou o {1} "{2}". - - - {0} removed the {1} "{2}". - {0} removido o {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} criada a variante {1} of the {2} "{3}". - - - {0} modified the {1} "{2}". - {0} modificado o {1} "{2}". - - - {0} moved the {1} "{2}". - {0} movido o {1} "{2}". - - - {0} copied the {1} "{2}". - {0} copiado o {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} renomeado o {1} "{2}" to "{3}". - - - {0} modified content on the {1} "{2}". - {0} modificado o conteúdo no {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} criou um novo usuário "{1}" para {2}. - - - {0} deleted the account "{1}" of {2}. - {0} excluiu a conta "{1}" de {2}. - - - Load More - Carregar mais - - - This node has been removed in the meantime - Este nó já foi removido - Administration diff --git a/Neos.Neos/Resources/Private/Translations/pt_BR/Modules.xlf b/Neos.Neos/Resources/Private/Translations/pt_BR/Modules.xlf index 437debac006..57b5e6628e6 100644 --- a/Neos.Neos/Resources/Private/Translations/pt_BR/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/pt_BR/Modules.xlf @@ -261,70 +261,6 @@ All changes from workspace "{0}" have been discarded. Todas as alterações do espaço de trabalho "{0}" foram descartadas. - - History - Histórico - - - This module provides an overview of all relevant events affecting this Neos installation. - Este módulo fornece uma visão geral de todos os eventos relevantes que afetam esta instalação do Neos. - - - Here's what happened recently in Neos - Aqui está o que aconteceu recentemente no Neos: - - - There have not been recorded any events yet which could be displayed in this history. - Não foram registrados quaisquer eventos que poderiam ser exibido neste histórico ainda. - - - {0} created the {1} "{2}". - {0} criou o {1} "{2}". - - - {0} removed the {1} "{2}". - {0} removeu o {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} criou a variante {1} do {2} "{3}". - - - {0} modified the {1} "{2}". - {0} modificou o {1} "{2}". - - - {0} moved the {1} "{2}". - {0} moveu o {1} "{2}". - - - {0} copied the {1} "{2}". - {0} copiou o {1} {2}. - - - {0} renamed the {1} "{2}" to "{3}". - {0} renomeou o {1} "{2}" para "{3}". - - - {0} modified content on the {1} "{2}". - {0} modificou o conteúdo no {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} criou um novo usuário "{1}" para {2}. - - - {0} deleted the account "{1}" of {2}. - {0} excluiu a conta "{1}" de {2}. - - - Load More - Carregar mais - - - This node has been removed in the meantime - Este nó já foi removido - Administration diff --git a/Neos.Neos/Resources/Private/Translations/ru/Modules.xlf b/Neos.Neos/Resources/Private/Translations/ru/Modules.xlf index 0590cbc1e79..6add673b808 100644 --- a/Neos.Neos/Resources/Private/Translations/ru/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/ru/Modules.xlf @@ -261,70 +261,6 @@ All changes from workspace "{0}" have been discarded. Все изменения из рабочей области "{0}" были отменены. - - History - История изменений - - - This module provides an overview of all relevant events affecting this Neos installation. - Этот модуль предоставляет обзор всех событий, имеющих отношение к данной инсталяции Neos. - - - Here's what happened recently in Neos - Вот что недавно произошло в Neos: - - - There have not been recorded any events yet which could be displayed in this history. - Не было событий, которые могли бы быть отображены в данном журнале изменений. - - - {0} created the {1} "{2}". - {0} создал {1} "{2}". - - - {0} removed the {1} "{2}". - {0} удалил {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} создал вариант {1} из {2} "{3}". - - - {0} modified the {1} "{2}". - {0} изменил {1} "{2}". - - - {0} moved the {1} "{2}". - {0} переместил {1} "{2}". - - - {0} copied the {1} "{2}". - {0} скопировал {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} переименовал {1} "{2}" в "{3}". - - - {0} modified content on the {1} "{2}". - {0} изменил контент на {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} создал нового пользователя "{1}" для {2}. - - - {0} deleted the account "{1}" of {2}. - {0} удалил учётную запись "{1}" из {2}. - - - Load More - Загрузить ещё - - - This node has been removed in the meantime - За прошедшее время элемент был удален - Administration diff --git a/Neos.Neos/Resources/Private/Translations/sr/Modules.xlf b/Neos.Neos/Resources/Private/Translations/sr/Modules.xlf index e9cb4e3ec73..e6303a70574 100644 --- a/Neos.Neos/Resources/Private/Translations/sr/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/sr/Modules.xlf @@ -261,70 +261,6 @@ All changes from workspace "{0}" have been discarded. All changes from workspace "{0}" have been discarded. - - History - History - - - This module provides an overview of all relevant events affecting this Neos installation. - This module provides an overview of all relevant events affecting this Neos installation. - - - Here's what happened recently in Neos - Here's what happened recently in Neos - - - There have not been recorded any events yet which could be displayed in this history. - There have not been recorded any events yet which could be displayed in this history. - - - {0} created the {1} "{2}". - {0} created the {1} "{2}". - - - {0} removed the {1} "{2}". - {0} removed the {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} created the variant {1} of the {2} "{3}". - - - {0} modified the {1} "{2}". - {0} modified the {1} "{2}". - - - {0} moved the {1} "{2}". - {0} moved the {1} "{2}". - - - {0} copied the {1} "{2}". - {0} copied the {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} renamed the {1} "{2}" to "{3}". - - - {0} modified content on the {1} "{2}". - {0} modified content on the {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} created a new user "{1}" for {2}. - - - {0} deleted the account "{1}" of {2}. - {0} deleted the account "{1}" of {2}. - - - Load More - Load More - - - This node has been removed in the meantime - This node has been removed in the meantime - Administration diff --git a/Neos.Neos/Resources/Private/Translations/sv/Modules.xlf b/Neos.Neos/Resources/Private/Translations/sv/Modules.xlf index 24d7ac01f72..0157e0bbdf2 100644 --- a/Neos.Neos/Resources/Private/Translations/sv/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/sv/Modules.xlf @@ -261,70 +261,6 @@ All changes from workspace "{0}" have been discarded. Alla ändringar från arbetsytan "{0}" har ignorerats. - - History - Historik - - - This module provides an overview of all relevant events affecting this Neos installation. - Denna modul ger en översikt över alla relevanta händelser som påverkar denna Neos-installation. - - - Here's what happened recently in Neos - Här är vad som nyligen hänt i Neos - - - There have not been recorded any events yet which could be displayed in this history. - Det har ännu ej registrerats någon händelse i denna historik. - - - {0} created the {1} "{2}". - {0} skapade {1} "{2}". - - - {0} removed the {1} "{2}". - {0} raderade {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} skapade en variant {1} av {2} "{3}". - - - {0} modified the {1} "{2}". - {0} förändrade {1} "{2}". - - - {0} moved the {1} "{2}". - {0} flyttade {1} "{2}". - - - {0} copied the {1} "{2}". - {0} kopierade {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} döpte om {1} "{2}" till "{3}". - - - {0} modified content on the {1} "{2}". - {0} förändrade innehållet på {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} skapade en ny användare "{1}" för {2}. - - - {0} deleted the account "{1}" of {2}. - {0} raderade kontot "{1}" av {2}. - - - Load More - Ladda mer - - - This node has been removed in the meantime - Den här noden har tagits bort under tiden - Administration diff --git a/Neos.Neos/Resources/Private/Translations/tl_PH/Modules.xlf b/Neos.Neos/Resources/Private/Translations/tl_PH/Modules.xlf index 80fefd4d86d..7ae4c39ff2a 100644 --- a/Neos.Neos/Resources/Private/Translations/tl_PH/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/tl_PH/Modules.xlf @@ -261,70 +261,6 @@ All changes from workspace "{0}" have been discarded. All changes from workspace "{0}" have been discarded. - - History - History - - - This module provides an overview of all relevant events affecting this Neos installation. - This module provides an overview of all relevant events affecting this Neos installation. - - - Here's what happened recently in Neos - Here's what happened recently in Neos - - - There have not been recorded any events yet which could be displayed in this history. - There have not been recorded any events yet which could be displayed in this history. - - - {0} created the {1} "{2}". - {0} ang gumawa ng {1} "{2}". - - - {0} removed the {1} "{2}". - {0} ay tinanggal ang {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} ay gumawa ng iba't-ibang {1} ng mga {2} "{3}". - - - {0} modified the {1} "{2}". - {0} ay binago ang {1} "{2}". - - - {0} moved the {1} "{2}". - {0} ay inilipat ang {1} "{2}". - - - {0} copied the {1} "{2}". - {0} ay kinopya ang {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} ay pinalitan ang pangalan ng {1} "{2}" sa "{3}". - - - {0} modified content on the {1} "{2}". - {0} ay binago ang nilalaman sa {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} created a new user "{1}" for {2}. - - - {0} deleted the account "{1}" of {2}. - {0} deleted the account "{1}" of {2}. - - - Load More - Load More - - - This node has been removed in the meantime - This node has been removed in the meantime - Administration diff --git a/Neos.Neos/Resources/Private/Translations/tr/Modules.xlf b/Neos.Neos/Resources/Private/Translations/tr/Modules.xlf index 1153da2b223..7986141defc 100644 --- a/Neos.Neos/Resources/Private/Translations/tr/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/tr/Modules.xlf @@ -259,70 +259,6 @@ All changes from workspace "{0}" have been discarded. "{0}" çalışma alanındaki tüm değişiklikler iptal edildi. - - History - Geçmiş - - - This module provides an overview of all relevant events affecting this Neos installation. - Bu modül bu Neos kurulumunu etkileyen tüm ilgili olaylara genel bir bakış sağlar. - - - Here's what happened recently in Neos - İşte son zamanlarda Neos'da olanlar - - - There have not been recorded any events yet which could be displayed in this history. - Henüz bu geçmişte gösterilebilecek herhangi bir olay kaydedildi. - - - {0} created the {1} "{2}". - {0}, {1} "{2}" oluşturdu. - - - {0} removed the {1} "{2}". - {0}, {1} "{2}" 'yi kaldırdı. - - - {0} created the variant {1} of the {2} "{3}". - {0}, {2} "{3}" varyantını {1} oluşturdu. - - - {0} modified the {1} "{2}". - {0}, {1} "{2}" değiştirdi. - - - {0} moved the {1} "{2}". - {0}, {1} "{2}" taşıdı. - - - {0} copied the {1} "{2}". - {0}, {1} "{2}" kopyaladı. - - - {0} renamed the {1} "{2}" to "{3}". - {0}, {1} "{2}" dan "{3}" olarak yeniden adlandırıldı. - - - {0} modified content on the {1} "{2}". - {0}, {1} "{2}" içeriği değiştirdi. - - - {0} created a new user "{1}" for {2}. - {0}, {2} için "{1}" adlı yeni bir kullanıcı oluşturdu. - - - {0} deleted the account "{1}" of {2}. - {0}, {2} hesabının "{1}" hesabını sildi. - - - Load More - Daha Fazla Yükle - - - This node has been removed in the meantime - Bu düğüm bu arada kaldırıldı - Administration diff --git a/Neos.Neos/Resources/Private/Translations/uk/Modules.xlf b/Neos.Neos/Resources/Private/Translations/uk/Modules.xlf index 0cdcd281130..da91e27fe35 100644 --- a/Neos.Neos/Resources/Private/Translations/uk/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/uk/Modules.xlf @@ -261,70 +261,6 @@ All changes from workspace "{0}" have been discarded. Всі зміни з робочого середовища "{0}" були скасовані. - - History - Історія - - - This module provides an overview of all relevant events affecting this Neos installation. - Цей модуль забезпечує огляд всіх відповідних подій, маючих вплив до встановлення Neos. - - - Here's what happened recently in Neos - Останні події в Neos - - - There have not been recorded any events yet which could be displayed in this history. - Відсутні записи подій, які можуть відображатися в історії. - - - {0} created the {1} "{2}". - {0} created the {1} "{2}". - - - {0} removed the {1} "{2}". - {0} removed the {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} created the variant {1} of the {2} "{3}". - - - {0} modified the {1} "{2}". - {0} modified the {1} "{2}". - - - {0} moved the {1} "{2}". - {0} moved the {1} "{2}". - - - {0} copied the {1} "{2}". - {0} copied the {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} renamed the {1} "{2}" to "{3}". - - - {0} modified content on the {1} "{2}". - {0} modified content on the {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} створити нового користувача "{1}" для {2}. - - - {0} deleted the account "{1}" of {2}. - {0} видалив обліковий запис "{1}" {2}. - - - Load More - Завантажити ще - - - This node has been removed in the meantime - Цей вузол буде видалено в той же час - Administration diff --git a/Neos.Neos/Resources/Private/Translations/vi/Modules.xlf b/Neos.Neos/Resources/Private/Translations/vi/Modules.xlf index 13d2d5d3a5f..8f4f96bc070 100644 --- a/Neos.Neos/Resources/Private/Translations/vi/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/vi/Modules.xlf @@ -257,70 +257,6 @@ All changes from workspace "{0}" have been discarded. Tất cả thay đổi từ không gian làm việc "{0}" đã bị hủy bỏ. - - History - Lịch sử - - - This module provides an overview of all relevant events affecting this Neos installation. - This module provides an overview of all relevant events affecting this Neos installation. - - - Here's what happened recently in Neos - Here's what happened recently in Neos - - - There have not been recorded any events yet which could be displayed in this history. - There have not been recorded any events yet which could be displayed in this history. - - - {0} created the {1} "{2}". - {0} created the {1} "{2}". - - - {0} removed the {1} "{2}". - {0} removed the {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} created the variant {1} of the {2} "{3}". - - - {0} modified the {1} "{2}". - {0} modified the {1} "{2}". - - - {0} moved the {1} "{2}". - {0} moved the {1} "{2}". - - - {0} copied the {1} "{2}". - {0} copied the {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} renamed the {1} "{2}" to "{3}". - - - {0} modified content on the {1} "{2}". - {0} modified content on the {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} created a new user "{1}" for {2}. - - - {0} deleted the account "{1}" of {2}. - {0} deleted the account "{1}" of {2}. - - - Load More - Hiển thị Thêm - - - This node has been removed in the meantime - This node has been removed in the meantime - Administration diff --git a/Neos.Neos/Resources/Private/Translations/zh/Modules.xlf b/Neos.Neos/Resources/Private/Translations/zh/Modules.xlf index 1c34134849b..7d0604cad97 100644 --- a/Neos.Neos/Resources/Private/Translations/zh/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/zh/Modules.xlf @@ -257,70 +257,6 @@ All changes from workspace "{0}" have been discarded. 工作区 "{0}" 中的所有更改已丢弃。 - - History - 历史 - - - This module provides an overview of all relevant events affecting this Neos installation. - 该模块概述了影响此Neos安装的所有相关事件。 - - - Here's what happened recently in Neos - 最近发生的事件/操作: - - - There have not been recorded any events yet which could be displayed in this history. - 没有可以显示的记录。 - - - {0} created the {1} "{2}". - {0} 创建了 {1} {2}。 - - - {0} removed the {1} "{2}". - {0} 删除了 {1} {2}。 - - - {0} created the variant {1} of the {2} "{3}". - {0} 创建了 {2} 的变体 {1} "{3}"。 - - - {0} modified the {1} "{2}". - {0} 修改了 {1} "{2}"。 - - - {0} moved the {1} "{2}". - {0} 移动了 {1} {2}。 - - - {0} copied the {1} "{2}". - {0} 复制了 {1} "{2}"。 - - - {0} renamed the {1} "{2}" to "{3}". - {0} 将 {1} "{2}" 重命名为 "{3}"。 - - - {0} modified content on the {1} "{2}". - {0} 修改了 {1} "{2}" 上的内容。 - - - {0} created a new user "{1}" for {2}. - {0} 为 {2} 创建一个新用户"{1}"。 - - - {0} deleted the account "{1}" of {2}. - {0} 删除了 {2} 的帐户"{1}"。 - - - Load More - 载入更多 - - - This node has been removed in the meantime - 在此期间此节点已删除 - Administration diff --git a/Neos.Neos/Resources/Private/Translations/zh_TW/Modules.xlf b/Neos.Neos/Resources/Private/Translations/zh_TW/Modules.xlf index 7914735d1d6..ed00dcedf7c 100644 --- a/Neos.Neos/Resources/Private/Translations/zh_TW/Modules.xlf +++ b/Neos.Neos/Resources/Private/Translations/zh_TW/Modules.xlf @@ -257,70 +257,6 @@ All changes from workspace "{0}" have been discarded. All changes from workspace "{0}" have been discarded. - - History - History - - - This module provides an overview of all relevant events affecting this Neos installation. - This module provides an overview of all relevant events affecting this Neos installation. - - - Here's what happened recently in Neos - Here's what happened recently in Neos - - - There have not been recorded any events yet which could be displayed in this history. - There have not been recorded any events yet which could be displayed in this history. - - - {0} created the {1} "{2}". - {0} created the {1} "{2}". - - - {0} removed the {1} "{2}". - {0} removed the {1} "{2}". - - - {0} created the variant {1} of the {2} "{3}". - {0} created the variant {1} of the {2} "{3}". - - - {0} modified the {1} "{2}". - {0} modified the {1} "{2}". - - - {0} moved the {1} "{2}". - {0} moved the {1} "{2}". - - - {0} copied the {1} "{2}". - {0} copied the {1} "{2}". - - - {0} renamed the {1} "{2}" to "{3}". - {0} renamed the {1} "{2}" to "{3}". - - - {0} modified content on the {1} "{2}". - {0} modified content on the {1} "{2}". - - - {0} created a new user "{1}" for {2}. - {0} created a new user "{1}" for {2}. - - - {0} deleted the account "{1}" of {2}. - {0} deleted the account "{1}" of {2}. - - - Load More - Load More - - - This node has been removed in the meantime - This node has been removed in the meantime - Administration diff --git a/Neos.Neos/Resources/Public/JavaScript/Main.min.js.map b/Neos.Neos/Resources/Public/JavaScript/Main.min.js.map index bec0e8b2aca..afefdb26e1e 100644 --- a/Neos.Neos/Resources/Public/JavaScript/Main.min.js.map +++ b/Neos.Neos/Resources/Public/JavaScript/Main.min.js.map @@ -1 +1 @@ -{"version":3,"file":"Main.min.js","mappings":"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","sources":["webpack://@neos-project/neos/./node_modules/dompurify/dist/purify.js","webpack://@neos-project/neos/./node_modules/jquery/dist/jquery.js","webpack://@neos-project/neos/webpack/bootstrap","webpack://@neos-project/neos/webpack/runtime/compat get default export","webpack://@neos-project/neos/webpack/runtime/define property getters","webpack://@neos-project/neos/webpack/runtime/hasOwnProperty shorthand","webpack://@neos-project/neos/./Resources/Public/JavaScript/Components/TopBar/DropdownMenu.ts","webpack://@neos-project/neos/./Resources/Public/JavaScript/Components/TopBar/Expandable.ts","webpack://@neos-project/neos/./Resources/Public/JavaScript/Helper/isNil.ts","webpack://@neos-project/neos/./Resources/Public/JavaScript/Helper/getCollectionValueByPath.ts","webpack://@neos-project/neos/./Resources/Public/JavaScript/Helper/createCollectionByPath.ts","webpack://@neos-project/neos/./Resources/Public/JavaScript/Services/LocalStorage.js","webpack://@neos-project/neos/./Resources/Public/JavaScript/Components/TopBar/MenuPanel.ts","webpack://@neos-project/neos/./Resources/Public/JavaScript/Services/Configuration.js","webpack://@neos-project/neos/./Resources/Public/JavaScript/Helper/isEmpty.ts","webpack://@neos-project/neos/./Resources/Public/JavaScript/Components/Notification/MessageTemplate.ts","webpack://@neos-project/neos/./Resources/Public/JavaScript/Components/Notification/Message.ts","webpack://@neos-project/neos/./Resources/Public/JavaScript/Components/Notification/Toast.ts","webpack://@neos-project/neos/./Resources/Public/JavaScript/Services/Notification.js","webpack://@neos-project/neos/./node_modules/@babel/runtime/helpers/esm/typeof.js","webpack://@neos-project/neos/./node_modules/@babel/runtime/helpers/esm/defineProperty.js","webpack://@neos-project/neos/./node_modules/@babel/runtime/helpers/esm/objectSpread.js","webpack://@neos-project/neos/./node_modules/@babel/runtime/helpers/esm/classCallCheck.js","webpack://@neos-project/neos/./node_modules/@babel/runtime/helpers/esm/createClass.js","webpack://@neos-project/neos/./node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js","webpack://@neos-project/neos/./node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js","webpack://@neos-project/neos/./node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js","webpack://@neos-project/neos/./node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js","webpack://@neos-project/neos/./node_modules/@babel/runtime/helpers/esm/inherits.js","webpack://@neos-project/neos/./node_modules/i18next/dist/esm/i18next.js","webpack://@neos-project/neos/./Resources/Public/JavaScript/Services/Localization.js","webpack://@neos-project/neos/./Resources/Public/JavaScript/Services/SessionStorage.js","webpack://@neos-project/neos/./Resources/Public/JavaScript/Services/ApiService.js","webpack://@neos-project/neos/./Resources/Public/JavaScript/Helper/getItemByKeyValue.ts","webpack://@neos-project/neos/./Resources/Public/JavaScript/Services/Helper.js","webpack://@neos-project/neos/./Resources/Public/JavaScript/Components/TopBar/UserMenu.js","webpack://@neos-project/neos/./Resources/Public/JavaScript/Templates/RestoreButton.js","webpack://@neos-project/neos/./Resources/Public/JavaScript/Templates/ImpersonateButton.js","webpack://@neos-project/neos/./Resources/Public/JavaScript/Module/Administration/UserManagement.js","webpack://@neos-project/neos/./Resources/Public/JavaScript/Components/DropDown.ts","webpack://@neos-project/neos/./Resources/Public/JavaScript/Components/DropDownGroup.ts","webpack://@neos-project/neos/./Resources/Public/JavaScript/Components/Tree.ts","webpack://@neos-project/neos/./Resources/Public/JavaScript/Components/Modal.ts","webpack://@neos-project/neos/./Resources/Public/JavaScript/index.js","webpack://@neos-project/neos/./Resources/Public/JavaScript/Services/ResourceCache.js"],"sourcesContent":["/*! @license DOMPurify | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.2.2/LICENSE */\n\n(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :\n typeof define === 'function' && define.amd ? define(factory) :\n (global = global || self, global.DOMPurify = factory());\n}(this, function () { 'use strict';\n\n function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }\n\n var hasOwnProperty = Object.hasOwnProperty,\n setPrototypeOf = Object.setPrototypeOf,\n isFrozen = Object.isFrozen,\n getPrototypeOf = Object.getPrototypeOf,\n getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n var freeze = Object.freeze,\n seal = Object.seal,\n create = Object.create; // eslint-disable-line import/no-mutable-exports\n\n var _ref = typeof Reflect !== 'undefined' && Reflect,\n apply = _ref.apply,\n construct = _ref.construct;\n\n if (!apply) {\n apply = function apply(fun, thisValue, args) {\n return fun.apply(thisValue, args);\n };\n }\n\n if (!freeze) {\n freeze = function freeze(x) {\n return x;\n };\n }\n\n if (!seal) {\n seal = function seal(x) {\n return x;\n };\n }\n\n if (!construct) {\n construct = function construct(Func, args) {\n return new (Function.prototype.bind.apply(Func, [null].concat(_toConsumableArray(args))))();\n };\n }\n\n var arrayForEach = unapply(Array.prototype.forEach);\n var arrayPop = unapply(Array.prototype.pop);\n var arrayPush = unapply(Array.prototype.push);\n\n var stringToLowerCase = unapply(String.prototype.toLowerCase);\n var stringMatch = unapply(String.prototype.match);\n var stringReplace = unapply(String.prototype.replace);\n var stringIndexOf = unapply(String.prototype.indexOf);\n var stringTrim = unapply(String.prototype.trim);\n\n var regExpTest = unapply(RegExp.prototype.test);\n\n var typeErrorCreate = unconstruct(TypeError);\n\n function unapply(func) {\n return function (thisArg) {\n for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n\n return apply(func, thisArg, args);\n };\n }\n\n function unconstruct(func) {\n return function () {\n for (var _len2 = arguments.length, args = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n args[_key2] = arguments[_key2];\n }\n\n return construct(func, args);\n };\n }\n\n /* Add properties to a lookup table */\n function addToSet(set, array) {\n if (setPrototypeOf) {\n // Make 'in' and truthy checks like Boolean(set.constructor)\n // independent of any properties defined on Object.prototype.\n // Prevent prototype setters from intercepting set as a this value.\n setPrototypeOf(set, null);\n }\n\n var l = array.length;\n while (l--) {\n var element = array[l];\n if (typeof element === 'string') {\n var lcElement = stringToLowerCase(element);\n if (lcElement !== element) {\n // Config presets (e.g. tags.js, attrs.js) are immutable.\n if (!isFrozen(array)) {\n array[l] = lcElement;\n }\n\n element = lcElement;\n }\n }\n\n set[element] = true;\n }\n\n return set;\n }\n\n /* Shallow clone an object */\n function clone(object) {\n var newObject = create(null);\n\n var property = void 0;\n for (property in object) {\n if (apply(hasOwnProperty, object, [property])) {\n newObject[property] = object[property];\n }\n }\n\n return newObject;\n }\n\n /* IE10 doesn't support __lookupGetter__ so lets'\n * simulate it. It also automatically checks\n * if the prop is function or getter and behaves\n * accordingly. */\n function lookupGetter(object, prop) {\n while (object !== null) {\n var desc = getOwnPropertyDescriptor(object, prop);\n if (desc) {\n if (desc.get) {\n return unapply(desc.get);\n }\n\n if (typeof desc.value === 'function') {\n return unapply(desc.value);\n }\n }\n\n object = getPrototypeOf(object);\n }\n\n return null;\n }\n\n var html = freeze(['a', 'abbr', 'acronym', 'address', 'area', 'article', 'aside', 'audio', 'b', 'bdi', 'bdo', 'big', 'blink', 'blockquote', 'body', 'br', 'button', 'canvas', 'caption', 'center', 'cite', 'code', 'col', 'colgroup', 'content', 'data', 'datalist', 'dd', 'decorator', 'del', 'details', 'dfn', 'dialog', 'dir', 'div', 'dl', 'dt', 'element', 'em', 'fieldset', 'figcaption', 'figure', 'font', 'footer', 'form', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'head', 'header', 'hgroup', 'hr', 'html', 'i', 'img', 'input', 'ins', 'kbd', 'label', 'legend', 'li', 'main', 'map', 'mark', 'marquee', 'menu', 'menuitem', 'meter', 'nav', 'nobr', 'ol', 'optgroup', 'option', 'output', 'p', 'picture', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'section', 'select', 'shadow', 'small', 'source', 'spacer', 'span', 'strike', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'template', 'textarea', 'tfoot', 'th', 'thead', 'time', 'tr', 'track', 'tt', 'u', 'ul', 'var', 'video', 'wbr']);\n\n // SVG\n var svg = freeze(['svg', 'a', 'altglyph', 'altglyphdef', 'altglyphitem', 'animatecolor', 'animatemotion', 'animatetransform', 'circle', 'clippath', 'defs', 'desc', 'ellipse', 'filter', 'font', 'g', 'glyph', 'glyphref', 'hkern', 'image', 'line', 'lineargradient', 'marker', 'mask', 'metadata', 'mpath', 'path', 'pattern', 'polygon', 'polyline', 'radialgradient', 'rect', 'stop', 'style', 'switch', 'symbol', 'text', 'textpath', 'title', 'tref', 'tspan', 'view', 'vkern']);\n\n var svgFilters = freeze(['feBlend', 'feColorMatrix', 'feComponentTransfer', 'feComposite', 'feConvolveMatrix', 'feDiffuseLighting', 'feDisplacementMap', 'feDistantLight', 'feFlood', 'feFuncA', 'feFuncB', 'feFuncG', 'feFuncR', 'feGaussianBlur', 'feMerge', 'feMergeNode', 'feMorphology', 'feOffset', 'fePointLight', 'feSpecularLighting', 'feSpotLight', 'feTile', 'feTurbulence']);\n\n // List of SVG elements that are disallowed by default.\n // We still need to know them so that we can do namespace\n // checks properly in case one wants to add them to\n // allow-list.\n var svgDisallowed = freeze(['animate', 'color-profile', 'cursor', 'discard', 'fedropshadow', 'feimage', 'font-face', 'font-face-format', 'font-face-name', 'font-face-src', 'font-face-uri', 'foreignobject', 'hatch', 'hatchpath', 'mesh', 'meshgradient', 'meshpatch', 'meshrow', 'missing-glyph', 'script', 'set', 'solidcolor', 'unknown', 'use']);\n\n var mathMl = freeze(['math', 'menclose', 'merror', 'mfenced', 'mfrac', 'mglyph', 'mi', 'mlabeledtr', 'mmultiscripts', 'mn', 'mo', 'mover', 'mpadded', 'mphantom', 'mroot', 'mrow', 'ms', 'mspace', 'msqrt', 'mstyle', 'msub', 'msup', 'msubsup', 'mtable', 'mtd', 'mtext', 'mtr', 'munder', 'munderover']);\n\n // Similarly to SVG, we want to know all MathML elements,\n // even those that we disallow by default.\n var mathMlDisallowed = freeze(['maction', 'maligngroup', 'malignmark', 'mlongdiv', 'mscarries', 'mscarry', 'msgroup', 'mstack', 'msline', 'msrow', 'semantics', 'annotation', 'annotation-xml', 'mprescripts', 'none']);\n\n var text = freeze(['#text']);\n\n var html$1 = freeze(['accept', 'action', 'align', 'alt', 'autocapitalize', 'autocomplete', 'autopictureinpicture', 'autoplay', 'background', 'bgcolor', 'border', 'capture', 'cellpadding', 'cellspacing', 'checked', 'cite', 'class', 'clear', 'color', 'cols', 'colspan', 'controls', 'controlslist', 'coords', 'crossorigin', 'datetime', 'decoding', 'default', 'dir', 'disabled', 'disablepictureinpicture', 'disableremoteplayback', 'download', 'draggable', 'enctype', 'enterkeyhint', 'face', 'for', 'headers', 'height', 'hidden', 'high', 'href', 'hreflang', 'id', 'inputmode', 'integrity', 'ismap', 'kind', 'label', 'lang', 'list', 'loading', 'loop', 'low', 'max', 'maxlength', 'media', 'method', 'min', 'minlength', 'multiple', 'muted', 'name', 'noshade', 'novalidate', 'nowrap', 'open', 'optimum', 'pattern', 'placeholder', 'playsinline', 'poster', 'preload', 'pubdate', 'radiogroup', 'readonly', 'rel', 'required', 'rev', 'reversed', 'role', 'rows', 'rowspan', 'spellcheck', 'scope', 'selected', 'shape', 'size', 'sizes', 'span', 'srclang', 'start', 'src', 'srcset', 'step', 'style', 'summary', 'tabindex', 'title', 'translate', 'type', 'usemap', 'valign', 'value', 'width', 'xmlns']);\n\n var svg$1 = freeze(['accent-height', 'accumulate', 'additive', 'alignment-baseline', 'ascent', 'attributename', 'attributetype', 'azimuth', 'basefrequency', 'baseline-shift', 'begin', 'bias', 'by', 'class', 'clip', 'clippathunits', 'clip-path', 'clip-rule', 'color', 'color-interpolation', 'color-interpolation-filters', 'color-profile', 'color-rendering', 'cx', 'cy', 'd', 'dx', 'dy', 'diffuseconstant', 'direction', 'display', 'divisor', 'dur', 'edgemode', 'elevation', 'end', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'filterunits', 'flood-color', 'flood-opacity', 'font-family', 'font-size', 'font-size-adjust', 'font-stretch', 'font-style', 'font-variant', 'font-weight', 'fx', 'fy', 'g1', 'g2', 'glyph-name', 'glyphref', 'gradientunits', 'gradienttransform', 'height', 'href', 'id', 'image-rendering', 'in', 'in2', 'k', 'k1', 'k2', 'k3', 'k4', 'kerning', 'keypoints', 'keysplines', 'keytimes', 'lang', 'lengthadjust', 'letter-spacing', 'kernelmatrix', 'kernelunitlength', 'lighting-color', 'local', 'marker-end', 'marker-mid', 'marker-start', 'markerheight', 'markerunits', 'markerwidth', 'maskcontentunits', 'maskunits', 'max', 'mask', 'media', 'method', 'mode', 'min', 'name', 'numoctaves', 'offset', 'operator', 'opacity', 'order', 'orient', 'orientation', 'origin', 'overflow', 'paint-order', 'path', 'pathlength', 'patterncontentunits', 'patterntransform', 'patternunits', 'points', 'preservealpha', 'preserveaspectratio', 'primitiveunits', 'r', 'rx', 'ry', 'radius', 'refx', 'refy', 'repeatcount', 'repeatdur', 'restart', 'result', 'rotate', 'scale', 'seed', 'shape-rendering', 'specularconstant', 'specularexponent', 'spreadmethod', 'startoffset', 'stddeviation', 'stitchtiles', 'stop-color', 'stop-opacity', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke', 'stroke-width', 'style', 'surfacescale', 'systemlanguage', 'tabindex', 'targetx', 'targety', 'transform', 'text-anchor', 'text-decoration', 'text-rendering', 'textlength', 'type', 'u1', 'u2', 'unicode', 'values', 'viewbox', 'visibility', 'version', 'vert-adv-y', 'vert-origin-x', 'vert-origin-y', 'width', 'word-spacing', 'wrap', 'writing-mode', 'xchannelselector', 'ychannelselector', 'x', 'x1', 'x2', 'xmlns', 'y', 'y1', 'y2', 'z', 'zoomandpan']);\n\n var mathMl$1 = freeze(['accent', 'accentunder', 'align', 'bevelled', 'close', 'columnsalign', 'columnlines', 'columnspan', 'denomalign', 'depth', 'dir', 'display', 'displaystyle', 'encoding', 'fence', 'frame', 'height', 'href', 'id', 'largeop', 'length', 'linethickness', 'lspace', 'lquote', 'mathbackground', 'mathcolor', 'mathsize', 'mathvariant', 'maxsize', 'minsize', 'movablelimits', 'notation', 'numalign', 'open', 'rowalign', 'rowlines', 'rowspacing', 'rowspan', 'rspace', 'rquote', 'scriptlevel', 'scriptminsize', 'scriptsizemultiplier', 'selection', 'separator', 'separators', 'stretchy', 'subscriptshift', 'supscriptshift', 'symmetric', 'voffset', 'width', 'xmlns']);\n\n var xml = freeze(['xlink:href', 'xml:id', 'xlink:title', 'xml:space', 'xmlns:xlink']);\n\n // eslint-disable-next-line unicorn/better-regex\n var MUSTACHE_EXPR = seal(/\\{\\{[\\s\\S]*|[\\s\\S]*\\}\\}/gm); // Specify template detection regex for SAFE_FOR_TEMPLATES mode\n var ERB_EXPR = seal(/<%[\\s\\S]*|[\\s\\S]*%>/gm);\n var DATA_ATTR = seal(/^data-[\\-\\w.\\u00B7-\\uFFFF]/); // eslint-disable-line no-useless-escape\n var ARIA_ATTR = seal(/^aria-[\\-\\w]+$/); // eslint-disable-line no-useless-escape\n var IS_ALLOWED_URI = seal(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp):|[^a-z]|[a-z+.\\-]+(?:[^a-z+.\\-:]|$))/i // eslint-disable-line no-useless-escape\n );\n var IS_SCRIPT_OR_DATA = seal(/^(?:\\w+script|data):/i);\n var ATTR_WHITESPACE = seal(/[\\u0000-\\u0020\\u00A0\\u1680\\u180E\\u2000-\\u2029\\u205F\\u3000]/g // eslint-disable-line no-control-regex\n );\n\n var _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n function _toConsumableArray$1(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }\n\n var getGlobal = function getGlobal() {\n return typeof window === 'undefined' ? null : window;\n };\n\n /**\n * Creates a no-op policy for internal use only.\n * Don't export this function outside this module!\n * @param {?TrustedTypePolicyFactory} trustedTypes The policy factory.\n * @param {Document} document The document object (to determine policy name suffix)\n * @return {?TrustedTypePolicy} The policy created (or null, if Trusted Types\n * are not supported).\n */\n var _createTrustedTypesPolicy = function _createTrustedTypesPolicy(trustedTypes, document) {\n if ((typeof trustedTypes === 'undefined' ? 'undefined' : _typeof(trustedTypes)) !== 'object' || typeof trustedTypes.createPolicy !== 'function') {\n return null;\n }\n\n // Allow the callers to control the unique policy name\n // by adding a data-tt-policy-suffix to the script element with the DOMPurify.\n // Policy creation with duplicate names throws in Trusted Types.\n var suffix = null;\n var ATTR_NAME = 'data-tt-policy-suffix';\n if (document.currentScript && document.currentScript.hasAttribute(ATTR_NAME)) {\n suffix = document.currentScript.getAttribute(ATTR_NAME);\n }\n\n var policyName = 'dompurify' + (suffix ? '#' + suffix : '');\n\n try {\n return trustedTypes.createPolicy(policyName, {\n createHTML: function createHTML(html$$1) {\n return html$$1;\n }\n });\n } catch (_) {\n // Policy creation failed (most likely another DOMPurify script has\n // already run). Skip creating the policy, as this will only cause errors\n // if TT are enforced.\n console.warn('TrustedTypes policy ' + policyName + ' could not be created.');\n return null;\n }\n };\n\n function createDOMPurify() {\n var window = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : getGlobal();\n\n var DOMPurify = function DOMPurify(root) {\n return createDOMPurify(root);\n };\n\n /**\n * Version label, exposed for easier checks\n * if DOMPurify is up to date or not\n */\n DOMPurify.version = '2.2.6';\n\n /**\n * Array of elements that DOMPurify removed during sanitation.\n * Empty if nothing was removed.\n */\n DOMPurify.removed = [];\n\n if (!window || !window.document || window.document.nodeType !== 9) {\n // Not running in a browser, provide a factory function\n // so that you can pass your own Window\n DOMPurify.isSupported = false;\n\n return DOMPurify;\n }\n\n var originalDocument = window.document;\n\n var document = window.document;\n var DocumentFragment = window.DocumentFragment,\n HTMLTemplateElement = window.HTMLTemplateElement,\n Node = window.Node,\n Element = window.Element,\n NodeFilter = window.NodeFilter,\n _window$NamedNodeMap = window.NamedNodeMap,\n NamedNodeMap = _window$NamedNodeMap === undefined ? window.NamedNodeMap || window.MozNamedAttrMap : _window$NamedNodeMap,\n Text = window.Text,\n Comment = window.Comment,\n DOMParser = window.DOMParser,\n trustedTypes = window.trustedTypes;\n\n\n var ElementPrototype = Element.prototype;\n\n var cloneNode = lookupGetter(ElementPrototype, 'cloneNode');\n var getNextSibling = lookupGetter(ElementPrototype, 'nextSibling');\n var getChildNodes = lookupGetter(ElementPrototype, 'childNodes');\n var getParentNode = lookupGetter(ElementPrototype, 'parentNode');\n\n // As per issue #47, the web-components registry is inherited by a\n // new document created via createHTMLDocument. As per the spec\n // (http://w3c.github.io/webcomponents/spec/custom/#creating-and-passing-registries)\n // a new empty registry is used when creating a template contents owner\n // document, so we use that as our parent document to ensure nothing\n // is inherited.\n if (typeof HTMLTemplateElement === 'function') {\n var template = document.createElement('template');\n if (template.content && template.content.ownerDocument) {\n document = template.content.ownerDocument;\n }\n }\n\n var trustedTypesPolicy = _createTrustedTypesPolicy(trustedTypes, originalDocument);\n var emptyHTML = trustedTypesPolicy && RETURN_TRUSTED_TYPE ? trustedTypesPolicy.createHTML('') : '';\n\n var _document = document,\n implementation = _document.implementation,\n createNodeIterator = _document.createNodeIterator,\n getElementsByTagName = _document.getElementsByTagName,\n createDocumentFragment = _document.createDocumentFragment;\n var importNode = originalDocument.importNode;\n\n\n var documentMode = {};\n try {\n documentMode = clone(document).documentMode ? document.documentMode : {};\n } catch (_) {}\n\n var hooks = {};\n\n /**\n * Expose whether this browser supports running the full DOMPurify.\n */\n DOMPurify.isSupported = implementation && typeof implementation.createHTMLDocument !== 'undefined' && documentMode !== 9;\n\n var MUSTACHE_EXPR$$1 = MUSTACHE_EXPR,\n ERB_EXPR$$1 = ERB_EXPR,\n DATA_ATTR$$1 = DATA_ATTR,\n ARIA_ATTR$$1 = ARIA_ATTR,\n IS_SCRIPT_OR_DATA$$1 = IS_SCRIPT_OR_DATA,\n ATTR_WHITESPACE$$1 = ATTR_WHITESPACE;\n var IS_ALLOWED_URI$$1 = IS_ALLOWED_URI;\n\n /**\n * We consider the elements and attributes below to be safe. Ideally\n * don't add any new ones but feel free to remove unwanted ones.\n */\n\n /* allowed element names */\n\n var ALLOWED_TAGS = null;\n var DEFAULT_ALLOWED_TAGS = addToSet({}, [].concat(_toConsumableArray$1(html), _toConsumableArray$1(svg), _toConsumableArray$1(svgFilters), _toConsumableArray$1(mathMl), _toConsumableArray$1(text)));\n\n /* Allowed attribute names */\n var ALLOWED_ATTR = null;\n var DEFAULT_ALLOWED_ATTR = addToSet({}, [].concat(_toConsumableArray$1(html$1), _toConsumableArray$1(svg$1), _toConsumableArray$1(mathMl$1), _toConsumableArray$1(xml)));\n\n /* Explicitly forbidden tags (overrides ALLOWED_TAGS/ADD_TAGS) */\n var FORBID_TAGS = null;\n\n /* Explicitly forbidden attributes (overrides ALLOWED_ATTR/ADD_ATTR) */\n var FORBID_ATTR = null;\n\n /* Decide if ARIA attributes are okay */\n var ALLOW_ARIA_ATTR = true;\n\n /* Decide if custom data attributes are okay */\n var ALLOW_DATA_ATTR = true;\n\n /* Decide if unknown protocols are okay */\n var ALLOW_UNKNOWN_PROTOCOLS = false;\n\n /* Output should be safe for common template engines.\n * This means, DOMPurify removes data attributes, mustaches and ERB\n */\n var SAFE_FOR_TEMPLATES = false;\n\n /* Decide if document with ... should be returned */\n var WHOLE_DOCUMENT = false;\n\n /* Track whether config is already set on this instance of DOMPurify. */\n var SET_CONFIG = false;\n\n /* Decide if all elements (e.g. style, script) must be children of\n * document.body. By default, browsers might move them to document.head */\n var FORCE_BODY = false;\n\n /* Decide if a DOM `HTMLBodyElement` should be returned, instead of a html\n * string (or a TrustedHTML object if Trusted Types are supported).\n * If `WHOLE_DOCUMENT` is enabled a `HTMLHtmlElement` will be returned instead\n */\n var RETURN_DOM = false;\n\n /* Decide if a DOM `DocumentFragment` should be returned, instead of a html\n * string (or a TrustedHTML object if Trusted Types are supported) */\n var RETURN_DOM_FRAGMENT = false;\n\n /* If `RETURN_DOM` or `RETURN_DOM_FRAGMENT` is enabled, decide if the returned DOM\n * `Node` is imported into the current `Document`. If this flag is not enabled the\n * `Node` will belong (its ownerDocument) to a fresh `HTMLDocument`, created by\n * DOMPurify.\n *\n * This defaults to `true` starting DOMPurify 2.2.0. Note that setting it to `false`\n * might cause XSS from attacks hidden in closed shadowroots in case the browser\n * supports Declarative Shadow: DOM https://web.dev/declarative-shadow-dom/\n */\n var RETURN_DOM_IMPORT = true;\n\n /* Try to return a Trusted Type object instead of a string, return a string in\n * case Trusted Types are not supported */\n var RETURN_TRUSTED_TYPE = false;\n\n /* Output should be free from DOM clobbering attacks? */\n var SANITIZE_DOM = true;\n\n /* Keep element content when removing element? */\n var KEEP_CONTENT = true;\n\n /* If a `Node` is passed to sanitize(), then performs sanitization in-place instead\n * of importing it into a new Document and returning a sanitized copy */\n var IN_PLACE = false;\n\n /* Allow usage of profiles like html, svg and mathMl */\n var USE_PROFILES = {};\n\n /* Tags to ignore content of when KEEP_CONTENT is true */\n var FORBID_CONTENTS = addToSet({}, ['annotation-xml', 'audio', 'colgroup', 'desc', 'foreignobject', 'head', 'iframe', 'math', 'mi', 'mn', 'mo', 'ms', 'mtext', 'noembed', 'noframes', 'noscript', 'plaintext', 'script', 'style', 'svg', 'template', 'thead', 'title', 'video', 'xmp']);\n\n /* Tags that are safe for data: URIs */\n var DATA_URI_TAGS = null;\n var DEFAULT_DATA_URI_TAGS = addToSet({}, ['audio', 'video', 'img', 'source', 'image', 'track']);\n\n /* Attributes safe for values like \"javascript:\" */\n var URI_SAFE_ATTRIBUTES = null;\n var DEFAULT_URI_SAFE_ATTRIBUTES = addToSet({}, ['alt', 'class', 'for', 'id', 'label', 'name', 'pattern', 'placeholder', 'summary', 'title', 'value', 'style', 'xmlns']);\n\n /* Keep a reference to config to pass to hooks */\n var CONFIG = null;\n\n /* Ideally, do not touch anything below this line */\n /* ______________________________________________ */\n\n var formElement = document.createElement('form');\n\n /**\n * _parseConfig\n *\n * @param {Object} cfg optional config literal\n */\n // eslint-disable-next-line complexity\n var _parseConfig = function _parseConfig(cfg) {\n if (CONFIG && CONFIG === cfg) {\n return;\n }\n\n /* Shield configuration object from tampering */\n if (!cfg || (typeof cfg === 'undefined' ? 'undefined' : _typeof(cfg)) !== 'object') {\n cfg = {};\n }\n\n /* Shield configuration object from prototype pollution */\n cfg = clone(cfg);\n\n /* Set configuration parameters */\n ALLOWED_TAGS = 'ALLOWED_TAGS' in cfg ? addToSet({}, cfg.ALLOWED_TAGS) : DEFAULT_ALLOWED_TAGS;\n ALLOWED_ATTR = 'ALLOWED_ATTR' in cfg ? addToSet({}, cfg.ALLOWED_ATTR) : DEFAULT_ALLOWED_ATTR;\n URI_SAFE_ATTRIBUTES = 'ADD_URI_SAFE_ATTR' in cfg ? addToSet(clone(DEFAULT_URI_SAFE_ATTRIBUTES), cfg.ADD_URI_SAFE_ATTR) : DEFAULT_URI_SAFE_ATTRIBUTES;\n DATA_URI_TAGS = 'ADD_DATA_URI_TAGS' in cfg ? addToSet(clone(DEFAULT_DATA_URI_TAGS), cfg.ADD_DATA_URI_TAGS) : DEFAULT_DATA_URI_TAGS;\n FORBID_TAGS = 'FORBID_TAGS' in cfg ? addToSet({}, cfg.FORBID_TAGS) : {};\n FORBID_ATTR = 'FORBID_ATTR' in cfg ? addToSet({}, cfg.FORBID_ATTR) : {};\n USE_PROFILES = 'USE_PROFILES' in cfg ? cfg.USE_PROFILES : false;\n ALLOW_ARIA_ATTR = cfg.ALLOW_ARIA_ATTR !== false; // Default true\n ALLOW_DATA_ATTR = cfg.ALLOW_DATA_ATTR !== false; // Default true\n ALLOW_UNKNOWN_PROTOCOLS = cfg.ALLOW_UNKNOWN_PROTOCOLS || false; // Default false\n SAFE_FOR_TEMPLATES = cfg.SAFE_FOR_TEMPLATES || false; // Default false\n WHOLE_DOCUMENT = cfg.WHOLE_DOCUMENT || false; // Default false\n RETURN_DOM = cfg.RETURN_DOM || false; // Default false\n RETURN_DOM_FRAGMENT = cfg.RETURN_DOM_FRAGMENT || false; // Default false\n RETURN_DOM_IMPORT = cfg.RETURN_DOM_IMPORT !== false; // Default true\n RETURN_TRUSTED_TYPE = cfg.RETURN_TRUSTED_TYPE || false; // Default false\n FORCE_BODY = cfg.FORCE_BODY || false; // Default false\n SANITIZE_DOM = cfg.SANITIZE_DOM !== false; // Default true\n KEEP_CONTENT = cfg.KEEP_CONTENT !== false; // Default true\n IN_PLACE = cfg.IN_PLACE || false; // Default false\n IS_ALLOWED_URI$$1 = cfg.ALLOWED_URI_REGEXP || IS_ALLOWED_URI$$1;\n if (SAFE_FOR_TEMPLATES) {\n ALLOW_DATA_ATTR = false;\n }\n\n if (RETURN_DOM_FRAGMENT) {\n RETURN_DOM = true;\n }\n\n /* Parse profile info */\n if (USE_PROFILES) {\n ALLOWED_TAGS = addToSet({}, [].concat(_toConsumableArray$1(text)));\n ALLOWED_ATTR = [];\n if (USE_PROFILES.html === true) {\n addToSet(ALLOWED_TAGS, html);\n addToSet(ALLOWED_ATTR, html$1);\n }\n\n if (USE_PROFILES.svg === true) {\n addToSet(ALLOWED_TAGS, svg);\n addToSet(ALLOWED_ATTR, svg$1);\n addToSet(ALLOWED_ATTR, xml);\n }\n\n if (USE_PROFILES.svgFilters === true) {\n addToSet(ALLOWED_TAGS, svgFilters);\n addToSet(ALLOWED_ATTR, svg$1);\n addToSet(ALLOWED_ATTR, xml);\n }\n\n if (USE_PROFILES.mathMl === true) {\n addToSet(ALLOWED_TAGS, mathMl);\n addToSet(ALLOWED_ATTR, mathMl$1);\n addToSet(ALLOWED_ATTR, xml);\n }\n }\n\n /* Merge configuration parameters */\n if (cfg.ADD_TAGS) {\n if (ALLOWED_TAGS === DEFAULT_ALLOWED_TAGS) {\n ALLOWED_TAGS = clone(ALLOWED_TAGS);\n }\n\n addToSet(ALLOWED_TAGS, cfg.ADD_TAGS);\n }\n\n if (cfg.ADD_ATTR) {\n if (ALLOWED_ATTR === DEFAULT_ALLOWED_ATTR) {\n ALLOWED_ATTR = clone(ALLOWED_ATTR);\n }\n\n addToSet(ALLOWED_ATTR, cfg.ADD_ATTR);\n }\n\n if (cfg.ADD_URI_SAFE_ATTR) {\n addToSet(URI_SAFE_ATTRIBUTES, cfg.ADD_URI_SAFE_ATTR);\n }\n\n /* Add #text in case KEEP_CONTENT is set to true */\n if (KEEP_CONTENT) {\n ALLOWED_TAGS['#text'] = true;\n }\n\n /* Add html, head and body to ALLOWED_TAGS in case WHOLE_DOCUMENT is true */\n if (WHOLE_DOCUMENT) {\n addToSet(ALLOWED_TAGS, ['html', 'head', 'body']);\n }\n\n /* Add tbody to ALLOWED_TAGS in case tables are permitted, see #286, #365 */\n if (ALLOWED_TAGS.table) {\n addToSet(ALLOWED_TAGS, ['tbody']);\n delete FORBID_TAGS.tbody;\n }\n\n // Prevent further manipulation of configuration.\n // Not available in IE8, Safari 5, etc.\n if (freeze) {\n freeze(cfg);\n }\n\n CONFIG = cfg;\n };\n\n var MATHML_TEXT_INTEGRATION_POINTS = addToSet({}, ['mi', 'mo', 'mn', 'ms', 'mtext']);\n\n var HTML_INTEGRATION_POINTS = addToSet({}, ['foreignobject', 'desc', 'title', 'annotation-xml']);\n\n /* Keep track of all possible SVG and MathML tags\n * so that we can perform the namespace checks\n * correctly. */\n var ALL_SVG_TAGS = addToSet({}, svg);\n addToSet(ALL_SVG_TAGS, svgFilters);\n addToSet(ALL_SVG_TAGS, svgDisallowed);\n\n var ALL_MATHML_TAGS = addToSet({}, mathMl);\n addToSet(ALL_MATHML_TAGS, mathMlDisallowed);\n\n var MATHML_NAMESPACE = 'http://www.w3.org/1998/Math/MathML';\n var SVG_NAMESPACE = 'http://www.w3.org/2000/svg';\n var HTML_NAMESPACE = 'http://www.w3.org/1999/xhtml';\n\n /**\n *\n *\n * @param {Element} element a DOM element whose namespace is being checked\n * @returns {boolean} Return false if the element has a\n * namespace that a spec-compliant parser would never\n * return. Return true otherwise.\n */\n var _checkValidNamespace = function _checkValidNamespace(element) {\n var parent = getParentNode(element);\n\n // In JSDOM, if we're inside shadow DOM, then parentNode\n // can be null. We just simulate parent in this case.\n if (!parent || !parent.tagName) {\n parent = {\n namespaceURI: HTML_NAMESPACE,\n tagName: 'template'\n };\n }\n\n var tagName = stringToLowerCase(element.tagName);\n var parentTagName = stringToLowerCase(parent.tagName);\n\n if (element.namespaceURI === SVG_NAMESPACE) {\n // The only way to switch from HTML namespace to SVG\n // is via . If it happens via any other tag, then\n // it should be killed.\n if (parent.namespaceURI === HTML_NAMESPACE) {\n return tagName === 'svg';\n }\n\n // The only way to switch from MathML to SVG is via\n // svg if parent is either or MathML\n // text integration points.\n if (parent.namespaceURI === MATHML_NAMESPACE) {\n return tagName === 'svg' && (parentTagName === 'annotation-xml' || MATHML_TEXT_INTEGRATION_POINTS[parentTagName]);\n }\n\n // We only allow elements that are defined in SVG\n // spec. All others are disallowed in SVG namespace.\n return Boolean(ALL_SVG_TAGS[tagName]);\n }\n\n if (element.namespaceURI === MATHML_NAMESPACE) {\n // The only way to switch from HTML namespace to MathML\n // is via . If it happens via any other tag, then\n // it should be killed.\n if (parent.namespaceURI === HTML_NAMESPACE) {\n return tagName === 'math';\n }\n\n // The only way to switch from SVG to MathML is via\n // and HTML integration points\n if (parent.namespaceURI === SVG_NAMESPACE) {\n return tagName === 'math' && HTML_INTEGRATION_POINTS[parentTagName];\n }\n\n // We only allow elements that are defined in MathML\n // spec. All others are disallowed in MathML namespace.\n return Boolean(ALL_MATHML_TAGS[tagName]);\n }\n\n if (element.namespaceURI === HTML_NAMESPACE) {\n // The only way to switch from SVG to HTML is via\n // HTML integration points, and from MathML to HTML\n // is via MathML text integration points\n if (parent.namespaceURI === SVG_NAMESPACE && !HTML_INTEGRATION_POINTS[parentTagName]) {\n return false;\n }\n\n if (parent.namespaceURI === MATHML_NAMESPACE && !MATHML_TEXT_INTEGRATION_POINTS[parentTagName]) {\n return false;\n }\n\n // Certain elements are allowed in both SVG and HTML\n // namespace. We need to specify them explicitly\n // so that they don't get erronously deleted from\n // HTML namespace.\n var commonSvgAndHTMLElements = addToSet({}, ['title', 'style', 'font', 'a', 'script']);\n\n // We disallow tags that are specific for MathML\n // or SVG and should never appear in HTML namespace\n return !ALL_MATHML_TAGS[tagName] && (commonSvgAndHTMLElements[tagName] || !ALL_SVG_TAGS[tagName]);\n }\n\n // The code should never reach this place (this means\n // that the element somehow got namespace that is not\n // HTML, SVG or MathML). Return false just in case.\n return false;\n };\n\n /**\n * _forceRemove\n *\n * @param {Node} node a DOM node\n */\n var _forceRemove = function _forceRemove(node) {\n arrayPush(DOMPurify.removed, { element: node });\n try {\n node.parentNode.removeChild(node);\n } catch (_) {\n try {\n node.outerHTML = emptyHTML;\n } catch (_) {\n node.remove();\n }\n }\n };\n\n /**\n * _removeAttribute\n *\n * @param {String} name an Attribute name\n * @param {Node} node a DOM node\n */\n var _removeAttribute = function _removeAttribute(name, node) {\n try {\n arrayPush(DOMPurify.removed, {\n attribute: node.getAttributeNode(name),\n from: node\n });\n } catch (_) {\n arrayPush(DOMPurify.removed, {\n attribute: null,\n from: node\n });\n }\n\n node.removeAttribute(name);\n };\n\n /**\n * _initDocument\n *\n * @param {String} dirty a string of dirty markup\n * @return {Document} a DOM, filled with the dirty markup\n */\n var _initDocument = function _initDocument(dirty) {\n /* Create a HTML document */\n var doc = void 0;\n var leadingWhitespace = void 0;\n\n if (FORCE_BODY) {\n dirty = '' + dirty;\n } else {\n /* If FORCE_BODY isn't used, leading whitespace needs to be preserved manually */\n var matches = stringMatch(dirty, /^[\\r\\n\\t ]+/);\n leadingWhitespace = matches && matches[0];\n }\n\n var dirtyPayload = trustedTypesPolicy ? trustedTypesPolicy.createHTML(dirty) : dirty;\n /* Use the DOMParser API by default, fallback later if needs be */\n try {\n doc = new DOMParser().parseFromString(dirtyPayload, 'text/html');\n } catch (_) {}\n\n /* Use createHTMLDocument in case DOMParser is not available */\n if (!doc || !doc.documentElement) {\n doc = implementation.createHTMLDocument('');\n var _doc = doc,\n body = _doc.body;\n\n body.parentNode.removeChild(body.parentNode.firstElementChild);\n body.outerHTML = dirtyPayload;\n }\n\n if (dirty && leadingWhitespace) {\n doc.body.insertBefore(document.createTextNode(leadingWhitespace), doc.body.childNodes[0] || null);\n }\n\n /* Work on whole document or just its body */\n return getElementsByTagName.call(doc, WHOLE_DOCUMENT ? 'html' : 'body')[0];\n };\n\n /**\n * _createIterator\n *\n * @param {Document} root document/fragment to create iterator for\n * @return {Iterator} iterator instance\n */\n var _createIterator = function _createIterator(root) {\n return createNodeIterator.call(root.ownerDocument || root, root, NodeFilter.SHOW_ELEMENT | NodeFilter.SHOW_COMMENT | NodeFilter.SHOW_TEXT, function () {\n return NodeFilter.FILTER_ACCEPT;\n }, false);\n };\n\n /**\n * _isClobbered\n *\n * @param {Node} elm element to check for clobbering attacks\n * @return {Boolean} true if clobbered, false if safe\n */\n var _isClobbered = function _isClobbered(elm) {\n if (elm instanceof Text || elm instanceof Comment) {\n return false;\n }\n\n if (typeof elm.nodeName !== 'string' || typeof elm.textContent !== 'string' || typeof elm.removeChild !== 'function' || !(elm.attributes instanceof NamedNodeMap) || typeof elm.removeAttribute !== 'function' || typeof elm.setAttribute !== 'function' || typeof elm.namespaceURI !== 'string' || typeof elm.insertBefore !== 'function') {\n return true;\n }\n\n return false;\n };\n\n /**\n * _isNode\n *\n * @param {Node} obj object to check whether it's a DOM node\n * @return {Boolean} true is object is a DOM node\n */\n var _isNode = function _isNode(object) {\n return (typeof Node === 'undefined' ? 'undefined' : _typeof(Node)) === 'object' ? object instanceof Node : object && (typeof object === 'undefined' ? 'undefined' : _typeof(object)) === 'object' && typeof object.nodeType === 'number' && typeof object.nodeName === 'string';\n };\n\n /**\n * _executeHook\n * Execute user configurable hooks\n *\n * @param {String} entryPoint Name of the hook's entry point\n * @param {Node} currentNode node to work on with the hook\n * @param {Object} data additional hook parameters\n */\n var _executeHook = function _executeHook(entryPoint, currentNode, data) {\n if (!hooks[entryPoint]) {\n return;\n }\n\n arrayForEach(hooks[entryPoint], function (hook) {\n hook.call(DOMPurify, currentNode, data, CONFIG);\n });\n };\n\n /**\n * _sanitizeElements\n *\n * @protect nodeName\n * @protect textContent\n * @protect removeChild\n *\n * @param {Node} currentNode to check for permission to exist\n * @return {Boolean} true if node was killed, false if left alive\n */\n var _sanitizeElements = function _sanitizeElements(currentNode) {\n var content = void 0;\n\n /* Execute a hook if present */\n _executeHook('beforeSanitizeElements', currentNode, null);\n\n /* Check if element is clobbered or can clobber */\n if (_isClobbered(currentNode)) {\n _forceRemove(currentNode);\n return true;\n }\n\n /* Check if tagname contains Unicode */\n if (stringMatch(currentNode.nodeName, /[\\u0080-\\uFFFF]/)) {\n _forceRemove(currentNode);\n return true;\n }\n\n /* Now let's check the element's type and name */\n var tagName = stringToLowerCase(currentNode.nodeName);\n\n /* Execute a hook if present */\n _executeHook('uponSanitizeElement', currentNode, {\n tagName: tagName,\n allowedTags: ALLOWED_TAGS\n });\n\n /* Detect mXSS attempts abusing namespace confusion */\n if (!_isNode(currentNode.firstElementChild) && (!_isNode(currentNode.content) || !_isNode(currentNode.content.firstElementChild)) && regExpTest(/<[/\\w]/g, currentNode.innerHTML) && regExpTest(/<[/\\w]/g, currentNode.textContent)) {\n _forceRemove(currentNode);\n return true;\n }\n\n /* Remove element if anything forbids its presence */\n if (!ALLOWED_TAGS[tagName] || FORBID_TAGS[tagName]) {\n /* Keep content except for bad-listed elements */\n if (KEEP_CONTENT && !FORBID_CONTENTS[tagName]) {\n var parentNode = getParentNode(currentNode);\n var childNodes = getChildNodes(currentNode);\n var childCount = childNodes.length;\n for (var i = childCount - 1; i >= 0; --i) {\n parentNode.insertBefore(cloneNode(childNodes[i], true), getNextSibling(currentNode));\n }\n }\n\n _forceRemove(currentNode);\n return true;\n }\n\n /* Check whether element has a valid namespace */\n if (currentNode instanceof Element && !_checkValidNamespace(currentNode)) {\n _forceRemove(currentNode);\n return true;\n }\n\n if ((tagName === 'noscript' || tagName === 'noembed') && regExpTest(/<\\/no(script|embed)/i, currentNode.innerHTML)) {\n _forceRemove(currentNode);\n return true;\n }\n\n /* Sanitize element content to be template-safe */\n if (SAFE_FOR_TEMPLATES && currentNode.nodeType === 3) {\n /* Get the element's text content */\n content = currentNode.textContent;\n content = stringReplace(content, MUSTACHE_EXPR$$1, ' ');\n content = stringReplace(content, ERB_EXPR$$1, ' ');\n if (currentNode.textContent !== content) {\n arrayPush(DOMPurify.removed, { element: currentNode.cloneNode() });\n currentNode.textContent = content;\n }\n }\n\n /* Execute a hook if present */\n _executeHook('afterSanitizeElements', currentNode, null);\n\n return false;\n };\n\n /**\n * _isValidAttribute\n *\n * @param {string} lcTag Lowercase tag name of containing element.\n * @param {string} lcName Lowercase attribute name.\n * @param {string} value Attribute value.\n * @return {Boolean} Returns true if `value` is valid, otherwise false.\n */\n // eslint-disable-next-line complexity\n var _isValidAttribute = function _isValidAttribute(lcTag, lcName, value) {\n /* Make sure attribute cannot clobber */\n if (SANITIZE_DOM && (lcName === 'id' || lcName === 'name') && (value in document || value in formElement)) {\n return false;\n }\n\n /* Allow valid data-* attributes: At least one character after \"-\"\n (https://html.spec.whatwg.org/multipage/dom.html#embedding-custom-non-visible-data-with-the-data-*-attributes)\n XML-compatible (https://html.spec.whatwg.org/multipage/infrastructure.html#xml-compatible and http://www.w3.org/TR/xml/#d0e804)\n We don't need to check the value; it's always URI safe. */\n if (ALLOW_DATA_ATTR && regExpTest(DATA_ATTR$$1, lcName)) ; else if (ALLOW_ARIA_ATTR && regExpTest(ARIA_ATTR$$1, lcName)) ; else if (!ALLOWED_ATTR[lcName] || FORBID_ATTR[lcName]) {\n return false;\n\n /* Check value is safe. First, is attr inert? If so, is safe */\n } else if (URI_SAFE_ATTRIBUTES[lcName]) ; else if (regExpTest(IS_ALLOWED_URI$$1, stringReplace(value, ATTR_WHITESPACE$$1, ''))) ; else if ((lcName === 'src' || lcName === 'xlink:href' || lcName === 'href') && lcTag !== 'script' && stringIndexOf(value, 'data:') === 0 && DATA_URI_TAGS[lcTag]) ; else if (ALLOW_UNKNOWN_PROTOCOLS && !regExpTest(IS_SCRIPT_OR_DATA$$1, stringReplace(value, ATTR_WHITESPACE$$1, ''))) ; else if (!value) ; else {\n return false;\n }\n\n return true;\n };\n\n /**\n * _sanitizeAttributes\n *\n * @protect attributes\n * @protect nodeName\n * @protect removeAttribute\n * @protect setAttribute\n *\n * @param {Node} currentNode to sanitize\n */\n var _sanitizeAttributes = function _sanitizeAttributes(currentNode) {\n var attr = void 0;\n var value = void 0;\n var lcName = void 0;\n var l = void 0;\n /* Execute a hook if present */\n _executeHook('beforeSanitizeAttributes', currentNode, null);\n\n var attributes = currentNode.attributes;\n\n /* Check if we have attributes; if not we might have a text node */\n\n if (!attributes) {\n return;\n }\n\n var hookEvent = {\n attrName: '',\n attrValue: '',\n keepAttr: true,\n allowedAttributes: ALLOWED_ATTR\n };\n l = attributes.length;\n\n /* Go backwards over all attributes; safely remove bad ones */\n while (l--) {\n attr = attributes[l];\n var _attr = attr,\n name = _attr.name,\n namespaceURI = _attr.namespaceURI;\n\n value = stringTrim(attr.value);\n lcName = stringToLowerCase(name);\n\n /* Execute a hook if present */\n hookEvent.attrName = lcName;\n hookEvent.attrValue = value;\n hookEvent.keepAttr = true;\n hookEvent.forceKeepAttr = undefined; // Allows developers to see this is a property they can set\n _executeHook('uponSanitizeAttribute', currentNode, hookEvent);\n value = hookEvent.attrValue;\n /* Did the hooks approve of the attribute? */\n if (hookEvent.forceKeepAttr) {\n continue;\n }\n\n /* Remove attribute */\n _removeAttribute(name, currentNode);\n\n /* Did the hooks approve of the attribute? */\n if (!hookEvent.keepAttr) {\n continue;\n }\n\n /* Work around a security issue in jQuery 3.0 */\n if (regExpTest(/\\/>/i, value)) {\n _removeAttribute(name, currentNode);\n continue;\n }\n\n /* Sanitize attribute content to be template-safe */\n if (SAFE_FOR_TEMPLATES) {\n value = stringReplace(value, MUSTACHE_EXPR$$1, ' ');\n value = stringReplace(value, ERB_EXPR$$1, ' ');\n }\n\n /* Is `value` valid for this attribute? */\n var lcTag = currentNode.nodeName.toLowerCase();\n if (!_isValidAttribute(lcTag, lcName, value)) {\n continue;\n }\n\n /* Handle invalid data-* attribute set by try-catching it */\n try {\n if (namespaceURI) {\n currentNode.setAttributeNS(namespaceURI, name, value);\n } else {\n /* Fallback to setAttribute() for browser-unrecognized namespaces e.g. \"x-schema\". */\n currentNode.setAttribute(name, value);\n }\n\n arrayPop(DOMPurify.removed);\n } catch (_) {}\n }\n\n /* Execute a hook if present */\n _executeHook('afterSanitizeAttributes', currentNode, null);\n };\n\n /**\n * _sanitizeShadowDOM\n *\n * @param {DocumentFragment} fragment to iterate over recursively\n */\n var _sanitizeShadowDOM = function _sanitizeShadowDOM(fragment) {\n var shadowNode = void 0;\n var shadowIterator = _createIterator(fragment);\n\n /* Execute a hook if present */\n _executeHook('beforeSanitizeShadowDOM', fragment, null);\n\n while (shadowNode = shadowIterator.nextNode()) {\n /* Execute a hook if present */\n _executeHook('uponSanitizeShadowNode', shadowNode, null);\n\n /* Sanitize tags and elements */\n if (_sanitizeElements(shadowNode)) {\n continue;\n }\n\n /* Deep shadow DOM detected */\n if (shadowNode.content instanceof DocumentFragment) {\n _sanitizeShadowDOM(shadowNode.content);\n }\n\n /* Check attributes, sanitize if necessary */\n _sanitizeAttributes(shadowNode);\n }\n\n /* Execute a hook if present */\n _executeHook('afterSanitizeShadowDOM', fragment, null);\n };\n\n /**\n * Sanitize\n * Public method providing core sanitation functionality\n *\n * @param {String|Node} dirty string or DOM node\n * @param {Object} configuration object\n */\n // eslint-disable-next-line complexity\n DOMPurify.sanitize = function (dirty, cfg) {\n var body = void 0;\n var importedNode = void 0;\n var currentNode = void 0;\n var oldNode = void 0;\n var returnNode = void 0;\n /* Make sure we have a string to sanitize.\n DO NOT return early, as this will return the wrong type if\n the user has requested a DOM object rather than a string */\n if (!dirty) {\n dirty = '';\n }\n\n /* Stringify, in case dirty is an object */\n if (typeof dirty !== 'string' && !_isNode(dirty)) {\n // eslint-disable-next-line no-negated-condition\n if (typeof dirty.toString !== 'function') {\n throw typeErrorCreate('toString is not a function');\n } else {\n dirty = dirty.toString();\n if (typeof dirty !== 'string') {\n throw typeErrorCreate('dirty is not a string, aborting');\n }\n }\n }\n\n /* Check we can run. Otherwise fall back or ignore */\n if (!DOMPurify.isSupported) {\n if (_typeof(window.toStaticHTML) === 'object' || typeof window.toStaticHTML === 'function') {\n if (typeof dirty === 'string') {\n return window.toStaticHTML(dirty);\n }\n\n if (_isNode(dirty)) {\n return window.toStaticHTML(dirty.outerHTML);\n }\n }\n\n return dirty;\n }\n\n /* Assign config vars */\n if (!SET_CONFIG) {\n _parseConfig(cfg);\n }\n\n /* Clean up removed elements */\n DOMPurify.removed = [];\n\n /* Check if dirty is correctly typed for IN_PLACE */\n if (typeof dirty === 'string') {\n IN_PLACE = false;\n }\n\n if (IN_PLACE) ; else if (dirty instanceof Node) {\n /* If dirty is a DOM element, append to an empty document to avoid\n elements being stripped by the parser */\n body = _initDocument('');\n importedNode = body.ownerDocument.importNode(dirty, true);\n if (importedNode.nodeType === 1 && importedNode.nodeName === 'BODY') {\n /* Node is already a body, use as is */\n body = importedNode;\n } else if (importedNode.nodeName === 'HTML') {\n body = importedNode;\n } else {\n // eslint-disable-next-line unicorn/prefer-node-append\n body.appendChild(importedNode);\n }\n } else {\n /* Exit directly if we have nothing to do */\n if (!RETURN_DOM && !SAFE_FOR_TEMPLATES && !WHOLE_DOCUMENT &&\n // eslint-disable-next-line unicorn/prefer-includes\n dirty.indexOf('<') === -1) {\n return trustedTypesPolicy && RETURN_TRUSTED_TYPE ? trustedTypesPolicy.createHTML(dirty) : dirty;\n }\n\n /* Initialize the document to work on */\n body = _initDocument(dirty);\n\n /* Check we have a DOM node from the data */\n if (!body) {\n return RETURN_DOM ? null : emptyHTML;\n }\n }\n\n /* Remove first element node (ours) if FORCE_BODY is set */\n if (body && FORCE_BODY) {\n _forceRemove(body.firstChild);\n }\n\n /* Get node iterator */\n var nodeIterator = _createIterator(IN_PLACE ? dirty : body);\n\n /* Now start iterating over the created document */\n while (currentNode = nodeIterator.nextNode()) {\n /* Fix IE's strange behavior with manipulated textNodes #89 */\n if (currentNode.nodeType === 3 && currentNode === oldNode) {\n continue;\n }\n\n /* Sanitize tags and elements */\n if (_sanitizeElements(currentNode)) {\n continue;\n }\n\n /* Shadow DOM detected, sanitize it */\n if (currentNode.content instanceof DocumentFragment) {\n _sanitizeShadowDOM(currentNode.content);\n }\n\n /* Check attributes, sanitize if necessary */\n _sanitizeAttributes(currentNode);\n\n oldNode = currentNode;\n }\n\n oldNode = null;\n\n /* If we sanitized `dirty` in-place, return it. */\n if (IN_PLACE) {\n return dirty;\n }\n\n /* Return sanitized string or DOM */\n if (RETURN_DOM) {\n if (RETURN_DOM_FRAGMENT) {\n returnNode = createDocumentFragment.call(body.ownerDocument);\n\n while (body.firstChild) {\n // eslint-disable-next-line unicorn/prefer-node-append\n returnNode.appendChild(body.firstChild);\n }\n } else {\n returnNode = body;\n }\n\n if (RETURN_DOM_IMPORT) {\n /*\n AdoptNode() is not used because internal state is not reset\n (e.g. the past names map of a HTMLFormElement), this is safe\n in theory but we would rather not risk another attack vector.\n The state that is cloned by importNode() is explicitly defined\n by the specs.\n */\n returnNode = importNode.call(originalDocument, returnNode, true);\n }\n\n return returnNode;\n }\n\n var serializedHTML = WHOLE_DOCUMENT ? body.outerHTML : body.innerHTML;\n\n /* Sanitize final string template-safe */\n if (SAFE_FOR_TEMPLATES) {\n serializedHTML = stringReplace(serializedHTML, MUSTACHE_EXPR$$1, ' ');\n serializedHTML = stringReplace(serializedHTML, ERB_EXPR$$1, ' ');\n }\n\n return trustedTypesPolicy && RETURN_TRUSTED_TYPE ? trustedTypesPolicy.createHTML(serializedHTML) : serializedHTML;\n };\n\n /**\n * Public method to set the configuration once\n * setConfig\n *\n * @param {Object} cfg configuration object\n */\n DOMPurify.setConfig = function (cfg) {\n _parseConfig(cfg);\n SET_CONFIG = true;\n };\n\n /**\n * Public method to remove the configuration\n * clearConfig\n *\n */\n DOMPurify.clearConfig = function () {\n CONFIG = null;\n SET_CONFIG = false;\n };\n\n /**\n * Public method to check if an attribute value is valid.\n * Uses last set config, if any. Otherwise, uses config defaults.\n * isValidAttribute\n *\n * @param {string} tag Tag name of containing element.\n * @param {string} attr Attribute name.\n * @param {string} value Attribute value.\n * @return {Boolean} Returns true if `value` is valid. Otherwise, returns false.\n */\n DOMPurify.isValidAttribute = function (tag, attr, value) {\n /* Initialize shared config vars if necessary. */\n if (!CONFIG) {\n _parseConfig({});\n }\n\n var lcTag = stringToLowerCase(tag);\n var lcName = stringToLowerCase(attr);\n return _isValidAttribute(lcTag, lcName, value);\n };\n\n /**\n * AddHook\n * Public method to add DOMPurify hooks\n *\n * @param {String} entryPoint entry point for the hook to add\n * @param {Function} hookFunction function to execute\n */\n DOMPurify.addHook = function (entryPoint, hookFunction) {\n if (typeof hookFunction !== 'function') {\n return;\n }\n\n hooks[entryPoint] = hooks[entryPoint] || [];\n arrayPush(hooks[entryPoint], hookFunction);\n };\n\n /**\n * RemoveHook\n * Public method to remove a DOMPurify hook at a given entryPoint\n * (pops it from the stack of hooks if more are present)\n *\n * @param {String} entryPoint entry point for the hook to remove\n */\n DOMPurify.removeHook = function (entryPoint) {\n if (hooks[entryPoint]) {\n arrayPop(hooks[entryPoint]);\n }\n };\n\n /**\n * RemoveHooks\n * Public method to remove all DOMPurify hooks at a given entryPoint\n *\n * @param {String} entryPoint entry point for the hooks to remove\n */\n DOMPurify.removeHooks = function (entryPoint) {\n if (hooks[entryPoint]) {\n hooks[entryPoint] = [];\n }\n };\n\n /**\n * RemoveAllHooks\n * Public method to remove all DOMPurify hooks\n *\n */\n DOMPurify.removeAllHooks = function () {\n hooks = {};\n };\n\n return DOMPurify;\n }\n\n var purify = createDOMPurify();\n\n return purify;\n\n}));\n//# sourceMappingURL=purify.js.map\n","/*!\n * jQuery JavaScript Library v3.6.0\n * https://jquery.com/\n *\n * Includes Sizzle.js\n * https://sizzlejs.com/\n *\n * Copyright OpenJS Foundation and other contributors\n * Released under the MIT license\n * https://jquery.org/license\n *\n * Date: 2021-03-02T17:08Z\n */\n( function( global, factory ) {\n\n\t\"use strict\";\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\n\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t// is present, execute the factory and get jQuery.\n\t\t// For environments that do not have a `window` with a `document`\n\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t// This accentuates the need for the creation of a real `window`.\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info.\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n} )( typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1\n// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode\n// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common\n// enough that all such attempts are guarded in a try block.\n\"use strict\";\n\nvar arr = [];\n\nvar getProto = Object.getPrototypeOf;\n\nvar slice = arr.slice;\n\nvar flat = arr.flat ? function( array ) {\n\treturn arr.flat.call( array );\n} : function( array ) {\n\treturn arr.concat.apply( [], array );\n};\n\n\nvar push = arr.push;\n\nvar indexOf = arr.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar fnToString = hasOwn.toString;\n\nvar ObjectFunctionString = fnToString.call( Object );\n\nvar support = {};\n\nvar isFunction = function isFunction( obj ) {\n\n\t\t// Support: Chrome <=57, Firefox <=52\n\t\t// In some browsers, typeof returns \"function\" for HTML elements\n\t\t// (i.e., `typeof document.createElement( \"object\" ) === \"function\"`).\n\t\t// We don't want to classify *any* DOM node as a function.\n\t\t// Support: QtWeb <=3.8.5, WebKit <=534.34, wkhtmltopdf tool <=0.12.5\n\t\t// Plus for old WebKit, typeof returns \"function\" for HTML collections\n\t\t// (e.g., `typeof document.getElementsByTagName(\"div\") === \"function\"`). (gh-4756)\n\t\treturn typeof obj === \"function\" && typeof obj.nodeType !== \"number\" &&\n\t\t\ttypeof obj.item !== \"function\";\n\t};\n\n\nvar isWindow = function isWindow( obj ) {\n\t\treturn obj != null && obj === obj.window;\n\t};\n\n\nvar document = window.document;\n\n\n\n\tvar preservedScriptAttributes = {\n\t\ttype: true,\n\t\tsrc: true,\n\t\tnonce: true,\n\t\tnoModule: true\n\t};\n\n\tfunction DOMEval( code, node, doc ) {\n\t\tdoc = doc || document;\n\n\t\tvar i, val,\n\t\t\tscript = doc.createElement( \"script\" );\n\n\t\tscript.text = code;\n\t\tif ( node ) {\n\t\t\tfor ( i in preservedScriptAttributes ) {\n\n\t\t\t\t// Support: Firefox 64+, Edge 18+\n\t\t\t\t// Some browsers don't support the \"nonce\" property on scripts.\n\t\t\t\t// On the other hand, just using `getAttribute` is not enough as\n\t\t\t\t// the `nonce` attribute is reset to an empty string whenever it\n\t\t\t\t// becomes browsing-context connected.\n\t\t\t\t// See https://github.com/whatwg/html/issues/2369\n\t\t\t\t// See https://html.spec.whatwg.org/#nonce-attributes\n\t\t\t\t// The `node.getAttribute` check was added for the sake of\n\t\t\t\t// `jQuery.globalEval` so that it can fake a nonce-containing node\n\t\t\t\t// via an object.\n\t\t\t\tval = node[ i ] || node.getAttribute && node.getAttribute( i );\n\t\t\t\tif ( val ) {\n\t\t\t\t\tscript.setAttribute( i, val );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tdoc.head.appendChild( script ).parentNode.removeChild( script );\n\t}\n\n\nfunction toType( obj ) {\n\tif ( obj == null ) {\n\t\treturn obj + \"\";\n\t}\n\n\t// Support: Android <=2.3 only (functionish RegExp)\n\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\tclass2type[ toString.call( obj ) ] || \"object\" :\n\t\ttypeof obj;\n}\n/* global Symbol */\n// Defining this global in .eslintrc.json would create a danger of using the global\n// unguarded in another place, it seems safer to define global only for this module\n\n\n\nvar\n\tversion = \"3.6.0\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t};\n\njQuery.fn = jQuery.prototype = {\n\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\n\t\t// Return all the elements in a clean array\n\t\tif ( num == null ) {\n\t\t\treturn slice.call( this );\n\t\t}\n\n\t\t// Return just the one element from the set\n\t\treturn num < 0 ? this[ num + this.length ] : this[ num ];\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\teach: function( callback ) {\n\t\treturn jQuery.each( this, callback );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map( this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t} ) );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teven: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn ( i + 1 ) % 2;\n\t\t} ) );\n\t},\n\n\todd: function() {\n\t\treturn this.pushStack( jQuery.grep( this, function( _elem, i ) {\n\t\t\treturn i % 2;\n\t\t} ) );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor();\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: arr.sort,\n\tsplice: arr.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[ 0 ] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// Skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !isFunction( target ) ) {\n\t\ttarget = {};\n\t}\n\n\t// Extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\n\t\t// Only deal with non-null/undefined values\n\t\tif ( ( options = arguments[ i ] ) != null ) {\n\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent Object.prototype pollution\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( name === \"__proto__\" || target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject( copy ) ||\n\t\t\t\t\t( copyIsArray = Array.isArray( copy ) ) ) ) {\n\t\t\t\t\tsrc = target[ name ];\n\n\t\t\t\t\t// Ensure proper type for the source value\n\t\t\t\t\tif ( copyIsArray && !Array.isArray( src ) ) {\n\t\t\t\t\t\tclone = [];\n\t\t\t\t\t} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {\n\t\t\t\t\t\tclone = {};\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src;\n\t\t\t\t\t}\n\t\t\t\t\tcopyIsArray = false;\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend( {\n\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\tisPlainObject: function( obj ) {\n\t\tvar proto, Ctor;\n\n\t\t// Detect obvious negatives\n\t\t// Use toString instead of jQuery.type to catch host objects\n\t\tif ( !obj || toString.call( obj ) !== \"[object Object]\" ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tproto = getProto( obj );\n\n\t\t// Objects with no prototype (e.g., `Object.create( null )`) are plain\n\t\tif ( !proto ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Objects with prototype are plain iff they were constructed by a global Object function\n\t\tCtor = hasOwn.call( proto, \"constructor\" ) && proto.constructor;\n\t\treturn typeof Ctor === \"function\" && fnToString.call( Ctor ) === ObjectFunctionString;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\t// Evaluates a script in a provided context; falls back to the global one\n\t// if not specified.\n\tglobalEval: function( code, options, doc ) {\n\t\tDOMEval( code, { nonce: options && options.nonce }, doc );\n\t},\n\n\teach: function( obj, callback ) {\n\t\tvar length, i = 0;\n\n\t\tif ( isArrayLike( obj ) ) {\n\t\t\tlength = obj.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tfor ( i in obj ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArrayLike( Object( arr ) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\treturn arr == null ? -1 : indexOf.call( arr, elem, i );\n\t},\n\n\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t// push.apply(_, arraylike) throws on ancient WebKit\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\tfor ( ; j < len; j++ ) {\n\t\t\tfirst[ i++ ] = second[ j ];\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar length, value,\n\t\t\ti = 0,\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArrayLike( elems ) ) {\n\t\t\tlength = elems.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn flat( ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n} );\n\nif ( typeof Symbol === \"function\" ) {\n\tjQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];\n}\n\n// Populate the class2type map\njQuery.each( \"Boolean Number String Function Array Date RegExp Object Error Symbol\".split( \" \" ),\n\tfunction( _i, name ) {\n\t\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n\t} );\n\nfunction isArrayLike( obj ) {\n\n\t// Support: real iOS 8.2 only (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = !!obj && \"length\" in obj && obj.length,\n\t\ttype = toType( obj );\n\n\tif ( isFunction( obj ) || isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.3.6\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://js.foundation/\n *\n * Date: 2021-02-16\n */\n( function( window ) {\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tnonnativeSelectorCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// Instance methods\n\thasOwn = ( {} ).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpushNative = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\n\t// Use a stripped-down indexOf as it's faster than native\n\t// https://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[ i ] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|\" +\n\t\t\"ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\n\t// https://www.w3.org/TR/css-syntax-3/#ident-token-diagram\n\tidentifier = \"(?:\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace +\n\t\t\"?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+\",\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\n\t\t// \"Attribute values must be CSS identifiers [capture 5]\n\t\t// or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" +\n\t\twhitespace + \"*\\\\]\",\n\n\tpseudos = \":(\" + identifier + \")(?:\\\\((\" +\n\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" +\n\t\twhitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace +\n\t\t\"*\" ),\n\trdescend = new RegExp( whitespace + \"|>\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + identifier + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + identifier + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + identifier + \"|[*])\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" +\n\t\t\twhitespace + \"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" +\n\t\t\twhitespace + \"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace +\n\t\t\t\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" + whitespace +\n\t\t\t\"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trhtml = /HTML$/i,\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\n\t// CSS escapes\n\t// http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\[\\\\da-fA-F]{1,6}\" + whitespace + \"?|\\\\\\\\([^\\\\r\\\\n\\\\f])\", \"g\" ),\n\tfunescape = function( escape, nonHex ) {\n\t\tvar high = \"0x\" + escape.slice( 1 ) - 0x10000;\n\n\t\treturn nonHex ?\n\n\t\t\t// Strip the backslash prefix from a non-hex escape sequence\n\t\t\tnonHex :\n\n\t\t\t// Replace a hexadecimal escape sequence with the encoded Unicode code point\n\t\t\t// Support: IE <=11+\n\t\t\t// For values outside the Basic Multilingual Plane (BMP), manually construct a\n\t\t\t// surrogate pair\n\t\t\thigh < 0 ?\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// CSS string/identifier serialization\n\t// https://drafts.csswg.org/cssom/#common-serializing-idioms\n\trcssescape = /([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,\n\tfcssescape = function( ch, asCodePoint ) {\n\t\tif ( asCodePoint ) {\n\n\t\t\t// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER\n\t\t\tif ( ch === \"\\0\" ) {\n\t\t\t\treturn \"\\uFFFD\";\n\t\t\t}\n\n\t\t\t// Control characters and (dependent upon position) numbers get escaped as code points\n\t\t\treturn ch.slice( 0, -1 ) + \"\\\\\" +\n\t\t\t\tch.charCodeAt( ch.length - 1 ).toString( 16 ) + \" \";\n\t\t}\n\n\t\t// Other potentially-special ASCII characters get backslash-escaped\n\t\treturn \"\\\\\" + ch;\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t},\n\n\tinDisabledFieldset = addCombinator(\n\t\tfunction( elem ) {\n\t\t\treturn elem.disabled === true && elem.nodeName.toLowerCase() === \"fieldset\";\n\t\t},\n\t\t{ dir: \"parentNode\", next: \"legend\" }\n\t);\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t( arr = slice.call( preferredDoc.childNodes ) ),\n\t\tpreferredDoc.childNodes\n\t);\n\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\t// eslint-disable-next-line no-unused-expressions\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpushNative.apply( target, slice.call( els ) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( ( target[ j++ ] = els[ i++ ] ) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar m, i, elem, nid, match, groups, newSelector,\n\t\tnewContext = context && context.ownerDocument,\n\n\t\t// nodeType defaults to 9, since context defaults to document\n\t\tnodeType = context ? context.nodeType : 9;\n\n\tresults = results || [];\n\n\t// Return early from calls with invalid selector or context\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\t// Try to shortcut find operations (as opposed to filters) in HTML documents\n\tif ( !seed ) {\n\t\tsetDocument( context );\n\t\tcontext = context || document;\n\n\t\tif ( documentIsHTML ) {\n\n\t\t\t// If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n\t\t\t// (excepting DocumentFragment context, where the methods don't exist)\n\t\t\tif ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) {\n\n\t\t\t\t// ID selector\n\t\t\t\tif ( ( m = match[ 1 ] ) ) {\n\n\t\t\t\t\t// Document context\n\t\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\t\tif ( ( elem = context.getElementById( m ) ) ) {\n\n\t\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Element context\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\tif ( newContext && ( elem = newContext.getElementById( m ) ) &&\n\t\t\t\t\t\t\tcontains( context, elem ) &&\n\t\t\t\t\t\t\telem.id === m ) {\n\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t// Type selector\n\t\t\t\t} else if ( match[ 2 ] ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\t\treturn results;\n\n\t\t\t\t// Class selector\n\t\t\t\t} else if ( ( m = match[ 3 ] ) && support.getElementsByClassName &&\n\t\t\t\t\tcontext.getElementsByClassName ) {\n\n\t\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\t\treturn results;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Take advantage of querySelectorAll\n\t\t\tif ( support.qsa &&\n\t\t\t\t!nonnativeSelectorCache[ selector + \" \" ] &&\n\t\t\t\t( !rbuggyQSA || !rbuggyQSA.test( selector ) ) &&\n\n\t\t\t\t// Support: IE 8 only\n\t\t\t\t// Exclude object elements\n\t\t\t\t( nodeType !== 1 || context.nodeName.toLowerCase() !== \"object\" ) ) {\n\n\t\t\t\tnewSelector = selector;\n\t\t\t\tnewContext = context;\n\n\t\t\t\t// qSA considers elements outside a scoping root when evaluating child or\n\t\t\t\t// descendant combinators, which is not what we want.\n\t\t\t\t// In such cases, we work around the behavior by prefixing every selector in the\n\t\t\t\t// list with an ID selector referencing the scope context.\n\t\t\t\t// The technique has to be used as well when a leading combinator is used\n\t\t\t\t// as such selectors are not recognized by querySelectorAll.\n\t\t\t\t// Thanks to Andrew Dupont for this technique.\n\t\t\t\tif ( nodeType === 1 &&\n\t\t\t\t\t( rdescend.test( selector ) || rcombinators.test( selector ) ) ) {\n\n\t\t\t\t\t// Expand context for sibling selectors\n\t\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext;\n\n\t\t\t\t\t// We can use :scope instead of the ID hack if the browser\n\t\t\t\t\t// supports it & if we're not changing the context.\n\t\t\t\t\tif ( newContext !== context || !support.scope ) {\n\n\t\t\t\t\t\t// Capture the context ID, setting it first if necessary\n\t\t\t\t\t\tif ( ( nid = context.getAttribute( \"id\" ) ) ) {\n\t\t\t\t\t\t\tnid = nid.replace( rcssescape, fcssescape );\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tcontext.setAttribute( \"id\", ( nid = expando ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prefix every selector in the list\n\t\t\t\t\tgroups = tokenize( selector );\n\t\t\t\t\ti = groups.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tgroups[ i ] = ( nid ? \"#\" + nid : \":scope\" ) + \" \" +\n\t\t\t\t\t\t\ttoSelector( groups[ i ] );\n\t\t\t\t\t}\n\t\t\t\t\tnewSelector = groups.join( \",\" );\n\t\t\t\t}\n\n\t\t\t\ttry {\n\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t);\n\t\t\t\t\treturn results;\n\t\t\t\t} catch ( qsaError ) {\n\t\t\t\t\tnonnativeSelectorCache( selector, true );\n\t\t\t\t} finally {\n\t\t\t\t\tif ( nid === expando ) {\n\t\t\t\t\t\tcontext.removeAttribute( \"id\" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {function(string, object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn ( cache[ key + \" \" ] = value );\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created element and returns a boolean result\n */\nfunction assert( fn ) {\n\tvar el = document.createElement( \"fieldset\" );\n\n\ttry {\n\t\treturn !!fn( el );\n\t} catch ( e ) {\n\t\treturn false;\n\t} finally {\n\n\t\t// Remove from its parent by default\n\t\tif ( el.parentNode ) {\n\t\t\tel.parentNode.removeChild( el );\n\t\t}\n\n\t\t// release memory in IE\n\t\tel = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split( \"|\" ),\n\t\ti = arr.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[ i ] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\ta.sourceIndex - b.sourceIndex;\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( ( cur = cur.nextSibling ) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn ( name === \"input\" || name === \"button\" ) && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for :enabled/:disabled\n * @param {Boolean} disabled true for :disabled; false for :enabled\n */\nfunction createDisabledPseudo( disabled ) {\n\n\t// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable\n\treturn function( elem ) {\n\n\t\t// Only certain elements can match :enabled or :disabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled\n\t\t// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled\n\t\tif ( \"form\" in elem ) {\n\n\t\t\t// Check for inherited disabledness on relevant non-disabled elements:\n\t\t\t// * listed form-associated elements in a disabled fieldset\n\t\t\t// https://html.spec.whatwg.org/multipage/forms.html#category-listed\n\t\t\t// https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled\n\t\t\t// * option elements in a disabled optgroup\n\t\t\t// https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled\n\t\t\t// All such elements have a \"form\" property.\n\t\t\tif ( elem.parentNode && elem.disabled === false ) {\n\n\t\t\t\t// Option elements defer to a parent optgroup if present\n\t\t\t\tif ( \"label\" in elem ) {\n\t\t\t\t\tif ( \"label\" in elem.parentNode ) {\n\t\t\t\t\t\treturn elem.parentNode.disabled === disabled;\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn elem.disabled === disabled;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Support: IE 6 - 11\n\t\t\t\t// Use the isDisabled shortcut property to check for disabled fieldset ancestors\n\t\t\t\treturn elem.isDisabled === disabled ||\n\n\t\t\t\t\t// Where there is no isDisabled, check manually\n\t\t\t\t\t/* jshint -W018 */\n\t\t\t\t\telem.isDisabled !== !disabled &&\n\t\t\t\t\tinDisabledFieldset( elem ) === disabled;\n\t\t\t}\n\n\t\t\treturn elem.disabled === disabled;\n\n\t\t// Try to winnow out elements that can't be disabled before trusting the disabled property.\n\t\t// Some victims get caught in our net (label, legend, menu, track), but it shouldn't\n\t\t// even exist on them, let alone have a boolean value.\n\t\t} else if ( \"label\" in elem ) {\n\t\t\treturn elem.disabled === disabled;\n\t\t}\n\n\t\t// Remaining elements are neither :enabled nor :disabled\n\t\treturn false;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction( function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction( function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ ( j = matchIndexes[ i ] ) ] ) {\n\t\t\t\t\tseed[ j ] = !( matches[ j ] = seed[ j ] );\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t} );\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\tvar namespace = elem && elem.namespaceURI,\n\t\tdocElem = elem && ( elem.ownerDocument || elem ).documentElement;\n\n\t// Support: IE <=8\n\t// Assume HTML when documentElement doesn't yet exist, such as inside loading iframes\n\t// https://bugs.jquery.com/ticket/4833\n\treturn !rhtml.test( namespace || docElem && docElem.nodeName || \"HTML\" );\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, subWindow,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// Return early if doc is invalid or already selected\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Update global variables\n\tdocument = doc;\n\tdocElem = document.documentElement;\n\tdocumentIsHTML = !isXML( document );\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+\n\t// Accessing iframe documents after unload throws \"permission denied\" errors (jQuery #13936)\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( preferredDoc != document &&\n\t\t( subWindow = document.defaultView ) && subWindow.top !== subWindow ) {\n\n\t\t// Support: IE 11, Edge\n\t\tif ( subWindow.addEventListener ) {\n\t\t\tsubWindow.addEventListener( \"unload\", unloadHandler, false );\n\n\t\t// Support: IE 9 - 10 only\n\t\t} else if ( subWindow.attachEvent ) {\n\t\t\tsubWindow.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t// Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only,\n\t// Safari 4 - 5 only, Opera <=11.6 - 12.x only\n\t// IE/Edge & older browsers don't support the :scope pseudo-class.\n\t// Support: Safari 6.0 only\n\t// Safari 6.0 supports :scope but it's an alias of :root there.\n\tsupport.scope = assert( function( el ) {\n\t\tdocElem.appendChild( el ).appendChild( document.createElement( \"div\" ) );\n\t\treturn typeof el.querySelectorAll !== \"undefined\" &&\n\t\t\t!el.querySelectorAll( \":scope fieldset div\" ).length;\n\t} );\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert( function( el ) {\n\t\tel.className = \"i\";\n\t\treturn !el.getAttribute( \"className\" );\n\t} );\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert( function( el ) {\n\t\tel.appendChild( document.createComment( \"\" ) );\n\t\treturn !el.getElementsByTagName( \"*\" ).length;\n\t} );\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( document.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programmatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert( function( el ) {\n\t\tdocElem.appendChild( el ).id = expando;\n\t\treturn !document.getElementsByName || !document.getElementsByName( expando ).length;\n\t} );\n\n\t// ID filter and find\n\tif ( support.getById ) {\n\t\tExpr.filter[ \"ID\" ] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute( \"id\" ) === attrId;\n\t\t\t};\n\t\t};\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar elem = context.getElementById( id );\n\t\t\t\treturn elem ? [ elem ] : [];\n\t\t\t}\n\t\t};\n\t} else {\n\t\tExpr.filter[ \"ID\" ] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" &&\n\t\t\t\t\telem.getAttributeNode( \"id\" );\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\n\t\t// Support: IE 6 - 7 only\n\t\t// getElementById is not reliable as a find shortcut\n\t\tExpr.find[ \"ID\" ] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar node, i, elems,\n\t\t\t\t\telem = context.getElementById( id );\n\n\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t// Verify the id attribute\n\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t}\n\n\t\t\t\t\t// Fall back on getElementsByName\n\t\t\t\t\telems = context.getElementsByName( id );\n\t\t\t\t\ti = 0;\n\t\t\t\t\twhile ( ( elem = elems[ i++ ] ) ) {\n\t\t\t\t\t\tnode = elem.getAttributeNode( \"id\" );\n\t\t\t\t\t\tif ( node && node.value === id ) {\n\t\t\t\t\t\t\treturn [ elem ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn [];\n\t\t\t}\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[ \"TAG\" ] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[ \"CLASS\" ] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See https://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) {\n\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert( function( el ) {\n\n\t\t\tvar input;\n\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// https://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( el ).innerHTML = \"\" +\n\t\t\t\t\"\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( el.querySelectorAll( \"[msallowcapture^='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !el.querySelectorAll( \"[selected]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+\n\t\t\tif ( !el.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"~=\" );\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 15 - 18+\n\t\t\t// IE 11/Edge don't find elements on a `[name='']` query in some cases.\n\t\t\t// Adding a temporary attribute to the document before the selection works\n\t\t\t// around the issue.\n\t\t\t// Interestingly, IE 10 & older don't seem to have the issue.\n\t\t\tinput = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"name\", \"\" );\n\t\t\tel.appendChild( input );\n\t\t\tif ( !el.querySelectorAll( \"[name='']\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*name\" + whitespace + \"*=\" +\n\t\t\t\t\twhitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !el.querySelectorAll( \":checked\" ).length ) {\n\t\t\t\trbuggyQSA.push( \":checked\" );\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibling-combinator selector` fails\n\t\t\tif ( !el.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push( \".#.+[+~]\" );\n\t\t\t}\n\n\t\t\t// Support: Firefox <=3.6 - 5 only\n\t\t\t// Old Firefox doesn't throw on a badly-escaped identifier.\n\t\t\tel.querySelectorAll( \"\\\\\\f\" );\n\t\t\trbuggyQSA.push( \"[\\\\r\\\\n\\\\f]\" );\n\t\t} );\n\n\t\tassert( function( el ) {\n\t\t\tel.innerHTML = \"\" +\n\t\t\t\t\"\";\n\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = document.createElement( \"input\" );\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tel.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( el.querySelectorAll( \"[name=d]\" ).length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( el.querySelectorAll( \":enabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: IE9-11+\n\t\t\t// IE's :disabled selector does not pick up the children of disabled fieldsets\n\t\t\tdocElem.appendChild( el ).disabled = true;\n\t\t\tif ( el.querySelectorAll( \":disabled\" ).length !== 2 ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Support: Opera 10 - 11 only\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tel.querySelectorAll( \"*,:x\" );\n\t\t\trbuggyQSA.push( \",.*:\" );\n\t\t} );\n\t}\n\n\tif ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector ) ) ) ) {\n\n\t\tassert( function( el ) {\n\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( el, \"*\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( el, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t} );\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( \"|\" ) );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( \"|\" ) );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully self-exclusive\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t) );\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( ( b = b.parentNode ) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t// two documents; shallow comparisons work.\n\t\t// eslint-disable-next-line eqeqeq\n\t\tcompare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( a == document || a.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, a ) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\tif ( b == document || b.ownerDocument == preferredDoc &&\n\t\t\t\tcontains( preferredDoc, b ) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\treturn a == document ? -1 :\n\t\t\t\tb == document ? 1 :\n\t\t\t\t/* eslint-enable eqeqeq */\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( ( cur = cur.parentNode ) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[ i ] === bp[ i ] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[ i ], bp[ i ] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t// two documents; shallow comparisons work.\n\t\t\t/* eslint-disable eqeqeq */\n\t\t\tap[ i ] == preferredDoc ? -1 :\n\t\t\tbp[ i ] == preferredDoc ? 1 :\n\t\t\t/* eslint-enable eqeqeq */\n\t\t\t0;\n\t};\n\n\treturn document;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\tsetDocument( elem );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t!nonnativeSelectorCache[ expr + \" \" ] &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\n\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t// fragment in IE 9\n\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch ( e ) {\n\t\t\tnonnativeSelectorCache( expr, true );\n\t\t}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( context.ownerDocument || context ) != document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\n\t// Set document vars if needed\n\t// Support: IE 11+, Edge 17 - 18+\n\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t// two documents; shallow comparisons work.\n\t// eslint-disable-next-line eqeqeq\n\tif ( ( elem.ownerDocument || elem ) != document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.escape = function( sel ) {\n\treturn ( sel + \"\" ).replace( rcssescape, fcssescape );\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( ( elem = results[ i++ ] ) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( ( node = elem[ i++ ] ) ) {\n\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[ 1 ] = match[ 1 ].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[ 3 ] = ( match[ 3 ] || match[ 4 ] ||\n\t\t\t\tmatch[ 5 ] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[ 2 ] === \"~=\" ) {\n\t\t\t\tmatch[ 3 ] = \" \" + match[ 3 ] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[ 1 ] = match[ 1 ].toLowerCase();\n\n\t\t\tif ( match[ 1 ].slice( 0, 3 ) === \"nth\" ) {\n\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[ 3 ] ) {\n\t\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[ 4 ] = +( match[ 4 ] ?\n\t\t\t\t\tmatch[ 5 ] + ( match[ 6 ] || 1 ) :\n\t\t\t\t\t2 * ( match[ 3 ] === \"even\" || match[ 3 ] === \"odd\" ) );\n\t\t\t\tmatch[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === \"odd\" );\n\n\t\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[ 3 ] ) {\n\t\t\t\tSizzle.error( match[ 0 ] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[ 6 ] && match[ 2 ];\n\n\t\t\tif ( matchExpr[ \"CHILD\" ].test( match[ 0 ] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[ 3 ] ) {\n\t\t\t\tmatch[ 2 ] = match[ 4 ] || match[ 5 ] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t( excess = tokenize( unquoted, true ) ) &&\n\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t( excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length ) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[ 0 ] = match[ 0 ].slice( 0, excess );\n\t\t\t\tmatch[ 2 ] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() {\n\t\t\t\t\treturn true;\n\t\t\t\t} :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t( pattern = new RegExp( \"(^|\" + whitespace +\n\t\t\t\t\t\")\" + className + \"(\" + whitespace + \"|$)\" ) ) && classCache(\n\t\t\t\t\t\tclassName, function( elem ) {\n\t\t\t\t\t\t\treturn pattern.test(\n\t\t\t\t\t\t\t\ttypeof elem.className === \"string\" && elem.className ||\n\t\t\t\t\t\t\t\ttypeof elem.getAttribute !== \"undefined\" &&\n\t\t\t\t\t\t\t\t\telem.getAttribute( \"class\" ) ||\n\t\t\t\t\t\t\t\t\"\"\n\t\t\t\t\t\t\t);\n\t\t\t\t} );\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\t/* eslint-disable max-len */\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t\t/* eslint-enable max-len */\n\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, _argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tvar cache, uniqueCache, outerCache, node, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType,\n\t\t\t\t\t\tdiff = false;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( ( node = node[ dir ] ) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) {\n\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\n\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\tnode = parent;\n\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\tdiff = nodeIndex && cache[ 2 ];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t\tif ( useCache ) {\n\n\t\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\touterCache = node[ expando ] || ( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\t\tdiff = nodeIndex;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// xml :nth-child(...)\n\t\t\t\t\t\t\t// or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t\tif ( diff === false ) {\n\n\t\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\t\twhile ( ( node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t\t( diff = nodeIndex = 0 ) || start.pop() ) ) {\n\n\t\t\t\t\t\t\t\t\tif ( ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) &&\n\t\t\t\t\t\t\t\t\t\t++diff ) {\n\n\t\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t\touterCache = node[ expando ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( node[ expando ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t( outerCache[ node.uniqueID ] = {} );\n\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction( function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[ i ] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[ i ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t} ) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction( function( selector ) {\n\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction( function( seed, matches, _context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\t\t\t\t\tseed[ i ] = !( matches[ i ] = elem );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} ) :\n\t\t\t\tfunction( elem, _context, xml ) {\n\t\t\t\t\tinput[ 0 ] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[ 0 ] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t} ),\n\n\t\t\"has\": markFunction( function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t} ),\n\n\t\t\"contains\": markFunction( function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t} ),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test( lang || \"\" ) ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( ( elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute( \"xml:lang\" ) || elem.getAttribute( \"lang\" ) ) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( ( elem = elem.parentNode ) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t} ),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement &&\n\t\t\t\t( !document.hasFocus || document.hasFocus() ) &&\n\t\t\t\t!!( elem.type || elem.href || ~elem.tabIndex );\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": createDisabledPseudo( false ),\n\t\t\"disabled\": createDisabledPseudo( true ),\n\n\t\t\"checked\": function( elem ) {\n\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn ( nodeName === \"input\" && !!elem.checked ) ||\n\t\t\t\t( nodeName === \"option\" && !!elem.selected );\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\t// eslint-disable-next-line no-unused-expressions\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t// but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[ \"empty\" ]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( ( attr = elem.getAttribute( \"type\" ) ) == null ||\n\t\t\t\t\tattr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo( function() {\n\t\t\treturn [ 0 ];\n\t\t} ),\n\n\t\t\"last\": createPositionalPseudo( function( _matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t} ),\n\n\t\t\"eq\": createPositionalPseudo( function( _matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t} ),\n\n\t\t\"even\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"odd\": createPositionalPseudo( function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"lt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ?\n\t\t\t\targument + length :\n\t\t\t\targument > length ?\n\t\t\t\t\tlength :\n\t\t\t\t\targument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} ),\n\n\t\t\"gt\": createPositionalPseudo( function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t} )\n\t}\n};\n\nExpr.pseudos[ \"nth\" ] = Expr.pseudos[ \"eq\" ];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || ( match = rcomma.exec( soFar ) ) ) {\n\t\t\tif ( match ) {\n\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[ 0 ].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( ( tokens = [] ) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( ( match = rcombinators.exec( soFar ) ) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push( {\n\t\t\t\tvalue: matched,\n\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[ 0 ].replace( rtrim, \" \" )\n\t\t\t} );\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] ||\n\t\t\t\t( match = preFilters[ type ]( match ) ) ) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push( {\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t} );\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[ i ].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tskip = combinator.next,\n\t\tkey = skip || dir,\n\t\tcheckNonElements = base && key === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, uniqueCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( ( elem = elem[ dir ] ) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || ( elem[ expando ] = {} );\n\n\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\tuniqueCache = outerCache[ elem.uniqueID ] ||\n\t\t\t\t\t\t\t( outerCache[ elem.uniqueID ] = {} );\n\n\t\t\t\t\t\tif ( skip && skip === elem.nodeName.toLowerCase() ) {\n\t\t\t\t\t\t\telem = elem[ dir ] || elem;\n\t\t\t\t\t\t} else if ( ( oldCache = uniqueCache[ key ] ) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn ( newCache[ 2 ] = oldCache[ 2 ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\tuniqueCache[ key ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[ i ]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[ 0 ];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[ i ], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( elem = unmatched[ i ] ) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction( function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts(\n\t\t\t\tselector || \"*\",\n\t\t\t\tcontext.nodeType ? [ context ] : context,\n\t\t\t\t[]\n\t\t\t),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( ( elem = temp[ i ] ) ) {\n\t\t\t\t\tmatcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) ) {\n\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( ( matcherIn[ i ] = elem ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, ( matcherOut = [] ), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( ( elem = matcherOut[ i ] ) &&\n\t\t\t\t\t\t( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) {\n\n\t\t\t\t\t\tseed[ temp ] = !( results[ temp ] = elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t} );\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[ 0 ].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[ \" \" ],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t( checkContext = context ).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) {\n\t\t\tmatchers = [ addCombinator( elementMatcher( matchers ), matcher ) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[ j ].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\n\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\ttokens\n\t\t\t\t\t\t.slice( 0, i - 1 )\n\t\t\t\t\t\t.concat( { value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" } )\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[ \"TAG\" ]( \"*\", outermost ),\n\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\n\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\toutermostContext = context == document || context || outermost;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: ) matching elements by id\n\t\t\tfor ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\n\t\t\t\t\t// Support: IE 11+, Edge 17 - 18+\n\t\t\t\t\t// IE/Edge sometimes throw a \"Permission denied\" error when strict-comparing\n\t\t\t\t\t// two documents; shallow comparisons work.\n\t\t\t\t\t// eslint-disable-next-line eqeqeq\n\t\t\t\t\tif ( !context && elem.ownerDocument != document ) {\n\t\t\t\t\t\tsetDocument( elem );\n\t\t\t\t\t\txml = !documentIsHTML;\n\t\t\t\t\t}\n\t\t\t\t\twhile ( ( matcher = elementMatchers[ j++ ] ) ) {\n\t\t\t\t\t\tif ( matcher( elem, context || document, xml ) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( ( elem = !matcher && elem ) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// `i` is now the count of elements visited above, and adding it to `matchedCount`\n\t\t\t// makes the latter nonnegative.\n\t\t\tmatchedCount += i;\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\t// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n\t\t\t// equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n\t\t\t// no element matchers and no seed.\n\t\t\t// Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n\t\t\t// case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n\t\t\t// numerically zero.\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( ( matcher = setMatchers[ j++ ] ) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !( unmatched[ i ] || setMatched[ i ] ) ) {\n\t\t\t\t\t\t\t\tsetMatched[ i ] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[ i ] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache(\n\t\t\tselector,\n\t\t\tmatcherFromGroupMatchers( elementMatchers, setMatchers )\n\t\t);\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n * selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n * selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( ( selector = compiled.selector || selector ) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is only one selector in the list and no seed\n\t// (the latter of which guarantees us context)\n\tif ( match.length === 1 ) {\n\n\t\t// Reduce context if the leading compound selector is an ID\n\t\ttokens = match[ 0 ] = match[ 0 ].slice( 0 );\n\t\tif ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === \"ID\" &&\n\t\t\tcontext.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) {\n\n\t\t\tcontext = ( Expr.find[ \"ID\" ]( token.matches[ 0 ]\n\t\t\t\t.replace( runescape, funescape ), context ) || [] )[ 0 ];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[ \"needsContext\" ].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[ i ];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ ( type = token.type ) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( ( find = Expr.find[ type ] ) ) {\n\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( ( seed = find(\n\t\t\t\t\ttoken.matches[ 0 ].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext\n\t\t\t\t) ) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\t!context || rsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split( \"\" ).sort( sortOrder ).join( \"\" ) === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert( function( el ) {\n\n\t// Should return 1, but returns 4 (following)\n\treturn el.compareDocumentPosition( document.createElement( \"fieldset\" ) ) & 1;\n} );\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert( function( el ) {\n\tel.innerHTML = \"\";\n\treturn el.firstChild.getAttribute( \"href\" ) === \"#\";\n} ) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert( function( el ) {\n\tel.innerHTML = \"\";\n\tel.firstChild.setAttribute( \"value\", \"\" );\n\treturn el.firstChild.getAttribute( \"value\" ) === \"\";\n} ) ) {\n\taddHandle( \"value\", function( elem, _name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t} );\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert( function( el ) {\n\treturn el.getAttribute( \"disabled\" ) == null;\n} ) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t( val = elem.getAttributeNode( name ) ) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\t\tnull;\n\t\t}\n\t} );\n}\n\nreturn Sizzle;\n\n} )( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\n\n// Deprecated\njQuery.expr[ \":\" ] = jQuery.expr.pseudos;\njQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\njQuery.escapeSelector = Sizzle.escape;\n\n\n\n\nvar dir = function( elem, dir, until ) {\n\tvar matched = [],\n\t\ttruncate = until !== undefined;\n\n\twhile ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {\n\t\tif ( elem.nodeType === 1 ) {\n\t\t\tif ( truncate && jQuery( elem ).is( until ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tmatched.push( elem );\n\t\t}\n\t}\n\treturn matched;\n};\n\n\nvar siblings = function( n, elem ) {\n\tvar matched = [];\n\n\tfor ( ; n; n = n.nextSibling ) {\n\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\tmatched.push( n );\n\t\t}\n\t}\n\n\treturn matched;\n};\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\n\n\nfunction nodeName( elem, name ) {\n\n\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\n}\nvar rsingleTag = ( /^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i );\n\n\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t} );\n\t}\n\n\t// Single element\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t} );\n\t}\n\n\t// Arraylike of elements (jQuery, arguments, Array)\n\tif ( typeof qualifier !== \"string\" ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( indexOf.call( qualifier, elem ) > -1 ) !== not;\n\t\t} );\n\t}\n\n\t// Filtered directly for both simple and complex selectors\n\treturn jQuery.filter( qualifier, elements, not );\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\tif ( elems.length === 1 && elem.nodeType === 1 ) {\n\t\treturn jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];\n\t}\n\n\treturn jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\treturn elem.nodeType === 1;\n\t} ) );\n};\n\njQuery.fn.extend( {\n\tfind: function( selector ) {\n\t\tvar i, ret,\n\t\t\tlen = this.length,\n\t\t\tself = this;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter( function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} ) );\n\t\t}\n\n\t\tret = this.pushStack( [] );\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\treturn len > 1 ? jQuery.uniqueSort( ret ) : ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], false ) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], true ) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n} );\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\t// Shortcut simple #id case for speed\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/,\n\n\tinit = jQuery.fn.init = function( selector, context, root ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Method init() accepts an alternate rootjQuery\n\t\t// so migrate can support jQuery.sub (gh-2101)\n\t\troot = root || rootjQuery;\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector[ 0 ] === \"<\" &&\n\t\t\t\tselector[ selector.length - 1 ] === \">\" &&\n\t\t\t\tselector.length >= 3 ) {\n\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && ( match[ 1 ] || !context ) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[ 1 ] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[ 0 ] : context;\n\n\t\t\t\t\t// Option to run scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[ 1 ],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[ 2 ] );\n\n\t\t\t\t\tif ( elem ) {\n\n\t\t\t\t\t\t// Inject the element directly into the jQuery object\n\t\t\t\t\t\tthis[ 0 ] = elem;\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || root ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis[ 0 ] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( isFunction( selector ) ) {\n\t\t\treturn root.ready !== undefined ?\n\t\t\t\troot.ready( selector ) :\n\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\n\t// Methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend( {\n\thas: function( target ) {\n\t\tvar targets = jQuery( target, this ),\n\t\t\tl = targets.length;\n\n\t\treturn this.filter( function() {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[ i ] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\ttargets = typeof selectors !== \"string\" && jQuery( selectors );\n\n\t\t// Positional selectors never match, since there's no _selection_ context\n\t\tif ( !rneedsContext.test( selectors ) ) {\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tfor ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {\n\n\t\t\t\t\t// Always skip document fragments\n\t\t\t\t\tif ( cur.nodeType < 11 && ( targets ?\n\t\t\t\t\t\ttargets.index( cur ) > -1 :\n\n\t\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\t\tjQuery.find.matchesSelector( cur, selectors ) ) ) {\n\n\t\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within the set\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// Index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn indexOf.call( jQuery( elem ), this[ 0 ] );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn indexOf.call( this,\n\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[ 0 ] : elem\n\t\t);\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.uniqueSort(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t}\n} );\n\nfunction sibling( cur, dir ) {\n\twhile ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}\n\treturn cur;\n}\n\njQuery.each( {\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, _i, until ) {\n\t\treturn dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn siblings( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn siblings( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\tif ( elem.contentDocument != null &&\n\n\t\t\t// Support: IE 11+\n\t\t\t// elements with no `data` attribute has an object\n\t\t\t// `contentDocument` with a `null` prototype.\n\t\t\tgetProto( elem.contentDocument ) ) {\n\n\t\t\treturn elem.contentDocument;\n\t\t}\n\n\t\t// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only\n\t\t// Treat the template element as a regular one in browsers that\n\t\t// don't support it.\n\t\tif ( nodeName( elem, \"template\" ) ) {\n\t\t\telem = elem.content || elem;\n\t\t}\n\n\t\treturn jQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar matched = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tmatched = jQuery.filter( selector, matched );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tjQuery.uniqueSort( matched );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tmatched.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched );\n\t};\n} );\nvar rnothtmlwhite = ( /[^\\x20\\t\\r\\n\\f]+/g );\n\n\n\n// Convert String-formatted options into Object-formatted ones\nfunction createOptions( options ) {\n\tvar object = {};\n\tjQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t} );\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\tcreateOptions( options ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\n\t\t// Last fire value for non-forgettable lists\n\t\tmemory,\n\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\n\t\t// Flag to prevent firing\n\t\tlocked,\n\n\t\t// Actual callback list\n\t\tlist = [],\n\n\t\t// Queue of execution data for repeatable lists\n\t\tqueue = [],\n\n\t\t// Index of currently firing callback (modified by add/remove as needed)\n\t\tfiringIndex = -1,\n\n\t\t// Fire callbacks\n\t\tfire = function() {\n\n\t\t\t// Enforce single-firing\n\t\t\tlocked = locked || options.once;\n\n\t\t\t// Execute callbacks for all pending executions,\n\t\t\t// respecting firingIndex overrides and runtime changes\n\t\t\tfired = firing = true;\n\t\t\tfor ( ; queue.length; firingIndex = -1 ) {\n\t\t\t\tmemory = queue.shift();\n\t\t\t\twhile ( ++firingIndex < list.length ) {\n\n\t\t\t\t\t// Run callback and check for early termination\n\t\t\t\t\tif ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&\n\t\t\t\t\t\toptions.stopOnFalse ) {\n\n\t\t\t\t\t\t// Jump to end and forget the data so .add doesn't re-fire\n\t\t\t\t\t\tfiringIndex = list.length;\n\t\t\t\t\t\tmemory = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Forget the data if we're done with it\n\t\t\tif ( !options.memory ) {\n\t\t\t\tmemory = false;\n\t\t\t}\n\n\t\t\tfiring = false;\n\n\t\t\t// Clean up if we're done firing for good\n\t\t\tif ( locked ) {\n\n\t\t\t\t// Keep an empty list if we have data for future add calls\n\t\t\t\tif ( memory ) {\n\t\t\t\t\tlist = [];\n\n\t\t\t\t// Otherwise, this object is spent\n\t\t\t\t} else {\n\t\t\t\t\tlist = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t// Actual Callbacks object\n\t\tself = {\n\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\n\t\t\t\t\t// If we have memory from a past run, we should fire after adding\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfiringIndex = list.length - 1;\n\t\t\t\t\t\tqueue.push( memory );\n\t\t\t\t\t}\n\n\t\t\t\t\t( function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tif ( isFunction( arg ) ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && toType( arg ) !== \"string\" ) {\n\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t} )( arguments );\n\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\tvar index;\n\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\tlist.splice( index, 1 );\n\n\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ?\n\t\t\t\t\tjQuery.inArray( fn, list ) > -1 :\n\t\t\t\t\tlist.length > 0;\n\t\t\t},\n\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Disable .fire and .add\n\t\t\t// Abort any current/pending executions\n\t\t\t// Clear all callbacks and values\n\t\t\tdisable: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tlist = memory = \"\";\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\n\t\t\t// Disable .fire\n\t\t\t// Also disable .add unless we have memory (since it would have no effect)\n\t\t\t// Abort any pending executions\n\t\t\tlock: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tif ( !memory && !firing ) {\n\t\t\t\t\tlist = memory = \"\";\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tlocked: function() {\n\t\t\t\treturn !!locked;\n\t\t\t},\n\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( !locked ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tqueue.push( args );\n\t\t\t\t\tif ( !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\nfunction Identity( v ) {\n\treturn v;\n}\nfunction Thrower( ex ) {\n\tthrow ex;\n}\n\nfunction adoptValue( value, resolve, reject, noValue ) {\n\tvar method;\n\n\ttry {\n\n\t\t// Check for promise aspect first to privilege synchronous behavior\n\t\tif ( value && isFunction( ( method = value.promise ) ) ) {\n\t\t\tmethod.call( value ).done( resolve ).fail( reject );\n\n\t\t// Other thenables\n\t\t} else if ( value && isFunction( ( method = value.then ) ) ) {\n\t\t\tmethod.call( value, resolve, reject );\n\n\t\t// Other non-thenables\n\t\t} else {\n\n\t\t\t// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:\n\t\t\t// * false: [ value ].slice( 0 ) => resolve( value )\n\t\t\t// * true: [ value ].slice( 1 ) => resolve()\n\t\t\tresolve.apply( undefined, [ value ].slice( noValue ) );\n\t\t}\n\n\t// For Promises/A+, convert exceptions into rejections\n\t// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in\n\t// Deferred#then to conditionally suppress rejection.\n\t} catch ( value ) {\n\n\t\t// Support: Android 4.0 only\n\t\t// Strict mode functions invoked without .call/.apply get global-object context\n\t\treject.apply( undefined, [ value ] );\n\t}\n}\n\njQuery.extend( {\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\n\t\t\t\t// action, add listener, callbacks,\n\t\t\t\t// ... .then handlers, argument index, [final state]\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks( \"memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"memory\" ), 2 ],\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 0, \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks( \"once memory\" ),\n\t\t\t\t\tjQuery.Callbacks( \"once memory\" ), 1, \"rejected\" ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\t\"catch\": function( fn ) {\n\t\t\t\t\treturn promise.then( null, fn );\n\t\t\t\t},\n\n\t\t\t\t// Keep pipe for back-compat\n\t\t\t\tpipe: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( _i, tuple ) {\n\n\t\t\t\t\t\t\t// Map tuples (progress, done, fail) to arguments (done, fail, progress)\n\t\t\t\t\t\t\tvar fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];\n\n\t\t\t\t\t\t\t// deferred.progress(function() { bind to newDefer or newDefer.notify })\n\t\t\t\t\t\t\t// deferred.done(function() { bind to newDefer or newDefer.resolve })\n\t\t\t\t\t\t\t// deferred.fail(function() { bind to newDefer or newDefer.reject })\n\t\t\t\t\t\t\tdeferred[ tuple[ 1 ] ]( function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify )\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ](\n\t\t\t\t\t\t\t\t\t\tthis,\n\t\t\t\t\t\t\t\t\t\tfn ? [ returned ] : arguments\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} );\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\t\t\t\tthen: function( onFulfilled, onRejected, onProgress ) {\n\t\t\t\t\tvar maxDepth = 0;\n\t\t\t\t\tfunction resolve( depth, deferred, handler, special ) {\n\t\t\t\t\t\treturn function() {\n\t\t\t\t\t\t\tvar that = this,\n\t\t\t\t\t\t\t\targs = arguments,\n\t\t\t\t\t\t\t\tmightThrow = function() {\n\t\t\t\t\t\t\t\t\tvar returned, then;\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.3\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-59\n\t\t\t\t\t\t\t\t\t// Ignore double-resolution attempts\n\t\t\t\t\t\t\t\t\tif ( depth < maxDepth ) {\n\t\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\treturned = handler.apply( that, args );\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.1\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-48\n\t\t\t\t\t\t\t\t\tif ( returned === deferred.promise() ) {\n\t\t\t\t\t\t\t\t\t\tthrow new TypeError( \"Thenable self-resolution\" );\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Support: Promises/A+ sections 2.3.3.1, 3.5\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-54\n\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-75\n\t\t\t\t\t\t\t\t\t// Retrieve `then` only once\n\t\t\t\t\t\t\t\t\tthen = returned &&\n\n\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.4\n\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-64\n\t\t\t\t\t\t\t\t\t\t// Only check objects and functions for thenability\n\t\t\t\t\t\t\t\t\t\t( typeof returned === \"object\" ||\n\t\t\t\t\t\t\t\t\t\t\ttypeof returned === \"function\" ) &&\n\t\t\t\t\t\t\t\t\t\treturned.then;\n\n\t\t\t\t\t\t\t\t\t// Handle a returned thenable\n\t\t\t\t\t\t\t\t\tif ( isFunction( then ) ) {\n\n\t\t\t\t\t\t\t\t\t\t// Special processors (notify) just wait for resolution\n\t\t\t\t\t\t\t\t\t\tif ( special ) {\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special )\n\t\t\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t\t// Normal processors (resolve) also hook into progress\n\t\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t\t// ...and disregard older resolution values\n\t\t\t\t\t\t\t\t\t\t\tmaxDepth++;\n\n\t\t\t\t\t\t\t\t\t\t\tthen.call(\n\t\t\t\t\t\t\t\t\t\t\t\treturned,\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Thrower, special ),\n\t\t\t\t\t\t\t\t\t\t\t\tresolve( maxDepth, deferred, Identity,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdeferred.notifyWith )\n\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Handle all other returned values\n\t\t\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\tif ( handler !== Identity ) {\n\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\targs = [ returned ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t// Process the value(s)\n\t\t\t\t\t\t\t\t\t\t// Default process is resolve\n\t\t\t\t\t\t\t\t\t\t( special || deferred.resolveWith )( that, args );\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\n\t\t\t\t\t\t\t\t// Only normal processors (resolve) catch and reject exceptions\n\t\t\t\t\t\t\t\tprocess = special ?\n\t\t\t\t\t\t\t\t\tmightThrow :\n\t\t\t\t\t\t\t\t\tfunction() {\n\t\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\t\tmightThrow();\n\t\t\t\t\t\t\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t\t\t\t\t\t\tif ( jQuery.Deferred.exceptionHook ) {\n\t\t\t\t\t\t\t\t\t\t\t\tjQuery.Deferred.exceptionHook( e,\n\t\t\t\t\t\t\t\t\t\t\t\t\tprocess.stackTrace );\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.4.1\n\t\t\t\t\t\t\t\t\t\t\t// https://promisesaplus.com/#point-61\n\t\t\t\t\t\t\t\t\t\t\t// Ignore post-resolution exceptions\n\t\t\t\t\t\t\t\t\t\t\tif ( depth + 1 >= maxDepth ) {\n\n\t\t\t\t\t\t\t\t\t\t\t\t// Only substitute handlers pass on context\n\t\t\t\t\t\t\t\t\t\t\t\t// and multiple values (non-spec behavior)\n\t\t\t\t\t\t\t\t\t\t\t\tif ( handler !== Thrower ) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tthat = undefined;\n\t\t\t\t\t\t\t\t\t\t\t\t\targs = [ e ];\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tdeferred.rejectWith( that, args );\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t};\n\n\t\t\t\t\t\t\t// Support: Promises/A+ section 2.3.3.3.1\n\t\t\t\t\t\t\t// https://promisesaplus.com/#point-57\n\t\t\t\t\t\t\t// Re-resolve promises immediately to dodge false rejection from\n\t\t\t\t\t\t\t// subsequent errors\n\t\t\t\t\t\t\tif ( depth ) {\n\t\t\t\t\t\t\t\tprocess();\n\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\t// Call an optional hook to record the stack, in case of exception\n\t\t\t\t\t\t\t\t// since it's otherwise lost when execution goes async\n\t\t\t\t\t\t\t\tif ( jQuery.Deferred.getStackHook ) {\n\t\t\t\t\t\t\t\t\tprocess.stackTrace = jQuery.Deferred.getStackHook();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\twindow.setTimeout( process );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\n\t\t\t\t\t\t// progress_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 0 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onProgress ) ?\n\t\t\t\t\t\t\t\t\tonProgress :\n\t\t\t\t\t\t\t\t\tIdentity,\n\t\t\t\t\t\t\t\tnewDefer.notifyWith\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// fulfilled_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 1 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onFulfilled ) ?\n\t\t\t\t\t\t\t\t\tonFulfilled :\n\t\t\t\t\t\t\t\t\tIdentity\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\t// rejected_handlers.add( ... )\n\t\t\t\t\t\ttuples[ 2 ][ 3 ].add(\n\t\t\t\t\t\t\tresolve(\n\t\t\t\t\t\t\t\t0,\n\t\t\t\t\t\t\t\tnewDefer,\n\t\t\t\t\t\t\t\tisFunction( onRejected ) ?\n\t\t\t\t\t\t\t\t\tonRejected :\n\t\t\t\t\t\t\t\t\tThrower\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 5 ];\n\n\t\t\t// promise.progress = list.add\n\t\t\t// promise.done = list.add\n\t\t\t// promise.fail = list.add\n\t\t\tpromise[ tuple[ 1 ] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add(\n\t\t\t\t\tfunction() {\n\n\t\t\t\t\t\t// state = \"resolved\" (i.e., fulfilled)\n\t\t\t\t\t\t// state = \"rejected\"\n\t\t\t\t\t\tstate = stateString;\n\t\t\t\t\t},\n\n\t\t\t\t\t// rejected_callbacks.disable\n\t\t\t\t\t// fulfilled_callbacks.disable\n\t\t\t\t\ttuples[ 3 - i ][ 2 ].disable,\n\n\t\t\t\t\t// rejected_handlers.disable\n\t\t\t\t\t// fulfilled_handlers.disable\n\t\t\t\t\ttuples[ 3 - i ][ 3 ].disable,\n\n\t\t\t\t\t// progress_callbacks.lock\n\t\t\t\t\ttuples[ 0 ][ 2 ].lock,\n\n\t\t\t\t\t// progress_handlers.lock\n\t\t\t\t\ttuples[ 0 ][ 3 ].lock\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// progress_handlers.fire\n\t\t\t// fulfilled_handlers.fire\n\t\t\t// rejected_handlers.fire\n\t\t\tlist.add( tuple[ 3 ].fire );\n\n\t\t\t// deferred.notify = function() { deferred.notifyWith(...) }\n\t\t\t// deferred.resolve = function() { deferred.resolveWith(...) }\n\t\t\t// deferred.reject = function() { deferred.rejectWith(...) }\n\t\t\tdeferred[ tuple[ 0 ] ] = function() {\n\t\t\t\tdeferred[ tuple[ 0 ] + \"With\" ]( this === deferred ? undefined : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\n\t\t\t// deferred.notifyWith = list.fireWith\n\t\t\t// deferred.resolveWith = list.fireWith\n\t\t\t// deferred.rejectWith = list.fireWith\n\t\t\tdeferred[ tuple[ 0 ] + \"With\" ] = list.fireWith;\n\t\t} );\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( singleValue ) {\n\t\tvar\n\n\t\t\t// count of uncompleted subordinates\n\t\t\tremaining = arguments.length,\n\n\t\t\t// count of unprocessed arguments\n\t\t\ti = remaining,\n\n\t\t\t// subordinate fulfillment data\n\t\t\tresolveContexts = Array( i ),\n\t\t\tresolveValues = slice.call( arguments ),\n\n\t\t\t// the primary Deferred\n\t\t\tprimary = jQuery.Deferred(),\n\n\t\t\t// subordinate callback factory\n\t\t\tupdateFunc = function( i ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tresolveContexts[ i ] = this;\n\t\t\t\t\tresolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( !( --remaining ) ) {\n\t\t\t\t\t\tprimary.resolveWith( resolveContexts, resolveValues );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t};\n\n\t\t// Single- and empty arguments are adopted like Promise.resolve\n\t\tif ( remaining <= 1 ) {\n\t\t\tadoptValue( singleValue, primary.done( updateFunc( i ) ).resolve, primary.reject,\n\t\t\t\t!remaining );\n\n\t\t\t// Use .then() to unwrap secondary thenables (cf. gh-3000)\n\t\t\tif ( primary.state() === \"pending\" ||\n\t\t\t\tisFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {\n\n\t\t\t\treturn primary.then();\n\t\t\t}\n\t\t}\n\n\t\t// Multiple arguments are aggregated like Promise.all array elements\n\t\twhile ( i-- ) {\n\t\t\tadoptValue( resolveValues[ i ], updateFunc( i ), primary.reject );\n\t\t}\n\n\t\treturn primary.promise();\n\t}\n} );\n\n\n// These usually indicate a programmer mistake during development,\n// warn about them ASAP rather than swallowing them by default.\nvar rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;\n\njQuery.Deferred.exceptionHook = function( error, stack ) {\n\n\t// Support: IE 8 - 9 only\n\t// Console exists when dev tools are open, which can happen at any time\n\tif ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {\n\t\twindow.console.warn( \"jQuery.Deferred exception: \" + error.message, error.stack, stack );\n\t}\n};\n\n\n\n\njQuery.readyException = function( error ) {\n\twindow.setTimeout( function() {\n\t\tthrow error;\n\t} );\n};\n\n\n\n\n// The deferred used on DOM ready\nvar readyList = jQuery.Deferred();\n\njQuery.fn.ready = function( fn ) {\n\n\treadyList\n\t\t.then( fn )\n\n\t\t// Wrap jQuery.readyException in a function so that the lookup\n\t\t// happens at the time of error handling instead of callback\n\t\t// registration.\n\t\t.catch( function( error ) {\n\t\t\tjQuery.readyException( error );\n\t\t} );\n\n\treturn this;\n};\n\njQuery.extend( {\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\t}\n} );\n\njQuery.ready.then = readyList.then;\n\n// The ready event handler and self cleanup method\nfunction completed() {\n\tdocument.removeEventListener( \"DOMContentLoaded\", completed );\n\twindow.removeEventListener( \"load\", completed );\n\tjQuery.ready();\n}\n\n// Catch cases where $(document).ready() is called\n// after the browser event has already occurred.\n// Support: IE <=9 - 10 only\n// Older IE sometimes signals \"interactive\" too soon\nif ( document.readyState === \"complete\" ||\n\t( document.readyState !== \"loading\" && !document.documentElement.doScroll ) ) {\n\n\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\twindow.setTimeout( jQuery.ready );\n\n} else {\n\n\t// Use the handy event callback\n\tdocument.addEventListener( \"DOMContentLoaded\", completed );\n\n\t// A fallback to window.onload, that will always work\n\twindow.addEventListener( \"load\", completed );\n}\n\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlen = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( toType( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\taccess( elems, fn, i, key[ i ], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, _key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tfn(\n\t\t\t\t\telems[ i ], key, raw ?\n\t\t\t\t\t\tvalue :\n\t\t\t\t\t\tvalue.call( elems[ i ], i, fn( elems[ i ], key ) )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( chainable ) {\n\t\treturn elems;\n\t}\n\n\t// Gets\n\tif ( bulk ) {\n\t\treturn fn.call( elems );\n\t}\n\n\treturn len ? fn( elems[ 0 ], key ) : emptyGet;\n};\n\n\n// Matches dashed string for camelizing\nvar rmsPrefix = /^-ms-/,\n\trdashAlpha = /-([a-z])/g;\n\n// Used by camelCase as callback to replace()\nfunction fcamelCase( _all, letter ) {\n\treturn letter.toUpperCase();\n}\n\n// Convert dashed to camelCase; used by the css and data modules\n// Support: IE <=9 - 11, Edge 12 - 15\n// Microsoft forgot to hump their vendor prefix (#9572)\nfunction camelCase( string ) {\n\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n}\nvar acceptData = function( owner ) {\n\n\t// Accepts only:\n\t// - Node\n\t// - Node.ELEMENT_NODE\n\t// - Node.DOCUMENT_NODE\n\t// - Object\n\t// - Any\n\treturn owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );\n};\n\n\n\n\nfunction Data() {\n\tthis.expando = jQuery.expando + Data.uid++;\n}\n\nData.uid = 1;\n\nData.prototype = {\n\n\tcache: function( owner ) {\n\n\t\t// Check if the owner object already has a cache\n\t\tvar value = owner[ this.expando ];\n\n\t\t// If not, create one\n\t\tif ( !value ) {\n\t\t\tvalue = {};\n\n\t\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t\t// but we should not, see #8335.\n\t\t\t// Always return an empty object.\n\t\t\tif ( acceptData( owner ) ) {\n\n\t\t\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t\t\t// use plain assignment\n\t\t\t\tif ( owner.nodeType ) {\n\t\t\t\t\towner[ this.expando ] = value;\n\n\t\t\t\t// Otherwise secure it in a non-enumerable property\n\t\t\t\t// configurable must be true to allow the property to be\n\t\t\t\t// deleted when data is removed\n\t\t\t\t} else {\n\t\t\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\t\t\tvalue: value,\n\t\t\t\t\t\tconfigurable: true\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn value;\n\t},\n\tset: function( owner, data, value ) {\n\t\tvar prop,\n\t\t\tcache = this.cache( owner );\n\n\t\t// Handle: [ owner, key, value ] args\n\t\t// Always use camelCase key (gh-2257)\n\t\tif ( typeof data === \"string\" ) {\n\t\t\tcache[ camelCase( data ) ] = value;\n\n\t\t// Handle: [ owner, { properties } ] args\n\t\t} else {\n\n\t\t\t// Copy the properties one-by-one to the cache object\n\t\t\tfor ( prop in data ) {\n\t\t\t\tcache[ camelCase( prop ) ] = data[ prop ];\n\t\t\t}\n\t\t}\n\t\treturn cache;\n\t},\n\tget: function( owner, key ) {\n\t\treturn key === undefined ?\n\t\t\tthis.cache( owner ) :\n\n\t\t\t// Always use camelCase key (gh-2257)\n\t\t\towner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];\n\t},\n\taccess: function( owner, key, value ) {\n\n\t\t// In cases where either:\n\t\t//\n\t\t// 1. No key was specified\n\t\t// 2. A string key was specified, but no value provided\n\t\t//\n\t\t// Take the \"read\" path and allow the get method to determine\n\t\t// which value to return, respectively either:\n\t\t//\n\t\t// 1. The entire cache object\n\t\t// 2. The data stored at the key\n\t\t//\n\t\tif ( key === undefined ||\n\t\t\t\t( ( key && typeof key === \"string\" ) && value === undefined ) ) {\n\n\t\t\treturn this.get( owner, key );\n\t\t}\n\n\t\t// When the key is not a string, or both a key and value\n\t\t// are specified, set or extend (existing objects) with either:\n\t\t//\n\t\t// 1. An object of properties\n\t\t// 2. A key and value\n\t\t//\n\t\tthis.set( owner, key, value );\n\n\t\t// Since the \"set\" path can have two possible entry points\n\t\t// return the expected data based on which path was taken[*]\n\t\treturn value !== undefined ? value : key;\n\t},\n\tremove: function( owner, key ) {\n\t\tvar i,\n\t\t\tcache = owner[ this.expando ];\n\n\t\tif ( cache === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key !== undefined ) {\n\n\t\t\t// Support array or space separated string of keys\n\t\t\tif ( Array.isArray( key ) ) {\n\n\t\t\t\t// If key is an array of keys...\n\t\t\t\t// We always set camelCase keys, so remove that.\n\t\t\t\tkey = key.map( camelCase );\n\t\t\t} else {\n\t\t\t\tkey = camelCase( key );\n\n\t\t\t\t// If a key with the spaces exists, use it.\n\t\t\t\t// Otherwise, create an array by matching non-whitespace\n\t\t\t\tkey = key in cache ?\n\t\t\t\t\t[ key ] :\n\t\t\t\t\t( key.match( rnothtmlwhite ) || [] );\n\t\t\t}\n\n\t\t\ti = key.length;\n\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete cache[ key[ i ] ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if there's no more data\n\t\tif ( key === undefined || jQuery.isEmptyObject( cache ) ) {\n\n\t\t\t// Support: Chrome <=35 - 45\n\t\t\t// Webkit & Blink performance suffers when deleting properties\n\t\t\t// from DOM nodes, so set to undefined instead\n\t\t\t// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)\n\t\t\tif ( owner.nodeType ) {\n\t\t\t\towner[ this.expando ] = undefined;\n\t\t\t} else {\n\t\t\t\tdelete owner[ this.expando ];\n\t\t\t}\n\t\t}\n\t},\n\thasData: function( owner ) {\n\t\tvar cache = owner[ this.expando ];\n\t\treturn cache !== undefined && !jQuery.isEmptyObject( cache );\n\t}\n};\nvar dataPriv = new Data();\n\nvar dataUser = new Data();\n\n\n\n//\tImplementation Summary\n//\n//\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n//\t2. Improve the module's maintainability by reducing the storage\n//\t\tpaths to a single mechanism.\n//\t3. Use the same single mechanism to support \"private\" and \"user\" data.\n//\t4. _Never_ expose \"private\" data to user code (TODO: Drop _data, _removeData)\n//\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n//\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /[A-Z]/g;\n\nfunction getData( data ) {\n\tif ( data === \"true\" ) {\n\t\treturn true;\n\t}\n\n\tif ( data === \"false\" ) {\n\t\treturn false;\n\t}\n\n\tif ( data === \"null\" ) {\n\t\treturn null;\n\t}\n\n\t// Only convert to a number if it doesn't change the string\n\tif ( data === +data + \"\" ) {\n\t\treturn +data;\n\t}\n\n\tif ( rbrace.test( data ) ) {\n\t\treturn JSON.parse( data );\n\t}\n\n\treturn data;\n}\n\nfunction dataAttr( elem, key, data ) {\n\tvar name;\n\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\t\tname = \"data-\" + key.replace( rmultiDash, \"-$&\" ).toLowerCase();\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = getData( data );\n\t\t\t} catch ( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tdataUser.set( elem, key, data );\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\treturn data;\n}\n\njQuery.extend( {\n\thasData: function( elem ) {\n\t\treturn dataUser.hasData( elem ) || dataPriv.hasData( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn dataUser.access( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\tdataUser.remove( elem, name );\n\t},\n\n\t// TODO: Now that all calls to _data and _removeData have been replaced\n\t// with direct calls to dataPriv methods, these can be deprecated.\n\t_data: function( elem, name, data ) {\n\t\treturn dataPriv.access( elem, name, data );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\tdataPriv.remove( elem, name );\n\t}\n} );\n\njQuery.fn.extend( {\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[ 0 ],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = dataUser.get( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !dataPriv.get( elem, \"hasDataAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE 11 only\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = camelCase( name.slice( 5 ) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdataPriv.set( elem, \"hasDataAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tdataUser.set( this, key );\n\t\t\t} );\n\t\t}\n\n\t\treturn access( this, function( value ) {\n\t\t\tvar data;\n\n\t\t\t// The calling jQuery object (element matches) is not empty\n\t\t\t// (and therefore has an element appears at this[ 0 ]) and the\n\t\t\t// `value` parameter was not undefined. An empty jQuery object\n\t\t\t// will result in `undefined` for elem = this[ 0 ] which will\n\t\t\t// throw an exception if an attempt to read a data cache is made.\n\t\t\tif ( elem && value === undefined ) {\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// The key will always be camelCased in Data\n\t\t\t\tdata = dataUser.get( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Attempt to \"discover\" the data in\n\t\t\t\t// HTML5 custom data-* attrs\n\t\t\t\tdata = dataAttr( elem, key );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// We tried really hard, but the data doesn't exist.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Set the data...\n\t\t\tthis.each( function() {\n\n\t\t\t\t// We always store the camelCased key\n\t\t\t\tdataUser.set( this, key, value );\n\t\t\t} );\n\t\t}, null, value, arguments.length > 1, null, true );\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each( function() {\n\t\t\tdataUser.remove( this, key );\n\t\t} );\n\t}\n} );\n\n\njQuery.extend( {\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = dataPriv.get( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || Array.isArray( data ) ) {\n\t\t\t\t\tqueue = dataPriv.access( elem, type, jQuery.makeArray( data ) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// Clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// Not public - generate a queueHooks object, or return the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn dataPriv.get( elem, key ) || dataPriv.access( elem, key, {\n\t\t\tempty: jQuery.Callbacks( \"once memory\" ).add( function() {\n\t\t\t\tdataPriv.remove( elem, [ type + \"queue\", key ] );\n\t\t\t} )\n\t\t} );\n\t}\n} );\n\njQuery.fn.extend( {\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[ 0 ], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each( function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// Ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[ 0 ] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t} );\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t} );\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = dataPriv.get( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n} );\nvar pnum = ( /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/ ).source;\n\nvar rcssNum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" );\n\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar documentElement = document.documentElement;\n\n\n\n\tvar isAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem );\n\t\t},\n\t\tcomposed = { composed: true };\n\n\t// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only\n\t// Check attachment across shadow DOM boundaries when possible (gh-3504)\n\t// Support: iOS 10.0-10.2 only\n\t// Early iOS 10 versions support `attachShadow` but not `getRootNode`,\n\t// leading to errors. We need to check for `getRootNode`.\n\tif ( documentElement.getRootNode ) {\n\t\tisAttached = function( elem ) {\n\t\t\treturn jQuery.contains( elem.ownerDocument, elem ) ||\n\t\t\t\telem.getRootNode( composed ) === elem.ownerDocument;\n\t\t};\n\t}\nvar isHiddenWithinTree = function( elem, el ) {\n\n\t\t// isHiddenWithinTree might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\n\t\t// Inline style trumps all\n\t\treturn elem.style.display === \"none\" ||\n\t\t\telem.style.display === \"\" &&\n\n\t\t\t// Otherwise, check computed style\n\t\t\t// Support: Firefox <=43 - 45\n\t\t\t// Disconnected elements can have computed display: none, so first confirm that elem is\n\t\t\t// in the document.\n\t\t\tisAttached( elem ) &&\n\n\t\t\tjQuery.css( elem, \"display\" ) === \"none\";\n\t};\n\n\n\nfunction adjustCSS( elem, prop, valueParts, tween ) {\n\tvar adjusted, scale,\n\t\tmaxIterations = 20,\n\t\tcurrentValue = tween ?\n\t\t\tfunction() {\n\t\t\t\treturn tween.cur();\n\t\t\t} :\n\t\t\tfunction() {\n\t\t\t\treturn jQuery.css( elem, prop, \"\" );\n\t\t\t},\n\t\tinitial = currentValue(),\n\t\tunit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t// Starting value computation is required for potential unit mismatches\n\t\tinitialInUnit = elem.nodeType &&\n\t\t\t( jQuery.cssNumber[ prop ] || unit !== \"px\" && +initial ) &&\n\t\t\trcssNum.exec( jQuery.css( elem, prop ) );\n\n\tif ( initialInUnit && initialInUnit[ 3 ] !== unit ) {\n\n\t\t// Support: Firefox <=54\n\t\t// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)\n\t\tinitial = initial / 2;\n\n\t\t// Trust units reported by jQuery.css\n\t\tunit = unit || initialInUnit[ 3 ];\n\n\t\t// Iteratively approximate from a nonzero starting point\n\t\tinitialInUnit = +initial || 1;\n\n\t\twhile ( maxIterations-- ) {\n\n\t\t\t// Evaluate and update our best guess (doubling guesses that zero out).\n\t\t\t// Finish if the scale equals or crosses 1 (making the old*new product non-positive).\n\t\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\t\t\tif ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {\n\t\t\t\tmaxIterations = 0;\n\t\t\t}\n\t\t\tinitialInUnit = initialInUnit / scale;\n\n\t\t}\n\n\t\tinitialInUnit = initialInUnit * 2;\n\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\n\t\t// Make sure we update the tween properties later on\n\t\tvalueParts = valueParts || [];\n\t}\n\n\tif ( valueParts ) {\n\t\tinitialInUnit = +initialInUnit || +initial || 0;\n\n\t\t// Apply relative offset (+=/-=) if specified\n\t\tadjusted = valueParts[ 1 ] ?\n\t\t\tinitialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :\n\t\t\t+valueParts[ 2 ];\n\t\tif ( tween ) {\n\t\t\ttween.unit = unit;\n\t\t\ttween.start = initialInUnit;\n\t\t\ttween.end = adjusted;\n\t\t}\n\t}\n\treturn adjusted;\n}\n\n\nvar defaultDisplayMap = {};\n\nfunction getDefaultDisplay( elem ) {\n\tvar temp,\n\t\tdoc = elem.ownerDocument,\n\t\tnodeName = elem.nodeName,\n\t\tdisplay = defaultDisplayMap[ nodeName ];\n\n\tif ( display ) {\n\t\treturn display;\n\t}\n\n\ttemp = doc.body.appendChild( doc.createElement( nodeName ) );\n\tdisplay = jQuery.css( temp, \"display\" );\n\n\ttemp.parentNode.removeChild( temp );\n\n\tif ( display === \"none\" ) {\n\t\tdisplay = \"block\";\n\t}\n\tdefaultDisplayMap[ nodeName ] = display;\n\n\treturn display;\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\t// Determine new display value for elements that need to change\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\n\t\t\t// Since we force visibility upon cascade-hidden elements, an immediate (and slow)\n\t\t\t// check is required in this first loop unless we have a nonempty display value (either\n\t\t\t// inline or about-to-be-restored)\n\t\t\tif ( display === \"none\" ) {\n\t\t\t\tvalues[ index ] = dataPriv.get( elem, \"display\" ) || null;\n\t\t\t\tif ( !values[ index ] ) {\n\t\t\t\t\telem.style.display = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t\tif ( elem.style.display === \"\" && isHiddenWithinTree( elem ) ) {\n\t\t\t\tvalues[ index ] = getDefaultDisplay( elem );\n\t\t\t}\n\t\t} else {\n\t\t\tif ( display !== \"none\" ) {\n\t\t\t\tvalues[ index ] = \"none\";\n\n\t\t\t\t// Remember what we're overwriting\n\t\t\t\tdataPriv.set( elem, \"display\", display );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of the elements in a second loop to avoid constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\tif ( values[ index ] != null ) {\n\t\t\telements[ index ].style.display = values[ index ];\n\t\t}\n\t}\n\n\treturn elements;\n}\n\njQuery.fn.extend( {\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tif ( isHiddenWithinTree( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t} );\n\t}\n} );\nvar rcheckableType = ( /^(?:checkbox|radio)$/i );\n\nvar rtagName = ( /<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i );\n\nvar rscriptType = ( /^$|^module$|\\/(?:java|ecma)script/i );\n\n\n\n( function() {\n\tvar fragment = document.createDocumentFragment(),\n\t\tdiv = fragment.appendChild( document.createElement( \"div\" ) ),\n\t\tinput = document.createElement( \"input\" );\n\n\t// Support: Android 4.0 - 4.3 only\n\t// Check state lost if the name is set (#11217)\n\t// Support: Windows Web Apps (WWA)\n\t// `name` and `type` must use .setAttribute for WWA (#14901)\n\tinput.setAttribute( \"type\", \"radio\" );\n\tinput.setAttribute( \"checked\", \"checked\" );\n\tinput.setAttribute( \"name\", \"t\" );\n\n\tdiv.appendChild( input );\n\n\t// Support: Android <=4.1 only\n\t// Older WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE <=11 only\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\tdiv.innerHTML = \"\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// Support: IE <=9 only\n\t// IE <=9 replaces \", \"
\" ],\n\tcol: [ 2, \"\", \"
\" ],\n\ttr: [ 2, \"\", \"
\" ],\n\ttd: [ 3, \"\", \"
\" ],\n\n\t_default: [ 0, \"\", \"\" ]\n};\n\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n// Support: IE <=9 only\nif ( !support.option ) {\n\twrapMap.optgroup = wrapMap.option = [ 1, \"\" ];\n}\n\n\nfunction getAll( context, tag ) {\n\n\t// Support: IE <=9 - 11 only\n\t// Use typeof to avoid zero-argument method invocation on host objects (#15151)\n\tvar ret;\n\n\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\tret = context.getElementsByTagName( tag || \"*\" );\n\n\t} else if ( typeof context.querySelectorAll !== \"undefined\" ) {\n\t\tret = context.querySelectorAll( tag || \"*\" );\n\n\t} else {\n\t\tret = [];\n\t}\n\n\tif ( tag === undefined || tag && nodeName( context, tag ) ) {\n\t\treturn jQuery.merge( [ context ], ret );\n\t}\n\n\treturn ret;\n}\n\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar i = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\tdataPriv.set(\n\t\t\telems[ i ],\n\t\t\t\"globalEval\",\n\t\t\t!refElements || dataPriv.get( refElements[ i ], \"globalEval\" )\n\t\t);\n\t}\n}\n\n\nvar rhtml = /<|&#?\\w+;/;\n\nfunction buildFragment( elems, context, scripts, selection, ignored ) {\n\tvar elem, tmp, tag, wrap, attached, j,\n\t\tfragment = context.createDocumentFragment(),\n\t\tnodes = [],\n\t\ti = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\telem = elems[ i ];\n\n\t\tif ( elem || elem === 0 ) {\n\n\t\t\t// Add nodes directly\n\t\t\tif ( toType( elem ) === \"object\" ) {\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t// Convert non-html into a text node\n\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t// Convert html into DOM nodes\n\t\t\t} else {\n\t\t\t\ttmp = tmp || fragment.appendChild( context.createElement( \"div\" ) );\n\n\t\t\t\t// Deserialize a standard representation\n\t\t\t\ttag = ( rtagName.exec( elem ) || [ \"\", \"\" ] )[ 1 ].toLowerCase();\n\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\t\t\t\ttmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];\n\n\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\tj = wrap[ 0 ];\n\t\t\t\twhile ( j-- ) {\n\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t}\n\n\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t// Remember the top-level container\n\t\t\t\ttmp = fragment.firstChild;\n\n\t\t\t\t// Ensure the created nodes are orphaned (#12392)\n\t\t\t\ttmp.textContent = \"\";\n\t\t\t}\n\t\t}\n\t}\n\n\t// Remove wrapper from fragment\n\tfragment.textContent = \"\";\n\n\ti = 0;\n\twhile ( ( elem = nodes[ i++ ] ) ) {\n\n\t\t// Skip elements already in the context collection (trac-4087)\n\t\tif ( selection && jQuery.inArray( elem, selection ) > -1 ) {\n\t\t\tif ( ignored ) {\n\t\t\t\tignored.push( elem );\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tattached = isAttached( elem );\n\n\t\t// Append to fragment\n\t\ttmp = getAll( fragment.appendChild( elem ), \"script\" );\n\n\t\t// Preserve script evaluation history\n\t\tif ( attached ) {\n\t\t\tsetGlobalEval( tmp );\n\t\t}\n\n\t\t// Capture executables\n\t\tif ( scripts ) {\n\t\t\tj = 0;\n\t\t\twhile ( ( elem = tmp[ j++ ] ) ) {\n\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\tscripts.push( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn fragment;\n}\n\n\nvar rtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\n// Support: IE <=9 - 11+\n// focus() and blur() are asynchronous, except when they are no-op.\n// So expect focus to be synchronous when the element is already active,\n// and blur to be synchronous when the element is not already active.\n// (focus and blur are always synchronous in other supported browsers,\n// this just defines when we can count on it).\nfunction expectSync( elem, type ) {\n\treturn ( elem === safeActiveElement() ) === ( type === \"focus\" );\n}\n\n// Support: IE <=9 only\n// Accessing document.activeElement can throw unexpectedly\n// https://bugs.jquery.com/ticket/13393\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\nfunction on( elem, types, selector, data, fn, one ) {\n\tvar origFn, type;\n\n\t// Types can be a map of types/handlers\n\tif ( typeof types === \"object\" ) {\n\n\t\t// ( types-Object, selector, data )\n\t\tif ( typeof selector !== \"string\" ) {\n\n\t\t\t// ( types-Object, data )\n\t\t\tdata = data || selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tfor ( type in types ) {\n\t\t\ton( elem, type, selector, data, types[ type ], one );\n\t\t}\n\t\treturn elem;\n\t}\n\n\tif ( data == null && fn == null ) {\n\n\t\t// ( types, fn )\n\t\tfn = selector;\n\t\tdata = selector = undefined;\n\t} else if ( fn == null ) {\n\t\tif ( typeof selector === \"string\" ) {\n\n\t\t\t// ( types, selector, fn )\n\t\t\tfn = data;\n\t\t\tdata = undefined;\n\t\t} else {\n\n\t\t\t// ( types, data, fn )\n\t\t\tfn = data;\n\t\t\tdata = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t}\n\tif ( fn === false ) {\n\t\tfn = returnFalse;\n\t} else if ( !fn ) {\n\t\treturn elem;\n\t}\n\n\tif ( one === 1 ) {\n\t\torigFn = fn;\n\t\tfn = function( event ) {\n\n\t\t\t// Can use an empty set, since event contains the info\n\t\t\tjQuery().off( event );\n\t\t\treturn origFn.apply( this, arguments );\n\t\t};\n\n\t\t// Use same guid so caller can remove using origFn\n\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t}\n\treturn elem.each( function() {\n\t\tjQuery.event.add( this, types, fn, data, selector );\n\t} );\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar handleObjIn, eventHandle, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.get( elem );\n\n\t\t// Only attach events to objects that accept data\n\t\tif ( !acceptData( elem ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Ensure that invalid selectors throw exceptions at attach time\n\t\t// Evaluate against documentElement in case elem is a non-element node (e.g., document)\n\t\tif ( selector ) {\n\t\t\tjQuery.find.matchesSelector( documentElement, selector );\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !( events = elemData.events ) ) {\n\t\t\tevents = elemData.events = Object.create( null );\n\t\t}\n\t\tif ( !( eventHandle = elemData.handle ) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && jQuery.event.triggered !== e.type ?\n\t\t\t\t\tjQuery.event.dispatch.apply( elem, arguments ) : undefined;\n\t\t\t};\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend( {\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join( \".\" )\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !( handlers = events[ type ] ) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener if the special events handler returns false\n\t\t\t\tif ( !special.setup ||\n\t\t\t\t\tspecial.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar j, origCount, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.hasData( elem ) && dataPriv.get( elem );\n\n\t\tif ( !elemData || !( events = elemData.events ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnothtmlwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[ 2 ] &&\n\t\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector ||\n\t\t\t\t\t\tselector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown ||\n\t\t\t\t\tspecial.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove data and the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdataPriv.remove( elem, \"handle events\" );\n\t\t}\n\t},\n\n\tdispatch: function( nativeEvent ) {\n\n\t\tvar i, j, ret, matched, handleObj, handlerQueue,\n\t\t\targs = new Array( arguments.length ),\n\n\t\t\t// Make a writable jQuery.Event from the native event object\n\t\t\tevent = jQuery.event.fix( nativeEvent ),\n\n\t\t\thandlers = (\n\t\t\t\tdataPriv.get( this, \"events\" ) || Object.create( null )\n\t\t\t)[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[ 0 ] = event;\n\n\t\tfor ( i = 1; i < arguments.length; i++ ) {\n\t\t\targs[ i ] = arguments[ i ];\n\t\t}\n\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( ( handleObj = matched.handlers[ j++ ] ) &&\n\t\t\t\t!event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// If the event is namespaced, then each handler is only invoked if it is\n\t\t\t\t// specially universal or its namespaces are a superset of the event's.\n\t\t\t\tif ( !event.rnamespace || handleObj.namespace === false ||\n\t\t\t\t\tevent.rnamespace.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||\n\t\t\t\t\t\thandleObj.handler ).apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( ( event.result = ret ) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar i, handleObj, sel, matchedHandlers, matchedSelectors,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Find delegate handlers\n\t\tif ( delegateCount &&\n\n\t\t\t// Support: IE <=9\n\t\t\t// Black-hole SVG instance trees (trac-13180)\n\t\t\tcur.nodeType &&\n\n\t\t\t// Support: Firefox <=42\n\t\t\t// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)\n\t\t\t// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click\n\t\t\t// Support: IE 11 only\n\t\t\t// ...but not arrow key \"clicks\" of radio inputs, which can have `button` -1 (gh-2343)\n\t\t\t!( event.type === \"click\" && event.button >= 1 ) ) {\n\n\t\t\tfor ( ; cur !== this; cur = cur.parentNode || this ) {\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && !( event.type === \"click\" && cur.disabled === true ) ) {\n\t\t\t\t\tmatchedHandlers = [];\n\t\t\t\t\tmatchedSelectors = {};\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatchedSelectors[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) > -1 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matchedSelectors[ sel ] ) {\n\t\t\t\t\t\t\tmatchedHandlers.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matchedHandlers.length ) {\n\t\t\t\t\t\thandlerQueue.push( { elem: cur, handlers: matchedHandlers } );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tcur = this;\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\taddProp: function( name, hook ) {\n\t\tObject.defineProperty( jQuery.Event.prototype, name, {\n\t\t\tenumerable: true,\n\t\t\tconfigurable: true,\n\n\t\t\tget: isFunction( hook ) ?\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\treturn hook( this.originalEvent );\n\t\t\t\t\t}\n\t\t\t\t} :\n\t\t\t\tfunction() {\n\t\t\t\t\tif ( this.originalEvent ) {\n\t\t\t\t\t\treturn this.originalEvent[ name ];\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\tset: function( value ) {\n\t\t\t\tObject.defineProperty( this, name, {\n\t\t\t\t\tenumerable: true,\n\t\t\t\t\tconfigurable: true,\n\t\t\t\t\twritable: true,\n\t\t\t\t\tvalue: value\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\t},\n\n\tfix: function( originalEvent ) {\n\t\treturn originalEvent[ jQuery.expando ] ?\n\t\t\toriginalEvent :\n\t\t\tnew jQuery.Event( originalEvent );\n\t},\n\n\tspecial: {\n\t\tload: {\n\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tclick: {\n\n\t\t\t// Utilize native event to ensure correct state for checkable inputs\n\t\t\tsetup: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Claim the first handler\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\t// dataPriv.set( el, \"click\", ... )\n\t\t\t\t\tleverageNative( el, \"click\", returnTrue );\n\t\t\t\t}\n\n\t\t\t\t// Return false to allow normal processing in the caller\n\t\t\t\treturn false;\n\t\t\t},\n\t\t\ttrigger: function( data ) {\n\n\t\t\t\t// For mutual compressibility with _default, replace `this` access with a local var.\n\t\t\t\t// `|| data` is dead code meant only to preserve the variable through minification.\n\t\t\t\tvar el = this || data;\n\n\t\t\t\t// Force setup before triggering a click\n\t\t\t\tif ( rcheckableType.test( el.type ) &&\n\t\t\t\t\tel.click && nodeName( el, \"input\" ) ) {\n\n\t\t\t\t\tleverageNative( el, \"click\" );\n\t\t\t\t}\n\n\t\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\t\treturn true;\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, suppress native .click() on links\n\t\t\t// Also prevent it if we're currently inside a leveraged native-event stack\n\t\t\t_default: function( event ) {\n\t\t\t\tvar target = event.target;\n\t\t\t\treturn rcheckableType.test( target.type ) &&\n\t\t\t\t\ttarget.click && nodeName( target, \"input\" ) &&\n\t\t\t\t\tdataPriv.get( target, \"click\" ) ||\n\t\t\t\t\tnodeName( target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Ensure the presence of an event listener that handles manually-triggered\n// synthetic events by interrupting progress until reinvoked in response to\n// *native* events that it fires directly, ensuring that state changes have\n// already occurred before other listeners are invoked.\nfunction leverageNative( el, type, expectSync ) {\n\n\t// Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add\n\tif ( !expectSync ) {\n\t\tif ( dataPriv.get( el, type ) === undefined ) {\n\t\t\tjQuery.event.add( el, type, returnTrue );\n\t\t}\n\t\treturn;\n\t}\n\n\t// Register the controller as a special universal handler for all event namespaces\n\tdataPriv.set( el, type, false );\n\tjQuery.event.add( el, type, {\n\t\tnamespace: false,\n\t\thandler: function( event ) {\n\t\t\tvar notAsync, result,\n\t\t\t\tsaved = dataPriv.get( this, type );\n\n\t\t\tif ( ( event.isTrigger & 1 ) && this[ type ] ) {\n\n\t\t\t\t// Interrupt processing of the outer synthetic .trigger()ed event\n\t\t\t\t// Saved data should be false in such cases, but might be a leftover capture object\n\t\t\t\t// from an async native handler (gh-4350)\n\t\t\t\tif ( !saved.length ) {\n\n\t\t\t\t\t// Store arguments for use when handling the inner native event\n\t\t\t\t\t// There will always be at least one argument (an event object), so this array\n\t\t\t\t\t// will not be confused with a leftover capture object.\n\t\t\t\t\tsaved = slice.call( arguments );\n\t\t\t\t\tdataPriv.set( this, type, saved );\n\n\t\t\t\t\t// Trigger the native event and capture its result\n\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t// focus() and blur() are asynchronous\n\t\t\t\t\tnotAsync = expectSync( this, type );\n\t\t\t\t\tthis[ type ]();\n\t\t\t\t\tresult = dataPriv.get( this, type );\n\t\t\t\t\tif ( saved !== result || notAsync ) {\n\t\t\t\t\t\tdataPriv.set( this, type, false );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tresult = {};\n\t\t\t\t\t}\n\t\t\t\t\tif ( saved !== result ) {\n\n\t\t\t\t\t\t// Cancel the outer synthetic event\n\t\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t\t\tevent.preventDefault();\n\n\t\t\t\t\t\t// Support: Chrome 86+\n\t\t\t\t\t\t// In Chrome, if an element having a focusout handler is blurred by\n\t\t\t\t\t\t// clicking outside of it, it invokes the handler synchronously. If\n\t\t\t\t\t\t// that handler calls `.remove()` on the element, the data is cleared,\n\t\t\t\t\t\t// leaving `result` undefined. We need to guard against this.\n\t\t\t\t\t\treturn result && result.value;\n\t\t\t\t\t}\n\n\t\t\t\t// If this is an inner synthetic event for an event with a bubbling surrogate\n\t\t\t\t// (focus or blur), assume that the surrogate already propagated from triggering the\n\t\t\t\t// native event and prevent that from happening again here.\n\t\t\t\t// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the\n\t\t\t\t// bubbling surrogate propagates *after* the non-bubbling base), but that seems\n\t\t\t\t// less bad than duplication.\n\t\t\t\t} else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {\n\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t}\n\n\t\t\t// If this is a native event triggered above, everything is now in order\n\t\t\t// Fire an inner synthetic event with the original arguments\n\t\t\t} else if ( saved.length ) {\n\n\t\t\t\t// ...and capture the result\n\t\t\t\tdataPriv.set( this, type, {\n\t\t\t\t\tvalue: jQuery.event.trigger(\n\n\t\t\t\t\t\t// Support: IE <=9 - 11+\n\t\t\t\t\t\t// Extend with the prototype to reset the above stopImmediatePropagation()\n\t\t\t\t\t\tjQuery.extend( saved[ 0 ], jQuery.Event.prototype ),\n\t\t\t\t\t\tsaved.slice( 1 ),\n\t\t\t\t\t\tthis\n\t\t\t\t\t)\n\t\t\t\t} );\n\n\t\t\t\t// Abort handling of the native event\n\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t}\n\t\t}\n\t} );\n}\n\njQuery.removeEvent = function( elem, type, handle ) {\n\n\t// This \"if\" is needed for plain objects\n\tif ( elem.removeEventListener ) {\n\t\telem.removeEventListener( type, handle );\n\t}\n};\n\njQuery.Event = function( src, props ) {\n\n\t// Allow instantiation without the 'new' keyword\n\tif ( !( this instanceof jQuery.Event ) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\n\t\t\t\t// Support: Android <=2.3 only\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t\t// Create target properties\n\t\t// Support: Safari <=6 - 7 only\n\t\t// Target should not be a text node (#504, #13143)\n\t\tthis.target = ( src.target && src.target.nodeType === 3 ) ?\n\t\t\tsrc.target.parentNode :\n\t\t\tsrc.target;\n\n\t\tthis.currentTarget = src.currentTarget;\n\t\tthis.relatedTarget = src.relatedTarget;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || Date.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tconstructor: jQuery.Event,\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\tisSimulated: false,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.preventDefault();\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Includes all common event props including KeyEvent and MouseEvent specific props\njQuery.each( {\n\taltKey: true,\n\tbubbles: true,\n\tcancelable: true,\n\tchangedTouches: true,\n\tctrlKey: true,\n\tdetail: true,\n\teventPhase: true,\n\tmetaKey: true,\n\tpageX: true,\n\tpageY: true,\n\tshiftKey: true,\n\tview: true,\n\t\"char\": true,\n\tcode: true,\n\tcharCode: true,\n\tkey: true,\n\tkeyCode: true,\n\tbutton: true,\n\tbuttons: true,\n\tclientX: true,\n\tclientY: true,\n\toffsetX: true,\n\toffsetY: true,\n\tpointerId: true,\n\tpointerType: true,\n\tscreenX: true,\n\tscreenY: true,\n\ttargetTouches: true,\n\ttoElement: true,\n\ttouches: true,\n\twhich: true\n}, jQuery.event.addProp );\n\njQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( type, delegateType ) {\n\tjQuery.event.special[ type ] = {\n\n\t\t// Utilize native event if possible so blur/focus sequence is correct\n\t\tsetup: function() {\n\n\t\t\t// Claim the first handler\n\t\t\t// dataPriv.set( this, \"focus\", ... )\n\t\t\t// dataPriv.set( this, \"blur\", ... )\n\t\t\tleverageNative( this, type, expectSync );\n\n\t\t\t// Return false to allow normal processing in the caller\n\t\t\treturn false;\n\t\t},\n\t\ttrigger: function() {\n\n\t\t\t// Force setup before trigger\n\t\t\tleverageNative( this, type );\n\n\t\t\t// Return non-false to allow normal event-path propagation\n\t\t\treturn true;\n\t\t},\n\n\t\t// Suppress native focus or blur as it's already being fired\n\t\t// in leverageNative.\n\t\t_default: function() {\n\t\t\treturn true;\n\t\t},\n\n\t\tdelegateType: delegateType\n\t};\n} );\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\n// so that event delegation works in jQuery.\n// Do the same for pointerenter/pointerleave and pointerover/pointerout\n//\n// Support: Safari 7 only\n// Safari sends mouseenter too often; see:\n// https://bugs.chromium.org/p/chromium/issues/detail?id=470258\n// for the description of the bug (it existed in older Chrome versions as well).\njQuery.each( {\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mouseenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n} );\n\njQuery.fn.extend( {\n\n\ton: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn );\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\n\t\t\t// ( event ) dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ?\n\t\t\t\t\thandleObj.origType + \".\" + handleObj.namespace :\n\t\t\t\t\thandleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t} );\n\t}\n} );\n\n\nvar\n\n\t// Support: IE <=10 - 11, Edge 12 - 13 only\n\t// In IE/Edge using regex groups here causes severe slowdowns.\n\t// See https://connect.microsoft.com/IE/feedback/details/1736512/\n\trnoInnerhtml = /\\s*$/g;\n\n// Prefer a tbody over its parent table for containing new rows\nfunction manipulationTarget( elem, content ) {\n\tif ( nodeName( elem, \"table\" ) &&\n\t\tnodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ) {\n\n\t\treturn jQuery( elem ).children( \"tbody\" )[ 0 ] || elem;\n\t}\n\n\treturn elem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = ( elem.getAttribute( \"type\" ) !== null ) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tif ( ( elem.type || \"\" ).slice( 0, 5 ) === \"true/\" ) {\n\t\telem.type = elem.type.slice( 5 );\n\t} else {\n\t\telem.removeAttribute( \"type\" );\n\t}\n\n\treturn elem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\tvar i, l, type, pdataOld, udataOld, udataCur, events;\n\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// 1. Copy private data: events, handlers, etc.\n\tif ( dataPriv.hasData( src ) ) {\n\t\tpdataOld = dataPriv.get( src );\n\t\tevents = pdataOld.events;\n\n\t\tif ( events ) {\n\t\t\tdataPriv.remove( dest, \"handle events\" );\n\n\t\t\tfor ( type in events ) {\n\t\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// 2. Copy user data\n\tif ( dataUser.hasData( src ) ) {\n\t\tudataOld = dataUser.access( src );\n\t\tudataCur = jQuery.extend( {}, udataOld );\n\n\t\tdataUser.set( dest, udataCur );\n\t}\n}\n\n// Fix IE bugs, see support tests\nfunction fixInput( src, dest ) {\n\tvar nodeName = dest.nodeName.toLowerCase();\n\n\t// Fails to persist the checked state of a cloned checkbox or radio button.\n\tif ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\tdest.checked = src.checked;\n\n\t// Fails to return the selected option to the default selected state when cloning options\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\nfunction domManip( collection, args, callback, ignored ) {\n\n\t// Flatten any nested arrays\n\targs = flat( args );\n\n\tvar fragment, first, scripts, hasScripts, node, doc,\n\t\ti = 0,\n\t\tl = collection.length,\n\t\tiNoClone = l - 1,\n\t\tvalue = args[ 0 ],\n\t\tvalueIsFunction = isFunction( value );\n\n\t// We can't cloneNode fragments that contain checked, in WebKit\n\tif ( valueIsFunction ||\n\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\treturn collection.each( function( index ) {\n\t\t\tvar self = collection.eq( index );\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\targs[ 0 ] = value.call( this, index, self.html() );\n\t\t\t}\n\t\t\tdomManip( self, args, callback, ignored );\n\t\t} );\n\t}\n\n\tif ( l ) {\n\t\tfragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );\n\t\tfirst = fragment.firstChild;\n\n\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\tfragment = first;\n\t\t}\n\n\t\t// Require either new content or an interest in ignored elements to invoke the callback\n\t\tif ( first || ignored ) {\n\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\thasScripts = scripts.length;\n\n\t\t\t// Use the original fragment for the last item\n\t\t\t// instead of the first because it can end up\n\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tnode = fragment;\n\n\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\tif ( hasScripts ) {\n\n\t\t\t\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcallback.call( collection[ i ], node, i );\n\t\t\t}\n\n\t\t\tif ( hasScripts ) {\n\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t// Reenable scripts\n\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t!dataPriv.access( node, \"globalEval\" ) &&\n\t\t\t\t\t\tjQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\tif ( node.src && ( node.type || \"\" ).toLowerCase() !== \"module\" ) {\n\n\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\tif ( jQuery._evalUrl && !node.noModule ) {\n\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src, {\n\t\t\t\t\t\t\t\t\tnonce: node.nonce || node.getAttribute( \"nonce\" )\n\t\t\t\t\t\t\t\t}, doc );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tDOMEval( node.textContent.replace( rcleanScript, \"\" ), node, doc );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn collection;\n}\n\nfunction remove( elem, selector, keepData ) {\n\tvar node,\n\t\tnodes = selector ? jQuery.filter( selector, elem ) : elem,\n\t\ti = 0;\n\n\tfor ( ; ( node = nodes[ i ] ) != null; i++ ) {\n\t\tif ( !keepData && node.nodeType === 1 ) {\n\t\t\tjQuery.cleanData( getAll( node ) );\n\t\t}\n\n\t\tif ( node.parentNode ) {\n\t\t\tif ( keepData && isAttached( node ) ) {\n\t\t\t\tsetGlobalEval( getAll( node, \"script\" ) );\n\t\t\t}\n\t\t\tnode.parentNode.removeChild( node );\n\t\t}\n\t}\n\n\treturn elem;\n}\n\njQuery.extend( {\n\thtmlPrefilter: function( html ) {\n\t\treturn html;\n\t},\n\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar i, l, srcElements, destElements,\n\t\t\tclone = elem.cloneNode( true ),\n\t\t\tinPage = isAttached( elem );\n\n\t\t// Fix IE cloning issues\n\t\tif ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&\n\t\t\t\t!jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\tfixInput( srcElements[ i ], destElements[ i ] );\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[ i ], destElements[ i ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, elem, type,\n\t\t\tspecial = jQuery.event.special,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {\n\t\t\tif ( acceptData( elem ) ) {\n\t\t\t\tif ( ( data = elem[ dataPriv.expando ] ) ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataPriv.expando ] = undefined;\n\t\t\t\t}\n\t\t\t\tif ( elem[ dataUser.expando ] ) {\n\n\t\t\t\t\t// Support: Chrome <=35 - 45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataUser.expando ] = undefined;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n} );\n\njQuery.fn.extend( {\n\tdetach: function( selector ) {\n\t\treturn remove( this, selector, true );\n\t},\n\n\tremove: function( selector ) {\n\t\treturn remove( this, selector );\n\t},\n\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().each( function() {\n\t\t\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\t\t\tthis.textContent = value;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t} );\n\t},\n\n\tprepend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t} );\n\t},\n\n\tbefore: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t} );\n\t},\n\n\tafter: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t} );\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = this[ i ] ) != null; i++ ) {\n\t\t\tif ( elem.nodeType === 1 ) {\n\n\t\t\t\t// Prevent memory leaks\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\n\t\t\t\t// Remove any remaining nodes\n\t\t\t\telem.textContent = \"\";\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t} );\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined && elem.nodeType === 1 ) {\n\t\t\t\treturn elem.innerHTML;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t!wrapMap[ ( rtagName.exec( value ) || [ \"\", \"\" ] )[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = jQuery.htmlPrefilter( value );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\t\telem = this[ i ] || {};\n\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch ( e ) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar ignored = [];\n\n\t\t// Make the changes, replacing each non-ignored context element with the new content\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tvar parent = this.parentNode;\n\n\t\t\tif ( jQuery.inArray( this, ignored ) < 0 ) {\n\t\t\t\tjQuery.cleanData( getAll( this ) );\n\t\t\t\tif ( parent ) {\n\t\t\t\t\tparent.replaceChild( elem, this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Force callback invocation\n\t\t}, ignored );\n\t}\n} );\n\njQuery.each( {\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1,\n\t\t\ti = 0;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone( true );\n\t\t\tjQuery( insert[ i ] )[ original ]( elems );\n\n\t\t\t// Support: Android <=4.0 only, PhantomJS 1 only\n\t\t\t// .get() because push.apply(_, arraylike) throws on ancient WebKit\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n} );\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\nvar getStyles = function( elem ) {\n\n\t\t// Support: IE <=11 only, Firefox <=30 (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tvar view = elem.ownerDocument.defaultView;\n\n\t\tif ( !view || !view.opener ) {\n\t\t\tview = window;\n\t\t}\n\n\t\treturn view.getComputedStyle( elem );\n\t};\n\nvar swap = function( elem, options, callback ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.call( elem );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar rboxStyle = new RegExp( cssExpand.join( \"|\" ), \"i\" );\n\n\n\n( function() {\n\n\t// Executing both pixelPosition & boxSizingReliable tests require only one layout\n\t// so they're executed at the same time to save the second computation.\n\tfunction computeStyleTests() {\n\n\t\t// This is a singleton, we need to execute it only once\n\t\tif ( !div ) {\n\t\t\treturn;\n\t\t}\n\n\t\tcontainer.style.cssText = \"position:absolute;left:-11111px;width:60px;\" +\n\t\t\t\"margin-top:1px;padding:0;border:0\";\n\t\tdiv.style.cssText =\n\t\t\t\"position:relative;display:block;box-sizing:border-box;overflow:scroll;\" +\n\t\t\t\"margin:auto;border:1px;padding:1px;\" +\n\t\t\t\"width:60%;top:1%\";\n\t\tdocumentElement.appendChild( container ).appendChild( div );\n\n\t\tvar divStyle = window.getComputedStyle( div );\n\t\tpixelPositionVal = divStyle.top !== \"1%\";\n\n\t\t// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44\n\t\treliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;\n\n\t\t// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3\n\t\t// Some styles come back with percentage values, even though they shouldn't\n\t\tdiv.style.right = \"60%\";\n\t\tpixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;\n\n\t\t// Support: IE 9 - 11 only\n\t\t// Detect misreporting of content dimensions for box-sizing:border-box elements\n\t\tboxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;\n\n\t\t// Support: IE 9 only\n\t\t// Detect overflow:scroll screwiness (gh-3699)\n\t\t// Support: Chrome <=64\n\t\t// Don't get tricked when zoom affects offsetWidth (gh-4029)\n\t\tdiv.style.position = \"absolute\";\n\t\tscrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;\n\n\t\tdocumentElement.removeChild( container );\n\n\t\t// Nullify the div so it wouldn't be stored in the memory and\n\t\t// it will also be a sign that checks already performed\n\t\tdiv = null;\n\t}\n\n\tfunction roundPixelMeasures( measure ) {\n\t\treturn Math.round( parseFloat( measure ) );\n\t}\n\n\tvar pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,\n\t\treliableTrDimensionsVal, reliableMarginLeftVal,\n\t\tcontainer = document.createElement( \"div\" ),\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !div.style ) {\n\t\treturn;\n\t}\n\n\t// Support: IE <=9 - 11 only\n\t// Style of cloned element affects source element cloned (#8908)\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\tjQuery.extend( support, {\n\t\tboxSizingReliable: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\t\tpixelBoxStyles: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelBoxStylesVal;\n\t\t},\n\t\tpixelPosition: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelPositionVal;\n\t\t},\n\t\treliableMarginLeft: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn reliableMarginLeftVal;\n\t\t},\n\t\tscrollboxSize: function() {\n\t\t\tcomputeStyleTests();\n\t\t\treturn scrollboxSizeVal;\n\t\t},\n\n\t\t// Support: IE 9 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Behavior in IE 9 is more subtle than in newer versions & it passes\n\t\t// some versions of this test; make sure not to make it pass there!\n\t\t//\n\t\t// Support: Firefox 70+\n\t\t// Only Firefox includes border widths\n\t\t// in computed dimensions. (gh-4529)\n\t\treliableTrDimensions: function() {\n\t\t\tvar table, tr, trChild, trStyle;\n\t\t\tif ( reliableTrDimensionsVal == null ) {\n\t\t\t\ttable = document.createElement( \"table\" );\n\t\t\t\ttr = document.createElement( \"tr\" );\n\t\t\t\ttrChild = document.createElement( \"div\" );\n\n\t\t\t\ttable.style.cssText = \"position:absolute;left:-11111px;border-collapse:separate\";\n\t\t\t\ttr.style.cssText = \"border:1px solid\";\n\n\t\t\t\t// Support: Chrome 86+\n\t\t\t\t// Height set through cssText does not get applied.\n\t\t\t\t// Computed height then comes back as 0.\n\t\t\t\ttr.style.height = \"1px\";\n\t\t\t\ttrChild.style.height = \"9px\";\n\n\t\t\t\t// Support: Android 8 Chrome 86+\n\t\t\t\t// In our bodyBackground.html iframe,\n\t\t\t\t// display for all div elements is set to \"inline\",\n\t\t\t\t// which causes a problem only in Android 8 Chrome 86.\n\t\t\t\t// Ensuring the div is display: block\n\t\t\t\t// gets around this issue.\n\t\t\t\ttrChild.style.display = \"block\";\n\n\t\t\t\tdocumentElement\n\t\t\t\t\t.appendChild( table )\n\t\t\t\t\t.appendChild( tr )\n\t\t\t\t\t.appendChild( trChild );\n\n\t\t\t\ttrStyle = window.getComputedStyle( tr );\n\t\t\t\treliableTrDimensionsVal = ( parseInt( trStyle.height, 10 ) +\n\t\t\t\t\tparseInt( trStyle.borderTopWidth, 10 ) +\n\t\t\t\t\tparseInt( trStyle.borderBottomWidth, 10 ) ) === tr.offsetHeight;\n\n\t\t\t\tdocumentElement.removeChild( table );\n\t\t\t}\n\t\t\treturn reliableTrDimensionsVal;\n\t\t}\n\t} );\n} )();\n\n\nfunction curCSS( elem, name, computed ) {\n\tvar width, minWidth, maxWidth, ret,\n\n\t\t// Support: Firefox 51+\n\t\t// Retrieving style before computed somehow\n\t\t// fixes an issue with getting wrong values\n\t\t// on detached elements\n\t\tstyle = elem.style;\n\n\tcomputed = computed || getStyles( elem );\n\n\t// getPropertyValue is needed for:\n\t// .css('filter') (IE 9 only, #12537)\n\t// .css('--customProperty) (#3144)\n\tif ( computed ) {\n\t\tret = computed.getPropertyValue( name ) || computed[ name ];\n\n\t\tif ( ret === \"\" && !isAttached( elem ) ) {\n\t\t\tret = jQuery.style( elem, name );\n\t\t}\n\n\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t// Android Browser returns percentage for some values,\n\t\t// but width seems to be reliably pixels.\n\t\t// This is against the CSSOM draft spec:\n\t\t// https://drafts.csswg.org/cssom/#resolved-values\n\t\tif ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\twidth = style.width;\n\t\t\tminWidth = style.minWidth;\n\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\tret = computed.width;\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.width = width;\n\t\t\tstyle.minWidth = minWidth;\n\t\t\tstyle.maxWidth = maxWidth;\n\t\t}\n\t}\n\n\treturn ret !== undefined ?\n\n\t\t// Support: IE <=9 - 11 only\n\t\t// IE returns zIndex value as an integer.\n\t\tret + \"\" :\n\t\tret;\n}\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tif ( conditionFn() ) {\n\n\t\t\t\t// Hook not needed (or it's not possible to use it due\n\t\t\t\t// to missing dependency), remove it.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\t\t\treturn ( this.get = hookFn ).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\nvar cssPrefixes = [ \"Webkit\", \"Moz\", \"ms\" ],\n\temptyStyle = document.createElement( \"div\" ).style,\n\tvendorProps = {};\n\n// Return a vendor-prefixed property or undefined\nfunction vendorPropName( name ) {\n\n\t// Check for vendor prefixed names\n\tvar capName = name[ 0 ].toUpperCase() + name.slice( 1 ),\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in emptyStyle ) {\n\t\t\treturn name;\n\t\t}\n\t}\n}\n\n// Return a potentially-mapped jQuery.cssProps or vendor prefixed property\nfunction finalPropName( name ) {\n\tvar final = jQuery.cssProps[ name ] || vendorProps[ name ];\n\n\tif ( final ) {\n\t\treturn final;\n\t}\n\tif ( name in emptyStyle ) {\n\t\treturn name;\n\t}\n\treturn vendorProps[ name ] = vendorPropName( name ) || name;\n}\n\n\nvar\n\n\t// Swappable if display is none or starts with table\n\t// except \"table\", \"table-cell\", or \"table-caption\"\n\t// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trcustomProp = /^--/,\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t};\n\nfunction setPositiveNumber( _elem, value, subtract ) {\n\n\t// Any relative (+/-) values have already been\n\t// normalized at this point\n\tvar matches = rcssNum.exec( value );\n\treturn matches ?\n\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {\n\tvar i = dimension === \"width\" ? 1 : 0,\n\t\textra = 0,\n\t\tdelta = 0;\n\n\t// Adjustment may not be necessary\n\tif ( box === ( isBorderBox ? \"border\" : \"content\" ) ) {\n\t\treturn 0;\n\t}\n\n\tfor ( ; i < 4; i += 2 ) {\n\n\t\t// Both box models exclude margin\n\t\tif ( box === \"margin\" ) {\n\t\t\tdelta += jQuery.css( elem, box + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\t// If we get here with a content-box, we're seeking \"padding\" or \"border\" or \"margin\"\n\t\tif ( !isBorderBox ) {\n\n\t\t\t// Add padding\n\t\t\tdelta += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// For \"border\" or \"margin\", add border\n\t\t\tif ( box !== \"padding\" ) {\n\t\t\t\tdelta += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\n\t\t\t// But still keep track of it otherwise\n\t\t\t} else {\n\t\t\t\textra += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\n\t\t// If we get here with a border-box (content + padding + border), we're seeking \"content\" or\n\t\t// \"padding\" or \"margin\"\n\t\t} else {\n\n\t\t\t// For \"content\", subtract padding\n\t\t\tif ( box === \"content\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// For \"content\" or \"padding\", subtract border\n\t\t\tif ( box !== \"margin\" ) {\n\t\t\t\tdelta -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\t// Account for positive content-box scroll gutter when requested by providing computedVal\n\tif ( !isBorderBox && computedVal >= 0 ) {\n\n\t\t// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border\n\t\t// Assuming integer scroll gutter, subtract the rest and round down\n\t\tdelta += Math.max( 0, Math.ceil(\n\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\tcomputedVal -\n\t\t\tdelta -\n\t\t\textra -\n\t\t\t0.5\n\n\t\t// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter\n\t\t// Use an explicit zero to avoid NaN (gh-3964)\n\t\t) ) || 0;\n\t}\n\n\treturn delta;\n}\n\nfunction getWidthOrHeight( elem, dimension, extra ) {\n\n\t// Start with computed style\n\tvar styles = getStyles( elem ),\n\n\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).\n\t\t// Fake content-box until we know it's needed to know the true value.\n\t\tboxSizingNeeded = !support.boxSizingReliable() || extra,\n\t\tisBorderBox = boxSizingNeeded &&\n\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\tvalueIsBorderBox = isBorderBox,\n\n\t\tval = curCSS( elem, dimension, styles ),\n\t\toffsetProp = \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );\n\n\t// Support: Firefox <=54\n\t// Return a confounding non-pixel value or feign ignorance, as appropriate.\n\tif ( rnumnonpx.test( val ) ) {\n\t\tif ( !extra ) {\n\t\t\treturn val;\n\t\t}\n\t\tval = \"auto\";\n\t}\n\n\n\t// Support: IE 9 - 11 only\n\t// Use offsetWidth/offsetHeight for when box sizing is unreliable.\n\t// In those cases, the computed value can be trusted to be border-box.\n\tif ( ( !support.boxSizingReliable() && isBorderBox ||\n\n\t\t// Support: IE 10 - 11+, Edge 15 - 18+\n\t\t// IE/Edge misreport `getComputedStyle` of table rows with width/height\n\t\t// set in CSS while `offset*` properties report correct values.\n\t\t// Interestingly, in some cases IE 9 doesn't suffer from this issue.\n\t\t!support.reliableTrDimensions() && nodeName( elem, \"tr\" ) ||\n\n\t\t// Fall back to offsetWidth/offsetHeight when value is \"auto\"\n\t\t// This happens for inline elements with no explicit setting (gh-3571)\n\t\tval === \"auto\" ||\n\n\t\t// Support: Android <=4.1 - 4.3 only\n\t\t// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)\n\t\t!parseFloat( val ) && jQuery.css( elem, \"display\", false, styles ) === \"inline\" ) &&\n\n\t\t// Make sure the element is visible & connected\n\t\telem.getClientRects().length ) {\n\n\t\tisBorderBox = jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t\t// Where available, offsetWidth/offsetHeight approximate border box dimensions.\n\t\t// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the\n\t\t// retrieved value as a content box dimension.\n\t\tvalueIsBorderBox = offsetProp in elem;\n\t\tif ( valueIsBorderBox ) {\n\t\t\tval = elem[ offsetProp ];\n\t\t}\n\t}\n\n\t// Normalize \"\" and auto\n\tval = parseFloat( val ) || 0;\n\n\t// Adjust for the element's box model\n\treturn ( val +\n\t\tboxModelAdjustment(\n\t\t\telem,\n\t\t\tdimension,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles,\n\n\t\t\t// Provide the current computed size to request scroll gutter calculation (gh-3589)\n\t\t\tval\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend( {\n\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"animationIterationCount\": true,\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"gridArea\": true,\n\t\t\"gridColumn\": true,\n\t\t\"gridColumnEnd\": true,\n\t\t\"gridColumnStart\": true,\n\t\t\"gridRow\": true,\n\t\t\"gridRowEnd\": true,\n\t\t\"gridRowStart\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name ),\n\t\t\tstyle = elem.style;\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to query the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Gets hook for the prefixed version, then unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// Convert \"+=\" or \"-=\" to relative numbers (#7345)\n\t\t\tif ( type === \"string\" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {\n\t\t\t\tvalue = adjustCSS( elem, name, ret );\n\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set (#7116)\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add the unit (except for certain CSS properties)\n\t\t\t// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append\n\t\t\t// \"px\" to a few hardcoded values.\n\t\t\tif ( type === \"number\" && !isCustomProp ) {\n\t\t\t\tvalue += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? \"\" : \"px\" );\n\t\t\t}\n\n\t\t\t// background-* props affect original clone's values\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf( \"background\" ) === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !( \"set\" in hooks ) ||\n\t\t\t\t( value = hooks.set( elem, value, extra ) ) !== undefined ) {\n\n\t\t\t\tif ( isCustomProp ) {\n\t\t\t\t\tstyle.setProperty( name, value );\n\t\t\t\t} else {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else {\n\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks &&\n\t\t\t\t( ret = hooks.get( elem, false, extra ) ) !== undefined ) {\n\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar val, num, hooks,\n\t\t\torigName = camelCase( name ),\n\t\t\tisCustomProp = rcustomProp.test( name );\n\n\t\t// Make sure that we're working with the right name. We don't\n\t\t// want to modify the value if it is a CSS custom property\n\t\t// since they are user-defined.\n\t\tif ( !isCustomProp ) {\n\t\t\tname = finalPropName( origName );\n\t\t}\n\n\t\t// Try prefixed name followed by the unprefixed name\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t// Convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Make numeric if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || isFinite( num ) ? num || 0 : val;\n\t\t}\n\n\t\treturn val;\n\t}\n} );\n\njQuery.each( [ \"height\", \"width\" ], function( _i, dimension ) {\n\tjQuery.cssHooks[ dimension ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\n\t\t\t\t// Certain elements can have dimension info if we invisibly show them\n\t\t\t\t// but it must have a current display style that would benefit\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) &&\n\n\t\t\t\t\t// Support: Safari 8+\n\t\t\t\t\t// Table columns in Safari have non-zero offsetWidth & zero\n\t\t\t\t\t// getBoundingClientRect().width unless display is changed.\n\t\t\t\t\t// Support: IE <=11 only\n\t\t\t\t\t// Running getBoundingClientRect on a disconnected node\n\t\t\t\t\t// in IE throws an error.\n\t\t\t\t\t( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?\n\t\t\t\t\tswap( elem, cssShow, function() {\n\t\t\t\t\t\treturn getWidthOrHeight( elem, dimension, extra );\n\t\t\t\t\t} ) :\n\t\t\t\t\tgetWidthOrHeight( elem, dimension, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar matches,\n\t\t\t\tstyles = getStyles( elem ),\n\n\t\t\t\t// Only read styles.position if the test has a chance to fail\n\t\t\t\t// to avoid forcing a reflow.\n\t\t\t\tscrollboxSizeBuggy = !support.scrollboxSize() &&\n\t\t\t\t\tstyles.position === \"absolute\",\n\n\t\t\t\t// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)\n\t\t\t\tboxSizingNeeded = scrollboxSizeBuggy || extra,\n\t\t\t\tisBorderBox = boxSizingNeeded &&\n\t\t\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\tsubtract = extra ?\n\t\t\t\t\tboxModelAdjustment(\n\t\t\t\t\t\telem,\n\t\t\t\t\t\tdimension,\n\t\t\t\t\t\textra,\n\t\t\t\t\t\tisBorderBox,\n\t\t\t\t\t\tstyles\n\t\t\t\t\t) :\n\t\t\t\t\t0;\n\n\t\t\t// Account for unreliable border-box dimensions by comparing offset* to computed and\n\t\t\t// faking a content-box to get border and padding (gh-3699)\n\t\t\tif ( isBorderBox && scrollboxSizeBuggy ) {\n\t\t\t\tsubtract -= Math.ceil(\n\t\t\t\t\telem[ \"offset\" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -\n\t\t\t\t\tparseFloat( styles[ dimension ] ) -\n\t\t\t\t\tboxModelAdjustment( elem, dimension, \"border\", false, styles ) -\n\t\t\t\t\t0.5\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Convert to pixels if value adjustment is needed\n\t\t\tif ( subtract && ( matches = rcssNum.exec( value ) ) &&\n\t\t\t\t( matches[ 3 ] || \"px\" ) !== \"px\" ) {\n\n\t\t\t\telem.style[ dimension ] = value;\n\t\t\t\tvalue = jQuery.css( elem, dimension );\n\t\t\t}\n\n\t\t\treturn setPositiveNumber( elem, value, subtract );\n\t\t}\n\t};\n} );\n\njQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn ( parseFloat( curCSS( elem, \"marginLeft\" ) ) ||\n\t\t\t\telem.getBoundingClientRect().left -\n\t\t\t\t\tswap( elem, { marginLeft: 0 }, function() {\n\t\t\t\t\t\treturn elem.getBoundingClientRect().left;\n\t\t\t\t\t} )\n\t\t\t) + \"px\";\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each( {\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// Assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split( \" \" ) : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( prefix !== \"margin\" ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n} );\n\njQuery.fn.extend( {\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( Array.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t}\n} );\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || jQuery.easing._default;\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\t// Use a property on the element directly when it is not a DOM element,\n\t\t\t// or when there is no matching style property that exists.\n\t\t\tif ( tween.elem.nodeType !== 1 ||\n\t\t\t\ttween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// Passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails.\n\t\t\t// Simple values such as \"10px\" are parsed to Float;\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as-is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\n\t\t\t// Use step hook for back compat.\n\t\t\t// Use cssHook if its there.\n\t\t\t// Use .style if available and use plain properties where available.\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.nodeType === 1 && (\n\t\t\t\tjQuery.cssHooks[ tween.prop ] ||\n\t\t\t\t\ttween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9 only\n// Panic based approach to setting things on disconnected nodes\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t},\n\t_default: \"swing\"\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, inProgress,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trrun = /queueHooks$/;\n\nfunction schedule() {\n\tif ( inProgress ) {\n\t\tif ( document.hidden === false && window.requestAnimationFrame ) {\n\t\t\twindow.requestAnimationFrame( schedule );\n\t\t} else {\n\t\t\twindow.setTimeout( schedule, jQuery.fx.interval );\n\t\t}\n\n\t\tjQuery.fx.tick();\n\t}\n}\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\twindow.setTimeout( function() {\n\t\tfxNow = undefined;\n\t} );\n\treturn ( fxNow = Date.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\ti = 0,\n\t\tattrs = { height: type };\n\n\t// If we include width, step value is 1 to do all cssExpand values,\n\t// otherwise step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {\n\n\t\t\t// We're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\tvar prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,\n\t\tisBox = \"width\" in props || \"height\" in props,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHiddenWithinTree( elem ),\n\t\tdataShow = dataPriv.get( elem, \"fxshow\" );\n\n\t// Queue-skipping animations hijack the fx hooks\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always( function() {\n\n\t\t\t// Ensure the complete handler is called before this completes\n\t\t\tanim.always( function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t}\n\n\t// Detect show/hide animations\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.test( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// Pretend to be hidden if this is a \"show\" and\n\t\t\t\t// there is still data from a stopped show/hide\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\n\t\t\t\t// Ignore all other no-op show/hide data\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\t\t}\n\t}\n\n\t// Bail out if this is a no-op like .hide().hide()\n\tpropTween = !jQuery.isEmptyObject( props );\n\tif ( !propTween && jQuery.isEmptyObject( orig ) ) {\n\t\treturn;\n\t}\n\n\t// Restrict \"overflow\" and \"display\" styles during box animations\n\tif ( isBox && elem.nodeType === 1 ) {\n\n\t\t// Support: IE <=9 - 11, Edge 12 - 15\n\t\t// Record all 3 overflow attributes because IE does not infer the shorthand\n\t\t// from identically-valued overflowX and overflowY and Edge just mirrors\n\t\t// the overflowX value there.\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Identify a display type, preferring old show/hide data over the CSS cascade\n\t\trestoreDisplay = dataShow && dataShow.display;\n\t\tif ( restoreDisplay == null ) {\n\t\t\trestoreDisplay = dataPriv.get( elem, \"display\" );\n\t\t}\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\tif ( display === \"none\" ) {\n\t\t\tif ( restoreDisplay ) {\n\t\t\t\tdisplay = restoreDisplay;\n\t\t\t} else {\n\n\t\t\t\t// Get nonempty value(s) by temporarily forcing visibility\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t\trestoreDisplay = elem.style.display || restoreDisplay;\n\t\t\t\tdisplay = jQuery.css( elem, \"display\" );\n\t\t\t\tshowHide( [ elem ] );\n\t\t\t}\n\t\t}\n\n\t\t// Animate inline elements as inline-block\n\t\tif ( display === \"inline\" || display === \"inline-block\" && restoreDisplay != null ) {\n\t\t\tif ( jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t\t// Restore the original display value at the end of pure show/hide animations\n\t\t\t\tif ( !propTween ) {\n\t\t\t\t\tanim.done( function() {\n\t\t\t\t\t\tstyle.display = restoreDisplay;\n\t\t\t\t\t} );\n\t\t\t\t\tif ( restoreDisplay == null ) {\n\t\t\t\t\t\tdisplay = style.display;\n\t\t\t\t\t\trestoreDisplay = display === \"none\" ? \"\" : display;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tanim.always( function() {\n\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t} );\n\t}\n\n\t// Implement show/hide animations\n\tpropTween = false;\n\tfor ( prop in orig ) {\n\n\t\t// General show/hide setup for this element animation\n\t\tif ( !propTween ) {\n\t\t\tif ( dataShow ) {\n\t\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\t\thidden = dataShow.hidden;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdataShow = dataPriv.access( elem, \"fxshow\", { display: restoreDisplay } );\n\t\t\t}\n\n\t\t\t// Store hidden/visible for toggle so `.stop().toggle()` \"reverses\"\n\t\t\tif ( toggle ) {\n\t\t\t\tdataShow.hidden = !hidden;\n\t\t\t}\n\n\t\t\t// Show elements before animating them\n\t\t\tif ( hidden ) {\n\t\t\t\tshowHide( [ elem ], true );\n\t\t\t}\n\n\t\t\t/* eslint-disable no-loop-func */\n\n\t\t\tanim.done( function() {\n\n\t\t\t\t/* eslint-enable no-loop-func */\n\n\t\t\t\t// The final step of a \"hide\" animation is actually hiding the element\n\t\t\t\tif ( !hidden ) {\n\t\t\t\t\tshowHide( [ elem ] );\n\t\t\t\t}\n\t\t\t\tdataPriv.remove( elem, \"fxshow\" );\n\t\t\t\tfor ( prop in orig ) {\n\t\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Per-property setup\n\t\tpropTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\t\tif ( !( prop in dataShow ) ) {\n\t\t\tdataShow[ prop ] = propTween.start;\n\t\t\tif ( hidden ) {\n\t\t\t\tpropTween.end = propTween.start;\n\t\t\t\tpropTween.start = 0;\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( Array.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// Not quite $.extend, this won't overwrite existing keys.\n\t\t\t// Reusing 'index' because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = Animation.prefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\n\t\t\t// Don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t} ),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\n\t\t\t\t// Support: Android 2.3 only\n\t\t\t\t// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ] );\n\n\t\t\t// If there's more to do, yield\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t}\n\n\t\t\t// If this was an empty animation, synthesize a final progress notification\n\t\t\tif ( !length ) {\n\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t}\n\n\t\t\t// Resolve the animation and report its conclusion\n\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\treturn false;\n\t\t},\n\t\tanimation = deferred.promise( {\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, {\n\t\t\t\tspecialEasing: {},\n\t\t\t\teasing: jQuery.easing._default\n\t\t\t}, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\n\t\t\t\t\t// If we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// Resolve when we played the last frame; otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t} ),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length; index++ ) {\n\t\tresult = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\tif ( isFunction( result.stop ) ) {\n\t\t\t\tjQuery._queueHooks( animation.elem, animation.opts.queue ).stop =\n\t\t\t\t\tresult.stop.bind( result );\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\t// Attach callbacks from options\n\tanimation\n\t\t.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t} )\n\t);\n\n\treturn animation;\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\n\ttweeners: {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value );\n\t\t\tadjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );\n\t\t\treturn tween;\n\t\t} ]\n\t},\n\n\ttweener: function( props, callback ) {\n\t\tif ( isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.match( rnothtmlwhite );\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\tAnimation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];\n\t\t\tAnimation.tweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilters: [ defaultPrefilter ],\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tAnimation.prefilters.unshift( callback );\n\t\t} else {\n\t\t\tAnimation.prefilters.push( callback );\n\t\t}\n\t}\n} );\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tisFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !isFunction( easing ) && easing\n\t};\n\n\t// Go to the end state if fx are off\n\tif ( jQuery.fx.off ) {\n\t\topt.duration = 0;\n\n\t} else {\n\t\tif ( typeof opt.duration !== \"number\" ) {\n\t\t\tif ( opt.duration in jQuery.fx.speeds ) {\n\t\t\t\topt.duration = jQuery.fx.speeds[ opt.duration ];\n\n\t\t\t} else {\n\t\t\t\topt.duration = jQuery.fx.speeds._default;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend( {\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// Show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHiddenWithinTree ).css( \"opacity\", 0 ).show()\n\n\t\t\t// Animate to the value specified\n\t\t\t.end().animate( { opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || dataPriv.get( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\n\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = dataPriv.get( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this &&\n\t\t\t\t\t( type == null || timers[ index ].queue === type ) ) {\n\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start the next in the queue if the last step wasn't forced.\n\t\t\t// Timers currently will call their complete callbacks, which\n\t\t\t// will dequeue but only if they were gotoEnd.\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t} );\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tvar index,\n\t\t\t\tdata = dataPriv.get( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// Enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// Empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// Look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t} );\n\t}\n} );\n\njQuery.each( [ \"toggle\", \"show\", \"hide\" ], function( _i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n} );\n\n// Generate shortcuts for custom animations\njQuery.each( {\n\tslideDown: genFx( \"show\" ),\n\tslideUp: genFx( \"hide\" ),\n\tslideToggle: genFx( \"toggle\" ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n} );\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ti = 0,\n\t\ttimers = jQuery.timers;\n\n\tfxNow = Date.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\n\t\t// Run the timer and safely remove it when done (allowing for external removal)\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tjQuery.fx.start();\n};\n\njQuery.fx.interval = 13;\njQuery.fx.start = function() {\n\tif ( inProgress ) {\n\t\treturn;\n\t}\n\n\tinProgress = true;\n\tschedule();\n};\n\njQuery.fx.stop = function() {\n\tinProgress = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = window.setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\twindow.clearTimeout( timeout );\n\t\t};\n\t} );\n};\n\n\n( function() {\n\tvar input = document.createElement( \"input\" ),\n\t\tselect = document.createElement( \"select\" ),\n\t\topt = select.appendChild( document.createElement( \"option\" ) );\n\n\tinput.type = \"checkbox\";\n\n\t// Support: Android <=4.3 only\n\t// Default value for a checkbox should be \"on\"\n\tsupport.checkOn = input.value !== \"\";\n\n\t// Support: IE <=11 only\n\t// Must access selectedIndex to make default options select\n\tsupport.optSelected = opt.selected;\n\n\t// Support: IE <=11 only\n\t// An input loses its value after becoming a radio\n\tinput = document.createElement( \"input\" );\n\tinput.value = \"t\";\n\tinput.type = \"radio\";\n\tsupport.radioValue = input.value === \"t\";\n} )();\n\n\nvar boolHook,\n\tattrHandle = jQuery.expr.attrHandle;\n\njQuery.fn.extend( {\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tattr: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set attributes on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// Attribute hooks are determined by the lowercase version\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\thooks = jQuery.attrHooks[ name.toLowerCase() ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\treturn value;\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tret = jQuery.find.attr( elem, name );\n\n\t\t// Non-existent attributes return null, we normalize to undefined\n\t\treturn ret == null ? undefined : ret;\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" &&\n\t\t\t\t\tnodeName( elem, \"input\" ) ) {\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name,\n\t\t\ti = 0,\n\n\t\t\t// Attribute names can contain non-HTML whitespace characters\n\t\t\t// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n\t\t\tattrNames = value && value.match( rnothtmlwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( ( name = attrNames[ i++ ] ) ) {\n\t\t\t\telem.removeAttribute( name );\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Hooks for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\telem.setAttribute( name, name );\n\t\t}\n\t\treturn name;\n\t}\n};\n\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( _i, name ) {\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = function( elem, name, isXML ) {\n\t\tvar ret, handle,\n\t\t\tlowercaseName = name.toLowerCase();\n\n\t\tif ( !isXML ) {\n\n\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\thandle = attrHandle[ lowercaseName ];\n\t\t\tattrHandle[ lowercaseName ] = ret;\n\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\tlowercaseName :\n\t\t\t\tnull;\n\t\t\tattrHandle[ lowercaseName ] = handle;\n\t\t}\n\t\treturn ret;\n\t};\n} );\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend( {\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tdelete this[ jQuery.propFix[ name ] || name ];\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set properties on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\treturn ( elem[ name ] = value );\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\treturn elem[ name ];\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\t// Support: IE <=9 - 11 only\n\t\t\t\t// elem.tabIndex doesn't always return the\n\t\t\t\t// correct value when it hasn't been explicitly set\n\t\t\t\t// https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\tif ( tabindex ) {\n\t\t\t\t\treturn parseInt( tabindex, 10 );\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\trfocusable.test( elem.nodeName ) ||\n\t\t\t\t\trclickable.test( elem.nodeName ) &&\n\t\t\t\t\telem.href\n\t\t\t\t) {\n\t\t\t\t\treturn 0;\n\t\t\t\t}\n\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t}\n} );\n\n// Support: IE <=11 only\n// Accessing the selectedIndex property\n// forces the browser to respect setting selected\n// on the option\n// The getter ensures a default option is selected\n// when in an optgroup\n// eslint rule \"no-unused-expressions\" is disabled for this code\n// since it considers such accessions noop\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent && parent.parentNode ) {\n\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\tset: function( elem ) {\n\n\t\t\t/* eslint no-unused-expressions: \"off\" */\n\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\njQuery.each( [\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n} );\n\n\n\n\n\t// Strip and collapse whitespace according to HTML spec\n\t// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace\n\tfunction stripAndCollapse( value ) {\n\t\tvar tokens = value.match( rnothtmlwhite ) || [];\n\t\treturn tokens.join( \" \" );\n\t}\n\n\nfunction getClass( elem ) {\n\treturn elem.getAttribute && elem.getAttribute( \"class\" ) || \"\";\n}\n\nfunction classesToArray( value ) {\n\tif ( Array.isArray( value ) ) {\n\t\treturn value;\n\t}\n\tif ( typeof value === \"string\" ) {\n\t\treturn value.match( rnothtmlwhite ) || [];\n\t}\n\treturn [];\n}\n\njQuery.fn.extend( {\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( !arguments.length ) {\n\t\t\treturn this.attr( \"class\", \"\" );\n\t\t}\n\n\t\tclasses = classesToArray( value );\n\n\t\tif ( classes.length ) {\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 && ( \" \" + stripAndCollapse( curValue ) + \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) > -1 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = stripAndCollapse( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value,\n\t\t\tisValidValue = type === \"string\" || Array.isArray( value );\n\n\t\tif ( typeof stateVal === \"boolean\" && isValidValue ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( isFunction( value ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).toggleClass(\n\t\t\t\t\tvalue.call( this, i, getClass( this ), stateVal ),\n\t\t\t\t\tstateVal\n\t\t\t\t);\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar className, i, self, classNames;\n\n\t\t\tif ( isValidValue ) {\n\n\t\t\t\t// Toggle individual class names\n\t\t\t\ti = 0;\n\t\t\t\tself = jQuery( this );\n\t\t\t\tclassNames = classesToArray( value );\n\n\t\t\t\twhile ( ( className = classNames[ i++ ] ) ) {\n\n\t\t\t\t\t// Check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( value === undefined || type === \"boolean\" ) {\n\t\t\t\tclassName = getClass( this );\n\t\t\t\tif ( className ) {\n\n\t\t\t\t\t// Store className if set\n\t\t\t\t\tdataPriv.set( this, \"__className__\", className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed `false`,\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tif ( this.setAttribute ) {\n\t\t\t\t\tthis.setAttribute( \"class\",\n\t\t\t\t\t\tclassName || value === false ?\n\t\t\t\t\t\t\t\"\" :\n\t\t\t\t\t\t\tdataPriv.get( this, \"__className__\" ) || \"\"\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className, elem,\n\t\t\ti = 0;\n\n\t\tclassName = \" \" + selector + \" \";\n\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\tif ( elem.nodeType === 1 &&\n\t\t\t\t( \" \" + stripAndCollapse( getClass( elem ) ) + \" \" ).indexOf( className ) > -1 ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n} );\n\n\n\n\nvar rreturn = /\\r/g;\n\njQuery.fn.extend( {\n\tval: function( value ) {\n\t\tvar hooks, ret, valueIsFunction,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] ||\n\t\t\t\t\tjQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks &&\n\t\t\t\t\t\"get\" in hooks &&\n\t\t\t\t\t( ret = hooks.get( elem, \"value\" ) ) !== undefined\n\t\t\t\t) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\t// Handle most common string cases\n\t\t\t\tif ( typeof ret === \"string\" ) {\n\t\t\t\t\treturn ret.replace( rreturn, \"\" );\n\t\t\t\t}\n\n\t\t\t\t// Handle cases where value is null/undef or number\n\t\t\t\treturn ret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tvalueIsFunction = isFunction( value );\n\n\t\treturn this.each( function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( valueIsFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\n\t\t\t} else if ( Array.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !( \"set\" in hooks ) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\n\t\t\t\t\t// Support: IE <=10 - 11 only\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\t// Strip and collapse whitespace\n\t\t\t\t\t// https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n\t\t\t\t\tstripAndCollapse( jQuery.text( elem ) );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option, i,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\",\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length;\n\n\t\t\t\tif ( index < 0 ) {\n\t\t\t\t\ti = max;\n\n\t\t\t\t} else {\n\t\t\t\t\ti = one ? index : 0;\n\t\t\t\t}\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t// IE8-9 doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t!option.disabled &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled ||\n\t\t\t\t\t\t\t\t!nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t/* eslint-disable no-cond-assign */\n\n\t\t\t\t\tif ( option.selected =\n\t\t\t\t\t\tjQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1\n\t\t\t\t\t) {\n\t\t\t\t\t\toptionSet = true;\n\t\t\t\t\t}\n\n\t\t\t\t\t/* eslint-enable no-cond-assign */\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Radios and checkboxes getter/setter\njQuery.each( [ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( Array.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\treturn elem.getAttribute( \"value\" ) === null ? \"on\" : elem.value;\n\t\t};\n\t}\n} );\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\nsupport.focusin = \"onfocusin\" in window;\n\n\nvar rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\tstopPropagationCallback = function( e ) {\n\t\te.stopPropagation();\n\t};\n\njQuery.extend( jQuery.event, {\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\n\t\tvar i, cur, tmp, bubbleType, ontype, handle, special, lastElement,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split( \".\" ) : [];\n\n\t\tcur = lastElement = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) > -1 ) {\n\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split( \".\" );\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf( \":\" ) < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.rnamespace = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === ( elem.ownerDocument || document ) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tlastElement = cur;\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = ( dataPriv.get( cur, \"events\" ) || Object.create( null ) )[ event.type ] &&\n\t\t\t\tdataPriv.get( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( ( !special._default ||\n\t\t\t\tspecial._default.apply( eventPath.pop(), data ) === false ) &&\n\t\t\t\tacceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name as the event.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.addEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\telem[ type ]();\n\n\t\t\t\t\tif ( event.isPropagationStopped() ) {\n\t\t\t\t\t\tlastElement.removeEventListener( type, stopPropagationCallback );\n\t\t\t\t\t}\n\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Piggyback on a donor event to simulate a different one\n\t// Used only for `focus(in | out)` events\n\tsimulate: function( type, elem, event ) {\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true\n\t\t\t}\n\t\t);\n\n\t\tjQuery.event.trigger( e, null, elem );\n\t}\n\n} );\n\njQuery.fn.extend( {\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t} );\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[ 0 ];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n} );\n\n\n// Support: Firefox <=44\n// Firefox doesn't have focus(in | out) events\n// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n//\n// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1\n// focus(in | out) events fire after focus & blur events,\n// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857\nif ( !support.focusin ) {\n\tjQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );\n\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\n\t\t\t\t// Handle: regular nodes (via `this.ownerDocument`), window\n\t\t\t\t// (via `this.document`) & document (via `this`).\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tdataPriv.access( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this.document || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tdataPriv.remove( doc, fix );\n\n\t\t\t\t} else {\n\t\t\t\t\tdataPriv.access( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t} );\n}\nvar location = window.location;\n\nvar nonce = { guid: Date.now() };\n\nvar rquery = ( /\\?/ );\n\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml, parserErrorElem;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\n\t// Support: IE 9 - 11 only\n\t// IE throws on parseFromString with invalid input.\n\ttry {\n\t\txml = ( new window.DOMParser() ).parseFromString( data, \"text/xml\" );\n\t} catch ( e ) {}\n\n\tparserErrorElem = xml && xml.getElementsByTagName( \"parsererror\" )[ 0 ];\n\tif ( !xml || parserErrorElem ) {\n\t\tjQuery.error( \"Invalid XML: \" + (\n\t\t\tparserErrorElem ?\n\t\t\t\tjQuery.map( parserErrorElem.childNodes, function( el ) {\n\t\t\t\t\treturn el.textContent;\n\t\t\t\t} ).join( \"\\n\" ) :\n\t\t\t\tdata\n\t\t) );\n\t}\n\treturn xml;\n};\n\n\nvar\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( Array.isArray( obj ) ) {\n\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams(\n\t\t\t\t\tprefix + \"[\" + ( typeof v === \"object\" && v != null ? i : \"\" ) + \"]\",\n\t\t\t\t\tv,\n\t\t\t\t\ttraditional,\n\t\t\t\t\tadd\n\t\t\t\t);\n\t\t\t}\n\t\t} );\n\n\t} else if ( !traditional && toType( obj ) === \"object\" ) {\n\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, valueOrFunction ) {\n\n\t\t\t// If value is a function, invoke it and use its return value\n\t\t\tvar value = isFunction( valueOrFunction ) ?\n\t\t\t\tvalueOrFunction() :\n\t\t\t\tvalueOrFunction;\n\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" +\n\t\t\t\tencodeURIComponent( value == null ? \"\" : value );\n\t\t};\n\n\tif ( a == null ) {\n\t\treturn \"\";\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t} );\n\n\t} else {\n\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" );\n};\n\njQuery.fn.extend( {\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map( function() {\n\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t} ).filter( function() {\n\t\t\tvar type = this.type;\n\n\t\t\t// Use .is( \":disabled\" ) so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t} ).map( function( _i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\tif ( val == null ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tif ( Array.isArray( val ) ) {\n\t\t\t\treturn jQuery.map( val, function( val ) {\n\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t} ).get();\n\t}\n} );\n\n\nvar\n\tr20 = /%20/g,\n\trhash = /#.*$/,\n\trantiCache = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t * - BEFORE asking for a transport\n\t * - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat( \"*\" ),\n\n\t// Anchor tag for parsing the document origin\n\toriginAnchor = document.createElement( \"a\" );\n\noriginAnchor.href = location.href;\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];\n\n\t\tif ( isFunction( func ) ) {\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( ( dataType = dataTypes[ i++ ] ) ) {\n\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType[ 0 ] === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" &&\n\t\t\t\t!seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t} );\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar ct, type, finalDataType, firstDataType,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"Content-Type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[ 0 ] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s.throws ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tstate: \"parsererror\",\n\t\t\t\t\t\t\t\terror: conv ? e : \"No conversion from \" + prev + \" to \" + current\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend( {\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: location.href,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( location.protocol ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /\\bxml\\b/,\n\t\t\thtml: /\\bhtml/,\n\t\t\tjson: /\\bjson\\b/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": JSON.parse,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar transport,\n\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// Url cleanup var\n\t\t\turlAnchor,\n\n\t\t\t// Request state (becomes false upon send and true upon completion)\n\t\t\tcompleted,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\t// Loop variable\n\t\t\ti,\n\n\t\t\t// uncached part of the url\n\t\t\tuncached,\n\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context &&\n\t\t\t\t( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\tjQuery.event,\n\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( completed ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[ 1 ].toLowerCase() + \" \" ] =\n\t\t\t\t\t\t\t\t\t( responseHeaders[ match[ 1 ].toLowerCase() + \" \" ] || [] )\n\t\t\t\t\t\t\t\t\t\t.concat( match[ 2 ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() + \" \" ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match.join( \", \" );\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn completed ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\tname = requestHeadersNames[ name.toLowerCase() ] =\n\t\t\t\t\t\t\trequestHeadersNames[ name.toLowerCase() ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( completed == null ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( completed ) {\n\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Lazy-add the new callbacks in a way that preserves old ones\n\t\t\t\t\t\t\tfor ( code in map ) {\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR );\n\n\t\t// Add protocol if not provided (prefilters might expect it)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || location.href ) + \"\" )\n\t\t\t.replace( rprotocol, location.protocol + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = ( s.dataType || \"*\" ).toLowerCase().match( rnothtmlwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when the origin doesn't match the current origin.\n\t\tif ( s.crossDomain == null ) {\n\t\t\turlAnchor = document.createElement( \"a\" );\n\n\t\t\t// Support: IE <=8 - 11, Edge 12 - 15\n\t\t\t// IE throws exception on accessing the href property if url is malformed,\n\t\t\t// e.g. http://example.com:80x/\n\t\t\ttry {\n\t\t\t\turlAnchor.href = s.url;\n\n\t\t\t\t// Support: IE <=8 - 11 only\n\t\t\t\t// Anchor's host property isn't correctly set when s.url is relative\n\t\t\t\turlAnchor.href = urlAnchor.href;\n\t\t\t\ts.crossDomain = originAnchor.protocol + \"//\" + originAnchor.host !==\n\t\t\t\t\turlAnchor.protocol + \"//\" + urlAnchor.host;\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// If there is an error parsing the URL, assume it is crossDomain,\n\t\t\t\t// it can be rejected by the transport if it is invalid\n\t\t\t\ts.crossDomain = true;\n\t\t\t}\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( completed ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\t// Remove hash to simplify url manipulation\n\t\tcacheURL = s.url.replace( rhash, \"\" );\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// Remember the hash so we can put it back\n\t\t\tuncached = s.url.slice( cacheURL.length );\n\n\t\t\t// If data is available and should be processed, append data to url\n\t\t\tif ( s.data && ( s.processData || typeof s.data === \"string\" ) ) {\n\t\t\t\tcacheURL += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data;\n\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add or update anti-cache param if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\tcacheURL = cacheURL.replace( rantiCache, \"$1\" );\n\t\t\t\tuncached = ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + ( nonce.guid++ ) +\n\t\t\t\t\tuncached;\n\t\t\t}\n\n\t\t\t// Put hash and anti-cache on the URL that will be requested (gh-1732)\n\t\t\ts.url = cacheURL + uncached;\n\n\t\t// Change '%20' to '+' if this is encoded form body content (gh-2658)\n\t\t} else if ( s.data && s.processData &&\n\t\t\t( s.contentType || \"\" ).indexOf( \"application/x-www-form-urlencoded\" ) === 0 ) {\n\t\t\ts.data = s.data.replace( r20, \"+\" );\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[ 0 ] ] +\n\t\t\t\t\t( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend &&\n\t\t\t( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {\n\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// Aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tcompleteDeferred.add( s.complete );\n\t\tjqXHR.done( s.success );\n\t\tjqXHR.fail( s.error );\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\n\t\t\t// If request was aborted inside ajaxSend, stop there\n\t\t\tif ( completed ) {\n\t\t\t\treturn jqXHR;\n\t\t\t}\n\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = window.setTimeout( function() {\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tcompleted = false;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// Rethrow post-completion exceptions\n\t\t\t\tif ( completed ) {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\n\t\t\t\t// Propagate others as results\n\t\t\t\tdone( -1, e );\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Ignore repeat invocations\n\t\t\tif ( completed ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tcompleted = true;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\twindow.clearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Use a noop converter for missing script but not if jsonp\n\t\t\tif ( !isSuccess &&\n\t\t\t\tjQuery.inArray( \"script\", s.dataTypes ) > -1 &&\n\t\t\t\tjQuery.inArray( \"json\", s.dataTypes ) < 0 ) {\n\t\t\t\ts.converters[ \"text script\" ] = function() {};\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"Last-Modified\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"etag\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Extract error from statusText and normalize for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n} );\n\njQuery.each( [ \"get\", \"post\" ], function( _i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\n\t\t// Shift arguments if data argument was omitted\n\t\tif ( isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\t// The url can be an options object (which then must have .url)\n\t\treturn jQuery.ajax( jQuery.extend( {\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t}, jQuery.isPlainObject( url ) && url ) );\n\t};\n} );\n\njQuery.ajaxPrefilter( function( s ) {\n\tvar i;\n\tfor ( i in s.headers ) {\n\t\tif ( i.toLowerCase() === \"content-type\" ) {\n\t\t\ts.contentType = s.headers[ i ] || \"\";\n\t\t}\n\t}\n} );\n\n\njQuery._evalUrl = function( url, options, doc ) {\n\treturn jQuery.ajax( {\n\t\turl: url,\n\n\t\t// Make this explicit, since user can override this through ajaxSetup (#11264)\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tcache: true,\n\t\tasync: false,\n\t\tglobal: false,\n\n\t\t// Only evaluate the response if it is successful (gh-4126)\n\t\t// dataFilter is not invoked for failure responses, so using it instead\n\t\t// of the default converter is kludgy but it works.\n\t\tconverters: {\n\t\t\t\"text script\": function() {}\n\t\t},\n\t\tdataFilter: function( response ) {\n\t\t\tjQuery.globalEval( response, options, doc );\n\t\t}\n\t} );\n};\n\n\njQuery.fn.extend( {\n\twrapAll: function( html ) {\n\t\tvar wrap;\n\n\t\tif ( this[ 0 ] ) {\n\t\t\tif ( isFunction( html ) ) {\n\t\t\t\thtml = html.call( this[ 0 ] );\n\t\t\t}\n\n\t\t\t// The elements to wrap the target around\n\t\t\twrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );\n\n\t\t\tif ( this[ 0 ].parentNode ) {\n\t\t\t\twrap.insertBefore( this[ 0 ] );\n\t\t\t}\n\n\t\t\twrap.map( function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstElementChild ) {\n\t\t\t\t\telem = elem.firstElementChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t} ).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapInner( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t} );\n\t},\n\n\twrap: function( html ) {\n\t\tvar htmlIsFunction = isFunction( html );\n\n\t\treturn this.each( function( i ) {\n\t\t\tjQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );\n\t\t} );\n\t},\n\n\tunwrap: function( selector ) {\n\t\tthis.parent( selector ).not( \"body\" ).each( function() {\n\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t} );\n\t\treturn this;\n\t}\n} );\n\n\njQuery.expr.pseudos.hidden = function( elem ) {\n\treturn !jQuery.expr.pseudos.visible( elem );\n};\njQuery.expr.pseudos.visible = function( elem ) {\n\treturn !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );\n};\n\n\n\n\njQuery.ajaxSettings.xhr = function() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch ( e ) {}\n};\n\nvar xhrSuccessStatus = {\n\n\t\t// File protocol always yields status code 0, assume 200\n\t\t0: 200,\n\n\t\t// Support: IE <=9 only\n\t\t// #1450: sometimes IE returns 1223 when it should be 204\n\t\t1223: 204\n\t},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nsupport.ajax = xhrSupported = !!xhrSupported;\n\njQuery.ajaxTransport( function( options ) {\n\tvar callback, errorCallback;\n\n\t// Cross domain only allowed if supported through XMLHttpRequest\n\tif ( support.cors || xhrSupported && !options.crossDomain ) {\n\t\treturn {\n\t\t\tsend: function( headers, complete ) {\n\t\t\t\tvar i,\n\t\t\t\t\txhr = options.xhr();\n\n\t\t\t\txhr.open(\n\t\t\t\t\toptions.type,\n\t\t\t\t\toptions.url,\n\t\t\t\t\toptions.async,\n\t\t\t\t\toptions.username,\n\t\t\t\t\toptions.password\n\t\t\t\t);\n\n\t\t\t\t// Apply custom fields if provided\n\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Override mime type if needed\n\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t}\n\n\t\t\t\t// X-Requested-With header\n\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\tif ( !options.crossDomain && !headers[ \"X-Requested-With\" ] ) {\n\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t}\n\n\t\t\t\t// Set headers\n\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t}\n\n\t\t\t\t// Callback\n\t\t\t\tcallback = function( type ) {\n\t\t\t\t\treturn function() {\n\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\tcallback = errorCallback = xhr.onload =\n\t\t\t\t\t\t\t\txhr.onerror = xhr.onabort = xhr.ontimeout =\n\t\t\t\t\t\t\t\t\txhr.onreadystatechange = null;\n\n\t\t\t\t\t\t\tif ( type === \"abort\" ) {\n\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t} else if ( type === \"error\" ) {\n\n\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t// On a manual native abort, IE9 throws\n\t\t\t\t\t\t\t\t// errors on any property access that is not readyState\n\t\t\t\t\t\t\t\tif ( typeof xhr.status !== \"number\" ) {\n\t\t\t\t\t\t\t\t\tcomplete( 0, \"error\" );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcomplete(\n\n\t\t\t\t\t\t\t\t\t\t// File: protocol always yields status 0; see #8605, #14207\n\t\t\t\t\t\t\t\t\t\txhr.status,\n\t\t\t\t\t\t\t\t\t\txhr.statusText\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tcomplete(\n\t\t\t\t\t\t\t\t\txhrSuccessStatus[ xhr.status ] || xhr.status,\n\t\t\t\t\t\t\t\t\txhr.statusText,\n\n\t\t\t\t\t\t\t\t\t// Support: IE <=9 only\n\t\t\t\t\t\t\t\t\t// IE9 has no XHR2 but throws on binary (trac-11426)\n\t\t\t\t\t\t\t\t\t// For XHR2 non-text, let the caller handle it (gh-2498)\n\t\t\t\t\t\t\t\t\t( xhr.responseType || \"text\" ) !== \"text\" ||\n\t\t\t\t\t\t\t\t\ttypeof xhr.responseText !== \"string\" ?\n\t\t\t\t\t\t\t\t\t\t{ binary: xhr.response } :\n\t\t\t\t\t\t\t\t\t\t{ text: xhr.responseText },\n\t\t\t\t\t\t\t\t\txhr.getAllResponseHeaders()\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t};\n\n\t\t\t\t// Listen to events\n\t\t\t\txhr.onload = callback();\n\t\t\t\terrorCallback = xhr.onerror = xhr.ontimeout = callback( \"error\" );\n\n\t\t\t\t// Support: IE 9 only\n\t\t\t\t// Use onreadystatechange to replace onabort\n\t\t\t\t// to handle uncaught aborts\n\t\t\t\tif ( xhr.onabort !== undefined ) {\n\t\t\t\t\txhr.onabort = errorCallback;\n\t\t\t\t} else {\n\t\t\t\t\txhr.onreadystatechange = function() {\n\n\t\t\t\t\t\t// Check readyState before timeout as it changes\n\t\t\t\t\t\tif ( xhr.readyState === 4 ) {\n\n\t\t\t\t\t\t\t// Allow onerror to be called first,\n\t\t\t\t\t\t\t// but that will not handle a native abort\n\t\t\t\t\t\t\t// Also, save errorCallback to a variable\n\t\t\t\t\t\t\t// as xhr.onerror cannot be accessed\n\t\t\t\t\t\t\twindow.setTimeout( function() {\n\t\t\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\t\t\terrorCallback();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\t// Create the abort callback\n\t\t\t\tcallback = callback( \"abort\" );\n\n\t\t\t\ttry {\n\n\t\t\t\t\t// Do send the request (this may raise an exception)\n\t\t\t\t\txhr.send( options.hasContent && options.data || null );\n\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t// #14683: Only rethrow if this hasn't been notified as an error yet\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tthrow e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\n// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)\njQuery.ajaxPrefilter( function( s ) {\n\tif ( s.crossDomain ) {\n\t\ts.contents.script = false;\n\t}\n} );\n\n// Install script dataType\njQuery.ajaxSetup( {\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, \" +\n\t\t\t\"application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /\\b(?:java|ecma)script\\b/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n} );\n\n// Handle cache's special case and crossDomain\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t}\n} );\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function( s ) {\n\n\t// This transport only deals with cross domain or forced-by-attrs requests\n\tif ( s.crossDomain || s.scriptAttrs ) {\n\t\tvar script, callback;\n\t\treturn {\n\t\t\tsend: function( _, complete ) {\n\t\t\t\tscript = jQuery( \"